Hacker News

New stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. Former Meta CTO's Strategy on Scaling Green Tech (Mike Schroepfer) [video] (youtube.com)
    —discuss
  2. The Hardest of Scrabbles: Solopreneurship (molochinations.substack.com)
    —discuss
  3. Calendario – Google, Outlook and Zoom calendars in one browser popup (chromewebstore.google.com)
    —discuss
  4. Foreman: An agent supervisor and software factory foreman (github.com/thruwire)
    —discuss
  5. How to Tell If Someone Is Cheating on Chess.com (chesscheatdetector.com)
    —discuss
  6. A Simple Puzzle Reveals the Jagged Edge of AI's Abilities (aatishb.com)
    —discuss
  7. Noillirk: A fun twist on Krillion and Family Feud (playdaily.org)
    1comments
  8. The literacy crisis is people's inability to read for context (bsky.app)
    —discuss
  9. Financing the AI Buildout [pdf] (brookings.edu)
    —discuss
  10. Hackers hijack AI accounts and servers to fuel new cyber crime boom (ft.com)
    —discuss
  11. ClusterMAX 3.0: The Industry Standard GPU Cloud Rating System Returns (semianalysis.com)
    —discuss
  12. Delegation and Trust (bjornroche.com)
    —discuss
  13. Chains Messenger – E2EE iOS app with chat imports and permission-first DMs (apps.apple.com)
    —discuss
  14. Simple visual patterns can trick AI-powered vehicles and robots (ufl.edu)
    —discuss
  15. The Wait Equation (xendo.bearblog.dev)
    —discuss
  16. Primeagen Joining Omarchy Core (twitter.com/dhh)
    —discuss
  17. TechGuard Pro: Essential Cybersecurity Tips and Mobile Security Guide for 2026 (mobilestuff2026.blogspot.com)
    —discuss
  18. Can Claude Opus 5.5 find any new leads on Satoshi Nakamoto? (notesbylex.com)
    —discuss
  19. How Intelligent Are Cats? (2004) (messybeast.com)
    1comments
  20. OpenAI pauses training of its 'most capable models' (theverge.com)
    2comments
  21. Why Russia is sending dead princes and saints into battle (cnn.com)
    —discuss
  22. The new MacBook is cool, but the PowerBook Duo was cooler (2015) (macworld.com)
    —discuss
  23. Europe's utilities are losing the financial power to lead the energy transition (rolandberger.com)
    —discuss
  24. AI agents now hold and spend real money, and nobody keeps their books (agenticfinancegraph.com)
    —discuss
  25. Stop Sending Pictures of Your Palm (bbc.com)
    2comments
  26. An Open Letter to Scott Alexander (quillette.com)
    —discuss
  27. Helicoprion (australian.museum)
    —discuss
  28. Tell HN: If you are going to slop the web, don't use Chrome MCP
    —discuss
  29. The AI-First Organization (rolandberger.com)
    —discuss
  30. What innovators can still learn from Xerox PARC (rolandberger.com)
    —discuss

When It's OK Not to Understand Your Own PR

2 pointsby 1h agowakamoleguy.com
3 comments
1h agoHN ↗

Second, while the author may not understand the code at a level where they could have written it themselves, they should still understand it as a reviewer. Treat it like the agent is the author and the human author is the first reviewer; don't pull somebody else in until you're satisfied first.

Emphasis mine.

That brings you back to square one. You should only be satisfied with the state of the PR once you understand it. Anything below that and you’re not doing your job properly. That doesn’t mean the code needs to be flawless on first PR, but you should understand everything it is doing and the why of the approach, otherwise there’s no point to you doing it.

So to the question in the title, the answer is quite simply “never”.

14m agoHN ↗

This leans heavily on what "doing your job properly" means. Code quality, understanding, and doing your job properly are not so black-and-white. Your job is probably not to push out flawless code; it's more likely to push out valuable code, that minimizes risk, and appropriately trades off speed and quality (for some appropriate definition of "appropriate").

33m agoHN ↗

I agree with what is said. When we lean into agents and want to use them for productivity, we need to accept the fact we will not fundamentally understand the code as we have designed and written it, otherwise might as well write the code ourselves. We already used to ship code with different levels of quality and technical debt to production before ai and developed a taste for what is "good enough" depending on the requirements, our long term workflow (how we close technical debt, and handle bugs), and our own personal capabilities. AI gives us more hands in the process and allows us to do more with less time, and less low level understanding. We should still question the code, and get our hands dirty in some sections, slow down and write ourselves small testing environments and chunks of code to get fundamental understanding of code which is critical. Otherwise we should just ship and forget and handle tech debt and "understanding debt" only when relevant. A lot of production code delivered pre ai already had tech debt that even the devs were not aware of, and yet a lot of it never fails and gets the job done, probably will be replaced in the future as those features become obsolete. Just because ai can surface those kinds of issues better does not mean straight away those have to be addressed meticulously.

The same way we do not understand already what the compiler does and how the code we have written runs against the machine, it's ok to delegate some of the lower level of understanding to AI, as long as the process produces the required results.

Different projects will have different sections where tech debt and code understanding debt are more critical, and we should with time acquire the intuition to know where we should rely more, and where we should rely less on ai to fill in the gaps.