frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Codex on AWS bedrock bug causing 10x charges

https://github.com/openai/codex/issues/37674
99•TheP1000•3h ago•31 comments

The August 17 outage

https://github.blog/news-insights/company-news/the-august-17-outage-and-the-work-ahead/
456•0xedb•11h ago•516 comments

I like 'em thick: an apology to my English teachers

https://www.experimental-history.com/p/i-like-em-thick
682•Ariarule•2d ago•283 comments

HTML Can Do That

https://chrisburnell.com/html-can-do-that/
710•encyclopedism•1d ago•178 comments

The Religious Experience of Philip K. Dick by R. Crumb (1986)

https://philipdick.com/resources/miscellaneous/the-religious-experience-of-philip-k-dick-by-r-cru...
13•wise_blood•1h ago•3 comments

Malicious Rust crate Arrayref runs a build-time payload

https://safedep.io/arrayref-proc-macro1-rust-build-time-malware/
466•abhisek•17h ago•394 comments

Ox Alpha

https://openrouter.ai/stealth/ox-alpha
101•mtokmak06•6h ago•81 comments

I should have loved biology (2020)

https://jsomers.net/i-should-have-loved-biology/
251•tyre•13h ago•98 comments

Japan tried to build an operating system for the world, the US intervened

https://www.xda-developers.com/japan-tried-build-operating-system-entire-world-us-government-inte...
37•rdmuser•1h ago•9 comments

There's no such thing as a small software team anymore

https://jacob.gold/posts/theres-no-such-thing-as-a-small-software-team/
75•mooreslaw•6h ago•119 comments

Captain Zilog

https://www.zilog.com/captain_zilog/
42•rbanffy•3d ago•5 comments

Version Control for Everything

https://tyoverby.com/posts/version-control-for-everything-else/
6•evakhoury•3d ago•0 comments

Launch HN: Vendo (YC S26) – Let users build features on top of your product

https://github.com/runvendo/vendo
34•yousefh409•15h ago•18 comments

Why aren't smart people happier? (2022)

https://www.experimental-history.com/p/why-arent-smart-people-happier
147•rafaelc•12h ago•199 comments

CIA funding helped keep NeXT afloat in the 80s

https://www.wsj.com/tech/steve-jobs-apple-next-cia-161b65f9?st=NWWds1&reflink=desktopwebshare_per...
390•EwanG•1d ago•233 comments

Make a 6-Tesla-class high-temperature superconducting dipole magnet at 4.2 K

https://journals.aps.org/prab/abstract/10.1103/4nhs-bkwh
34•supermagnet•6d ago•6 comments

Show HN: Huzzah – a novel approach to coding with AI

https://www.danielvaughn.dev/posts/huzzah/
283•danielvaughn•11h ago•149 comments

AI companies destroy physical books – let's scan rare books before it's too late

https://annas-archive.gl/blog/physical-destruction.html
267•Cider9986•4h ago•190 comments

Vomit: Clean up Claude 5's token output with a separate LLM

https://github.com/zachahn/vomit
234•Bluestein•15h ago•235 comments

Linux 7.2

https://www.igalia.com/2026/08/19/Linux-72-Released.html
233•mariuz•15h ago•78 comments

AliExpress runs silent WebAudio fingerprinting that breaks Bluetooth multipoint

https://blog.laserphile.com/2026/08/aliexpress-webpage-keeping-multipoint.html
946•emctech•20h ago•297 comments

Speeding Up (Small) Ruby Hashes

https://byroot.github.io/ruby/performance/2026/08/13/speeding-up-ruby-hashes.html
45•arto•1w ago•0 comments

Git at any scale

https://cursor.com/blog/git-at-any-scale
320•meetpateltech•2d ago•103 comments

Anti-AI fonts are useless and harmful

https://blog.yaros.ae/anti-ai-fonts-are-useless-and-harmful/
146•speckx•15h ago•105 comments

Stop Anthropomorphizing Intermediate Tokens as Reasoning/Thinking Traces

https://arxiv.org/abs/2504.09762
223•nunodonato•1d ago•138 comments

SpacetimeDB: A Short Technical Review

https://strn.cat/posts/spacetime/
81•hurrrr•11h ago•17 comments

Consumer Rights Wiki

https://consumerrights.wiki/w/Main_Page
267•gregsadetsky•12h ago•49 comments

Project Cybersyn (2022)

https://bactra.org/notebooks/cybersyn.html
58•cassepipe•13h ago•45 comments

How to compromise your system with a job interview

https://www.codedge.de/posts/how-to-compromise-your-system-with-a-job-interview
151•codedge•15h ago•132 comments

Every Model Cheats

https://dreadnode.io/research/every-model-cheats-prompt-level-mitigation-of-cheating-on-offensive...
96•vga805•16h 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?