Naast specifieke patronen sturen ontwerpprincipes zoals DRY, KISS, YAGNI en anderen het schrijven van goede code. Deze gemakkelijk te onthouden principes bevatten fundamentele wijsheid over eenvoud, het vermijden van duplicatie en niet te veel bouwen.
Kernprincipes
DRY (Don't Repeat Yourself) → avoid DUPLICATION → each piece of knowledge has ONE
authoritative representation (duplication → bugs/changes in many places)
KISS (Keep It Simple, Stupid) → favor SIMPLICITY → simple solutions are easier to
understand, maintain, and debug (avoid unnecessary complexity)
YAGNI (You Aren't Gonna Need It) → don't build features/flexibility you don't NEED yet →
avoid speculative generality (build what's needed, not what might be needed)
