frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Boing

https://boing.greg.technology/
264•gregsadetsky•5h ago•45 comments

Zigbook Is Plagiarizing the Zigtools Playground

https://zigtools.org/blog/zigbook-plagiarizing-playground/
174•todsacerdoti•4h ago•28 comments

Bazzite: The next generation of Linux gaming

https://bazzite.gg/
375•doener•10h ago•261 comments

All it takes is for one to work out

https://alearningaday.blog/2025/11/28/all-it-takes-is-for-one-to-work-out-2/
497•herbertl•12h ago•241 comments

Meshtastic

https://meshtastic.org/
128•debo_•7h ago•25 comments

Landlock-Ing Linux

https://blog.prizrak.me/post/landlock/
180•razighter777•11h ago•62 comments

The HTTP Query Method

https://www.ietf.org/archive/id/draft-ietf-httpbis-safe-method-w-body-14.html
147•Ivoah•3d ago•61 comments

Learning Feynman's Trick for Integrals

https://zackyzz.github.io/feynman.html
179•Zen1th•12h ago•20 comments

Jiga (YC W21) Is Hiring Product Designer

https://www.ycombinator.com/companies/jiga/jobs/Cco7vyK-product-designer-remote-europe
1•grmmph•1h ago

Americans no longer see four-year college degrees as worth the cost

https://www.nbcnews.com/politics/politics-news/poll-dramatic-shift-americans-no-longer-see-four-y...
241•jnord•9h ago•334 comments

Dynamic Skillset Reference Architecture

https://chatbotkit.com/examples/dynamic-skillset-reference-architecture
6•_pdp_•3d ago•1 comments

Datacenters in space aren't going to work

https://taranis.ie/datacenters-in-space-are-a-terrible-horrible-no-good-idea/
271•mindracer•18h ago•216 comments

Blender facial animation tool. What else should it do?

https://github.com/shun126/livelinkface_arkit_receiver/wiki
77•happy-game-dev•2d ago•13 comments

A new Little Prince museum has opened its doors in Switzerland

https://www.lepetitprince.com/en/events-around-the-world/a-new-little-prince-museum-has-opened-it...
55•gnabgib•7h ago•24 comments

Scala

https://www.huygens-fokker.org/scala/
54•onestay42•9h ago•11 comments

Show HN: Nano PDF – A CLI Tool to Edit PDFs with Gemini's Nano Banana

https://github.com/gavrielc/Nano-PDF
126•GavCo•12h ago•28 comments

Leak confirms OpenAI is preparing ads on ChatGPT for public roll out

https://www.bleepingcomputer.com/news/artificial-intelligence/leak-confirms-openai-is-preparing-a...
649•fleahunter•21h ago•584 comments

Be Like Clippy

https://be-clippy.com/
277•Aloha•13h ago•175 comments

Matrix Core Programming on AMD CDNA Architecture

https://rocm.blogs.amd.com/software-tools-optimization/matrix-cores-cdna/README.html
19•salykova•4d ago•2 comments

Our Phosphorescent World

https://aeon.co/essays/the-cycling-of-phosphorus-is-the-basis-for-all-life-on-earth
10•the-mitr•5d ago•0 comments

Rare X-ray images of a 4.5-ton satellite that returned intact from space

https://www.empa.ch/web/s604/eureca-satellit-mit-roentgenmethoden-untersucht
83•giuliomagnifico•3d ago•12 comments

An update on the Farphone's battery

https://far.computer/battery-update/
83•louismerlin•1d ago•54 comments

Magicians of the Miniature (2014)

http://nzpetesmatteshot.blogspot.com/2014/12/magicians-of-miniature.html
3•exvi•5d ago•0 comments

Anthony Bourdain's Lost Li.st's

https://bourdain.greg.technology/
272•gregsadetsky•4d ago•82 comments

Testing shows automotive glassbreakers can't break modern automotive glass

https://www.core77.com/posts/138925/Testing-Shows-Automotive-Glassbreakers-Cant-Break-Modern-Auto...
118•surprisetalk•17h ago•130 comments

Hardening the C++ Standard Library at scale

https://queue.acm.org/detail.cfm?id=3773097
144•ndesaulniers•1w ago•70 comments

Show HN: Network Monitor – a GUI to spot anomalous connections on your Linux

117•grigio•5d ago•46 comments

Stopping bad guys from using my open source project (feedback wanted)

https://evanhahn.com/stopping-bad-guys-from-using-my-open-source-project/
83•emschwartz•7h ago•127 comments

A new myth appeared during the presidential campaign of Andrew Jackson

https://www.historynewsnetwork.org/article/self-made
37•Petiver•4d ago•69 comments

Zero knowlege proof of compositeness

https://www.johndcook.com/blog/2025/11/29/zkp-composite/
103•ColinWright•14h ago•32 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?