Posts
-
“Next-token predictor” is the wrong mental model for LLMs
Edited September 5, 2026. Details below.
-
GPT-6 Astra’s ARC-AGI-3 Results Are a Big Deal
Don’t take it from me. Take it from François Chollet.
-
Why Does Rust Need Send and Sync?
In this post, I want to shed some light on two marker traits in Rust: the Send and Sync traits.
-
Pinning Down Rust’s Pin
When working in async Rust, I sometimes encounter Pin<Box<dyn Future<...>>> types, and until now I haven’t really understood what they mean: what does Pin say about the Future? Why Box? What can...
-
Ergonomic errors in Rust: write fast, debug with ease, handle precisely
You’re starting a new Rust project and hit your first fallible function. What do you do with the Result? The quickest path is Result<T, Box<dyn Error>> and lots of ?. That works...