GO
Convert byte slice to io.Reader in Golang [SOLVED]
In this post, we'll examine how to translate a byte slice into an io.Reader in Golang. In Go, a byte slice is a dynamic array (slice) of bytes, which can
Building a CRUD REST API using Redis DB in GO
Go or Golang is an open source programming language developed and supported by Google. It is mostly used to build backend applications where it interacts with
Building a CRUD REST API using Postgresql DB in GO
CRUD is a common abbreviation when it comes to getting started with any framework or programming language. CRUD basically stands for Create, Read, Update and
Building a CRUD gRPC API using Postgresql DB in GO
CRUD is an acronym that refers to operations that are considered necessary to implement in a persistent storage application: Create, Read, Update and Delete.
GO JWT Authentication and Authorization Tutorial
In this article, I will show how to authenticate a user and authorize access to resources in our application. Authenticate and authorize are two different
