frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Making a Python interpreter in 1024 bytes

https://austinhenley.com/blog/python1024.html
117•azhenley•3h ago•46 comments

It took a year to ship WebAssembly in Anubis

https://anubis.techaro.lol/blog/2026/anubis-wasm/
161•xena•6h ago•95 comments

The NX bit is not just about security

https://purplesyringa.moe/blog/guest/the-nx-bit-is-not-just-about-security/
14•torutofu•2d ago•4 comments

Your intellectual fly is open when you use an LLM to author a post (2025)

https://bcantrill.dtrace.org/2025/12/05/your-intellectual-fly-is-open/
556•cyb0rg0•14h ago•366 comments

Show HN: Mador – Make any DOM reactive with a tiny 80-line Proxy state tuple

https://github.com/marsbos/mador
73•bosmarcel•6h ago•22 comments

Nitter and XCancel resume service after legal advice

https://github.com/zedeus/nitter/commit/1428b4c2b4246f92a7e5b2673438e5fb39fcc4a3
500•zImPatrick•9h ago•259 comments

GrapheneOS Overhauled Default Apps and Secure Clipboard

https://grapheneos.social/@GrapheneOS/117225539756835649
213•Cider9986•6h ago•143 comments

Babylonian Lamb Stew with Beets (1750–1730 BCE)

https://babylonian-collection.yale.edu/about/babylonian-cooking
110•yubblegum•3d ago•55 comments

MathKernel: An evidence-aware multi-engine mathematics kernel and MCP server

https://github.com/Staatsgeheim/MathKernel
12•staatsgeheim•2h ago•0 comments

Harnessing the Universal Geometry of Embeddings

https://arxiv.org/abs/2505.12540
49•ur-whale•6h ago•13 comments

Please don't rearrange our shoes when we turn up, paramedics in Japan urge

https://www.theguardian.com/world/2026/aug/28/never-tidy-paramedics-shoes-japan-custom-etiquette
33•high_na_euv•3d ago•16 comments

NetBSD 9.5 released and EOL for NetBSD-9

https://blog.netbsd.org/tnf/entry/netbsd_9_5_released_and
113•jaypatelani•11h ago•10 comments

An Alien Mind

https://openai.com/index/an-alien-mind/
349•tosh•10h ago•298 comments

Black Hole of Los Alamos: Seller of surplus nuclear research materials (2011)

https://www.atlasobscura.com/places/black-hole-of-los-alamos
44•Bluestein•4d ago•11 comments

Asahi Linux on M3

https://asahilinux.org/2026/09/m2-episode-1/
367•mdp2021•12h ago•213 comments

Research acceleration: The view inside OpenAI

https://openai.com/index/research-acceleration-view-inside-openai
125•iamsyr•11h ago•79 comments

Reverse engineering the storage format for an undocumented database

https://blog.glazer.ee/posts/converting-cronos/
27•pintprint•2d ago•2 comments

A/I shuts down

https://keepitfree.ai/announcements/a/i-shuts-down-stay-human/
534•captainmuon•12h ago•424 comments

Every Novel Is Boring–Until It Isn't

https://www.publicbooks.org/every-novel-is-boring-until-it-isnt/
18•samclemens•3d ago•8 comments

Research carried out using NetBSD

https://www.netbsd.org/gallery/research.html
81•Bluestein•10h ago•19 comments

Vidact – a compiler that turns React into direct DOM operations

https://www.vidact.dev/
55•mohebifar•4d ago•26 comments

Hackers have withdrawn ~4k BTC (~$320M) from the Liquid Federation wallet

https://twitter.com/Liquid_BTC/status/2096696272447218108
73•felipelalli•4h ago•47 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...
50•gmays•4d ago•5 comments

Opalite Health (YC W26) Is Hiring – Founding GTM

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

D2 Is Non-Profit

https://d2lang.com/blog/d2-non-profit/
31•alixanderwang•7h ago•13 comments

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

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

Isar Aerospace reaches orbit and deploys payloads on second flight

https://isaraerospace.com/press/history-for-european-spaceflight-isar-aerospace-reaches-orbit-and...
563•mpweiher•19h ago•180 comments

Doomscrolling ourselves to death

https://www.edwest.co.uk/p/doomscrolling-ourselves-to-death
374•shubhamjain•15h ago•280 comments

2026 Hugo Awards

https://www.thehugoawards.org/
77•signa11•14h ago•41 comments

216M Spy TVs – The LG Smart TV Problem [video]

https://www.youtube.com/watch?v=6IFVTcM28KA
31•treve•2h ago•10 comments
Open in hackernews

The NX bit is not just about security

https://purplesyringa.moe/blog/guest/the-nx-bit-is-not-just-about-security/
14•torutofu•2d ago

Comments

tripdout•12m ago
I really wish I understood this, it hits a bunch of topics that I've heard of and are/sound interesting, but I don't know enough to follow it.
Nail2680•10m ago
Hot take: NX bit is shit W^X is shit. proper JIT is having objects written as needed, and cache line flushing is full bullshit, we need self modifying code as a first class citizen and with modern techiques we can have it work and not be crazy slow, it is currently cuz shits fucked, but we can do better.
crazy1_•6m ago
this is so amazing
asveikau•1m ago
On this theme of it not being just about security: if you have a bug like a use after free and it happens to cover a function pointer, the nx bit can ensure that when you follow that pointer through a call, you get a clean trap as close to the failure point as possible. If it blindly executed stale bytes as code, maybe the crash and stack trace doesn't look as nice.

But then, a lot of correctness bugs like that are also security problems.