frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Actively exploited sandbox RCE in all Chromium versions

https://nvd.nist.gov/vuln/detail/cve-2026-85046
316•negura•5h ago•178 comments

Formalizing Fermat's Last Theorem

https://www.anthropic.com/research/formalizing-fermats-last-theorem
528•jlebar•9h ago•330 comments

Discovery of a new OpenAI agent message board

https://collusion.wiki/
1537•moultano•15h ago•1228 comments

Artificial Analysis Intelligence Index v4.2

https://artificialanalysis.ai/articles/artificial-analysis-intelligence-index-v4-2
73•nojs•3h ago•17 comments

Statichost.eu – European static site hosting

https://www.statichost.eu/
187•p4bl0•7h ago•63 comments

GPT-6 Astra on OpenRouter

https://openrouter.ai/openai/gpt-6-astra
147•Topfi•6h ago•75 comments

Can AI design circuit boards yet?

https://eebench.org/blog/can-ai-design-circuit-boards-yet/
187•iopapa•8h ago•120 comments

Shutting down our public encrypted DNS

https://mullvad.net/en/blog/shutting-down-our-public-encrypted-dns-servers-and-sponsoring-quad9-i...
275•mywacaday•9h ago•122 comments

Can guitar frets perform multiplication?

https://www.charlespetzold.com/blog/2026/09/Can-Guitar-Frets-Perform-Multiplication.html
43•wibbily•5h ago•12 comments

Portal by Spotify cut my Claude Code token usage by 90%

https://engineering.atspotify.com/2026/9/portal-by-spotify-cut-my-claude-code-token-usage-by-90
54•cebert•4h ago•23 comments

Git Submodules as a Package Manager

https://nesbitt.io/2026/09/01/git-submodules-as-a-package-manager.html
14•ErenayDev•3d ago•3 comments

Show HN: Open-Source eInk Bike Computer

https://opentrailpaper.com
250•stingrae•10h ago•87 comments

RSA-260 Factorized

https://twitter.com/penlume/status/2095372672356212876
80•samyok•1d ago•36 comments

Bugs happen: The easy way to compare solo PQ to ECC+PQ

https://blog.cr.yp.to/20260704-bugs.html
13•zdw•3d ago•5 comments

An open DNS recursive service for free security and high privacy

https://quad9.net/
68•mooreds•7h ago•18 comments

Ask HN: Resources to get good at soldering?

75•tosmatos•2d ago•53 comments

Fermat's Last Theorem in Lean 4

https://github.com/anthropics/fermats-last-theorem
75•aaraujo002•8h ago•15 comments

Government Rails Site Hit Hours After CVE Patch

https://rietta.com/blog/ruby-on-rails-cve-exploited-hours-after-patch/
78•rietta•8h ago•24 comments

Record-High 89% in U.S. Say Government Corruption Widespread

https://news.gallup.com/poll/713933/record-high-say-government-corruption-widespread.aspx
255•karakoram•5h ago•195 comments

The Rust React Compiler is now native in Vite

https://blog.master.dev/react-now-rusted-all-the-way-out/
123•acusti•10h ago•23 comments

Icons as a Service

https://nravic.com/blog/images/
29•nravic•6h ago•2 comments

IBM Bob

https://bob.ibm.com/
236•artpar•15h ago•272 comments

Decompiler Explorer

https://dogbolt.org
45•tripdout•3d ago•1 comments

Show HN: TERMy – A fast terminal assistant that does not use LLMs

https://github.com/gioblu/NPC-Forge/blob/main/docs/development.md
100•gioscarab•18h ago•29 comments

Show HN: Moadim.io – A scheduler for agents

https://moadim.io/
20•tupe12334•4h ago•11 comments

ExactTex. A gradually-typed superset of LaTeX

https://github.com/camilochs/exacttex
21•camilochs•3d ago•2 comments

Connecting every app to every other app

https://blog.val.town/connectors
19•Chidiebere229•4h ago•2 comments

Nitter has more working instances than before the takedowns

https://codeberg.org/mv12star/shitter/wiki/Instances
27•Cider9986•3h ago•8 comments

Updates on HEIR, the Homomorphic Encryption Compiler Project

https://www.jeremykun.com/2026/09/04/updates-on-heir-homomorphic-encryption/
29•turtleyacht•6h ago•0 comments

deSEC – Free Secure DNS

https://desec.io/
120•gurjeet•12h ago•42 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?