Last active
November 25, 2020 10:43
-
-
Save IngmarBoddington/f2151679102b9ff0cb69 to your computer and use it in GitHub Desktop.
Coding Mantras
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Don't Repeat Yourself - DRY | |
- Don't repeat code | |
- Use reusability | |
Keep It Simple Stupid - KISS | |
- Don't overcomplicate for it's own sake | |
OOP | |
- Program to an interface | |
- Favour composisition over inheritance | |
Don't make me think | |
Filter & Escape | |
Don't leave broken windows | |
There is a special place in hell for programmers who write poor error messages | |
Goodhart's Law: When a measure becomes a target, it ceases to be a good measure. | |
Brooks's Law: Adding manpower to a late software project makes it later |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hey, bro! good job :) it is good to always keep that in mind