in reply to Re^2: Reinvent the wheel!
in thread Reinvent the wheel!

I believe that the goal of programming is to solve problems, not to produce code. If you can solve problems without writing code, so much the better.

The single biggest contribution to reliability, security and maintainability, is using less code to solve the problem.

Note: using, not writing. You may succeed in writing less code by using a one or more modules, but if the modules are over-engineered, too generic, grossly hierarchical, or otherwise verbose, then you can still end up with more code than you need. And that's bad all round.


Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
"Science is about questioning the status quo. Questioning authority".
In the absence of evidence, opinion is indistinguishable from prejudice.
"Too many [] have been sedated by an oppressive environment of political correctness and risk aversion."

Replies are listed 'Best First'.
Re^4: Reinvent the wheel!
by chromatic (Archbishop) on Mar 22, 2009 at 03:00 UTC

    You're right, though I do believe that the far more frequent sin is writing too much code, not reusing too much code.