frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Don't be a meat proxy

https://gruhn.me/blog/2026-08-03/
411•ngruhn•2h ago•173 comments

Qwen3.8-Max: A New Bar for Coding and Cowork

https://qwen.ai/blog?id=qwen3.8
526•ai2027•6h ago•248 comments

Rust project goals: Immobile types and guaranteed destructors

https://github.com/rust-lang/rust-project-goals/blob/main/src/2026/move-trait.md
46•paavohtl•2h ago•13 comments

Octane – React's programming model, compiled

https://octanejs.dev
8•nnx•57m ago•0 comments

Show HN: Isopolis – Isometric pixel map of SF

https://sf.isopolis.city/
208•nuwandavek•8h ago•46 comments

More German than many Germans

https://mertbulan.com/more-german-than-many-germans/
217•mertbio•3h ago•119 comments

Bonsai: Janestreet's UI Library

https://github.com/janestreet/bonsai
10•KolmogorovComp•31m ago•0 comments

Karpathy’s Pelican

https://twitter.com/karpathy/status/2083749667410727319
562•delichon•1d ago•388 comments

Show HN: ssh ssh.place

https://ssh.place
110•jeninh•8h ago•64 comments

Why we write our own C and C++ inference engines

https://localai.io/blog/why-we-write-our-own-engines/
49•eatonphil•2d ago•25 comments

CP/M-386 – CP/M for 386 protected mode, derived from CP/M‑68K

https://github.com/johnsonjh/cpm386
64•TMWNN•8h ago•28 comments

How do you rewrite C/C++ projects to Rust?

https://blog.jetbrains.com/rust/2026/07/27/cpp-to-rust-migration/
4•smokeeaasd•5d ago•2 comments

AI migrated legacy COBOL programs to Java, bugs included

https://arxiv.org/abs/2607.28271
60•felineflock•5h ago•46 comments

The AI Productivity Gap

https://bjorg.bjornroche.com/management/ai-productivity-gap/
6•kiyanwang•1h ago•2 comments

Convergence is not enough

https://www.inkandswitch.com/livelymerge/notebook/lm-02/
30•zdw•6d ago•3 comments

Autoregressive Language Model on the 6502 Processor

https://mattbeton.com/blog/bitnet-6502.html
107•nmstoker•2d ago•10 comments

Show HN: A Handwritten Blogging Platform

https://handwritten.blog/
99•emilesilvis•3d ago•49 comments

Show HN: Kakehashi – Experimental userspace to run macOS binaries on Linux ARM

https://github.com/wie-project/kakehashi
215•vlad_kalinkin•16h ago•55 comments

Note-Taking and Personal Knowledge Management

https://unattributed.cc/note-taking-and-personal-knowledge-management
194•surprisetalk•5d ago•57 comments

Developers are attached to tools because tools encode trust

https://stackoverflow.blog/2026/07/29/developers-are-attached-to-tools-because-tools-encode-trust/
208•HieronymusBosch•4d ago•110 comments

SwiftUI After 7 Years

https://ykvm.com/2026/07/swiftui-a-story-of-mediocrity/
189•mpweiher•14h ago•170 comments

Show HN: I created a project management system

https://is.team
6•spotlayn•2h ago•3 comments

Why Book Corners won't sync contributions back to OpenStreetMap

https://www.andreagrandi.it/posts/why-book-corners-wont-sync-contributions-back-to-openstreetmap/
89•pizzaiolo•8h ago•55 comments

The Shape of Things to Come

https://yegge.ai/essays/the-shape-of-things-to-come/
6•tosh•1h ago•2 comments

Read the novels and forget everything else

https://hedgehogreview.com/web-features/thr/posts/read-the-novels-and-forget-everything-else
96•samclemens•2d ago•79 comments

Situational Awareness and the Impending Stock Market Volatility

https://www.emergingtrajectories.com/lh/situational-awareness-bigger-picture/
5•cl42•2h ago•4 comments

The myth of Snow Leopard

https://www.rubenerd.au/the-myth-of-snow-leopard/
94•speckx•14h ago•78 comments

Norway became a global salmon behemoth. Now it's facing the consequences

https://www.abc.net.au/news/2026-07-28/how-norway-s-salmon-industry-became-a-global-behemoth/1069...
154•CHB0403085482•6d ago•117 comments

RFC 9851: TLS 1.2 is in Feature Freeze

https://www.rfc-editor.org/rfc/rfc9851.html
34•Jimmc414•7h ago•14 comments

How the words we teach English language learners changed

https://pudding.cool/2026/07/essential-words/
215•c-oreills•17h ago•164 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?