Go 1.24.2-1 and 1.23.8-1 Microsoft builds now available

A new release of the Microsoft build of Go including security fixes is now available for download. The post Go 1.24.2-1 and 1.23.8-1 Microsoft builds now available appeared first on Microsoft for Go Developers.

Summary of reading: January - March 2025

"The Birth of Britain: A History of the English Speaking Peoples, Volume I" by Winston Churchill - yes, that Churchill :) While it was started in the 1930s, the writing of this 4-volume history of Britain and its former colonites was interrupted by WWII and Churchill's...

Deferred teardown closure in Go testing

While watching Mitchell Hashimoto’s excellent talk1 on Go testing, I came across this neat technique for deferring teardown to the caller. Let’s say you have a helper function in a test that needs to perform some cleanup afterward. You can’t run the teardown ins...

Notes on implementing Attention

Some notes on implementing attention blocks in pure Python + Numpy. The focus here is on the exact implementation in code, explaining all the shapes throughout the process. The motivation for why attention works is not covered here too deeply - there are plenty of excellent onlin...

How and why PlanetScale built a VM in Go

#​547 — March 26, 2025 Unsub  |  Web Version Go Weekly Go on the PlayStation 2 — If you like tinkering with consoles and shoe-horning Go into new (or old?) environments, this post is for you. It involves TinyGo, C, and a lot of t...

Goodbye core types - Hello Go as we know and love it!

Go 1.25 simplifies the language spec by removing the notion of core types

Things fall apart

The night is dark and full of errors—and durable Rust software is not only ready for them, but handles them sensibly. Let’s see how, by returning to our line-counter project.

Understanding Numpy's einsum

This is a brief explanation and a cookbook for using numpy.einsum, which lets us use Einstein notation to evaluate operations on multi-dimensional arrays. The focus here is mostly on einsum's explicit mode (with -> and output dimensions explicitly specified in the subscript st...

Three flavors of sorting Go slices

There are primarily three ways of sorting slices in Go. Early on, we had the verbose but flexible method of implementing sort.Interface to sort the elements in a slice. Later, Go 1.8 introduced sort.Slice to reduce boilerplate with inline comparison functions. Most recently, Go 1...

Go's choice of multiple return values was the simpler option