frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

I'm not addicted to the internet or my smartphone. I'm addicted to information

https://explorator.dev/addiction/
18•jyhrow•37m ago•4 comments

iOS 27, iPadOS 27, and macOS 27

https://www.apple.com/newsroom/2026/09/major-updates-for-apples-software-platforms-are-now-availa...
332•throw0101d•6h ago•369 comments

Pion, an agent designed to run any company autonomously

https://andonlabs.com/blog/why-we-built-pion
272•lukaspetersson•7h ago•283 comments

Charts built for Chat

https://dbtcharts.com/blog/charts-built-for-chat/
71•thingsilearned•3h ago•22 comments

Show HN: Macros with a Behringer FCB1010 MIDI Pedalboard in macOS

https://github.com/JamesRyanATX/fcbnerd
21•fretlessjazz•1h ago•0 comments

Compressing a Flag to 11 Bits

https://read.vantezzen.io/miniflags
50•bennett_dev•2d ago•24 comments

Distributed Systems Classics (2017)

https://nvartolomei.com/dist-sys-classics/
223•grep_it•8h ago•44 comments

OpenAI bots knew about the RubyGems caching vulnerability

https://tenderlovemaking.com/2026/09/11/what-a-time-to-be-alive/
358•gregnavis•11h ago•305 comments

Dropping eBPF CPU Cost by About 90% with Memoization (Not AI Gen)

https://nathannaveen.dev/posts/dropping-ebpf-cpu-cost-by-90/
17•nathannaveen•10h ago•4 comments

XCancel service is suspended until further notice

https://xcancel.com/#
425•gaganyaan•14h ago•744 comments

Amazon vs. Perplexity – U.S. Court of Appeals for the Ninth Circuit

https://law.justia.com/cases/federal/appellate-courts/ca9/26-1444/26-1444-2026-08-04.html
157•neom•3h ago•160 comments

How my e-reader lost its stripes

https://www.serpentine.com/posts/2026/x3-stripes/
143•simonmic•8h ago•23 comments

A Beginning for Mathematics

https://www.daniellitt.com/blog/2026/9/13/a-beginning-for-mathematics/
161•robinhouston•8h ago•92 comments

Principles for Fast Tokio Applications

https://dial9-rs.github.io/blog/principles-for-fast-tokio-applications/
157•carllerche•9h ago•41 comments

Optimizing a Spin-Lock

https://david.alvarezrosa.com/posts/optimizing-a-spin-lock/
38•signa11•2d ago•15 comments

Steam Frame starts at $1059

https://store.steampowered.com/hardware/steamframe
471•bsimpson•7h ago•345 comments

Why don't machine learning research agents overfit?

https://www.amazon.science/blog/why-dont-machine-learning-research-agents-overfit
99•Betelbuddy•7h ago•54 comments

Cloudflare AKE cuts origin HelloRetryRequests from 52% to 3.7%

https://blog.cloudflare.com/automatic-key-exchange-for-origins/
80•iamsyr•7h ago•22 comments

Cua (YC P25) Is Hiring a Founding Technical GTM Lead

https://www.ycombinator.com/companies/cua/jobs/1IWEKVH-founding-technical-gtm-lead
1•frabonacci•7h ago

Show HN: Neobrutalism.dev – Just added Base UI support and added new color theme

https://www.neobrutalism.dev/
136•samke-•8h ago•60 comments

Ask HN: What are you working on? (September 2026)

291•david927•1d ago•921 comments

An atlas of periodic solutions to the three-body problem

https://www.threebodyorbits.com/
338•danielmorozoff•2d ago•78 comments

Largest known Roman mosaic, beneath Baths of Trajan, opens to the public

https://www.theartnewspaper.com/2026/09/14/largest-roman-mosaic-opens-to-the-public
43•bookofjoe•11h ago•7 comments

GPT-5.6 Luna vs. GPT-6 Astra: Is a $1.20 Model Good Enough for Code Review?

https://entelligence.ai/blogs/gpt-5.6-luna-vs-gpt-6-astra-is-a-1.20-model-good-enough-for-code-re...
95•theanonymousone•4h ago•105 comments

Notes on gotchas while migrating 35kb preprompts from Opus to self-hosted Ollama

https://patrickmccanna.net/notes-on-migrating-large-prompts-away-from-anthropic-openai-to-self-ho...
110•0o_MrPatrick_o0•10h ago•62 comments

Backprop Alternative: Augmented Lagrangian Predictive Coding

https://pub.sakana.ai/pc-alm/
32•guld•6h ago•6 comments

People who can't picture anything are rewriting the science of imagination

https://dailyneuron.com/aphantasia-mental-imagery-brain-network/
83•giuliomagnifico•11h ago•154 comments

Microsoft patches Windows and Excel – breaks audio, remote access, and paste

https://www.theregister.com/os-platforms/2026/09/14/microsoft-patches-windows-and-excel-breaks-au...
192•Alephinitesimal•8h ago•116 comments

Dario, Please

https://pop.rdi.sh/dario-please/
248•0x5FC3•9h ago•123 comments

Show HN: Nari Qwen3-TTS and Qwen3-ASR – High accuracy, low latency and cost

https://narilabs.com/blog/nari-labs-leads-coval-voice-ai-benchmarks/
60•toebee•8h ago•19 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?