https://www.youtube.com/watch?v=l3fhVU6Svo8&t=15s

The world demands better code.

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:

  1. Naming conventions
  2. Small and simple functions (SOLID principles)
  3. Precise and useful comments
  4. Reusability
  5. Testing
  6. Standardization
  7. Separation of responsibilities
  8. Reduction of complexity (KISS)
  9. Constant refactoring (scout rule)
  10. Code formatting (elegance)

*"Any fool can write code that a computer can understand. Good programmers write code that humans can understand."