Go

Session Management in Go

Session management in Go is not built into the language or the standard package for web applications.

July 14, 2025
Go

Introduction to Test-Driven Development (TDD) in Go

Test-Driven Development (TDD) is a development methodology that involves writing tests before the actual code.

July 14, 2025
Go

How to Create a Simple Blockchain in Go

In this article, we will see how to build a simple blockchain in Go to understand the fundamental concepts of this technology.

July 13, 2025
Go

Converting Dates from Excel Format to Standard in Go

When working with Excel files in Go, you often encounter dates represented as serial numbers. This is the internal format used by Excel to store dates.

July 13, 2025
Go

Implementing a Basic ORM for PostgreSQL in Go

In this article, we will see how to build a simple ORM (Object-Relational Mapping) in Go to interface with a PostgreSQL database.

July 13, 2025
Go

Understanding Go Generics: A Practical Guide

Go generics, introduced in Go 1.18, allow developers to write flexible and reusable functions and types while maintaining type safety. This guide explores how generics work in Go and provides practical examples of their usage.

July 12, 2025