frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

DSpark: Speculative decoding accelerates LLM inference [pdf]

https://github.com/deepseek-ai/DeepSpec/blob/main/DSpark_paper.pdf
477•aurenvale•3h ago•159 comments

Fintech Engineering Handbook

https://w.pitula.me/fintech-engineering-handbook/
136•signa11•2h ago•40 comments

OpenRA

https://www.openra.net/
29•tosh•1h ago•9 comments

If you can't hold it, you don't own it

https://dervis.de/physical/
36•cemdervis•1h ago•7 comments

Beer CSS – Build material design in record time

https://www.beercss.com
61•Seb-C•4h ago•20 comments

Previewing GPT‑5.6 Sol: a next-generation model

https://openai.com/index/previewing-gpt-5-6-sol/
1035•minimaxir•20h ago•659 comments

Long Wave radio era set to end with switch-off

https://www.economist.com/britain/2026/06/25/the-bbc-switches-off-its-oldest-service
72•edward•1d ago•77 comments

Nox Metals (YC S25) Is Hiring SWE

https://www.ycombinator.com/companies/nox-metals/jobs/M1f1enD-software-engineer
1•zane_heng•1h ago

WordStar: A Writer's Word Processor (1996)

https://www.sfwriter.com/wordstar.htm
114•droidjj•9h ago•53 comments

Linux on Older Hardware: The Complete Revival Guide

https://www.fosslinux.com/158206/linux-on-older-hardware-revival-guide.htm
92•tapanjk•2d ago•49 comments

Why does kinetic energy increase quadratically, not linearly, with speed? (2011)

https://physics.stackexchange.com/questions/535/why-does-kinetic-energy-increase-quadratically-no...
276•ProxyTracer•14h ago•134 comments

The US Army Issued Ocarinas to Soldiers in World War II

https://www.flutetunes.com/articles/my-flute-goes-to-war/
32•tomcam•2d ago•16 comments

Faster KNN search in Manticore: 2-pass HNSW, batched distances, and AVX-512

https://medium.com/@s_nikolaev/faster-knn-search-in-manticore-2-pass-hnsw-batched-distances-and-a...
28•snikolaev•1d ago•2 comments

Cultures of Making and Relating

https://blog.khinsen.net/posts/2026/06/25/cultures.html
9•akkartik•1d ago•0 comments

Task Failed Successfully: Saturating NIC and Disk Bandwidth

https://blog.mrcroxx.com/posts/task-failed-successfully-saturating-nic-and-disk-bandwidth/
3•MrCroxx•3d ago•1 comments

U.S. allows Anthropic to release Mythos AI to ‘trusted’ US organizations

https://www.semafor.com/article/06/27/2026/us-releases-powerful-anthropic-model-mythos-to-some-us...
481•bobrenjc93•14h ago•611 comments

MicroVMs: Run isolated sandboxes with full lifecycle control

https://aws.amazon.com/blogs/aws/run-isolated-sandboxes-with-full-lifecycle-control-aws-lambda-in...
344•justincormack•4d ago•189 comments

AI in mathematics is forcing big questions

https://spectrum.ieee.org/ai-in-mathematics
154•rbanffy•14h ago•126 comments

OpenTTD 16.0-Beta1

https://www.openttd.org/news/2026/06/25/openttd-16-0-beta1
194•untilted•8h ago•35 comments

Jest/Vitest interactive course (runs in the browser)

https://howtotestfrontend.com/courses/jest-vitest-fundamentals
18•howToTestFE•2d ago•8 comments

Anatomy of a Failed (Nation-State?) Attack

https://grack.com/blog/2026/06/25/dissecting-a-failed-nation-state-attack/
86•signa11•10h ago•14 comments

Fusion Programming Language

https://fusion-lang.org/
92•efrecon•3d ago•41 comments

Hellishly Slow Level 13 Deflate Compression

https://kirill.korins.ky/articles/hellishly-slow-level-13-deflate-compression/
73•zX41ZdbW•4d ago•21 comments

IBM MCGA Gate Array Reverse Engineering

https://github.com/schlae/IBM_MCGA
46•userbinator•7h ago•8 comments

U.S. government will decide who gets to use GPT-5.6

https://www.washingtonpost.com/technology/2026/06/26/openai-says-us-government-will-vet-users-its...
1076•alain94040•18h ago•1136 comments

International investment and local rules push prices up faster than supply

https://news.mccombs.utexas.edu/research/foreign-funds-help-make-housing-unaffordable/
102•hhs•13h ago•36 comments

The gap between open weights LLMs and closed source LLMs

https://blog.doubleword.ai/frontier-os-llm
236•kkm•15h ago•190 comments

Ultrasound imaging of the brain

https://alephneuro.com/blog/ultrasound-brain
293•rossant•1d ago•115 comments

Show HN: Hacker News on a train station-style flip board

https://popflame.quickish.space/hn-flipboard/
83•PaybackTony•12h ago•18 comments

Om

https://daringfireball.net/2026/06/om
432•throw0101a•13h ago•19 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?