Install
Go
Go releases, modules, concurrency patterns, and backend tooling.
- 6 Tracked terms
- Last 30 days Feed window
What this topic collects on
An article joins this feed when it matches these terms. Each one is also a search of its own.
Related topics
Latest in Go
Generation and Operations Are One Thing
2+ hour, 11+ min ago (856+ words) Add a service and you get code, observability and deploy — or the platform drifts from reality. What it takes to keep 'declared' and 'actual' the same thing by construction, and what that costs. Tagged with platform, devops, go, architecture....
Deploy Is a Consequence of the Manifest
2+ hour, 12+ min ago (1038+ words) Three pipelines, identical for every service, derived from the file that declares the service - and exactly three decisions left to a human: environment, secrets, tag. Plus the one defect in this area that stays green while being wrong. Tagged with…...
Pulse: A New VHDL Simulator
11+ hour, 18+ min ago (35+ words) With VHDL being arguably more deterministic and bullet-proof than Verilog, it's good to see another open source VHDL simulator joining the fray that is not a variation of ghdl. Written by [Óscar Grim......
Why Go + Python Is One of the Most Practical Language Pairings in Modern Software
1+ day, 9+ hour ago (238+ words) Most language debates online are framed as a competition — Go vs. Python, pick a side. In practice, the more interesting question for a working developer isn't "which one," it's "where does each one actually win, and how do I connect…...
Distributed Locks
1+ day, 17+ hour ago (110+ words) One-liner: A distributed lock ensures that only one node in a cluster can perform a critical operation at a time — preventing race conditions across services. In a single-server world, a mutex or semaphore handles concurrency. But in distributed systems: Classic…...
C# Generic Math: A Convex Hull with Static Interfaces
1+ day, 19+ hour ago (618+ words) This article is part of “Abstract Algebra in.NET” Series Static abstract interface members let a C# algorithm depend on operations instead …...
Building Backend Services in Go in the Age of Agentic AI
1+ day, 19+ hour ago (1530+ words) Why boring, explicit code wins when the most frequent reader of your code isn’t human. For a long time, the people reading my code were …...
The Go context.Context Trick That Saved My Service From Crashing 💥
2+ day, 2+ min ago (29+ words) Okay, picture this: you’re staring at your production dashboards, and your core service — the one everyone depends on — is …...
# What Survives Close()? Tracing Shutdown Through an Unfamiliar Go Codebase
2+ day, 3+ hour ago (1303+ words) *How I used GoLand, Codex, and deterministic tests to understand the lifecycle of a pub/sub RPC client.* ## 1. Start With a …...
Session 32: Deadlock Handling Strategies
2+ day, 6+ hour ago (758+ words) So now that we know what goes how a deadlock occurs we are now well equiped to think along the lines of Preventing and Handling Deadlocks. Ostrich Algorithm …...