frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Valve releases Steam Controller CAD files under Creative Commons license

https://www.digitalfoundry.net/news/2026/05/valve-releases-steam-controller-cad-files-under-creat...
734•haunter•5h ago•238 comments

Appearing productive in the workplace

https://nooneshappy.com/article/appearing-productive-in-the-workplace/
403•diebillionaires•4h ago•143 comments

Ted Turner has died

https://www.cnn.com/2026/05/06/us/ted-turner-death
161•pseudolus•6h ago•127 comments

Google Cloud fraud defense, the next evolution of reCAPTCHA

https://cloud.google.com/blog/products/identity-security/introducing-google-cloud-fraud-defense-t...
84•unforgivenpasta•3h ago•73 comments

A Theory of Deep Learning

https://elonlit.com/scrivings/a-theory-of-deep-learning/
68•elonlit•1d ago•17 comments

From Supabase to Clerk to Better Auth

https://blog.val.town/better-auth
124•stevekrouse•3h ago•66 comments

The bottleneck was never the code

https://www.thetypicalset.com/blog/thoughts-on-coding-agents
427•Anon84•2d ago•284 comments

Learning the Integral of a Diffusion Model

https://sander.ai/2026/05/06/flow-maps.html
27•benanne•2h ago•5 comments

Inkscape 1.4.4

https://inkscape.org/doc/release_notes/1.4.4/Inkscape_1.4.4.html
89•s1291•1h ago•15 comments

Show HN: I built an open-source email builder, alternative to Beefree/Unlayer

https://play.templatical.com
62•oahmadov•4h ago•18 comments

MIT’s virtual violin offers luthiers a new design tool

https://arstechnica.com/science/2026/05/mits-virtual-violin-offers-luthiers-a-new-design-tool/
4•smushy•57m ago•0 comments

CARA 2.0 – “I Built a Better Robot Dog”

https://www.aaedmusa.com/projects/cara2
430•hakonjdjohnsen•2d ago•51 comments

Life During Class Wartime

https://www.tbray.org/ongoing/When/202x/2026/05/03/Life-During-Class-Wartime
77•AndrewDucker•4h ago•37 comments

Setting up a Sun Ray server on OpenIndiana Hipster 2025.10

https://catstret.ch/202605/srss-hipster202510/
113•jandeboevrie•10h ago•36 comments

McDonald's is a premium product now (2024)

https://greyenlightenment.com/2024/07/31/mcdonalds-is-a-premium-product-now/
27•paulpauper•1h ago•38 comments

Multi-stroke text effect in CSS

https://yuanchuan.dev/multi-stroke-text-effect-in-css
301•cheeaun•16h ago•39 comments

Knitting bullshit

https://katedaviesdesigns.com/2026/04/29/knitting-bullshit/
393•ColinEberhardt•15h ago•163 comments

Google tools for customizing searches

https://cardcatalogforlife.substack.com/p/google-has-a-secret-reference-desk
57•maxutility•16h ago•16 comments

Reverse-engineering the 1998 Ultima Online demo server

https://draxinar.github.io/articles/2026-05-01-uodemo-reverse-engineering.html
214•notsentient•14h ago•54 comments

Going Full Time on Open Source

https://jdx.dev/posts/2026-04-17-going-full-time-on-open-source/
109•thunderbong•3h ago•14 comments

Proton Meet

https://proton.me/business/blog/introducing-proton-meet
73•Einenlum•2h ago•25 comments

Batteries Not Included, or Required, for These Smart Home Sensors

https://coe.gatech.edu/news/2026/04/batteries-not-included-or-required-these-smart-home-sensors
177•gnabgib•3d ago•74 comments

245TB Micron 6600 ION Data Center SSD Now Shipping

https://investors.micron.com/news-releases/news-release-details/industry-leading-245tb-micron-660...
236•neilfrndes•17h ago•173 comments

Coverage Cat (YC S22) Seeks Fractional Engineer to Build AI Growth Toolkit

https://www.coveragecat.com/careers/engineering/fractional-growth-engineer
1•botacode•8h ago

YouTube, your RSS feeds are broken

https://openrss.org/blog/youtube-your-feeds-are-broken
312•veeti•19h ago•103 comments

Wolfenstein 3D for Gameboy Color on custom cartridge (2016)

https://www.happydaze.se/wolf/
121•ksymph•2d ago•26 comments

Agents can now create Cloudflare accounts, buy domains, and deploy

https://blog.cloudflare.com/agents-stripe-projects/
607•rolph•17h ago•349 comments

BYD overtakes Tesla and Kia as the best-selling EV brand in key overseas markets

https://electrek.co/2026/05/05/byd-overtakes-tesla-kia-best-selling-ev-brand-key-overseas-markets/
184•doener•2h ago•258 comments

SoundOff: Low-Cost Passive Ultrasound Tags

https://yibo-fu.com/SoundOff-Low-cost-Passive-Ultrasound-Tags-for-Non-invasive-and-Non
11•jonbaer•3h ago•1 comments

The Thinking Plant's Man (2025)

https://www.sciencehistory.org/stories/magazine/the-thinking-plants-man/
51•benbreen•2d ago•13 comments
Open in hackernews

Learning the Integral of a Diffusion Model

https://sander.ai/2026/05/06/flow-maps.html
27•benanne•2h ago

Comments

darshanmakwana•1h ago
This is way outside of my expertise, can anyone given a TL;DR or ai;dr?
refulgentis•1h ago
Why not put it into an AI yourself? :) I'd rather we avoided a precedent of asking for it and N people replying with their own favorite AI version. The comments section would end up a ghost town.

Extreme TL;DR: Diffusion models are like getting f(x) by calculating and summing f'(0), f'(1)...f'(x). Flow models are like just calculating f(x).

_doctor_love•53m ago
HN is a place where it's legitimate to ask those kinds of questions. The site has a high concentration of advanced practitioners -- in my experience it is not uncommon for the creator of a technology or deep expert to reply. John Carmack has an account on the site for instance. :)
mxwsn•52m ago
Diffusion and flow matching models generate samples by iterative denoising. Iterative denoising means passing input to the neural network, running a forward pass, and taking the output back as input and rerunning the neural network. Often you do this 100 times, which is slow and expensive.

Flow maps / consistency models / shortcut models instead try to learn to compress this iterative work into 1 forward pass. This makes inference 100x faster as you'd only need to run the neural net forward pass once. Beyond speeding up inference, there are other advanced benefits to this, such as improved ability to perform inference-time steering.

Mathematically, learning a flow map corresponds to learning to solve an ordinary differential equation, i.e., learning the time integral of the velocity field. This mathematical foundation provides the basis for various training objectives for learning flow maps, which involve self-referential identities or identities such as the transport equation, which are discussed in the blog post.

Hope that helps! I'm an ML researcher currently researching flow maps.

anvuong•51m ago
This provides a high-level overview of diffusion models, you know, the models behind Stable Diffusion, Gemini banana, etc.

I haven't read it carefully but I think it's pretty comprehensive. From SDE to Flow matching formulation, and different perspective of constructing the flow maps, i.e. x-formulation or v-formulation. It also deals with distillation and consistency, which is used to fast sampling.

Overall, it's a good read if you are new to the field.