From IBM there’s the Six ways to write more comprehensible code – How to keep your code from destroying you. Usefully it provides examples for:
- Comment like a smart person
- Use #define a lot. No, a LOT
- Don’t use variable names that will mock you
- Do error checking. You make errors. Yes, you
- “Premature optimization is the root of all evil.” – Donald Knuth
- Don’t be too clever by half.
Be First to Comment