vote up 32 vote down star
51

I have been working on a list for a while that helps me share the why of programming approach and thought as much as how to do something.

For this, I wanted to build a list of things that are:

  • best practice,
  • best thought,
  • best approach...

that help a programmers ability to analyze, think, approach, solve and implement in the most effective way.

I have seen dozens of incredibly valuable comments in questions throughout SO but I couldn't find a place where we keep them together. There is the most controversial opinion on SO, however I'm just looking for sagely insights that can be shared and help my team and I approach and solve problems better through better programming.

Hopefully this can be one place to gather the one or two liners that are concise, profound and easy to share, repeat, review. If we keep it to one rule per answer it might be easiest to vote up/down.

I'll start with the first.

DRY - Don't Repeat Yourself - In code, comments or documentation.

EDIT: This is now a community wiki. Appreciate the flood of answers!

flag
show 11 more comments

65 Answers

prev 1 2 3
vote up 0 vote down

Always write documentation for your code! In half a year you won't remember about how it works. So don't write any code without documentation!

link|flag
vote up 0 vote down

It's never easy the first time. It will be a snap to do every time after. It's like trying to find a short cut the first time you're driving somewhere. Before GPS.

link|flag
vote up 0 vote down

Code without unit tests is, by definition, broken.

Self-explanatory.

link|flag
vote up 0 vote down

People that know just a little about something (process/software) are the most dangerous people in the world.

link|flag
vote up 0 vote down

Write self-explanatory code (and then still document it), which includes

  • meaningful names avoiding abbreviations and especially consonant clusters
  • functions that are just introduced to make real code read like pseudo-code
  • keeping the level of abstraction constant inside one code unit etc. etc.
link|flag
prev 1 2 3

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.