frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Auto-research with codex: How I achieved a 232x Faster Kernel

https://sankalp.bearblog.dev/autoresearch/
39•tosh•1h ago•7 comments

The other Sean Byrne doesn't exist

https://conic.al/writing/the-other-sean-byrne-doesnt-exist/
239•rdl•8h ago•119 comments

Qwen 3.8 27B

https://huggingface.co/Qwen/Qwen3.8-27B-FP8
1198•erdaltoprak•21h ago•718 comments

The mathematical beauty of hyperbezier curves

https://linebender.org/blog/hyperbezier/
36•raphlinus•5d ago•1 comments

Using GCC's Nested Functions with Wide Pointers and No Trampolines II

https://uecker.codeberg.page/2026-07-14.html
34•uecker•4h ago•14 comments

Going Dark, and the era of law enforcement hacking

https://blog.cryptographyengineering.com/2026/08/14/everything-is-about-to-go-dark/
366•vslira•15h ago•171 comments

Show HN: Eigendrum - Draw any shape and hear what it sounds like as a drum

https://baselashraf81.github.io/eigendrum/
36•BaselAshraf81•4d ago•7 comments

In 1962, Egypt's Missile Program Lost Its Key Scientist Without a Trace

https://www.popularmechanics.com/military/a73358518/nazi-rocket-scientist-disappearance/
60•bookofjoe•2d ago•35 comments

Understanding WCAG 2.2 as ePub and PDF

https://doeken.org/wcag-ebook
32•doekenorg•2d ago•2 comments

The Color of White Light

https://ludens.cl/photo/spectra/spectra.html
6•xk3•3d ago•1 comments

Google is making private AI practical with homomorphic encryption

https://blog.google/security/how-google-is-making-private-ai-practical-with-homomorphic-encryption/
421•u1hcw9nx•20h ago•256 comments

Show HN: ThoughtDAG – An editable context graph for LLM conversations

https://chenxiachan.github.io/thoughtdag/
52•chatchan•7h ago•14 comments

Firefox is now the last major browser that still supports uBlock Origin

https://www.pcworld.com/article/3212428/firefox-is-now-the-last-major-browser-that-still-supports...
1204•DemiGuru•17h ago•465 comments

RustDesk now supports true unattended remote access on Wayland

https://rustdesk.com/blog/unattended-remote-access-wayland/
312•rustdesk•20h ago•129 comments

Magnitude 7.7 Earthquake – 68 km NNW of Ende, Indonesia

https://earthquake.usgs.gov/earthquakes/eventpage/us6000tkt2/executive
206•Bender•11h ago•51 comments

Show HN: Silent Shark – tactical map-based WWII submarine sim

https://silentshark.app/
44•epaga•2d ago•17 comments

Coin-sized device can hack a Boeing 737

https://www.wired.com/story/this-coin-sized-device-can-hack-a-boeing-737/
99•_tk_•2d ago•70 comments

eigendrum

https://eigendrum.com/#p=circle
182•bookofjoe•14h ago•51 comments

AI by Hand

https://www.byhand.ai/
327•sans_souse•20h ago•23 comments

Maximizing the value of your Claude Code sessions

https://claude.com/blog/maximizing-the-value-of-your-claude-code-sessions
255•twapi•20h ago•136 comments

Simplifying and Refactoring Introductory Calculus (2018)

https://arxiv.org/abs/1811.03459
103•E-Reverance•12h ago•53 comments

Unearthing a 31 year old Easter egg in Ecco the Dolphin

https://32bits.substack.com/p/under-the-microscope-ecco-the-dolphin-98c
103•bbayles•2d ago•22 comments

Debian has begun voting on the future of AI/LLM contributions

https://lists.debian.org/debian-devel-announce/2026/08/msg00002.html
38•matheusmoreira•3h ago•25 comments

This Hi-Fi Tape Recorder Changed Radio Forever

https://spectrum.ieee.org/magnetophon-laugh-track
52•Jimmc414•3d ago•15 comments

I turned my RSS feeds into an e-ink newspaper to stop reading on my phone

https://heyjonny.dev/posts/rss-to-eink-newspaper/
201•speckx•22h ago•84 comments

Super Mario Derivations

https://fzakaria.com/2026/08/05/super-mario-derivations
114•domenkozar•1w ago•16 comments

Introducing Toast 1

https://www.mixedbread.com/blog/toast-1
209•mplappert•21h ago•64 comments

Racket v9.3

https://blog.racket-lang.org/2026/08/racket-v9-3.html
107•privong•18h ago•7 comments

Suspecting court of using AI, man injected prompts in filings to try to win case

https://arstechnica.com/tech-policy/2026/08/suspecting-court-of-using-ai-man-injected-prompts-in-...
49•jnord•4h ago•39 comments

GLM-5.3: Frontier coding with emergent cyber capabilities

https://z.ai/blog/glm-5.3
1105•pella•1d ago•543 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?