5 comments

  • cadamsdotcom5 days ago
    The spec rarely has enough detail to deterministically create a product, so current vibecoding is a lottery.<p>So we generate one or many changesets (in series or in parallel) then iterate on one. We force the “chosen one” to be the one true codification of the spec + the other stuff we didn’t write down anywhere. Call it luck driven development.<p>But there’s another way.<p>If we keep starting fresh from the spec, but keep adding detail after detail, regenerating from scratch each time.. and the LLM has enough room in context to handle a detailed spec AND produce output, and the result is reasonably close to deterministic because the LLM makes “reasonable choices” for everything underspecified.. that’s a paradigm shift.
    • emodendroket41 minutes ago
      Well, it’s really a return to the old-fashioned role of an analyst coming up with a data dictionary and a detailed spec. But in practice how often did that work as intended?
    • seanmcdirmid1 hour ago
      &gt; The spec rarely has enough detail to deterministically create a product, so current vibecoding is a lottery.<p>How is that different from how it worked without LLMs? The only difference is that we can now get a failing product faster and iterate.<p>&gt; If we keep starting fresh from the spec, but keep adding detail after detail, regenerating from scratch each time..<p>This sounds like the worst way to use AI. LLMs can work existing code, whether it was generated by an LLM or written by human. It can even work on code that has been edited by a human, there is no good reason to not be iterative when using an LLM to develop code, and plenty of good reasons to be iterative.
      • dwringer10 minutes ago
        For me it just depends. If the response to my prompt shows the model misunderstood something, then I go back and retry the previous prompt again. Otherwise the &quot;wrong ideas&quot; that it comes up with persist in the context and seem to sabotage all future results. The most of this sort of coding I&#x27;ve done was in Google&#x27;s AI studio, and I often do have a context that spans dozens of messages, but I always rewind if something goes off-track. Basically any time I&#x27;m about to make a difficult request, I clone the entire context&#x2F;app to a new one so I can roll back whenever necessary.
      • dizlexic28 minutes ago
        &gt;How is that different from how it worked without LLMs?<p>I won&#x27;t lie and say &quot;That&#x27;s a great idea&quot; when it isn&#x27;t.
    • mungoman215 minutes ago
      Yes, I believe the paradigm shift will be to not treat the code as particularly valuable, just like binaries today. Instead the value is in the input that can generate the code.
    • tjr5 days ago
      At that level of detail, how far removed are we from “programming”?
      • Vegenoid1 hour ago
        Without understanding the level of detail required, which we do not yet know, we cannot say.<p>When I think of English specifications that (generally) aim to be very precise, I think of laws. Laws do not read like plain, common language, because plain common language is bad at being specific. Interpreting and creating laws requires an education on par with that required of an engineer, often greater.
        • Muromec52 minutes ago
          Laws being unreadable is largely an Enlish-language problem zo. I have no problem reading them in my native language. Not requiring massive context size of case law makes things easier still. Big part of being a lawyer is having the same context with all the other lawyers and knowing what was already decided and what possible new interpretation is likely to be accepted by everyone else.
          • Vegenoid17 minutes ago
            &gt; Big part of being a lawyer is having the same context with all the other lawyers and knowing what was already decided and what possible new interpretation is likely to be accepted by everyone else.<p>And to create software specifications with language, the same thing will need to happen. You’ll need shared terminology and context that the LLM will correctly and consistently interpret, and that other engineers will understand. This means that very specific meanings become attached to certain words and phrases. Without this, you aren’t making precise specifications. To create and interpret these specifications will require learning the language of the specs. It may well still be easier than code - but then it would also be less precise.
            • jimbokun0 minutes ago
              And this could end up looking more like mathematics notation than English. For the same reason mathematicians opt to use specialized notation to communicate with greater precision than natural language.
      • cadamsdotcom5 days ago
        Far!<p>But without the need to “program” you can focus on the end user and better understand their needs - which is super exciting.
  • chuckledog5 days ago
    &gt; “As an aside, I think there may be an increased reason to use dynamic interpreted languages for the intermediate product. I think it will likely become mainstream in future LLM programming systems to make live changes to a running interpreted program based on prompts.”<p>Curious whether the author is envisioning changing configuration of running code on the fly (which shouldn’t require an interpreted language)? Or whether they are referring to changing behavior on the fly?<p>Assuming the latter, and maybe setting the LLM aspect aside: is there any standard safe programming paradigm that would enable this? I’m aware of Erlang (message passing) and actor pattern systems, but interpreted languages like Python don’t seem to be ideal for these sorts of systems. I could be totally wrong here, just trying to imagine what the author is envisioning.
    • handoflixue5 days ago
      I think at some point in the future, you&#x27;ll be able to reconfigure programs just by talking to your LLM-OS: Want the System Clock to show seconds? Just ask your OS to make the change. Need a calculator app that can do derivatives? Just ask your OS to add that feature.<p>&quot;Configuration&quot; implies a preset, limited number of choices; dynamic languages allow you to rewrite the entire application in real time.
      • 8organicbits1 hour ago
        Maybe I&#x27;m missing it, but when my calculator app gets a new derivatives feature, how am I supposed to check that it&#x27;s implemented correctly? End user one-shot of bug free code seems like a different technology than what LLMs offer.
        • seanw44448 minutes ago
          Yeah I don&#x27;t see how LLMs are ever supposed to be reliable enough for this, but they did say &quot;at some point in the future&quot;, which leaves room for another (better) technology.
    • WoodenChair5 days ago
      I was envisioning the latter (changing behavior on the fly). Think the hot-reload that Flutter&#x2F;Dart provides, but on steroids and guided by an LLM.<p>Interpretation isn’t strictly required, but I think runtimes that support hot-swap &#x2F; reloadable boundaries (often via interpretation or JIT) make this much easier in practice.
    • savolai24 minutes ago
      Smalltalk, mumps?
  • emodendroket43 minutes ago
    The analogy to IDE templates seems more compelling.
  • cess1126 minutes ago
    &quot;Many have compared the advancements in LLMs for software development to the improvements in abstraction that came with better programming languages.&quot;<p>Where can I see examples of this?
  • SadWebDeveloper5 days ago
    This is another pointless article about LLM&#x27;s... vibe coding is the present not the future, the only sad part of all of it is that LLM&#x27;s is killing something important: code documentation.<p>Every single documentation out there for new libs is AI generated and that is feed again into LLMs with MCP&#x2F;Skills servers, the age of the RTFM gang is over <i>sigh</i>