Posts
All the articles I've posted.
-
Trust, But Verify: A Survival Guide for AI-Generated Python Code
Published:Welcome to 2026, where we can generate a thousand lines of Python in the time it takes to brew coffee, but we still can't guarantee it won't bankrupt us.
-
From Python to GDScript: A Performance Nerd's Field Guide
Published:If you're a Python developer curious about game development, or a Godot beginner wondering how much of your Python brain still applies: most of it does. The parts that don't are *interesting*.
-
Python Doesn't Have Variables. That's Why These Gotchas Keep Winning.
Published:Python does not have variables — it has names bound to objects — and that single mismatch is why mutable defaults, late-binding closures, and half the interview quiz still catch working programmers.
-
Throw Out the Box Model Before You Write Another Line of Python
Published:Four lines of Python that look like they print [1, 2, 3] actually print [1, 2, 3, 4] — and if that surprises you, the rest of the language will keep lying to you until you throw out the box model.