frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Civic Hygiene – avoid building technologies that could be used by a police state (2013)

https://shkspr.mobi/blog/2013/11/civic-hygiene/
302•felineflock•1h ago•183 comments

A joke domain purchase turned in geopolitical warfare

https://sprocketfox.io/xssfox/2026/08/19/sondehub-and-war/
398•kareiva•6h ago•53 comments

Geolocating a random island using geometry and CUDA programming

https://yassa9.github.io/osint/gralhix-004/
275•yassa9•5h ago•51 comments

Launch HN: OneCLI (YC S26) – OSS sandboxed agent harness for teams

https://github.com/onecli/onecli
20•guyb3•1h ago•4 comments

Ornith-1.5: From Self-Scaffolding to Self-Improvement

https://ornith.ai/ornith_1_5.html
71•CommonGuy•2h ago•11 comments

OpenLogi

https://openlogi.org/en
1355•amatheus•15h ago•369 comments

Remote workers report the highest well-being in study of 7,700 employees

https://www.colorado.edu/today/2026/08/12/remote-workers-report-highest-well-being-study-7700-emp...
181•downbad_•2h ago•84 comments

Extensible Software in the Age of LLMs

https://jeremymorrell.dev/blog/extensible-software-in-the-age-of-llms/
19•coloneltcb•1h ago•11 comments

Moderna reports first positive Phase 3 for mRNA neoantigen therapy in melanoma

https://twitter.com/NoubarAfeyan/status/2090050162441752787
335•heydenberk•4h ago•131 comments

Devices with GrapheneOS support should be available in 2027

https://grapheneos.social/@GrapheneOS/117078064184215730
484•exceptione•5h ago•291 comments

PostgreSQL for Everything

https://www.raphaelbauer.com:443/posts/postgresql-everything/
178•karlmush•4h ago•125 comments

Chain-of-Thought Reasoning in the Wild Is Not Always Faithful

https://arxiv.org/abs/2503.08679
16•florianherrengt•1h ago•7 comments

Air Theremin – a browser theremin you play by waving at your webcam

https://theremin.bizibah.com/
177•gurov•7h ago•69 comments

How Kubernetes Probes Work

https://ngrok.com/blog/probes
11•cyndunlop•1h ago•0 comments

Microgpt in pure C hits 10M tps on Apple m5

https://github.com/vixhal-baraiya/microgpt-c
62•dhorthy•1d ago•21 comments

Mathematics in the Age of AI

https://arxiv.org/abs/2608.16753
17•jonbaer•2h ago•9 comments

Taffy: A flexible, high-performance, cross-platform UI layout library

https://github.com/DioxusLabs/taffy
69•robin_reala•6d ago•27 comments

A decades-old bug in Knuth's long division (TAOCP Vol II, Algorithm 4.3.1D)

https://kolja.rs/algorithm-d/
128•nk_kolja•6d ago•24 comments

New Casio F-B100W – Upgrade to the iconic F-91W after 40 years

https://www.casio.com/uk/watches/casio/product.F-B100W-1A/
119•__fst__•2h ago•95 comments

Show HN: Frugal Tokens – explore costs and usage across coding agents

https://demo.frugaltokens.com/
11•dpc94•38m ago•2 comments

Cerebras CS-4

https://www.cerebras.ai/cs4
415•sunils34•17h ago•252 comments

Being ambitious and being a dad

https://nicholascharriere.com/blog/being-ambitious-and-being-a-dad/
817•nichochar•3d ago•629 comments

Rings forged from meteorites may have been fashionable among ancient Greek elite

https://phys.org/news/2026-08-forged-meteorites-fashionable-ancient-greek.html
93•pseudolus•5d ago•36 comments

A recipe for drone racing with reinforcement learning

https://mrandri19.github.io/2026/07/19/drone-racing-with-reinforcement-learning.html
11•daww•3d ago•1 comments

Activation Energy is a good model for a lot of things

https://homosabiens.substack.com/p/activation-energy-is-a-good-model
132•surprisetalk•5d ago•34 comments

Supersonic Trebuchet [video]

https://www.youtube.com/watch?v=Co57SfcT-h0
217•CharlesW•4d ago•94 comments

Show HN: Nikon F100 Film Camera Repair Notes

https://github.com/enthdegree/f100
29•enthdegree•4d ago•16 comments

A 3D fruit fly on macOS desktop powered by the real FlyWire connectome

https://github.com/DenisSergeevitch/desktop-fly
362•phoenix120•19h ago•169 comments

Palomar: A registry of Lean verified mathematics

https://terrytao.wordpress.com/2026/08/18/palomar-a-registry-of-lean-verified-mathematics/
163•matt_d•15h ago•37 comments

How does IKEA come up with names for its products?

https://www.ikea.com/se/en/customer-service/knowledge/articles/6f564c4d-2ccc-46de-b643-545a3948dc...
438•NaOH•23h ago•308 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?