idioms i work with at my job that are always right:
Don't Repeat Yourself (DRY) - if you're copy/pasting code you can make that into a function instead and just call the function to save time and space
You Ain't Gonna Need It (YAGNI) - you spent an hour writing a really clever function, however nothing is going to use that function and you're not sure if it will ever be used. don't do that, just write what's necessary
Keep It Simple, Stupid (KISS) - Don't try to be clever. Don't over-optimize when not necessary. Break things down into smaller pieces of work
"If it's stupid, and it works, it isn't stupid." - I've lost track of the number of times i've written something that looks ridiculous but solves a problem and never causes an issue. Don't judge your work like that

















