DEV Community

Discussion on: What are your guiding principles in software development?

Collapse
 
thomasjunkos profile image
Thomas Junkツ • Edited

If I had to chose one principle to be my guiding principle, I would go for

KISS - Keep it stupid simple

Most of my career, I've been fixing / debugging other people's creations. And this taught me the lesson that it does not pay to be (too) clever.

Build systems mostly with primitives and simple abstractions helps avoiding errors easily and saving time and energy.

Or how Brian Kernighan once put it:

»Everyone knows that debugging is twice as hard as writing a program in the first place. So if you're as clever as you can be when you write it, how will you ever debug it?«