Hacker News
Latest
Saving Jet Fuel
2026-09-15 @ 23:17:20Points: 67Comments: 28
Recreating Voodoo Graphics and a Late-1990s Gaming PC on an FPGA
2026-09-15 @ 22:50:55Points: 80Comments: 13
German Rheinmetall open-sources its Battlesuite connected weapon system protcol
2026-09-15 @ 21:07:47Points: 170Comments: 50
Jean-Pierre Serre is 100 years old today
2026-09-15 @ 20:57:18Points: 118Comments: 20
Building a Linux GPU Driver for the M4 Mac Mini in One Month
2026-09-15 @ 19:30:03Points: 226Comments: 138
WangNet – 1.8 MB, zero-dependency Numberwang adjudication in 11 languages
2026-09-15 @ 19:27:35Points: 127Comments: 47
Introducing System One Models and Jev
2026-09-15 @ 19:25:03Points: 1031Comments: 321
Learning to solve hard problems in RL for LLMs by never giving up
2026-09-15 @ 19:07:38Points: 68Comments: 0
Chopping up books when they're physically too big
2026-09-15 @ 18:45:31Points: 152Comments: 145
We got admin access to Baseten's production GitHub in 25 minutes
2026-09-15 @ 18:11:24Points: 257Comments: 141
An Update on Wayback Machine Access
2026-09-15 @ 17:52:18Points: 469Comments: 246
Gemini 3.8 Live and 3.8 Live Extended Thinking
2026-09-15 @ 17:38:18Points: 363Comments: 232
Why I'm still bearish on LLMs after Navier-Stokes
2026-09-15 @ 17:37:12Points: 164Comments: 170
GEFS on OpenBSD: A Early Preview
2026-09-15 @ 17:12:19Points: 112Comments: 61
Jiga (YC W21) Is Hiring Product Engineer (Remote/US)
2026-09-15 @ 17:00:31Points: 1
Cartesian – AI 3D Modeling for Design
2026-09-15 @ 15:26:45Points: 104Comments: 78
Show HN: Pizza Bot – An inbox for AI agents that work in the background
2026-09-15 @ 15:20:26Points: 38Comments: 25
Pizza Bot is a self-hosted desktop app for Mac, Windows, and Linux that runs AI agents in the background and exposes them through an email-like UI. Finished work shows up in Unread, and anything waiting on your approval shows up in Action. It's Apache 2.0-licensed, there's no signup and no telemetry, and you bring your own model provider: Anthropic, Amazon Bedrock, Google Gemini, OpenAI, OpenRouter, or a local model through Ollama. There are builds on the releases page, or you can run it from source.
Pizza Bot started as an internal passion project I worked on with a small team at Amazon.
The whole thing came out of my frustration at having to manually log CRM activities through a browser form. I built a simple REST API called "JoeBot" that connected to my authenticated browser session over CDP and filled out the form for me using Playwright. Then I hacked up a quick Obsidian plugin so I could trigger it from my local notes (no AI and no MCP servers involved).
This caught on quickly. My fellow AWS Solutions Architect Igor Fil joined up with me, and we rebranded the project as "Pizza Bot," named after Amazon's two-pizza teams. We started seeing what other automations we could build. We found a GraphQL API we could query and hacked up some "recipes" to pull data out of the CRM to help with meeting prep. That worked great, and it was right around the time MCP servers seemed to be taking off, so we decided to expose Pizza Bot as an MCP server instead, so it would be available to AI tools through natural language.
This was a decent solution for technical users, but the Account Managers who live inside our CRM system wanted something too. We decided to rebuild Pizza Bot as an Electron desktop app modeled after an email inbox, so it would be familiar to non-technical users and would run on both Mac and Windows. We also bundled internal MCP servers as OCI images and hosted them in Amazon ECR as an "addon marketplace" so users could install them with one click without having to set up Amazon developer tooling.
The project took off organically and expanded outside of AWS into the wider Amazon organization globally. More than 2,000 people ended up using it for meeting prep, email drafting, Slack summaries, CRM logging, prioritizing their day, and web research.
Once apps like Claude Cowork and Amazon's own Quick Desktop came out, we realized the real growth opportunity was outside of Amazon. Rather than try to rip out the Amazon-specific integrations, we rebuilt Pizza Bot once more as an open source project. We leaned on coding agents heavily, which is the only reason a team our size could pull off a full rewrite. I'm pleased to say it's finally public, and we're hoping to bring in community members and see where it goes. We'd like to do for knowledge workers what Claude Code and Codex have done for programmers.
A couple of things to know up front. Most of what made Pizza Bot useful on day one inside Amazon came from that internal catalog of skills and MCP servers for Amazon's own systems, and none of it could come out with the app. So it ships thinner than the version those 2,000 people used, and building that catalog back up for tools other people actually use is where we need the most help. It's also a community project and not an AWS service, so there's no support or SLA behind it. The Windows and Linux builds aren't signed yet either.
On the technical side, Pizza Bot is a server and a client. The desktop app bundles both, or you can point a client at a remote backend; personally, I self-host the server on my home network and reach it from my phone over Tailscale. The server owns the thread lifecycle and checkpoints state with DeepAgents and LangGraph, and clients rehydrate from it as needed, so you can disconnect mid-run and pick the thread back up from another client. Approval pauses outlive the session that created them and collect in an Action filter, so you can answer an hour later from a different device. The agent you talk to has a sandboxed QuickJS interpreter that can reach your filesystem only if you grant it a folder, but its main job is to delegate. Each subagent is a 1:1 mapping of a Skill, and an Activity bar shows that subagent and the tool calls it's making as it works. Memory is opt-in and stored as plain markdown files on your machine. Every tool call is explicit, including looking up a memory - we err on the side of transparency to reduce surprises. Tools come from MCP servers, and skills are ordinary SKILL.md files with a per-tool approval policy, so existing skills that don't require a code interpreter should still work.
What I'd most like to hear about is where the app itself gets in your way, the kind of problem you can't fix by writing a skill or an MCP server. I'm around today to answer questions!
The CSS Zen Garden dream, finally shipped
2026-09-15 @ 14:40:08Points: 134Comments: 75
The Inference Hardware Revolution of 2026
2026-09-15 @ 14:24:08Points: 130Comments: 13
Show HN: Capsule – Single-file web apps that save their data into SQLite
2026-09-15 @ 13:31:40Points: 312Comments: 123
I always had the problem that building HTML pages is really simple now, but trying to save data required hosting it somewhere, and sharing it afterwards was not easy. Over the last few months, I've been building an app called Capsule (it’s also the file extension name) written in Rust with Tauri 2.0 that allows packing an HTML app and its data into a single SQLite file.
The HTML file and any related assets are directly embedded in the database. User data can either be saved as a localStorage key/value store or via a MongoDB-inspired collections API as documents, saved in a table in the file. You can also save other assets, like PDF files or images, directly in the database to keep different documents together. All data can be easily exported to CSV or JSON if needed.
Privacy and security were a big priority for me, so documents cannot do anything out of the box. They don’t have direct access to the file system and they require permission to access the internet. The permission model is still something I’m working to improve. Capsule documents can also use local or remote AI models for document specific AI features.
One downside with this approach is that multiple people working on it will create different copies. To make it possible to merge different copies of the same file, each data entry has a unique UUID and timestamp.
I’m planning to open up the file format specification for the 1.0 version of the app so other apps can read or write Capsule files.
You can try it out in the web preview at https://withcapsule.app/preview with pre-built templates or use any AI provider of your choice to create a custom, Capsule-optimized app by using the following prompt:
"Please read the app wizard instructions at https://withcapsule.app/prompt.txt and help me design an app.“
I’m still working on the file format but there are migrations for each new version, so data should never be lost when using newer versions of the app in the future. Please let me know if you have any ideas or use cases where this might make sense or does not work.