12 followers
Working at Amazon (Alexa and Amazon Business) on things related to metering, billing and invoicing. I like gaming, music, sketching, writing and cooking.
This is a complete list of examples of all the basic programming concepts of golang. basic golang program structure package main import ( ...
What is gRPC? gRPC is a modern open source high performance RPC framework that can run in any environment. It can efficiently connect services in and...
Let's assume we have a sample Golang application (in a Go project folder). Contents of main.go package main import "fmt" func main() { ...
When you create a new Kubernetes Cluster in EKS - you still need to do several things until you can start using it. This simple set of steps aims to...
To implement a stack in golang we can make use of the slice datatype which golang provides which allows us to modify the size on the fly. If we were...
The purpose of this guide is to make a simple telegram bot, which replies with a compliment for each and every message that it receives. Create a bot...