You've definitely seen that many companies progressed from "use LLMs for anything and everything" policies to limiting budgets and scopes of approved LLM usage. It wouldn't be unexpected to see that some companies might decide that generating more code faster doesn't meaningfully contribute to their bottom line, and forego LLMs in favour of human authoring, but does it ever happen?
I'm not trying to point out any (de)merits of the new way of software development, I simply want to know if there are many/any companies that went back to the old ways.
So did Commonwealth Bank of Australia and IBM: https://www.cnbc.com/2026/07/01/employers-who-laid-off-worke...
And I'm sure many others who didn't publicize it because they have to keep this circular economy going.
Do you know of any company that banned compilers and went back to hand written assembly?
Do you know of any company that banned stack overflow and went back to figuring everything out?
After figuring out the exact product we need with some very quick development cycles with AI, we now have some problems that I can't keep under control because of AI. So, currently under consideration to rewrite the core functionality without AI so we can keep it simple, understandable and slower to change.
The interesting part is that AI could do this, but managing developers with AI has become very difficult to get them to slow down and build stable simple things.
I agree that we still haven’t figured out what’s the best way to use AI tools, but over the time it would mature and people would come up with patterns, conventions, and design principles so the quality of what is produced will be maintained or increased while keeping the productivity gains.
Assuming of course everything else stays the same (quality, etc.)
Having said that, for all our startups “interesting” code I use no AI, not even tab complete. For a few reasons:
- having derived the code and built a mental model is something like 90% of the work, the code artefact being 10%. (You can probably verify this yourself, if you’ve implemented something once and then someone deleted it all, you could rewrite it MUCH faster the second time).
- once I have this model / vision in my mind, I’m streaming it from my mind into reality via code and having code suggestions pop up breaks that flow state for me.
- using Claude code even on throwaway scripts can mask problems. Why is doing this thing so difficult that it needs an AI to write the code? And usually when I’m writing those scripts I have a thought or insight about the system. in other words it’s nice to have that low stakes time.
- models are still frustratingly bad at spatial reasoning and I don’t see this improving anytime soon, which is a problem for a lot of graphics code.
- the code models produce still isn’t what I’d consider great code; subjective of course but it’s our product and we think having great code in our core technology is well worth it in the long term!
I do still use Claude code on various commoditised pieces (account UI, etc) and I use Claude as a great search engine, though its explanations of complex topics still kind of sucks and a human blog is almost always better.
We are a small company of 15 engs.
I use AI coding tools both at work and in my hobby projects. It very clear to me they're nuclear-powered footguns, and we have a long, long way yet in developing practices, structures and workflows that will enable true benefits while minimizing the absolutely toxic baggage/fallout/side effects.
I look at the big corp push for AI adoption as another instance of boards of directors choosing the large investors / their own personal gain over the success of the corporations they govern (first instance being the "back to the office" push in attempt to shore up commercial real estate). I think the circular economy of the AI bubble has spread far and wide, and we're watching a lot of invested players trying to keep it going.
We're working in a really deep area where having full understanding of our code is more important than speed.
Besides, in this area, clients getting one whiff of AI code would be an immediate deal-killer
You have evidence video here, that the AWS AI Division (04:23) went literally full vibe coding:
"I was laid off from my AI software engineering job at Amazon" - https://youtu.be/ZAom6f4-vh0?t=263
The whole division has been dismantled...
I don't understand why people would even entertain that. They are completely fine using random libraries written by random people but not having AI helping with a small refactoring? Nobody is making you use AI to do the entire work.
I see developers using languages with garbage collectors and projects based on heavyweight frameworks while saying "we can't use AI because we still need to understand the code" or "I love coding and AI doesn't allow me to do what I love"
If you are one these people... Dude, you aren't doing the work yourself already. Back in the day memory management was one of the hardest pieces of the programming work. A lot of time went also to building stable and bug free string libraries, math libraries, UI toolkits etc. Without shifting complexity (and tedious work) elsewhere, we wouldn't have been able to build the software ecosystem we have today