Why you shouldn't be concerned about optimization
Posted: | Categories: Aphorisms, Programming | Tags: Optimization
When you were at the university or in any programming course, you–like me–were probably thought of the importance of optimization. In the real world though, you should strive for writing good code–possibly using bullet-proof Design Patterns–and defer optimization until later. Actually, you should optimize your code only if, after testing, you realize that optimization is strongly necessary. There are three aphorisms concerning optimization that you cannot but know:
-
More computing sins are committed in the name of efficiency (without necessarily achieving it) than for any other single reason, including blind stupidity. William A. Wulf
Read more...