40 followers
Passionate about OpenSource & Cloud native stuff.
In a previous blog post, we learned how to create and run commands in Go. Now, let's explore how to recreate the following command: ls -l | grep...
Sometimes, there are certain use cases where you may have to run shell commands through a Golang app. This is where the os/exec package comes in...
One of the best ways to learn a language is via building equivalent Linux commands using the language of your choice. which is my all-time favourite...
Encrypting and decrypting strings using AWS Key Management Service (KMS) and the AWS Command Line Interface (CLI) is a crucial part of securing...
AWS has more than 200 instance types under EC2. It's very tricky to select appropriate ec2-instance types and surely AWS docs can be daunting. You can...
Up until now, we've been using the DefaultServeMux, but it's time to wield more control and precision by explicitly using the http.ServeMux. Plus,...