frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The bottleneck might be the air in the room

https://blog.mikebowler.ca/2026/07/03/co2-and-decision-making/
230•gslin•3h ago•141 comments

Agentic coding notes from Galapagos Island

https://danluu.com/ai-coding/#appendix-agentic-loops-and-writing-this-post
90•gm678•5h ago•34 comments

Performance per dollar is getting faster and cheaper

https://www.wafer.ai/blog/glm52-amd
246•latchkey•12h ago•83 comments

Mir Books – Books from the Soviet Era

https://mirtitles.org
72•clmul•3d ago•27 comments

Leanstral 1.5: Proof abundance for all

https://mistral.ai/news/leanstral-1-5/
232•programLyrique•11h ago•68 comments

Giant trees have no trouble pumping water to top branches: new research

https://news.exeter.ac.uk/faculty-of-environment-science-and-economy/giant-trees-have-no-trouble-...
200•hhs•11h ago•93 comments

Postgres data stored in Parquet on S3: LTAP architecture explained

https://www.databricks.com/blog/lakebase-ltap-rethinking-database-storage
23•andrenotgiant•2d ago•9 comments

Synthesis is harder than analysis

https://surfingcomplexity.blog/2026/07/03/synthesis-is-harder-than-analysis/
87•azhenley•7h ago•20 comments

Maybe you should learn something

https://www.marginalia.nu/log/a_135_learn/
92•tylerdane•6h ago•34 comments

Astrophysicists Puzzle over Webb's New Universe

https://www.quantamagazine.org/astrophysicists-puzzle-over-webbs-new-universe-20260702/
5•jnord•55m ago•0 comments

Steam Controller Auto-Charge – pilot to magnetic charging puck using CV

https://github.com/FossPrime/Steam-Controller-Auto-Charge
140•zdw•11h ago•28 comments

MSI Center – How to gain SYSTEM privileges in seconds

https://mrbruh.com/msicenter/
89•MrBruh•9h ago•28 comments

SearXNG: A free internet metasearch engine

https://github.com/searxng/searxng
214•theanonymousone•13h ago•56 comments

FreeBSD ate my RAM

https://crocidb.com/post/freebsd-ate-my-ram/
139•theanonymousone•14h ago•48 comments

Jamesob's guide to running SOTA LLMs locally

https://github.com/jamesob/local-llm
345•livestyle•19h ago•152 comments

The firefighting system of the Van der Heyden brothers in 17th century Amsterdam

https://worksinprogress.co/issue/how-amsterdam-invented-the-fire-department/
94•zdw•11h ago•16 comments

Odin, Wikipedia and engagement farming

https://katamari64.se/posts/2026/odin-wikipedia/
149•stock_toaster•10h ago•202 comments

Soatok's Informal Guide to Threat Models

https://soatok.blog/2026/06/30/soatoks-informal-guide-to-threat-models/
89•zdw•9h ago•12 comments

The Scanline Sweeper: A Glyph Rendering Algorithm [pdf]

https://rookandpossum.com/papers/scanline_sweeper_preprint.pdf
6•kouosi•2d ago•2 comments

Show HN: Classify mechanical faults using Contrastive Language-Audio Pretraining

https://github.com/adam-s/car-diagnosis
15•dataviz1000•2d ago•0 comments

David Beazley – Programming Courses

https://www.dabeaz.com/courses.html
83•gregsadetsky•4h ago•26 comments

New serious vulnerabilities spiked around release of Claude Mythos Preview

https://epoch.ai/data-insights/cve-severity-spike
106•cubefox•12h ago•32 comments

Reverse-engineering Codemasters' BIGF archive format in Ruby

https://davidslv.uk/2026/06/30/reading-binary-in-ruby.html
19•davidslv•3d ago•4 comments

Study reveals what people see when they read lips

https://news.ku.edu/news/article/study-reveals-what-people-really-see-when-they-read-lips
14•giuliomagnifico•3d ago•2 comments

Costco is the anti-Amazon

https://phenomenalworld.org/analysis/the-anti-amazon/
410•bookofjoe•18h ago•380 comments

Applied Category Theory Course (2018)

https://math.ucr.edu/home/baez/act_course/index.html
111•measurablefunc•13h ago•8 comments

Gone but Not Forgotten: Recovering the Dead Web

https://blog.archive.org/2026/04/23/gone-but-not-forgotten-recovering-the-dead-web/
68•wslh•3d ago•21 comments

Unearthing the Reality of "Zombie Energy Systems" in Africa's Energy Transition

https://www.catf.us/resource/unearthing-reality-zombie-energy-systems-africas-energy-transition/
3•bryanrasmussen•2h ago•0 comments

Factories are just rooms

https://interconnected.org/home/2026/07/03/factories
247•arbesman•18h ago•102 comments

Infracost (YC W21) Is Hiring a Marketing Lead to Shift FinOps Left

https://www.ycombinator.com/companies/infracost/jobs/YTJcFwr-marketing-lead
1•akh•13h ago
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?