sumofzeros | 7 years ago | on: Children poisoned by lead on U.S. Army bases
sumofzeros's comments
sumofzeros | 7 years ago | on: Python is becoming the world’s most popular programming language
To be fair, Django is pretty good: iirc, it induces good discipline for development, which is perhaps why it is so easy to handle a large codebase.
On the other hand, the business logic is outside the scope of Django (or any other framework), and there, if the devs do not follow good practices and develop the right tools, it might be more difficult to be productive.
The way I see it, people using dynamic languages have much more freedom in development, but also less safeguards, which means that they have to build them to make their code more robust. Having code generators is a way of getting back some safety, because you only have to make sure the generators are producing correct code.
Custom code, however, need to be thoroughly tested to be considered safe, and if the compiler doesn't do any type level consistency check, it's that many more tests that needs to be written, which adds up to the LOC count.
sumofzeros | 7 years ago | on: Python is becoming the world’s most popular programming language
sumofzeros | 7 years ago | on: Python is becoming the world’s most popular programming language
How much of it is generated?
sumofzeros | 7 years ago | on: Rust RAII is better than the Haskell bracket pattern
Have a look at ATS[1], it supports many features that are available in Rust, and let you build proofs about your code behaviour. It's quite type annotation heavy though iirc, but it's very efficient.
[1] : http://www.ats-lang.org