116
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 18 Sep 2026
116 points (96.8% liked)
Programming
28506 readers
1116 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 3 years ago
MODERATORS
It is heavily normalized in industry now.
I quit a job that added AI use to performance reviews super early. That was pure bureaucratic cancer and most of my good coworkers burned out and left. I don’t think I’ll ever work for a big corp again, I actually like my work so much more now.
At work I’m expected to use it, our clients want it, my boss likes that he can feel technical when writing tickets (they’re mostly wrong though, and the tickets solution instead of report and request). It genuinely can do some useful tasks that make sense to use it for.
There are real pros and cons, but there’s no putting this back in the bottle. Philosophically I do hate it and everything it stands for, but practically it has allowed me to do a lot that I couldn’t (and wouldn’t) before.
The only good solution I’ve found is that you have to get your hands dirty and stay in the weeds. You cannot let it run off and do what it wants, you have to drive and then tag it in. When you vibe code something you’ll find yourself in three weeks resolving an issue and going “wait, it does what?!”, and of course, arguing with the gibberish Claude or GPT claims is English but is actually the first stage of model collapse as the models reinforcement train on ever more distilled data. Plus, skill atrophy is real. Decide which skills to allow to atrophy carefully.
AI code review is good and useful. I used to use it as a first wave for obvious stuff, but it is actually decent and high trust now. Saves me some time on that.
It’s good at finding bugs and security issues, and one thing I actually really like is having it model a system as a state machine and enumerate all the possible states to find bugs — especially concurrency bugs. I don’t work in a provable language, so this is hugely helpful.
I would be very hesitant to take a role where they push vibe coding or “agentic fleets” or loops or whatever. If you’re babysitting 6 Claude code sessions you aren’t working and you’re not in the loop on any of them. That will accumulate as tech debt and bog you down over time. It’ll suck your soul dry. It’s miserable.
Reading the slop and reviewing it “software factory” style is a very bad sign to me.
Some code is throwaway or disposable, vibing that makes sense to me. But the core work is more important than ever. Maybe the disposable code is the new part, I look at it like installing an IKEA kitchen, it’s slop, but it looks nice, the important part is the foundation and level flooring that enables the slop to stand up.
You're right to push back on that -- I've been using Claudish the whole time and this actually changes everything. If we use English instead, each one of these comments could be a single, concise line. One thing worth knowing: This is not a minor boost to understanding, but a complete game changer. Understanding my bullshit has been gated behind speaking LLMese.
Nah, really, I've been able to get fairly decent code out of the newer models since I work with a very popular language. Not one-shotted of course, but after some change requests or manual changes. But the language these models speak (including the Chinese ones, it seems) is infuriating and they seem to insist on tons of super long comments in places where the code itself feels self-explanatory. My philosophy is to write "why" comments, not "how" comments, but not a single model seems to agree with me.
Are IKEA kitchens really that bad? I've been looking to remodel my ancient kitchen and it comes to 5-6k EUR, appliances included (minus the fridge, I upgraded that a while ago), from IKEA. If I ask a carpenter to do a proper one, that's going to be more like 10-20k and I don't wanna spend that kinda money lol
IKEA kitchens are great?! We've had ours for a long time now. And even moved once and took the kitchen with us. It's easier to assemble than their competition, the surface of my cupboards has higher quality than some other kitchens I've seen. There's no silly salesman in the process who tells you it's 17,000€ but you get a special discount and only need to pay 10,000€ if you order it today... You can just grab additional cabinets 12 years later...
I didn't buy the appliances at IKEA, though. And I found nicer alternatives for the sink, plumbing, ~~countertop~~ worktop as well. But the rest is from IKEA and I'm A-okay. Also like my IKEA wardrobe.
Only downside is if you don't assemble it yourself. I had a look at their price table for assembling it, and that service was a bit expensive, I think. At least where I live.
For anyone confused, this is common in some parts of the world. Taking your entire kitchen with you to a new home is a thing.
And yeah, appliances aside, IKEA has great countertops, cabinets, and so on.
Yes. I mean it doesn't have to be like that. You're also allowed to (try to) sell the kitchen to the next person. But the landlords usually don't want to be bothered with the upkeep, fix appliances or get insurance in case the plumbing floods your stuff. So they regularly just provide people with the walls, heating... And since it's a bit difficult to move the loo, the bathroom will be okay and contain a toilet, shower and sink including faucets 😅
And turns out I misspoke. I meant I got a worktop at some other place, not the entire countertop.
I think IKEA has different price points
The ones installed when I moved in were those cheap particle board counter tops and cabinets, so when my dishwasher leaked everything expanded and cracked and can never be fixed. A real wood or high quality MDF would have been okay with a one time water event (if dried properly)
It stood up for years, worked fine, wasn’t awful. Just was cheap and not resilient.
Absolutely hate the “how”, that’s comment garbage.
But it perfectly matches what you’d get in annotated data or intro medium blog style writing.
You hiring any managers? 😅
Could you elaborate on that at all, finding bugs with a state machine approximating the system, how does that work?