Programming Rules by me
- First plan -> then code
1.1 Define all data definitions and transforamtions
1.2 Think of fucntions you need
- Use IDE/text-editor that you like, not the ‘cool’ one
- Have git, commit often
- Solve one thing at a time
- Test with each code update
- Write tests before you write code
- Only comment out when debugging, never delete
- Make each function do one thing only (share responsibiliets)
- SLEEP! SLEEP! SLEEP!
- Write purpose statements for all functions
- Comment code throught
- Think before using Internet suggetions
- Read manuals for everything
- Find partner, work together
- Consult with higher up whenevrr yyou can about code logic
- Stay positive
- FOR C: deallocate memmory in the same scope!
- EAT! EAT! EAT!
- NEVER copy -> paste