Hacker Newsnew | past | comments | ask | show | jobs | submit | progx's commentslogin

Nothing, that is why it change his life ;-)

Not people, that post is from OpenClaw... 100% ;-)

100% a precursor to a follow up post like "I asked OpenClaw to write me a blog post about how it's changing my life and it hit the top of HackerNews"

I wait for frenchhub, in french only, no english translation, nothing. Typical french. Greetings from you EU neighbor.

> frenchhub

*Lieu de Rencontre Français Pour le Contrôle de Version


A lot of the documentation in La Suite seems to be available in English.

That is what the AI said:

1. Classic Coding (Traditional Development) In the classic model, developers are the primary authors of every line.

    Production Volume: A senior developer typically writes between 10,000 and 20,000 lines of code (LOC) per year.
    Workflow: Manual logic construction, syntax memorization, and human-led debugging using tools like VS Code or JetBrains IDEs.
    Focus: Writing the implementation details. Success is measured by the quality and maintainability of the hand-written code. 
2. AI-Supported Coding (The Modern Workflow) AI tools like GitHub Copilot and Cursor act as a "pair programmer," shifting the human role to a reviewer and architect.

    Production Volume: Developers using full AI integration have seen a 14x increase in code output (e.g., from ~24k lines to over 810k lines in a single year).
    Work Distribution: Major tech leaders like AWS report that AI now generates up to 75% of their production code.
    The New Bottleneck: Developers now spend roughly 70% of their time reviewing AI-generated code rather than writing it.

I think realistic 5x to 10x is possible. 50.000 - 200.000 LOC per YEAR !!!! Would it be good code? We will see.

And make one PR after another, i can see how happy Linus & Co. would be of all the garbage features ;-)

I don't like this html-syntax, cause you use a separate syntax-methods for existing js-functions wrapped as html-tags:

  <if text.isEmpty()>
    <div class="preview-text empty">Start typing...</div>
  <else>
    <div class="preview-text">{text}</div>
  </else>
  </if>
As a JS/TS dev it feel unnatural to write language operations as html-tags. That is what i did not like in svelte too.

Here something that looks little more like PHP-Style, better separation, but too much to type:

  <?coi
  if (empty($text)) {
  ?>
    <div class="preview-text empty">Start typing...</div>
  <?coi
  } else {
  ?>
    <div class="preview-text">${text}</div>
  <?coi
  }
  ?>

Shorter with a $-func for wrapping html-content

  if (empty($text)) {
    $(<div class="preview-text empty">Start typing...</div>)
  } else {
    $(<div class="preview-text">${text}</div>)
  }
I don't know, has somebody a better idea?


It's perfectly fine to allow if in tags (the compiler can figure it out). In Mint you can do that no problem: https://mint-lang.com/sandbox/6lnZHiG8LVRJqA

    component Main {
      fun render : Html {
        <div>
          if true {
            <div>"Hello World!"</div>
          } else {
            <div>"False"</div>
          }
        </div>
      }
    }


Vue style attribute directives are imho a far better dx compared to all of the above.


Your app run in the app context, that is not accessible for an AI.


You don't let your agent look at logs? How can it debug?


One HUGE problem, what if you set you wheel to scroll faster in the browser? Currently your example scroll always 3 items, i can't move only 1 down or up.


I would argue this is a mobile-centric solution, for desktop you could still have the classic drag-and-drop, actually both can coexist.


I build a "wrapper" for this (not public, quick&dirty code). Transfer everything that could be logged via websocket to console and output and colorize it like I do it with a node app. Reduces the time that I need to spend in browser for debugging (click, scroll, open trees, etc.), has same format and it saves much time.

I am sure somebody created a good lib for that on github.


Linux please!!! :D


Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: