frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Windows 9x Subsystem for Linux

https://social.hails.org/@hailey/116446826733136456
138•sohkamyung•1h ago•31 comments

Making RAM at Home [video]

https://www.youtube.com/watch?v=h6GWikWlAQA
378•kaipereira•1d ago•112 comments

How the Heck Does GPS Work?

https://perthirtysix.com/how-the-heck-does-gps-work
28•alfanick•1h ago•10 comments

ChatGPT Images 2.0

https://openai.com/index/introducing-chatgpt-images-2-0/
856•wahnfrieden•16h ago•690 comments

All your agents are going async

https://zknill.io/posts/all-your-agents-are-going-async/
43•zknill•1d ago•26 comments

Garbage Collection Without Unsafe Code

https://fitzgen.com/2024/02/06/safe-gc.html
61•foota•3d ago•8 comments

MuJoCo – Advanced Physics Simulation

https://github.com/google-deepmind/mujoco
26•modinfo•3d ago•5 comments

Laws of Software Engineering

https://lawsofsoftwareengineering.com
1036•milanm081•1d ago•475 comments

Contact Lens Uses Microfluidics to Monitor and Treat Glaucoma

https://spectrum.ieee.org/smart-contact-lens-glaucoma-microfluidics
43•pseudolus•2d ago•1 comments

Irony as Meta staff unhappy about running surveillance software on work PCs

https://www.theregister.com/2026/04/22/meta_employee_surveillance_software/
54•jjgreen•2h ago•12 comments

The Vercel breach: OAuth attack exposes risk in platform environment variables

https://www.trendmicro.com/en_us/research/26/d/vercel-breach-oauth-supply-chain.html
317•queenelvis•17h ago•109 comments

Acetaminophen vs. ibuprofen

https://asteriskmag.com/issues/14/the-mystery-in-the-medicine-cabinet
415•nkurz•1d ago•271 comments

Diverse organic molecules on Mars revealed by the first SAM TMAH experiment

https://www.courthousenews.com/preserved-for-billions-of-years-organic-compounds-found-on-mars/
73•geox•1d ago•2 comments

SpaceX says it has agreement to acquire Cursor for $60B

https://twitter.com/spacex/status/2046713419978453374
621•dmarcos•13h ago•760 comments

Britannica11.org – a structured edition of the 1911 Encyclopædia Britannica

https://britannica11.org/
296•ahaspel•17h ago•103 comments

Changes to GitHub Copilot individual plans

https://github.blog/news-insights/company-news/changes-to-github-copilot-individual-plans/
462•zorrn•1d ago•187 comments

Stephen's Sausage Roll remains one of the most influential puzzle games

https://thinkygames.com/features/10-years-of-grilling-stephens-sausage-roll-remains-one-of-the-mo...
203•tobr•4d ago•111 comments

Meta to start capturing employee mouse movements, keystrokes for AI training

https://www.reuters.com/sustainability/boards-policy-regulation/meta-start-capturing-employee-mou...
579•dlx•17h ago•416 comments

Meta employees are up in arms over a mandatory program to train AI on their

https://www.businessinsider.com/meta-new-ai-tool-tracks-staff-activity-sparks-concern-2026-4
54•latein•2h ago•43 comments

Fusion Power Plant Simulator

https://www.fusionenergybase.com/fusion-power-plant-simulator
162•sam•20h ago•109 comments

Framework Laptop 13 Pro

https://frame.work/laptop13pro
1298•Trollmann•17h ago•650 comments

Cal.diy: open-source community edition of cal.com

https://github.com/calcom/cal.diy
212•petecooper•17h ago•53 comments

Prefill-as-a-Service:KVCache of Next-Generation Models Could Go Cross-Datacenter

https://arxiv.org/abs/2604.15039
4•matt_d•3d ago•0 comments

Windows Server 2025 Runs Better on ARM

https://jasoneckert.github.io/myblog/server-2025-arm64/
135•jasoneckert•3d ago•111 comments

Edit store price tags using Flipper Zero

https://github.com/i12bp8/TagTinker
340•trueduke•3d ago•312 comments

Drunk post: Things I've learned as a senior engineer (2021)

https://luminousmen.substack.com/p/drunk-post-things-ive-learned-as
161•zdw•11h ago•101 comments

Rock carving facts – Tanum Sweden

https://www.tanumworldheritage.se/rock-carving-facts/?lang=en
15•janandonly•2d ago•3 comments

A printing press for biological data

https://www.owlposting.com/p/the-printing-press-for-biological
33•crescit_eundo•1d ago•0 comments

CrabTrap: An LLM-as-a-judge HTTP proxy to secure agents in production

https://www.brex.com/crabtrap
118•pedrofranceschi•19h ago•43 comments

Kuri – Zig based agent-browser alternative

https://github.com/justrach/kuri
33•sorcercode•8h ago•6 comments
Open in hackernews

Compiler Reminders

https://jfmengels.net/compiler-reminders/
38•jfmengels1•12mo ago

Comments

JonChesterfield•11mo 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•11mo 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•11mo ago
That is a feature. Compose instead of extending.
Yoric•11mo ago
OCaml has extensible sum types. They work very nicely for some ranges of problems.
swiftcoder•11mo ago
Elm <-> Rust

Best buds on this front

gitroom•11mo ago
Tbh, missing those checks in other languages bugs me so much - it's like why leave me hanging?