I was excited to try it out so I downloaded the repo and ran the build. However there were 100+ compilation errors. So I checked the commit history on github and saw that for at least several pages back all recent commits had failed in the CI. It was not clear which commit I should pick to get the semi-working version advertised. I started looking in the Cargo.toml to at least get an idea how the project was construc…
Of 63295 workflow runs, apparently only 1426 have been successful. It's hard to avoid the impression that this is an unverified pile of slop that may have actually never worked. The CI process certainly hasn't succeeded for the vast majority of commits. Baffling, really.
Scaling long-running autonomous coding
181–190 of 203 posts
Re: Scaling long-running autonomous coding
#182Earlier quoted context omitted.
I'm not too surprised, the way I read a lot of (not all!*) the negative comments is ~"I'm imagining having to work with this code, I'd hate it". Even though I'm fairly impressed with the work LLMs do, this has also been my experience of them… albeit with a vibe-coding** sample size of 1, done over a few days with some spare credit. The positive views are mostly from people who point out that what matters in the end i…
The problem I've had with vibe coding is akin the adage of the first 90% of the code taking 90% of the time, and the last 10% taking the other 90% of the time. The LLM can get you to 90% initially but it hits a wall unless you the user know what it's doing and outputting, but that is very difficult when you're vibe coding by its very definition, meaning that you're not looking at the code at all. And then you have to…
Re: Scaling long-running autonomous coding
#183Earlier quoted context omitted.
Thanks for the feedback. There were some build errors which have now been resolved; the CI test that was failing was not a standard check CI, and it's now been updated. Let me know if you have any further issues. > On twitter their CEO explicitly stated that it uses a "custom js vm" which seemed particularly misleading / untrue to me. The JS engine used a custom JS VM being developed in vendor/ecma-rs as part of the…
When you say "have now been resolved" - did the AI agent resolve it autonomously, did you direct it to, or did a human do it?
Re: Scaling long-running autonomous coding
#184Earlier quoted context omitted.
When you say "have now been resolved" - did the AI agent resolve it autonomously, did you direct it to, or did a human do it?
Looks like Cursor Agent was at least somewhat involved: https://github.com/wilsonzlin/fastrender/commit/4cc2cb3cf0bd...
This to me seems to raise more questions than it answers.
Re: Scaling long-running autonomous coding
#185I have been trying Claude Code a lot this week. Two projects: * A small statically generated Hugo website but with some clever linking/taxonomy stuff. This was a fairly self-contained project that is now 'finished' but wouldn't hvae taken me more than a few days to code up from scratch. * A scientific simulation package, to try and do a clean refresh of an existing one which i can point at for implementation details…
Similar experience here. Did sign up for Claude Code myself this week, too, given the $10/month promo. I have experience with AI by using AWS Kiro at work and directly prompting Claude Opus for convos. After just 2 days and ~5-6 vibe coding sessions in total I got a working Life-OS-App created for my needs. - Clone of Todoist with the features that I actually use/want. Projects, Tags, due dates, quick adding with a t…
Re: Scaling long-running autonomous coding
#186Earlier quoted context omitted.
I suppose brittle code is fine if you have cursor to update and fix it. Ideal really, keeps you dependent.
To be fair, that was always the case when working with external contractors. And if agentic AI companies can capture that market, then that's still a pretty massive opportunity.
Re: Scaling long-running autonomous coding
#187"To test this system, we pointed it at an ambitious goal: building a web browser from scratch." I shared my LLM predictions last week, and one of them was that by 2029 "Someone will build a new browser using mainly AI-assisted coding and it won’t even be a surprise" https://simonwillison.net/2026/Jan/8/llm-predictions-for-202... and https://www.youtube.com/watch?v=lVDhQMiAbR8&t=3913s This project from Cursor is the s…
Re: Scaling long-running autonomous coding
#188Earlier quoted context omitted.
Surely a smart implementation would just find the chromium source on github, do some cosmetic rewrites and strip out all none-essential features?
You'd be able to see it doing that by looking at the transcript. You could then tell it not to!
Re: Scaling long-running autonomous coding
#189Earlier quoted context omitted.
Looks like Cursor Agent was at least somewhat involved: https://github.com/wilsonzlin/fastrender/commit/4cc2cb3cf0bd...
Looks like a bunch of different users (including Google's Jules made one commit) been contributing to the codebase, and the recent "fixes" includes switching between various git users. https://gist.github.com/embedding-shapes/d09225180ea3236f180... This to me seems to raise more questions than it answers.
Re: Scaling long-running autonomous coding
#190Do not get me wrong. I use AI all day to speed things up. But I believe that there is only a small group, maybe 5 percent or less, that actually knows how to use AI properly (I'd count myself not yet in that 5%), which I see as potentially dangerous. The other issue I see is inexperienced software engineers writing software. Although I see this as a great value add and productivity boost for prototyping, I am afraid of the “I do not know much about coding but can also make PRs to our codebase” mentality.
For those of you that run things on autopilot, how do you keep code quality under control? And how do you handle refactoring? I am really curious, because one option now is also to just YOLO your LLMs to write code based on the maturity of the product. You can refactor an app or parts of it pretty fast again with LLMs. While tech debt accumulates faster, we also have the opportunity to rebuild faster.