Hacker News

Top stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. Does Georgism work? Five years later (astralcodexten.com)
    107comments
  2. PipePipe: NewPipe hard fork implementing SponsorBlock (github.com/infinityloop1308)
    192comments
  3. DeepSeek Elastic Compute (DSec) (arxiv.org)
    55comments
  4. Go Concurrency Distilled (antonz.org)
    15comments
  5. Show HN: Reladraw – A diagram language where you decide where to place things (github.com/reladraw)
    58comments
  6. Evolving programming languages in the AI era (dashbit.co)
    34comments
  7. Turning GLM-5.3-Flash into a Jev-like decision model (privatemode.ai)
    24comments
  8. A searchable library of forgotten public-domain film clips from 1915 onward (movingimagearchive.com)
    25comments
  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)
    7comments
  11. Biology might not be quantum, but its math is quantumlike (quantamagazine.org)
    8comments
  12. Fifteen years later, the Apple Cards origin story (lexontech.org)
    92comments
  13. Promising discoveries about the potential for life on one of Saturn’s icy moons (fu-berlin.de)
    19comments
  14. ASML says it sold 'absolutely nothing' in Europe in 2026 (tomshardware.com)
    484comments
  15. Welcome to the Medical Clinic at the Interplanetary Relay Station (lightspeedmagazine.com)
    9comments
  16. Generate fonts where every LLM token is the same width (mesh.host)
    8comments
  17. The Evolution of Vending Machines (saturdayeveningpost.com)
    6comments
  18. We Should Be Able to Change Our Languages (jimmyhmiller.com)
    —discuss
  19. Modern Object Pascal Introduction for Programmers (castle-engine.io)
    60comments
  20. How I changed teaching after AI managed to do all my homework assignments (thelastsoftwareengineer.substack.com)
    148comments
  21. Snap Wants to be a State Actor??–Kansas v. Snap (ericgoldman.org)
    2comments
  22. The Lost Atomic Update on Loongson CPU (jia.je)
    6comments
  23. How one Twitch chat message became code execution on a streamer’s PC (scrt.ch)
    12comments
  24. How to keep enjoying programming in a world of LLMs (haskell.org)
    218comments
  25. What is the size of Yemen? (2024) (theborys.substack.com)
    —discuss
  26. Sousveillance (wikipedia.org)
    4comments
  27. LA Metro has some of the slowest escalators on Earth (basin.la)
    70comments
  28. HomeBody: A humanoid that explores, remembers, and acts on its own (stanford.edu)
    2comments
  29. Dutch designer made DE9: Closer to the Edit into a playable web-based instrument (creativeboom.com)
    2comments
  30. Breaking Up with Google Play: Why Conversations Is Now Free (gultsch.de)
    258comments

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

36 pointsby 9h agorighto.com
7 comments
3h 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!

9m agoHN ↗

The 8087 is probably enough floating point for a while :-)

5h 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.

1h agoHN ↗

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

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