Go 1.27 interactive tour
An interactive tour of what’s new in Go 1.27: every notable language, runtime, and standard library change, with short runnable examples you can edit and run in the browser.

Just Fucking Use Go - Blain Smith
Hey, dipshit. You know what compiles in two seconds, deploys as a single binary, and doesn't shit itself when a transitive dependency gets yanked from npm at 3am? Go. The same way HTML has been sitting there since the dawn of the goddamn internet waiting for you to stop overcomplicating the frontend, Go has been sitting there for over a decade waiting for you to stop overcomplicating the backend.
Please
Please is a cross-language build system with an emphasis on high performance, portability, extensibility and correctness.

New iterators in Go 1.23
The Go language now supports standardized iterators. An iterator is an object that progressively provides access to each item of a…

GitHub - termbox/termbox2: terminal I/O library
terminal I/O library. Contribute to termbox/termbox2 development by creating an account on GitHub.
Go sync.Map: The Right Tool for the Right Job
Go’s sync.Map isn’t a magic bullet for all concurrent map needs. It’s got some good tricks up its sleeve, like handling reads without locking, but it’s not always the best choice. This article dives into how sync.Map works under the hood, from its two-map system to the bottom line of expunged entries.

OpenTelemetry: A Guide to Observability with Go | Blog
Modern applications are often complex, distributed systems. Debugging them is not fun: you have to follow requests across services, logs get lost, and metrics are often hard to correlate. It's like looking for a needle in a haystack - except the haystack is on fire, and the needle keeps moving. This is where OpenTelemetry (OTel) can help.

Go runtime environment | App Engine standard environment | Google Cloud Documentation
The Go runtime is the software stack responsible for installing your web service's code and its dependencies and running your service.
feeds package - github.com/gorilla/feeds - Go Packages
Syndication (feed) generator library for golang.
Gorilla Mux Middleware in Go
Gorilla Mux is a popular request router and dispatcher for the Go programming language. It allows developers to define routes for their web applications, and Gorilla Mux middleware functions attach to those routes to perform additional processing on incoming requests. Routes in Gorilla Mux are defined using the mux.NewRouter() function, which returns a new instance […]

GitHub - zombiezen/go-sqlite: Low-level Go interface to SQLite 3
Low-level Go interface to SQLite 3. Contribute to zombiezen/go-sqlite development by creating an account on GitHub.