UYUmesh Yadavinrambling.umesh.dev路Nov 20, 2020 路 6 min readHow to Avoid Common Security Pitfalls in GoGo 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...01S
UYUmesh Yadavinrambling.umesh.dev路Nov 7, 2020 路 2 min readHow to Use SVG Icon as AvatarBadge in Chakra UII 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...00
UYUmesh Yadavinrambling.umesh.dev路Nov 6, 2020 路 4 min readHow File-System Based Routing Works in Next.jsNext.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...00
UYUmesh Yadavinrambling.umesh.dev路Nov 1, 2020 路 3 min readLinux Commands: watchwatch 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...00
UYUmesh Yadavinrambling.umesh.dev路Oct 29, 2020 路 2 min readLinux Commands: envenv 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...00