Browsing Tag
go
126 posts
🚀 How I’d Learn Go (Golang) *Fast* in 2026 — If I Were Starting Today
Go (Golang) isn’t hype anymore. In 2026, Go is the language behind: Cloud-native systems ☁️ DevOps & platform…
My First Month at Zone01: Learning, Building, and Winning
I recently joined Zone01 as a software developer apprentice, and what a month it has been! From diving…
Rapg: TUI-based Secret Manager
Introduction We’ve all been there. You join a new project, and the first thing you hear is: “Check…
Complete Go Starter Guide: Setup, Syntax & First Program
Have you ever felt like you want to code and learn a new programming language, but there are…
Zig vs Go: init and run
This is the first post about Zig. As a guide for its exploration, I use my knowledge of…
The 15-Minute Goroutine Leak Triage: Two Dumps, One Diff, Zero Guessing
Goroutine leaks rarely announce themselves with a dramatic outage. They show up as “slowly getting worse”: p95/p99 creeps…
The Secret Life of Go: Goroutines and Channels
Chapter 8: Concurrency Without Fear Wednesday morning arrived cold and bright. Ethan descended to the archive carrying coffee…
The Secret Life of Go: Functions
Chapter 3: Functions and Multiple Returns The Wednesday morning air carried a hint of cinnamon. Ethan descended the…
Error handling in Go
Each programming language has it’s own way of dealing with errors. Popular languages such as JavaScript, Java, C#,…
How to create a REST API in seconds
Quick Start (30 Seconds to Running API) # Clone and setup git clone https://github.com/nicolasbonnici/gorest.git cd examples/basic-api cp .env.dist…