Books I read in 2025, in no particular order. In the past I used the e-ink readers, but in the last few years I prefer to read and collect the physical books. This is not that expensive if you buy second hand books. This year I found a great service called bookbot.de where you ca...
Faking it till you make it isn’t always the best strategy in life, but it
can be a useful one in software engineering. Here’s an easy way to create a
local HTTP server for testing Rust API clients.
Quick takeaways
Complexity comes from two extremes - projects fail both when they’re overcomplicated with unnecessary patterns and when they’re oversimplified for a complex domain
Essential vs accidental complexity - essential complexity comes from the domain itself...
mdBook is a tool for easily
creating books out of Markdown files. It's very popular in the Rust ecosystem,
where it's used (among other things) to publish the official Rust book.
mdBook has a simple yet effective plugin mechanism that can be used to modify
the book output in arbi...
Here’s a small quiz derived from some incorrect advice from an AI coding assistant. This program prints two timestamps; will they be a. Roughly the same time (ie, the same second)b. Roughly 10 seconds apartc. Something else Answer after the fold
#583 — December 17, 2025
Read the Web Version
🎄 It's the last issue of 2025, so we're looking back over some of the big stories and links of the year. Also, Go Weekly will be moving to Fridays in January 2026, as part of a reshuffle for many of our new...
In the previous posts
, we’ve explored how the Go compiler processes your code: the scanner breaks it into tokens, the parser builds an Abstract Syntax Tree, the type checker validates everything, and the Unified IR format
serializes the type-checked AST into a compact bin...
Discusses some design choices used in Jubilant: Python subprocess.run to wrap a CLI tool, a code generator to convert Go structs to Python dataclasses, and the use of uv with a simple Makefile to run commands.