frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

AI agent runs amok in Fedora and elsewhere

https://lwn.net/SubscriberLink/1077035/c7e7c14fbd60fae9/
284•tanelpoder•5h ago•81 comments

Cybersecurity researchers aren't happy about the guardrails on Anthropic's Fable

https://techcrunch.com/2026/06/10/cybersecurity-researchers-arent-happy-about-the-guardrails-on-a...
349•speckx•13h ago•306 comments

πFS

https://github.com/philipl/pifs
642•helterskelter•11h ago•146 comments

The Road to the WASM Component Model 1.0

https://bytecodealliance.org/articles/the-road-to-component-model-1-0
46•emschwartz•2d ago•16 comments

Anthropic requires 30 day data retention for Fable and Mythos

https://support.claude.com/en/articles/15425996-data-retention-practices-for-mythos-class-models
314•lebovic•1d ago•154 comments

Sequoyah’s syllabary created a written language for the Cherokee

https://www.smithsonianmag.com/innovation/man-created-written-language-cherokee-did-efficiently-e...
136•grahambargeron•7h ago•87 comments

OpenAI mulls slashing prices as it competes with Anthropic for users

https://www.cnbc.com/2026/06/11/openai-mulls-slashing-prices-ahead-of-competition-from-anthropic-...
30•agentifysh•44m ago•21 comments

Vacuum-Form Signage

https://bethmathews.substack.com/p/the-history-behind-the-signs-lighting
48•benbreen•1d ago•5 comments

I'm Eric Ries, author of "The Lean Startup" and new book "Incorruptible" – AMA

602•eries•15h ago•462 comments

CSS: Unavoidable Bad Parts

https://matklad.github.io/2026/06/04/css-unavoidable-bad-parts.html
40•surprisetalk•1d ago•5 comments

Klondike Solitaire game for curses in 5k of C

https://nanochess.org/klondike_in_c.html
56•nanochess•2d ago•4 comments

Reverse engineering the Creative Katana soundbar to control it from Linux

https://blog.nns.ee/2026/02/20/katana-v2x-re/
11•theanonymousone•3d ago•1 comments

How JPL keeps the 13-year-old Curiosity rover doing science

https://spectrum.ieee.org/curiosity-rover-jpl-mars-science
208•pseudolus•12h ago•53 comments

PgDog is funded and coming to a database near you

https://pgdog.dev/blog/our-funding-announcement
430•levkk•15h ago•210 comments

GeoLibre 1.0

https://geolibre.app/
208•jonbaer•12h ago•14 comments

L'Affaire Siloxane

https://mceglowski.substack.com/p/laffaire-siloxane
190•idlewords•2d ago•29 comments

Show HN: Extend UI – open-source UI kit for modern document apps

https://www.extend.ai/ui
185•kbyatnal•13h ago•43 comments

What is it like to be a bat? (1974) [pdf]

https://www.sas.upenn.edu/~cavitch/pdf-library/Nagel_Bat.pdf
78•shadow28•9h ago•79 comments

Who's the smartest corvid?

https://thetyee.ca/Culture/2026/06/05/Whos-the-Smartest-Corvid/
90•NaOH•1d ago•80 comments

Are insecure code completions in PyCharm a vulnerability?

https://sethmlarson.dev/are-insecure-code-completions-a-vulnerability
20•12_throw_away•4h ago•3 comments

Raspberry Pi 5 – 16GB RAM

https://www.adafruit.com/product/6125?src=raspberrypi
220•akman•9h ago•232 comments

Building an HTML-first site doubled our users overnight

https://mohkohn.co.uk/writing/html-first/
1060•edent•17h ago•476 comments

World Capitals Voronoi

https://www.jasondavies.com/maps/voronoi/capitals/
59•vincnetas•2d ago•27 comments

Show HN: HelixDB – A graph database built on object storage

https://github.com/HelixDB/helix-db/tree/main
106•GeorgeCurtis•14h ago•33 comments

Deficient executive control in transformer attention

https://academic.oup.com/pnasnexus/article/5/6/pgag149/8698838
30•derbOac•6h ago•10 comments

Unix GC Remastered

https://mohandacherir.github.io/Qdiv7/posts/unix_new_gc/
29•mananaysiempre•7h ago•2 comments

Apache Burr: Build reliable AI agents and applications

https://burr.apache.org/
192•anhldbk•15h ago•95 comments

All 9,300 Japanese train station, animated by the year it opened (1872–2026)

https://jivx.com/eki
221•momentmaker•17h ago•74 comments

Claude Desktop spawns 1.8 GB Hyper-V VM on every launch, even for chat-only use

https://github.com/anthropics/claude-code/issues/29045
389•tonyrice•12h ago•271 comments

Notes on DeepSeek

169•vinhnx•15h ago•103 comments
Open in hackernews

The Road to the WASM Component Model 1.0

https://bytecodealliance.org/articles/the-road-to-component-model-1-0
46•emschwartz•2d ago

Comments

simonw•1h ago
I'm unreasonably excited about WASI. WASI is the thing which takes WebAssembly from a tool for running stuff in a browser to a tool that can run entire portable sandboxed applications on a computer - with controlled filesystem and network access.

I don't ever want to run untrusted code from the internet outside of a sandbox ever again. If WASI lives up to its full potential I won't have to - we'll have a robust, cross-platform sandboxing solution for running real applications.

Panzerschrek•26m ago
> I don't ever want to run untrusted code from the internet outside of a sandbox ever again

WASM is great, but I think it's a wrong approach for sandboxing problem. It's technically possible to sandbox native applications (compiled into target machine code) using OS-builtin mechanisms, but it's not done for compatibility reasons, because this is the way things were done last 50 years or so.

tancop•11m ago
sandboxing native apps just gives you security. with wasm you also get a single portable binary that can run on x86 windows, arm64 linux and in your browser with zero modification. you dont need to write platform specific code or use third party frameworks.
wyager•17m ago
I'm curious if people have a good story for why WASI will succeed where Java failed
simonw•3m ago
My main one is that WASI has benefitted from an additional 31 years of accumulated industry-wide experience compared to when Java was first released.
fyrn_•1h ago
Please please please bring it to the browser. I'm so done with the terrible ergonomics of everything at the was bounary having to pretend it's JavaScript
enos_feedler•57m ago
It works in the browser already: https://github.com/bytecodealliance/jco
jauntywundrkind•36m ago
It works in the browser already, by bundling another browser runtime engine into wasm. You need a whole fork of Mozilla's SpiderMonkey engine, compiled to wasm, running in whatever browser you have, to run wasm components today.

I confess I was quite frustrated at first when browsers all said no to wasi / wasm components. But honestly, it was the right call. It's taken so long to make wasm components happen, to get them far enough along to start really consider implementing. I can accept that as just the reality of what it takes for a small team to do such amazing work. I am so thankful for the folks who have kept this going, kept advancing.

But it's time now. I hope browsers can help get us set up for 1.0, and I hope they're moving quickly towards being ready to implement!

thefounder•1h ago
It’s great we are past the “wasm is not replacing JavaScript” phase. Or “you don’t need DOM for wasm . That’s what JavaScript is for”
shevy-java•1h ago
WASM first appeared in 2017.

It still hasn't really reached a breakthrough.

Billions use HTML+CSS+JavaScript. Who really uses WASM? There are of course users, but very, very few in absolute numbers. Many projects are not web-based really. For Autodesk Fusion, as one example for many, I have some mega-slow application that takes forever to work with in some cases on my laptop (it is not the fastest laptop, but I recently tested this on a faster desktop computer with 32GB RAM and it is still slow to no ends; using it all WASM based would be even slower I bet. That's not winning anyone over ...).

esafak•1h ago
WASM made Figma.
aatd86•1h ago
WASM is super useful for FFI in some env
h4ch1•1h ago
I wrote an Unreal file parser in C# and use it in our in-house web based DAM. It was much more ergonomic and performant than writing it in Javascript.
simonw•33m ago
According to https://chromestatus.com/metrics/feature/timeline/popularity... WebAssembly runs on about 6.11% of Chrome page loads, up from 3.37% in January 2024.
wyager•10m ago
Very exited about WASM/WCM as a portable format for capability-secure applications.

I had a spec file sitting around for an OS project idea I had, where the kernel would just be the WASM compiler + a few small shim drivers, and everything else (including e.g. PCIe device drivers) would be WASM modules with WIT interface specs. I handed the spec off to Fable and it seems to have made a working proof-of-concept. Has a maximally-WASM OS running on browser/QEMU/Orange Pi. https://eo9.org

rohitsriram•1m ago
The microkernel analogy for the Component Model vs WASI is actually a really useful mental model that I hadn't seen framed that way before. Component Model as the always-present kernel, WASI as optional OS services on top. That framing makes it obvious why browser implementation of the Component Model is tractable even though browsers have strong opinions about I/O, and why 1.0 for the Component Model and WASI are separate milestones. The lazy ABI change is also underrated, zero-copy forwarding between calls is going to matter a lot for the use cases where WASM actually competes with native.