A discussion of best practices related to writing and maintaining code bases.
Wet code is bad code
If you find yourself copying-and-pasting code you’re doing something wrong.
Don’t Repeat Yourself (DRY) — the opposite of wet.
The more code you write the more bugs you’ll introduce.
When trying to name things, readability is paramount.
Code should be written with the understanding that you’ll forget.
Automation is the best.