27
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
this post was submitted on 05 Oct 2025
27 points (100.0% liked)
TechTakes
2654 readers
83 users here now
Big brain tech dude got yet another clueless take over at HackerNews etc? Here's the place to vent. Orange site, VC foolishness, all welcome.
This is not debate club. Unless it’s amusing debate.
For actually-good tech, you want our NotAwfulTech community
founded 3 years ago
MODERATORS
This author touches on a point that dovetails with my thinking:
I think it likely that these tools will not be judged, in the long term, by the ambitions and hopes of the AGI cultists and hype-men, but by comparison to the many other attempts at natural-language programming in English. Smalltalk, Visual Basic, I even want to throw in AppleScript, as simple and threadbare as it was. How are all of these doing now?
AppleScript has been complemented or perhaps superseded by at least two more graphically-oriented attempts at system automation targeted at non-technical users. One could argue that its falloff came from an imperfect marriage with the message-passing/service-oriented architecture based on Objective-C and inherited from NeXT in Mac OS X, a system design which is itself now vestigial. The comparison with LLM coding assistants is imperfect, as they seem to be typically targeted at the more granular level of the class or the method, rather than explicit high-level hooks in an application. A better comparison here would be the last year or so worth of "AI agents," but, uhm, ahh...
Smalltalk seemed to have a pretty big boom in the late 80s/early 90s, but tapered off rapidly after that. I like the more modern implementation of Pharo well enough, but it strives to throw in everything and the kitchen sink, with a downright balk-worthy amount of packages listed when you open up the class browser. On top of that, a few weeks ago I noticed someone in their Discord telling a newbie that current good practice is to file out your code every once in a while and then start over with a fresh image, as various background processes in stock images typically become unstable over time. This is orthogonal to the natural-language-like design, but it is a stumbling block to the sense of "liveness" and interactivity that is similarly a big hook for LLM assistance. Furthermore, as far as I know, they still don't have a stable answer for system-level parallelism in the VM. All I've seen is a rather awkward technique for spinning off tree-shaken child VMs if there's some method you want to run in parallel. You've got to really love Smalltalk to want to work past that shortcoming!
VB.NET I can't really speak to, except that it seems Microsoft now considers it a stable language with little if any new feature development. The original implementation never seemed to have a good rep for maintainability, and the very idea of native Forms seems out of fashion compared to JavaScript web-app frontends. And the land of JavaScript, of course, seems to be the most fertile and uncontested kingdom of LLM coding assistance. I'm genuinely interested to hear more experiences with modern VB, as it strikes me as the last great corporate-sanctioned push for non-technical users to build their own apps, and thus the most worthy comparison.
All this is to say that each of these previous attempts at natural-language programming haven't bit-rotted too hard, implementations are still available and you can probably salvage a legacy project with some effort. But each of them have been sidelined by industry over time. Not necessarily because of Dijkstra's objection to the ambition of approaching natural language, although I don't think we can totally discount that as a factor. But other technical or platform restrictions certainly hamstrung each of them. And LLM tools are still mostly API-based SaaS, which always has the glaring technical vulnerability of the provider running out of money. Yes, people will still pursue local models, but the bubble bursting could do a lot more harm to this approach than proponents anticipate.
Yeah like convincing people to start to count at zero, causing billions in damages by off by one errors. Dijkstaaaa!!!
(Im just making a joke/doing a bit here, I dont blame him for off by one errors, counting at zero isnt even the big one I think (more logic errors). Just always find it funny that he wrote a article on why we should start to count at zero. Sorry I dont have any useful input).
E: perhaps some input. Not sure if coding in natural language is ever really going to be viable in serious projects, as at the end of the day it needs to be converted to machine code. And there will be mismatch. Same like writing the law like code. There also is a mismatch there.
There's plenty of more recent pushes to allow non-technical users to build apps, more than are countable. As far as "great" ones, maybe Azure Logic Apps? It's Microsoft's option for low/no code automation in Azure. It's all code under the hood, but it mainly works as premade blocks you drag and drop, and connect like a flow chart. Pretty sure it's event driven. Most blocks have some drop down options and settings to fill in the blanks of. I think you can also just have some code as a block too.
Haven't used it myself, just had to help support some of the input, output, and governance. Also have seen it brought up a bunch in Azure certification paths (work has a requirement of some training courses each year, and unfortunately those are the most relevant ones offered through the vendor we have a deal with).
@wizardbeard @istewart sounds like Scratch tbh
I believe OG Scratch was on top of Squeak Smalltalk, current version is on top of JavaScript.