6/22/2026 at 3:03:07 PM
> Computer programming is still a black art. It's less than fifty years old, and nobody is very good at it yet. We can make better tools than we know how to use.I don't think this has changed much at all since 1992. Now you can say that it's less than 90 years old, and nobody is very good at it yet.
And most of our profession has already given up on getting any better at it because a machine can spit out code that compiles.
by miyoji
6/23/2026 at 9:56:12 PM
One of the reasons I was so interesting to find this thing I had written was that things had (in some ways) changed so little in thirty years.Today I was re-reading Donald Knuth's 1974 paper “Structured Programming with go to Statements” where he says:
“At the present time I think we are on the verge of discovering at last what program- ming languages should really be like. … My dream is that by 1984 we will see a consensus developing for a really good programming language (or, more likely, a coherent family of languages).”
Hoo boy, was he ever wrong.
by mjd
6/22/2026 at 5:11:53 PM
It sounds like excuses I hear from junior devs that don’t want to take time to learn existing frameworks and systems.Juniors just label anything that requires putting effort to understand as „bad”.
There was insane growth in junior dev numbers last 3 decades. It is not like „no one knows”, it is more like there is much more people who don’t know.
by ozim
6/23/2026 at 5:37:14 AM
Even the best programmers in the world write a lot of bugs. Yes, there's a spectrum, but on the whole we're not particularly good at writing code as a species. We still do it though because it turns out that even buggy code can be useful.Compared to building basically anything else in the world, we genuinely are pretty bad collectively at building software. Even the smart seniors.
by saghm
6/23/2026 at 6:08:05 AM
You have any stats on that or just the feeling?I find that a lot of flaws are ignored in for example physical structures because they don’t even know. Take construction inspector and walk with him through five buildings. Let me know if he left any building without pointing out any flaws.
Doctors, a lot of stuff is „let’s try this and see how if it gets better”.
Taking complexity of software and limited budget - we as industry are much much better in building anything. We have better tools and better practices.
Business people are mostly running around like chickens without head, can’t even bother to learn how to use Excel properly.
We have GIT, whole testing approach from unit to integration, team organization etc.
Most of the world runs on software as is now and it works and there is much more software in the world than any other structures we built as a species.
Bonus watching material:
by ozim
6/22/2026 at 5:06:19 PM
I disagree. I think that after 1992, we got memory safe languages that brought a meaningful improvement to the status quo. And after 2015, we've got low-level memory safe languages (Rust, as the major example. There are others, more experimental.)The average programmer doesn't get better – if anything, we might be getting worse, because the tools allow us to, and the capitalist reality doesn't optimize for great programs or programmers but for more money.
But, at least, the tools are way better than in 1992, and I think we, as a collective profession, have learned a thing or two.
by GolDDranks
6/23/2026 at 4:50:14 PM
I agree that there has been progress, but if you look at really mature fields and look at the transformations they've been through and the level of understanding that the highest level practitioners have, and compare it to computer programming... I think we were at maybe 2-3% in 1992 and we're maybe up to 7-9% now?We're still in the alchemy stages. Real masters can do nuclear chemistry.
Another way to look at it: there have been a lot of arguments on this website about whether or not LLMs are conscious. I think they obviously aren't, but I don't think there's anything special about human brains vs computer chips that means that conscious computers is impossible.
I think a "very good" computer programmer should be able to program consciousness. Not program something like an LLM that trains itself into consciousness, the actual process itself.
We are nowhere close.
by miyoji
6/22/2026 at 5:31:48 PM
We had memory safe languages before 1992.by anthk
6/22/2026 at 6:06:54 PM
Indeed, I realized I had my timeline a bit off after posting that. Of course, we have Lisp ca. 1960. (Pascal appeared 1970, but I don't think that's widely considered memory-safe. ML 1973, and that never got a widespread industry use.)What I mean is: we had memory safe system-implementation languages in wide spread production use only after/around the times of the publication of that memo; importantly, Java.
We had memory-safe experimental programming languages, and scripting languages before that. And of course, around those times, hardware was fast enough that you could start implementing systems with scripting languages (Perl, Python, Ruby, JavaScript)
And the bit I want to correct is, of course, the point is if they are actually used. In that sense, I'd correct the introduction of Rust around 2023-2026 in actual, wide-spread use.
by GolDDranks