frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

I find journaling indispensable (2019)

https://jon.bo/posts/journaling/
1•dvrp•38s ago•1 comments

Windows 11 24H2 updates failing again with 0x80240069 errors

https://www.bleepingcomputer.com/news/microsoft/windows-11-24h2-updates-failing-again-with-0x80240069-errors/
1•kPwn•1m ago•0 comments

Sick as a Dog

https://privatebank.jpmorgan.com/nam/en/insights/latest-and-featured/eotm/sick-as-a-dog
2•johntfella•8m ago•0 comments

Why operating system package maintainers matter

https://briancallahan.net/blog/20250813.html
2•LorenDB•13m ago•0 comments

Structured binding packs in GCC 16

https://old.reddit.com/r/cpp/comments/1moebfm/structured_binding_packs_in_gcc_16/
2•ibobev•16m ago•0 comments

Show HN: Cromulant

https://github.com/madprops/cromulant/blob/main/screenshots.md
2•Toby1VC•16m ago•0 comments

Reflections on LeetCode and LSAT in my 30s

https://andreagao.com/posts/reflection-standardized-tests/
2•gytrcrt•18m ago•0 comments

China Uses the Cppcc to Conduct "United Front Diplomacy" with North Korea

https://www.38north.org/2025/08/keeping-the-door-open-how-china-uses-the-cppcc-to-conduct-united-front-diplomacy-with-north-korea/
2•EA-3167•19m ago•0 comments

Great Ideas in Theoretical Computer Science

https://ocw.mit.edu/courses/6-080-great-ideas-in-theoretical-computer-science-spring-2008/
2•ibobev•20m ago•0 comments

A poet's long-forgotten daughter created the first algorithm

https://adamgrant.micro.blog/2025/08/13/how-a-poets-longforgotten-daughter.html
2•hidelooktropic•21m ago•3 comments

sshrc: Bring your .bashrc, .vimrc, etc. with you when you SSH

https://github.com/cdown/sshrc
2•thunderbong•24m ago•0 comments

Kubernetes will solve YAML headaches with KYAML

https://thenewstack.io/kubernetes-is-getting-a-better-yaml/
2•thecosmicfrog•24m ago•0 comments

A virtual machine with native AI instructions

3•noreplydev•24m ago•0 comments

Realbotix

https://www.realbotix.com/
2•fcpguru•27m ago•0 comments

Ask HN: What's stopping Guix from building static binaries for various targets?

2•tetris11•28m ago•0 comments

Vibe Coding Awareness Month

https://hellotonic.com/blog/vibe-coding
1•chadmckenna•31m ago•1 comments

Management of IP numbers by peg-DHCP (1998)

https://datatracker.ietf.org/doc/html/rfc2322
1•sjmulder•37m ago•0 comments

Max Read's 'A Literary History of Fake Texts in Apple's Marketing Materials'

https://daringfireball.net/2025/08/max_read_literary_history_fake_apple_texts
1•Bogdanp•40m ago•0 comments

Z-Wave Reborn – Home Assistant Connect ZWA-2

https://www.home-assistant.io/blog/2025/08/13/home-assistant-connect-zwa-2/
2•mike-cardwell•40m ago•0 comments

Is McKinsey losing its crown to AI? [video]

https://www.youtube.com/watch?v=QXAXNcRs7gQ
2•mgh2•42m ago•1 comments

Amazon Ads Multi-Touch Attribution

https://arxiv.org/abs/2508.08209
1•dakial1•44m ago•0 comments

Show HN: Cinematic Rolplay with Wan 2.2

https://www.reveriedr.com
1•amit0365•44m ago•0 comments

Ask HN: Is there an AI that can read code aloud and explain it?

2•djfobbz•45m ago•0 comments

Evals as Code: CI for LLMs with Dagger

https://dagger.io/blog/evals-as-code
2•shad42•46m ago•1 comments

Ask HN: Is https://web.whatsapp.com/ loading for you atm?

2•gjvc•47m ago•2 comments

A Good Find

https://justinjackson.ca/good-find
1•mooreds•48m ago•0 comments

If You Could Fix One Thing About AI Search, What Would It Be?

1•zyruh•49m ago•2 comments

Eca: Editor Code Assistant – AI pair programming capabilities agnostic of editor

https://github.com/editor-code-assistant/eca
19•simonpure•51m ago•0 comments

Show HN: Deploy Any Web App Directly from Claude Code

https://disco.cloud/blog/deploy-any-web-app-directly-from-claude-code/
1•gregsadetsky•53m ago•0 comments

The Tulpa in Your Pocket

https://default.blog/p/the-tulpa-in-your-pocket
2•exolymph•53m ago•0 comments
Open in hackernews

Show HN: Floaty – Multithreaded Fluid and Soft Body Simulation for Browsers

https://floaty-fluid.netlify.app/
1•matsuoka-601•14h ago
Hi, I implemented a real-time physics simulation optimized with multithreading. The simulation runs on your browser, so check it out if you're interested!

You can drag the soft bodies, and change the simulation boundary size by resizing the window.

Demo: https://floaty-fluid.netlify.app/

Repo: https://github.com/matsuoka-601/Floaty

I'll briefly explain how it works under the hood.

For simulating fluid and soft bodies, a method called Position Based Dynamics (PBD) is used. This method is often chosen when real-time performance is required. Fluid and soft bodies interact with each other, and buoyancy is simulated based on a paper "Unified Particle Physics for Real-Time Applications".

The most time consuming part of the solver is optimized with wasm-bindgen-rayon. Since PBD is relatively easy to parallelize, multithreading greatly improves the performance of the solver. Thanks to this, the simulation runs smoothly on relatively weak devices I guess.