show/hide this revision's text 4 deleted 72 characters in body

Here's a list of common pitfalls, and/or suggestions to avoid them:

  1. Experience, the best way to avoid mistakes is to have already had them happen to you.
  2. Review other people's code
  3. Have other people review your code(both 3, and 4 can be done via participating in an open source project)
  4. Use source control, even if you are the only developer
  5. Review all of your changes before doing a commit to source control
  6. Consider using a more modern language that makes it harder for you to make mistakes
  7. Comment your code extensively
  8. Refactor your code early and often
  9. Fix bugs before adding features
  10. Create extensive test cases, because knowing about your mistakes help you avoid future ones faster.
  11. Learn and use design patterns.
  12. Avoid code duplication at all costs, try to never copy/paste blocks of code
  13. Read about common pitfalls in the programming language you're using
show/hide this revision's text 3 added 7 characters in body

Here's a list of common pitfallsthat can be easily avoided, and/or suggestions to avoid them:

  1. Experience, the best way to avoid mistakes is to have already had them happen to you.
  2. Review other people's code
  3. Have other people review your code (both 3, and 4 can be done via participating in an open source project)
  4. Use source control, even if you are the only developer
  5. Review all of your changes before doing a commit to source control
  6. Consider using a more modern language that makes it harder for you to make mistakes
  7. Comment your code extensively
  8. Refactor your code early and often
  9. Fix bugs before adding features
  10. Create extensive test cases, because knowing about your mistakes help you avoid future ones faster.
  11. Learn and use design patterns.
  12. Avoid code duplication at all costs, try to never copy/paste blocks of code
  13. Read about common pitfalls in the programming language you're using
show/hide this revision's text 2 added 109 characters in body

Here's a list of common pitfalls that can be easily avoided:

  1. Experience, the best way to avoid mistakes is to have already had them happen to you.
  2. Learn and use design patterns.
  3. Review other people's code
  4. Have other people review your code (both 3, and 4 can be done via participating in an open source project)
  5. Use source control, even if you are the only developer
  6. Review all of your changes before doing a commit to source control
  7. Consider using a more modern language that makes it harder for you to make mistakes
  8. Comment your code extensively
  9. Refactor your code early and often
  10. Fix bugs before adding features
  11. Create extensive test cases, because knowing about your mistakes help you avoid future ones faster.
  12. Learn and use design patterns.
  13. Avoid code duplication at all costs, try to never copy/paste blocks of code
  14. Read about common pitfalls in the programming language you're using
show/hide this revision's text 1