frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Valve P2P networking broken for more than 2 months

https://github.com/ValveSoftware/GameNetworkingSockets/issues/398
93•babuskov•2h ago•40 comments

I design with Claude more than Figma now

https://blog.janestreet.com/i-design-with-claude-code-more-than-figma-now-index/
17•MrBuddyCasino•1h ago•2 comments

Field of clones: How horse replicas came to dominate polo

https://knowablemagazine.org/content/article/technology/2026/cloned-polo-horses
55•gscott•3h ago•30 comments

Tokenomics: Quantifying Where Tokens Are Used in Agentic Software Engineering

https://arxiv.org/abs/2601.14470
71•Anon84•4h ago•16 comments

Ntsc-rs – open-source video emulation of analog TV and VHS artifacts

https://ntsc.rs/
316•gregsadetsky•10h ago•77 comments

Public Domain Image Archive

https://pdimagearchive.org/
78•davidbarker•5h ago•15 comments

Harness engineering: Leveraging Codex in an agent-first world

https://openai.com/index/harness-engineering/
150•pramodbiligiri•1d ago•98 comments

Human-Like Neural Nets by Catapulting

https://gwern.net/llm-catapult
13•telotortium•6h ago•1 comments

Symbolica 2.0: Programmable Symbols for Python and Rust

https://symbolica.io/posts/symbolica_2_0_release/
42•mmastrac•1d ago•2 comments

The 29th International Obfuscated C Code Contest (IOCCC) 2025 Winners

https://www.ioccc.org/2025/
5•matt_d•21m ago•0 comments

How Liminalism Became the Defining Aesthetic of Our Time

https://hyperallergic.com/how-liminalism-became-the-defining-aesthetic-of-our-time/
34•zeech•3h ago•21 comments

Introducing Boron Buckyballs: Theory that B80 cages can’t be made is disproved

https://cen.acs.org/materials/nanomaterials/buckyballs-boron-buckminster-fullerene-nanomaterials/...
70•crescit_eundo•2d ago•18 comments

Biohub releases a world model of protein biology

https://biohub.org/news/world-model-of-protein-biology/
34•gmays•3d ago•0 comments

Show HN: Oproxy – inspect and modify network traffic from the browser

https://github.com/sauravrao637/oproxy
28•sauravrao637•3h ago•3 comments

My Software North Star

https://kristoff.it/blog/north-star/
11•kristoff_it•3d ago•1 comments

Moving beyond fork() + exec()

https://lwn.net/SubscriberLink/1076018/16f01bbbb8e0d1f0/
283•jwilk•15h ago•284 comments

Meta confirms 1000s of Instagram accounts were hacked by abusing its AI chatbot

https://this.weekinsecurity.com/meta-confirms-thousands-of-instagram-accounts-were-hacked-by-abus...
524•speckx•11h ago•190 comments

Nvidia is proposing a beast of a CPU system for Windows PCs

https://twitter.com/lemire/status/2062880075117113739
262•tosh•17h ago•453 comments

Zeroserve: A zero-config web server you can script with eBPF

https://su3.io/posts/introducing-zeroserve
215•losfair•15h ago•54 comments

An Ohio Valley 100k-Watt FM Signal Is Severed in Broad Daylight – Radio World

https://www.radioworld.com/news-and-business/headlines/an-ohio-valley-100000-watt-fm-signal-is-se...
88•pkaeding•4h ago•79 comments

Sem: New primitive for code understanding – not LSPs, but entities on top of Git

https://ataraxy-labs.github.io/sem/
96•rohanucla•10h ago•38 comments

Google to pay SpaceX $920M a month for compute capacity at xAI data centers

https://www.cnbc.com/2026/06/05/google-to-pay-spacex-920-million-a-month-for-xai-compute-capacity...
211•toephu2•1d ago•788 comments

The circus freaks of open source

https://drewdevault.com/blog/Circus-freaks-of-FOSS/
22•keyle•1h ago•2 comments

Show HN: Free animated icon library for Vue

https://respeak-io.github.io/lucide-motion-vue/
8•evolabs•2d ago•5 comments

Show HN: TakoVM – Isolated model and tool execution used by enterprises

https://github.com/las7/TakoVM
13•sakuraiben•3h ago•3 comments

Pokemon Emerald Ported to WebAssembly (100k FPS)

https://pokeemerald.com/
302•tripplyons•18h ago•87 comments

Ask HN: What was your "oh shit" moment with GenAI?

587•andrehacker•2d ago•986 comments

Motorola effectively bricked its entire line of WiFi routers without explanation

https://mashable.com/tech/motorola-wifi-routers-stop-working-motosync-plus-app-down
110•thisislife2•15h ago•44 comments

Unicode Fonts and Tools for X11

https://www.cl.cam.ac.uk/~mgk25/ucs-fonts.html
31•kristianp•2d ago•7 comments

Show HN: Infinite canvas notes in the non-Euclidean Poincaré disk

https://uonr.github.io/poincake/
144•uonr•4d ago•24 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?