GO
Golang Tabs vs Space for indentation - Formatting Tips
The official recommendation is to use golang TABs for indentation and formatting. We can format go code automatically using go fmt or goimports command
Golang Timing - RIGHT way to measure execution time in GO
We explained two methods to achieve golang timing to measure execution time of go code using time function
What the Hell is Golang Anonymous Structs? How to Use it?
Explore the dynamic world of Golang Anonymous Structs! Dive into this insightful guide to uncover powerful strategies, avoid common pitfalls, and harness the …
Golang Context Complete Tutorial with Examples
The golang context package is part of the standard library. It defines a Context struct type and three functions— withDeadline(), withCancel(), and …
Set GOPATH Variable in Linux & Windows PROPERLY
Steps to modify or set GOPATH variable in go env in both Linux and Windows. Make the changes permanent (persistent)
