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.

Latest in Go


dev.to > anton_brilliantov > generation-and-operations-are-one-thing-ei9

Generation and Operations Are One Thing

2+ hour, 14+ 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....


dev.to > anton_brilliantov > deploy-is-a-consequence-of-the-manifest-54i5

Deploy Is a Consequence of the Manifest

2+ hour, 15+ 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…...


hackaday.com > 09/14/2026 > pulse-a-new-vhdl-simulator

Pulse: A New VHDL Simulator

11+ hour, 21+ 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......


dev.to > kev_luciano > why-go-python-is-one-of-the-most-practical-language-pairings-in-modern-software-fb9

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…...


dev.to > gouranga-das-khulna > distributed-locks-4148

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…...


medium.com > @steponeit > c-generic-math-a-convex-hull-with-static-interfaces-ce81274bd5c2

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 …...


medium.com > @saifhamdan14 > building-backend-services-in-go-in-the-age-of-agentic-ai-5d7e99c2da02

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 …...


medium.com > @chiranjilalsinghal4 > the-go-context-context-trick-that-saved-my-service-from-crashing-80b7bfc8357b

The Go context.Context Trick That Saved My Service From Crashing 💥

2+ day, 5+ min ago   (29+ words) Okay, picture this: you’re staring at your production dashboards, and your core service — the one everyone depends on — is …...


medium.com > @herefindalex > what-survives-close-tracing-shutdown-through-an-unfamiliar-go-codebase-ce77f8288bdb

# 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 …...


medium.com > @abhinitnobido10 > session-32-deadlock-handling-strategies-b886e1975f73

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 …...