frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Use your Nvidia GPU's VRAM as swap space on Linux

https://github.com/c0dejedi/nbd-vram
77•tanelpoder•1h ago•19 comments

MAI-Code-1-Flash

https://microsoft.ai/news/introducingmai-code-1-flash/
370•EvanZhouDev•5h ago•175 comments

CT scans of BYD car parts

https://www.lumafield.com/scan-of-the-month/byd
190•viasfo•4h ago•78 comments

California’s university system went all in on AI, now it's tearing itself apart

https://www.nytimes.com/2026/06/01/magazine/ai-university-college-california.html
87•jeffwass•16h ago•62 comments

AI Outperforms Law Professors in Stanford Law Study

https://law.stanford.edu/press/ai-outperforms-law-professors-in-stanford-law-study/
19•berlianta•1h ago•1 comments

4K years ago, Mohenjo-daro grew more equal over time

https://archaeologymag.com/2026/05/mohenjo-daro-grew-more-equal-over-time/
33•marojejian•2h ago•12 comments

Gmail thinks I'm stupid, so I left

https://moddedbear.com/gmail-thinks-im-stupid-so-i-left
578•speckx•5h ago•357 comments

My Students Can't Read

https://www.chronicle.com/article/my-students-cant-read
11•computerliker•40m ago•5 comments

My thoughts after using Clojure for about a month

https://www.acdw.net/clojure/
93•speckx•4h ago•37 comments

HP re-releases classic computer science calculator: The HP-16C

https://hpcalcs.com/product/hp-16c-collectors-edition/
114•dm319•5h ago•70 comments

LLMs are not the black box you were promised

https://www.jay.ai/blog/llms-are-not-a-black-box
18•_jayhack_•1h ago•5 comments

Open Repair Data Standard – Open Repair Alliance

https://openrepair.org/open-data/open-standard/
85•cassepipe•5h ago•2 comments

A walking tour of surveillance infrastructure in Seattle (2020)

https://coveillance.org/a-walking-tour-of-surveillance-infrastructure-in-seattle/
371•eustoria•11h ago•235 comments

Adafruit receives demand letter from Fenwick legal counsel on behalf of Flux.ai

https://blog.adafruit.com/
608•semanser•14h ago•248 comments

Now AI agents need what RSS does

https://julienreszka.com/blog/rss-is-back-ai-agents-are-reading-it/
51•julienreszka•4h ago•22 comments

How we index images for RAG

https://www.kapa.ai/blog/how-we-index-images-for-rag
82•mooreds•8h ago•9 comments

More than 6 out of 10 people turn to AI for psychological support

https://www.axa.com/en/press/press-releases/2026-mind-health-report
6•mgh2•48m ago•0 comments

Trump signs downsized AI order after weeks of reversals

https://www.politico.com/news/2026/06/02/trump-signs-downsized-ai-order-00946389
165•_alternator_•8h ago•116 comments

Multicore suppport for DOS is real – partly

https://www.vogons.org/viewtopic.php?t=111336
55•beebix•2d ago•9 comments

Gleam v1.17.0

https://gleam.run/news/single-file-gleam-beam-programs-with-escript/
78•figbert•2h ago•4 comments

Why Janet? (2023)

https://ianthehenry.com/posts/why-janet/
423•yacin•15h ago•230 comments

The advertising cartel coming to your web browser

https://blog.zgp.org/the-advertising-cartel-coming-to-your-web-browser/
121•speckx•5h ago•35 comments

QBE – Compiler Backend – 1.3

https://c9x.me/compile/release/qbe-1.3.html
74•birdculture•7h ago•26 comments

Expanding Project Glasswing

https://www.anthropic.com/news/expanding-project-glasswing
155•surprisetalk•11h ago•200 comments

Bringing Up DeepSeek-V4-Flash on AMD MI300X

https://fergusfinn.com/blog/deepseek-v4-flash-mi300x/
75•kkm•6h ago•7 comments

MP3s from Google Drive in Music Assistant on Home Assistant

https://blog.tomayac.com/2026/05/30/your-mp3s-from-google-drive-in-music-assistant-on-home-assist...
15•tomayac•3d ago•4 comments

Love systemd timers

https://blog.tjll.net/you-dont-love-systemd-timers-enough/
341•yacin•15h ago•220 comments

Preparing for KDE Plasma's Last X11-Supported Release

https://blog.davidedmundson.co.uk/blog/596/
141•jandeboevrie•10h ago•174 comments

Fidonet: Technology, Use, Tools, and History (1993)

https://www.fidonet.org/inet92_Randy_Bush.txt
147•BruceEel•10h ago•58 comments

Show HN: Paseo – Beautiful open-source coding agent interface

https://github.com/getpaseo/paseo
12•timhigins•2h ago•5 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?