frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Global Glacier Extinction Explorer

https://glacierextinction.com
42•guillego•48m ago•6 comments

Godot and Rust based multiplexer (terminal panes and more)

https://github.com/godot-pty/gpty
20•1nv1n•43m ago•9 comments

Logo Programming Language

https://el.media.mit.edu/logo-foundation/what_is_logo/logo_programming.html
109•azhenley•2d ago•55 comments

I've operated petabyte-scale ClickHouse clusters for 5 years

https://www.tinybird.co/blog/what-i-learned-operating-clickhouse
59•adastral•3d ago•23 comments

Copying login keychains between Macs fails on Secure Enclave Macs with Tahoe

https://derflounder.wordpress.com/2026/09/08/manually-copying-login-keychain-files-from-one-mac-t...
25•zdw•18h ago•9 comments

So you want to use OpenRouter?

https://mmoustafa.com/blog/so-you-want-to-use-openrouter/
499•player85•2d ago•129 comments

Matt Mullenweg tells Automattic staff in Slack he's back in control after ouster

https://techcrunch.com/2026/09/11/matt-mullenweg-tells-automattic-staff-in-slack-hes-back-in-cont...
71•mkeeter•1h ago•42 comments

HuggingFace: Security.txt

https://huggingface.co/security.txt
123•yarapavan•2h ago•19 comments

RTK reports token savings, but our cost benchmarks disagree

https://quesma.com/blog/does-rtk-make-ai-coding-cheaper/
101•michalwarda•5h ago•55 comments

Claude is only available to people over 18 years

https://support.claude.com/en/articles/15171100-age-assurance-on-claude
336•Muhammad523•5h ago•405 comments

Re-Engineering YouTube for the Living Room: Bringing "Chrobalt" to RDK

https://www.collabora.com/news-and-blog/news-and-events/re-engineering-youtube-for-the-living-roo...
22•losgehts•3h ago•10 comments

118M Queries per Second on Neki

https://planetscale.com/blog/118-million-queries-per-second-on-neki
6•joshmgross•49m ago•1 comments

Don't let anyone take away your big box of cables

https://blog.jim-nielsen.com/2026/hands-off-my-cables/
714•Brajeshwar•1d ago•430 comments

Cherenkov Radiation - traveling faster than light

http://www.iaea.org/newscenter/news/what-is-cherenkov-radiation
173•andsoitis•8h ago•85 comments

Copper lined vest to help penguins with recovery

https://apnews.com/article/chile-el-nino-humboldt-penguins-vulnerable-injuries-rehabilitation-6e9...
12•ninju•2d ago•3 comments

iPod Classic 6G in QEMU

https://www.reddit.com/r/emulation/s/VL4Au2HGxq
110•dmonterocrespo•3d ago•22 comments

Show HN: Hacker News, without AI

https://hcker.news/?ai=exclude
89•postalcoder•1h ago•54 comments

Show HN: Clawfight.ai MCP-driven agentic game play

https://clawfight.ai/agents.md
7•wesleyhales•2h ago•4 comments

New York thoracic surgeon: "For many patients 9/11 is not over"

https://www.statnews.com/2026/09/11/sept-11-25th-anniversary-ground-zero-exposure-cancer-moment-o...
54•EA-3167•2h ago•16 comments

RISC-V Emulator and Linux System from Scratch

https://github.com/WerWolv/riscv-emulator
36•Bluestein•3d ago•2 comments

OpenAI Agents API

https://developers.openai.com/api/docs/guides/agents-api/overview
323•aquir•21h ago•168 comments

Houthis 'take control' of key island in global shipping route

https://www.bbc.com/news/live/cmd683p01eljt
259•consumer451•3h ago•389 comments

Working with Git Worktrees in Magit

https://emacsredux.com/blog/2026/09/02/working-with-git-worktrees-in-magit/
102•srijan4•3d ago•41 comments

Mexican student creates an acoustic fire extinguisher to put out fire in seconds

https://www.upsocl.com/en/16-year-old-mexican-student-creates-an-acoustic-fire-extinguisher-that-...
358•rguiscard•15h ago•110 comments

CSS Curiosities of the Past

https://vale.rocks/posts/css-relics
66•robin_reala•8h ago•43 comments

An interactive tour of the spanning tree protocol

https://vincent.bernat.ch/en/blog/2026-spanning-tree
65•zdw•3d ago•7 comments

Hacker News with reduced priority for AI driven content

https://sprinklz.io/public/pdwt4dve5uai
45•sammy0910•53m ago•26 comments

Technique for Manipulating Satellite Photos Now Reveals Ancient Images (2025)

https://spinoff.nasa.gov/Manipulating_Satellite_Photos_Now_Reveals_Ancient_Images
364•gumby•1d ago•62 comments

Shopify is moving from React Native back to Swift and Kotlin

https://shopify.engineering/back-to-native
1200•fnthawar2•1d ago•895 comments

Experiment – Projectional Viewer

https://programmingsimplicity.substack.com/p/experiment-projectional-viewer
13•surprisetalk•3d ago•3 comments
Open in hackernews

Compiler Reminders

https://jfmengels.net/compiler-reminders/
38•jfmengels1•1y ago

Comments

JonChesterfield•1y ago
Exhaustive compile time checking of dispatch statements is a wonderful thing, sorely missing from the languages that decided "sum types" are a bit weird and niche.
fredrikholm•1y ago
They make it near impossible to extend from the outside.

I can pass a Reader interface to your function, but I cannot (easily) add a

> | UnusualProtocol(Socket)

as a third party consumer.

Other than that, sum types are the better abstraction. With exhaustive first class pattern matching (eg. with proper matching on destructuring), nothing comes close in terms of ergonomics.

hermanradtke•1y ago
That is a feature. Compose instead of extending.
Yoric•1y ago
OCaml has extensible sum types. They work very nicely for some ranges of problems.
swiftcoder•1y ago
Elm <-> Rust

Best buds on this front

gitroom•1y ago
Tbh, missing those checks in other languages bugs me so much - it's like why leave me hanging?