frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Gemini 3.7 Flash

https://blog.google/innovation-and-ai/models-and-research/gemini-models/introducing-gemini-3-7-fl...
457•thisisauserid•4h ago•274 comments

Accelerating GPT-5.6 Sol Ultrafast

https://www.cerebras.ai/blog/accelerating-gpt-5-6-sol-ultrafast-with-openai
279•pr337h4m•3h ago•108 comments

NP-Overrated

https://gruhn.me/blog/2026-08-13/
48•theanonymousone•1h ago•16 comments

Donkey.bas is 45 Years Old – 131 line of Glory

https://donkeybas.com/
132•jkrauska•3h ago•53 comments

Mistral OCR 4.1

https://docs.mistral.ai/models/ocr-4-1
194•spelk•4h ago•70 comments

Understanding is the new bottleneck

https://www.geoffreylitt.com/2026/07/02/understanding-is-the-new-bottleneck
71•sebg•2h ago•41 comments

Spaghettifying DRAM

https://github.com/xoreaxeaxeax/skitter-creek-bath-salts
419•matt_d•7h ago•128 comments

Choose Boring Technology (2015)

https://mcfunley.com/choose-boring-technology
166•tosh•3h ago•86 comments

How Gödel's Proof Works (2020)

https://www.quantamagazine.org/how-godels-proof-works-20200714/
31•tzury•1h ago•17 comments

How Organizations Use AI: Evidence from ChatGPT [pdf]

https://cdn.openai.com/pdf/how-organizations-use-chatgpt.pdf
30•malshe•2h ago•12 comments

Single log line is 49KB+ (ext4) / 110KB+ (btrfs) of systemd-journald disk writes

https://github.com/systemd/systemd/issues/40262
84•ValdikSS•2h ago•35 comments

Idol Mahjong Final Romance: A Slideshow Disguised as a Video Game

https://nicole.express/2026/more-like-idle-mahjong.html
22•nicole_express•3d ago•0 comments

How Compaction Works in Pi

https://earendil.com/posts/compaction-in-pi/
42•tosh•3h ago•4 comments

Where did the old web go? We followed 657,607 links to find out

https://0.mk/blog/link-rot
91•tdx•3h ago•57 comments

Tocharian Online

https://lrc.la.utexas.edu/eieol/tokol/0
44•Bluestein•4h ago•6 comments

Kubernetes on Oxide: How customer needs shaped our integrations

https://oxide.computer/blog/kubernetes-on-oxide
129•stevehipwell•7h ago•59 comments

DeepSeek Harness developer preview

https://deepseek.com/harness/en/
502•bjin•8h ago•229 comments

Come for ENIAC, Stay for UNIVAC and Skeduflo

https://uniqueatpenn.wordpress.com/2026/08/05/come-for-eniac-stay-for-univac-and-skeduflo/
55•cainxinth•2d ago•18 comments

AI At Home Part 1: A Box Of Scraps

https://jdagostino.github.io/ai-pt1-box-o-scraps/index.html
63•timmmmmmay•5h ago•34 comments

Choosing an AI model: one prompt, 11 models, different results

https://www.netlify.com/blog/one-prompt-11-models-very-different-results/
155•toddmorey•8h ago•66 comments

Gloomberb

https://gloom.sh/
350•rbanffy•7h ago•174 comments

Codex in ChatGPT desktop app for Linux is now in preview

https://community.openai.com/t/codex-in-chatgpt-desktop-app-for-linux-is-now-in-preview/1390027
435•allanrbo•16h ago•292 comments

Ordinary abundance

https://ordinaryabundance.com/
166•yen223•7h ago•84 comments

How art invented humanity

https://aeon.co/essays/humans-did-not-invent-art-it-was-the-other-way-around
70•prismatic•22h ago•21 comments

ATG (YC F25) Is Hiring Member of Technical Staff (Data Platform)

https://atg.science/careers
1•dkobran•9h ago

Smooth Move: Taming Trajectories with Polynomials

https://nick.zoic.org/art/smooth-move-taming-trajectories-with-polynomials/
6•lioeters•3d ago•0 comments

I built a 500k-domain search engine for makers in a weekend for $10

https://alexmorleyfinch.github.io/marlin/history/v1/article/the_birth.html
121•dreamforever•7h ago•66 comments

JDK 27 G1/Parallel/Serial GC Changes

https://tschatzl.github.io/2026/08/10/jdk27-g1-serial-parallel-gc-changes.html
32•0x54MUR41•4h ago•9 comments

GoAccess – Open-source real-time log analyzer and interactive viewer

https://goaccess.io/
35•gregsadetsky•5h ago•8 comments

Solid 2.0 RC: The Big <Reveal>

https://www.solidjs.com/blog/solid-2-0-rc-the-big-reveal
53•GavinAnderegg•3h ago•37 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?