How to MTLS in golang

Sat Mar 21 2020

Mtls, short for Mutual Transport Layer Security, in microservices is a form of bi-directional security between two services where the TLS protocal is applied in both directions...

Build Constraints in Golang

Wed Nov 13 2019

Ever had to write go code that works on one platform and another piece of code that works on another? or ever had to painstakingly assist a colleague in setting up his engine to run CGO related code? Just me?...

Diving into Golang channels

Diving into Golang channels

Sun Jul 28 2019

Golang channels make it easy to send data across dimensions (boring name; goroutines) in a safe and controllable manner. In a previous article, I covered goroutines and gave a simple explanation to channel...