frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

From Alphabet to Visa, US giants drive euro-denominated bond surge

https://www.reuters.com/business/finance/alphabet-visa-us-giants-drive-euro-denominated-bond-surg...
1•nabla9•1m ago•0 comments

Dear HN. Please make the Hacker News header stick to the top of the browser

1•cbeach•2m ago•0 comments

Rails World 2025 Opening Keynote – David Heinemeier Hansson [video]

https://www.youtube.com/watch?v=gcwzWzC7gUA
2•marcofloriano•5m ago•0 comments

Rust vs. Go

https://blog.howardjohn.info/posts/rust-vs-go/
2•ingve•9m ago•0 comments

Spec-driven development with AI: Get started with a new open-source toolkit

https://github.blog/ai-and-ml/generative-ai/spec-driven-development-with-ai-get-started-with-a-ne...
3•ibobev•11m ago•0 comments

Global wildfire paradox: Human impacts worsen even as total burned area declines

https://phys.org/news/2025-08-global-wildfire-paradox-human-impacts.html
4•PaulHoule•14m ago•1 comments

What do people use ChatGPT for? OpenAI provides some numbers

https://arstechnica.com/ai/2025/09/seven-things-we-learned-from-openais-first-study-on-chatgpt-us...
4•jnord•15m ago•0 comments

Some Publishers Clearing House winners are facing the end of 'forever' prizes

https://apnews.com/article/publishers-clearing-house-bankruptcy-forever-winners-e7db7f8806b82a526...
3•c420•15m ago•1 comments

Diving into Spec-Driven Development with GitHub Spec Kit

https://developer.microsoft.com/blog/spec-driven-development-spec-kit
2•ibobev•16m ago•0 comments

Why Deadlines? Why That Deadline?

https://www.cybadger.com/why-deadlines-why-that-deadline/
2•mooreds•17m ago•0 comments

RIP my minimal phone setup

https://manuelmoreale.com/rip-my-minimal-phone-setup
2•zdw•20m ago•0 comments

Show HN: I built a Swift lib for parsing structured JSON streamed from LLMs

https://github.com/itruf/PartialJSON
1•itruf•20m ago•0 comments

If Anyone Builds It, Everyone Dies

https://ifanyonebuildsit.com/
3•jimrandomh•22m ago•1 comments

Work with the Garage Door Up

https://notes.andymatuschak.org/zCMhncA1iSE74MKKYQS5PBZ
2•mihau•28m ago•0 comments

2025 Fall Foliage Map and Nationwide Peak Leaf Forecast

https://smokymountains.com/fall-foliage-map
2•ohjeez•29m ago•0 comments

Music Tech Startups Focused on Fans, Artists, and the Future of Music

https://emwhitenoise.substack.com/p/a-curated-guide-to-80-music-startups
1•ohjeez•31m ago•0 comments

The Trauma You Need to Learn

https://staysaasy.com/management/2025/09/14/educational-trauma.html
2•Garbage•33m ago•0 comments

Things I said as a manager part 6: Leveling up hurts

https://reactiverobot.com/writing/leveling-up.html
2•reactiverobot•34m ago•0 comments

The California-Washington tech fight heats up

https://www.politico.com/news/2025/09/16/the-california-washington-tech-fight-heats-up-00567309
2•alephnerd•34m ago•0 comments

Braille generator for 3D printing written in OpenSCAD

https://www.thingiverse.com/thing:6463849
1•lucasoshiro•38m ago•0 comments

Show HN: I generate a week of posts from one YouTube video

https://yttomermaid.xyz/
1•xnslx•40m ago•0 comments

Painfully Correct Cliches

https://kupajo.com/painfully-correct-cliches
1•kolyder•41m ago•0 comments

Swift 6.2 advances the language meaningfully

https://victorwynne.com/swift-6-2/
5•curtblaha•42m ago•0 comments

Show HN: Budgero – a privacy-first budgeting app

https://budgero.app
1•toma-bomba•43m ago•1 comments

Why one of the most brilliant AI scientists left the US for China

https://www.theguardian.com/news/ng-interactive/2025/sep/16/song-chun-zhu-why-one-of-the-worlds-m...
4•Chris2048•45m ago•1 comments

Making Sense of Postgres Query Plans

https://www.jacobreed.dev/blog/Explain
1•jreed91•49m ago•0 comments

Study Shows Number of Childless Women in the U.S. Continues to Rise

https://www.unh.edu/unhtoday/news/release/2025/09/15/study-shows-number-childless-women-us-contin...
11•Improvement•55m ago•1 comments

Show HN: Word Tower a daily word ladder game with scoring

https://wordtower.tevon.dev/
1•devtev•55m ago•2 comments

Agent Payments Protocol (AP2)

https://github.com/google-agentic-commerce/AP2
1•simonpure•56m ago•0 comments

Black Neon Tetra

https://en.wikipedia.org/wiki/Black_neon_tetra
2•michaefe•56m 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•4mo ago

Comments

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