frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

I'm a Philosophy Professor. Here's Why I'm Training AI to Replace Me

https://www.chronicle.com/article/im-a-philosophy-professor-heres-why-im-training-ai-to-replace-me
1•KnuthIsGod•3m ago•0 comments

The world of Japanese train melodies [video]

https://www.youtube.com/watch?v=-KxQIEhsFQk
1•vinhnx•4m ago•0 comments

The Vientiane Mystery: When a Taxi Apps Randomly Stops Working

https://gist.github.com/Usernameisalreadytaken5/a0bc0e204008b9ed1b404437db5f59cd
1•jondoe•5m ago•0 comments

Show HN: Bgbgone – local Mac background remover CLI – MIT

https://github.com/Arthur-Ficial/bgbgone
1•franze•7m ago•0 comments

C++: The Programming Language Cover Raises Unanswered Questions

https://devblogs.microsoft.com/oldnewthing/20260401-00/?p=112180
1•birdculture•7m ago•0 comments

The "Cat-Cam": Using Go and an Old Nokia Android to Catch a Midnight Intruder

https://medium.com/@premkumarbhaskal/the-cat-cam-using-go-and-an-old-nokia-android-to-catch-a-mid...
2•Pbhaskal•7m ago•1 comments

Using the Screen Capture API to record a browser window

https://alexwlchan.net/2026/record-browser-video/
1•Tomte•10m ago•0 comments

Ask HN: What are some agent-coded masterpieces?

1•xyzal•10m ago•0 comments

A Little Explanation of Little's Law

https://rugu.dev/en/blog/littles-law/
2•signa11•11m ago•0 comments

The US Needs Mechanics and Electricians.Big Business Is Spending to Create Some

https://www.wsj.com/business/autos/the-u-s-needs-mechanics-and-electricians-big-business-is-spend...
1•KnuthIsGod•12m ago•0 comments

The Grad Student Who Broke Microplastics Research

https://drstanfield.com/en-eu/blogs/articles/the-grad-student-who-broke-microplastics-research
2•mpweiher•28m ago•0 comments

Memory Caching: RNNs with Growing Memory

https://arxiv.org/abs/2602.24281
1•dmichulke•30m ago•0 comments

Writing your own print function in C without Libc

https://linux-is-best.pckt.blog/writing-your-own-print-function-16xt8wv
1•ghodawalaaman•36m ago•0 comments

Spotify no OAuth,no premium web API fetching

1•nntlol•36m ago•0 comments

Nike can't just do it any more

https://economist.com/1843/2026/06/05/nike-cant-just-do-it-any-more
1•andsoitis•39m ago•0 comments

Project the aircraft passing overhead onto your ceiling, in real time

https://github.com/cpaczek/skylight
2•phantomathkg•43m ago•1 comments

Show HN: Kyushu – A self-hostable WASM sandbox for JavaScript workers

https://kyushu.dev/
1•le_chuck•48m ago•0 comments

Show HN: WinkTerm – AI that shares the same PTY as you in the terminal

https://github.com/Cznorth/winkterm
1•Cznorth•51m ago•0 comments

Help Nearby – humanitarian map with UN data integration

https://help-nearby.org
1•Hyrezyxx•57m ago•0 comments

Retrospective

https://neverworkintheory.org/2024/03/21/retrospective.html
1•jruohonen•57m ago•0 comments

Dimitri Bertsekas

https://en.wikipedia.org/wiki/Dimitri_Bertsekas
1•tosh•1h ago•0 comments

Are we approaching a new AI winter?

https://adlrocha.substack.com/p/adlrocha-are-we-approaching-a-new
2•adlrocha•1h ago•0 comments

Show HN: About Lightweight, S3-compatible object storage

https://kodiqa-solutions.github.io/VaultS3/
1•open_source_new•1h ago•0 comments

Thoughts on starting new projects with LLM agents

https://eli.thegreenplace.net/2026/thoughts-on-starting-new-projects-with-llm-agents/
2•wrxd•1h ago•0 comments

Show HN: AI pre-screening CIS counterparties before onboarding

https://agenstry.com/agents/cis-secondary-sanctions-a2a.vassiliy-lakhonin.workers.dev
1•vassilbek•1h ago•0 comments

How LLMs Work: A Friendly Map for Humans

https://oreoro.github.io/posts/how-llms-actually-work-friendly-guide/
1•alexander2002•1h ago•0 comments

Police Tussle with Diabetes Experts at Ada Meeting

https://www.medpagetoday.com/special-reports/exclusives/121619
1•pigeons•1h ago•0 comments

What Happened in Tanzania on October 29?

https://www.youtube.com/watch?v=hGI5O56yuxo
1•daesorin•1h ago•0 comments

How much do amd64 microarchitecture levels help in Go?

https://twitter.com/lemire/status/2063358266885685710
2•tosh•1h ago•1 comments

Into the Personal-Website-Verse (2019)

https://matthiasott.com/articles/into-the-personal-website-verse
2•downbad_•1h 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!