vote up 1 vote down star

Inspired by What’s your favorite “abandoned rule”? What is the number 1 "rule" you know you should follow, but don't?

flag

33% accept rate

12 Answers

vote up 13 vote down

Go to bed before midnight, not siting behind monitor for "15 more minutes".

link|flag
Damn Crackoverflow ensures you never go to bed before midnight. – derobert Dec 9 '08 at 3:37
vote up 4 vote down

Document your code.

link|flag
vote up 4 vote down

See my original answer.

Write tests early and often.

link|flag
vote up 4 vote down

Back up everything, and often.

link|flag
vote up 2 vote down

When I consider the code on my project, including some of my code...

Code as if the person who ends up maintaining your code is a dangerous psychopath who knows where you live

link|flag
From stackoverflow.com/questions/58640/… (Damian Conway from the book Perl Best Practices) – VonC Sep 22 '08 at 5:55
vote up 2 vote down

Don't take prototype / proof-of-concept code into production. (Now that I think about, Jeff Atwood had a blog entry on this: The Prototype Pitfall). That said, a ground up rewrite v2 frequently happens if the code is important enough.

link|flag
vote up 2 vote down

Procrastinator badge

Procrastinating when I should be working.

I spend most of my time, surfing the net reading programming blogs and stackoverflow, instead of coding.

(P.s., I took the Procrastinator badge from http://stackoverflow.com/questions/1933/how-do-you-beat-procrastination)

link|flag
With coding, frequently I think procrastination is a virtue, not a fault! I do better if I have time to mull a project over a while than if I have to jump straight into it... – Stu Thompson Sep 22 '08 at 12:21
vote up 1 vote down

The most common ones which i break all the time :

  • Do not use "Select * from " on the database

  • Get a code review done before committing to the SVN (naughty!)

link|flag
vote up 1 vote down

Keep the original estimation and compare it with the actual schedule after the project is done.

link|flag
vote up 0 vote down

Plan and document before you start coding.

link|flag
vote up 0 vote down

My professor preached functions with single entry point and single exit points.. this saved my life a lot of times. But every now and then I slip in return statements in the middle of the function definition rather than refactoring the code around it.

link|flag
IMHO this is fine for short functions. For me it works out this way more often in Java than in C. A method can be 5 lines long, or double that if you refactor it to avoid having multiple return statements. – slim Sep 22 '08 at 8:11
vote up -2 vote down

don't duplicate questions which already exist.

link|flag
Not duplicated, this a different question (albeit, only slightly). The original was rules that shouldn't be followed, this one is rules that should be followed, but aren't for any of a cariety of reasons. – Matthew Scharley Sep 28 '08 at 4:04

Your Answer

Get an OpenID
or

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