Thursday, November 24, 2005

Ten Essential Development Practices

Following is a list of good development practices from an article by Damian Conway. I am reproducing them here after slightly modifying them so as to make them applicable to programming in languages other than Perl too.

  1. Design the Module's Interface First
  2. Write the Test Cases Before the Code
  3. Create Standard Code Documentation Templates for Modules and Applications
  4. Use a Revision Control System
  5. Create Consistent User Interfaces
  6. Agree Upon a Coherent Layout Style and Automate it
  7. Code in Commented Paragraphs
  8. Throw Exceptions Instead of Returning Special Values or Setting Flags
  9. Add New Test Cases Before you Start Debugging
  10. Don't Optimize Code--Benchmark It


I guess most of these are obvious to many of us - developers but still only a few of us can honestly admit to following all of them stringently everytime. So I believe the real challenge lies in how religiously can you follow them even in the face of deadline pressures, unclear specs, and the other pain producing things that indirectly affect what you do when you write code using your favorite editor.

Read the original article by Damian Conway.