←back to thread

Building a Personal AI Factory

(www.john-rush.com)
260 points derek | 7 comments | | HN request time: 0.314s | source | bottom
Show context
apwell23 ◴[] No.44439217[source]
ppl are getting slowly disillusioned with vibe coding.

yes AI assisted workflow might be here to stay but it won't be the magical put programmers out of job thing.

And this the best product market fit for LLMs. I imagine it will be even worse in other domains.

replies(2): >>44439276 #>>44439540 #
1. petesergeant ◴[] No.44439540[source]
> ppl are getting slowly disillusioned with vibe coding.

This is the absolute polar opposite from my experience. I'm in a large non-tech community with a coders channel, and every day we get a few more Claude Code converts. I would say that vibe-coding is moving into the main-stream with experienced, professional developers who were deeply skeptical a few months ago. It's no longer fancy auto-complete: I have myself seen the magic of wishing a (low importance) front-end app into existence from scratch in an hour or so that would have taken me an order of magnitude more time beforehand.

replies(3): >>44439667 #>>44440413 #>>44441226 #
2. apwell23 ◴[] No.44439667[source]
oh yea thats true. I was talking more about ppl who have been vibe coding for a while.

https://www.reddit.com/r/ClaudeAI/comments/1loj3a0/this_pret...

3. ◴[] No.44440413[source]
4. stavros ◴[] No.44441226[source]
I don't doubt that LLMs are extremely useful for making simple things quickly. I haven't been able to get them to write hard code on their own, though. I was trying to make a sound card with a Pi Pico the other day, and had crackling and popping in the audio. I kept telling Opus to fix that, it kept being absolutely convinced it knows what the problem is every time, and went through multiple iterations of being absolutely sure it will solve the problem this time (with every time bringing a different reason for why the pops are there), and spent $35.

In the end, it had written 500 lines, the problem was still there, and the code didn't work any differently. It worries me that I don't know what those 500 lines were for.

In my experience, LLMs are amazing for writing 10-20 lines at a time, while you review and fix any errors. If I let them go to town on my code, I've found that's an expensive way to get broken code.

replies(1): >>44441748 #
5. petesergeant ◴[] No.44441748[source]
> I haven't been able to get them to write hard code on their own, though

For sure, and me neither, for what it's worth. But most of the code I write isn't "hard" code; the hard code is also the stuff I enjoy writing the most. I will note that a few months ago I found them helpful for small things inside the GPT window, and then tried agentic mode (specifically Roo, then Claude Code), and have seen a huge speedup in my ability to get stuff done.

replies(1): >>44441940 #
6. stavros ◴[] No.44441940{3}[source]
Agreed, I no longer have to write the same code for the Nth time, or spend two minutes times a hundred looking up API docs. I love it.
replies(1): >>44446348 #
7. apwell23 ◴[] No.44446348{4}[source]
> write the same code for the Nth time

who does this though ? maybe you should extract that into a library/method/abstraction ?