https://www.youtube.com/watch?v=l3fhVU6Svo8&t=15s
The world demands better code.
- "Uncle Bob", Robert C. Martin
What is "Clean Code"?
Clean Code is a set of best practices for writing code that is clean, easy to understand, maintain, and evolve.
Principles:
- Naming conventions
- Small and simple functions (SOLID principles)
- Precise and useful comments
- Reusability
- Testing
- Standardization
- Separation of responsibilities
- Reduction of complexity (KISS)
- Constant refactoring (scout rule)
- Code formatting (elegance)
*"Any fool can write code that a computer can understand. Good programmers write code that humans can understand."