frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Adding Go's Defer to the TypeScript Compiler

https://healeycodes.com/adding-defer-to-the-typescript-compiler
1•ingve•21s ago•0 comments

Spain's plan for the first octopus farm has been abandoned

https://www.bbc.com/future/article/20260731-spains-attempt-to-farm-octopuses-has-failed
1•geox•47s ago•0 comments

A 3-line HTML drop-in that replaces passwords with FaceID

https://nxspulse.com
1•paulnexus•3m ago•0 comments

The Framebuffer People: I Cloned Every OS on r/osdev and Found Five Real Ones

https://www.seuros.com/blog/the-framebuffer-people/
1•st_goliath•4m ago•0 comments

What Makes an Intelligence Product?

https://luntta.fi/notes/what-makes-an-intelligence-product/
1•hungryhungryhip•5m ago•0 comments

A Black woman enhanced the audio in Nolan Wells' case. People listening closely

https://thegrio.com/2026/07/28/a-black-woman-enhanced-the-audio-in-a-call-related-to-nolan-wells-...
1•baranul•5m ago•0 comments

New open sourced eval tool for building agents

1•Thomeras•5m ago•0 comments

Show HN: I created a project management system

https://is.team
1•spotlayn•8m ago•1 comments

Further Developments About Internal AI Models Hacking Things

https://thezvi.substack.com/p/further-developments-about-internal
1•thm•8m ago•0 comments

A browser-based tribute to Encarta's MindMaze

https://select.supply/game/mindmaze
1•laurentiurad•10m ago•0 comments

The Free CV Builder That Gets You Hired Faster

https://www.sartorcv.com/
1•levario•11m ago•0 comments

Rust project goals: Immobile types and guaranteed destructors

https://github.com/rust-lang/rust-project-goals/blob/main/src/2026/move-trait.md
2•paavohtl•13m ago•0 comments

Discover What Your Potential Users Are Talking About

https://agenmatic.ai/
2•Nancylily•14m ago•1 comments

MCP vs. Bash

https://pac.commonsware.com/archive/mcp-vs-bash/
1•ingve•14m ago•0 comments

Why We Stopped Making Einsteins

https://www.theintrinsicperspective.com/p/why-we-stopped-making-einsteins
1•jorzel•16m ago•0 comments

WestJet labour dispute is a proxy battle between Carney and unions

https://www.theglobeandmail.com/business/commentary/article-westjet-flight-attendant-strike-proxy...
1•petethomas•17m ago•0 comments

Show HN: Changed how I use agent harnesses

https://github.com/maximhq/bifrost/
1•Swapnoneel•18m ago•0 comments

Show HN: Curved Crease Folding

https://curved-crease-interactive.vercel.app/
1•coroush•18m ago•0 comments

Branchless Rust: Making a Filter 4x Faster by Removing an If

https://www.greyblake.com/blog/branchless-rust/
1•greyblake•18m ago•0 comments

Conflict-Freedom as a Progress Condition

https://arxiv.org/abs/2605.19531
1•otrack•19m ago•0 comments

The World Crossed a Major Solar Milestone [3TW]

https://www.bloomberg.com/news/articles/2026-08-03/the-world-crossed-a-major-solar-milestone-no-o...
1•toomuchtodo•20m ago•1 comments

Linux page-cache corruption via TC pedit: a new Dirty-class variant

https://github.com/rjt-gupta/page-cache-corruption-lpes/tree/main/dirty_pedit
1•rjt-gupta•23m ago•1 comments

Don't be a meat proxy

https://gruhn.me/blog/2026-08-03/
66•ngruhn•27m ago•21 comments

R-457 – a 27M-parameter reasoning model running offline across two ESP32-S3

https://github.com/harmansingh4163-ai/R-457
1•harmansingh4163•28m ago•0 comments

Linux 7.2-rc6: The biggest rc6 in years

https://lwn.net/ml/all/CAHk-=whoz5Uy-kmrdzjrpCJCVWW3fni31c-zsHcH7TkOhRhfOA@mail.gmail.com/
1•zdkaster•33m ago•0 comments

Britain's Hikikomori

https://dispatch-media.com/meet-britains-hikikomori/
2•littlexsparkee•33m ago•0 comments

Situational Awareness and the Impending Stock Market Volatility

https://www.emergingtrajectories.com/lh/situational-awareness-bigger-picture/
3•cl42•38m ago•3 comments

How AI Is Reshaping Human Reasoning and the Rise of Cognitive Surrender

https://www.researchgate.net/publication/399711077_Thinking-Fast_Slow_and_Artificial_How_AI_is_Re...
1•akbarnama•39m ago•1 comments

A Wild Netflix Lawsuit Shows Why Drugs and Alcohol Don't Mix with Work

https://www.wsj.com/lifestyle/careers/a-wild-netflix-lawsuit-shows-why-drugs-and-alcohol-dont-mix...
1•petethomas•39m ago•0 comments

Lists for Devs Who Just Shipped and Now Need Users

https://dev.to/productivity/awesome-lists-for-devs-who-just-shipped-and-now-need-users-115f
2•armandomaxim•41m 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!