frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Muse: Meta's personal AI agent, features and capabilities

https://ai.meta.com/muse/
31•yks•14m ago•11 comments

Google DeepMind Releases AlphaGenome Atlas

https://blog.google/innovation-and-ai/models-and-research/google-deepmind/alphagenome-atlas/
365•utiiiD•4h ago•93 comments

DaVinci Resolve 21.1

https://www.blackmagicdesign.com/media/release/20260908-03
290•tosh•6h ago•122 comments

Benchmarking Qwen3.8 27B quantizations: 4-bit holds up, 1-bit collapses

https://quesma.com/blog/qwen38-27b-quantizations-benchmarked/
144•stared•4h ago•78 comments

On the Navier–Stokes Millennium Prize Problem

https://openai.com/index/navier-stokes-solution/
659•tedsanders•2h ago•481 comments

100s of flights cancelled at UK airports due to ATC issue

https://www.bbc.com/news/live/c6x2z0yy32ejt
30•contingencies•1h ago•12 comments

ChatGPT Images 2.5

https://openai.com/index/introducing-chatgpt-images-2-5/
157•vertigoruntime•1h ago•186 comments

Show HN: LLM Attention Visualization

https://ishamf.dev/p/llm-attention-visualizer/
56•ifz•2h ago•12 comments

LG TVs caught spying even when offline or on standby

https://www.theverge.com/tech/991190/lg-tv-spying-standby-recording-wi-fi-scanning-gamers-nexus
348•sbulaev•3h ago•193 comments

I-have-ADHD: A skill to stop coding agents from burying the answer

https://github.com/ayghri/i-have-adhd
170•domhudson•5h ago•141 comments

The Helicopter with Radioactive Blades

https://hackaday.com/2026/09/07/the-helicopter-with-radioactive-blades/
105•zdw•1d ago•25 comments

Y Combinator Early Access Network

https://events.ycombinator.com/yc-early-access-fall-26
47•tosh•3h ago•32 comments

Connecting the Machines

https://herdr.dev/blog/connecting-the-machines/
47•collinmanderson•2h ago•17 comments

The two Christian saints who are the Buddha

https://signoregalilei.com/2026/08/30/the-two-christian-saints-who-are-secretly-the-buddha/
151•surprisetalk•4h ago•84 comments

Show HN: Copperhead – Hardware as Fast as Software

https://copperhead.sh/
169•animeshchouhan•6h ago•65 comments

C*: Unifying Programming and Verification in C

https://arxiv.org/abs/2504.02246
43•rramadass•3h ago•31 comments

Implementation of GCC's Nested Functions (vs. C++ Lambdas)

https://uecker.codeberg.page/2026-09-05.html
12•uecker•3d ago•0 comments

AlphaGenome Atlas predictive map of every DNA letter change in the human genome

https://deepmind.google/blog/alphagenome-atlas-a-predictive-map-of-every-possible-dna-letter-chan...
66•fady0•5h ago•8 comments

Replacing a Rust Enum with a 64-Bit Word Made My Interpreter 17% Faster

https://pointersgonewild.com/2026-08-25-replacing-a-rust-enum-with-a-64-bit-word/
27•metrofun•3d ago•11 comments

ZX Spectrum: Experimenting with 1-Bit Sound

https://bumbershootsoft.wordpress.com/2026/09/05/zx-spectrum-experimenting-with-1-bit-sound/
64•ibobev•4h ago•21 comments

Navier-Stokes – Tristan Buckmaster [pdf]

https://cims.nyu.edu/~tristanb/statement.pdf
666•procedurecall•13h ago•337 comments

The 92-Year-Old Mathematician and the Teenage Apprentice

https://www.nytimes.com/2026/09/06/science/92-year-old-mathematician-apprentice.html
64•robinhouston•1d ago•5 comments

Paramount Caught Using 'Astroturf' Group to Drum Up Fake Support for Merger

https://www.techdirt.com/2026/09/08/paramount-caught-using-astroturf-group-to-drum-up-fake-suppor...
263•hn_acker•5h ago•77 comments

Getting your hands dirty is good for you

https://www.bbc.com/future/article/20260904-how-getting-your-hands-dirty-boosts-your-health-withi...
183•HatchedLake721•9h ago•157 comments

DHS 'Predictive Policing' Unit Is Analyzing Americans' Financial Habits

https://www.404media.co/a-secretive-dhs-predictive-policing-unit-is-analyzing-americans-financial...
265•abraham•4h ago•140 comments

Function Arguments Are Not Function Colors

https://jerf.org/iri/post/2026/func_args_are_not_colors/
5•ingve•35m ago•0 comments

There's a new "Google Jail" for independent wikis

https://weirdgloop.org/blog/google-jail
479•pizzaiolo•17h ago•200 comments

Disappointed Optimists

https://cwodtke.com/disappointed-optimists/
46•adrianhoward•4h ago•2 comments

FreeBSD 14.5-Release

https://www.freebsd.org/releases/14.5R/announce/
73•joshcsimmons•7h ago•11 comments

Antiquated HTML Snippets and Artefacts

https://vale.rocks/posts/html-relics
206•patadune•9h ago•70 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?