Hacker News

Top stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. Does Georgism work? Five years later (astralcodexten.com)
    75comments
  2. DeepSeek Elastic Compute (DSec) (arxiv.org)
    48comments
  3. PipePipe: NewPipe hard fork implementing SponsorBlock (github.com/infinityloop1308)
    176comments
  4. Show HN: Reladraw – A diagram language where you decide where to place things (github.com/reladraw)
    56comments
  5. Go Concurrency Distilled (antonz.org)
    9comments
  6. Evolving programming languages in the AI era (dashbit.co)
    16comments
  7. A searchable library of forgotten public-domain film clips from 1915 onward (movingimagearchive.com)
    25comments
  8. Turning GLM-5.3-Flash into a Jev-like decision model (privatemode.ai)
    13comments
  9. Drawgent: Coding agent on a live Excalidraw canvas (tangled.org/yanndegat.tngl.sh)
    32comments
  10. Reverse-engineering the Intel 8087's tangent algorithm: more than CORDIC (righto.com)
    6comments
  11. Fifteen years later, the Apple Cards origin story (lexontech.org)
    89comments
  12. Welcome to the Medical Clinic at the Interplanetary Relay Station (lightspeedmagazine.com)
    8comments
  13. Biology might not be quantum, but its math is quantumlike (quantamagazine.org)
    6comments
  14. Promising discoveries about the potential for life on one of Saturn’s icy moons (fu-berlin.de)
    11comments
  15. ASML says it sold 'absolutely nothing' in Europe in 2026 (tomshardware.com)
    434comments
  16. LA Metro has some of the slowest escalators on Earth (basin.la)
    62comments
  17. How one Twitch chat message became code execution on a streamer’s PC (scrt.ch)
    11comments
  18. Modern Object Pascal Introduction for Programmers (castle-engine.io)
    60comments
  19. Sousveillance (wikipedia.org)
    —discuss
  20. Generate fonts where every LLM token is the same width (mesh.host)
    7comments
  21. Snap Wants to be a State Actor??–Kansas v. Snap (ericgoldman.org)
    —discuss
  22. How I changed teaching after AI managed to do all my homework assignments (thelastsoftwareengineer.substack.com)
    141comments
  23. The Evolution of Vending Machines (saturdayeveningpost.com)
    3comments
  24. The Lost Atomic Update on Loongson CPU (jia.je)
    6comments
  25. How to keep enjoying programming in a world of LLMs (haskell.org)
    216comments
  26. HomeBody: A humanoid that explores, remembers, and acts on its own (stanford.edu)
    2comments
  27. Dutch designer made DE9: Closer to the Edit into a playable web-based instrument (creativeboom.com)
    1comments
  28. Breaking Up with Google Play: Why Conversations Is Now Free (gultsch.de)
    254comments
  29. The Rise of Audio AR (dbreunig.com)
    13comments
  30. Reading’s Bayeux Tapestry (diamondgeezer.blogspot.com)
    2comments

Reverse-engineering the Intel 8087's tangent algorithm: more than CORDIC

30 pointsby 8h agorighto.com
6 comments
2h agoHN ↗

Thank you! Amazing work! I've always had a soft spot for the 8087.

Maybe implement the algorithm in C? Thank would be fun!

4h agoHN ↗

Love these deep dives. It’s fascinating to see how real, low-level engineering we all take for granted today unfolded. It’s incredible that the rough equivalent of an entire 160lb digital computer was built and baked into silicon.

Also incredible reverse engineering. In a time when seemingly all appreciation for expertise is gone it’s so refreshing to see.

54m agoHN ↗

The combination of numerical methods and low-level hardware is fascinating. Those 20th century engineers were both smart and creative.

34m agoHN ↗

Always thought it was strange that fptan also pushes 1 to the register stack. It now makes sense it’s so existing code for the 8087 which was expected to do y/x to get the actual tangent could keep working by doing y/1 on newer processors.