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
OpenCode Go
2+ hour, 34+ min ago (100+ words) model provider. Access curated open coding models via the OpenCode Zen Go gateway ($10/month subscription). Dify model provider plugin for OpenCode Go. OpenCode Go is a $10/month subscription gateway for curated open coding models. This plugin exposes those models as…...
The Leak That Won't Die: How We Broke Python's tempfile
1+ hour, 28+ min ago (78+ words) Production crashes always happen suddenly. This time, the alarm was raised by the core C++ SDK... Tagged with python, devops, memoryleak, garbagecollection....
Implementing Raft Consensus from Scratch in Go — and the 9 Bugs I Found
4+ hour, 14+ min ago (757+ words) Raft is the consensus algorithm that powers etcd, CockroachDB, and Consul. It’s described in a 2014 paper as “more understandable than Paxos” — which is true, but implementing it correctly is still surprisingly hard. I built raftkv: a full production-grade Raft-based distributed…...
Generation and Operations Are One Thing
9+ hour, 39+ 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
9+ hour, 40+ 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
18+ hour, 46+ 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, 17+ 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
2+ day, 1+ 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
2+ day, 2+ 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
2+ day, 3+ 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 …...