frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

I turned my security cameras into an automatic bird identification system

https://jasontucker.blog/how-i-turned-my-security-cameras-into-an-automatic-bird-identification-s...
283•speckx•4h ago•77 comments

Google Has Removed MV2 Extensions from the Chrome Web Store, Including UBO

https://webiterate.dev/google-removed-extensions-ublock-origin-108/
22•twapi•24m ago•2 comments

A walkable ASCII cyberpunk city in one HTML file [video]

https://www.youtube.com/watch?v=3YtygAx_C6A
132•keithcarolus•3h ago•24 comments

Playa Phone

https://playaphone.com/
409•cutoff•6h ago•157 comments

'Mad honey' that can stop your heart is being sold online

https://phys.org/news/2026-08-mad-honey-heart-sold-online.html
34•samizdis•3d ago•13 comments

Show HN: Laser Graffiti

https://laser.consti.de
77•con•2d ago•18 comments

Autonomous (YC F25) Is Hiring Engineers

1•dkobran•35m ago

Smartphone LED detects hidden cameras with AI

https://www.chosun.com/english/industry-en/2026/08/30/SBFXUIJQYZEARKP5T4FBAY25HQ/
91•geox•1d ago•28 comments

Terence Tao explains 6 essential mathematical concepts [video]

https://www.youtube.com/watch?v=OOMx2BHHWtE
86•matthewsinclair•22h ago•11 comments

Dwarf Fortress is getting the mother of all magic updates

https://www.rockpapershotgun.com/dwarf-fortress-is-getting-the-mother-of-all-magic-updates-extend...
213•Tomte•4d ago•84 comments

Tmp.0ut, Vol. 5

https://tmpout.sh/5/
96•kmstout•6d ago•5 comments

Apple caught off guard by AI demand for Mac Mini and Mac Studio

https://www.macrumors.com/2026/08/30/apple-unexpected-mac-mini-and-studio-demand/
225•thm•8h ago•249 comments

ravynOS: Pre-alpha open-source OS based on Darwin, FreeBSD, Apple open-source

https://ravynos.com/
125•Bluestein•5h ago•85 comments

ChatGPT Work Tool and Skill Reference

https://codex-tool-reference.simonw.chatgpt.site/
154•ijidak•7h ago•48 comments

I think the military commissary's freezers were hacked

https://signalandsilence.substack.com/p/i-think-someone-hacked-the-commissary
184•jcurbo•9h ago•109 comments

Launch HN: Almanac (YC S26) – AI that knows your company

https://usealmanac.com/
32•kushagrchitkar•6h ago•36 comments

No country for mediocre mathematicians

https://garvvee.substack.com/p/no-country-for-mediocre-mathematicians
95•reasonableklout•1d ago•61 comments

Reverse engineering my ADHD test

https://nullpt.rs/reverse-engineering-adhd-test
73•hazebooth•4d ago•21 comments

Internet centralization and the original sin of NAT

https://dreamstation.systems/personal/ntppost.html
140•robinpie•19h ago•102 comments

Show HN: Corporate Mind Games – logic puzzles with a sarcastic corporate theme

https://corporatemindgames.com/
30•dontwordle•5h ago•12 comments

Launch HN: Hebbian Robotics (YC S26) – Build scalable robotics data pipelines

https://github.com/Hebbian-Robotics/hflow
32•kstonekuan•6h ago•10 comments

Show HN: We built the smallest dual-band aircraft tracker

https://pantsforbirds.com/the-worlds-smallest-dual-band-ads-b-receiver-module/
59•CoolNamesAllTkn•5d ago•19 comments

Euphemisation of Taboo Areas [pdf]

https://ajmp.uwr.edu.pl/wp-content/uploads/sites/39/2023/12/10_Kleparski.pdf
23•Eridanus2•4d ago•0 comments

C++26: Standard Library Hardening Experiments

https://www.cppstories.com/2026/hardening-experiments/
76•ibobev•6h ago•39 comments

'Stunning' percolation proof solves decades-old puzzle about phase transitions

https://www.quantamagazine.org/stunning-percolation-proof-solves-decades-old-puzzle-about-phase-t...
35•tzury•4h ago•7 comments

Dimethyl Mercury Exposure Incident at MIT

https://twitter.com/andrew_n_carr/status/2093524390390694232
85•notRobot•2d ago•58 comments

Accidental Aesthetics and Romance of Power Wires

https://www.governance.fyi/p/accidental-aesthetics-and-romance
32•crescit_eundo•22h ago•12 comments

OpenShot 4.0 – Open-source video editor

https://www.openshot.org/blog/2026/08/30/openshot-40-record-edit-color-like-never-before/
495•metrofun•11h ago•112 comments

Breaking Claude Code Opus 5 Auto Mode

https://embracethered.com/blog/posts/2026/breaking-claude-code-opus-5-and-automode/
320•Recursing•13h ago•107 comments

The Snow/Leavis ‘two cultures’ clash

https://aeon.co/essays/at-the-heart-of-the-snow-leavis-two-cultures-clash
60•Hooke•6h 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?