this post was submitted on 15 Sep 2025
153 points (83.1% liked)

Technology

75186 readers
1877 users here now

This is a most excellent place for technology news and articles.


Our Rules


  1. Follow the lemmy.world rules.
  2. Only tech related news or articles.
  3. Be excellent to each other!
  4. Mod approved content bots can post up to 10 articles per day.
  5. Threads asking for personal tech support may be deleted.
  6. Politics threads may be removed.
  7. No memes allowed as posts, OK to post as comments.
  8. Only approved bots from the list below, this includes using AI responses and summaries. To ask if your bot can be added please contact a mod.
  9. Check for duplicates before posting, duplicates may be removed
  10. Accounts 7 days and younger will have their posts automatically removed.

Approved Bots


founded 2 years ago
MODERATORS
top 50 comments
sorted by: hot top controversial new old
[–] shaiatan@midwest.social 91 points 1 day ago (2 children)

I'm well aware the plural of "anecdote" isn't "data", but literally no dev I know (senior or otherwise) thinks this. Give me a junior work with - most of them at least actually learn.

[–] ThePowerOfGeek@lemmy.world 44 points 1 day ago (3 children)

Amen. I've tried the vibe coding thing but it's frustrating because a) too often the AI output has some profound problems and it gets annoying 'babysitting' it; and b) I usually prefer the challenge of figuring out syntax and implementation issues myself.

If something is taking too long I'll ask the LLM. But I feel like if I do this too much my skill set will atrophy and I'll lose my sharpness. So it's a balancing act.

But this brings up another wider question: where is the line between "occasionally getting AI help" and "vibe coding"? Surely it's subjective.

[–] Buffalobuffalo@reddthat.com 20 points 1 day ago (3 children)

The definition may have changed but I feel like originally it was only vibe coding when the “dev” did not know what they are doing. When some one with little to no programming background is able to build and app on “vibes” alone.

[–] Serinus@lemmy.world 8 points 1 day ago

Also applies when the dev could know what they're doing, but just doesn't care to.

load more comments (2 replies)
[–] MagicShel@lemmy.zip 9 points 1 day ago* (last edited 1 day ago)

I don't think the two cross, really. A vibe coder asks for a bunch of features and then starts refining the output, fixing bugs and adding features. A developer knows the specific architecture and from years of writing tasks knows how to break work into manageable chunks and uses AI to implement something they have already defined and know where it fits in. The skill to write a good story isn't far off from writing a good prompt.

I use AI all the time, and every time I hear someone describing vibe coding it makes my skin crawl.

[–] pheonixdown@sh.itjust.works 8 points 1 day ago

I'd say the use cases of: mundane but time consuming, pointed inquiries or interactive rubber ducking, are all getting AI help. Offloading a design where you don't have a clear understanding of how it should be done is vibing.

load more comments (1 replies)
[–] BlameTheAntifa@lemmy.world 58 points 1 day ago* (last edited 1 day ago) (5 children)

If you are wondering how it could possibly be “worth it” the end of the article has this.

The Fastly survey found that senior developers were twice as likely to put AI-generated code into production compared to junior developers, saying that the technology helped them work faster.

So vibes. Vibe coding is “worth it” because people got good vibes.

The research shows that - while engineers think AI makes them more about 20% more productive - it actually causes an approximate 20% slow-down.

AI cannot use logic or reason. Everything it outputs is a hallucination, even if it’s sometimes accurate. You cannot trust anything it outputs.

[–] Technus@lemmy.zip 24 points 1 day ago (1 children)

I'm a senior dev and I want nothing to do with AI. By the time I understand what I want well enough to describe it in a complete sentence or paragraph, I can just write the fucking code myself. I figure it out as I go.

The whole point of having devs under you that is to be able to trust them to get the job done and do it right. You want to be able to delegate tasks to them and not have to peek over their shoulder every five fucking minutes to be certain they're not making a mess of things.

I seriously doubt AI will ever be able to replace that. Not until they figure out how to make it afraid of fucking up.

[–] slevinkelevra@sh.itjust.works 6 points 1 day ago* (last edited 1 day ago) (2 children)

As a senior dev I have found AI useful for auto completion (where you see beforehand what it wants to write directly in Visual Studio) and code analysis (as it does find some bugs and can give good hints for code structure). I would never trust it with anything even remotely complex though.

It kinda scares me that people trust it enough for "agent mode", as giving it direct access to change stuff directly has simply put never worked.

load more comments (2 replies)
[–] rozodru@piefed.social 14 points 1 day ago

As someone right there in the trenches getting hired specifically to clean the slop up, I don't buy this survey at all and I'd be very suspicious of any "senior dev" that participated in it cause...where are they? I'm not seeing them when I go in to my clients offices because they all got axed. I do see a lot of junior prompt monkeys though.

[–] hisao@ani.social 13 points 1 day ago (1 children)

senior developers were twice as likely to put AI-generated code into production compared to junior developers, saying that the technology helped them work faster

Perhaps senior devs are more likely to use more granular, step-by-step, controlled prompting. Asking it do write specific functions in specific ways and following specific approaches and conventions instead of just "do me an app, robot bro".

[–] Bababasti@feddit.org 7 points 1 day ago (1 children)

That’s actually how I am using AI for my work (web dev, pls don’t hate me). If I am stuck or have some tiny function missing for a task I ask AI, check their output - if it’s garbage I continue on my own again or if it’s usable I review the output and continue from there. Also, I think AI can be neat for „rubberducking“ when I am debugging some stupid shit and point me in directions I haven’t looked before.

load more comments (1 replies)

If I try to get it to do more than predict the next two lines of code it's gonna fuck something up. A nervously laughable thing I saw at work was someone using a long spec file to generate a series of other files and getting high praise for it. It was the equivalent of mustache templates but slower and with a 30% chance of spitting out garbage. There was also no way to verify if you were in that 30% zone without looking through the dozens of files it made.

[–] victorz@lemmy.world 6 points 1 day ago (3 children)

But surely you test the code and review it, right? That's how you reinstate trust in what it outputs?

Disclaimer: I've never used AI to code, not even copilot.

[–] CXORA@aussie.zone 8 points 1 day ago (1 children)

Based on my coworkers... no.

They get the Ai to write the code, and the tests.

Then hand it over to me to review and test.

Its all overly verbose, does things that are not required or desirable, and insists on re-writing existing code to match its own style.

I hate it passionately.

load more comments (1 replies)
[–] BlameTheAntifa@lemmy.world 5 points 1 day ago* (last edited 1 day ago) (1 children)

You mean rewrite it all from scratch? If you have any kind of standards that is what you end up doing. If you know what you’re doing you do it right the first time and move on. Using AI for coding it like trying to babysit the most inept, inexperienced intern to ever walk the earth. It wastes time and the end result is far worse.

load more comments (1 replies)
[–] Serinus@lemmy.world 4 points 1 day ago

It'll sometimes do dumb and/or redundant or too complicated shit. Pile up a couple of those and your codebase can get unmaintainable fast.

I find if you give it small chunks and keep an eye on it, it's great.

I think one of my recent prompts was "Create a procedure that creates an example configuration file with placeholder values. If a config file doesn't exist on start, give a warning and create the example config."

It also works great as a replacement for an ORM.

[–] themeatbridge@lemmy.world 46 points 1 day ago (1 children)

Senior devs love vibe coding because they have the knowledge and skills to recognize and fix errors. They hate it because it makes morons think they don't need the knowledge and skills to recognize and fix errors.

[–] 5C5C5C@programming.dev 49 points 1 day ago (2 children)

As a senior dev I hate vibe coding. I can write code an order of magnitude faster than I can review it, because reviewing code forces you to piece together a mental model for something made by someone else, whereas when I write the code myself I get to start with the mental model already in my head.

Writing code is never the bottleneck for me. If I understand the problem well enough to write a prompt for an LLM, then I understand the problem well enough to write the code for it.

[–] KryptonNerd@slrpnk.net 8 points 1 day ago

I'm a junior and even I feel the same way, reading and understanding someone else's code not only takes me longer but is far less rewarding than just writing it myself. There's also the issue as a junior that if I read AI code with issues that maybe I don't notice or recognise, but it compiles fine, it could teach or reinforce poor practices that I may then put into my own work.

[–] Serinus@lemmy.world 7 points 1 day ago (1 children)

I understand how to turn the results of a select statement into an update statement, but the AI does it a hell of a lot faster.

I find if you give it small enough chunks, it's easy enough to review. And even if you do have to correct, it's generally easier to correct than it would be to write it all by hand.

load more comments (1 replies)
[–] criss_cross@lemmy.world 26 points 1 day ago

This feels like one of those paid fluff pieces companies put out so that smaller ones feel like they’re “missing out”

[–] jonesey71@lemmus.org 24 points 22 hours ago

That picture accompanying the article is backwards. Why is it portraying the AI as the babysitter and not the baby that needs to be supervised by a human?

[–] ICastFist@programming.dev 23 points 23 hours ago (3 children)

Carla Rover once spent 30 minutes sobbing after having to restart a project she vibe coded. Rover has been in the industry for 15 years, mainly working as a web developer. She’s now building a startup, alongside her son, that creates custom machine learning models for marketplaces.

Using AI to sell AI, infinite money glitch! /s

“Using a coding co-pilot is kind of like giving a coffee pot to a smart six-year-old and saying, ‘Please take this into the dining room and pour coffee for the family,’” Rover said. Can they do it? Possibly. Could they fail? Definitely. And most likely, if they do fail, they aren’t going to tell you.

No, a kid will learn if s/he fucks up and, if pressed, will spill the beans. AI is, despite being called "intelligent", not learning anything from its mistakes and often forgetting things because of limitations - consistency is still one of the key problems for all LLM and image generators

[–] squaresinger@lemmy.world 10 points 23 hours ago

If you bring a 6yo into office and tell them to do your work for you, you should be locked up. For multiple reasons.

Not sure why they thought that was a positive comparison.

load more comments (2 replies)
[–] Sxan@piefed.zip 19 points 1 day ago (3 children)

Uh huh. And independent studies show vibe coders believe þey're more efficient, but þey're actually less efficient.

This sound like hell to me. Bug fixing and digging þrough someone else's shitty code is þe worst part of software development, and vibe coding maximizes it?

I don't care how many propaganda pieces AI companies pay to have written about vibe coding, it's still shit which makes projects worse, and developer's jobs worse

[–] 123@programming.dev 3 points 1 day ago (2 children)

Not related to the topic at hand but interestingly (?) I've gotten used to your weird "th" as 1 character. I could read the entire thing without noticing it. I wonder if others have started to do the same since the upvote ratio seems better than what I remember it being before when people always questioned the usage.

[–] TheRedSpade@lemmy.world 4 points 1 day ago (1 children)

I originally saw it as somebody using 2 different symbols for the 2 different sounds that "th" can make. That at least makes sense. Simply replacing the letters with one character (one not on a standard keyboard, btw) regardless of which sound they make is just extra effort for the sake of it.

[–] lennivelkant@discuss.tchncs.de 4 points 1 day ago* (last edited 1 day ago) (3 children)

Nerds doing something unnecessarily complicatedly for the fun of it? I'm not particularly surprised.

load more comments (3 replies)
load more comments (1 replies)
load more comments (2 replies)
[–] MoonRaven@feddit.nl 11 points 9 hours ago (1 children)

As a senior dev, I say it's not worth it. Our junior devs rely on it too much and I spent most of yesterday trying to figure out for my junior dev why their code didn't work. Eventually came to the conclusion that they just have to redo most of it because it's utter garbage and invents new code to do what the architecture already has.

[–] themaninblack@lemmy.world 4 points 7 hours ago

As a senior dev, I agree but am impressed that you’re dealing with a functional architecture to begin with

[–] wulrus@lemmy.world 10 points 1 day ago (2 children)

Currently, I write all production code at work without any AI assistance. But to keep up with things, I do my own projects.

Main observation: When I use it (Claude Code + IDE-assistant) like a fancy code completion, it can save a lot of time. But: It must be in my own area of expertise, so I could do it myself just as well, only slower. It makes a mistake about 10 - 20 % of the time, most of them not obvious like compile errors, so it would turn the project into disaster over time. Still, seems like a senior developer could be about 50% - 100% more productive in the heat of the implementation phase. Most important job is to say "STOP" when it's about to do nonsense. The resulting code is pretty much exactly how I would have done it, and it saved time.

I also tried "vibe coding" by using languages and technologies that I have no experience with. It resulted in seemingly working programs, e. g. to extract and sort photos from an outdated data file format, or to parse a nice statistics out of 1000 lines of annual private bank statements. Especially the latter resulted in 500 lines of unmaintainable Python-spaghetticode. Still nice for my private application, but nobody in the world can guarantee that there aren't pennies missing, or income and outcome switched in the calculation. So unusable for the accounting of a company or anything like that.

I think it will remain code completion for the next 5 years. The bubble of trying more than next-gen code completion for seniors will burst. What happens then is hard to say, but it takes significant breakthroughs to replace a senior and work independently.

[–] squaresinger@lemmy.world 13 points 22 hours ago (1 children)

In real code, so after the first week of development, typing really isn't what I spend most of my time on. Fancy autocomplete can sometimes be right and then it saves a few seconds, but not nearly 50-100% added productivity. Maybe more like 1-2%.

If I get a single unnecessary failed compile from the autocomplete code, it loses me more time than it saved.

But it does feel nice not having to type out stuff.

That's why all research on this topic says that AI assistance feels like a 20-30% productivity boost (when the developers are asked to estimate how much time they saved) while the actual time spent on the task actually goes up by 20-30% (so productivity gets lost).

[–] wulrus@lemmy.world 5 points 21 hours ago (1 children)

I find it also saves a certain "mental energy".

E. g. when I worked on a program to recover data from the old discontinued Windows photo app: I started 2 years ago and quickly had a proof-of-concept: Found out it's just sqlite format, checked out the table structure, made a query to list the files from one album. So at that point, it was clear that it was doable, but the remaining 90 % would be boring.

So after 2 years on pause, I just gave Gemini 2.5Pro the general problem and the two queries I had. It 1-shot a working powershell script, no changes required. It reads directly from the sqlite (imagine the annoyance to research that when you never ever use powershell!) and put the files to folders named by the former albums. My solution would have been worse, would probably have gone with just hacking together some copy-commands from SELECT and run them all once.

That was pretty nice: I got to do the interesting part of building the SQL queries, and it did the boring, tiring things for me.

Overall, I remain sceptical as you do. There is definitely a massive bullshit-bubble, and it's not clear yet where it ends. I keep it out of production code for now, but will keep experimenting on the side with an "it's just code completion" approach, which I think might be viable.

[–] squaresinger@lemmy.world 8 points 19 hours ago (1 children)

Yours is pretty much the best-case scenario for AI:

  • Super small project, maybe a few dozen lines at most
  • Greenfield: no dependencies, no old code, nothing to consider apart from the problem at hand
  • Disposable: once the job is done you discard it and won't need to maintain it
  • Someone most likely already did the same thing or did something very similar and the LLM can draw on that, modify it slightly and serve it as innovation
  • It's a subject where you are good enough that you can verify what the LLM spits out, but where you'd have to spend hours and hours to read into how to do it

For that kind of stuff it's totally OK to use an LLM. It's like googleing, finding a ready-made solution on Stackexchange, running that once and discarding it, just in a more modern wrapping. I've done something similar too.

But for real work on real projects, LLM is more often than not a time waster and not a productivity gain.

load more comments (1 replies)
[–] 0x0@lemmy.zip 5 points 23 hours ago (1 children)

It makes a mistake about 10 - 20 %

Anecdotally, Copilot does the reverse for me.

[–] corsicanguppy@lemmy.ca 7 points 20 hours ago

Copilot leads me on flights of fanciful code that is absolutely not possible, and the joy turns to tragedy when I find out it lied insidiously about a particular niche function the entire time.

[–] fodor@lemmy.zip 8 points 8 hours ago (1 children)

Interesting how this article is contradicted by hundreds of others.

load more comments (1 replies)
[–] Simulation6@sopuli.xyz 7 points 1 day ago (3 children)

I have never tried to use AI to develop software, just looked at the output that sometimes shows up in google searches. Noises are starting to come from on-high about an AI 'push', so I may need to show some basic awareness. Any suggestions on how to get started or should I just ask the AI?

[–] thirteene@lemmy.world 6 points 1 day ago

I've been using copilot. Potential is there but getting a result is more art than science. I've found it helpful to document desired workflows in readmes and ask for unit tests then run unit tests until it works out.

  • use a premium model like sonnet and put it in agent mode
  • Ask it to review the project
  • ask it to review the ticket/requirements
  • ask it to research existing solutions and write a design document that meets the requirements with high certainty
  • Let it write the document and make sure it stays on task
  • review the output and send build errors back, roll forward or undo the code and re-submit
  • identify what works and reduce scope
[–] cevn@lemmy.world 4 points 1 day ago (2 children)

I will say Claude Code may be at the fore front of AI coding assistants. It runs in your terminal. Try loading it on one of your side projects and see what you can accomplish.

load more comments (2 replies)
load more comments (1 replies)
[–] nutsack@lemmy.dbzer0.com 5 points 7 hours ago (2 children)

as a programmer I feel like this would be pretty cool. but this isn't really how it is at all. I'm usually asking Claude code to do something very specific and then I'm throwing whatever it does away because it's not correct. if I could have a little baby that I had to babysit I think that would be better

load more comments (2 replies)
[–] podbrushkin@mander.xyz 4 points 20 hours ago (1 children)

A day will come when I get to know what vibecoding is. Or maybe this word will die out sooner. You never know.

[–] kkj@lemmy.dbzer0.com 11 points 17 hours ago (4 children)

Vibe coding is when you ask a chatbot to code for you, then ask it to fix the errors it generated, and repeat until you can't find any more errors. Later, someone notices that your application was coded by a chatbot, exploits one of the many security flaws, and steals all your data and credentials.

load more comments (4 replies)
[–] vane@lemmy.world 4 points 1 day ago* (last edited 1 day ago) (1 children)

Looks like every senior developer is building vibe coded startup and their children are selling machine learning models on marketplaces. Anyone know of such marketplace or it's fake as much as the article ?

load more comments (1 replies)
[–] CaptainBlinky@lemmy.myserv.one 4 points 19 hours ago (2 children)

I keep seeing "vibe coding." WTF is vibe coding? ELI5

[–] NocturnalEngineer@lemmy.world 18 points 19 hours ago (1 children)

A security nightmare waiting to happen.

Also performance, maintenance, and regression.

[–] PlantJam@lemmy.world 10 points 19 hours ago (1 children)

Vibe coding is asking gpt for code, copying it into your code environment, then telling gpt about any errors or issues. The problem is that it actually works a significant amount of the time, let's be generous and say 80%. Another 15% of the time it cannot solve a problem itself. And finally the worst possible outcome is the last 5%, where it creates a seemingly working solution that actually breaks on edge cases or has potential security issues.

[–] ngcbassman@sh.itjust.works 3 points 8 hours ago* (last edited 8 hours ago)

One important aspect of vibe coding that I always see that is missing in explanations is the part that vibe coding is the is the generation of code through AI, but without understanding what the code is doing, the effect of this is you are totally dependant on the AI to keep generating the code, so if any error happens you don't have fucking idea in what to do. If you generate the code using AI and you understood what the AI did, is not vibe coding.

load more comments
view more: next ›