Hey

Welcome to our my personal blog. I rant about tech here. Checkout my blogs below.

How to Use SVG Icon as AvatarBadge in Chakra UI

I was recently building a side project and I was using Chakra UI + Next.js. I wanted to put the Google logo as a Badge in the bottom right of an Avatar Image.
Read more →

How File-System Based Routing Works in Next.js

Next.js has file-system based routing built-in. You don’t have to explicitly define the path in the router. It’s as easy as adding a file inside the folder and you are done. There are multiple ways you can define a path using the file structure.
Read more →

Linux Commands: watch

watch is used to run a command repeatedly and display its output and error at regular intervals. This is useful when you want to run a command repeatedly and observe its output getting changed over a period of time.
Read more →

Linux Commands: env

env can be used to print the environment variables or pass environment variables to a utility/command without setting them in the current shell session.
Read more →

Linux Commands: printenv

printenv is used to print out the environment variables. Environment variables are a common form of setting global values across a terminal session. Environment variables can be set by the systems, automation scripts, or by the user.
Read more →