frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Plasma Bigscreen – 10-foot interface for KDE plasma

https://plasma-bigscreen.org
408•PaulHoule•9h ago•115 comments

UUID package coming to Go standard library

https://github.com/golang/go/issues/62026
177•soypat•7h ago•98 comments

this css proves me human

https://will-keleher.com/posts/this-css-makes-me-human/
257•todsacerdoti•11h ago•87 comments

QGIS 4.0

https://changelog.qgis.org/en/version/4.0/
16•jonbaer•40m ago•0 comments

Maybe there's a pattern here?

https://dynomight.net/pattern/
111•surprisetalk•2d ago•65 comments

Galileo's handwritten notes found in ancient astronomy text

https://www.science.org/content/article/galileo-s-handwritten-notes-found-ancient-astronomy-text
119•tzury•1d ago•24 comments

LLMs work best when the user defines their acceptance criteria first

https://blog.katanaquant.com/p/your-llm-doesnt-write-correct-code
210•dnw•8h ago•171 comments

Working and Communicating with Japanese Engineers

https://www.tokyodev.com/articles/working-and-communicating-with-japanese-engineers
15•zdw•3d ago•4 comments

Helix: A post-modern text editor

https://helix-editor.com/
131•doener•9h ago•43 comments

Querying 3B Vectors

https://vickiboykis.com/2026/02/21/querying-3-billion-vectors/
43•surprisetalk•3d ago•5 comments

Sarvam 105B, the first competitive Indian open source LLM

https://www.sarvam.ai/blogs/sarvam-30b-105b
28•logicchains•1h ago•3 comments

Show HN: Moongate – Ultima Online server emulator in .NET 10 with Lua scripting

https://github.com/moongate-community/moongatev2
253•squidleon•19h ago•139 comments

Editing changes in patch format with Jujutsu

https://www.knifepoint.net/~kat/kb-jj-patchedit.html
21•cassepipe•2d ago•2 comments

What canceled my Go context?

https://rednafi.com/go/context-cancellation-cause/
55•mweibel•3d ago•28 comments

The Longing (1999)

https://www.cluetrain.com/book/longing.html
18•herbertl•3d ago•1 comments

Modernizing swapping: virtual swap spaces

https://lwn.net/Articles/1059201/
22•voxadam•1d ago•13 comments

Tech employment now significantly worse than the 2008 or 2020 recessions

https://twitter.com/JosephPolitano/status/2029916364664611242
876•enraged_camel•15h ago•582 comments

Show HN: Kula – Lightweight, self-contained Linux server monitoring tool

https://github.com/c0m4r/kula
51•c0m4r•9h ago•23 comments

CT Scans of Health Wearables

https://www.lumafield.com/scan-of-the-month/health-wearables
215•radeeyate•19h ago•44 comments

My application programmer instincts failed when debugging assembler

https://landedstar.com/blog/posts/how-my-application-programmer-instincts-failed-when-debugging-a...
8•lifefeed•1d ago•6 comments

Launch HN: Palus Finance (YC W26): Better yields on idle cash for startups, SMBs

50•sam_palus•15h ago•72 comments

Entomologists use a particle accelerator to image ants at scale

https://spectrum.ieee.org/3d-scanning-particle-accelerator-antscan
128•gmays•17h ago•24 comments

The shady world of IP leasing

https://acid.vegas/blog/the-shady-world-of-ip-leasing/
109•alibarber•12h ago•61 comments

C# strings silently kill your SQL Server indexes in Dapper

https://consultwithgriff.com/dapper-nvarchar-implicit-conversion-performance-trap
97•PretzelFisch•10h ago•68 comments

Hardening Firefox with Anthropic's Red Team

https://www.anthropic.com/news/mozilla-firefox-security
564•todsacerdoti•21h ago•153 comments

A tool that removes censorship from open-weight LLMs

https://github.com/elder-plinius/OBLITERATUS
163•mvdwoord•19h ago•76 comments

Tell HN: I'm 60 years old. Claude Code has re-ignited a passion

424•shannoncc•9h ago•295 comments

Show HN: 1v1 coding game that LLMs struggle with

https://yare.io
21•levmiseri•1d ago•6 comments

A Modular Robot Dashboard

https://github.com/transitiverobotics/transact
19•chfritz•1d ago•0 comments

Workers who love ‘synergizing paradigms’ might be bad at their jobs

https://news.cornell.edu/stories/2026/03/workers-who-love-synergizing-paradigms-might-be-bad-thei...
556•Anon84•20h ago•310 comments
Open in hackernews

Compiler Reminders

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

Comments

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

Best buds on this front

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