frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

ESP-IDF 6 Setup in VS Code: Blink and Debug an ESP32-S3 [video]

https://www.youtube.com/watch?v=y2pIqbZa-iA
1•iamflimflam1•40s ago•0 comments

Crack and Crab

https://languagelog.ldc.upenn.edu/nll/?p=73489
1•jruohonen•1m ago•0 comments

Beat – open-source screenwriting app for Mac/iOS

https://www.beat-app.fi/
1•tekkk•6m ago•0 comments

What happens when we lose a language?

https://www.theguardian.com/science/2026/may/10/what-happens-when-we-lose-a-language
1•saikatsg•10m ago•0 comments

Ask HN

1•Sxouterred•12m ago•1 comments

Ubiquitous, but in Which Language?

https://docs.eventsourcingdb.io/blog/2026/05/11/ubiquitous-but-in-which-language/
1•goloroden•12m ago•0 comments

Al-Khwarizmi didn't in any way originate, invent or create the algorithm

https://thonyc.wordpress.com/2026/05/06/al-khwarizmi-didnt-in-any-way-originate-invent-or-create-...
1•leephillips•13m ago•0 comments

Cherry Kearton: The eccentric influence on a young Sir David Attenborough

https://www.bbc.com/future/article/20260507-cherry-kearton-the-eccentric-influence-on-a-young-sir...
1•saikatsg•19m ago•0 comments

Hardware Attestation as Monopoly Enabler

https://grapheneos.social/@GrapheneOS/116550899908879585
45•ChuckMcM•22m ago•1 comments

Null ID – A local daemon for age restrictions without surveillance

https://github.com/ni-initiative/ni-initiative
1•jockeF•22m ago•0 comments

Show HN: Lune - Software for agents that do serious science

https://luneresearch.com
1•ttttonyhe•25m ago•0 comments

Apple to Make Design Changes in macOS 27 to Address Tahoe Quirks

https://www.bloomberg.com/news/newsletters/2026-05-10/apple-plans-macos-27-design-changes-latest-...
1•mfiguiere•28m ago•0 comments

Show HN: Visual Learning with LLMs

https://forray.io/
1•aab99•29m ago•0 comments

Incident CVE-2024-Yikes

https://nesbitt.io/2026/02/03/incident-report-cve-2024-yikes.html
7•miniBill•32m ago•0 comments

'10 minutes of nirvana': 52 writers on the best sandwich of their life

https://www.theguardian.com/food/2026/may/10/52-writers-on-the-best-sandwich-of-their-life
2•laurex•39m ago•0 comments

Ask HN: What Are You Working On? (May 2026)

3•david927•41m ago•7 comments

Scientists Studied 906 Mafia Marriages and Found Something Surprising

https://www.404media.co/scientists-studied-906-mafia-marriages-and-found-something-surprising/
2•Brajeshwar•42m ago•0 comments

The Mayor Method

https://github.com/day8/re-frame2/blob/main/docs/the-mayor-method.md
1•yurivish•42m ago•0 comments

Familiar Machines and Magic introduces adorable smart robot assistants

https://www.familiarmachines.com/
1•robotlaunch•42m ago•0 comments

Dark Star (Film, 1974)

https://en.wikipedia.org/wiki/Dark_Star_(film)
6•maxall4•42m ago•1 comments

'AI gave me your number': AI doxxing turns ChatGPT hallucinations to harassment

https://www.the-independent.com/tech/ai-doxxing-gemini-hallucination-google-b2973008.html
2•ColinWright•44m ago•2 comments

I built a local portal so ChatGPT (Pro models) can browse my accounts safely

https://github.com/DenisSergeevitch/chatgpt-portal
1•neuraldenis•48m ago•0 comments

The Mindset Shift That Unlocked Y Combinator for Me

https://nmn.gl/blog/meditations-on-make-something-people-want
1•namanyayg•51m ago•0 comments

Mostly the first breakup AI agent that delivers your breakup over iMessage

https://behalf.love
1•goyibo•52m ago•0 comments

Study: Egg consumption is associated with a lower risk of Alzheimer's Disease

https://news.llu.edu/research/study-egg-consumption-associated-lower-risk-alzheimers-disease
4•bilsbie•52m ago•0 comments

The Atari 800 – By Paul Lefebvre

https://www.goto10retro.com/p/inside-the-atari-800
1•rbanffy•53m ago•1 comments

My writing students were using AI. Their confessions led to a teaching moment

https://www.theguardian.com/us-news/ng-interactive/2026/may/10/fiction-writing-professor-ai
5•spzb•56m ago•1 comments

Utah's 'hyperscale' data center could create heat island near Great Salt Lake

https://www.sltrib.com/news/environment/2026/05/07/utahs-data-center-could-create/
2•NDlurker•56m ago•1 comments

Local AI needs to be the norm

https://unix.foo/posts/local-ai-needs-to-be-norm/
4•cylo•56m ago•1 comments

Integrating no-as-a-service in Linux kernel code

https://github.com/hotheadhacker/no-as-a-service/commit/e6b4218394f3ab6c513caaf2ec2e3e88d03d124c
2•testdelacc1•59m 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•12mo ago

Comments

whizzter•12mo 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•12mo 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•12mo 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•12mo 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•12mo 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•12mo ago
Hi, I'm the first author of the paper. Thank you so much for your comment, it means the world to me!
kaoD•12mo 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•12mo 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•12mo ago
sdf(p + sin(p)*0.01)
GistNoesis•12mo ago
See "Deformations and distortions" paragraph in https://iquilezles.org/articles/distfunctions/ where it suggests playing with the ray-marching step size.
Remnant44•12mo 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!