frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Discovery of a new OpenAI agent message board

https://collusion.wiki/
563•moultano•3h ago•381 comments

Google AI Mode shows same products 21.6% more expensive than traditional search

https://productrise.app/blog/google-ai-mode-prefers-more-expensive-products
134•DeepLogin•3h ago•22 comments

Burnt out on a three-day week

https://jennywanger.com/articles/burnt-out-on-a-three-day-week/
46•thelastgallon•1h ago•37 comments

Solving the Jane Street Reverse Engineering Challenge

https://jestoph.com/2026/09/04/jane-street-challenge.html
211•anitil•4h ago•55 comments

GPT-6 Astra

https://openai.com/index/gpt-6-astra/
1985•kibae•20h ago•1815 comments

Ok, but Does It Scale?

https://spacetimedb.com/blog/how-does-spacetime-scale
53•theanonymousone•2h ago•25 comments

.name Termination

https://neil.fraser.name/news/2026/09/03/
2041•pavel_lishin•1d ago•498 comments

The Two Abstractions of System Design: Hide or Reduce

http://muratbuffalo.blogspot.com/2026/05/the-two-abstractions-of-system-design.html
30•ubolonton_•2d ago•2 comments

Elevator of the Year Winner Modernization of the Metropolis Trust Building

https://www.starelevator.com/projects/star-elevator-modernization-of-the-metropolis-trust-building
69•palashawas•3d ago•23 comments

Qwen 3.8 27B available on Cerebras at 1500 tokens/s

https://inference-docs.cerebras.ai/models/overview
626•altertable•20h ago•208 comments

Nearly impossible? How Fairphone built the ethical, repairable Fairphone Gen 6+

https://arstechnica.com/gadgets/2026/09/nearly-impossible-how-fairphone-built-the-ethical-repaira...
80•CrypticShift•2h ago•64 comments

SubImage (YC W25) Is Hiring a Founding Engineer in SF

https://www.ycombinator.com/companies/subimage/jobs/NCTFgKK-founding-engineer
1•alexchantavy•3h ago

E-Paper Panel Isn't Broken: How Retained State Makes Drivers Look Buggy

https://msj.prose.sh/epaper-retained-state
5•lukastyrychtr•2d ago•0 comments

The largest electric aircraft just flew [video]

https://www.youtube.com/watch?v=nM86DBOqgPM
402•feb•2d ago•295 comments

Why is Arrays.fill 265 times slower on G1GC?

https://krzysztofslusarski.github.io/2026/08/19/g1barrier.html
23•ejboy•3d ago•13 comments

Hackers Had a Live Feed of Every ID Verification Company Scanned for over a Year

http://www.techdirt.com/2026/09/03/hackers-had-a-live-feed-of-every-id-this-verification-company-...
385•beardyw•8h ago•164 comments

Top Pentagon Official Contracted Personal Lawyer to Handle Minerals Deal

https://prospect.org/2026/08/21/pentagon-minerals-deal-department-defense-cerberus-capital-alan-w...
39•h2si•1h ago•2 comments

Artificial beaver dams saw juvenile coho salmon survival rates go from 8% to 60%

https://www.discoverwildlife.com/animal-facts/artificial-beaver-dams-california
322•speckx•22h ago•105 comments

How an MIT research project became the Julia programming language

https://news.mit.edu/2026/how-mit-research-project-became-global-programming-language-0831
161•theanonymousone•4d ago•84 comments

GMails custom domain "send as" discontinues January 2027

https://support.google.com/mail/answer/22370?hl=en
5•sva_•12m ago•2 comments

Go grandmaster Shin defeats AI KataGo with a two-stone handicap

https://www.kedglobal.com/artificial-intelligence/newsView/ked202607210007
405•gmays•1d ago•161 comments

IBM Bob

https://bob.ibm.com/
90•artpar•2h ago•87 comments

Porting my 1993 Amiga game to Godot, with an LLM reading the 68000 assembly

https://babyloniantwins.com/blog/porting-a-1993-amiga-game-to-godot/
336•rabahs•1d ago•114 comments

Authorization terminology is a mess: Let's fix it

https://idpro.org/authorization-terminology-is-a-mess-lets-fix-it/
96•andychiare•3d ago•66 comments

'People are going to get screwed' Pennsylvania voters unite against data centres

http://www.ft.com/content/8252d574-ae2a-4403-9cf9-031295ba67f5
80•1vuio0pswjnm7•1h ago•86 comments

Oscar Winner Brings Monsters to Life with His Simulation Software

https://spectrum.ieee.org/oscar-winner-jernej-barbic
27•jruohonen•4d ago•4 comments

1960s theory that Stonehenge was a prehistoric computer

https://www.bbc.com/culture/article/20260828-the-startling-1960s-theory-that-stonehenge-was-a-pre...
59•dabinat•4d ago•60 comments

K2 Horizon: A connected fleet of six open models

https://ifm.ai/blog/k2/
318•karimf•23h ago•117 comments

Project Xanadu: Even More Hindsight (2025)

https://gwern.net/xanadu
104•andsoitis•13h ago•28 comments

GPS glitched across the US by as much as 33 feet

https://www.sciencealert.com/gps-glitched-across-the-us-by-as-much-as-33-feet-scientists-have-nev...
202•thread_id•1d ago•123 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?