frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

GrapheneOS has been ported to Android 17

https://discuss.grapheneos.org/d/36469-grapheneos-has-been-ported-to-android-17-and-official-rele...
676•Cider9986•10h ago•293 comments

Running local models is good now

https://vickiboykis.com/2026/06/15/running-local-models-is-good-now/
1239•jfb•16h ago•491 comments

The founder's playbook: Building an AI-native startup

https://claude.com/blog/the-founders-playbook
7•e2e4•27m ago•4 comments

Humiliating IIS servers for fun and jail time

https://mll.sh/humiliating-iis-servers-for-fun-and-jail-time/
213•denysvitali•8h ago•50 comments

Wolfram Language and Mathematica Version 15, AI Assistant, Symbolic Music, More

https://writings.stephenwolfram.com/2026/06/launching-version-15-of-wolfram-language-mathematica-...
149•alok-g•8h ago•66 comments

TIL: You can make HTTP requests without curl using Bash /dev/TCP

https://mareksuppa.com/til/bash-dev-tcp-http-without-curl/
384•mrshu•14h ago•179 comments

Calvin and Hobbes and the price of integrity

https://therepublicofletters.substack.com/p/calvin-and-hobbes-and-the-price-of
389•pseudolus•15h ago•170 comments

GPT‑NL: a sovereign language model for the Netherlands

https://www.tno.nl/en/digital/artificial-intelligence/gpt-nl/
196•root-parent•13h ago•177 comments

Has AI already killed self-help nonfiction books?

https://tim.blog/2026/06/12/has-ai-already-killed-nonfiction/
263•imakwana•14h ago•283 comments

Subterranean fungi networks more than 100 quadrillion km in length

https://www.theguardian.com/science/2026/jun/11/arbuscular-mycorrhizal-fungi-plant-life-climate-g...
31•tosh•5d ago•2 comments

Stop Using JWTs

https://gist.github.com/samsch/0d1f3d3b4745d778f78b230cf6061452
353•dzonga•14h ago•204 comments

Stop Killing Games fails to secure EU law despite 1.3M signatures

https://www.dexerto.com/gaming/stop-killing-games-fails-to-secure-eu-law-despite-1-3m-signatures-...
171•slymax•5h ago•53 comments

Chameleon Ultra: a flashdrive sized NFC toolkit

https://github.com/RfidResearchGroup/ChameleonUltra
10•elisaado•2d ago•1 comments

But yak shaving is fun (2019)

https://parksb.github.io/en/article/32.html
249•parksb•17h ago•71 comments

SpaceX to buy Cursor for $60B

https://www.reuters.com/legal/transactional/spacex-buy-anysphere-60-billion-2026-06-16/
987•itsmarcelg•20h ago•1487 comments

The Amphibious Villagers of Indonesia

https://www.economist.com/interactive/1843/2026/06/12/the-amphibious-villagers-of-indonesia
21•haritha-j•2d ago•4 comments

Working in Glass

https://www.asimov.press/p/glass
25•bookofjoe•5d ago•1 comments

A brief tour of the PDP-11, the most influential minicomputer of all time (2022)

https://arstechnica.com/gadgets/2022/03/a-brief-tour-of-the-pdp-11-the-most-influential-minicompu...
70•jensgk•2d ago•28 comments

10Gb/s Ethernet: switching to a Broadcom SFP+ module

https://www.gilesthomas.com/2026/06/10g-ethernet-switching-to-broadcom-sfp-plus
131•gpjt•13h ago•122 comments

A Nipkow Disk Mechanical TV Simulator

https://analogtv.net/mechanical-lab
41•ambanmba•2d ago•5 comments

NetNewsWire Status

https://inessential.com/2026/06/15/netnewswire-status.html
50•droidjj•3h ago•8 comments

Show HN: cuTile Rust: Safe, data-race-free GPU kernels in Rust

https://github.com/nvlabs/cutile-rs
63•melihelibol•11h ago•12 comments

Qwen-Robot Suite: A Foundation Model Suite for Physical World Intelligence

https://qwen.ai/blog?id=qwen-robotsuite
164•ilreb•18h ago•28 comments

All about the IBM 1130 Computing System

http://ibm1130.org/
30•jruohonen•2d ago•11 comments

Apple's weird anti-nausea dots cured my car sickness

https://www.theverge.com/tech/942854/apple-vehicle-motion-cues-review-really-work
720•neilfrndes•15h ago•218 comments

Mechanical Watch (2022)

https://ciechanow.ski/mechanical-watch/
679•razin•20h ago•116 comments

Semiclassical Gravity Efficiently Solves NP-Complete Problems

https://arxiv.org/abs/2606.14806
10•ascarshen•4h ago•3 comments

Is Meta destroying its engineering organization?

https://newsletter.pragmaticengineer.com/p/why-is-meta-destroying-its-engineering
556•throwarayes•14h ago•484 comments

Frood, an Alpine Initramfs NAS (2024)

https://words.filippo.io/frood/
46•ethanpil•11h ago•12 comments

Apple is about to make Hide My Email useless

https://arseniyshestakov.com/2026/06/16/apple-is-about-to-make-hide-my-email-useless/
474•SXX•12h ago•289 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?