frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Credit cards are vulnerable to brute force attacks

https://metin.nextc.org/posts/Credit_Cards_Are_Vulnerable_To_Brute_Force_Kind_Attacks.html
44•kodbraker•53m ago•39 comments

Ti-84 Evo

https://education.ti.com/en/products/calculators/graphing-calculators/ti-84-evo
68•thatxliner•1h ago•63 comments

New research suggests people can communicate and practice skills while dreaming

https://www.newyorker.com/culture/annals-of-inquiry/its-possible-to-learn-in-our-sleep-should-we
114•XzetaU8•3h ago•57 comments

Show HN: Destiny – Claude Code's fortune Teller skill

https://github.com/xodn348/destiny
21•xodn348•1h ago•7 comments

Ask HN: Who is hiring? (May 2026)

193•whoishiring•6h ago•210 comments

whohas – Command-line utility for cross-distro, cross-repository package search

https://github.com/whohas/whohas
100•peter_d_sherman•6h ago•22 comments

City Learns Flock Accessed Cameras in Children's Gymnastics Room as a Sales Demo

https://www.404media.co/city-learns-flock-accessed-cameras-in-childrens-gymnastics-room-as-a-sale...
171•joshcsimmons•2h ago•35 comments

Eka’s robotic claw feels like we're approaching a ChatGPT moment

https://www.wired.com/story/when-robots-have-their-chatgpt-moment-remember-these-pincers/
30•zdw•1d ago•27 comments

AI uses less water than the public thinks

https://californiawaterblog.com/2026/04/26/ai-water-use-distractions-and-lessons-for-california/
257•hirpslop•4h ago•235 comments

Whimsical Animations Course Open House

https://courses.joshwcomeau.com/wham/open-house/00-introduction
24•SpyCoder77•1h ago•4 comments

Spotify adds 'Verified' badges to distinguish human artists from AI

https://www.bbc.com/news/articles/c5yerr4m1yno
147•reconnecting•4h ago•164 comments

Show HN: AI CAD Harness

https://fusion.adam.new/install
37•zachdive•3h ago•43 comments

Artemis II Fault Tolerance

https://alearningaday.blog/2026/05/01/artemis-ii-fault-tolerance/
37•speckx•3h ago•21 comments

Ask HN: Who wants to be hired? (May 2026)

102•whoishiring•6h ago•195 comments

Show HN: WhatCable, a tiny menu bar app for inspecting USB-C cables

https://github.com/darrylmorley/whatcable
351•sleepingNomad•12h ago•115 comments

Sally McKee, who coined the term "the memory wall", has died

https://www.online-tribute.com/SallyMcKee
96•deater•6h ago•19 comments

Understand Anything

https://github.com/Lum1104/Understand-Anything
63•taubek•3h ago•18 comments

Apocalypse Early Warning System

https://ews.kylemcdonald.net/
60•carlsborg•4h ago•25 comments

Lib0xc: A set of C standard library-adjacent APIs for safer systems programming

https://github.com/microsoft/lib0xc
15•wooster•2h ago•2 comments

I'm Peter Roberts, immigration attorney who does work for YC and startups. AMA

102•proberts•6h ago•167 comments

Ubuntu servers taken offline by "sustained, cross-border attack"

https://arstechnica.com/security/2026/05/ubuntu-infrastructure-has-been-down-for-more-than-a-day/
51•RattlesnakeJake•2h ago•11 comments

The Gay Jailbreak Technique

https://github.com/Exocija/ZetaLib/blob/main/The%20Gay%20Jailbreak/The%20Gay%20Jailbreak.md
232•bobsmooth•4h ago•72 comments

Running Adobe's 1991 PostScript Interpreter in the Browser

https://www.pagetable.com/?p=1854
111•ingve•9h ago•25 comments

AWS stops billing Middle East cloud customers as repairs to war damage drag on

https://arstechnica.com/gadgets/2026/05/amazon-stuck-with-months-of-repairs-after-drone-strikes-o...
101•johnbarron•3h ago•29 comments

Your website is not for you

https://websmith.studio/blog/your-website-is-not-for-you/
230•pumbaa•10h ago•168 comments

Historic Tennessee Hotel Is Also Home to the Greatest Duck Tradition (2016)

https://www.audubon.org/magazine/tennessees-most-historic-hotel-also-home-greatest-duck-tradition
6•NaOH•2d ago•0 comments

An open letter asking NHS England to keep its code open

https://keepthingsopen.com
186•tvararu•6h ago•12 comments

The X-Files has made me nostalgic for a time I never experienced

https://midnightmurmurations.substack.com/p/the-x-files-has-made-me-nostalgic
114•Teever•3h ago•104 comments

A Letter from Dijkstra on APL (1982)

https://www.jsoftware.com/papers/Dijkstra_Letter.htm
41•tosh•9h ago•41 comments

SpaceX rocket set for unintentional Moon landing – well, a piece of it anyway

https://www.theregister.com/2026/05/01/spacex_debris_landing/
8•beardyw•9h ago•1 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?