this post was submitted on 16 Mar 2026
196 points (98.0% liked)

Fuck AI

6409 readers
1386 users here now

"We did it, Patrick! We made a technological breakthrough!"

A place for all those who loathe AI to discuss things, post articles, and ridicule the AI hype. Proud supporter of working people. And proud booer of SXSW 2024.

AI, in this case, refers to LLMs, GPT technology, and anything listed as "AI" meant to increase market valuations.

founded 2 years ago
MODERATORS
 

cross-posted from: https://lemmy.world/post/44340504

Our actions and voices do make a difference! Keep AI out of games and reward original creative work.

you are viewing a single comment's thread
view the rest of the comments
[–] pixxelkick@lemmy.world 0 points 1 day ago (1 children)

I just don’t understand the “real” developer to vibe coding scenario.

Software developer of 17 years here.

For any given project, even tremendously optimized and easy to maintain, is about 90%~95% easy boilerplate code anyone can understand.

With an existing project with already hundreds of examples of how to write that boilerplate code, I can point even just sonnet 4.5 at that, give it the business rules required, and tell it "go do that, use the code base as an example" and it'll pretty much always get it correct first try, with the occasional small thing wrong that is an easy fix.

Once the LLM has an entire codebase to build off of as an example, its efficacy skyrockets.

Add in stuff like LSP feedback, linting rules, a .editorconfig like, an AGENTS.md, and it will be very effective.

Then I can handle that last little bit of 5% of actually important code, allowing me to put way more of my time and energy into the parts that really matter (security hardening, business rules, auth, etc)

I still spend 8 hours on a task but before itd be:

  • 4 hrs boilerplate
  • 4 hrs important part

Now its:

  • 30min boilerplate
  • 5 hrs important part
  • 2.5 hrs adding in rigorous integration tests for corner cases too

Its about removing all the mental overhead of all the annoying boilerplate easy stuff, like having a lil junior dev I can hand off all the simple tasks to, so I can focus on the "real" work.

That is where real productivity shines with these tools.

[–] jj4211@lemmy.world 1 points 1 day ago

I've seen and managed to avoid so many boilerplate heavy projects, I suppose it's skewed.

But yes, I find it good at boilerplate, but I consider that short of "vibe" coding, as even if prompting I'm doing it in specific context to avoid having to dig back into its sea of codegen to get at the important parts. I might have it spin up to a whole specific file at a time, but I'm not going to let it roll a whole project at once.