Implementing Enums in Golang: Patterns and Best Practices
Unlike many other programming languages, Golang doesn’t have a built-in enum type. However, Go provides several …
Read moreUnlike many other programming languages, Golang doesn’t have a built-in enum type. However, Go provides several …
Read moreThe Golang for loop is a fundamental control structure that makes Go programming both powerful and elegant. In this …
Read moreGo 1.25 is on the horizon, and it’s bringing some exciting improvements to the language. Let’s explore the …
Read moreHello! In this post, I will explain the cost-effective method I use to host my Go web applications with varying levels …
Read moreI guess that almost everyone in the go community was exciting when Go 1.18 was released, especially because of generics. …
Read moreThis time, I will show you how to work with the maps in go effectively and prevent the occurrence of the data race …
Read moreRecently, I discovered a surprisingly reliable memory caching solution, which I’m planning to use in all my …
Read moreWhen we create a web application, usually, there a need to communicate with the users to inform them about the results …
Read moreIn this article, we will build a simple user authentication functionality using JWT (JSON Web Token). In the examples, …
Read moreIn this post, I’m going to show the way how we can implement a simple queue in Golang, using channels.
Read more