YAGNI - You Ain't Gonna Need It
means don't add functionality that you don't need.
DRY - Do not Repeat Yourself
means don't copy and paste the same bunch of code, try to abstract it out.
KISS - Keep it simple, Stupid!
simplicity should the key goal in design and unnecessary complexity should be kept out.
means don't add functionality that you don't need.
DRY - Do not Repeat Yourself
means don't copy and paste the same bunch of code, try to abstract it out.
KISS - Keep it simple, Stupid!
simplicity should the key goal in design and unnecessary complexity should be kept out.