Tag: #golang
Writing on GPUs, LLMs, MLOps, Kubernetes — and mindset · 8 posts
Modern Go in 2026 — Go 1.24 / Echo / Gin / Fiber / Huma / Encore / sqlc / Templ / Bubble Tea Deep-Dive
Go turned sixteen. Go 1.22 fixed the for-loop variable capture trap, Go 1.23 admitted range-over-func as a first-class iterator protocol, and Go 1.24 made generics finally useful in real code. The 2026 ecosystem is a fiv
2026-05-16 · 22 min read #go#golang#go-1-24#gin#echoGo Ecosystem 2026 Complete Guide - Go 1.24/1.25, Echo · Gin · Fiber · Chi · sqlc · pgx · ent · Cobra · Bubble Tea · Buf · Connect-RPC · PGO Deep Dive
As of May 2026, Go has effectively conquered the backend microservices market in Korea and Japan. This deep dive covers Go 1.24/1.25 new features (iter.Seq, range-over-func, swiss-table maps, PGO, weak pointers, slog), w
2026-05-16 · 19 min read #go#golang#echo#gin#fiberGo Complete Guide — Goroutine, Channel, Context, and Real-World Microservices (Season 2 Ep 3, 2025)
Go is famous for being easy to learn, but real production Go is full of non-obvious traps: Context propagation, Goroutine leaks, Channel deadlocks, nil interface gotchas. This post covers the true meaning of Go philosoph
2026-04-15 · 13 min read #go#golang#goroutine#channel#contextThe Complete Go Programming Guide — Goroutines, Channels, Interfaces, and Practical Patterns
Why Go? Concurrency with goroutines and channels, interfaces, error handling, generics, and real-world web servers — everything about Go.
2026-04-12 · 16 min read #ai#go#golang#programming#concurrencyGitHub Actions CI/CD Complete Guide: Go Builds, Branch Strategies, and Auto-Deploy
Build production-grade CI/CD pipelines with GitHub Actions for Go projects. Trunk-Based vs GitHub Flow vs Git Flow branch strategies, multi-stage Docker builds, K8s auto-deploy, secret management, matrix builds, and cach
2026-03-23 · 24 min read #github-actions#ci-cd#go#golang#gitGo Language Complete Guide 2025: From Goroutines, Channels, Interfaces to Production Patterns
Everything about Go! Goroutine/channel concurrency, interfaces and duck typing, error handling patterns, generics (1.18+), structs and methods, testing, profiling, gRPC/REST servers, CLI tools, and optimized Docker build
2026-03-23 · 23 min read #go#golang#goroutine#channel#interfaceGo Testing Complete Guide: Unit Tests, Mocks, and Stubs
A complete guide to writing production-quality tests in Go, from the testing package basics and table-driven tests to testify, gomock, httptest, and Mock/Stub patterns.
2026-03-17 · 19 min read #go#golang#testing#unittest#mockGo Language Complete Syntax Guide: From Basics to Concurrency and Generics
A comprehensive guide covering all core Go language concepts from basic syntax to goroutines, channels, and generics, with practical code examples throughout.
2026-03-17 · 22 min read #go#golang#syntax#programming#backend