Even though I don't respect podcasts as an information delivery system, I recently listened to a podcast that felt like having an epiphany.
The podcast in question was episode 61 of Future of Coding. It is essentially a read-through/review of two papers with which I was unfamiliar, but which I believe are actually quite famous and influential.
Why did listening to this feel like an epiphany? Well, I suddenly felt like I understood what the deal is with software. Why is it that when you join a company, the engineer who's been there for years seems like an incredible genius? Why do some teams that I've been on struggle while others manage to get everything right? Why is everyone always so keen to rewrite things?
The two ideas that the podcast expresses are:
Having these two ideas explained together was really helpful. If I had read Ryle by himself, I would have thought, “interesting and useless”. If I had read Programming as Theory Building without knowing the theory concept, I would just not have understood.
I recommend listening to the podcast and reading the paper. But if you don't want to do that, I'm going to try and explain the two points.
When Ryle says theory, he doesn't mean anything like what other people mean when they say theory. Annoying. He should have just come up with a new word. What he means is the thought object that exists in our minds which allows us to do things.
I, for example, know how to cook pasta. When I cook pasta, that's a certain expression of this knowledge. When I try and explain to you how to cook pasta, that's a different expression of it. Neither of those expressions contains everything I know about cooking pasta. And in fact, there are parts of what I know that I can't really express in any way. This knowledge is what Ryle would call a theory. I have a “Theory of how to cook pasta”. This theory is not something that exists in language or action - it’s a something that we can never fully express. The closest we can get to transferring a theory is to demonstrate the expression of the Theory to someone over and over again until they build their own theory. That theory won't be the same as ours.
It means that the code base we create is not the true product of our work. The real product is the mental theory of that code base which:
If I think about times when I've worked on a team that works well and gets stuff done, it's been a team where:
The paper also talks about what happens when all the people who have a theory of a given program stop working on it. It dies. Yikes. It’s claimed that we can’t rebuild a theory from code and documentation.
This model explains a few curious phenomena:
Retention of software engineers is really important!!!
Curious Maker - January 12, 2024
Great article! Thanks for sharing. This goes beyond programming. Original theory forms in one's mind, it combines their experience, knowledge and cognition, with multi-dimensional aspects, that is inaccessible to others. In order to tell others, they need to project this original theory to a lower dimension media, be it an essay, a book, a piece of code, pages of docs, audio, or video - all are lossy projections of that original theory. Then on the receiving side, they have to reverse engineering the theory in their own brain from this lossy projection, with the help of their own experience, knowledge and cognition, of course the theory they built would be different.
This explains a lot of things in life. Why people saw the same thing have different feeling, why people read the same book understands it so differently, how different perspectives are formed. The more similar people are, the more easier it is to communicate between them because the reconstructed are similar. To truly understand other's perspective, it often requires more information of the person rather than just the projected opinion.