frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Einstein's relativity rules chemical bonds in heavy elements, new research shows

https://www.brown.edu/news/2026-07-09/chemical-bonds-relativity
189•hhs•8h ago•65 comments

QuadRF can spot drones and see WiFi through my wall

https://www.jeffgeerling.com/blog/2026/quadrf-can-spot-drones-and-see-wifi-through-my-wall/
529•speckx•14h ago•184 comments

Apple sues OpenAI, accuses ex-employees of stealing trade secrets

https://9to5mac.com/2026/07/10/apple-sues-openai-trade-secret-theft/
882•stock_toaster•9h ago•441 comments

An iroh powered smart fan

https://www.iroh.computer/blog/an-iroh-powered-smart-fan
73•surprisetalk•3d ago•9 comments

An update on residential proxies and the scraper situation

https://lwn.net/SubscriberLink/1080822/990a8a5e2d379085/
153•chmaynard•10h ago•149 comments

SpaceX wants to launch 100k more Starlink satellites for 100x the bandwidth

https://www.zdnet.com/home-and-office/networking/spacex-wants-to-launch-100000-more-starlink-sate...
148•CrankyBear•12h ago•429 comments

GPT-5.6 Sol Ultra produces proof of the Cycle Double Cover Conjecture [pdf]

https://cdn.openai.com/pdf/04d1d1e4-bc75-476a-97cf-49055cd98d31/cdc_proof.pdf
418•scrlk•12h ago•325 comments

Late Bronze Age Collapse

https://acoup.blog/2026/01/30/collections-the-late-bronze-age-collapse-a-very-brief-introduction/
353•dmonay•18h ago•239 comments

Combustion engine web-based simulator

https://combustionlab.net
150•mytuny•5d ago•64 comments

Good Tools Are Invisible

https://www.gingerbill.org/article/2026/07/10/good-tools-are-invisible/
395•theanonymousone•19h ago•186 comments

AI 2040: Plan A

https://ai-2040.com/
215•kschaul•1d ago•224 comments

The tech of 'Terminator 2' – an oral history (2017)

https://vfxblog.com/2017/08/23/the-tech-of-terminator-2-an-oral-history/
205•markus_zhang•13h ago•71 comments

The footgun of right-to-left decorative characters

https://blog.alexbeals.com/posts/the-footgun-of-right-to-left-decorative-characters
33•dado3212•4d ago•18 comments

Inference Optimization for MiMo v2.5: Pushing Hybrid SWA Efficiency to the Limit

https://mimo.xiaomi.com/blog/mimo-v2-5-inference
64•theanonymousone•4d ago•25 comments

Silent speech with ultrasound

https://alephneuro.com/blog/silent-speech
34•chrwn•3d ago•10 comments

The Lindy effect in software

https://www.clemsau.com/posts/the-lindy-effect-in-software/
8•ankitg12•3d ago•6 comments

New York City to ban deceptive subscription practices

https://www.theguardian.com/us-news/2026/jul/10/new-york-city-deceptive-subscriptions-ban
489•randycupertino•12h ago•245 comments

Computation as a universal and fundamental concept

https://ergo.org/courses/computation-as-a-universal-and-fundamental-concept
121•simonpure•15h ago•82 comments

After 7 years in production, Scarf has reluctantly moved away from Haskell

https://avi.press/posts/2026-07-10-after-7-years-in-production-scarf-has-reluctantly-moved-away-f...
112•aviaviavi•17h ago•132 comments

Alternate clock designs and time systems

https://serialc.github.io/altClocks/
130•ethanpil•4d ago•70 comments

Snails' teeth beats spider silk as nature's strongest material (2015)

https://www.smithsonianmag.com/smart-news/spider-silk-loses-top-spot-natures-strongest-material-s...
174•simonebrunozzi•13h ago•139 comments

GhostLock, a stack-UAF that has existed in ALL Linux distributions for 15 years

https://nebusec.ai/research/ionstack-part-2/
68•djfergus•9h ago•13 comments

Moss (YC F25) Is Hiring

https://www.ycombinator.com/companies/moss/jobs/52LnqLQ-software-engineer-sdk
1•srimalireddi•9h ago

Preemption is GC for memory reordering (2019)

https://pvk.ca/Blog/2019/01/09/preemption-is-gc-for-memory-reordering/
25•mpweiher•2d ago•6 comments

A love letter to flashcards

https://lesleylai.info/en/flashcards/
145•surprisetalk•15h ago•89 comments

War Atlas: An interactive cartography of every named war in human history

https://waratlas.org
139•NaOH•12h ago•60 comments

Lost city discovered beneath Egypt's desert with ancient church

https://www.dailymail.com/sciencetech/article-15956159/Incredible-lost-city-discovered-Egypts-des...
172•Bender•4d ago•93 comments

Show HN: Wyrm – Solve algebra by touch, built on an open-source soundness engine

https://github.com/dicroce/wyrm_math
73•dicroce•1d ago•12 comments

Show HN: Getting GLM 5.2 running on my slow computer

https://github.com/JustVugg/colibri
845•vforno•1d ago•208 comments

Successful companies go blind

https://ianreppel.org/how-successful-companies-go-blind/
210•speckx•17h ago•76 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?