▲ | WD-42 4 days ago | ||||||||||||||||
I feel so similar. I love python, I’ve spent most of my career writing it. It’s done well for me. But damn is it just not fun anymore. Runtime errors are not fun anymore. Runtimes are not fun. Virtualenvs are not fun anymore even though uv is trying. Typeless loosy goosy code that passes dictionaries all over the place is just not fun. Rust ruined it for me. Or maybe I’m just bored. | |||||||||||||||||
▲ | morningsam 4 days ago | parent [-] | ||||||||||||||||
>Typeless loosy goosy code that passes dictionaries all over the place is just not fun. mypy --strict in CI & don't let dict[str, Any] pass review if the keys are constants, insist on a dataclass or at least a TypedDict. | |||||||||||||||||
|