Spotlight-Tip

New in Go 1.25: WaitGroup.Go()

WaitGroups are a means of synchronizing goroutines; yet the Add()/defer Done() idiom feels clumsy and is error-prone. A new method, Go(), puts an end to goroutine counting.

WebAssembly in 5 Minutes

Compiling Go code into a WebAssembly module is easy as pie. Getting the code to interact with the browser requires a few lines of Javascript, but it's less complicated than you might think.

Final Destination: Go?

After a long (and exciting) journey through umpteenth of programming languages, I arrived at Go and finally feel at home.

JSON Lines

This happens when JSON and CSV have a baby. (And how your Go code can benefit from it.)