Tag: Software Correctness
All the articles with the tag "Software Correctness".
-
Context Is All You Need—Almost
Published:Most disappointing LLM answers are fluent solutions to the wrong problem—the fix is the missing facts, not a fancier prompt.
-
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.