frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

We Love Open Source: finding a critical auth bypass in etcd (CVE-2026-33413)

https://www.strix.ai/blog/where-others-missed-it-etcd-auth-bypass
1•bearsyankees•18s ago•0 comments

Solving color in Rust with too much color science

https://chaynabors.com/blog/colr
1•chaynabors•1m ago•0 comments

Aligned to Whom? Notes on a Two-Place Word

https://blog.unsupervision.com/aligned-to-whom/
1•shevis•1m ago•0 comments

Is SwiftUI as fast as UIKit in iOS 26?

https://blog.jacobstechtavern.com/p/swiftui-vs-uikit
1•jakey_bakey•2m ago•0 comments

Evaluating Netflix Show Synopses with LLM-as-a-Judge

https://netflixtechblog.com/evaluating-netflix-show-synopses-with-llm-as-a-judge-6269251e6f28
2•criscros•2m ago•0 comments

How to locate almost any photo [video]

https://www.youtube.com/watch?v=oRXqkSQsMUs
1•jaffa2•3m ago•1 comments

Small changes in the non-coding part of the genome have a key role

https://www.nature.com/articles/d41586-026-01120-8
1•resource0x•3m ago•0 comments

Trump deletes post depicting him as Jesus-like figure after backlash

https://www.bbc.com/news/articles/c17v8y0z9z2o
2•only_in_america•3m ago•0 comments

AI Stupid Level: Independent monitoring fluctuations in AI model performance

https://aistupidlevel.info
1•SubiculumCode•4m ago•1 comments

Cyclic Graph Query in SQLite/Python

https://smitty1e.substack.com/p/cyclic-graph-query-in-sqlitepython
1•smitty1e•4m ago•0 comments

Ask HN: What do you think are the best legal ways to slow/stop AI development?

1•AntiDyatlov•5m ago•0 comments

Google engineering appears to have the same AI adoption footprint as John Deere

https://twitter.com/Steve_Yegge/status/2043747998740689171
1•tosh•5m ago•0 comments

Apple's iCloud as the back end for an iOS and Android family safety app

https://www.brykk.app/
1•nharing•6m ago•0 comments

Someone Bought 30 WordPress Plugins and Planted a Backdoor in All of Them

https://anchor.host/someone-bought-30-wordpress-plugins-and-planted-a-backdoor-in-all-of-them/
3•speckx•6m ago•0 comments

Claude Steals Spotlight at HumanX AI Conference

https://www.techbuzz.ai/articles/claude-steals-spotlight-at-humanx-ai-conference
1•Vaslo•8m ago•0 comments

I built a simple API to extract structured data from any document

1•goldberg_dev•9m ago•0 comments

We built our own PDF converter benchmark

https://docs.kapa.ai/research/pdf-converter-benchmark
1•emil_sorensen•10m ago•0 comments

New Orleans's Car-Crash Conspiracy

https://www.newyorker.com/magazine/2026/04/20/the-car-crash-conspiracy
1•Geekette•10m ago•0 comments

Okojo – low allocation managed JavaScript engine for .NET

https://github.com/akeit0/okojo
1•vyrotek•11m ago•0 comments

Show HN: pg_grpc – Call gRPC services directly from PostgreSQL

https://github.com/CSenshi/pg_grpc
2•csenshi•11m ago•1 comments

The Conditionally Open Web

https://www.coryd.dev/posts/2026/the-conditionally-open-web
1•cdrnsf•11m ago•0 comments

Clampd-Guard – Runtime Security for Claude Code and Cursor (PreToolUse Hook)

https://clampd.dev/
1•clampd•12m ago•0 comments

FusionAuth: Developer Oriented Authentication and Authorization Controls

https://intellyx.com/2026/04/13/fusionauth-developer-oriented-authentication-and-authorization-co...
1•mooreds•13m ago•0 comments

What keeps me up at night as an Agent Infra Founder

https://twitter.com/adisingh/status/2043686062451474561
1•adisingh13•13m ago•0 comments

AI chatbots misdiagnose in over 80% of early medical cases, study finds

https://www.ft.com/content/b10002fc-5fff-4e4d-bf64-0502b2d09bb1
2•uxhacker•14m ago•1 comments

The Marketing Skills Directory

https://www.mktgskills.ai/
1•mooreds•15m ago•0 comments

I Spent over $200 Teaching a Model What "Clean" Means

https://acwx.net/blog/i-spent-over-200-teaching-a-model-what-clean-means
1•gaws•17m ago•0 comments

Exposed: The Dirty Little Secret of AI (On a 1979 PDP-11) [video]

https://www.youtube.com/watch?v=OUE3FSIk46g
1•Joel_Mckay•18m ago•1 comments

Gutd: eBPF WireGuard Traffic Obfuscator

https://github.com/sh0rch/gutd
1•fanf2•19m ago•0 comments

Engaging with Everyday Sounds [2022]

https://archive.org/details/cedb58f1-b88f-476c-b7c8-bc5869a2a6ba
2•the-mitr•19m 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•11mo ago

Comments

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