Engineering Fundamentals Review "Code is read more than it is written. Write for the reader, not the machine." When to Apply Activate this skill when reviewing: - Any code changes - Function and variable naming - Code organization and structure - General refactoring decisions --- Review Checklist Naming - [ ] Descriptive : Can you understand the variable without context? - [ ] No abbreviations : Are names spelled out? ( not ) - [ ] No generic names : No , , , ? - [ ] Boolean prefix : Do booleans start with , , , ? - [ ] Function verbs : Do functions start with action verbs? Function Design -…