Hacker News new | ask | show | jobs
by seren 3616 days ago
Given that there is usually a few "defects" per 1000 line of code, for any given language, it is better to achieve the same functionality with 10 kLoc than 100 kLoc.

That being said there is always a balance between readability and maintainability versus terseness.

And if you reduce your application Loc count by depending on a big external dependencies you just move the problem around (it might be the right solution, you just have to be aware of it)

So yes, I tend to be in the camp considering that code is rather a liability than an asset.