Hacker News

New stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. Find where GPU capacity is available across cloud regions(datadoghq.com)
    —discuss
  2. Don't let AI kill the author(economist.com)
    —discuss
  3. Cost of Delay(votito.com)
    —discuss
  4. RevExOS – JEV(revexos.com)
    —discuss
  5. JEV-as-a-Judge(dair.ai)
    —discuss
  6. DOJ: Uncle Sam bought forensics software from same Russian operation supplying(theregister.com)
    —discuss
  7. Internationalization (Internationalization) and Localization (L10n)(kashyapsuhas.com)
    —discuss
  8. Why the FBI investigated archbishop sheen during WWII(osvnews.com)
    —discuss
  9. Ask HN: Does spec-driven development still pay off with frontier coding models?
    —discuss
  10. AI is accelerating and amplifying threats: immediate action is necessary(aivd.nl)
    —discuss
  11. Marvel Has Been Wearing a Horror Movie Under That Spandex Since 1962(medium.com/theentertainmentbreakdown)
    —discuss
  12. Show HN: Rig – Open-source cloud desktops for AI agents(github.com/shadowwalker2014)
    —discuss
  13. Russian Cosmism(wikipedia.org)
    —discuss
  14. 'Palantir is a great company', EU defence chief tells Euronews(euronews.com)
    1comments
  15. JEV-Star: Low-Cost StarCraft II Control with Language-Model Planning(github.com/sc2musa)
    —discuss
  16. Run-assert-eval: Find the risk, fix it, prove it(commandline.microsoft.com)
    —discuss
  17. Digital Cash Payoff (2001)(technologyreview.com)
    —discuss
  18. Show HN: DrawCMS – An open-source animated diagramming tool for AI Agents(github.com/drawcms)
    —discuss
  19. Logs you, your AI and cron jobs write to that you can prove weren't altered(freshjots.com)
    1comments
  20. Show HN: bananabread AI – Find what customers love and want from your products(bb-product-api-docs.web.app)
    —discuss
  21. GoDaddy receives takeover offer from maker of Norton antivirus software(ft.com)
    —discuss
  22. If you don't have the factories, you lose the expertise(lemire.me)
    —discuss
  23. Show HN: Headwire – WireGuard with NAT traversal via Tailscale's magicsock(github.com/brofranks)
    —discuss
  24. Namernut – domain name generator that scores how crowded a name is(namernut.com)
    —discuss
  25. Show HN: MEF LLM Studio(mef-llm-studio.com)
    —discuss
  26. Fragments: September 24(martinfowler.com)
    —discuss
  27. Double-entry bookkeeping and paper and tokens(pokorny.ca)
    —discuss
  28. Pummelvision Back(pummelvision.ai)
    —discuss
  29. Legal and General to Cut 10% of Jobs by Middle of 2027(wsj.com)
    —discuss
  30. Beware Overreliance on Metaphor(evnm.substack.com)
    —discuss

Ask HN: How do you read, sign off, verify, manage the volume of generated slop?

2 pointsby 3h ago
8 comments
We gotta move fast and we are seeing the generated slop day by day. If you are lucky and don't see it, then please don't participate in this conversation. We don't need to be belittled down. We know where that path leads too.

However, for those who have to read 2000 lines of code every single hour, (2000 is exaggeration. But at the end of the PR, it adds up to be 2000.)

1. how are you managing the mental bandwidth?

2. How are you verifying these code and signing them off?

3. Any tips, tricks, ideas that will keep us relevant here?

The biggest concern is understanding the maths and research code behind it. The shitty abstraction and duplication just puts off reading the code.

Regarding context collapse, the model doesn't have any idea of across different sessions. The token inefficiency is off the charts.

4. The problem is that what are we going to do about this token inefficiency? I find myself rewriting same instruction because the fix from last patch broke the system so this patch it needs to write a new fix, then proceed with feature implementation. The same command, function, calls, doesn't work across two session.

5. TDD is not going to help when half of the tests are meaningless?

tldr; Problem is not that we can code by hand, problem is there is no way to code this sheer volume (feature or design, sometimes entire product) by hand in the amount of time that we have. That is the problem.

3h agoHN ↗

why are you even attempting to read 2000 loc per hour? that won't work.

if ai generated the code, ai can review it. I can review perhaps pieces that are deemed priority. manual and automated testing are both required.

for the rest, please number your Qs so they're easy to address.

2h agoHN ↗

But how are you scoping the features these days? Unlike back in the day, these days a feature is equivalent of research paper

2h agoHN ↗

if you prompt differently, you can instruct them to work on small things

they have a strong tendency to over engineer (volume), prompt against this - in permanent files like AGENTS.md or per-session in follow on messages

1h agoHN ↗

Yeah this over engineering is really annoying bit

3h agoHN ↗

However, for those who have to read 2000 lines of code every single hour, how are you managing the mental bandwidth?

Do you really think that's what's happening?

2h agoHN ↗

staying in the loop and being methodical about it (at least trying)

I more often find the walls of markdown to be more onerous than the code changes

1h agoHN ↗

would you mind sharing how you reduce it. I am testing hacks like asking to draw in block diagrams, write like RFC, write like algo and pseudocode

1h agoHN ↗

context engineering, with guidelines drawn from examples in my own projects

more up front planning, in a markdown file, multiple sessions

review processes, for the plan and then the code

the "recursive self improvement" (at the harness/context engineering level) feels like it is starting to kick in