frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

GPT-6 Astra

https://openai.com/index/gpt-6-astra/
1335•kibae•7h ago•1057 comments

.name Termination

https://neil.fraser.name/news/2026/09/03/
1373•pavel_lishin•11h ago•379 comments

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

https://inference-docs.cerebras.ai/models/overview
455•altertable•7h ago•132 comments

The largest electric aircraft just flew [video]

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

New type of dice guarantees no tie when deciding who goes first

https://www.cbc.ca/lite/story/9.7328614
30•colinprince•2d ago•21 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
160•speckx•9h ago•54 comments

Which tools do Claude, Codex and Cursor choose? We measured 17k runs to find out

https://armature.tech/blog/which-tools-coding-agents-install
102•screm•4h ago•31 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/
200•rabahs•11h ago•62 comments

K2 Horizon: A connected fleet of six open models

https://ifm.ai/blog/k2/
257•karimf•10h ago•84 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...
117•thread_id•1d ago•65 comments

Any Human Ever – One life, drawn at random from all who have ever lived

https://anyhumanever.com/
471•thinkingemote•11h ago•237 comments

Xanadu was waiting for agents

https://zed.dev/blog/agentic-xanadu
87•nsm•2d ago•34 comments

GLP-1s are being linked to fewer serious infections, including TB

https://gizmodo.com/ozempic-and-other-glp-1s-are-being-linked-to-fewer-serious-infections-includi...
56•gumby•3h ago•36 comments

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

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

1Password Replied to My Disappointment

https://nicolalosito.it/2026/09/03/1password-replied-to-my-disappointment/
7•backlit4034•58m ago•0 comments

Tasklet (YC P26) Is Hiring a Customer Success Engineer

https://tasklet.ai/careers/customer-success-engineer
1•mayop100•4h ago

Virtual Threads for a scripting language in Java 8 without Loom

https://jactl.io/blog/2026/08/28/jactl-virtual-threads
5•jaccomo•2d ago•1 comments

Audacity 4.0

https://github.com/audacity/audacity/releases/tag/Audacity-4.0.0
1051•ClydeN•15h ago•234 comments

Unusual Suspects

https://neal.fun/unusual-suspects/
110•beeperboy95•1d ago•24 comments

OpenAI's GPT-6 Astra on ARC-AGI-3

https://arcprize.org/blog/astra
164•vignesh_warar•6h ago•99 comments

How concerned should we be about Astra's recurrent architecture?

https://www.lesswrong.com/posts/PLisnSFir8y5AHkmP/how-concerned-should-we-be-about-astra-s-recurrent
92•yurivish•8h ago•50 comments

Ask HN: Are others seeing Google's reCAPTCHA rejecting Firefox users?

32•Animats•6h ago•11 comments

The true horror of Edgar Allan Poe’s stories lies in their confessions

https://yalereview.org/article/emily-ogden-edgar-allan-poe
55•lermontov•1d ago•21 comments

A PCB business card with a batteryless LED, powered by the phone that taps it

https://www.kevin.md/the-business-card-that-lights-up.md/
38•thekevintang•2d ago•11 comments

Ask HN: Who is using MCP in production?

14•sukit•14h ago•22 comments

Google Antigravity TOS: 3rd party usage can get Google account suspended

https://twitter.com/GergelyOrosz/status/2095453567955968398
281•tosh•14h ago•194 comments

The asteroid currently hitting front end web development

https://nolanlawson.com/2026/08/23/the-asteroid-currently-hitting-frontend-web-development/
77•codechicago277•6h ago•83 comments

How to get a free .arpa domain

https://hawksley.dev/blog/get-free-arpa-domain
116•ethanhawksley•3d ago•13 comments

Ask HN: Why were OpenAI, Claude, and Grok simultaneously down?

330•halcdev•10h ago•527 comments

The browser's main thread is expensive

https://kciter.so/posts/the-expensive-main-thread/en/
376•kciter•2d ago•133 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?