Code only what you need right now???
May 28th, 2007Although I agree with the intent, I do not agree completely with this statement.
Variable Usage And Meanings
May 28th, 2007When you design your program, you need to figure out what sorts of storage you need, temporary or otherwise. For every piece of information you need to track, you will need to allocate a variable to store it.
i++ vs. ++i
May 28th, 2007What’s the big deal? What’s the difference?
Code Performance
May 28th, 2007What do you need to do to squeeze every ounce of performance out of your code? This is by no means exhaustive, but taking caree of these issues is a good start.
KISS Coding
May 28th, 2007The KISS principle definitely applies to coding, but I think many people that follow it, take it too far.