Inspired by What’s your favorite “abandoned rule”? What is the number 1 "rule" you know you should follow, but don't?
|
|
|
|
|
|
|
Go to bed before midnight, not siting behind monitor for "15 more minutes". |
||
|
|
|
Document your code. |
||
|
|
|
|
See my original answer. Write tests early and often. |
||
|
|
|
|
Back up everything, and often. |
||
|
|
|
|
When I consider the code on my project, including some of my code...
|
||
|
|
|
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. |
||
|
|
|
|
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) |
||
|
|
|
The most common ones which i break all the time :
|
||
|
|
|
|
Keep the original estimation and compare it with the actual schedule after the project is done. |
||
|
|
|
|
Plan and document before you start coding. |
||
|
|
|
|
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. |
||
|
|
|
don't duplicate questions which already exist. |
||
|
