go

11 Nov 2025

Comparison of Go HTTP Libraries: fasthttp vs net/http

Which one is better: fasthttp vs net/http?

22 Mar 2025

Difference of Blocks vs Closures in Rust

This post breaks down their differences, when to use each, and how they compare to Go’s func().

20 Mar 2025

Comparison of String in Rust and Go

Let’s compare how strings work in Rust and Go.

14 Mar 2025

Defer doesn’t always reflect the latest value in Go

Learn common issues when using defer in Go.

13 Mar 2025

Goroutine Synchronization in Go

sync.Cond is a condition variable that helps synchronize multiple goroutines.

9 Mar 2025

Comparison of Channel Iteration in Go

Let’s compare different methods for reading from channels in Go.

2 Mar 2025

Slice Initialization and Capacity in Go

This guide explains how length, capacity, and the append function work together when using slices in Go.

2 Dec 2023

Importance of using interface while using go

Interface is the most fascinating feature of go.