Don't optimize your software prematurely
foreach.org
Don't optimize your software prematurely
1–7 of 7 posts
Re: Don't optimize your software prematurely
#2"Premature optimization is the root of all evil (or at least most of it) in programming." Source: Computer Programming as an Art (1974) p. 671
Re: Don't optimize your software prematurely
#3To quote Captain Barbossa: ... the code is more what you'd call "guidelines" than actual rules.
Also, "A foolish consistency is the hobgoblin of little minds"
Re: Don't optimize your software prematurely
#4Alone the title reminds me of this: "Premature optimization is the root of all evil (or at least most of it) in programming." Source: Computer Programming as an Art (1974) p. 671
"In practice, it is often necessary to keep performance goals in mind when first designing software, but the programmer balances the goals of design and optimization."
^^ This. I am ashamed when the original quote is being used to basically advocate "write un-optimized code and we'll buy hardware, which is cheaper than development time". I do realize that wasn't the case back when the books were written (hardware was hella expensive), but today this is just encouraging bad form in developers, many times their go-to reaction is "let's add more ram".
Re: Don't optimize your software prematurely
#5Alone the title reminds me of this: "Premature optimization is the root of all evil (or at least most of it) in programming." Source: Computer Programming as an Art (1974) p. 671
Pretty sure you are correct. The "quote" was paraphrased from my poor memory. Also from what I read, the book series is, even today, very informative and relevant. I am however disappointed how much damage this quote is doing outside of a proper context. "In practice, it is often necessary to keep performance goals in mind when first designing software, but the programmer balances the goals of design and optimization…
Instead of discouraging the idea of writing unmaintainable code that is faster in an area that may not even be a bottleneck we get people who use that quote to excuse writing terrible code.
Good design is not premature optimization.
Re: Don't optimize your software prematurely
#6Alone the title reminds me of this: "Premature optimization is the root of all evil (or at least most of it) in programming." Source: Computer Programming as an Art (1974) p. 671
And it's also highly misunderstood, because it's used as a mantra, out of context.
Good development is not mantra-driven.
Re: Don't optimize your software prematurely
#7I like to think that our programming philosophies aren't carved in stone. (KISS, DRY, YAGNI, etc.) To quote Captain Barbossa: ... the code is more what you'd call "guidelines" than actual rules. Also, "A foolish consistency is the hobgoblin of little minds"