Search Results
7/11/2025, 3:51:57 PM
Be very careful ever writing a project in a dynamically typed language. Several workplaces I've been at suffered for years or decades as a result of this choice. I would actually suggest avoiding work on projects involving python or vanilla js if possible.
No one has ever written high quality python code in less time than it takes to write the equivalent in Java/Go/etc. It will either take just as long as a statically typed language with less benefits or you will half ass the type-hinting, probably the latter. Your boss will not let you refactor it. All the "annoyance" of dealing with types is necessary to not write bugs. LSPs, autocomplete, all that shit basically does it for you now anyway.
No one has ever written high quality python code in less time than it takes to write the equivalent in Java/Go/etc. It will either take just as long as a statically typed language with less benefits or you will half ass the type-hinting, probably the latter. Your boss will not let you refactor it. All the "annoyance" of dealing with types is necessary to not write bugs. LSPs, autocomplete, all that shit basically does it for you now anyway.
Page 1