frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

A TDD and LLM-written DOS, with docs

https://github.com/lambadalambda/laindos
1•lainsoykaf•53s ago•0 comments

Review of Synthetic Users Finds Synthetic Users Don't Work

https://www.thevoiceofuser.com/the-largest-review-of-synthetic-participants-ever-conducted-found-...
1•cdrnsf•1m ago•0 comments

Wasi: WebGPU – A Proposed WebAssembly System Interface API

https://github.com/WebAssembly/wasi-webgpu
1•giancarlostoro•3m ago•0 comments

Show HN: StackScope – I crawled over 40k indie launches to see what they ship

https://stackscope.dev/
1•datafreak_•3m ago•0 comments

HN Comment Golf

1•dijksterhuis•4m ago•1 comments

Fluxor: A zero-dependency PHP framework with file-based routing

https://github.com/lizzyman04/fluxor
1•lizzyman04•5m ago•0 comments

Elon Musk Is Colonizing Earth

https://www.nytimes.com/2026/06/12/opinion/elon-musk-spacex-starbase-texas.html
1•dieselgate•7m ago•0 comments

Anthropic's Fable is the most locked-down public model we've ever seen

https://www.understandingai.org/p/anthropics-fable-is-the-most-locked
2•speckx•8m ago•0 comments

The Roblox Problem

https://bxwrites.substack.com/p/the-roblox-problem
1•bushwart•11m ago•0 comments

Swamp Is Interesting Because It Doesn't Trust AI

https://ravegraph.beehiiv.com/p/swamp-is-interesting-because-it-doesn-t-trust-ai
1•nickstinemates•11m ago•0 comments

Adding ext3/4 compliant journaling to the 30-year-old GNU Hurd microkernel

https://github.com/mnikic/hurd-journaling
1•backend_dev82•13m ago•1 comments

Show HN: World Cup bracket game with no back end – brackets live in the URL

https://golazo.giitaayan.com
1•fellowplayer•13m ago•0 comments

Show HN: A Terrible Way to Consume Hacker News – AI Slop

https://deadinternet.tech/feed
2•keegandonley•13m ago•0 comments

500M Subscriber Livestream [video]

https://www.youtube.com/watch?v=A9TikdsD5eg
1•Cider9986•13m ago•0 comments

CRISPR Tech Selectively Shreds Cancer Cells, Including "Undruggable" Cancers

https://innovativegenomics.org/news/crispr-technique-selectively-shreds-cancer-cells/
1•gmays•14m ago•0 comments

Commits

https://shub.club/writings/2026/june/commits/
1•forthwall•14m ago•0 comments

American Ebola Unit Sparks Fury, Protests and a Political Crisis in Kenya

https://www.nytimes.com/2026/06/10/world/africa/ebola-kenya-us-protests.html
1•ViktorRay•15m ago•0 comments

Tesla, SpaceX, and xAI are launching the most epic chip-building effort

https://terafab.ai/
2•binyu•16m ago•0 comments

Enshittification of Policing

https://www.christopherburg.com/blog/enshittification-of-policing/
6•speckx•16m ago•0 comments

From ML engineer to AI-native: reskilling toward an edge

https://shrikar.com/writing/ml-engineer-to-ai-native-reskill
1•shrikar•18m ago•1 comments

Why birth order can shape a kid's future and what parents can do about it

https://www.washingtonpost.com/climate-environment/2026/06/09/why-birth-order-can-shape-kid-futur...
1•gmays•19m ago•0 comments

SpaceX makes largest ever stock market debut at $1.77T valuation

https://www.theguardian.com/science/2026/jun/12/spacex-stock-price-ipo-spcx
2•thomascountz•19m ago•0 comments

Apple Cut Frequencies in WWDC Keynote to Prevent Siri Activations

https://www.macrumors.com/2026/06/12/apple-cut-frequencies-to-prevent-siri-activations/
3•dabinat•20m ago•0 comments

Show HN: Script to bulk delete Claude chats from the web UI

https://github.com/MatteoLeonesi/bulk-delete-claude-chat
2•ML0037•21m ago•0 comments

Flock Leaked Cops' License Plate Searches via DuckDuckGo, Bing

https://www.404media.co/flock-leaked-cops-license-plate-searches-via-duckduckgo-bing/
3•Brajeshwar•22m ago•0 comments

Amazon EC2 M9g and M9gd instances powered by new AWS Graviton5 processors

https://aws.amazon.com/blogs/aws/now-available-amazon-ec2-m9g-and-m9gd-instances-powered-by-new-a...
3•mariuz•23m ago•0 comments

Claude dashboard – local web interface

https://github.com/jpatel3/claude-dashboard
2•jpatel3•25m ago•0 comments

Reverse Engineering American Healthcare to Create a Custom Hybrid Stack

https://ideasthatgive.substack.com/p/one-product-many-pieces
2•opsdisk•27m ago•1 comments

Invisible College

https://en.wikipedia.org/wiki/Invisible_College
2•the-mitr•27m ago•0 comments

Show HN: Apodex-1.0 – a deep-research agent team that verifies its own evidence

https://dr.miromind.ai
1•wuqiaocauc•27m ago•0 comments
Open in hackernews

WASI 0.3.0 Released

https://github.com/WebAssembly/WASI/releases/tag/v0.3.0
105•mavdol04•1h ago

Comments

shevy-java•56m ago
Will WebAssembly ever achieve a real breakthrough? It's been almost 10 years since it came around. HTML, CSS and JavaScript were a breakthrough back in the days. WebAssembly still is not right now; only very few folks or companies use it.
grufkork•47m ago
I mean, it’s another tool. It doesn’t really make an entirely new kind of web app possible, but it’s useful for some specific compute-heavy tasks (with limitations like JS<->WASM being slow). It’s also useful for running not-JS in the browser; I’m building a lighting console with a web UI distributed over multiple devices, and being able to use the exact same structs/representation and algorithms on server and client is pretty neat. It’s like Node, but in reverse! But none of this is cause for paradigm shift, so I don’t think seeing a ”breakthrough” really is relevant.
__s•44m ago
It has, but its usually just an optimization, so goes unnoticed
CGamesPlay•43m ago
I think its killer use case is actually embedded in non-web places. Tree Sitter parsers require arbitrary programs to be able to parse arbitrary languages. WebAssembly is a natural way to achieve that: write your parser in any language, compile to WebAssembly, use that result in any supported editor. You get sandboxed execution and arbitrary compute.

It has to compete with more domain-adapted use cases though. Does WASM make more sense than eBPF for packet filtering? It doesn't seem to make more sense than JavaScript for making websites. Maybe it makes more sense for deploying edge services (which IIUC is the main use case for WASI).

wongarsu•26m ago
Plugin architectures are a niche where WASM really shines. Before WASM most plugins were either high performance (loading dynamic libraries) or sandboxed and safe for untrusted plugins (LUA etc). WASM allows you to have your cake and eat it to. You pay with a bit of complexity, but it's in a great and somewhat unique place in the tradeoff space
modulovalue•43m ago
It's already a breakthrough in my opinion.

Many things are possible that weren't possible before. For example, I was able to compile the Dart VM (the compiler + analyzer + VM) to wasm and run it on the web: https://github.com/modulovalue/dart-live it supports hot reload and many other cool features. It runs essentially everywhere and it's a very bare proof of concept for a fully integrated programming development system.

The problem is that things just take time if you have to coordinate across a bunch of languages and teams while trying to make everyone happy.

To give you a sense of what else is coming: the wasm ecosystem is moving towards supporting a component model. Eventually you'll be able to import any piece of code from any programming language that supports it. Wasm interface types will make that possible.

Rochus•3m ago
> I was able to compile the Dart VM (the compiler + analyzer + VM) to wasm and run it on the web

Is this really a representative use-case of WASM/WASI? Would'n it be much better to compile Dart to WASM (the Dart SDK even supports "dart compile wasm")?

OtomotO•43m ago
WASI stands for WebAssembly System Interface.

It has little to do with the webassembly in the browser.

I use it to extend a native application, for example. No browser in sight at all.

artemonster•42m ago
for me its undebuggability.

-"hey, look at our C Rust FORTRAN to WASM translator, blahblah"

-"uhm, cool, how do I debug it?"

-"yeah...about that...you cant!"

fsloth•24m ago
This! The only way to get to a stable system at least with c/c++ source, where you can hunt bugs, is to have a fairly large unit test coverage. When something fails - add that as test case; run ctest - pray that this is discoverable with tests.

So wasm is a really strange compilation target for systems programming languages.

I mean there _are_ ways to debug it in a browser but they sort of suck.

tdhz77•23m ago
Why can’t you?
lioeters•37m ago
You said the exact same thing a couple days ago. You don't know what you don't know.

WebAssembly has been a great success thanks to its excellent initial design.

kettlecorn•37m ago
WebAssembly is used in all sorts of ways.

It's used heavily by major web apps like Figma, it's used to run non-Javascript languages on Cloudflare Workers, many compute-heavy web libraries rely on Wasm modules, many web games rely on Wasm, it's used for safe plugins in some native apps like Microsoft Flight Simulator, amongst other use cases.

callahad•31m ago
It's a silent technology, but I'd argue it has broken through in that most of us already use it daily without knowing. Figma, Google Sheets, Disney+, Prime Video, and much more all have WebAssembly somewhere in their stack.
Dwedit•7m ago
WebAssembly doesn't beat JavaScript in performance, and that is embarrassing.
b33j0r•36m ago
Love/hate with this one. How was I supposed to follow this? I tried, and few things were publicly visible for nearly two years. I last checked in march and it looked like no progress had been made.

That makes me very suspicious of wasiv3. Funny enough, I already implemented a bunch of the promises (pun not intended) and think that freestanding wasm with custom integrations is the more likely future.

The promise of wasi components has not been fulfilled. The market wants to hotload and link artifacts dynamically. The wasi project requires insider wizardry to use it that way: the offering has been statically linking components before you ship. Defeating 99% of the use cases.

I do not like that this has been worked on in the shadows.

airstrike•11m ago
[delayed]
hectaman•3m ago
I don't think it's fair to say this work has happened in the shadows. I work on CNCF wasmCloud, and I know how hard we try to make this content available.

- Many standing meetings organized around SIGs, all on the public community calendar: https://calendar.google.com/calendar/u/0/newembed?src=events...

- A dedicated Zulip: https://bytecodealliance.zulipchat.com/

- Conferences organized around exactly these topics: Wasm Day, WasmCon, Wasm I/O, and the Bytecode Alliance Plumbers Summit

- CNCF projects: wasmCloud, Spin

- Blogs, many with recordings, summaries, and transcripts: https://bytecodealliance.org/articles/the-road-to-component-..., https://wasmcloud.com/community/, https://spinframework.dev/blog/index

If you want the architectural direction straight from the source, Luke Wagner's keynotes are the best place to start:

- "What is a Component (and Why)?" (WasmCon 2023): https://www.youtube.com/watch?v=tAACYA1Mwv4

- "The Path to Components": https://www.youtube.com/watch?v=phodPLY8zNE

- "Towards a Component Model 1.0" (Wasm I/O 2026): https://www.youtube.com/watch?v=qq0Auw01tH8

I mean this, though - what else would you like to see to try and make the content and process more accessible? Are there communities that are doing this really well that we could use for inspiration?

lifty•35m ago
If you have used WASI in the past, can you mention your use case? Very curious if you found it to give you an edge compared to other sandboxing like containers or VMs.
OtomotO•32m ago
extending software with a plugin system
tdhz77•25m ago
Edge rural farm systems
utopiah•16m ago
I tinkered with https://extism.org and basically the use case is that they suggest, namely you can extend software in another programming language but without having to setup a container or VMs on the client. They "just" run the code in the browser and it can be JavaScript, sure, but can also be Python, Go, whatever.

It's quite specific though as I'm working on support programming in the browser.

If you are not deep into letting a very specific kind of user extend, it's probably overkill.

Even then it's a very VERY niche thing because it has to be simultaneously :

- someone who is opinionated about a programming language (either because they know too much, i.e. expert, or not enough, i.e beginner)

- is dedicated enough to want to try to build something on top of an existing system

- does not want to bother with solutions you mentioned

airstrike•12m ago
[delayed]
simonw•34m ago
If you don't want to download the .tar.gz I think you can browse the content for this release (.wit interface files) here on GitHub: https://github.com/WebAssembly/WASI/tree/v0.3.0/proposals
garganzol•24m ago
Wrong direction. WASI should be simple and stable. Initially, it was revolving around a simple Unix-like API model and it was close to perfect. Now, there is an opinionated component model which is an unneeded overcomplication that should have never been considered as part of WebAssembly spec IMHO.

A real component model is a separate development and cannot be blindly tied to a particular ecosystem. Otherwise, its main purpose of providing easy interoperability between different ecosystems is totally lost.

I do not know why WebAssembly committee thinks that shoving-in CORBA-like monstrosity is even an acceptable idea. Let's keep WebAssembly lean and fast! Anything extra can (and should) be implemented by other technologies.

jedisct1•3m ago
The best usage example of WASI I know of is the Zig compiler: https://ziglang.org/news/goodbye-cpp/