Hacker News

Top stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. Cloudflare Quick Tunnels(cloudflare.com ↗)
    73comments
  2. An Empirical Study of Harness Design for Coding Agents(arxiv.org ↗)
    32comments
  3. North Korean nuclear test sets off years of earthquakes(science.org ↗)
    45comments
  4. I vibed a proof of Conway's conjecture(overreacted.io ↗)
    80comments
  5. OpenJev(openjev.com ↗)
    197comments
  6. Show HN: Microsoft Office running with Wine on Linux with no virtualization(github.com/tombert ↗)
    9comments
  7. GrassLobster: AI Agentic Generation of Parametric Geometry Workflows(miro.vision ↗)
    2comments
  8. C++26: Trivial infinite loops are no longer undefined behaviour(sandordargo.com ↗)
    73comments
  9. Show HN: Cactus Needle 3: 8-29MB automation models can match DeepSeek V4 Flash(cactuscompute.com ↗)
    1comments
  10. Mathematicians Build Long-Awaited Graph Sandwich(quantamagazine.org ↗)
    1comments
  11. I don't like passkeys(hawksley.dev ↗)
    450comments
  12. US Treasuries Have Become Unappetizing for Foreign Central Banks and Governments(wolfstreet.com ↗)
    9comments
  13. A heap overflow and SSO misconfiguration to compromise OpenAI internal repos(hacktron.ai ↗)
    175comments
  14. The Shadows Lurking in the Equations – Underwater Islands(gods.art ↗)
    8comments
  15. Cekura (YC F24) Is Hiring(ycombinator.com ↗)
    discuss
  16. NATS publishes preliminary report on technical incident of 8 September(nats.aero ↗)
    17comments
  17. Jemalloc 5.4.0(github.com/jemalloc ↗)
    70comments
  18. Build Faster Feedback Loops Using Qualitative User Research(nseldeib.com ↗)
    discuss
  19. AI is an elite crime spree(thebignewsletter.com ↗)
    10comments
  20. The scourge of x86 emulation(fex-emu.com ↗)
    65comments
  21. Warren Buffett Steps Down as Berkshire Chairman, Names Son to Replace Him(nytimes.com ↗)
    136comments
  22. Bonsai 2 27B: Near-Lossless Compression in a 9x Smaller Footprint(prismml.com ↗)
    172comments
  23. Show HN: Scry, programmable internet search w/ congestion pricing(scry.io ↗)
    discuss
  24. Second Circuit Allows Government to Search Electronic Devices at the Border(knightcolumbia.org ↗)
    30comments
  25. Qwen 3.8 Omni Flash(qwen.ai ↗)
    107comments
  26. Microsoft exec called AI scraping 'the largest theft of labor in human history'(techcrunch.com ↗)
    590comments
  27. How to Write with an LLM(sockpuppet.org ↗)
    177comments
  28. BeanShell3 in Development(beanshell.github.io ↗)
    8comments
  29. Pre-Greek: The lost language hidden within Ancient Greek(linguisticdiscovery.com ↗)
    58comments
  30. When the fractional part of a float fixes your shader(crocidb.com ↗)
    16comments

The Shadows Lurking in the Equations – Underwater Islands

43 pointsby 2d agogods.art
8 comments
2h agoHN ↗

That has another name but I forget. Essentially contour plotting in high res.

1h agoHN ↗

Do you mean Marching Squares? Or Signed Distance Fields? Both are related, but not exactly the same.

2h agoHN ↗

These visualizations are cool, but I feel only a little misleading. Any 2D relation can be plotted in 3D, and setting z=0 shows the original line in 2D. The whole notion of fuzzy is really just saying "let's make a heat map of how far z is from 0". That said, I can see how for some people, thinking about the roots of a function in 3D this way _could_ help unlock deeper understanding of where your roots are at than just staring at 3D graph.

1h agoHN ↗

Also, the visualisations are to some extent an artifact of how you arrange the equation: rearranging terms between the left and right side won't change the line but it will change these visualisations. The first example illustrates it nicely: the 'hole' only exists because of a redundant division by (x^2 + y^2) on either side of the equation.

1h agoHN ↗

My gut tells me that exploring mathematics in this way has very high potential for bringing on future advancements. (1) Simple elements that (2) reveal coherent structures, and were (3) hidden to historic geniuses due to requiring exhaustive computation.

48m agoHN ↗

It’s not so interesting I think.

They’re basically just taking equations of the form f(x,y)=k where k=0, and asking “ah but what about when k!=0”?

Indeed, looking at the constant as a variable by looking at the equation f(x,y)=z IS quite useful. (I’m reminded of Feynman favorite trick for solving integrals). That generalization trick is actually useful in MANY contexts. But there’s nothing novel here.

28m agoHN ↗

The same trick is used in f(R) theories, where the Ricci scalar in General Relativity is replaced with a linear function. https://en.wikipedia.org/wiki/F(R)_gravity

Reminds me of TRIZ methods too, trying to find assumptions or constraints and playing with variations of them.

So yeah, nothing novel here.