Tech News
← Back to articles

Developers Are Solving the Wrong Problem

read original related products more articles

Everyone is either offended or excited about “vibe coding.” It’s all the rage and going to solve all your problems, or it’s the next great evil spewing crap code all over your systems. Those of us who love well structured clean code which is modular and concise seem to be a dying breed. For someone who’s early career was shaped by McConnell’s Code Complete, Brooks’ The Mythical Man Month, and Fowler’s Refactoring, this feels.. odd.

But when we dig into the WHY, something interesting happens:

Why do we want “well structured” code?

Well structured code is easier to understand to debug, extend, and maintain. But is there a single, shared definition of “well structured”?

Why do we want “clean” code?

Clean code is easier to understand to debug, extend, and maintain. But is there a single, shared definition of “clean”?

Why do we want “modular” code?

Modular code is easier to understand to debug, extend, and maintain. But is there a single, shared definition of “modular”? Actually, yes the Single Responsibility Principle addresses this one.

Why do we want “concise” code?

The less code there is, the easier it is to understand to debug, extend, and maintain. But too concise can make things harder to understand.

... continue reading