A few months ago I wrote about using LLM agents to help restructuring one of my
Python projects.
It's worth beginning by saying that the
rewrite has been successful by all reasonable measures; I've been able to
continue maintaining that project since then without an issue.
In thi...
#604 — June 5, 2026
Read the Web Version
Go Weekly
🔬 Go Experiments Explained — Go ships ‘experimental’ features so you can trial new functionality or behavior changes before they're locked in, but do you know how to find an...
A new release of the Microsoft build of Go including security fixes is now available for download.
The post Go 1.26.4-1 and 1.25.11-1 Microsoft builds now available appeared first on Microsoft for Go Developers.
In the previous article
we took apart the select statement and saw how it’s really two features in one, with the compiler rewriting the easy shapes away and only the hard cases falling through to the runtime’s selectgo
. The recurring theme there was coordination —...
Modern IDEs like GoLand are more than just a text editor: they’re packed
with power coding features that can turn you into a software superhero.
#603 — May 29, 2026
Read the Web Version
Go Weekly
Generic Methods Land in Go — Back in January, one of Go’s co-creators proposed bringing generic methods to Go (rather than just functions) and now he tells us: “This has been im...
The trigonometric Fourier series is a beautiful mathematical theory that
shows how to decompose a periodic function into an infinite sum of
sinusoids. These are my notes on the subject, with some examples and the
connection to linear algebra in Hilbert space.
Coefficients of Fou...