MMMaksim Martianovinmartianov.dev·4h ago · 13 min readThe Compiler Stopped Talking About Go: GALA in August and September (0.72 → 0.79)Until 0.75, this GALA program compiled, linked, and printed v=1: val x = 1 Println(s"v=${x +}") The trailing + just vanished. Invalid source produced a working binary. The cause was plumbing, not any00
JTJAY TANKinjaytank.hashnode.dev·1d ago · 7 min readYour cloud bill knows the dollars, not the carbon. cinderscope estimates the kgCO2e - offline.Finance has known the shape of your cloud spend for years: an invoice, a cost explorer, a dozen FinOps tools that slice the dollars by service, team and tag. Ask the same stack a different question - 00
WWessCobyinwesscoby.com·1d ago · 7 min readA Reason I Could Say Out Loudloadout's bash backend was the last phase. Phase 7, shipped after credential switching, after a web interface, after git-backed config sync, after macOS support — on a project that exists because bash00
NKNitesh Kumar Tuduinblog.thecodingant.in·2d ago · 5 min readI Built a TUI Package Manager for AI Agent Skills — Here's WhyIf you've been using AI coding agents for a while, you've probably collected a pile of SKILL.md files scattered across different folders. One for Claude Code, another for Cursor, maybe a third sitting00
JTJAY TANKinjaytank.hashnode.dev·3d ago · 7 min readThe cheapest outage to prevent is an expired TLS certificate. leafwatch makes sure you see it coming.Every few months a household-name company takes an outage because a TLS certificate quietly expired. Not a subtle race condition, not a novel exploit - a date passed. The fix was known in advance, dow00
JTJAY TANKinjaytank.hashnode.dev·6d ago · 9 min read GitHub Actions Security: The CI/CD Attack Surface You're Probably Not AuditingMost teams treat their .github/workflows directory as plumbing. It gets written once, copied between repos, and forgotten. But that YAML is executable code with access to your repository, your secrets00
POprime omondiinprime-tech-blitz.hashnode.dev·Aug 31 · 11 min readHow Go's sync.Pool Lowers Garbage Collection ChurnUnlike low-level languages that don't actively clean up memory for us, Go's Garbage Collector offers a reprieve. The beauty of a Garbage Collector is that we don't have to worry about memory cleanup. 00
JTJAY TANKinjaytank.hashnode.dev·Aug 30 · 9 min readThe RCE that hides inside one innocent-looking `load()` callPicture the most ordinary code review you will do this week. A pull request adds a caching layer, or a job queue consumer, or a session store. Somewhere in the diff there is a call that turns a stored00
Iimbrooklyninimbrooklyn.hashnode.dev·Aug 27 · 10 min readShuttle: Small, Type-Safe Composition Primitives for GoSorting a slice by one field is easy. Filtering one collection is easy. Returning (T, bool) is idiomatic. So is writing a nested loop. The friction appears when the same ordering must be shared by a s00
ASAbhijeet Shindeinweeklyupdate.hashnode.dev·Aug 27 · 7 min readLearning Go, Week 4: Functions, Methods, Defer, and File HandlingLast week was maps, control flow, and structs. This week I moved from organizing data to doing things with it — functions (including the variadic kind), methods on structs, the defer keyword, and basi00