I don't want to hate on this but I remember last week, when as a backend developer doing frontend, I spent about 20 minutes prompting Claude Sonnet in a loop trying to build a landing page for a new feature.
The task was to put create a header, putting the company logo in the corner and the text in the middle.
The resulting CSS was an abomination - I threw it all away and rewrote it from scratch (using my somewhat anemic CSS knowledge), ending up with like 3 selectors with like 20 lines of styles in total.
This made me think that 1: CSS and the way we do UI sucks, I still don't get why don't we have a graphical editor that can at least do the simple stuff well. 2: when these model's don't wanna do what you want them to the way you want them, they really don't wanna.
I think AI has shown us there's a need for a new generation of simple to write software and libraries, where translating your intent into actual code is much simpler and the tools actually help you work instead of barely allowing to fight be all the accidental complexity.
We were much closer to this reality back in the 90s when you opened up a drag and drop UI editor (like VB6, Borland Delphi, Flash), wrote some glue code and out came an .exe that you could just give to people.
Somewhere along the way, the cool kids came up with the idea that GUIs are bad, and everything needs to go through the command line.
Nowadays I need a shell script that configures my typescript CDK template (with its own NPM repo), that deploys the backend infra (which is bundled via node), the database schema, compiles the frontend, and puts the code into the right places, and hope to god that I don't run into all sorts of weird security errors because I didn't configure the security the way the browser/AWS/security middleware wanted to.
>Somewhere along the way, the cool kids came up with the idea that GUIs are bad, and everything needs to go through the command line.
It's important for people to feel like "hackers" that is the primary reason why command line sort of exploded among devs. Most devs will never admit this... they may not even realize it, but I think this is the main reason it went big.
The irony is that the very thing that makes devs feel like "hackers" is the very thing that's enabling agentic AI and making developers get all resistant because they're feeling dumber.
The task was to put create a header, putting the company logo in the corner and the text in the middle.
The resulting CSS was an abomination - I threw it all away and rewrote it from scratch (using my somewhat anemic CSS knowledge), ending up with like 3 selectors with like 20 lines of styles in total.
This made me think that 1: CSS and the way we do UI sucks, I still don't get why don't we have a graphical editor that can at least do the simple stuff well. 2: when these model's don't wanna do what you want them to the way you want them, they really don't wanna.
I think AI has shown us there's a need for a new generation of simple to write software and libraries, where translating your intent into actual code is much simpler and the tools actually help you work instead of barely allowing to fight be all the accidental complexity.
We were much closer to this reality back in the 90s when you opened up a drag and drop UI editor (like VB6, Borland Delphi, Flash), wrote some glue code and out came an .exe that you could just give to people.
Somewhere along the way, the cool kids came up with the idea that GUIs are bad, and everything needs to go through the command line.
Nowadays I need a shell script that configures my typescript CDK template (with its own NPM repo), that deploys the backend infra (which is bundled via node), the database schema, compiles the frontend, and puts the code into the right places, and hope to god that I don't run into all sorts of weird security errors because I didn't configure the security the way the browser/AWS/security middleware wanted to.