We’re about to learn a painful lesson about delayed gratification in software engineering.

New data from China, 26,811 students tracked January 2023 through June 2025. Students using AI for homework saw their scores jump 20 percent. Completion time dropped nearly half. They aced the assignments.

Then exam season came. Those same students scored 20 to 40 percent worse when they couldn’t use the tool.

The homework phase is over. The exam phase is coming.

We’re doing this in software right now. Vibe coding feels incredible. Features ship fast. Nobody’s asking what happens in Month 18 when the original dev has left and nobody understands the codebase.

Commercial pilots fly with autopilot for most of every flight. They’re required to maintain manual flying proficiency regardless. If the system fails mid-air and the pilot can’t take over, people die.

Most teams using AI right now have forgotten how to fly manually. They’ve become passengers in their own systems. The autopilot flies, nobody checks instruments, and the first sign of trouble will be a breach notice or outage.

Three rules:

  1. Command the mission. Define architecture before prompting. Ambiguity kills in code and in flight. Delegate selectively. Offload mechanical work. Keep design and security reviews human. Verify everything. Audit before production.
  1. Never trust the automation without checking instruments.
  1. Quick wins feel good. Sustainable engineering feels boring. Boring keeps systems standing.

Organisations surviving the next two years won’t ship the fastest. They’ll be the ones who remember how to fly without the aids.


people insisting that you actually be skilled, independently of your tools, doesn’t make them Luddites. Rather, being unable to do so makes you a phony.

  • locuester@lemmy.zip
    link
    fedilink
    English
    arrow-up
    2
    arrow-down
    6
    ·
    2 days ago

    an LLM hallucinates, so you can’t just trust it, which means you have to be able to assess when it’s doing the wrong thing

    Unless you can define what the right thing is. Then you just have it write proper tests, and it’s able to verify itself.

    • trebach@sh.itjust.works
      link
      fedilink
      arrow-up
      4
      ·
      1 day ago
      Assert.IsTrue(true);
      

      There! That’s a passing test but doesn’t test anything. That’s why you write your own tests instead of having a machine do it for you.

    • Pup Biru@aussie.zone
      link
      fedilink
      English
      arrow-up
      3
      ·
      2 days ago

      an LLM frequently writes shit tests… you’re just moving the architecture problem: either you properly understand and review the initial code, which means you catch not just binary “correct input/output” but also performance, layout, DRY, style, heaps of things

      OR

      you properly review the tests because “passing” doesn’t mean tested

    • Honytawk@discuss.tchncs.de
      link
      fedilink
      English
      arrow-up
      2
      ·
      2 days ago

      Don’t let an AI verify itself, it will just make the exact same mistakes.

      Verification should still be done by a human. You can use a different AI in addition to human verification, but a human should still be in the chain somewhere.