|
|
|
|
|
by volkanvardar
1725 days ago
|
|
What I learned from 20 years of development experience is to follow the below in that specific order. 1. YAGNI - do not try to solve a problem which is not yours 2. SOLID - try to build in an extensible way, so you can later refactor it easily 3. DRY - it is time to modularize when you start copy/pasting So, I can say that you are on the right track. |
|