frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Dirtyfrag: Universal Linux LPE

https://www.openwall.com/lists/oss-security/2026/05/07/8
316•flipped•4h ago•150 comments

Canvas (Instructure) LMS Down in Ongoing Ransomware Attack

https://www.theverge.com/tech/926458/canvas-shinyhunters-breach
41•stefanpie•59m ago•2 comments

The Burning Man MOOP Map

https://www.not-ship.com/burning-man-moop/
504•speckx•9h ago•271 comments

Agents need control flow, not more prompts

https://bsuh.bearblog.dev/agents-need-control-flow/
275•bsuh•6h ago•152 comments

Natural Language Autoencoders: Turning Claude's Thoughts into Text

https://www.anthropic.com/research/natural-language-autoencoders
155•instagraham•5h ago•50 comments

AlphaEvolve: Gemini-powered coding agent scaling impact across fields

https://deepmind.google/blog/alphaevolve-impact/
232•berlianta•8h ago•91 comments

AI slop is killing online communities

https://rmoff.net/2026/05/06/ai-slop-is-killing-online-communities/
364•thm•4h ago•340 comments

DeepSeek 4 Flash local inference engine for Metal

https://github.com/antirez/ds4
249•tamnd•7h ago•74 comments

OpenClaw Had a Rough Week

https://openclaw.ai/blog/openclaw-rough-week
7•kevincortes•48m ago•0 comments

Draw Marc Andreessen on an Egg

https://eieio.games/blog/marc-andreessen-egg-game/
41•LorenDB•3h ago•8 comments

Two Home Affairs officials suspended after AI 'hallucinations' found

https://www.citizen.co.za/news/home-affairs-officials-suspended-ai-hallucinations/
25•jruohonen•3h ago•2 comments

I want to live like Costco people

https://tastecooking.com/i-want-to-live-like-costco-people/
185•speckx•8h ago•417 comments

Chrome removes claim of On-device Al not sending data to Google Servers

https://old.reddit.com/r/chrome/comments/1t5qayz/chrome_removes_claim_of_ondevice_al_not_sending/
412•newsoftheday•7h ago•156 comments

Rolling the Root Key

https://blog.apnic.net/2026/05/05/rolling-the-root-key/
6•jandeboevrie•2d ago•0 comments

Colored Shadow Penumbra

https://chosker.github.io/blog/colored-shadow-penumbra
30•ibobev•4h ago•11 comments

Principles for agent-native CLIs

https://twitter.com/trevin/status/2051316002730991795
48•blumpy22•5h ago•28 comments

Easy Random Trees

https://blog.wilsonb.com/posts/2026-02-27-easy-random-trees.html
16•aebtebeten•2d ago•1 comments

PySimpleGUI 6

https://github.com/PySimpleGUI/PySimpleGUI
84•geophph•2d ago•40 comments

Creating for a niche

https://www.davesnider.com/posts/working-in-a-niche
20•snide•3h ago•1 comments

RaTeX: KaTeX-compatible LaTeX rendering engine in pure Rust

https://ratex.lites.dev/
154•atilimcetin•3d ago•86 comments

Child marriages plunged when girls stayed in school in Nigeria

https://www.nature.com/articles/d41586-026-00720-8
324•surprisetalk•9h ago•245 comments

The Self-Cancelling Subscription

https://predr.ag/blog/the-self-cancelling-subscription/
137•surprisetalk•9h ago•60 comments

OpenBSD Stories: The closest thing to cute kittens (OpenBSD/zaurus)

http://miod.online.fr/software/openbsd/stories/zaurus1.html
58•zdw•1d ago•7 comments

OurCar: What I learned making an app for my family

https://mendelgreenberg.com/posts/ourcar/
96•chabad360•1d ago•69 comments

Show HN: TRUST – Coding Rust like it's 1989

https://github.com/wojtczyk/trust
109•wojtczyk•17h ago•70 comments

Boris Cherny: TI-83 Plus Basic Programming Tutorial (2004)

https://www.ticalc.org/programming/columns/83plus-bas/cherny/
180•suoken•3d ago•80 comments

I switched from Mac to a Lenovo Chromebook

https://blog.johnozbay.com/i-left-apples-ecosystem-for-a-lenovo-chromebook-and-you-can-too.html
103•speckx•7h ago•135 comments

GovernGPT (YC W24) Is Hiring Engineers to Build Thinking Systems in Montreal

https://www.ycombinator.com/companies/governgpt/jobs/hRyltS0-backend-engineer-thinking-systems
1•owalerys•11h ago

Mozilla says 271 vulnerabilities found by Mythos and "almost no false positives"

https://arstechnica.com/information-technology/2026/05/mozilla-says-271-vulnerabilities-found-by-...
74•epistasis•3h ago•29 comments

ZAYA1-8B matches DeepSeek-R1 on math with less than 1B active parameters

https://firethering.com/zaya1-8b-open-source-math-coding-model/
87•steveharing1•14h ago•50 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?