Hacker News

New stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. The Pitești Experiment(undevaincomunism.com)
    discuss
  2. Jensen Huang vs. the A.I. Doomers [the Ezra Klein Show](nytimes.com)
    discuss
  3. From the Voice of Dickie Jones(nathanlangley.dev)
    1comments
  4. Lifelogging with Large Language Models(jaan.io)
    discuss
  5. Mysteries of AI Generalization(astralcodexten.com)
    discuss
  6. The Power of AI: Mass Collaboration(cppdepend.com)
    discuss
  7. Show HN: DeutschDNA – German Tutor Skill for Claude Code and Codex(github.com/ahmtsahin)
    discuss
  8. Show HN: Busbar self-hosted execution boundary for Agentic Apps(github.com/getbusbar)
    discuss
  9. Show HN: Whiteboard (YC W26) – an open-source IDE for thoughtful software design(github.com/devdotfast)
    discuss
  10. Show HN: Devc – an alternate CLI for launching devcontainers(github.com/rameshvarun)
    discuss
  11. Open AI in the Wild: Adoption and Adaptation of Open Models on R/LocalLLaMA(acm.org)
    discuss
  12. Return-to-office policy in 2026: 8 of 75 top UK employers require 5 office days(wfhjobs.co.uk)
    1comments
  13. Paper2agent Turns Static Papers into Live AI Tools(ieee.org)
    discuss
  14. 35 years ago I did it all myself(twitter.com/jasonfried)
    discuss
  15. For Computer Use, the harness matters as much as the model(stagehand.dev)
    3comments
  16. Meta employees don't like to be filmed with there own glasses [video](youtube.com)
    discuss
  17. Show HN: Guardmcp – I scanned the official MCP registry with a config scanner(github.com/berkantacun)
    discuss
  18. Developer ported Word for Windows 1.1a from 1990 to run natively on Windows 11(neowin.net)
    discuss
  19. Does Georgism Work? Five Years Later(astralcodexten.com)
    discuss
  20. "Antedisciplinary" Science (2005)(plos.org)
    discuss
  21. Why does a Nix store path survive garbage collection?(labcraft.dev)
    discuss
  22. Show HN: ThimbleDb, an encrypted lightweight low latency open source database(github.com/jason-doyle)
    discuss
  23. We Have Named Arguments at Home(corrode.dev)
    1comments
  24. OpenRouter: Server Tools Marketplace(openrouter.ai)
    discuss
  25. Shared Memory for Coding Agents(getbelay.vercel.app)
    discuss
  26. Lifestreams: A storage model for personal data: ACM SIGMOD Record: Vol 25, No 1(acm.org)
    discuss
  27. US plan for 90 day diesel export ban could have significant impact on Europe(politico.eu)
    1comments
  28. Open OCI spec for agent sandboxes(linux.com)
    discuss
  29. LLMs can write tool workflows. Will they choose to?(github.com/kukushko)
    discuss
  30. The International AI Race May Not Be Won by the Smartest AI(phroneses.com)
    discuss

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

2 pointsby 2h 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.

2h 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

1h 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

42m agoHN ↗

Yeah this over engineering is really annoying bit

2h 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?

1h 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

42m 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

30m 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