Memory Management in GO:When starting out with any language I think it's essential to understand how it stores variables, functions, data structures, etc. in memory. Go has two structures where it stores variables/objects from the running program.1. Stack2. HeapStack is a...Dec 25, 2022·7 min read·185
KomposeEasily generate Kubernetes configuration files using docker-compose.ymlNov 21, 2022·2 min read·47
Golang: Download & Setup for LinuxA beginner's guide on how to download and setup Golang on your Linux systemSep 8, 2022·2 min read·159
Create Your Own Reddit CLI With NodejsWe all know CLI stands for "Command Line Interface". Wouldn't it be cool if we could make our own CLI? Well in this post we are going to do just that. Let's build a CLI that opens a random post in our browser or prints it on the terminal itself when ...Mar 8, 2022·3 min read·82
"git reflog" Saved The Day!Ever wondered what to do when one is asked to change the commit-msg and accidentally types git --amend -m "New commit-msg"? This merges the new changes with the previous commit and makes a whole new commit. But then we are told to keep the review id...Feb 4, 2022·1 min read·65