8 followers
My code is a liability⚡️Learning one thing at a time⚡️ ✍️ @ blog.umesh.wtf and freecodecamp.org/news
Subscribe to my newsletter and never miss my upcoming articles
Go has been one of the most popular languages for building microservices. Its simplicity and less overhead have proven to favor its rise in the community. Today, developers are using it to build web services for internet-scale. Even though it's a gre...
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. Something like this👇🏻. Chakra UI provides an Avatar and AvatarBadge component. You can u...
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. Anyt...
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. By default, the command is run eve...
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. Let's run env without any argument and see what happens. It simply prints all the environment v...
Everyone has been asking this for a very long time. In today's blog, I will show you how you can schedule a blog to be released on hashnode. This is not an official way. This is going to be a step by step guide. Please follow along to make sure you...