After a few years of programming, I noticed it affected my outlook on other parts of life.
I notice exceptions to patterns way more. In code, it's a bug or deserves a comment!
I'm also much more aware of ambiguities in sentences, even minor ones.
Have you experienced this?
miniblog.
Related Posts
Every time I implement an interpreter with recursion, I regret it.
As soon as I want TCO, or userland control of stack limits, or resumable exceptions, I need my own stack.
This is awkward because it's an upfront design decision. Changing the stack model is a big refactoring.
Switching between Rust and TypeScript, I really miss the Result type in TypeScript. I can kludge something with nullable types or exceptions, but it's not as nice for the caller.
Python is adding column numbers to its exceptions, making tracebacks way more readable!

