frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

OpenAI Submits S-1 Draft to SEC

https://openai.com/index/openai-submits-confidential-s-1/
243•hackerBanana•3h ago•146 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
353•g0xA52A2A•4h ago•112 comments

Siri AI

https://www.apple.com/apple-intelligence/
371•0xedb•6h ago•310 comments

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

https://vorpus.github.io/performativeUI/
739•lizhang•10h ago•149 comments

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

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

Apple Core AI Framework

https://developer.apple.com/documentation/coreai/
162•hmokiguess•5h ago•27 comments

EU-banned pesticides found in rice, tea and spices

https://www.foodwatch.org/en/eu-banned-pesticides-found-in-rice-tea-and-spices
214•john-titor•8h ago•82 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
527•1vuio0pswjnm7•12h ago•396 comments

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

https://gitdot.io/
123•baepaul•7h ago•113 comments

Looking Forward to Postgres 19: Query Hints

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

Why are cells small?

https://burrito.bio/essays/what-limits-a-cells-size
101•mailyk•5h ago•44 comments

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

https://martinalderson.com/posts/xais-new-rental-business/
374•martinald•9h ago•296 comments

FrontierCode

https://cognition.ai/blog/frontier-code
80•streamer45•3h ago•18 comments

Apple reveals new AI architecture built around Google Gemini models

https://www.macrumors.com/2026/06/08/apple-reveals-new-ai-architecture/
311•unclefuzzy•5h ago•296 comments

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

128•aryamaan•6h ago•244 comments

Games Between Programs: The Ruliology of Competition

https://writings.stephenwolfram.com/2026/06/games-between-programs-the-ruliology-of-competition/
6•andromaton•3d ago•0 comments

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

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

Doing Something That's Never Been Done Before

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

AI is slowing down

https://www.wheresyoured.at/ai-is-slowing-down/
360•crescit_eundo•8h ago•382 comments

Fooling Go's X.509 Certificate Verification

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

OCaml Onboarding: Introduction to the Dune build system

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

1worldflag: A blue dot on a transparent background

https://1worldflag.com/
166•davidbarker•22h ago•142 comments

Switzerland wil have a referendum to cap population at 10M

https://www.admin.ch/en/sustainability-initiative
225•napolux•5h ago•450 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...
400•mhrmsn•17h ago•87 comments

Stop the Apple Music app from launching

https://lowtechguys.com/musicdecoy/
562•bobbiechen•7h ago•223 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...
244•01-_-•7h ago•37 comments

Using XDG-Compliant Config Files (2024)

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

Are you expected to run five Python type-checkers now?

https://pyrefly.org/blog/too-many-type-checkers/
133•ocamoss•12h ago•151 comments

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

https://github.com/octalide/mach
6•octalide•1h ago•1 comments

Apple WWDC 2026

https://www.apple.com/apple-events/event-stream/
235•nextstep•7h ago•454 comments
Open in hackernews

Looking Forward to Postgres 19: Query Hints

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

Comments

crimsonnoodle58•1h ago
> How many of us have toggled enable_seqscan to off to force an index scan? Or thrown an OFFSET 0 into a subquery to prevent the planner from flattening it?

enable_nestloop = off here.

For us, joining many complex views quickly trips the planner up, so I'm really glad to see this.

> They break on upgrades.

The irony is so does the planner. I've seen queries working perfectly fine in older PG's suddenly run away in newer versions. So hints will actually bring stability.

robertlagrant•1h ago
I'm not an expert in database hints, but the syntax looks very readable and composable. That's great thing to have got right.
lfittl•18m ago
Its also worth reading the original post by Robert Haas (the author of pg_plan_advice) on motivation/design: https://rhaas.blogspot.com/2026/03/pgplanadvice-plan-stabili...

Also, I'll add my perspective: I think "EXPLAIN (PLAN_ADVICE)" is a key piece to making this a plan stability feature, not (just) a hinting feature. The extensibility/framework pg_plan_advice adds is a foundation, that over time will over time address the age-old "Postgres doesn't have hints" problem, even if the initial release doesn't check all the boxes yet, e.g. no way to use advice for adjusting row/join estimates.

To give an example on extensibility: Some people that I've spoken to are asking "but why is it not a comment-style hint". There are reasons why Postgres didn't go that way for this release (comment parsing in core is non-existent today, and comments don't work correctly e.g. for functions), but its easy to write an extension that sets up an advisor hook to parse comments: https://github.com/pganalyze/pg_advice_comment