Wednesday, September 16, 2026

Show HN: Restarted – a 2026 remake of the classic 2015 startup generator https://ift.tt/iu4UAcr

Show HN: Restarted – a 2026 remake of the classic 2015 startup generator The original startup website generator by Tiff Zhang and Mike Bradley landed on Hacker News in April 2015 ( https://ift.tt/TMxAsdY ) and has been one of my favorite little novelties of that era ever since. It perfectly captures the saturated colors, cliché hero shots, gimmicky names, buzzword-heavy slogans, and proudly hirsute team photos of the time. A lot has changed since then, so I thought it would be fun to make a contemporary remake: https://restarted.io/ By default you get the minimalist aesthetic and clean-cut faces of 2026. The classic 2015 look is still available — just click the link at the bottom of the page or change the “z” parameter in the URL to the more familiar “s”. The universe of partner sites and competing startups is just as expansive as it ever was. The original site is entirely client-side and requires downloading all of the data tables locally. It leans on a mix of jQuery 1.11.2, Bootstrap 3.3.2, and Font Awesome 4.3.0, and if you view the source, it instantly gives away all of its secrets. For restarted.io I replaced all of that with a server-side renderer written in Go, so this time view-source tells you nothing. There are many Easter eggs in there — see how many you can find before I write them up. My original goal was to stay faithful to the 2015 appearance, and that turned out to be a technical adventure. The original's sine-based random number generator is... the worst, and different implementations of sine give different results. The eventual solution was to extract the exact sine function from Chrome’s V8 engine, as vendored C behind cgo and as a line-by-line Go port that keeps cgo optional, so the seeds and results line up the way they used to. Both are checked against V8’s own test cases. Then I discovered a bug in the original code that made half of its vocabulary unreachable — the first half of the verb table and the second half of the noun table, exactly complementary, so nothing about the output ever looked truncated. My goal then shifted from remaking the generator as it was in 2015 to remaking the site as the authors intended it to be in 2015. Over the years several people asked for their photos to be removed, so the remake instead draws from a broad pool of era-appropriate AI-generated profiles. A perceptual hash helps keep everyone looking distinct, and there’s a bit of extra care to make sure the Wang Fangs of the world don’t appear as Irish lasses. The hero image pool is much larger now, and all the old Rio de Janeiro shots have been retired, though you’ll still recognize plenty of the 2015 photos. Have fun poking around! https://restarted.io/ September 15, 2026 at 05:04PM

Show HN: Pixel Agents – A pixel-art mission control for your Claude Code agents https://ift.tt/DfklIdv

Show HN: Pixel Agents – A pixel-art mission control for your Claude Code agents https://mateovalle.github.io/pixel-agents/ September 16, 2026 at 10:42PM

Tuesday, September 15, 2026

Show HN: Pizza Bot – An inbox for AI agents that work in the background https://ift.tt/BIe78S2

Show HN: Pizza Bot – An inbox for AI agents that work in the background Hi HN - long-time lurker (since 2012!), first time poster. 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! https://ift.tt/snQgGJR September 15, 2026 at 08:50PM

Show HN: Sass – Rust and WASM https://ift.tt/rbKHXGB

Show HN: Sass – Rust and WASM https://ift.tt/pxRH20i September 16, 2026 at 01:04AM

Show HN: Loss. a tiny satire about AI progress https://ift.tt/vP1to5M

Show HN: Loss. a tiny satire about AI progress I wanted to parody where AI seems to be heading. You start as a manual inference unit pressing a button for the next token, then systems take over; agents, sub-agents, approvals, swarms. It’s Universal Paperclips for the agentic AI era, and a small exploration of where predicting the next token might eventually take us. What’s the worst that could happen? https://workatloss.com/ September 15, 2026 at 07:46PM

Monday, September 14, 2026

Show HN: An open-source control plane for your company's AI agents https://ift.tt/PGbDHlh

Show HN: An open-source control plane for your company's AI agents https://ift.tt/mhBOMFv September 15, 2026 at 04:46AM

Show HN: Macros with a Behringer FCB1010 MIDI Pedalboard in macOS https://ift.tt/jKqwWLV

Show HN: Macros with a Behringer FCB1010 MIDI Pedalboard in macOS https://ift.tt/Bkr0qRz September 15, 2026 at 04:31AM

Show HN: Bypassing Transformer Softmax via Static Contraction https://ift.tt/nIL6Bk2

Show HN: Bypassing Transformer Softmax via Static Contraction https://ift.tt/W9mYi8M September 12, 2026 at 04:06AM

Sunday, September 13, 2026

Show HN: Surraura – audio on your Mac in a simulated environment (Helps my ADHD) https://ift.tt/8ltrwRL

Show HN: Surraura – audio on your Mac in a simulated environment (Helps my ADHD) I built an app to help my late diagnosed ADHD - through sound. The app wraps whatever is playing on mac through device convolution (old radio, hifi system) - Room convolution (a bedroom, a forest) and adds ambience (rain, wind, waves) and Apples spatial processing - so it sounds like a real space. For me - hearing the sound in a space really helps more than just the dry sound, the spatial information and ambience lets me focus much more. At some point I thought- Maybe others will have the same effect? So I took the care and effort to make into a nice app with the option of downloading additional environments etc. https://ift.tt/guv9QJY Thank you for your time, would love to hear your thoughts. September 13, 2026 at 10:47PM

Show HN: I made an automated day-by-day itinerary organizer for my trip to Spain https://ift.tt/TcQjJE6

Show HN: I made an automated day-by-day itinerary organizer for my trip to Spain For my solo food pilgrimage to the Basque Country, I pre-arranged flights in/out of Bilbao, Guggenheim Museum tickets, Michelin Guide restaurant reservations, bus tickets to San Sebastian and Saint-Jean-de-Luz, walking food tours and hotel reservations in each city, and a long list of pintxo spots to hit with notes on each one's food specialty. Most of this was poorly organized (manually) in my phone's Notes app, with references to specific emails for more information. I arrived on the first day in Bilbao, and the hotel didn't have me in their system by name, so I spent a good 10 minutes frantically scouring my emails for the confirmation number, cursing myself for holding up the people behind me. Over the course of the next few days, while I was relaxing at my hotel (after finally getting in) in between pre-planned stops, I started building a personal tool that would organize all of my bookings automatically and keep all relevant information at my fingertips. Thus, Petrel was born and named after one of my favorite birds. It started as a personal pet project but I shared it with some friends that were looking for something just like it so I ended up turning it into an app and website for all to benefit. It's completely free to try without even signing up. On my next group trip, I built out logical collaboration features to allow groups to vote, split expenses, share notes, and add pictures all within the same ecosystem. I've slowly improved the parsing and itinerary logic and built in convenient features such as weather, estimated travel times, an encryption-protected area to store copies of personal information, and a comprehensive travel log with fun stats. I also made it so that the parsing tool can accept almost any file type. However, the tool doesn't do anything to assist on the planning side and doesn't provide true flight alert pushes, despite having live flight status syncing. I would love for more people to test it out, challenge the parser, and let me know their thoughts and experience. https://ift.tt/vbo4LcK September 14, 2026 at 03:17AM

Show HN: VibeWorld – a shared terminal world for developers and scientists https://ift.tt/718mPDM

Show HN: VibeWorld – a shared terminal world for developers and scientists Vibeworld is a persistent cyberpunk shared world that runs in your terminal, where you can meet other developers and scientists to have company at 2 AM while screaming at your LLM :) you can connect with other scientist, chat, and includes also use vocal chat if you want to use it. There is a world and a moon, and they are completely 3D rendered and animated. In the moon there is the "complaint crater": a place where you can scream an insult against your claude or codex session and everybody from the space can see it. You can create your pixel avatar! There is also the "stargazing ledge": a place where you can see the stars and whatever happens in the sky. You can chat in the meantime if someone else is there too, or just watch our Earth. Sometimes you can see galactic wars, and there is a plant that grows but dies if nobody waters it. You can leave it on the second monitor while working (it does not use a lot of RAM): watch the sky when you want, and sometimes you may chat with some other scientist in your same situation. In the world, continents are scientific macroareas, and cities are specializations: you can create your corners where you can speak and help others (but for now it is quite empty). You can install in one command and by just typing "vibeworld" in your terminal, you are inside the world. There are some games inside and a sort of Doom where enemies says to you "Retracted" or "dedline tomorrow" when shooting you :). There is also an awkward reason why I am posting the work here. I have just discovered that another product Vibeworld.build uses the same name and the same concept (shared multiplayer world for developers). I don't know how independently it was developed. It is not a TUI, but it is a full, paid application developed by a company after my project was released. To be honest luckly I find my project more funny. I do care about preserving the chronology, my VibeWorld was released before, and there are verifiable timestamps in the GitHub. I just don't want the original public record to disappear if a much larger implementation of a very similar concept gets more attention later. I would like to hear what people think about it! :)) https://ift.tt/Fwyz3tQ September 14, 2026 at 01:30AM

Show HN: Kibble – a reader for AI news, tutorials, code and models https://ift.tt/1o5g4i8

Show HN: Kibble – a reader for AI news, tutorials, code and models https://ift.tt/FwHJbn5 September 14, 2026 at 01:09AM

Saturday, September 12, 2026

Show HN: Stackray – Detect any website's tech stack https://ift.tt/di5ZTo7

Show HN: Stackray – Detect any website's tech stack Stackray is an open source builtwith alternative that also provides OSINT details. Scan a domain or URL and view detected frameworks, business tools, subdomains, DNS records, etc. You can deploy your own instance to schedule recurring scans and get alerts through email using Resend or through Slack. You can also invite teammates and make API keys to programmatically use Stackray. https://stackray.app September 12, 2026 at 11:45PM

Show HN: Music Generation Backed by Algebra https://ift.tt/vsofS9P

Show HN: Music Generation Backed by Algebra https://monictheory.com September 12, 2026 at 11:25PM

Friday, September 11, 2026

Show HN: Minimal Static Website Hosting Tool https://ift.tt/EYdy3xo

Show HN: Minimal Static Website Hosting Tool I built this because I self host a lot of stuff and wanted to simplify tossing up a simple static site with no backend, no NGINX/Caddy/Traffik configs, instantly deploy with a single file copy. Powered by Golang's built-in reverse proxy package. Another awesome freebie is this is built on top of [Pocketbase]( https://pocketbase.io/ ), so the whole app is API driven for free. This gives you some AI integration points off the bat. Great for whipping up demos to pitch to clients, or quick and dirty temporary static sites to share with friends, family or coworkers. https://ift.tt/ThFCze0 September 11, 2026 at 11:50PM

Thursday, September 10, 2026

Show HN: Fashionguessr – A Daily Fashion Trivia Game https://ift.tt/QU85Ckz

Show HN: Fashionguessr – A Daily Fashion Trivia Game Hello! I created Fashionguessr, a daily fashion trivia game. Inspired by other daily trivia games like Timeguessr, Connections, and Wordle, Fashionguessr is my attempt at the same thing for people curious about fashion. The game is broken up into three parts: Runway Frames - Users have to guess and identify a fashion show, its brand, its season, and its designer based on a single random frame from the show. Users can use a variety of hints, each more expensive than the last, to reveal more information about the show to help them guess correctly. Trivia - Multiple-choice and short-answer questions to test their knowledge about fashion, the lore, the people, the processes, the history, and everything in between. Sketch - Users get a few moments to look at a fashion item and then are tasked with drawing it from memory. All of these contribute to a score you can see at the end on the last page, which sums everything up. Each section includes explanations, summaries, and sources, so users can get as much insight as possible for every question. There are new questions every 24 hours, and users can go back and play games from days past. I built it to help people learn more about fashion in a fun, low-stakes environment. Learning about fashion can be overwhelming, and I think Fashionguessr can present and package fashion education in a way that's more palatable. Would love feedback on the presentation, UI, accessibility, ease of use, and anything else that comes to mind. https://ift.tt/q4EkHaf September 11, 2026 at 12:35AM

Show HN: Pixel Agents – A pixel-art mission control for your Claude Code agents https://ift.tt/0Wl3KBY

Show HN: Pixel Agents – A pixel-art mission control for your Claude Code agents https://ift.tt/9hIZplW September 10, 2026 at 11:42PM

Wednesday, September 9, 2026

Show HN: What if the speed of light was 5 km/h? https://ift.tt/6K3AtVJ

Show HN: What if the speed of light was 5 km/h? I've always wanted to make a visualization where the speed of light was scaled down to human speeds, so that we could intuit relativistic effects with everyday objects. And here is the first version of it! https://ift.tt/ThVELy1 September 10, 2026 at 07:28AM

Show HN: Hydra – Open-source agentic terminal with a PTY daemon https://ift.tt/uU4jAMa

Show HN: Hydra – Open-source agentic terminal with a PTY daemon https://ift.tt/op8OTwV September 10, 2026 at 03:21AM

Show HN: Self-hosted company OS, Claude Code and Codex agents in departments https://ift.tt/a1AqhPH

Show HN: Self-hosted company OS, Claude Code and Codex agents in departments Hi HN, I am Dimitris. This is a company OS that I built and use to run my business and anyone can install it and self host it for free. Think of it as Claude Code, Cowork and the cloud sessions in one self hosted application. It is a Multi-tenant application by design where many people can collaborate on the company agents with 4 different modes of collaboration, and it runs with your Anthropic or OpenAi subscription or even with local models. Every agent can run on Claude Code or Codex CLI running as a persistent process on your server in a kernel sandbox (bubblewrap) with network isolation always on (pasta), with its own workspace, memory, schedules and tools. The same agents can also be configured to run identical on any remote computer through one outbound WebSocket (no inbound ports, no VPN needed). The agent already have lots of built in features, as an example they can answer and place phone calls through Twilio or your own Asterisk, they can edit videos and excel, word, ppt files and preview them directly inside the chat with collabora and many more. Trying it is one install script and a docker compose, no signup. The license is Fair Source, all the code is public and self hosting is free up to 5 users. 1.6.0 went out today. AI Disclaimer: large parts of OtoDock are written using OtoDock itself, running Claude Code. I would love people to read the code, take a look in the sandbox model, and tell me what would stop you from running this on your own hardware. GitHub: https://ift.tt/xvWcJ9u Website: https://otodock.io https://ift.tt/xvWcJ9u September 9, 2026 at 11:27PM

Show HN: Offline recorder and transcriber on your MacBook's notch https://ift.tt/pEy2DGP

Show HN: Offline recorder and transcriber on your MacBook's notch Was dogfooding a version of this until a friend saw this and said I sh...