frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Muse Spark 1.3

https://developer.meta.com/ai/models/muse-spark/
93•bvaldivielso•45m ago•34 comments

Gemini 3.8 Flash and 3.8 Flash Cyber

https://blog.google/innovation-and-ai/models-and-research/gemini-models/3-8-flash-and-3-8-flash-c...
648•bratao•5h ago•386 comments

Google avoids a breakup of its ad tech business

https://www.nytimes.com/2026/09/02/technology/google-ad-tech-remedies.html
78•donohoe•5h ago•25 comments

The Post-AI Internet Doesn't Look Great

https://www.jordangoodman.xyz/the-post-ai-internet-doesnt-look-great/
38•speckx•39m ago•21 comments

Can I opt out of my input or output data being used for training?

https://help.mistral.ai/en/articles/455207-can-i-opt-out-of-my-input-or-output-data-being-used-fo...
318•teekert•7h ago•136 comments

Wendell Berry has died

https://www.nytimes.com/2026/08/31/us/wendell-berry-dead.html
53•Curiositry•1d ago•28 comments

Biggest dark matter detector spots a single weird particle

https://www.science.org/content/article/world-s-biggest-dark-matter-detector-spots-single-weird-p...
206•randycupertino•6h ago•56 comments

Introducing Muse Spark 1.3

https://research.meta.ai/blog/introducing-muse-spark-1-3
33•scrlk•54m ago•8 comments

Embedded Rust RTOS vs. C RTOS

https://tweedegolf.nl/en/blog/65/async-rust-vs-rtos-showdown/
21•kooi•1h ago•3 comments

Exit the Cave

https://turtlespace.blog/p/exit-the-cave
156•akkartik•6h ago•39 comments

Aging Brains Blend Memories Together Instead of Just Forgetting Them

https://studyfinds.com/aging-brains-blend-memories-together-instead-of-forgetting-them-study-finds/
154•mdp2021•7h ago•65 comments

The Qantas A380 engine disintegration in 2010

https://admiralcloudberg.medium.com/a-matter-of-millimeters-the-story-of-qantas-flight-32-bdaa62d...
17•gumby•1h ago•3 comments

I wanna live an NPC life

https://signalundefied.bearblog.dev/i-wanna-live-an-npc-life/
4•conferza•27m ago•0 comments

Commodore 64 released September 1, 1982

https://dfarq.homeip.net/commodore-64-released-september-1-1982/
293•giuliomagnifico•11h ago•149 comments

A Selection of Los Alamos Rolodex Business Cards

https://clui.org/collections/los-alamos-business-cards/selection-cards
112•1970-01-01•2d ago•24 comments

A practical guide to running 8x RTX PRO 6000's

https://www.gpupartner.com/blog/a-practical-guide-to-running-8x-rtx-pro-6000s
7•Retell15•2d ago•0 comments

Poisson Disk Sampling

https://stripeacross.com/posts/poisson-disk-sampling/
101•vismit2000•6h ago•15 comments

Three sites made 215,128 “best software” pages for AI. Perplexity cites them

https://trellner.com/reports/manufactured-sources-behind-ai-recommendations/
244•jakobgreenfeld•6h ago•111 comments

SteamdDB Joins Nexus Mods

https://www.nexusmods.com/news/15597
79•HelloUsername•4h ago•47 comments

Paint.net 5.2 alpha now runs on Linux

https://forums.paint.net/topic/134562-paintnet-52-alpha-build-9739/
130•judah•3h ago•112 comments

We could save petabytes of cache storage with Zstandard and Pingora

https://blog.cloudflare.com/cache-transcoding/
30•torutofu•1d ago•7 comments

Making the Internet Boring

https://cemrehancavdar.com/2026/08/30/making-the-internet-boring/
34•zdw•2d ago•17 comments

A note on subscription prices from LWN

https://lwn.net/Articles/1090585/
645•rwky•7h ago•127 comments

WebLLM: high-performance in-browser LLM inference engine

https://github.com/mlc-ai/web-llm
64•saikatsg•6h ago•14 comments

Using Cloudflare Workers and reCAPTCHA v3 for a Static Site Contact Form

https://nooshu.com/blog/2026/03/09/using-cloudflare-workers-and-recaptcha-v3-for-a-static-site-co...
7•speckx•1h ago•0 comments

AI Agents and the Refactoring That Never Happens

https://www.rosenfeld.page/articles/programming/2026_09_02_ai_agents_and_the_refactoring_that_nev...
6•rosenfeld•28m ago•4 comments

Fable 5.1 World Modeling

https://github.com/PhiloLabs/fable51-worlds
4•surreal_•31m ago•0 comments

Discontinuation of third level domain registrations for the .name TLD [pdf]

https://itp.cdn.icann.org/en/files/consensus-policies/rsep-2026013-name-request-15-04-2026-en.pdf
41•greyface-•1d ago•30 comments

Telli (YC F24) is hiring engineers and designers [Berlin, on-site]

https://careers.telli.com/
1•sebselassie•11h ago

I Don't Have a Smartphone

https://ploum.net/2026-09-02-i_dont_have_a_smartphone.html
145•speckx•2h ago•146 comments
Open in hackernews

Embedded Rust RTOS vs. C RTOS

https://tweedegolf.nl/en/blog/65/async-rust-vs-rtos-showdown/
21•kooi•1h ago

Comments

vatsachak•30m ago
Those damn compilers are going to take our jobs!!!
Animats•10m ago
That's under very light CPU load. So an async approach, with no preemption, can work. If there's any significant compute going on, it won't work as well.

A useful number to measure on a scope is worst case interrupt latency. This is what matters if there's a hard real-time constraint. They measured standard deviation, but not worst case. The usual test setup is that an input signal (typically a square wave) goes to an input pin, interrupt happens if interrupts not prevented, task starts, task turns on an output pin. You watch input to output delay on a scope and look for outliers.

If you're running entirely run to completion, the outliers are determined by the longest compute task. This is a problem if there's a compute task.

This is historically where QNX shines. Interrupt is processed and schedules a thread. About all that happens at interrupt level is thread activation. The thread turns on the output pin. You can look on a scope for scheduling outliers. The best case latency is higher than doing the work at interrupt level, but the worst case latency is constant, even if lower priority threads are compute bound.

This is the difference between real time and "near real time" scheduling.

aw1621107•10m ago
(2022)