MGMridul Gangainmridulganga.dev·Jul 22, 2023 · 3 min readgRPC Quickstart using GolangWhat 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 across data centers with pluggable support for load balancing, tracing, health checking and authenti...00
MGMridul Gangainmridulganga.dev·Jul 22, 2023 · 2 min readContainerize Golang ApplicationLet's assume we have a sample Golang application (in a Go project folder). Contents of main.go package main import "fmt" func main() { fmt.Println("hello world") } In the same folder, run the following commands to initialize go modules # initial...00
MGMridul Gangainmridulganga.dev·Dec 8, 2021 · 3 min readInitial EKS Setup for beginnersWhen 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 help people create an EKS cluster in simple steps and configure the most essential services like Log ...00
MGMridul Gangainmridulganga.dev·May 18, 2021 · 2 min readHow would you do it in golang: StacksTo 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 doing it in C, we would need to define a max size for the array. Lets start with a simple structure ...00
MGMridul Gangainmridulganga.dev·Sep 27, 2020 · 3 min readMake a Compliment Telegram Bot in GolangThe 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 in telegram Look for a bot named BotFather https://t.me/botfather . This bot is used to create bots...00