News
427 Remote Companies Using Type Script in 2026
3+ hour, 16+ min ago (503+ words) Every frontend developer puts Type Script on their resume now. So does every fullstack. So does every backend engineer on a JS team. So do most React Native people, most Next. js people, and a large number of devs who…...
Stragglers, Not Failures: How Adaptive Hedged Requests Reduce p99 Latency by 74 Percent
6+ hour, 5+ min ago (1326+ words) Stragglers, not failures, drive p99 latency in fan-out architectures. An adaptive hedging mechanism using DDSketch and token bucket budgets reduces tail latency by 74% with zero configuration....
Go Stack Allocation Boosts Uber CPU Efficiency
10+ hour, 34+ min ago (421+ words) Uber engineers optimized Go stack allocation, cutting CPU usage by up to 10% in critical services through static pre-allocation and disabling dynamic growth. Visual TL; DR. Go Stack Expansion causes CPU Usage. CPU Usage impacts Uber's Go Deployment. Uber's Go Deployment…...
Jais Cloud " A Free, Single-Binary AWS Emulator in Go
11+ hour, 35+ min ago (691+ words) If you've ever tried to test AWS-dependent code locally, you've probably reached for Local Stack. It works " but it comes with baggage: Python runtime, Docker dependency, and the features most teams actually need locked behind a Pro subscription. Jais Cloud…...
The Golang Trinity: Functions, Methods, Interfaces
13+ hour, 24+ min ago (92+ words) Function: Does something with inputs Method Does something attached to a type Interface Says what methods a type must have A method is a function with a receiver. An interface is a set of method signatures. If a type has…...
rdev-go-ddgen: Automating Domain Directory Boilerplate for Go Applications
1+ day, 9+ hour ago (20+ words) When building robust backend APIs in Go, maintaining a consistent, clean architectural pattern across. .. Tagged with go, api, domaindrivendesign, cli....
Retrying HTTP Requests in Go Without Making It Worse
1+ day, 13+ hour ago (870+ words) When you call an external API, things go fine until they don't. A network blip, a server restart, a rate limit. So you add a retry, and most of the time it helps. The problem is that the obvious retry,…...
A Go outbox library that runs inside your own DB transaction
2+ day, 6+ hour ago (926+ words) TL; DR " tickr is a Go library. It stores messages in one Postgres table. You add messages inside your own database transaction. A worker pool in the same Go process reads them back using SELECT " FOR UPDATE SKIP LOCKED and…...
From Template to Production-Shaped: An AI-Native Dev Flow for Go Side Projects
2+ day, 12+ hour ago (611+ words) The product itself is unremarkable on purpose: a QR code generator. Paste a URL, get back a scannable PNG and a /r/: token redirect, with per-link scan counts and a soft-delete kill switch. The interesting part " the part I'd want…...
Type Script 7. 0: The Go Compiler That Makes TS 10x Faster
1+ week, 5+ day ago (207+ words) Type Script 7. 0 rewrites the compiler in Go, cutting build times by up to 10x. Here's what changed, what it means for your projects, and how to try it right now....