Earlier quoted context omitted.
Your kind of critique forgets the tradeoff between getting something out quick vs doing something slowly and nicely. If you choose slowly, you are depriving your users of the value from your app for a long time. It’s not as clear a choice as you think
Have you read my entire comment? I have already said that sometimes time-to-market is the most important, so that should be the priority, but the advantage of delivering immediately the application is only temporary, so you must improve quickly your first possibly vibe-coded implementation, otherwise better alternatives will be delivered by others. Claude Code is an obvious example of this, because it has practically…
What Claude Code's Source Revealed About AI Engineering Culture
21–30 of 65 posts
Re: What Claude Code's Source Revealed About AI Engineering Culture
#22Obviously they were legit vibing it. AI coding is like having a team of 100 interns. It’s incredibly powerful but you need to keep it under control or you’re gonna have a bad day. Write documentation describing the specs , the APIs, the protocols, and the customer stories. Specify that everything must be divided with clear separations of concerns, interfaces, and state objects. Any single file should have a clearly d…
Can I just type out the code instead? Please?
Re: What Claude Code's Source Revealed About AI Engineering Culture
#23Re: What Claude Code's Source Revealed About AI Engineering Culture
#24I came away with a very different conclusion, which is that the fact that such “bad” software can be so resoundingly successful for a business, yet be so odious to experienced human reviewers, means that it was the right engineering choice to go fast, rather than “do things right” by emphasizing code quality. What good would it truly be if a 3K line function is split into 8 modules? It’ll be neater and more comprehen…
Re: What Claude Code's Source Revealed About AI Engineering Culture
#25Exactly my conclusion, unfortunately I'm too old to pivot now, but anyone in their junior-to-mid days as a software developer should consider this pivot.
And this is only about generating source code in a closed environment. All hell will break loose when Openclaw et al get in the hands of average users...
Re: What Claude Code's Source Revealed About AI Engineering Culture
#26Re: What Claude Code's Source Revealed About AI Engineering Culture
#27As someone who finds a huge amount of enjoyment in developing using Opus 4.6 in Claude code, I’d love to know what other harnesses people use that deliver the same experience as CC. CC is a vibe-coded mess, but it works very well for me. I do a lot of work in R and find codex (5.4 & 5.3-codex) just totally drop the ball with R. Anthropic’s models are far better with R, so I use them. But I do wonder how much the harn…
I used OpenCode and find it works just as well or better than CC. I dont think CC has a moat other than their model but their model is also available through Copilot.
Re: What Claude Code's Source Revealed About AI Engineering Culture
#28Earlier quoted context omitted.
I used OpenCode and find it works just as well or better than CC. I dont think CC has a moat other than their model but their model is also available through Copilot.
Have you found any cheaper models to work well with OpenCode? Like any of the Chinese models?
Re: What Claude Code's Source Revealed About AI Engineering Culture
#29> I’m seriously considering a pivot to security Exactly my conclusion, unfortunately I'm too old to pivot now, but anyone in their junior-to-mid days as a software developer should consider this pivot. And this is only about generating source code in a closed environment. All hell will break loose when Openclaw et al get in the hands of average users...
Re: What Claude Code's Source Revealed About AI Engineering Culture
#30Obviously they were legit vibing it. AI coding is like having a team of 100 interns. It’s incredibly powerful but you need to keep it under control or you’re gonna have a bad day. Write documentation describing the specs , the APIs, the protocols, and the customer stories. Specify that everything must be divided with clear separations of concerns, interfaces, and state objects. Any single file should have a clearly d…
It depends on the kind of software you are programming. If you are programming regular commercial software (office applications, web apps, games) with customers tolerating occasional bug and lot of pressure deliver fast, you can gain lot from Claude. Facebook motto: Move fast and break things If you are programming software for industrial applications, critical software, most of the time you spend is not on writing s…
OTOH for single purpose pipelines and simple tools. Claude can oneshot small miracles in 5 minutes that would take me 2 hours to build.
An example is the local agent framework that I had Claude spinup to do JTAG testing. I used to spend hours running tests over JTAG, now I have a local model run tests that Claude and I specify in the test catalog and it just runs them every time we add features. It took Claude minimal guidance and about 3 hours to build that tool along with a complete RAG system for document ingestion and datasheet comprehension, running locally on my laptop (I know it has a fan now lol) that only reaches out to the cloud when it runs into difficult problems. I don’t care if that is a bit of a mess, as long as it works, and it seems to , so far so good.
The testing is where Claude is basically magic, but it’s because we specify everything before we build and change the specs when we change the IRL code that it works. English is code, too, if you build structured documentation… and the docs keep the code accountable if you track the coherence.