2 comments

  • Smaug1232 days ago
    Something of a passion project. It's going to fail horribly if you try and use it, I'm sure, but it can already do some neat stuff!
    • moron4hire1 hour ago
      Is it, though? A passion project? Cuz it sounds like you lost the passion and have started to farm it out to Anthropic.<p>I don&#x27;t get it. If this is a passion project, why would you abdicate to someone else?
      • Smaug1231 hour ago
        To answer your question, although I would certainly have <i>preferred</i> you to phrase your comments less insultingly: this project would otherwise never have got to a state where it could find bugs. I am not paid to write this code, and it would have taken far more years than I would have been willing to spend.<p>It&#x27;s not actually unheard of for people to pay other entities to build their passion projects. For example, I visited [Eltham Palace](<a href="https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;Eltham_Palace" rel="nofollow">https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;Eltham_Palace</a>) last weekend, which was not in fact built entirely by the two Courthaulds who commissioned it.
      • SeanAnderson1 hour ago
        because some software engineers enjoy shipping usable software more than writing the code needed to do so?
        • moron4hire1 hour ago
          What does that have to do with LLMs? There&#x27;s morev to delivering value to the customer than just shipping code. We used to understand that technical debt was an existential risk to a project. I can&#x27;t see how &quot;code nobody understands&quot; is not technical debt.
          • SeanAnderson1 hour ago
            I disagree. Shipping functionality that works and users consume is all that matters. Everything else is noise. Technical debt can be viewed through this lens - it reduces the rate in which functioning code is shipped. That&#x27;s bad, but it&#x27;s only one of many dials.<p>The author states they feel that using LLMs allowed them to ship years faster. That&#x27;s years of time in which they can collect feedback and iterate. They might even choose to scrap the entire project and rewrite it based on their learnings. The practicality of this is directly enabled by agentic coding.
            • wolletd1 hour ago
              Technical debt is aptly named. From time to time it demands it&#x27;s interest in the form of delaying a new feature, but as long as your overall technical revenue is positive, it&#x27;s fine.
  • moron4hire2 hours ago
    [flagged]
    • bri3d1 hour ago
      LLM rant aside, I think this comment is built on a fundamental misunderstanding of what this is. This kind of runtime is an advanced debugging tool for exploring extreme edge cases in a repeatable way, not the thing you’d run your production apps on.
      • moron4hire1 hour ago
        I mean, if I&#x27;m in a situation in which I need more powerful debugging tools than what I already have available, then I kind of want to know those tools have been built with care. If I&#x27;m deep in the weeds of trying to deliver and I&#x27;m desperately reaching for something outside of the standard tool set, I&#x27;d like the person who made that tool to have crafted it in a dwarven forge under a pale moonlight. Not to have thrown to their hands and admit a tool with the intelligence of a smart working dog breed is smarter than them.
        • Smaug1231 hour ago
          I mean, there is a reason the MIT licence contains these words:<p>&gt; THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND… INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF… FITNESS FOR A PARTICULAR PURPOSE…<p>If you would <i>like</i> a tool built with my organic artisanal human fingers, then I am certainly open to sufficiently large offers of money to build one for you! Alternatively, you can simply not use it if you think it won&#x27;t fit your needs :)
    • kajman55 minutes ago
      Others have already mentioned this <i>is</i> basically a side tool, but I also think decent developers have a tendency to admit to slopping out when they&#x27;re leaning on LLMs to an extent actual vibecoders would consider quaint.<p>At first read, the blog post seems at least somewhat cognizant of the shortcomings and state of the project, which is unfortunately now a high bar for new open source releases. If I needed something like this then I would not complain about what&#x27;s being offered here for free.
    • pjmlp1 hour ago
      Apparently the gRPC improvements to use shared memory when client and server are on the same, something common on network RPC not yet supported by gRPC, was done by Mark Russinovich, with agents.<p><a href="https:&#x2F;&#x2F;github.com&#x2F;markrussinovich&#x2F;shmem" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;markrussinovich&#x2F;shmem</a><p>It is one example described on one of his AI talks at BUILD.<p>If the PR gets accepted, here is your AI contribution to core technology.
    • MattRix1 hour ago
      I mean maybe I’m missing the point but it seems like it’s intended to be more of a tool for debugging race conditions, than a runtime you actually ship with. For that purpose I think using an LLM is fine.