The fundamental problem with the way we build software

Source code is trying to accomplish two separate goals at the same time:

  1. Efficiently instruct compilers how to generate machine code and lay out data in memory.
  2. Allow humans to use human-like language to describe what the machine should do, in a way that is easy for humans to articulate.

For years we've been moving away from using source code for A, towards using it for B, stipulating that compilers are smart enough, (and if they are not right now, surely the next generation of compilers will be) to achieve A implicitly. They are not, and they probably never will.

Developers spend a lot of time talking and dissecting and analyzing the "cleanliness", the "vibe", the "feel" of the source code, with little to no regard on how it affects the software. They do that to a point where they often conflate "clean" code and good software. They do that not because the aesthetics of the source code matters, (users do not care at all about code,) they do that because it is the front-facing part of the development process, this is the thing they interact with on a daily basis.

Software engineering is in its infancy, and before it had a chance to mature, to figure out what it is, it was catapulted to the forefront of all major technological advancements, with ever-growing demand for manpower. Software engineers were forced to build the software industry on top of a very shaky foundations, built with the tools that were our first attempt in a new field, in times when computers were something different. These tools quickly grew inadequate and obsolete, and yet deeply ingrained.

We have built so much on top of those foundations, that the thought of replacing them sounds impossible, yet replace them we must!