frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

OpenAI Feared "Optics" of what might appear on Hacker News

https://authorsguild.org/news/ag-v-openai-top-execs-knew-mass-book-piracy-was-illegal/
190•papergirl•3h ago•142 comments

Meta Blocks President Lula's Facebook Page, Campaign Ads 2 Weeks from Election

https://www.reddit.com/r/worldnews/comments/1wr3id3/meta_blocks_president_lulas_facebook_page_and/
104•rbanffy•1h ago•53 comments

Does Georgism work? Five years later

https://www.astralcodexten.com/p/does-georgism-work-five-years-later
341•silveraxe93•1d ago•250 comments

Flip Fluid on Flip Dots

https://mitxela.com/projects/flipflip
87•blutack•1d ago•10 comments

Go Concurrency Distilled

https://antonz.org/go-concurrency-distilled/
222•chmaynard•19h ago•83 comments

PipePipe: NewPipe hard fork implementing SponsorBlock

https://github.com/InfinityLoop1308/PipePipe
423•Qision•1d ago•228 comments

DeepSeek Elastic Compute (DSec)

https://arxiv.org/abs/2609.22978
247•shenli3514•15h ago•82 comments

Show HN: Reladraw – A diagram language where you decide where to place things

https://github.com/reladraw/reladraw
311•jpwalsh234•17h ago•83 comments

Improving site performance by shipping more CSS

https://github.blog/engineering/architecture-optimization/improving-site-performance-by-shipping-...
42•torutofu•21h ago•26 comments

C's Flexible Integer Sizes Were Not a Design Mistake

https://pikuma.com/blog/c-integer-sizes-not-a-mistake
31•ibobev•1d ago•31 comments

The internet discovers TLA+. Now what?

https://reasonable.io/blog/tla-tutorial/
14•matt_d•4h ago•6 comments

A searchable library of forgotten public-domain film clips from 1915 onward

https://www.movingimagearchive.com/
174•momentmaker•2d ago•26 comments

Biology might not be quantum, but its math is quantumlike

https://www.quantamagazine.org/biology-might-not-be-quantum-but-its-math-is-quantumlike-20260923/
71•pseudolus•2d ago•23 comments

ASML says it sold 'absolutely nothing' in Europe in 2026

https://www.tomshardware.com/tech-industry/semiconductors/asml-says-its-sells-absolutely-nothing-...
283•MC995•1d ago•640 comments

What is the size of Yemen? (2024)

https://theborys.substack.com/p/what-is-the-size-of-yemen
171•kspacewalk2•7h ago•56 comments

Fifteen years later, the Apple Cards origin story

https://lexontech.org/fifteen-years-later-the-apple-cards-origin-story
396•ksec•1d ago•102 comments

Evolving programming languages in the AI era

https://dashbit.co/blog/evolving-ai-era
97•pjm331•2d ago•57 comments

Drawgent: Coding agent on a live Excalidraw canvas

https://tangled.org/yanndegat.tngl.sh/drawgent
151•parasitid•18h ago•41 comments

An agent used DNS to reach an external chatbot

https://alignment.openai.com/misalignment-reports/an-agent-used-dns-to-reach-an-external-chatbot/
101•apsec112•1d ago•103 comments

Reverse-engineering the Intel 8087's tangent algorithm: more than CORDIC

https://www.righto.com/2026/09/8087-tangent-cordic.html
79•pwg•16h ago•11 comments

How I changed teaching after AI managed to do all my homework assignments

https://thelastsoftwareengineer.substack.com/p/how-i-changed-teaching-after-ai-managed
211•azhenley•2d ago•186 comments

Turning GLM-5.3-Flash into a Jev-like decision model

https://www.privatemode.ai/blog/system-one-from-glm-flash
96•flxflx•18h ago•38 comments

Exploding variance of means of exponentials: least-squares to the rescue

https://francisbach.com/spectral_log_density_estimation/
31•matt_d•1d ago•0 comments

Promising discoveries about the potential for life on one of Saturn’s icy moons

https://www.fu-berlin.de/en/presse/informationen/fup/2026/fup_26_116-enceladus-cassini-mikroben-s...
59•geox•1d ago•31 comments

How to keep enjoying programming in a world of LLMs

https://discourse.haskell.org/t/how-to-keep-enjoying-programming-in-a-world-of-llms/14705
228•signa11•1d ago•270 comments

LP Voting and Investor Consent for AIFs

https://taghash.io/blog/lp-voting-and-investor-consent-for-aifs-a-practical-workflow
3•koolhead17•1d ago•0 comments

Modern Object Pascal Introduction for Programmers

https://castle-engine.io/modern_pascal
175•birdculture•2d ago•75 comments

Generate fonts where every LLM token is the same width

https://ampdot.mesh.host/token-space-fonts.html
63•z-mach9•1d ago•12 comments

We Should Be Able to Change Our Languages

http://jimmyhmiller.com/change-our-languages
44•surprisetalk•1d ago•21 comments

Bob Mackie dressed stars–if they were brave enough

https://www.economist.com/obituary/2026/09/24/bob-mackie-dressed-stars-if-they-were-brave-enough
7•andsoitis•1d ago•2 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?