Generics: A Boon for Strongly Typed Languages
Get to know when generics are useful and how Golang uses it…

Search for a command to run...
Articles tagged with #go
Get to know when generics are useful and how Golang uses it…

Covered popular formats such as JSON, XML, Gob, Protocol Buffers (protobuf), MessagePack, and YAML

Background Imagine you’re building a Todo application using Go. Each task in your application has a status associated with it, indicating whether it’s “completed”, “archived” or “deleted”. As a developer, you want to ensure that only valid status val...

In the dynamic world of programming, Golang, or Go, has emerged as a versatile and efficient language, favored by developers for its simplicity and performance. So, whether you're a seasoned Go enthusiast or just beginning your journey with the langu...

Test-Driven Development (TDD) is a software development technique in which You write tests for a piece of code before you write the code. We write tests to define the desired behavior of the code and to ensure that the code meets those requirements. ...

Developing software in Go can be an incredibly powerful and efficient experience, but with so many packages(libraries) available, it can be overwhelming sometimes to find the right ones for your needs. Going through each package one by one to identif...
