frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

AMD Strix Halo RDMA Cluster Setup Guide

https://github.com/kyuz0/amd-strix-halo-vllm-toolboxes/blob/main/rdma_cluster/setup_guide.md
43•jakogut•1h ago•2 comments

Show HN: Decomp Academy – Learn to decompile GameCube games into matching C

https://decomp-academy.dev
28•jackpriceburns•1h ago•10 comments

Choosing a Public DNS Resolver

https://evilbit.de/dns-resolver-guide.html
66•pawal•4h ago•23 comments

Anonymous GitHub account mass-dropping undisclosed 0-days

https://github.com/bikini/exploitarium
685•binyu•12h ago•270 comments

OpenRA

https://www.openra.net/
594•tosh•14h ago•117 comments

Marfa Public Radio Puts You to Sleep

https://www.marfapublicradio.org/podcast/marfa-public-radio-puts-you-to-sleep
6•reaperducer•22m ago•0 comments

Response to AI slop is from Robin Williams

https://jayacunzo.com/blog/your-move-chief
35•herbertl•1h ago•6 comments

AI learns the “dark art” of RFIC design

https://spectrum.ieee.org/ai-radio-chip-design
195•Brajeshwar•3d ago•129 comments

Enhancing X11 Application Security with LXC

https://dobrowolski.dev/article/enhancing-x11-application-security-with-lxc/
36•shirozuki•5h ago•10 comments

Space Shuttle Endeavour's 20-story vertical display

https://californiasciencecenter.org/about-us/samuel-oschin-air-and-space-center/go-for-stack
18•uticus•1d ago•1 comments

Fintech Engineering Handbook

https://w.pitula.me/fintech-engineering-handbook/
487•signa11•16h ago•163 comments

Regular expressions that work "everywhere"

https://www.johndcook.com/blog/2026/06/23/regex-everywhere/
18•ColinWright•2d ago•7 comments

The case for physical media ownership

https://dervis.de/physical/
378•cemdervis•15h ago•250 comments

Turn your site into a place people can bump into each other

https://cauenapier.com/blog/townsquare_release/
163•eustoria•9h ago•77 comments

Suspicious Discontinuities (2020)

https://danluu.com/discontinuities/
215•tosh•13h ago•64 comments

Asian AI startups launch Mythos-like models

https://techcrunch.com/2026/06/27/asian-ai-startups-launch-mythos-like-models-as-anthropics-expor...
153•bogdiyan•13h ago•137 comments

How do you keep Web MIDI from crashing a 1983 synthesizer?

https://knob.monster/how-do-you-keep-web-midi-from-crashing-a-1983-synthesizer
27•halfradaition•3d ago•12 comments

IP Crawl: Living atlas of open webcams discovered on the public internet

https://ipcrawl.com/
250•arm32•7h ago•128 comments

Reducing tick density along recreational trails in Ottawa, Canada

https://www.sciencedirect.com/science/article/pii/S1877959X26000476
161•bushwart•3d ago•91 comments

Post-Mythos Cybersecurity: Keep calm and carry on

https://cephalosec.com/blog/cybersecurity-in-the-post-mythos-era-keep-calm-and-carry-on/
135•Versipelle•12h ago•40 comments

Show HN: Adrafinil – keep a lid-closed Mac awake only while agents work

https://github.com/kageroumado/adrafinil
93•kageroumado•6h ago•55 comments

DSpark: Speculative decoding accelerates LLM inference [pdf]

https://github.com/deepseek-ai/DeepSpec/blob/main/DSpark_paper.pdf
730•aurenvale•17h ago•306 comments

What Ozempic does to the gut-brain axis

https://www.psychologytoday.com/au/blog/mood-by-microbe/202606/what-ozempic-does-to-the-gut-brain...
86•randycupertino•5h ago•181 comments

Michigan spent $1.8B and only created 602 jobs

https://www.msn.com/en-us/money/general/michigan-spent-1-8-billion-and-only-created-602-jobs/ar-A...
127•littlexsparkee•5h ago•55 comments

Supabase (YC S20) Is Hiring for Multigres

https://jobs.ashbyhq.com/supabase/2e718684-4f75-4a99-8d6b-3b6bd44e4228
1•awalias•9h ago

One man, two kernels, and a lot of RISC-V

https://www.theregister.com/software/2026/06/26/one-man-two-kernels-and-a-lot-of-risc-v/5262858
80•LorenDB•1d ago•6 comments

Paradise Revisited: What Darwin Saw in the Galápagos

https://www.theatlantic.com/magazine/2026/08/writers-way-galapagos-charles-darwin-travel/687480/
38•benbreen•3d ago•1 comments

The eerie interface of man and machine (Life Magazine, October 1967)

https://blog.jgc.org/2026/06/the-eerie-interface-of-man-and-machine.html
30•Brajeshwar•3d ago•1 comments

How H-E-B became Texas' most beloved brand (2024)

https://texashighways.com/culture/how-heb-became-texas-most-beloved-brand/
99•NaOH•3d ago•92 comments

Show HN: Starglyphs - A constellation puzzle game based on Euler paths

https://starglyphs.com
15•telman17•4h ago•3 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?