frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

AI's top startups are barely publishing their research

https://www.science.org/content/article/ai-s-top-startups-are-barely-publishing-their-research
340•YeGoblynQueenne•8h ago•184 comments

The coolest use for the Vision Pro

https://christianselig.com/2026/07/vision-pro-house/
531•robbiet480•9h ago•219 comments

Show HN: Open-source engine running Gemma 4 26B in 2 GB RAM on any M-series Mac

https://github.com/drumih/turbo-fieldfare
720•gitpusher42•14h ago•251 comments

Superlogical

https://www.superlogical.com/
615•yan•14h ago•378 comments

LLM Honeypot

https://llm2human.pages.dev/
147•8thom•7h ago•47 comments

The Productivity Mirage

https://frantic.im/mirage/
145•msephton•6h ago•45 comments

Keychron announces first open-source firmware for gaming mice

https://www.digitalfoundry.net/news/2026/07/keychron-announces-first-open-source-firmware-for-gam...
337•JLO64•13h ago•139 comments

The Cold Email

https://zachholman.com/posts/cold-email
154•holman•8h ago•61 comments

Logic for Programmers

https://logicforprogrammers.com/
57•_doctor_love•5h ago•2 comments

Anatomy of a Frontier Lab Agent Intrusion: A Timeline of the July 2026 Incident

https://huggingface.co/blog/agent-intrusion-technical-timeline
340•artninja1988•1d ago•198 comments

NSF pilots 4-year PhDs with industry research placements

https://www.nsf.gov/news/nsf-partners-universities-industry-pilot-initiative-four
61•osnium123•3h ago•58 comments

A.I. companies are recruiting electricians and carpenters by the thousands

https://www.nytimes.com/2026/07/29/business/economy/data-center-electricians-training.html
258•thm•15h ago•318 comments

Kimi K3-256k

https://www.kimi.com/code/docs/en/kimi-code/models
392•monneyboi•10h ago•116 comments

Angels in Coptic Magic I: Introduction

https://www.coptic-magic.phil.uni-wuerzburg.de/index.php/2026/01/16/angels-in-coptic-magic-i-intr...
31•jruohonen•3d ago•0 comments

Kuna: Decompiler Development in the Age of Coding Agents

https://noelo.org/blog/kuna-release/
18•matt_d•3h ago•3 comments

Show HN: CheapFoodMap – A map of good meals under $10

https://cheapfoodmap.com/
172•jaep1•13h ago•180 comments

Turning a dumb AC unit smart (without losing my security deposit)

https://prilik.com/blog/post/automating-ac-nyc/
140•austinallegro•11h ago•110 comments

Some thoughts about Anthropic's new cryptanalysis results

https://blog.cryptographyengineering.com/2026/07/29/some-notes-about-anthropics-new-results/
129•supermatou•13h ago•69 comments

A Trampoline

https://dogdogfish.com/blog/2026/07/29/a-trampoline/
89•matthewsharpe3•9h ago•50 comments

The Royal Order of Operations

https://ken.fyi/ooo
3•surprisetalk•2d ago•0 comments

Man and the Computer by John G. Kemeny (1972 book by the co-creator of BASIC)

https://archive.org/details/mancomputerbyjoh0000john
38•MilnerRoute•7h ago•11 comments

Launch HN: Tokenless (YC S26) – Automatic model switching to save money

https://usetokenless.com/
58•rohaga•14h ago•50 comments

1,741 "informed" consents with one click? GDPR complaint filed

https://noyb.eu/en/1741-informed-consents-one-click-gdpr-complaint-against-dictcc-filed
8•dotcoma•29m ago•0 comments

SalesPatriot (YC W25) Is Hiring FDEs

https://www.ycombinator.com/companies/salespatriot/jobs/M46X6YX-forward-deployed-engineer
1•maciejSz•9h ago

The Rust on ESP Book

https://docs.espressif.com/projects/rust/book/
142•AlexeyBrin•4d ago•15 comments

Recursive Filters: SMA, EMA, Low‑Pass, and a Tiny Kalman

https://www.staszewski.xyz/blog/recursive-filters/
29•kamilstaszewski•1d ago•6 comments

Refactoring cuisine: how an Iraqi stew sailed to Singapore

https://iza.ac/posts/2026/07/the-journey-of-bamya/
45•infinitewalk•3d ago•12 comments

Commodification of Intelligence: Good, Bad, and Ugly Circular AI Deals

https://www.emergingtrajectories.com/lh/commodification-and-circularity/
75•cl42•11h ago•40 comments

Hamburg's Stadtpark: A Park Built to Be Used

https://alsterrunde.com/hamburgs-stadtpark-a-park-built-to-be-used/
130•mertbio•2d ago•30 comments

Show HN: A local merge queue for parallel Claude Code agents

https://github.com/funador/claude-code-merge-queue
26•funador•5h ago•8 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?