What's //go:nosplit For? — Go has many comment-based directives for tweaking inlining, stack checks, write barriers, and more. Many aren’t well documented, but can have striking effects, such as nosplit which can offer a performance boost in certain scenarios, but may also lead to faults or a locked runtime. This is, nonetheless, a fantastic explainer.
Miguel Young
|
Generic Interfaces — Axel presents the idea that as interfaces are types themselves, they too can have type parameters. He shows how this lets you write one core implementation of a binary search tree and support built-in, callback-based, or method-based comparisons, before moving on to deeper concepts. There's a lot to get your teeth into here.
Axel Wagner
|
Build Containers from Scratch — Start with raw Linux tools like chroot, namespaces, and cgroups to truly understand how containers work. Then build your own with Docker and deploy them using Kubernetes.
Frontend Masters sponsor
|
Serving 200 Million Requests Per Day with cgi-bin — CGI was commonly used in the earlier days of the Web to have HTTP requests launch backend processes and return the results. Over time we moved onto persistently-running apps, but could the speed of Go and launching processes in 2025 make cgi-bin viable again? Yes! (But you might not want to..)
Jake Gold
|
Lox: A Lexer and Parser Generator for Go — Inspired by ANTLR at the surface level (combined parser and lexer, action code separated from grammar) but more similar to yacc internally (LR(1), dependency-free parser).
dcaiafa
|
-
🤖 Mods 1.8 – Charm's pipelineable AI CLI client, now with MCP support.
-
Hugo 0.148 – The popular Go-powered static site generator. Beware of some breaking changes.
-
MCP-Go 0.33 – An implementation of the Model Context Protocol (MCP).
-
OpenFGA 1.9 – Google Zanzibar-inspired authorization engine.
-
GoReleaser 2.11 – Build/release binaries for multiple platforms.
-
pgroll 0.14 – Zero-downtime, reversible, schema migrations.
-
sh 3.12 – Shell script parser, formatter, and interpreter.
-
fzf 0.64 – Popular command-line fuzzy finder.
|
|