frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Dream-RSI: Recursive Self-Improvement through Evolving Worlds

https://arxiv.org/abs/2609.14858
79•bananaflag•2h ago•19 comments

Mistral X Mozilla: Private, Multilingual AI Browsing

https://mistral.ai/news/mistral-x-mozilla/
334•vertigoruntime•8h ago•109 comments

Small Programming Tricks

https://will-keleher.com/posts/small-programming-tricks-matter/
10•signa11•17m ago•1 comments

Introducing System One Models and Jev

https://typesafe.ai/blog/introducing-system-one-models-and-jev
1670•albelfio•20h ago•458 comments

Show HN: An e-ink frame that hears birds and draws them as 1800s illustrations

https://github.com/arnegiacomo/fugleramme
1845•arnemunthekaas•1d ago•220 comments

Tell the speakers that you liked their talks

https://ohhelloana.blog/tell-the-speakers/
60•whisper2020•1d ago•13 comments

Hackers Got Inside a Flock Camera. Its Data Shows How the System Works

https://www.wired.com/story/hackers-flock-camera-data-shows-how-system-works/
212•driverdan•2h ago•98 comments

How Big Are Factorials?

https://eli.thegreenplace.net/2026/how-big-are-factorials/
25•ibobev•1d ago•11 comments

Can we stop with the uptime percentages?

https://blog.jim-nielsen.com/2026/stop-with-the-uptime-percentage/
26•surprisetalk•34m ago•7 comments

Apple Reference Image: A New Approach for Verified Photography

https://security.apple.com/blog/apple-reference-image/
406•imwally•14h ago•261 comments

The Google Play app review process now regularly takes longer than a week

https://gultsch.social/@daniel/117280438824908947
258•inputmice•4h ago•216 comments

Scaling Golang CI by Replacing actions/setup-go

https://www.cloudx.ai/posts/setup-go
41•peterldowns•3h ago•5 comments

Douglas Adams and the exterminated Doctor Who adventure

https://www.bbc.co.uk/news/articles/c8jdp38z4jgo
58•6LLvveMx2koXfwn•2d ago•37 comments

Kyber (YC W23) Is Hiring a Forward Deployed Engineer

https://www.ycombinator.com/companies/kyber/jobs/eturrAR-forward-deployed-engineer
1•asontha•4h ago

Original Sony PlayStation 2 security chip 'broken wide open' after 26 years

https://www.tomshardware.com/video-games/playstation/26-year-old-sony-ps2-security-chip-broken-wi...
155•rbanffy•4h ago•42 comments

Anatomy of a Texture

https://agentlien.github.io/texture/
14•Agentlien•1h ago•4 comments

An update on Wayback Machine access

https://blog.archive.org/2026/09/15/an-update-on-wayback-machine-access/
635•ChrisArchitect•22h ago•340 comments

Salesforce Global Outage

https://status.salesforce.com/products/all
206•mabil•5h ago•118 comments

Show HN: How Stale Is Your AI? Release age and training cutoff for 20 models

https://stale.jock.pl/
26•joozio•3h ago•18 comments

Measuring Gauss-Seidel loop-carried dependency and fixing it via loop unrolling

https://loiseaujc.github.io/posts/blog-title/make_gauss_seidel_great_again.html
3•loiseaujc•1d ago•0 comments

Show HN: I made a flight simulator, except you're just a passenger

https://inflightsimulator.com
318•rkotcher•2d ago•178 comments

Doing Everyone Else's Job

https://yosefk.com/blog/doing-everyone-elses-job.html
167•luu•1d ago•77 comments

Gemini 3.8 Live and 3.8 Live Extended Thinking

https://blog.google/innovation-and-ai/models-and-research/gemini-models/gemini-3-8-live-gemini-3-...
465•leumon•22h ago•311 comments

PS5 Linux lead quits: "a bunch of noobs using LLMs" that "they don't understand"

https://frvr.com/blog/news/ps5-linux-lead-quits-as-open-source-projects-have-become-a-bunch-of-no...
229•alexjplant•1h ago•145 comments

Why I'm still bearish on LLMs after Navier-Stokes

https://dank.systems/posts/2026-09-15-ai-bear.html
365•jaykru•22h ago•458 comments

DeepSeek v4.1 Flash Is Now Our Best Hacking Model

https://enclave.ai/blog/deepseek-v41-flash-is-now-our-best-hacking-model
88•talhof8•3h ago•24 comments

OpenAI expands ChatGPT ads with Sponsored Agents

https://openai.com/index/reimagining-advertising-with-ai/
104•vertigoruntime•2h ago•101 comments

Intelligence per Watt: Measuring Intelligence Efficiency of Local AI

https://arxiv.org/abs/2511.07885
119•pythonic_hell•2d ago•38 comments

German Rheinmetall open-sources its Battlesuite connected weapon system protcol

https://rheinmetall.github.io/onboardapi-documentation/9.10.0/index.html
264•summarity•19h ago•98 comments

A software thing I built: GPS on a 25MHz 486-SX

https://forum.vcfed.org/index.php?threads/a-software-thing-i-built-gps-on-a-25mhz-486-sx.1258966/
61•JPLeRouzic•10h ago•19 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?