frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

QBittorrent breaks out of sandbox to commit crimes

https://beige.party/@intransitivelie/117057396732763183
884•mraniki•5h ago•165 comments

Following legal advice, the Nitter project will continue

https://github.com/zedeus/nitter
24•Cider9986•22m ago•1 comments

Your intellectual fly is open (2025)

https://bcantrill.dtrace.org/2025/12/05/your-intellectual-fly-is-open/
330•cyb0rg0•6h ago•210 comments

NetBSD 9.5 released and EOL for NetBSD-9

https://blog.netbsd.org/tnf/entry/netbsd_9_5_released_and
54•jaypatelani•2h ago•2 comments

An Alien Mind

https://openai.com/index/an-alien-mind/
98•tosh•1h ago•57 comments

We monitor internal coding agents for misalignment

https://openai.com/index/how-we-monitor-internal-coding-agents-misalignment/
30•lukaspetersson•1h ago•20 comments

Isar Aerospace reaches orbit and deploys payloads on second flight

https://isaraerospace.com/press/history-for-european-spaceflight-isar-aerospace-reaches-orbit-and...
452•mpweiher•10h ago•134 comments

Opalite Health (YC W26) Is Hiring – Founding GTM

https://www.ycombinator.com/companies/opalite-health/jobs/bNedVAD-founding-gtm
1•ckuo9•1h ago

Research carried out using NetBSD

https://www.netbsd.org/gallery/research.html
33•Bluestein•2h ago•2 comments

A/I shuts down – Stay human

https://keepitfree.ai/announcements/a/i-shuts-down-stay-human/
325•captainmuon•3h ago•208 comments

Doomscrolling Ourselves to Death

https://www.edwest.co.uk/p/doomscrolling-ourselves-to-death
253•shubhamjain•6h ago•168 comments

Research acceleration: The view inside OpenAI

https://openai.com/index/research-acceleration-view-inside-openai
43•iamsyr•3h ago•15 comments

Recreating Minecraft Is Not a Benchmark

https://kuber.studio/blog/Reflections/Recreating-Minecraft-is-Not-a-Benchmark
30•kuberwastaken•3h ago•20 comments

Electronic skin for prosthetics to sense temperature and pressure

https://news.wsu.edu/press-release/2026/08/20/researchers-develop-electronic-skin-for-prosthetics...
15•gmays•4d ago•2 comments

Is There I/O After Death? What Happens to Io_uring When a Process Dies

https://blog.ydb.tech/is-there-i-o-after-death-what-happens-to-io-uring-when-a-process-dies-92c65...
28•porridgeraisin•3d ago•4 comments

M-DISC – DVD/Blu-ray compatible discs that may last up to 1000 years

https://en.wikipedia.org/wiki/M-DISC
145•gurjeet•4d ago•61 comments

Asahi Linux Now Officially Supports Apple M3 Macs – With Caveats

https://www.phoronix.com/news/Asahi-Linux-Official-M3
171•mdp2021•4h ago•102 comments

Babylonian Lamb Stew with Beets (1750–1730 BCE)

https://babylonian-collection.yale.edu/about/babylonian-cooking
10•yubblegum•2d ago•14 comments

The many mysteries and lessons of the Bayeux tapestry

https://economist.com/interactive/culture/2026/09/03/the-many-mysteries-and-lessons-of-the-bayeux...
39•andsoitis•4h ago•5 comments

Cloud in a Bottle: making self-hosting accessible to everyone

https://cloudinabottle.org/blog/launch-post
561•zplizzi•18h ago•278 comments

The revolt of the reader

https://bcantrill.dtrace.org/2026/09/05/the-revolt-of-the-reader/
519•chmaynard•20h ago•248 comments

The pencil case model of creativity

https://dub.uu.nl/en/column/pencil-case-model-creativity
40•jruohonen•6h ago•15 comments

I'm teaching an introductory 12 week course on Quantum Oracle Engineering

https://shukla.io/quantum-oracle-engineering/
34•BinRoo•5h ago•11 comments

IBM Quantum Nighthawk R2

https://www.ibm.com/quantum/blog/nighthawk-r2
61•fuglede_•3d ago•33 comments

Music Theory for Programmers

https://runjs.app/blog/music-theory-for-programmers
296•birdculture•3d ago•191 comments

Ganon's Mysterious Origins (Revisited)

https://www.thrillingtalesofoldvideogames.com/blog/ganon-name-origin-kamen-rider
15•tobr•21h ago•4 comments

Discovery of a new OpenAI agent message board

https://collusion.wiki/
2248•moultano•2d ago•1573 comments

AI, Tools and Transformation

https://www.ben-evans.com/benedictevans/2026/9/3/ai-tools-and-transformation
135•firexcy•16h ago•60 comments

Household Laser Cuts

https://cceckman.com/writing/household-laser-cuts/
39•evakhoury•1d ago•14 comments

Show HN: Kadō – open-source habit tracker, with non-binary habit score, for iOS

https://github.com/scastiel/kado
39•scastiel•3h ago•18 comments
Open in hackernews

Any Nix package, live in the browser

https://fzakaria.com/2026/09/04/any-nix-package-live-in-your-browser
29•domenkozar•1h ago

Comments

thenthenthen•51m ago
Ugh cant stand the LLM-isms, cool idea tho, practical? For teaching maybe?
indemnity•38m ago
Every damn vibe project: “Catchy hook, descriptive explanation”. Like they’ve all got their own marketing team now.
easterncalculus•37m ago
Seems very cool. I'm wondering what the next step would be for performance here. Trying python as suggested is quite slow so far.

  ~ # time python3 hello.py
  Hello World!
  real    0m 5.48s
  user    0m 4.11s
  sys     0m 1.24s
yjftsjthsd-h•28m ago
There's a JIT, so running the same thing more than once makes it faster:

  ~ # time hello 
  Hello, world!
  real 0m 1.89s
  user 0m 0.67s
  sys 0m 1.14s
  ~ # time hello 
  Hello, world!
  real 0m 0.97s
  user 0m 0.36s
  sys 0m 0.55s
This would to me imply an obvious route of pre-warming the resumed image with your program. Or going all-in and natively compiling to wasm, but that's a much bigger lift.
yjftsjthsd-h•35m ago
> we can run a Linux kernel in WebAssembly.

For a moment I thought someone did a port of Linux to wasm, but this is actually x86_64 Linux in a wasm qemu (with JIT, granted, which I suppose blurs the line). That's probably a lot more practical.

---

I'm stoked about the idea of using this for code review / bug reproduction / tutorials / demos. Obviously nix already gives you the reproducibility side of things, but running on any host system with zero setup and robust sandboxing should really improve its practical usefulness. Native nix doesn't give you "try this software by clicking a link and it works without installing anything", nor " here's some completely untrusted code someone wants you to run, and that's ~fine because it's in a browser tab".

janjones•17m ago
> I thought someone did a port of Linux to wasm

I think someone did that here: https://github.com/joelseverin/linux-wasm

rvz•30m ago
Just looked at this and wondered, how much Claude AI slop went into this project and unsurprisingly a lot of it.

The entire site reeks of Claudisms and I doubt that the author even cares or knows what they are doing. The GitHub put me off immediately.

It's quite ridiculous to see such slop here and we are just going to see more of this.

yjftsjthsd-h•24m ago
It's a good idea, and the implementation works. Are there actual problems, or are you just complaining that AI was used?
rvz•10m ago
> It's a good idea, and the implementation works.

Just because something "works" doesn't not mean it makes sense to use in the long run. It is incredibly memory inefficient and will cause the user's machine to crash. Not everyone is running the latest ThinkPad or Macbook with 64GB RAM.

Without those considerations, I believe it is complete AI slop.

yjftsjthsd-h•1m ago
> It is incredibly memory inefficient and will cause the user's machine to crash. Not everyone is running the latest ThinkPad or Macbook with 64GB RAM.

Thankfully, you don't need that:

> Lastly, we have an upper-bound on the size of the closure we can fetch. The whole closure has to fit in tab memory, which is set to a hard limit of ~1.5GiB as of now and WebAssembly has a hard limit of 4GiB as it is a 32-bit address space.

And it works fine on my 3-year-old phone with 8G of RAM, so I think your complete dismissal of VMs is excessive.

wrxd•13m ago
nektro•22m ago
so sick, nice work!
Have a look at the submissions from that websites. The quantity alone indicates that the author is vibing full steam.

Nice ideas but 100% slop