frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

OpenAI Submits S-1 Draft to SEC

https://openai.com/index/openai-submits-confidential-s-1/
192•hackerBanana•2h ago•106 comments

Surveillance Is Not Safety: A statement on the UK's latest threat to privacy [pdf]

https://signal.org/blog/pdfs/2026-06-08-uk-surveillance-is-not-safety.pdf
315•g0xA52A2A•3h ago•84 comments

Siri AI

https://www.apple.com/apple-intelligence/
336•0xedb•5h ago•266 comments

MiMo-v2.5-Pro-UltraSpeed: 1T model with 1000 tokens per second

https://mimo.xiaomi.com/blog/mimo-tilert-1000tps
468•gainsurier•8h ago•316 comments

Show HN: Performative-UI – A react component library of design tropes

https://vorpus.github.io/performativeUI/
716•lizhang•9h ago•146 comments

Apple Core AI Framework

https://developer.apple.com/documentation/coreai/
135•hmokiguess•4h ago•18 comments

EU-banned pesticides found in rice, tea and spices

https://www.foodwatch.org/en/eu-banned-pesticides-found-in-rice-tea-and-spices
202•john-titor•7h ago•72 comments

Anti-social: It's fads, not friends, which now dominate social media feeds

https://www.bbc.com/worklife/article/20260520-how-social-media-ceased-to-be-social
520•1vuio0pswjnm7•11h ago•379 comments

Show HN: Gitdot – a better GitHub. Open-source, written in Rust

https://gitdot.io/
107•baepaul•6h ago•95 comments

xAI is looking more like a datacentre REIT than a frontier lab

https://martinalderson.com/posts/xais-new-rental-business/
360•martinald•8h ago•273 comments

Why are cells small?

https://burrito.bio/essays/what-limits-a-cells-size
96•mailyk•4h ago•42 comments

Looking Forward to Postgres 19: Query Hints

https://www.pgedge.com/blog/looking-forward-to-postgres-19-query-hints
14•jjgreen•3d ago•2 comments

Apple reveals new AI architecture built around Google Gemini models

https://www.macrumors.com/2026/06/08/apple-reveals-new-ai-architecture/
304•unclefuzzy•4h ago•288 comments

FrontierCode

https://cognition.ai/blog/frontier-code
68•streamer45•2h ago•14 comments

Ask HN: What are tools you have made for yourself since the advent of AI?

111•aryamaan•5h ago•197 comments

Doing Something That's Never Been Done Before

https://talglobus.com/p/doing-something-thats-never-been-done-before/
20•surprisetalk•3d ago•5 comments

Launch HN: Intuned (YC S22) – Build and run reliable browser automations as code

https://intunedhq.com
96•fkilaiwi•10h ago•44 comments

Show HN: Mach – A compiled systems language looking for contributions

https://github.com/octalide/mach
4•octalide•31m ago•0 comments

Fooling Go's X.509 Certificate Verification

https://danielmangum.com/posts/fooling-go-x509-certificate-verification/
30•hasheddan•2d ago•15 comments

AI is slowing down

https://www.wheresyoured.at/ai-is-slowing-down/
341•crescit_eundo•7h ago•370 comments

I'm building a parallel internet, and it's called The Thinnernet

https://inavoyage.blogspot.com/2026/06/im-building-parallel-internet-and-its.html
39•initramfs•3h ago•36 comments

Switzerland wil have a referendum to cap population at 10M

https://www.admin.ch/en/sustainability-initiative
213•napolux•4h ago•428 comments

OCaml Onboarding: Introduction to the Dune build system

https://ocamlpro.com/blog/2025_07_29_ocaml_onboarding_introduction_to_dune/
139•andrewstetsenko•4d ago•17 comments

Stop the Apple Music app from launching

https://lowtechguys.com/musicdecoy/
549•bobbiechen•6h ago•218 comments

120k Lines of Rust: Inside the Nosdesk Backend

https://kyle.au/blog/nosdesk-backend-rust
32•kylephillipsau•2d ago•2 comments

Using XDG-Compliant Config Files (2024)

https://wxwidgets.org/blog/2024/01/using-xdg-compliant-config-files/
33•ankitg12•4d ago•7 comments

1worldflag: A blue dot on a transparent background

https://1worldflag.com/
160•davidbarker•21h ago•137 comments

Massachusetts bans sale of precise location data in new privacy rights bill

https://techcrunch.com/2026/06/08/massachusetts-votes-to-pass-new-privacy-rights-bill-that-bans-s...
228•01-_-•6h ago•34 comments

The Cypherpunk Library

https://www.cypherpunkbooks.com
349•yu3zhou4•15h ago•94 comments

How much of Thermo Fisher's antibody data has been manipulated?

https://reeserichardson.blog/2026/05/28/how-much-of-thermo-fishers-antibody-data-has-been-manipul...
391•mhrmsn•16h ago•86 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?