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