|
|
|
|
|
by mgkimsal
2555 days ago
|
|
> When I mean JGID, I also meant not make it a steaming pile of shit :) the tldr of my post is that people often don't know the difference. We also have grown a culture of people promoting "YAGNI", and its easier for some people to dismiss basic ideas with YAGNI. Yeah, adding 5 language translations to your project on day 1 - YAGNI. Storing passwords in plaintext? You need something more than that. |
|
DRY up your code... unless the two code paths look similar but aren't the same.
YAGNI... unless "it" is a database backup, a load balancer, or test coverage of your signup flow.
KISS... unless your problem is complicated enough that a simple solution only implements half of what you need.
Microservices are great... if you've got more than one team and can support the operational overhead of SDN and service discovery. Monoliths are great... until you're pushing code to them every minute and they become impossible to refactor.
etc.