frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Mistral raises €3B to make sovereign, open-weight AI the technology frontier

https://mistral.ai/news/mistral-makes-sovereign-open-weight-ai-to-frontier/
291•kuberwastaken•2h ago•159 comments

We have a year to fix security everywhere

https://jyn.dev/a-year-to-fix-security/
163•saikatsg•2h ago•97 comments

Navier-Stokes – Tristan Buckmaster [pdf]

https://cims.nyu.edu/~tristanb/statement.pdf
148•procedurecall•2h ago•37 comments

I've factored the RSA keys of a Certificate Authority from the 90s

https://mcpherrin.ca/2026/09/07/rsa.html
266•ahlCVA•6h ago•49 comments

My Feed, My Way

https://www.pm.gov.au/media/my-feed-my-way
74•dotcoma•2h ago•50 comments

Multi-Agents LLM Financial Trading Framework

https://github.com/TauricResearch/TradingAgents
24•fittingopposite•2h ago•14 comments

TALA Is Open-Source

https://d2lang.com/blog/tala-is-open-source/
199•alixanderwang•8h ago•12 comments

How well do agents use test/verification techniques?

https://danluu.com/agentic-testing/
62•vinhnx•4h ago•11 comments

Arm Mali G2-Ultra NX GPU: desktop-class mobile gameplay with AI-native graphics

https://newsroom.arm.com/blog/arm-mali-g2-ultra-nx-ai-native-mobile-graphics
32•Re-Tails•3h ago•15 comments

Watch Los Angeles get built, one building at a time (1880–2026)

https://lax-skyline.parcelscope.net/
281•rustywasm•12h ago•138 comments

There's a new "Google Jail" for independent wikis

https://weirdgloop.org/blog/google-jail
76•pizzaiolo•5h ago•25 comments

Jellyfin 12.0

https://jellyfin.org/posts/jellyfin-release-12.0/
306•0xC0ncord•5h ago•121 comments

Understanding Computer Memory Architecture and SSD Internals

https://codingpirate.com/understanding-computer-memory-architecture-ac9320110787
23•Deeptiman•1d ago•2 comments

The VMs Powering Mobile Agents (Instinct, Claude Code)

https://rohanadwankar.github.io/posts/platforms.html
20•RohanAdwankar•3h ago•3 comments

Leaving VMware just got harder after Broadcom pulled VDDK downloads

https://www.virtualizationhowto.com/2026/09/leaving-vmware-just-got-harder-after-broadcom-pulled-...
178•josephcsible•11h ago•75 comments

John Margolies' photographs of roadside America

https://publicdomainreview.org/collection/john-margolies-photographs-of-roadside-america/
77•duck•4d ago•19 comments

WeatherNext 3

https://deepmind.google/science/weathernext/
310•matthieu_bl•4d ago•75 comments

Scientists observe Einstein's gravity in the quantum world

https://www.ox.ac.uk/news/2026-08-28-scientists-observe-einsteins-gravity-in-the-quantum-world
208•mudil•3d ago•50 comments

216M Spy TVs – The LG Smart TV Problem [video]

https://www.youtube.com/watch?v=6IFVTcM28KA
717•treve•1d ago•887 comments

GamersNexus and LG: Or why rooting your TV is a bad idea

https://leaflet.pub/p/did:plc:yhgc5rlqhoezrx6fbawajxlh/3muwrqenzfk2n
72•drasticactions•4h ago•59 comments

Extinct Tasmanian tiger's 'snap' unlike any living mammal's bite

https://www.cnn.com/2026/09/02/science/tasmanian-tiger-skull-bite-force
24•cisc•4d ago•6 comments

We built our house for LAN parties

https://lanparty.house/
6•fittingopposite•2d ago•0 comments

UAE-based Falcon AI NSFW classifier among top global open-source models (2025)

https://www.middleeastainews.com/p/uae-ai-model-tops-50-million-monthly
5•instagraham•1h ago•1 comments

Trusting-Trust Attack against an Entire Linux Distribution

https://arxiv.org/abs/2607.24888
199•signa11•2d ago•40 comments

Feather Atlas

https://www.fws.gov/lab/featheratlas/identify.html
5•bookofjoe•1d ago•0 comments

I tested 10 model/harness combinations on the same Three.js task

https://alvins82.github.io/hangar-harness-model-tests/
58•alvins82•4h ago•41 comments

Emacs Bedrock 2.0

https://lambdaland.org/posts/2026-09-06-bedrock-v2/
100•ashton314•11h ago•12 comments

Colorlight 5A-75B: A dive into a popular low-cost ECP5 (FPGA) development board

https://blog.yosyshq.com/p/colorlight-part-1/
31•gregsadetsky•3d ago•7 comments

My business partner sent a 5K vibe-coded PR that he didn't even test

https://ycj.bearblog.dev/ai-again/
21•yhcj•5h ago•18 comments

Show HN: Jigsaw Haiku

https://jigsawhaiku.com/
84•windowshopping•3d ago•27 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?