frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

FreeInk: Open ecosystem for e-readers

https://freeink.org/
197•FriedPickles•2h ago•46 comments

Gemini 3.6 Flash, 3.5 Flash-Lite, and 3.5 Flash Cyber

https://blog.google/innovation-and-ai/models-and-research/gemini-models/gemini-3-6-flash-3-5-flas...
501•logickkk1•5h ago•389 comments

OpenAI and Hugging Face partner to address security incident

https://openai.com/index/hugging-face-model-evaluation-security-incident/
130•mfiguiere•39m ago•49 comments

Long presumed dead, a thriving coral reef is discovered in West Africa

https://e360.yale.edu/digest/benin-coral-reef
235•speckx•5h ago•39 comments

Jack Dorsey launches Buzz to combine team chat, AI agents and Git hosting

https://runtimewire.com/article/jack-dorsey-block-buzz-team-chat-ai-agents-git
135•ryanmerket•3h ago•119 comments

Apple has decided to compete for creativity app users

https://alex4d.com/notes/item/apple-competing-for-creativity-app-users
55•speckx•2h ago•34 comments

Apple defeats liability for not scanning iCloud for CSAM

https://blog.ericgoldman.org/archives/2026/07/apple-defeats-liability-for-not-scanning-icloud-for...
251•speckx•6h ago•223 comments

'VPNs are lawful technical tools,' says EU Court in landmark copyright ruling

https://www.techradar.com/vpn/vpn-privacy-security/vpns-are-lawful-technical-tools-says-eu-court-...
96•healsdata•1h ago•12 comments

Apple Private Cloud Compute SoC 3 audit reports

https://support.apple.com/guide/certifications/apple-private-cloud-compute-soc-3-audit-apc95a31b9...
53•throwfaraway4•2h ago•13 comments

Qwen-Image-3.0: Rich Content, Authentic Details, Deep Knowledge

https://qwen.ai/blog?id=qwen-image-3.0
506•ilreb•12h ago•206 comments

PCjs Machines

https://www.pcjs.org/
160•naves•7h ago•16 comments

France's Anssi Will Block PQC-Free Products from Certification Starting 2027

https://postquantum.com/security-pqc/anssi-pqc-certification-2027/
70•Sami_Lehtinen•4h ago•31 comments

Laguna S 2.1

https://poolside.ai/blog/introducing-laguna-s-2-1
105•rexledesma•3h ago•22 comments

Bloomy (YC S26) is hiring a founding engineer

1•alexsouthmayd•3h ago

Show HN: A self-running space economy SIM in Rust and Bevy

https://github.com/Kalcode/spaceprojectsim
43•kalcode•2h ago•12 comments

Meta's AI models are powering the first wave of Genesis Mission projects

https://ai.meta.com/blog/genesis-mission-lawrence-berkeley-national-laboratory-segment-anything-d...
70•surprisetalk•3h ago•49 comments

Show HN: Read the Tape – Wordle for daytrading, five blind S&P 500 charts a day

https://readthetape.cc/
8•will_asouka•1d ago•1 comments

My USB Drive Has a Hidden Encrypted Vault

https://rootkitlabs.com/2026/06/22/I%27m-Building-a-Secure-USB-Drive/
103•machinehum•1d ago•66 comments

Slater – Low-memory graphdb designed for read-heavy graphs

https://github.com/Hikari-Systems/slater
14•rickkjp•2h ago•6 comments

Show HN: Justif – Knuth-Plass justification and microtypography for the web

https://justif.lyall.co/
9•lyall•4d ago•2 comments

Advertise in ChatGPT

https://ads.openai.com/
179•montecarl•1h ago•194 comments

The unreasonable difficulty of time series forecasting

https://suzyahyah.github.io/machine%20learning/2026/06/27/trouble-with-time-series.html
88•suzyahyah•3d ago•30 comments

AI Agent – TRMNL

https://help.trmnl.com/en/articles/14130438-ai-agent
17•joeyespo•2h ago•11 comments

Show HN: CodeAlmanac – Karpathy-style codebase wiki from your conversations

https://github.com/AlmanacCode/codealmanac/
27•divitsheth•3h ago•12 comments

The World's 2,400 Castles

https://thecastlemap.com/
137•marklit•4h ago•102 comments

Greedy is optimal for single-pass semi-streaming matching

https://arxiv.org/abs/2607.14656
13•MarcoDewey•2h ago•0 comments

The Price of Happiness

https://happiness-science.org/price-of-happiness/
20•andyjohnson0•2h ago•8 comments

Cheap self-hosted Kubernetes on Hetzner cloud (2025)

https://blog.qstars.nl/posts/cheap-self-hosted-kubernetes-on-hetzner-cloud/
48•victorbrink•2h ago•25 comments

Zero-dependency streaming tar parser and writer for JavaScript

https://ayuhito.com/projects/modern-tar/
5•ayuhito•3d ago•0 comments

Show HN: Imagin Raw – A 9MB Open-Source Alternative to Adobe Bridge for Mac

https://github.com/cristibaluta/Imagin-Raw
42•cristi_baluta•3h ago•12 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?