Hacker News

Latest

PgDog (YC P25) Is Hiring

2026-07-29 @ 17:01:10Points: 1

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

2026-07-29 @ 16:59:52Points: 25Comments: 25

It's inspried by 거지맵 (Begger's Map) a Korean crowdsourced map students use to find cheap eats.

Ocverage is heaviest in Texas, since I live in Dallas, but have 1200 meals across 15 US cities. Seed data came from Google Review, 4.2 star or higher with at least 500 reviews, and verified price under $10 per menu item.

Things I would love feedback on : whether the price-freshness model makes sense, and what would make you trust the price on a site like this. How to encourage people to update prices, since inflation is making food price very frequent.

https://cheapfoodmap.com

Any and all suggestion will be super helpful. Thank you!

Some thoughts about Anthropic's new cryptanalysis results

2026-07-29 @ 16:42:20Points: 39Comments: 16

Keychron announces first open-source firmware for gaming mice

2026-07-29 @ 16:36:59Points: 100Comments: 47

Show HN: Kedge – Full-stack cloud with forkable VM snapshots and global SQLite

2026-07-29 @ 16:15:57Points: 32Comments: 9

I helped build Fly.io for 4 years and shared enthusiasm for the founders' vision of a 'global Heroku'. While there, I wrote "The Serverless Server" (https://fly.io/blog/the-serverless-server/) as a study of Lambda and a sketch of a modern serverless product built around lightweight VMs. That essay was the initial inspiration for Kedge.

Kedge has a fast VM orchestrator that can create code sandboxes or scale service instances in 3ms, using a combination of forkable VM snapshots and a tree of warm pools (Linux kernel -> base runtime -> app). VMs are memory-dense thanks to shared copy-on-write memory pages. You can run lightweight CGI-style functions, public OCI images, or source code for BuildKit to compile and deploy.

Kedge's global control plane sits on an eventually-consistent SQLite database. Taking inspiration from Corrosion and Litestream, I built a local-first, multi-writer CRDT-based replication system backed by object storage, and just recently made it open source (https://github.com/wjordan/syzy).

You can also use a SQLite client to query `/shared.db` from any instance for a build-in replicated database in your app. This lets Kedge autoscale services close to your users while each instance queries its local replica for eventually-consistent data, with no need to micro-manage instance or volume placement. (There's also a /shared/ filesystem adapter for convenience.)

Kedge can even use this same database for stateful, server-rendered HTML apps. Data attributes bind forms, buttons, and values to records in the app database, Kedge compiles the schema and operations at deploy-time, and then queries the local data to serve requests. As a demo, I made a Hacker News clone with story submission, votes, comments and auth in about 60 lines of Markdown, plus CSS (https://kedge.dev/docs/html-apps#kedger-news).

I've just started collecting public feedback, so please let me know what you think! I'm particularly interested in feedback on the stateful HTML app model, which is the newest (and most ambitious) piece. The preview is currently running in 11 regions for you to kick the tires. There's no billing yet, so the pricing page is an estimate. Thanks for taking a look!

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

2026-07-29 @ 15:55:27Points: 36Comments: 35

https://usetokenless.com/), which I’m building alongside co-founders Andrew and Kev. We’re building an API gateway which routes agent traffic dynamically turn-by-turn between different models to save on AI spend.

The cost of AI tokens is top-of-mind for many. Companies like Uber and Salesforce have been complaining about blowing their yearly AI spend faster than expected.

Frontier models are amazing for dev work, but are so expensive. Open-source models are cheap and rapidly improving, closing the gap with frontier models, but aren’t quite there yet.

Tokenless gets you the best of both worlds–routing harder turns to smarter models only when needed, which keeps costs low.

Before Tokenless, I was doing a PhD at Princeton. While using coding/other agents, I constantly agonized over model choice, to make sure my AI spend was going as far as possible on my academic Cursor account.

At the same time, I was doing LLM research, and a small technique I developed while in recovery from NeurIPS submission season seemed to hit SOTA pretty fast. I was surprised that such simple ideas could do routing well.

We’ve been able to develop a version of the router that matches the performance of Claude Fable 5 at half the cost. The blog post on our website explores the technical details on how we did this (https://usetokenless.com/blog/building-tokenless/).

Highlights: - Our approach queries multiple models at once and uses their progress to make decisions (this technique is novel AFAIK, let us know if you know anyone else doing this). - Switching models doesn’t destroy the cache if the routing algorithm is aware of when the cache is hot/cold.

To come: - Adding Kimi K3, all other GPT efforts and more to the router

Go ahead and sign up on usetokenless.com and try using Tokenless with your agent, you’ll get $20 of free credit. Here’s a demo on how to use it: https://youtu.be/sjZWriclcls

Tokenless provides frontier-level intelligence for cheaper, so we’d love some feedback on how it feels to use, any corner cases that the router routes incorrectly, and whether you find the routing problem interesting!

Superlogical

2026-07-29 @ 15:41:33Points: 256Comments: 193

Cesium DevCon 2026 talks are up, including a keynote from SQLite's creator

2026-07-29 @ 15:13:25Points: 33Comments: 11

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

2026-07-29 @ 15:05:43Points: 401Comments: 131

I built a specialized inference engine for running 4-bit Gemma 4 26B-A4B-IT on any M-series Mac using about 2 GB of RAM. It is called TurboFieldfare and is written in Swift and Metal.

I have always adored on-device AI. It feels like magic that you can run a powerful NN on your Mac or iPhone. So I wanted to push the limits a bit and run a model whose weights don’t fit in memory.

The model’s 4-bit quantized weights occupy roughly 14 GB, which makes running it with conventional inference tools almost impossible on an 8 GB or even 16 GB Mac once the OS, applications, and KV cache are included.

The trick is to keep the shared part of the model and the KV cache in RAM, then stream only the routed experts needed for each token from SSD. An SSD is way slower than RAM, so the runtime uses a small expert cache and bounded parallel `pread`. While those reads are in flight, the GPU runs the shared part of the layer.

I ran more than 100 experiments. Most didn’t work. A few got me here. The experiments are described in the GitHub repo.

It currently generates 5–6 tok/s on an 8 GB M2 MacBook Air and 31–35 tok/s on an M5 MacBook Pro.

I also added an experimental OpenAI-compatible local server. It supports streaming and tool calls, and reuses one prompt prefix from the KV cache.

Try it! The Mac app is easy to install. On the first run, it will download 15 GB of weights from Hugging Face. The model is surprisingly capable.

I would love any kind of feedback!

Anatomy of a frontier-lab agent intrusion

2026-07-29 @ 15:01:52Points: 118Comments: 47

GPT-5.6 vs. Claude Fable 5 for Physical AI, which performs best?

2026-07-29 @ 14:56:28Points: 52Comments: 10

Show HN: Qwen Scribe – local transcription and dictation for Apple Silicon

2026-07-29 @ 14:47:22Points: 37Comments: 12

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

2026-07-29 @ 14:43:47Points: 91Comments: 134

Self-hosting Kimi K3: 20% more hardware cost, 20% better task resolution

2026-07-29 @ 14:38:35Points: 64Comments: 27

Handbook.md shows that long policy documents do not reliably govern agents

2026-07-29 @ 13:01:57Points: 232Comments: 147

Shipping Godot VR and Porting to PSVR2: A Partial Post Mortem

2026-07-29 @ 12:48:18Points: 88Comments: 2

Darktable

2026-07-29 @ 12:33:02Points: 199Comments: 104

Disrupting supply chain attacks on NPM and GitHub Actions

2026-07-29 @ 12:11:18Points: 77Comments: 26

Document-borne AI worms can self-propagate through Copilot for Word

2026-07-29 @ 11:44:33Points: 269Comments: 202

KOReader

2026-07-29 @ 11:05:08Points: 558Comments: 176

SpecForge – A Platform for Authoring Formal Specifications

2026-07-29 @ 10:35:19Points: 66Comments: 7

Amiga Graphics Archive

2026-07-29 @ 10:19:44Points: 136Comments: 23

SQLite in Production: Optimizing WAL Mode, Concurrency, and VFS Layers

2026-07-29 @ 07:18:24Points: 213Comments: 67

More Tailscale tricks for your jailbroken Kindle

2026-07-29 @ 04:58:46Points: 367Comments: 105

User Interfaces of the Demo Scene

2026-07-29 @ 04:30:36Points: 367Comments: 64

Hamburg's Stadtpark: A Park Built to Be Used

2026-07-27 @ 06:23:46Points: 64Comments: 13

Hunter-gatherers introduced fish to a mountain lake 7000 years ago

2026-07-27 @ 00:58:45Points: 110Comments: 87

Lisp moving Forth moving Lisp

2026-07-26 @ 17:37:33Points: 107Comments: 25

The Rust on ESP Book

2026-07-25 @ 13:15:41Points: 61Comments: 8

Learning Musical Multitasking

2026-07-24 @ 14:40:18Points: 15Comments: 9

Archives

2026

2025

2024

2023

2022