frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

System 7 natively boots on the Mac mini G4

https://macos9lives.com/smforum/index.php?topic=7711.0
115•ibobev•3h ago•16 comments

WinApps: Run Windows apps as if they were a part of the native Linux OS

https://github.com/winapps-org/winapps
57•klaussilveira•3d ago•9 comments

Airbus A320 – intense solar radiation may corrupt data critical for flight

https://www.airbus.com/en/newsroom/press-releases/2025-11-airbus-update-on-a320-family-precaution...
231•pyrophoenix•9h ago•44 comments

Imgur geo-blocked the UK, so I geo-unblocked my network

https://blog.tymscar.com/posts/imgurukproxy/
345•tymscar•12h ago•114 comments

Every mathematician has only a few tricks (2020)

https://mathoverflow.net/questions/363119/every-mathematician-has-only-a-few-tricks
60•nill0•5h ago•11 comments

A triangle whose interior angles sum to zero

https://www.johndcook.com/blog/2025/11/28/tricusp-triangle/
83•tzury•6h ago•41 comments

Molly: An Improved Signal App

https://molly.im/
298•dtj1123•13h ago•163 comments

Confessions of a Software Developer: No More Self-Censorship

https://kerrick.blog/articles/2025/confessions-of-a-software-developer-no-more-self-censorship/
166•Kerrick•8h ago•159 comments

So you wanna build a local RAG?

https://blog.yakkomajuri.com/blog/local-rag
258•pedriquepacheco•14h ago•51 comments

The weirdest tool I own is also one of the most useful

https://www.zdnet.com/article/the-weirdest-tool-i-own-is-also-one-of-the-most-useful-and-its-14-o...
12•fcpguru•2d ago•0 comments

Show HN: Mu – The Micro Network

https://github.com/asim/mu
18•asim•4d ago•8 comments

Airloom – 3D Flight Tracker

https://objectiveunclear.com/airloom.html
202•azinman2•14h ago•65 comments

The original ABC language, Python's predecessor (1991)

https://github.com/gvanrossum/abc-unix
96•tony•11h ago•25 comments

A first look at Django's new background tasks

https://roam.be/notes/2025/a-first-look-at-djangos-new-background-tasks/
94•roam•9h ago•19 comments

28M Hacker News comments as vector embedding search dataset

https://clickhouse.com/docs/getting-started/example-datasets/hackernews-vector-search-dataset
368•walterbell•13h ago•145 comments

Fabric Project

https://github.com/Fabric-Project/Fabric
46•brcmthrowaway•8h ago•7 comments

How good engineers write bad code at big companies

https://www.seangoedecke.com/bad-code-at-big-companies/
295•gfysfm•11h ago•199 comments

I mathematically proved the best "Guess Who?" strategy [video]

https://www.youtube.com/watch?v=_3RNB8eOSx0
60•surprisetalk•6d ago•15 comments

Language is primarily a tool for communication rather than thought (2024) [pdf]

https://gwern.net/doc/psychology/linguistics/2024-fedorenko.pdf
34•netfortius•16h ago•7 comments

Neato vacuum robots to stop working

https://support.neatorobotics.com/support/solutions/articles/204000073686-announcement-6th-oct-2025
25•simonlondon•3h ago•11 comments

Flight disruption warning as Airbus requests modifications to 6k planes

https://www.bbc.com/news/live/cvg4y6g74ert
196•nrhrjrjrjtntbt•9h ago•85 comments

Don't tug on that, you never know what it might be attached to (2016)

https://blog.plover.com/2016/07/01/#tmpdir
118•todsacerdoti•15h ago•53 comments

True P2P Email on Top of Yggdrasil Network

https://github.com/JB-SelfCompany/Tyr
131•basemi•14h ago•23 comments

Electron vs. Tauri

https://www.dolthub.com/blog/2025-11-13-electron-vs-tauri/
51•birdculture•11h ago•23 comments

How to get Pandoc to respect custom table styles in Word templates

https://johnathandos.com/posts/2025-11-24-custom-tables-with-pandoc/
10•johnathandos•4d ago•1 comments

Effective harnesses for long-running agents

https://www.anthropic.com/engineering/effective-harnesses-for-long-running-agents
94•diwank•12h ago•32 comments

Show HN: Choose your own adventure style Presentation

https://github.com/Skarlso/adventure-voter
18•skarlso•1w ago•4 comments

The 'S&P 493' reveals a different U.S. economy

https://www.msn.com/en-us/money/markets/the-s-p-493-reveals-a-very-different-us-economy/ar-AA1R1VUJ
23•MilnerRoute•1h ago•3 comments

JSON Schema Demystified: Dialects, Vocabularies and Metaschemas

https://www.iankduncan.com/engineering/2025-11-24-json-schema-demystified/
65•navigate8310•13h ago•23 comments

Can Dutch universities do without Microsoft?

https://dub.uu.nl/en/news/can-dutch-universities-do-without-microsoft
278•robtherobber•15h ago•281 comments
Open in hackernews

Compiler Reminders

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

Comments

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

Best buds on this front

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