this post was submitted on 04 Mar 2026
61 points (93.0% liked)
Programming
25936 readers
312 users here now
Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!
Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.
Hope you enjoy the instance!
Rules
Rules
- Follow the programming.dev instance rules
- Keep content related to programming in some way
- If you're posting long videos try to add in some form of tldr for those who don't want to watch videos
Wormhole
Follow the wormhole through a path of communities !webdev@programming.dev
founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Yea I am not saying the tools are bad. Also use Claude mostly via our internal corporate tooling to do initial generation of things like unit tests and it helps sketch and brainstorm.
I will say it is crazy the amount of trust people/companies are putting in the tools though. It can and will make up straight lies out of thin air. At least with code things don't compile which helps a bit. Even then, have been watching a few MSFT repo's and they have devs just blanket approving copilot generated PR's that have bugs and breaking changes.
The tools are great, but they aren't an excuse to be lazy. And they aren't a replacement for that last 10% like you said, still need devs and real human problem solving.
Yeah, and it moreso moves a lot of your work over to other important stuff.
Namely, planning things better, reading, documenting, and coming up with more specific scenarios to test.
Before, because Id spend an extra chunk of my time on that 90%, maybe my documenting would be mid at best, stuff would slip through, my pile of "I prolly should get around to documenting that stuff" keeps growing and growing.
And then while maybe I can vaguely think "yeah I bet theres edge cases for this stuff I didnt make tests for", its followed by "But I dont got time for that shit, I have to have this done by end of day"
Meanwhile with LLMs, I can set it off to cook on that 90% chunk of work, and while it's cooking I can chat with another LLM instance and back-and-forth iterate on "what are some possible gotchas in this logic, what are edge case scenarios to test?" and by the time the agent finished coding, I have like 20 edge case test to copy paste over to it "Hey, make tests for all these cases, make sure those all work as expected "
It shifts my focus over from just monkey work to stuff that matters more, finding and poking holes in the code, trying to break it, making sure it withstands stress and edge cases, and finding possible gaps and flaws in it.
When you focus like that, you definitely become way more productive.
As opposed to people who just give up and, yeah as you said, just are lazy, they hand off the work to the LLM but arent making up for that by redirecting the energy to other places of value, they're gonna go, I dunno, run a raid in WoW or something fuck knows.