frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Let's build a digital clock (Video, Ben Eater)

https://www.youtube.com/watch?v=3XDH-fZKnQk
1•JKCalhoun•1m ago•0 comments

A unique palaeolithic human ichnological record from Italy (Bàsura Cave)

https://elifesciences.org/articles/45204
1•Tomte•3m ago•0 comments

Amazon Builder's Library – An overlooked goldmine of System Design knowledge

https://sumitgouthaman.com/posts/amazon-builders-library/
1•equinumerous•3m ago•0 comments

RIP Your Backlog

https://randsinrepose.com/archives/r-i-p-your-backlog/
1•mooreds•4m ago•0 comments

Testing is underway on vaccines to intercept brewing colon cancer

https://www.cnn.com/2026/08/09/health/colon-cancer-vaccine-lynch-syndrome
2•mooreds•6m ago•0 comments

Ask HN: What assisted driving car is best for elderly drivers?

2•yubblegum•6m ago•0 comments

The "Data Quality/Engineering" Angle

https://kylesinvestigation.com/
1•mkyle71•6m ago•0 comments

Uncontacted Indigenous Peoples: at the edge of survival (2025) [pdf]

https://assets.survivalinternational.org/documents/2788/original-b24f435d70d2e27876b53452d615b1a4...
1•mooreds•7m ago•0 comments

Show HN: YC Startup School, but AI-Native

https://foundera.app/
1•toyji•8m ago•0 comments

Gemini 3 Pro can generate normal maps

https://geosona.com/software/2026/08/09/gemini-normal-maps/
1•gste•8m ago•2 comments

Israeli startup was linked to rogue AI hacks at OpenAI, Anthropic and Meta

https://www.cnbc.com/2026/08/09/israeli-startup-irregular-linked-to-ai-hacks-openai-anthropic-met...
1•cramer4next•9m ago•0 comments

The Wild West of Private Schools That Collect Taxpayer Dollars

https://www.propublica.org/article/private-schools-vouchers-growth-florida-arizona-west-virginia
1•ceejayoz•13m ago•0 comments

Show HN: Amapola – financial models you can draw and play

https://thepatternbridge.com/amapola/
1•GabrielSilver•14m ago•0 comments

Auto mode is now the default in Claude Code for Pro, Max, and Team plans

https://simonwillison.net/2026/Aug/8/auto-mode/
1•ilamont•15m ago•0 comments

Trump Crypto Took $100M from a Businessman with Red Flags

https://www.nytimes.com/2026/08/09/us/politics/bobby-zhou-trump-crypto.html
1•hrldcpr•16m ago•0 comments

Show HN: FolderForge, open-source native macOS folder icon designer

https://github.com/KeplSiv/FolderForge
2•keplsiv•19m ago•0 comments

Amazon circumvents Gilroy community vote for AI data center

https://www.tomshardware.com/tech-industry/data-centers/amazon-secretly-circumvents-community-vot...
11•mikhael•21m ago•1 comments

Claude Code in 9 lines Python

https://www.reddit.com/r/LocalLLaMA/comments/1viwlgj/comment/p2mn1xt/
2•tosh•23m ago•0 comments

Show HN: FAIth – a syntax-free JVM language, compiled by an LLM front-end

https://github.com/krossovochkin/faith
2•krossovochkin•23m ago•0 comments

The Long, AI-Powered Quest to Perfect Pringle-Making

https://www.wsj.com/tech/ai/inside-the-long-ai-powered-quest-to-perfect-pringle-making-ab37a231
2•bookofjoe•27m ago•1 comments

Self Hosting Coding LLMs

https://blog.samibadawi.com/2026/08/self-hosting-coding-llms.html
2•type-lambda•28m ago•0 comments

The Closure of the Internet

https://arctotherium.substack.com/p/the-closure-of-the-internet
2•barry-cotter•28m ago•0 comments

Show HN: A Project Oberon System version running on RISC-V instead of RISC-5

https://github.com/rochus-keller/OberonSystem/tree/op2-rv32
3•Rochus•30m ago•0 comments

A golf career SIM I built, abandoned, and just found still has real users

https://www.rainydaygc.com
2•mdstrobe•32m ago•0 comments

Scientists turn to sharks to improve hurricane predictions

https://www.reuters.com/business/environment/scientists-turn-sharks-improve-hurricane-predictions...
2•geox•41m ago•0 comments

Making AI Smarter with AI

https://math.andrej.com/2026/07/11/making-ai-smarter-with-ai/
2•artninja1988•45m ago•2 comments

Advanced AI Sycophancy

https://www.seangoedecke.com/advanced-ai-sycophancy/
4•vinhnx•45m ago•0 comments

What LLMs Should Do

https://adamperesztegi.com/posts/what-llms-should-do/
2•nevertoolate•49m ago•0 comments

China created a system that simulates the Earth with billions of AI agents

https://twitter.com/howtoprompt__/status/2086110097663795365
4•fragmede•52m ago•1 comments

Generative AI threatens to upend citizen science records

https://phys.org/news/2026-08-creatures-born-code-generative-ai.html
2•programd•52m ago•0 comments
Open in hackernews

Implicit UVs: Real-time semi-global parameterization of implicit surfaces [pdf]

https://baptiste-genest.github.io/papers/implicit_uvs.pdf
50•ibobev•1y ago

Comments

whizzter•1y ago
Interesting paper for someone fiddling with implicit surfaces, but it's gonna take a little while to digest it. Also there's no examples of resulting UV maps used in this (while on-model painting is simplified, afaik classically artists still preferred to get clearly delineated maps to modify in regular painting software even if stuff like Substance painter seems to have shifted that).

Implicit surface modelling tools are still evolving quickly, and one point that seems overlooked is how this would tie with authoring tools (since this is about a fairly raw numeric algorithm solution).

Post-modelling it should hold up, but would the maps retain similarity (or enable transferability) if the implicit model structure changes?

Imagine 2 disjoint spheres in space, the user drags them together, would this algorithm want to merge the UV mapping of them if they are smoothly joined? (no sharp creases).

baptiste-genest•1y ago
Hi, I'm the first author of the article. Thank you very much for your interest in the method!

For the 2 spheres, it's as you wish ! It depends on where you place the uv system in the CSG tree, if it is above a single sphere then it will remain on it, if it's above the union, the field should extent on both.

The main interest of the method is the fact that the output remains implicit so one can easily plug it in a CSG pipeline.

whizzter•1y ago
Right, so in the case of the UV connecting to the 2 sphere's in the CSG if one uses a smoothunion function, would the UV islands join "from each direction" in a predictable fashion as the spheres overlap more and more?
baptiste-genest•1y ago
If I understood what you mean, yes!

This example can be seen in the fast-forward: https://youtu.be/dK5JPHylzOg?si=zDHwaOL_xtx-_TJk

jplusequalt•1y ago
What a great paper. This paper is an example of why I find computer graphics to be the most interesting subset of computer science.
baptiste-genest•1y ago
Hi, I'm the first author of the paper. Thank you so much for your comment, it means the world to me!
kaoD•1y ago
Related question: I'm coding a demo (as in "demoscene") and want to displace a plane SDF (think e.g. a heightmap) for raymarching.

This produces some visible discontinuities in the plane at larger slopes. My surface is still at f(x,y,z) = 0 but the rest of the field is completely messed up. From the little maths I know, that is no longer an SDF because among other issues, it no longer satisfies the Eikonal equation mentioned in the article.

Is there any way to fix this or am I SOL?

bhouston•1y ago
You need to take the minimum of the two SDF fields in the surrounding region (up to the global context if you need to) if you want it to maintain an SDF. The minimum of two SDFs is always a new SDF.

My suspicion is that the new plane isn't an SDF anymore, that is why you are getting artifacts or your ray marcher has problems with large scope angles, or something.

akomtu•1y ago
sdf(p + sin(p)*0.01)
GistNoesis•1y ago
See "Deformations and distortions" paragraph in https://iquilezles.org/articles/distfunctions/ where it suggests playing with the ray-marching step size.
Remnant44•1y ago
Great timing on this paper. I actually just started tackling a problem that is essentially exactly what is under discussion here (creating a coherent UV set for implicit geometry), so I'm very looking forward to reading it in depth.

At a first glace through, it seems to be written at a good blend between concept and implementation followthrough, something that notoriously is not always there for CG papers :) And it's also refreshing to read something that is not neuro-AI-generation of this or that for a change!