frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Hardware Attestation as Monopoly Enabler

https://grapheneos.social/@GrapheneOS/116550899908879585
938•ChuckMcM•8h ago•343 comments

Local AI needs to be the norm

https://unix.foo/posts/local-ai-needs-to-be-norm/
623•cylo•9h ago•297 comments

I'm going back to writing code by hand

https://blog.k10s.dev/im-going-back-to-writing-code-by-hand/
63•dropbox_miner•1h ago•24 comments

Running local models on an M4 with 24GB memory

https://jola.dev/posts/running-local-models-on-m4
102•shintoist•3h ago•48 comments

Incident Report: CVE-2024-YIKES

https://nesbitt.io/2026/02/03/incident-report-cve-2024-yikes.html
410•miniBill•8h ago•99 comments

Obsidian plugin was abused to deploy a remote access trojan

https://cyber.netsecops.io/articles/obsidian-plugin-abused-in-campaign-to-deploy-phantom-pulse-rat/
88•cmbailey•4h ago•45 comments

Ask HN: What are you working on? (May 2026)

138•david927•8h ago•476 comments

I designed Microsoft's EA channel in 2001. It's being dismantled in 2026

https://www.brendanoconnor.net/case-studies/microsoft-enterprise-channel/
26•brendo_y•2d ago•7 comments

First tunnel element of the Fehmarnbelt Tunnel immersed

https://www.arup.com/en-us/news/first-fehmarnbelt-tunnel-element-lowered/
51•robin_reala•3d ago•12 comments

An AI coding agent, used to write code, needs to reduce your maintenance costs

https://www.jamesshore.com/v2/blog/2026/you-need-ai-that-reduces-your-maintenance-costs
30•cratermoon•2h ago•5 comments

Guy Goma's Accidental BBC Interview Lives on After 20 Years

https://www.nytimes.com/2026/05/06/business/media/bbc-guy-goma-interview.html
59•nxobject•2d ago•12 comments

Traces Of Humanity

https://tracesofhumanity.org/hello-world/
130•alex77456•9h ago•19 comments

The people preserving the scientific practice of bird banding

https://thenarwhal.ca/bird-banding-ontario/
34•bookofjoe•3d ago•0 comments

I returned to AWS and was reminded why I left

http://fourlightyears.blogspot.com/2026/05/i-returned-to-aws-and-was-reminded-hard.html
663•andrewstuart•1d ago•485 comments

Maryland citizens hit with $2B power grid upgrade for out-of-state AI

https://www.tomshardware.com/tech-industry/artificial-intelligence/maryland-citizens-slapped-with...
152•lemonberry•5h ago•72 comments

PS3 Emulator Devs Politely Ask That People Stop Flooding It with AI PRs

https://kotaku.com/playstation-3-emulator-devs-politely-ask-that-people-stop-flooding-it-with-ai-...
82•stalfosknight•2h ago•57 comments

Stop MitM on the first SSH connection, on any VPS or cloud provider

https://www.joachimschipper.nl/Stop%20MITM%20on%20the%20first%20SSH%20connection,%20on%20any%20VP...
83•JoachimSchipper•2d ago•46 comments

Eight More '8-Bit Era' Microprocessors

https://thechipletter.substack.com/p/eight-more-8-bit-era-microprocessors
52•klelatti•2d ago•13 comments

The locals don't know

https://www.quarter--mile.com/The-Locals-Dont-Know
104•herbertl•10h ago•73 comments

How Fast Does Claude, Acting as a User Space IP Stack, Respond to Pings?

https://dunkels.com/adam/claude-user-space-ip-stack-ping/
11•adunk•3h ago•1 comments

dBase: 1979-2026

https://delphinightmares.substack.com/p/dbase-1979-2026
8•deeaceofbase•2d ago•2 comments

Idempotency is easy until the second request is different

https://blog.dochia.dev/blog/idempotency/
286•ludovicianul•3d ago•174 comments

Walking slower? Your ears, not your knees, might be the problem

https://www.wsj.com/health/wellness/hearing-loss-walking-speed-iphone-study-c53c482a
90•marc__1•1d ago•64 comments

What's a mathematician to do? (2010)

https://mathoverflow.net/questions/43690/whats-a-mathematician-to-do
155•ipnon•15h ago•75 comments

Lakebase architecture delivers faster Postgres writes

https://www.databricks.com/blog/how-lakebase-architecture-delivers-5x-faster-postgres-writes
97•sp_from_db•2d ago•29 comments

Louis Rossmann offers to pay legal fees for a threatened OrcaSlicer developer

https://www.tomshardware.com/3d-printing/louis-rossmann-tells-3d-printer-maker-bambu-lab-to-go-bl...
484•iancmceachern•11h ago•263 comments

Make America AI ready: Strengths, weaknesses, and recommendations

https://blog.citp.princeton.edu/2026/05/05/make-america-ai-ready-strengths-weaknesses-and-recomme...
18•Kye•2h ago•12 comments

Think Linear Algebra (2023)

https://allendowney.github.io/ThinkLinearAlgebra/index.html
170•tamnd•16h ago•20 comments

Task Paralysis and AI

https://g5t.de/articles/20260510-task-paralysis-and-ai/index.html
202•MrGilbert•20h ago•109 comments

Show HN: An index of indie web/blog indexes

https://theindex.fyi
97•rocketpastsix•13h ago•37 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?