frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

John Deere owners will get the right to repair equipment under FTC settlement

https://apnews.com/article/john-deere-right-to-repair-agriculture-equipment-cb7514ffedb95c130a976...
508•djoldman•5h ago•102 comments

Chatto is now open source

https://www.hmans.dev/blog/chatto-is-open-source
827•speckx•13h ago•217 comments

Cloudflare Drop

https://www.cloudflare.com/drop/
329•coloneltcb•9h ago•157 comments

Separating signal from noise in coding evaluations

https://openai.com/index/separating-signal-from-noise-coding-evaluations/
187•sk4rekr0w•7h ago•66 comments

Remote Attestation

https://www.liamcvw.com/p/remote-attestation
51•lcvw•4h ago•29 comments

Mistral's Robostral Navigate: a state of the art robotics navigation model

https://mistral.ai/news/robostral-navigate/
438•ottomengis•14h ago•96 comments

Patching MechCommander's "left arm bug" for fun and profit

https://mhloppy.com/2026/05/mechcommander-weapons-left-arm-bug-fix/
37•Narann•3d ago•11 comments

Show HN: Microsoft releases Flint, a visualization language for AI agents

https://microsoft.github.io/flint-chart/#/
235•chenglong-hn•11h ago•91 comments

We made Grok 4.5, GPT-5.5, and Claude build the same apps

https://www.tryai.dev/blog/grok-4.5-vs-gpt-5.5-vs-claude-build-off
112•hershyb_•5h ago•55 comments

Unicode's transliteration rules are Turing-complete

https://seriot.ch/computation/uts35/
60•beefburger•19h ago•19 comments

I think I have LLM burnout

https://www.alecscollon.com/blog/llm-burnout/
222•sosodev•2h ago•158 comments

Benchmarking coding agents on Databricks' multi-million line codebase

https://www.databricks.com/blog/benchmarking-coding-agents-databricks-multi-million-line-codebase
29•tanelpoder•7h ago•7 comments

Show HN: Yamanote.fun – A complete soundscape for Tokyo's Yamanote line

https://www.yamanote.fun/
88•madebymagnolia•1d ago•19 comments

Cargo-nextest: 3x faster than cargo test, per-test isolation, first-class CI

https://nexte.st/
16•nateb2022•3d ago•2 comments

Grok 4.5

https://x.ai/news/grok-4-5
529•BoumTAC•10h ago•698 comments

Turning a pile of documents into a searchable useable knowledge base

https://github.com/linuxrebel/DocuBrowser
102•linuxrebe1•8h ago•23 comments

FAANG Simulator

https://www.abeyk.com/escape-the-rat-race/
345•nerdbiscuits•8h ago•133 comments

GPT‑Live

https://openai.com/index/introducing-gpt-live/
644•logickkk1•11h ago•425 comments

Rewriting Bun in Rust

https://bun.com/blog/bun-in-rust
394•afturner•6h ago•206 comments

Apache Shiro security framework releases 3.0.0

https://shiro.apache.org/blog/2026/06/apache-shiro-300-released.html
12•lprimak•2d ago•0 comments

TypeScript 7

https://devblogs.microsoft.com/typescript/announcing-typescript-7-0/
514•DanRosenwasser•12h ago•204 comments

Decoding the obfuscated bash script on a Uniqlo t-shirt

https://tris.sherliker.net/blog/obfuscated-self-evaluating-bash-script-by-cdn-akamai-being-suppli...
1332•speerer•20h ago•211 comments

A bug which affected only left handed users

https://shkspr.mobi/blog/2026/07/a-bug-which-only-affected-left-handed-users/
100•sixhobbits•15h ago•52 comments

New Sweden: the US's long-lost 'secret' colony

https://www.bbc.com/travel/article/20260629-new-sweden-the-uss-long-lost-secret-colony
72•bookofjoe•9h ago•19 comments

MIRA: Multiplayer Interactive World Models Trained on Rocket League

https://mira-wm.com/
45•ethanlipson•4h ago•9 comments

Beyond Git: Real-Time Version Control for Godot – Lilith Duncan – GodotCon 2026 [video]

https://www.youtube.com/watch?v=CAJ_iIedx_I
27•surprisetalk•6d ago•1 comments

Cloudflare Meerkat - Globally distributed consensus

https://blog.cloudflare.com/meerkat-introduction/
237•bobnamob•15h ago•47 comments

My road trip with the do-gooding cactus smugglers

https://economist.com/1843/2026/03/06/my-road-trip-with-the-do-gooding-cactus-smugglers
28•andsoitis•3d ago•1 comments

OpenMandriva: Statement regarding attempted distribution sabotage

https://forum.openmandriva.org/t/statement-regarding-attempted-distribution-sabotage/8997
86•workethics•10h ago•16 comments

Ergo: Long Form Philosophy Lectures

https://ergo.org/
5•agnishom•1h ago•0 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?