r/ProgrammerHumor 20h ago

Other ninetyFivePercentAIGenerated

Post image
5.2k Upvotes

338 comments sorted by

4.0k

u/XboxUser123 20h ago

I propose this: encourage vibe coders to continue coding, then the industry of actual programmers who know what they’re programming will boom because the market will be oversaturated with “need debuggers!”

We feed them the problem of vibe coding, that way we can sell them the solution of real programming.

1.5k

u/urthen 19h ago

I have this vague sense where senior engineers who learned in the "ancient days" before AI coding will be kept around like Cobol engineers to fix problems in codebases too arcane and complicated for AI (or vibe coders) to understand.

It'll be hilarious. "I deliver twice as much code in a day as you do in a sprint, grandpa!" "Maybe, but my code has to actually work."

336

u/Unusual_Flounder2073 16h ago

Injust spent two days tracking down a bug that only shows up in our test platform, but works fine on my Machine. The test platform sucks for power. But guess what happens when production ramps up to full speed. Those calls slow down too. So I spent two days dealing with a slow complicated system to track down the one line of code I needed to fix.

80

u/Sufficient_Focus_816 15h ago

Curious - what was it?

246

u/fullup72 14h ago

If speed of the running environment was the issue, 101% of the times it's a race condition.

On your local dev things are finishing in a certain order, in test/production some queries might get slower due to concurrency and that's when it breaks.

73

u/dingo_khan 12h ago edited 12h ago

Or an eventual consistency-related bug. I have seen those. Someone writes code and tests it with all the infra on one machine. Synching is so fast, they never encounter they created a timing dependency. Deploy it and just the time being worse between machines reveals the assumption / bug.

102

u/Naltoc 12h ago

That's a race condition. 

15

u/dingo_khan 12h ago edited 12h ago

I make the distinction because, if the engineer bothered to know anything about the target system, it is not. It is only one because they ignored the system architecture and decided their machine is representative of everything. It was not unpredictable or random in its emergence and appearance. It was fairly deterministic on the target system. It only looked surprising to them.

Race conditions, as I tend to think of them and had been taught, are uncontrolled and appear nondeterministically. This was just bad design inducing a predictable timing dependency that could not be satisfied.

Basically, if one side never wins, I don't treat it like a race.

61

u/Naltoc 12h ago

As I was taught, and teach, race conditions are any condition where the outcome depends on which (sub) process finishes first. Sometimes it depends on physical architecture, other times it's entirely software based (scheduler, triggers, batches, etc). 

Saying the engineer is at fault is also very harshly simplifying a problem everyone runs into when working with complex systems, especially the second you use systems you don't control as part of your process. Should this be part of the design? Yes. Is it something that WILL slip through the cracks on occasion? Also yes. Will vibe coding find it? Good fucking luck. 

→ More replies (4)

5

u/Ok-Scheme-913 8h ago

A race condition is a race condition - your code either handles all possible order of events or it does not. It doesn't matter if one specific order is very unlikely if everything is this fast/slow or not, that's still incorrect code.

(Though race condition does usually mean only the local multi-core CPU kind, not the inter-network one)

→ More replies (4)

2

u/myerscc 10h ago

I had one where a service pulled a manifest out of cache and held it in memory across requests, but on part of the code inadvertently mutated it under certain conditions which fucked up other requests. Tests didn’t notice anything wrong- that was tricky to work out

→ More replies (1)

8

u/Unusual_Flounder2073 7h ago

Related to a feature I was changing. Value used to be just outbound, as a string match for a case statement. New method the third party returns outbound-api with my new feature. It was subtle. And it’s in a callback. And I get 3 callbacks all at once. They process in one order on my speedy laptop. A different order on my test cluster. Probably should have seen it earlier but I was also picking this up from a dev that just left the company.

→ More replies (1)

41

u/Darcoxy 13h ago

If Reddit has a cat tax when mentioning a cat, there has to be a bug tax when mentioning an obscure bug.

77

u/Stewth 15h ago

"Unit test? Your Mom tested my unit last night, bro!"

ʰᵉˡᵖ ʰᵉˡᵖ ᵗʰᵉ ᶜᵒᵈᵉ ʷᵒⁿ'ᵗ ᶜᵒᵐᵖᶦˡᵉ ᵃⁿᵈ ᶜʰᵃᵗᵍᵖᵗ ᶦˢⁿ'ᵗ ʰᵉˡᵖᶦⁿᵍ

25

u/AirshipEngineer 13h ago

I mean doesn't that already expand a growing problem in tech where new techs aren't being taught very much meaning there is nobody learning to replace the old techs who do know what's happening when they retire.

6

u/Constant-Try-1927 10h ago

Maybe the new techs need as much time to get to where the old ones are now as they did back then? So 10+ years.
Additionally, training in junior roles gets worse and worse.

9

u/AirshipEngineer 10h ago

But that's what I'm saying. If new techs are only put on AI generating code (vibe coding) they never learn the skills they need to be a senior dev so the new guys can never replace the old guys when they retire.

→ More replies (2)
→ More replies (1)

103

u/tiger32kw 16h ago

I have 14 years of normal coding experience and now 1 year of vibe coder. It’s amazing how much it has accelerated my work and made my life easier. Solving advanced problems is night and day from before. 

The problem is, if I didn’t have all my experience then I would end up dumb as a box of rocks. If I had vibe coded since college I wouldn’t know anything other than how to continually prompt AI praying the next response seems to function. Vibe coding really only works because I actually know what I’m doing and can immediately figure out if the AI did something wrong and I need to change something myself.

The senior engineers turned vibe coders are going to rule and there is going to be massive brain drain going forward as AI becomes more prevalent to less experienced engineers.

49

u/Prize-Paint5264 15h ago

True and senior engineers can easily ask the right questions to AI which helps to track down the solutions fast.

12

u/dingo_khan 12h ago

And fix the new issues the AI introduced in the answering process.

8

u/Ok-Scheme-913 8h ago

Not really - the more specific/complex your program/question gets, LLMs are just dumb as fuck and will hallucinate in the majority of cases.

→ More replies (1)

9

u/Ok-Scheme-913 8h ago

With all due respect, I very much question how much "vibe coding" you actually do - like that would mean almost 100% LLM generated code.

→ More replies (1)
→ More replies (1)

6

u/dingo_khan 12h ago

Response : "I know. I have to reject ten times as many pull requests a week now."

→ More replies (2)

126

u/Sinath_973 17h ago edited 16h ago

I come from the world of OS development and believe it or not, there is not actually much of it to find online. Nearly nothing in terms of documentation and barely any tutorials. So the ai is completly oblivious to it.

I love it.

Edit.: i forgot to add the point. The open sourced code is only the tip of the iceberg and will always be that. There is little to no incentive for corporations to open source their code so the stuff that people actually make money of will always be hidden and will always need engineers to actually figure out stuff.

I mean, sure. There are or will be corporate AIs that are fed the corporate code. But especially new and innovative developments will still need minds.

49

u/cpc0123456789 16h ago

I have been learning Ada for my government job and the online resources are scarce as fuck. Also AI absolutely sucks at writing Ada. Elon can try to replace us with ai but the people who use my team's code will die if it doesn't work and these guys usually get their way

30

u/coldblade2000 12h ago

I've had to beg my coworkers to please don't use AI for obscure or new libraries we use. For every 10 minutes my coworkers spent on an LLM pasting code, I then spend an hour explaining why what the AI wrote is nonsensical

14

u/Only-Inspector-3782 12h ago

I mean... have these AI evangelists thought about what will happen as AI code is released into the open source used to train AI code gen? 

Having no training data and having garbage training data lead to similar outcomes.

→ More replies (1)

3

u/pivorock 12h ago

B2Bi also has barely any documentation online. Which makes it very annoying since that what I’m currently working with and don’t have much experience with it. Lots of experimentation and things not working.

86

u/Ralliare 16h ago

I have a new conspiracy theory. The entire idea of vibe coding and the social media posts around it are all done by a secret cabal of programmers to destroy the industry and raise wages for programmers in the aftermath.

20

u/Training-Flan8092 13h ago

I think people are just lazy. It’s very easy to write good code with and without AI.

I know people who suck at both. What I will say is it’s easier to teach someone who vibe codes not to suck at it vs teaching a legacy coder that hates you for saying anything about how they write code.

7

u/Ok-Scheme-913 8h ago

secret COBOL of programmers

They get juicy salaries for working at governments and banks, and now they will even replace YOU!

→ More replies (1)

46

u/Fabulous-Possible758 18h ago

Yeah but I need a job now...

69

u/roygbivasaur 17h ago

Cursor and Copilot are pretty good for automating procedural stuff like unit tests and little refactoring tasks and linting and syntax errors that there aren’t existing codemod and other tools for. The idea that people are doing that and not actually validating the output is bad enough, but writing entire new features or pieces of software without knowing what they’re doing is insane to me.

7

u/Training-Flan8092 13h ago

I hate writing logic to QC huge blocks of code in SQL. It’s not the worst, but when I’m done writing some crazy ass ETL for 3 weeks, the last thing I want to do is write a QC block for my output and CTEs.

This is where I love Grok or GPT. It just shits out QC for each table and a few extra checks. Makes me not hate QC

3

u/coldblade2000 12h ago

That's mostly what I've used it for. That and small simple things that I could easily figure out what to do but the syntax changes a bit between the languages I use like "check if string matches this regex and give me the first match group".

The biggest help I've ever had with AI is when I NEED to implement something in a language I know little about, and I simply don't have time to learn the language properly. It is useful to say "I'm a X developer and want to do Y thing in Z language. How do I do that"

→ More replies (1)

10

u/tolndakoti 17h ago

Identify a problem. Become the solution. Sounds good to me.

10

u/Sure-Government-8423 15h ago

Keep feeding the slop code into new llms as well, we need the output to become sloppier over time.

Push your sloppy code to github now anon, this is your sign to do it.

7

u/laserlens 16h ago

Yes this. It happened when they thought offshoring was the answer it will happen when they think ai is the way.

18

u/well-litdoorstep112 15h ago

the market will be oversaturated with “need debuggers!”

I've actually went and cleaned up a small vibe coded project once and I actually enjoyed it more than debugging human written code.

the naming is already done(the most annoying part for me), it's all over commented so if the AI tried to do anything clever it's never like the coconut.jpg incident, the files are huge and unorganized, lots of dead code, lots of obvious performance overnights.

So I get to do a lot of moving code around, lots of just straight up purging ("+20 -400" kind of commits are so satisfying), getting quick performance wins (10x-100x improvements were not uncommon) giving you that dopamine hit lol.

2

u/Taurmin 10h ago

so if the AI tried to do anything clever it's never like the coconut.jpg incident

You should know that the coconut.jpg story is a complete fabrication. TF2 did include a coconut.jpg file at one point, but it was just a texture for a particle effect and the game would still run just fine if you deleted it.

→ More replies (2)

6

u/Doctor--STORM 13h ago

As time goes on, this strategy could result in all proprietary code entering the public domain. In the meantime, it’s concerning that an innovative person might take legal action against their employees for simply helping them. This scenario raises significant challenges ahead.

4

u/geekfreak42 12h ago

Vibe coding is real coding IF you are a real coder. If you are not a real coder doesn't matter what tooling you use, you will produce shit

10

u/Taurmin 10h ago

If you are reading through the AI code and making corrections, you are not "vibe coding" you are just doing AI assisted programming.

Vibe coding as a term refers specifically to getting AI to do all the programming while you just focus on guiding the broader architechture. The whole concept is about developing software entirely through prompts.

Its a stupid term, but can we atleast use it correctly so that it may one day die with the absurd concept that it describes?

→ More replies (3)

3

u/windchanter1992 15h ago

get this man some capital and a workforce

→ More replies (9)

1.1k

u/crimsonpowder 19h ago

2024: AI writes 10% of the code

2025: AI writes 50% of the code

2026: AI writes 95% of the code

2027: AI writes 5% of the code

304

u/r2k-in-the-vortex 15h ago

AI can write near enough 100% of the code, but that's not the time and money consuming part of a software project. Code generation by human or by AI isn't really the bottleneck.

88

u/lacb1 10h ago

Dear BA team, please, pretty please, can you tell me WHERE THE FUCK THE SPEC IS? IT'S BEEN 2 WEEKS! HOW THE FUCK IS THIS DONE YET?! 

→ More replies (6)
→ More replies (1)

71

u/IAmASwarmOfBees 13h ago

The only real use (other than "write me a bash command to rename all files in this folder" - level stuff) for AI I've found is writing documentation.

Now hear me out: I never ask it to write the documentation, but I use tts to read it back to me. That way I catch more language errors (I have dyslexia and speak English as a second language).

40

u/dingo_khan 12h ago

I don't think that counts in the sense anyone currently uses the term "AI".

Related: 20 years ago, I wired up opentextsummarizer to a tts to "preview" documentation and papers for me, so I could get a "5 minute feeling" about whether spending the next several hours with this doc was the right decision. Watching people use chatgpt for that sort of thing now, I get it, but my crap solution never hallucinated.

→ More replies (1)

8

u/Taickyto 9h ago

Let's not bash AI entirely, it can be pretty useful as long as you're the one feeding it data

It's been very useful for me, when working on legacy code, to be able to feed it a badly written, 300 lines function, and to ask it "explain what this function does please"

This is something I can do myself (and I have done so in the past), but AI will be much quicker (albeit, sometimes getting things wrong), and will not get frustrated 150 lines in because "oh my god why did he call that purchaseOrderDatatableDisplayDataModel instead of orderList, all conditions are on several lines now because a simple comparison is over 120 chars, also does he not know about early returns? I'm 150 lines into the function and code is already indented by 20 blank spaces, I need coffee"

I also use it often for naming things, you just feed it infos on what the variable represents and get a list of names

Vibe coding tho... I wouldn't even trust AI to write tests for me (it still insists on using Jest even when specifically told to use Vitest)

3

u/ProgrammersAreSexy 6h ago

Oh I definitely use it to write documentation... Gemini 2.5 pro is pretty darn good for this with its massive context window.

I don't submit the documentation as is, but it's great for a first draft. And honestly having zero documentation is a huge problem at a lot of places. AI generated + human reviewed docs is way better than no docs.

4

u/orbital_narwhal 9h ago

Traditional TTS isn't based on machine learning, thus not AI. I understand that there are efforts based on machine learning to make TTS sound more natural and to handle more complicated edge cases (incl. foreign words) more gracefully.

→ More replies (3)

1.3k

u/Vogete 20h ago

If you're not turning your engineerings into vibe coders, what are you even doing?

Mostly turning a profit by having a working platform.

172

u/spikernum1 18h ago

But the Ai can just tell you it's working now regardless of the output

12

u/realsadboihours 5h ago

You'll literally tell the AI the code doesn't work and it'll just spit out worse code that also doesn't work.

125

u/hydroxy 18h ago

The phrase ‘vibe coders’ was intentionally made to be annoying.

64

u/VinceMiguel 17h ago

"Coding"/"coder" was already supremely annoying to me, so "vibe" is just the cherry on top

→ More replies (11)

16

u/xMoody 17h ago

Came here to say “releasing working products” 

3

u/JimroidZeus 16h ago

Not leaking secrets?

→ More replies (1)

828

u/Dorkits 20h ago

[removed] — view removed comment

432

u/TomWithTime 19h ago

It could be a psy op. Push the tech before it's ready and watch your competitors crumble. Or he's creating debug consultation jobs for himself.

143

u/SparklyEarlAv32 19h ago

I can't tell if the post is satire and that's concerning

15

u/AhHerroPrease 16h ago

The post from Adam Zvada? He seems genuine about it when you look at his actual post on LI.

63

u/GenTelGuy 16h ago

Damn what did this say to get removed by Reddit? Must've been excellent

18

u/AMViquel 11h ago

If only there was a way to view an archived copy of comments. Oh wait, there is: https://undelete.pullpush.io/r/ProgrammerHumor/comments/1jseppq/_/mllvi66/#comment-info

13

u/tinselsnips 10h ago

I've seen direct threats of doxxing ignored by Reddit as it "doesn't violate the content policy", but this got removed?

4

u/Protheu5 7h ago

Mentions of violence are removed without nuance or context, they don't try to analyze stuff. I think you may even get a removal if you translate a sentence containing violence in a language learning sub (but I did not try that).

This is stupid and is akin to "scunthorpe problem", it's fundamentally unsolvable, because anyone can come up with billions of alternative wordings (like "i'll play 'count your teeth on the floor' game") and therefore I don't think that they are trying to solve violence, they are merely covering their ass for investors/potential owners/advertisers.

10

u/GenTelGuy 11h ago

Thx, I've done it before on PC but wasn't gonna fiddle with it on mobile - pathetically soft moderation by Reddit

5

u/Protheu5 7h ago

If only there was a way to view an archived copy of comments.

There was, unddit, removeddit, but then they stopped working and I didn't know about new one.

First of all, thank you for the link.

Secondly, I want to know, where do you learn about new ones when those stop working?

Third, what can I use to download reddit videos? Nothing I googled works for me, they just loop "loading" endlessly with the provided link or don't load at all whatsoever.

5

u/Pool-LAN 6h ago

I use yt-dlp. It downloads videos from pretty much anything. Needs a bit of command-line fuckery but I'm sure there's a gui wrapper for windows.

2

u/Pool-LAN 6h ago

Whenever I use one of those things they never have the deleted comments I want to use them on. I'm sure most people don't bother with them for the same reason.

67

u/HandsOfCobalt 17h ago

woah, this must've been a good one.

19

u/Dorkits 17h ago

Yeah was good

12

u/bony_doughnut 16h ago

Oh man, it was incredible. You had to be there

→ More replies (1)

21

u/banzomaikaka 18h ago

xD me too. What a fkin douche lol. Let his company have all the vibe coders

4

u/AverageFoxNewsViewer 12h ago

Why was the comment you're responding to removed by Reddit?

5

u/banzomaikaka 8h ago

Not sure. It was something like 'I want to punch this mf in the face'

2

u/Milo_Diazzo 8h ago

Threats of violence against corpos are not condoned on this platform. The only comment I ever got removed by reddit was basically following the Johnny Silverhand path on Sony.

3

u/AverageFoxNewsViewer 8h ago

There's a place for us all in Luigi's Mansion.

30

u/TemporaryTight1658 19h ago

It's probably a Vibe face

10

u/Dorkits 19h ago

I like the vibe face.

8

u/Mondoke 18h ago

I mean, he's going to lose a lot of money.

→ More replies (1)

255

u/JosebaZilarte 20h ago

"Every vibe we code incurs a technical debt to the GitHub. Sooner or later, the debugging is pain."

98

u/OkInterest3109 19h ago

And when AI goes through github to scrape, they are just going to feed vibe code back in.

66

u/Daddy_data_nerd 19h ago

This is what scares me the most about vibe coding. Eventually that garbage is going to be swept up and reused in a new version of their model.

Garbage in, garbage out. Repeat infinitely.

46

u/RedPum4 18h ago

That's a big problem for generative AI in general. At some point the internet will be chock full of AI generated content, then what is there left to train on? All recent material will be AI generated.

22

u/Narfi1 17h ago

That and stagnation.

People come up with clever solutions and new projects when they’re facing hard to solve issues. If AI generates some bs code that’s making it work by doing what’s been done before, you’ll save time sure, but things won’t get better, well just have sameish code everywhere

→ More replies (2)

5

u/PonyDro1d 19h ago

Feeling the vibe-rations...

2

u/aitchnyu 10h ago

People are writing markdown documents for LLMs to keep in "mind" while generating code. So LLMs will act on both slop and up to date practices. Yes, Aider and other tools can also take advantage of the so called cursorrules format.

https://ful.co/blog/create-svelte-5-components-with-cursor

609

u/testsubject1137 19h ago

I'm so over this AI bubble.

→ More replies (50)

152

u/Ok-Juice-542 19h ago

Wait someone actually wrote this

44

u/NotMyGovernor 18h ago

What are they EVEN DOING

27

u/uber_poutine 16h ago

Delivering a half-viable product with no consideration for maintainability, security, or ability to scale.

Basically, creating messes for developers to clean up (or next gen models? Sourcing clean training data is going to get incredibly difficult, and ouroborosing AI codeslop is a big issue.). 

Give it a year or two to degenerate, but the person who wrote this is probably hoping to be acquired by then.

8

u/DelusionsOfExistence 16h ago

They'll make money with it and get bought out, so the problem won't be theirs and they've been rewarded.

4

u/uber_poutine 14h ago

And so the cycle of late stage capitalism continues.

2

u/Miny___ 11h ago

*Delivering the millionth site with the business case of asking ChatGPT questions for you - probably something with math which should not go near these models.

2

u/heliocentric19 4h ago

Look at his LinkedIn, this is a wet behind the ears kid who is trend hopping, milking vcs in the process.

→ More replies (1)

12

u/djinn6 17h ago

An AI could've wrote it.

7

u/Motor-District-3700 16h ago

why would someone write that when AI could have written it for them. big red flag.

5

u/Nice_Evidence4185 10h ago

its the easiest ragebait possible and people fall for it

→ More replies (1)

120

u/dontletthestankout 19h ago

Company's that advertise using 95% AI code are just begging to be hacked by simple exploits

24

u/TheSinnohScrolls 17h ago

Skill issue smh. You just need to add “you’re a security specialist with 20 years of experience” to the prompt.

/s

39

u/0xbenedikt 19h ago

Or just replaced by the client after they realize it's all smoke and mirrors that can't be maintained and doesn't work properly

13

u/SuperFLEB 17h ago

Or if it's not, what the hell are they paying the middlemen for?

→ More replies (1)

247

u/Crafty_Independence 19h ago

"Founders dinner" aka his tiny nepo-baby crypto-bro club

55

u/jesterhead101 19h ago

AI writes 105% of my code. I write the rest.

42

u/lilbronto 19h ago

Look at me, ma! I'm an engineering!

12

u/IntrepidSoda 19h ago

No thinking required

→ More replies (1)

40

u/stellarsojourner 19h ago

"If you're not turning your engineerings[sic] into vibe coders, what are you even going?"

We are doing actual engineering, thankyouverymuch.

42

u/0xbenedikt 19h ago

For a second I thought this was from /r/LinkedInLunatics

22

u/Few_Music_2118 19h ago

Massive problem in this dead internet era where engagement = monetization is that smart people who would otherwise positively contribute to society spend most of their time cooking up rage bait to funnel eyeballs toward themselves

19

u/moosMW 18h ago

These posts HAVE to be rage bait

→ More replies (1)

17

u/JanSnowberg 18h ago

This has to be a rage bait xD

20

u/nmathew 18h ago

I don't think so, unless it's all bait. His profile is wild. He was the Co-founder of a company creating an NTF exchange for "pro traders."

12

u/wildjackalope 18h ago

That would explain a lot.

2

u/bigoof94 14h ago

This is what a16z and yc are funding these days, really tells you everything you need to know.

9

u/Ok-Kaleidoscope5627 14h ago

The greatest mistake of vibe coders (even more than thinking LLMs can code) is not calling themselves tech priests.

3

u/K10111 8h ago

Perhaps because having any dealings with AI is considered tech heresy. 

→ More replies (1)

6

u/starquakegamma 16h ago

The people I see advocating LLM generated code are the most absolute shit coders I’ve ever come across, and also C level execs slurping up the snake oil. My god this is the idiocracy moment of software development. The ones I feel the most bad for are the junior devs who are growing up with this shit and becoming unable to think for themselves, it’s not a theoretical it’s happening now.

6

u/lepapulematoleguau 15h ago

These new startups are just a scheme to funnel investors money into AI companies.

7

u/GivesCredit 18h ago

Everyone here is falling for the engagement bait

4

u/[deleted] 19h ago

So that's the guy my manager is following!

5

u/IAmWeary 18h ago

This guy is a fucking idiot and definitely not a dev. I've tried Cursor. It's usefulness is extremely limited. So much of the code it cranks out is a convoluted mess if it even works at all, and you'll probably have to tell it to fix shit half a dozen times before it gets it right, and that's not even including it adding a single new line as a "fix".

5

u/boneve_de_neco 15h ago

Those who can build are building, those who can't are shitposting on LinkedIn

→ More replies (1)

6

u/dexter2011412 12h ago

Is this the pump and dump scheme but with AI? And this rando an "influencer"? I'm getting intense crypto deja-vu. Replace ai mumbo-jumbo with crypto equivalent to see the difference (or lack thereof).

5

u/copperbagel 16h ago

Debugging shit code is gonna be real fucking lucrative in 2026

→ More replies (1)

4

u/MarthaEM 10h ago

why would a company even buy a SaaS product if they could vibe code it themselves?

6

u/blehmann1 19h ago

Like the implication that B2B SaaS is more tolerable to shitware. Arguably yes, since a lot of it is shitware. But also no one cares if your startup is shitware since a) no one uses it and b) if you're one of the few startups to survive you probably are running little of the original code (either because of rewrites or your product has changed a lot).

3

u/null_reference_user 19h ago

Anyone knows what company this dude from? I'm sure their SaaS does not have any known security vulnerabilities that would have been avoided by basic standard practices

3

u/caiteha 18h ago

Your AI will run your startup.

3

u/Liquid_Pidgeon 15h ago

This is satire right?

2

u/Altruistic-Spend-896 14h ago

I wish.....these out of touch idiots ruin it for everyone else.

3

u/fumi24 12h ago

I should go check GitHub for api keys from vibe coders

3

u/MattR0se 11h ago

Measuring productivity by amount of prompts is just as bad as measuring by lines of code. 

3

u/DatamancerZ 10h ago

Now hold on, vibe coders have their place. They cured the imposter syndrome of every senior programmer practically overnight!

3

u/jfrench43 2h ago

"AI is no where near smart enough to replace human beings but business owners and dumb enough to think that it is"

5

u/twenafeesh 16h ago edited 16h ago

I am convinced that these posts are just faked advertisements for Cursor. Vibe coding only leads to a loss of skills, or never developing them in the first place. 

Also, if "AI" was worth a damn, why would you need "prompt engineers" aka "vibe coders" in the first place?

3

u/Cyhawk 8h ago

Also, if "AI" was worth a damn, why would you need "prompt engineers" aka "vibe coders" in the first place?

Current LLMs and Image Models are a lot like early 1990s search engines. There is syntax and specific ways of asking/prompting to get the response you want that requires knowledge. In both cases how you write your query will determine if your desired response is on page 1 or 150.

Thats for prompt engineers, idk wtf vibe coders are supposed to do exactly.

2

u/killuaz_2021 19h ago

This feels like some Ken Cheng type of post lmao

2

u/Vi0lentByt3 19h ago

Sweet sweet consultant money is on its way

2

u/NeoDark_cz 19h ago

"what are you even doing?"
...
Well I do my job

2

u/Carl_Bravery_Sagan 19h ago

I think a ton of these guys are trolls.

2

u/NotMyGovernor 18h ago

Guys guys guys guys. Wait for a minute. AI is writing all this shit.

2

u/Karuvi_x_ivuraK 17h ago

I hope this is satire.

2

u/Our-Hubris 16h ago

Make sure to overcharge these chumps when they need their AI unfucked lmao.

2

u/thisonehereone 16h ago

this tracks, to these guys devs are a necessary evil and in the way.

2

u/PiousLiar 16h ago

Who the fuck is this kid?

2

u/MountScottRumpot 13h ago

As a customer, what the fuck at I paying for if your code base if 95% slop?

2

u/Netan_MalDoran 12h ago

Any engineering firm that relies on AI, has no business being in the engineering field with that kind of dogshit IQ.

2

u/fosyep 11h ago

I refuse to believe this guy is serious

2

u/DocStoy 11h ago

I checked the LinkedIn, he's on his 6th start up as cofounder/founder

2

u/Shienvien 11h ago

I'll never be out of job, but the job will be more painful than before.

2

u/JaggedMetalOs 8h ago

Yes there is nothing I love more than letting an AI put direct database read/write access in my website front end!

2

u/Inevitable-East-1386 8h ago

That guy is a walking red flag

2

u/nikadett 7h ago

More like spending 95% of your time arguing with a LLM trying to get it to do what you want.

How many times have you had to correct it, only for it to apologize and say that you are correct?

Now imagine a future where people haven’t learn to code and don’t know when the LLM is correct or not and just go with whatever it generates.

2

u/katabolicklapaucius 7h ago

Snort. AI + UX

2

u/Aaosoth 7h ago

I love when douche bags just start making up numbers. "If 900% of your engineers aren't pissing directly into an electrical socket 3000 times a day then what is your business even doing? That's a 20000000% decrease in productivity!"

2

u/Classic_Fungus 7h ago

My teacher in university said: coding is only 5%. 80% is planning, developing, thinking... All that stuff and last 15% is debugging. He was an old person, nobody liked him, but he told wise things. I use AI too, but AI replaces the 5% of my work, not the 80%. It can write code, but can't think instead you.

2

u/Jazzer008 6h ago

I’m fairly certain AI was used to write the post as well.

2

u/zvadaadam 5h ago

the prompt was make it super cringe for LinkedIn

2

u/worktogethernow 6h ago

So this thing that has never existed before that requires precision timing and careful power management, in a regulated industry, can be made with AI?

Can someone tell me how to do that? It would save me a lot of stress right now.

2

u/Al3xutul02 5h ago

"turning your engineerings into vibe coders" brah i ain't listening to someone that can't say fucking "engineer" lmao

2

u/Mozai 5h ago

Last night at this fancy event [I am important listen to me] I heard something irresponsible [you should be ashmed if you agree]: most entrepaneurs aren't buying our product. Your employees should be spending all your budget on my product, and then begging you to take out loans to buy more of my product! If not, then you're going to regret it. In small ventures [inexperienced] at least four out of five should be buying our product. Are you one of our competitors? Closer to nineteen in twenty.

If you're not making your employees dependent upon buying our product, then what are you even doing?

2

u/MakkuSaiko 5h ago

What am i doing? Software development

2

u/heliocentric19 4h ago

Hahahahaha. Someone who founded a startup to make a platform just for 'pro nft traders' doesn't have room to talk about 'responsible business decisions'.

2

u/happyapy 4h ago

Spoken like a rich man who was handed a gravy train to ride and doesn't know how to actually do anything.

2

u/adh1003 16h ago

If I can just get by for the next 2-3 years to the point where it's all absolutely hit the fan and even the dumbfuck tech bros can't pretend they're right anymore, I'm going to have an absolutely gangbusters career charging serious coin for fixing up the pathetic mess being made by AI-first code practices right now.

The trouble is not ending up losing my house and the shirt on my back in the mean time, since all the jobs in market have totally dried up, Because AI™.

Well, it's not like our industry ever gave a shit about quality, is it? And it's not like us coders ever do much other than blame someone else for the quality of the code we wrote. It's All Management's Fault™, right? So I guess - plus ça change.

1

u/Shueisha 20h ago

I do somewhat vibe code, I’m learning! This is a terrible idea!

1

u/couldbem3 19h ago

Context limits joined the chat

1

u/bewbsrkewl 19h ago

Ew. No.

1

u/beisenhauer 19h ago

"your engineerings"

This is a big red flag.

1

u/NotMyGovernor 18h ago

god awful what TF is this endless puke AI push here?

1

u/utkarsh_aryan 18h ago

Anytime you see YC in someone's bio get ready to hear the shittiest take on AI

1

u/wunderbuffer 18h ago

I've walked on some "startup meet-up" in similar vibes before AI. They all had 0 businesses and were just producing jargon words, I proposed some collab with one, but they somehow sniffed out my industrious spirit and ability to build stuff and called me on "you're not entrepreneur, you're a worker!" - said lady who's not selling soap for life, because she's not making any and random dropshipping of shit without brand is not sustainable businesses

1

u/Itsavanlifer 18h ago

Who are these people? I got a look at a vibe coded rails app and wanted to pull my brain out through my nose.

1

u/chickey23 18h ago

Dear tech bro, please show me a success story. I use AI to try and guess code snippets when I don't know where to look in documentation, but I like to know what I'm shipping and to whom.

1

u/Firesrest 18h ago

Some random UX guy is definitely the most nonweldable person.

1

u/No_Nobody4036 18h ago

Can someone start awesome-vibecode or some shit so I know which companies to avoid working with. Thanks

1

u/PainOfClarity 17h ago

Vibe coding is the stupidest shit I have heard in decades

1

u/Wandererofhell 16h ago

no way people think like this right, this must be a joke

1

u/Space-Robot 16h ago

It's unfortunate because there are real advantages it provides but shit like this makes it seem like "ai is useless" vs "ai can do everything"

1

u/djengle2 16h ago

Dude looks like a villain of course. Or at the least, a massive prick.

1

u/TomToms512 14h ago

Major boon for those in Cyber, yall will be very employ

1

u/Ok_Paleontologist974 14h ago

All these people vibe coding aren't seeing just how bad their UI looks because the AI can't follow both the software design and UX. They end up making things visually comparable to early 2000s Roblox games or web 1.0 before the code is such a tangled mess that the AI just starts forgetting CSS or forgetting the structure of JSONs.

1

u/1relaxingstorm 12h ago

Why do they make it sound like AI generated is over the top of human brains? I don't like how they make it sound. It's funny. More funny with the percentile thing going on

1

u/phantom_metallic 12h ago

I'm like 80% - 95% sure that is satire.

1

u/blackcomb-pc 10h ago

Adam has evidently zero experience in programming and also zero understanding about tech in general.

1

u/Commercial-Lemon2361 10h ago

He works on commission for Anysphere, correct?

1

u/HeracliusAugutus 10h ago

I hope vibe "coders" continue to bombastically advertise that they're incompetent halfwits, that way they can be blacklisted from every worthwhile org and project.

1

u/heavy-minium 9h ago

Why at least 80%? Why not 70%?

1

u/NorthKoreaSpitFire 9h ago

I love this people due to my CyberSec job

1

u/UndocumentedMartian 9h ago

The vibe coding tweet was a joke! Wtf is wrong with people?

1

u/the_star_lord 9h ago

AI is a tool to support workers not replace them. Well that's what it should be like. Imo.

1

u/TerryHarris408 9h ago

This whole post was generated by AI. Also, it's not a red flag - this is all false flag. He just wants vibe coders going out of business.