-
Notifications
You must be signed in to change notification settings - Fork 0
Software Design
Anil Kumar edited this page Nov 27, 2022
·
3 revisions
- Complexity is incremental: you have to sweat the small stuff.
- Working code isn’t enough.
- Make continual small investments to improve system design.
- Modules should be deep.
- Interfaces should be designed to make the most common usage as simple as possible.
- It’s more important for a module to have a simple interface than a simple implementation.
- General-purpose modules are deeper.
- Separate general-purpose and special-purpose code.
- Different layers should have different abstractions.
- Pull complexity downward.
- Define errors (and special cases) out of existence.
- Design it twice.
- Comments should describe things that are not obvious from the code.
- Software should be designed for ease of reading, not ease of writing.
- The increments of software development should be abstractions, not features.