frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Big Tech's Debt Binge Raises Risk in Race to Create an AI World

https://www.bloomberg.com/news/articles/2025-11-21/big-tech-s-debt-binge-raises-risk-in-race-to-c...
1•zerosizedweasle•1m ago•0 comments

Show HN: FOSS De-googled Compass and Nav app with live location tracking

https://github.com/CompassMB/MBCompass
1•nativeforks•10m ago•0 comments

Cryptographic Standards and Guidelines

https://csrc.nist.gov/projects/cryptographic-standards-and-guidelines
2•jonbaer•10m ago•0 comments

Spider Cognition: How Tiny Brains Do Mighty Things [video]

https://www.youtube.com/watch?v=_QF6kaOAuYg
1•sitkack•13m ago•0 comments

Why a Lightweight and Breathable Face Powder Matters in Tropical Climates

1•Hackbreaker•13m ago•0 comments

FAWK: LLMs can write a language interpreter

https://martin.janiczek.cz/2025/11/21/fawk-llms-can-write-a-language-interpreter.html
2•todsacerdoti•13m ago•0 comments

Pixar: The Early Days

https://stevejobsarchive.com/stories/pixar-early-days
1•tambourine_man•16m ago•0 comments

Australia is banning social media for kids under 16. How will it work?

https://www.bbc.com/news/articles/cwyp9d3ddqyo
2•breve•17m ago•0 comments

Show HN: A 100-Lighthouse-Score Astro blog template

https://kalanakt.gumroad.com/l/oxpfby
1•Luka_Ar•19m ago•1 comments

Show HN: I Built an AI Image Editor Using Nano Banana Pro

https://vdraw.ai/nano-banana-pro
1•passioner•22m ago•0 comments

Building a Durable Execution Engine with SQLite

https://www.morling.dev/blog/building-durable-execution-engine-with-sqlite/
2•thunderbong•24m ago•0 comments

Anonymous site offers $100k for execution of Israeli academics

https://www.timesofisrael.com/liveblog_entry/anonymous-site-offers-100000-for-execution-of-israel...
1•Protostome•25m ago•0 comments

Zyn 0.2.0 – An extensible pub/sub messaging protocol for real-time apps

https://github.com/zyn-org/zyn/releases/tag/zyn-0.2.0
1•ortuman•25m ago•0 comments

FlagSwift – Feature flags for teams who can't afford other feature flags tools

1•ellalawrie•27m ago•0 comments

NASA releases new images of 3I/ATLAS

https://www.popsci.com/science/3i-atlas-comet-new-photos-nasa/
1•I_Nidhi•33m ago•0 comments

Why (pure) functional programming matters [video]

https://www.youtube.com/watch?v=8p5acyD8lGs
2•todsacerdoti•35m ago•0 comments

Real-time probability calculator for Blackjack and Poker

https://buddydeck.com/
1•Nukloop•36m ago•1 comments

HP and Dell disable HEVC support built into their laptops' CPUs

https://arstechnica.com/gadgets/2025/11/hp-and-dell-disable-hevc-support-built-into-their-laptops...
6•latexr•41m ago•0 comments

Altman's eye-scanning startup told workers not to care about anything but work

https://www.businessinsider.com/sam-altman-tools-for-humanity-startup-culture-hardcore-2025-11
3•7777777phil•41m ago•1 comments

Looking for feedback on an AI-only marketplace idea to make order in the roles

1•edotaje•44m ago•2 comments

Doctype – 80s style type-in HTML magazine

https://vole.wtf/doctype/
2•OuterVale•46m ago•0 comments

Microsoft Exec Asks: Why Aren't More People Impressed with AI?

https://www.pcmag.com/news/microsoft-exec-asks-why-arent-more-people-impressed-with-ai
3•latexr•51m ago•4 comments

Bitoin won't recover until there's a resolution to quantum elephant in the room

1•r33b33•55m ago•1 comments

AI Models as Standalone P&Ls [Dario Amodei, Anthropic CEO]

https://philippdubach.com/2025/11/09/ai-models-as-standalone-pls/
1•7777777phil•55m ago•0 comments

Wavl Trees [pdf]

https://ics.uci.edu/~goodrich/teach/cs165/notes/WeakAVLTrees.pdf
1•fanf2•1h ago•0 comments

Show HN: AgentsKB – 3.3k verified answers to stop agent hallucinations

https://agentskb.com/
1•Cranot•1h ago•0 comments

D-Link warns of new RCE flaws in end-of-life DIR-878 routers

https://www.bleepingcomputer.com/news/security/d-link-warns-of-new-rce-flaws-in-end-of-life-dir-8...
1•01-_-•1h ago•0 comments

GitHub Actions cache size can now exceed 10 GB per repository

https://github.blog/changelog/2025-11-20-github-actions-cache-size-can-now-exceed-10-gb-per-repos...
2•meysamazad•1h ago•0 comments

New US rules say countries with diversity policies are infringing human rights

https://www.bbc.com/news/articles/cx24200d7y9o
2•osivertsson•1h ago•1 comments

Core message Ingo is conveying with this diagram

https://twitter.com/EstateIngoSwann/status/1991460118601388330
1•keepamovin•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•6mo ago

Comments

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