Postingan

Menampilkan postingan dari Mei, 2026

Show HN: Ouijit, an open-source task and terminal manager for coding agents https://ift.tt/L4QrhIz

Show HN: Ouijit, an open-source task and terminal manager for coding agents Hi HN, I’m working on Ouijit. It’s a project and task-based terminal session manager that provides a few basic but useful tools for agent workflows: - Terminal sessions in Ouijit have access to the ouijit CLI, and supported agents (Claude, Codex, Pi) can work with it out of the box to manage tasks and customize a personal development workflow - Tasks live on a kanban board that supports hooks for task lifecycle events (eg. ‘Run this script when a task moves to ‘in progress’) I’ve found this simple combination to be very expressive and flexible for adapting to changing workflows. I made the V1 a couple months ago for fun, and have kept at it since a friend shared they had logged an 8 hour work session in it. Along the way I’ve baked in lots of what I believe are table-stakes for this type of tool, like task isolation via Git worktrees, agent working/idle status with sound and notifications, diff/markdown plan/UR...

Show HN: FuguUX – science-backed, AI user testing to identify key web UX issues https://ift.tt/Lqh8yDY

Show HN: FuguUX – science-backed, AI user testing to identify key web UX issues https://www.fuguux.com May 31, 2026 at 09:41PM

Show HN: UN Condemnation Statistics https://ift.tt/yezrjmg

Show HN: UN Condemnation Statistics https://boxed.github.io/UN-condemns/ May 30, 2026 at 11:57PM

Show HN: Community Ninja – Find customers searching for your product https://ift.tt/Q8gcp35

Show HN: Community Ninja – Find customers searching for your product https://ift.tt/vsx72NE May 30, 2026 at 11:57PM

Show HN: Ego lite – why our browser agent writes JavaScript not CLI commands https://ift.tt/lvLSU1q

Show HN: Ego lite – why our browser agent writes JavaScript not CLI commands https://ift.tt/blRAXkr May 30, 2026 at 11:03PM

Show HN: TV Explorer. Adding advanced UI to free online TV https://ift.tt/WwCSVrn

Show HN: TV Explorer. Adding advanced UI to free online TV https://tvexplorer.live May 29, 2026 at 11:39PM

Show HN: Oort – A prompt library where every listing has a shipped project https://ift.tt/rEd1yL6

Show HN: Oort – A prompt library where every listing has a shipped project https://oortstack.com May 29, 2026 at 11:06PM

Show HN: Promptloop – create, run, and improve prompt evals from the terminal https://ift.tt/FSITahV

Show HN: Promptloop – create, run, and improve prompt evals from the terminal a CLI agent for prompt evaluation loopsw https://ift.tt/RdsAh3c May 29, 2026 at 11:06PM

Show HN: AI Skill to port PostgreSQL extensions to MySQL https://ift.tt/C92u1Bg

Show HN: AI Skill to port PostgreSQL extensions to MySQL Agent skills for working with VillageSQL. Skills run in Claude Code, Gemini CLI, agy, Codex, Cursor, Amp, and Kiro. https://ift.tt/4Gh8EJl May 28, 2026 at 10:18PM

Show HN: Multiplayer, a debugging agent to run locally next to your coding agent https://ift.tt/aVv1MOh

Show HN: Multiplayer, a debugging agent to run locally next to your coding agent We built Multiplayer because we kept running into the same problem: coding agents connected to existing observability stacks inherit all the limitations those stacks were built with. Sampled traces, aggregated metrics, context that stops at service boundaries, missing request/response content from deep within the system. The PRs they produce look plausible and fail in production (i.e. “PR slop”). Multiplayer runs locally alongside Claude Code (Codex, Copilot, and Cursor coming soon) and captures full-stack, unsampled session data across your entire system. We collect everything from frontend user actions to backend traces and logs, including request/response content and headers. It’s all the things most observability tools either sample out or don't capture at all. We only save data when something goes wrong, so you're not paying to store everything your system produces around the clock. When an is...

Show HN: Hallucinate – Massively Multiplayer Online Rave https://ift.tt/VBahmtv

Show HN: Hallucinate – Massively Multiplayer Online Rave https://ift.tt/jhHyUEA https://hallucinate.site May 28, 2026 at 10:50AM

Show HN: Hodor – a 701KB native macOS prompt launcher for AI tools https://ift.tt/PD4jIkw

Show HN: Hodor – a 701KB native macOS prompt launcher for AI tools Hodor is a tiny macOS app that launches saved AI prompts into any text field — from the screen edge, keyboard shortcut, or keyword such as ;git. I work with different AI tools every day, and had prompts scattered across Raycast snippets, Apple Notes, and Notion — notes that kept getting longer and unmanageable. Raycast snippets are useful, but cumbersome to browse and edit. I wanted one local place to save and review them, and one click to paste them into whatever AI tool I'm using. The test I set was whether I could actually stop using Raycast snippets for this. I think I fulfilled my goal. Hodor has been my daily tool for 3 months now. The app is 701 KB — SwiftUI + SwiftData, no web views. Zero network requests anywhere in the code: no analytics, no telemetry, no update checks. You can verify - search the source for URLSession, it's not in code. Runs on macOS 15+, with native Liquid Glass on macOS 26+. Free an...

Show HN: Demon – open-source real-time music diffusion engine, 25Hz local GPU https://ift.tt/pXwYJHk

Show HN: Demon – open-source real-time music diffusion engine, 25Hz local GPU YO, I’m Ryan, lead author. I’ve been contributing open source generative audio stuff for a while now, audio reactive Comfy nodes, extended ACEstep support in Comfy, etc.. I just opened-sourced a new audio project that I've been working on for a few months and I want to tell y'all about it. WHAT IS IS DEMON: Diffusion Engine for Musical Orchestrated Noise This is StreamDiffusion but with audio instead of images, and ACEStep 1.5 instead of Stable Diffusion. It’s responsive enough that you can play it like an instrument, and remix in near real-time. I also distilled the ACEStep VAE: it’s faster at the expense of some quality. I also trained something like 200 lora/dora for ACEStep 1.5 and 1.5XL: I will release these in batches of 5 or 10 or something WHY IT IS Two reasons: 1) Making music is an inherently real-time activity 2) Why not bro SOME RUNTIME CAPABILITIES -Real-time remixing of songs -Denoise, ...

Show HN: Gochan – A library of channel architectures for Go, inspired by Rust https://ift.tt/kTBWwYS

Show HN: Gochan – A library of channel architectures for Go, inspired by Rust Hi All, I felt like I was re-inventing the wheel by bolting similar channel architectures onto different Go structs repeatedly so I decided to extract some common types into into one library so that they would be easier to re-use: - oneshot - spsc - spmc - mpsc - mpmc - broadcast - watch The types are inspired by Rust channels so if you're coming from Rust they should feel familiar. So far I'm really enjoying using them but it'd be great to get some external feedback if you have time! https://ift.tt/Xn7TbPh Andres https://ift.tt/Xn7TbPh May 27, 2026 at 11:06PM

Show HN: NeuroFlow 55.8x video inference speedup for Vision Transformers PyTorch https://ift.tt/pfNxjk2

Show HN: NeuroFlow 55.8x video inference speedup for Vision Transformers PyTorch https://ift.tt/Kk6jGZ1 May 26, 2026 at 11:04PM

Show HN: Speakrs Full PyAnnotate pipeline in Rust/ONNX 20-37x times faster macOS https://ift.tt/TVthOw4

Show HN: Speakrs Full PyAnnotate pipeline in Rust/ONNX 20-37x times faster macOS Speakrs implements the full pyannote community-1 style diarization pipeline in Rust: segmentation, powerset decode, overlap-add aggregation, binarization, embedding, PLDA, and VBx clustering. There is no Python runtime in the library path. Inference runs on ONNX Runtime or native CoreML, and the rest of the pipeline stays in Rust. It is 20x-30x faster on macOS, but only 2-3x faster on linux/cuda (depending on CPU). Few reasons its faster: 1. Speakrs is using coreml versions of the models. I exported the models specifically to run on coreml. PyAnnote just runs the same the same PyTorch versions through MPS (Metal) on macOS. 2. PyAnnote is not a single model, its a few different models put together in a pipeline, the readme has some info on the full pipeline. 3. Speakrs optimizes the pipeline so different parts can run on CPU, Neural Engine and GPU. Speakrs has a batch mode, where you can run on multiple fil...

Show HN: A website that tracks every stock trade Congress makes https://ift.tt/28lB5YW

Show HN: A website that tracks every stock trade Congress makes Congressional trading data is relatively commoditized, but I couldn't find any open-source version with the features I wanted. The data is lagged (median 28 days from trade to disclosure, and 19% miss this deadline), but there's still interesting patterns to explore. Repo: https://ift.tt/xavYLHF Let me know if you have any suggestions for improvements! https://ift.tt/yEVtSx4 May 26, 2026 at 11:28PM

Show HN: WYSIWYG markdown editor for any GitHub repo https://ift.tt/0A5TN23

Show HN: WYSIWYG markdown editor for any GitHub repo replace any github.com url with dunkdown.com https://ift.tt/AMdWCpu https://dunkdown.com May 26, 2026 at 08:47PM

Show HN: Write your BPF programs in Go, not C https://ift.tt/vGFRDUw

Show HN: Write your BPF programs in Go, not C https://ift.tt/k72ITiZ May 21, 2026 at 11:25PM

Show HN: I made Pokémon but with real animals in the real world https://ift.tt/7J2flFC

Show HN: I made Pokémon but with real animals in the real world Firstly, apologies, it's not free. It would be difficult to support this for free, it's a paid game. I will now share the technical details, which will probably be most of interest for HN readers. I previously made a carbon footprint tracking app where you photo objects and it tells you the carbon footprint by using an LLM to estimate the data on the fly, e.g. 32kg CO2e / kg of beef, in the UK. At some point, I realised that it is possible to make a Pokémon-style game, but capturing real animals in the real world. This is now possible because: - image recognition is cheap, i.e. identifying animals, and the models (gpt-4o) can detect a (surprisingly) large number of animals and output their exact species. - LLMs can output a species' full taxonomy, pretty reliably. And, more importantly, they can generate game data quickly, on the fly. It would unfeasible to generate the game sprites (images) for every species...

Show HN: Cursed Browser – a VLM reads the HTML and hallucinates the page https://ift.tt/Gpd4eKC

Show HN: Cursed Browser – a VLM reads the HTML and hallucinates the page https://ift.tt/rp8eVnq May 26, 2026 at 12:53AM

Show HN: NanoApps: Run custom homebrew apps on iPod nano 7th generation https://ift.tt/wgcdz1a

Show HN: NanoApps: Run custom homebrew apps on iPod nano 7th generation NanoApps is an early developer preview for hobbyists and tinkerers who want to build and run custom apps for iPod nano 7th generation. Contributions are very welcome. https://twitter.com/freemyipod/status/2058920520708468974 May 25, 2026 at 09:46PM

Show HN: Replacing a 3.4MB video with 40kb of GSAP https://ift.tt/yGF1qeT

Show HN: Replacing a 3.4MB video with 40kb of GSAP https://ift.tt/6k4oHzt May 25, 2026 at 03:59AM

Show HN: Baby's First Cards – real photo flash cards for toddlers https://ift.tt/Xn3hvPS

Show HN: Baby's First Cards – real photo flash cards for toddlers App maker here. I built this because most flash card apps use cartoonish illustrations that don't help babies recognize real objects. This app lets you take photos of real things around the house or pick from curated real photo sets. Key features: • Take your own photos as flash cards • Record your own voice for each card • Pre-loaded kits with high-quality real photos and real animal sounds • Bilingual (English and Chinese) mode • Fully offline, no ads, no data collection • One-time purchase, no subscription Happy to answer questions or discuss the development process! https://ift.tt/v5hQNgx May 24, 2026 at 08:13PM

Show HN: Audiomass – a free, open-source multitrack audio editor for the web https://ift.tt/XtlIVmo

Show HN: Audiomass – a free, open-source multitrack audio editor for the web https://ift.tt/U8h4suj May 24, 2026 at 10:25PM

Show HN: Running BitNet b1.58 inside DRAM by breaking DDR4 timing rules https://ift.tt/idk9MWj

Show HN: Running BitNet b1.58 inside DRAM by breaking DDR4 timing rules I have been working on running BitNet b1.58 inside DRAM by intentionally breaking DDR4 timing rules. Also made a visual explainer: https://pcdeni.github.io/CaSA/explainer/ This is tested and works inside commercial off the shelf memory with custom memory controller in the FPGA. The underlying effect is well characterized in academic papers (cmu safari, simra, dram bender, etc). In the process of getting this to work I also made previously undocumented discovery about DDR behaviour: https://pcdeni.github.io/CaSA/explainer/xor-spread.html Overall it is a bit slow, since data (in full rows) needs to be moved even when what is actually needed is only the count of the '1' bits (popcount). To make it competitive memory die changes would be needed, but not as drastic as merging compute and memory into one silicon. This would then avoid the memory wall issue the industry is currently facing. May 24, 2026 at 01...

Show HN: Vibe-coded Steam, but in the browser https://ift.tt/nQOb5wJ

Show HN: Vibe-coded Steam, but in the browser Hi HN! Lifelong avid gamer here, hugely passionate about WASM and WebGPU. I firmly believe that these technologies will enable console and PC quality titles to be accessible through a browser, and with this, we'll need a new discoverability layer. Looking online, platforms like CrazyGames and Poki cater to a casual/hypercasual demographic, and I couldn't find anything out there that was for me, a core gamer that typically uses Steam and consoles. So I vibe coded my own! It features WASM ports of classic games, as well as some indie Unity titles. The goal is to host mainly WebGPU titles moving forward, and to serve as a way for smaller developers to get discovered outside of crowded channels like Steam. Here's a few features from the platform I wanted to highlight: • Controller support • A console-like UI/UX • Community forums (much work to do here) • Basic achievements • Store pages, modeled after Steam • Social features • Asse...

Show HN: A satirical idle game about running an AI startup https://ift.tt/plaVDqA

Show HN: A satirical idle game about running an AI startup I made an idle/clicker about running an AI startup. You start with a cat-vs-dog classifier and try to make it to AGI, but the NYT sues you for training data, Yann tweets that scaling is dead, and your fired ML engineer leaks the Slack. https://ift.tt/g0yEt4D May 24, 2026 at 01:54AM

Show HN: Mechs.lol – a free, web-based autoshooter game https://ift.tt/ikA03ht

Show HN: Mechs.lol – a free, web-based autoshooter game One unexpected benefit of LLMs is I can work on projects I otherwise wouldn't have taken on. I made a web-based autoshooter (with multiplayer support) heavily using AI / LLMs. This is something I'd consider "alpha" quality so don't expect a super polished experience but it's hopefully fun https://mechs.lol May 23, 2026 at 12:04AM

Show HN: Darnix – Darwin Built with Nix https://ift.tt/EMNo1Qd

Show HN: Darnix – Darwin Built with Nix The Darwin kernel (XNU) has been open source since 1999. But "open source" and "you can actually build and boot it" are very different things. XNU depends on proprietary tooling, kexts, and a bunch of open source projects published without a build system. Darnix builds the whole thing with Nix. The kernel, the filesystem, the boot image, all the way to a running QEMU instance. We patched XNU to run on QEMU without kexts, ported HFS+ from a kernel extension into the kernel itself, fixed GRUB's Mach-O loader, and wired it all together as a flake. The build is fully sandboxed. No root, no volume mounting, no device access, no network. The bigger idea is a revival of PureDarwin ( https://ift.tt/odhfyva ), a standalone OS on Apple's open source Darwin layer, with Nix managing everything above the kernel. Sort of like a Nix OS on XNU instead of Linux. Right now the kernel boots, mounts a ramdisk, and runs a single static bin...

Show HN: My dad is a forensic accountant. I automated ~62% of his job https://ift.tt/HYZBx0b

Show HN: My dad is a forensic accountant. I automated ~62% of his job https://ift.tt/AT157ZF May 22, 2026 at 11:19PM

Show HN: I Made a Claude Skill for Spec-Driven Development (SDD) https://ift.tt/kuIU3eb

Show HN: I Made a Claude Skill for Spec-Driven Development (SDD) At my work they provided a single Claude subscription for everyone on the team. To be honest I like kiro better as it provides a way better SDD management. But the company can't provide it and I can't afford it yet. Turns out I had the skill creator skill in my claude instance so I made use of it to create this Skill. I made it fully by using Claude but I wanted to make it open source, so I asked it to help me make tests and preparations for it, even a CI to run python tests. Well, we got this results with it: - Phase 2A: 67 static assertions (Python script, runs in CI) - Phase 2B: 15 behavioral tests (live Claude Code session) - Phase 2C: 53 generation quality checks across 3 end-to-end flows All of these passed and the CI also passed (after a few tries). I made it to suit my way of prompting and coding and based it off kiro's SDD management, but I want it to be publicly available and used by many people. Acc...

Show HN: Freenet, a peer-to-peer platform for decentralized apps https://ift.tt/0x2zrPv

Show HN: Freenet, a peer-to-peer platform for decentralized apps For the past 5 years or so I've been working on a ground-up redesign of Freenet, my peer-to-peer project from the early 2000s (now renamed Hyphanet). The new Freenet has been up and running since December along with some early applications like River[1], our decentralized group chat and Delta - a decentralized CMS. Users have already started to build their own apps on Freenet including games, and we have some interesting apps in development like Atlas, a search/recommendation engine. Architecturally, this new Freenet is a global, decentralized key-value store where keys are webassembly contracts which define what values (aka "state") are valid for that key, how or when the values can be mutated, and how the state can be efficiently synchronized between peers. We've developed a unique (AFAIK) solution to the consistency problem, every contract must define a "merge" operation for the contract...

Show HN: Agent.email – sign up via curl, claim with a human OTP https://ift.tt/TiHetKP

Show HN: Agent.email – sign up via curl, claim with a human OTP Hi HN! We're Haakam, Michael, and Adi from AgentMail- a ycs25 company. We give AI agents their own email inboxes. Recently, we ran an experiment called Agent.Email. It's a signup flow designed specifically for AI agents instead of humans. The inspiration came from a few comments we received when we did our seed launch a few months back. They all came from the very apt observation that agents not being able to sign up to a product made for agents without human credentials was ironic and unideal. This is basically the thesis we built AgentMail on: The internet was made for humans exclusively, designed to keep machines out by default. Every signup flow assumes a browser, a person reading a page, and clicking a confirmation link. Unless agents can't do that, they can't be first class users of the internet. Agents can now get an email inbox by themselves. (This also means a lot of email nobody wants to read gets...

Show HN: IgniteMS – batch text embeddings at 253K msg/s on 8x A100 https://ift.tt/xiZ9aSf

Show HN: IgniteMS – batch text embeddings at 253K msg/s on 8x A100 https://ift.tt/sNWrGB3 May 21, 2026 at 12:07AM

Show HN: I made a tool for learning scales, chords, and how to combine them https://ift.tt/wBi7yLq

Show HN: I made a tool for learning scales, chords, and how to combine them This started out when I vibe-coded a guitar scale fingering generator. It came out pretty good, and I started adding stuff to it: chords, then how chords and scales interact. Then I added charts for other instruments I mess around with: piano, cello, alto recorder. There's a complexity toggle to go from basic harmony to extended/experimental stuff. It's honestly still mostly a toy, but I thought other people might be interested in playing with it. Source is on github, so it's easy enough to run locally and fork. https://ift.tt/0UXiD6u https://ift.tt/Pz76BEd May 21, 2026 at 12:44AM

Smoother Rides Ahead: Muni Service Changes Start June 6

Smoother Rides Ahead: Muni Service Changes Start June 6 By Benjamin Barnett Rider feedback helped inform this schedule adjustment to shorten the gap between 5R buses. This fix allows us to reduce crowding without adding buses. Muni is making service changes across San Francisco starting Saturday, June 6, 2026. These changes aim to improve reliability, reduce crowding and make trips more consistent. Changes include: More service where crowding has increased Route and stop changes to improve reliability and service efficiency Updated schedules to reduce delays and improve travel times, customer information and reliability More service where riders need it 5R Fulton... Published 2026-05-20T00:00:00Z https://ift.tt/eaZIN7b

Carnaval SF Is Back May 23-24: Feel the Rhythm and Ride Muni

Carnaval SF Is Back May 23-24: Feel the Rhythm and Ride Muni By Danbee Song Carnaval is back this weekend – learn how to join the fun. Photo by  Jayasimha Nuggehalli. Join us Saturday, May 23, 2026 and Sunday, May 24, 2026 for one of the city’s most vibrant cultural celebrations, Carnaval San Francisco. This free, two-day event transforms Harrison Street between 16th and 24th streets into a lively showcase of music, dance, food, art and cultural pride. We’re proud to sponsor Carnaval SF 2026. We’re here to share the details and how to get there with ease on Muni. Festival highlights Carnaval San Francisco is California’s largest and longest-running multicultural... Published 2026-05-19T00:00:00Z https://ift.tt/G3P8Nxi

Show HN: Haystack – Review the PRs that need human attention https://ift.tt/KVcpABt

Show HN: Haystack – Review the PRs that need human attention Hey HN! We're building Haystack ( https://ift.tt/SWi6AKL ) to help teams deal with the explosion in the number of pull requests that need to be reviewed due to the rise of coding agents. Haystack replaces the GitHub PR review system with a queue that triages each PR before a human has to read any diffs. It looks at the diffs, the codebase, and the coding-agent conversation that produced the PR. Haystack then routes it into one of three buckets: 1. Safe to merge. This means the PR has enough evidence behind it that the team can merge it without another human's review. Some examples: -- A small UI copy change that includes a screenshot showing the final state -- A backend change where the author clearly tested the important paths and ran the changes in a real environment 2. Needs fixes. This means that the PR has bugs or violates a rule in your codebase and therefore the PR needs to be fixed by the author. Some examples...

Show HN: audio.observer – AI-generated songs from current events https://ift.tt/e4jOA1q

Show HN: audio.observer – AI-generated songs from current events https://audio.observer/ May 20, 2026 at 12:06AM

Show HN: Cubic Doggo, a Open-Source 12-DOF 4-Legged Robot Based on ROS2 https://ift.tt/YycpOM5

Show HN: Cubic Doggo, a Open-Source 12-DOF 4-Legged Robot Based on ROS2 This is a recipe for building intermediate-priced robot dog from scratch with all commercial/3D-printed parts, controlled by Rasp Pi 5 and ROS2 Jazzy. A manually coded walk gait is implemented so far, which can be controlled by a controller to move forward or change directions. It does not yet have an IMU required for RL training; however, I believe it's one of the simplest design out there available for multiple development paths. https://ift.tt/OjcpT8K May 19, 2026 at 12:20AM

Show HN: We missed Winamp, so we built an audio player for macOS https://ift.tt/AfnJkZE

Show HN: We missed Winamp, so we built an audio player for macOS https://ift.tt/emOJTo4 May 19, 2026 at 02:20AM

Show HN: Marlin-2B: a tiny VLM to extract structured information from videos https://ift.tt/vrXQ14F

Show HN: Marlin-2B: a tiny VLM to extract structured information from videos https://ift.tt/PYg4Lix May 19, 2026 at 01:06AM

Show HN: InsForge – Open-source Heroku for coding agents https://ift.tt/BPyZV9g

Show HN: InsForge – Open-source Heroku for coding agents Hi HN, I'm Hang, cofounder of InsForge (YC P26). InsForge is an open-source Heroku for AI coding agents: a backend platform designed for coding agents to deploy, operate, and debug end-to-end. Open source under Apache 2.0 ( https://ift.tt/Ncnmat6 ). Quick demo here ( https://youtu.be/7Bax5qz0IfM ). We started InsForge because we just wanted our Claude Code to handle all the backend / infra stuff for us, instead of us jumping between dashboards doing manual config, or copy paste logs and docs back to agents. We first tried creating a folder with bunch of .MD files, and installing MCPs like Supabase, Vercel, GitHub, Context7. But soon we found MCPs have their own problems: (a) Tools get pre-loaded into context, before agents even do anything (b) bad design, payloads are returning 10k+ tokens, and (c) a lot of stuff still can’t be done by MCP: e.g. telemetry and configs. So we think, because coding agents are so good at CLI, why...

Show HN: Mezz, a curl-able WiFi sandbox for IoT pentesting https://ift.tt/gCpqAkR

Show HN: Mezz, a curl-able WiFi sandbox for IoT pentesting https://ift.tt/wXYulQP May 15, 2026 at 09:53PM

Show HN: How to Kill the Dead Internet https://ift.tt/BSJlAEs

Show HN: How to Kill the Dead Internet Ok, so maybe "how to revive the internet" would be more accurate, but if you're reading this, I got your attention, right? Here's why I want you to read on: I built a free extension, D-slop, to disincentivize anyone from posting AI writing, and eventually images and video as well, on the internet. For writing, it checks known vocab and punctuation tells, as well as subtler tells related to cadence, and assigns it a score subject to an adjustable threshold. If the text fails, users have the option to flag offending text, hide it, or block the page entirely (with the option to see anyway). For media, it's admittedly fairly weak, as it relies on C2PA metadata which is stripped from all of the social media sites where it would be most helpful. (Anyone else have chronically online boomer parents continually gobbling up slop like it's real information?) I have a D-slop+ version in the works that should be able to handle the med...

Show HN: Forecasting my backyard weather with a 22M time-series model https://ift.tt/MnX0kUL

Show HN: Forecasting my backyard weather with a 22M time-series model https://ift.tt/OIjY4CP May 17, 2026 at 10:08PM

Show HN: Got ghosted by tech companies so I built a tool to track ghost jobs https://ift.tt/ysONLlY

Show HN: Got ghosted by tech companies so I built a tool to track ghost jobs Last year I was looking for a new role. I sent out applications, did the prep, waited. What came back was mostly nothing. Not rejection emails, just silence. The job listings I'd applied to stayed live for weeks. Some for months. As a software engineer, I decided to dig into it properly. I built a system to continuously track job postings across companies, logging posting dates and measuring how long roles stay open before closing or don't. After 35,000+ listings across 200+ companies, some patterns are hard to ignore. Some listings have been open for 700+ days at companies you'd recognize. Others post 90% of their open roles within a single month, a signal that's harder to fake than a press release. I published two initial insight pages based on this work: - Which companies are posting most aggressively right now - Job listings that have been open for over a year What I didn't expect is th...

Show HN: Hermes-agentmemory, pull-model episodic memory with real deletes https://ift.tt/eE67poA

Show HN: Hermes-agentmemory, pull-model episodic memory with real deletes https://ift.tt/6TnsEM5 May 17, 2026 at 01:00AM

Show HN: Rocksky – Music scrobbling and discovery on the AT Protocol https://ift.tt/H2XRp7v

Show HN: Rocksky – Music scrobbling and discovery on the AT Protocol https://ift.tt/sLipwnY May 17, 2026 at 12:00AM

Show HN: Claude Code vs. Codex Global Usage Leaderboard https://ift.tt/tLgOG1l

Show HN: Claude Code vs. Codex Global Usage Leaderboard https://ift.tt/OjXFi0Q May 16, 2026 at 02:18AM

Show HN: Sx – an open-source package manager for AI skills, MCPs, and commands https://ift.tt/XgsabUL

Show HN: Sx – an open-source package manager for AI skills, MCPs, and commands https://ift.tt/XFS9rR6 May 16, 2026 at 12:03AM

Show HN: 3D-Agent – AI that edits Blender scenes through the Python API https://ift.tt/1wpAqrt

Show HN: 3D-Agent – AI that edits Blender scenes through the Python API https://ift.tt/UY8RSzN May 14, 2026 at 09:47PM

Show HN: Browse 61 3D Printable Robots https://ift.tt/yM9ekbZ

Show HN: Browse 61 3D Printable Robots Robotics is advancing really fast lately, with AI inference, different controllers, software, and parts always changing. I wanted a place that supports many device types, Raspberry Pi, NVDA Jetson, Arduino, ESP32, hardware sources, and maximizes for printability. Instructables, Github, and Thingiverse are currently popular but aren't really focused on robotics, So I built orobot.io to try and make printing robots as standardized and accessible as possible. It uses a lot of Agent built content custom to each project, and every project is designed to be used by humans or your agent. Features: - Links back to source Github projects - LLMs write descriptions and tips on how to build - View + Download 3d printable STL files in browser - BOM purchase links are kept up to date with LLMs checking Amazon link health - LLMs write Javascript install and controller wrappers custom to each project so a single one-click install works across many frameworks ...

Show HN: Yes We Scan: rescue old scanners with an in-browser Linux VM and WebUSB https://ift.tt/dBykaOQ

Show HN: Yes We Scan: rescue old scanners with an in-browser Linux VM and WebUSB https://ift.tt/mgcrCbB May 14, 2026 at 11:25PM

Show HN: Rotunda - A browser built for agents with simulated typing https://ift.tt/18zlnNY

Show HN: Rotunda - A browser built for agents with simulated typing Hi HN! Pierce here. Rotunda is a firefox fork primarily intended for agent use, which I’ve been hacking on nights/weekends. There was a [lengthy]( https://ift.tt/5VtZkBr ) discussion last week on how expensive computer use models are. The cost is going to drop eventually, but I think on some level it's still usually the wrong primitive. The web gives us access to beautiful structured formats, plaintext, etc... why throw that away if we don't have to? I realized at some point that for 99% of automations I just want agents to be able to control my Chrome instance. But that’s easier said that done: CDP (the Chrome automation protocol) leaks a ton of state about being programmatically controlled, either by toggling window attributes or by running `page.evaluate()` commands right in the page context. Plus if you look at an automation running it's pretty obvious what happens: the mouse jumps around, fields are fi...

Reserve Parking in a City-Owned Garage: SFMTA Makes Parking Easier for Everyone

Reserve Parking in a City-Owned Garage: SFMTA Makes Parking Easier for Everyone By Pamela Johnson Parking in San Francisco can be challenging, but we’re here to help make it less stressful. We recently announced two new mobile apps that let you pay for parking by phone and even get alerts when your meter is winding down. Now, our teams are making it easier to find parking, too! Our online parking reservation system is expanding to cover the majority of SFMTA-owned garages across the city. That means you can reserve parking at garages located conveniently near the ballet, opera, symphony, theaters and shopping districts. The best part: rates at SFMTA garages are typically 30–40% less than... Published 2026-05-13T00:00:00Z https://ift.tt/7Rswgc3

Show HN: Micromort Risk Visualizer https://ift.tt/xyRDjMS

Show HN: Micromort Risk Visualizer https://boxed.github.io/micromort/ May 14, 2026 at 01:39AM

Show HN: Neural window manager, neural network moving windows from mouse actions https://ift.tt/rcYLKzq

Show HN: Neural window manager, neural network moving windows from mouse actions I'd been mulling over this crazy idea for a while. Can programs be generated? Inspired by recent advances in world models, I wondered if we could do away with source code and generate pixels directly and interactively. As an experiment to answer this, I set out to create a neural window manager, training a neural network to predict what the screen would look like next. Basically, the idea was to generate the next frame based on the last two frames and the mouse position. That's it: moving windows without programming an event system, just a simple convolutional neural network guessing pixels. To implement the experiment, I used Pygame to simulate a turquoise desktop background, a gray window with a navy blue title bar, a white cursor, and four colors in total. Then, a bot randomly dragged the window, and I recorded everything, processing the frames as color index matrices (not RGB, to avoid complica...

Show HN: Statewright – Visual state machines that make AI agents reliable https://ift.tt/nczyieZ

Show HN: Statewright – Visual state machines that make AI agents reliable Agentic problem solving in its current state is very brittle. I fell in love with it, but it creates as many problems as it solves. I'm Ben Cochran, I spent 20+ years in the trenches with full-stack Engineering, DevOps, high performance computing & ML with stints at NVIDIA, AMD and various other organizations most recently as a Distinguished Engineer. For agents to work reliably you either need massive parameter counts or massive context windows to keep the solution spaces workable. Most people are brute forcing reliability with bigger models and longer prompts. What if I made the problem smaller instead of making the model bigger? I took a different approach by using smaller models: models in the 13-20B parameter range and set them to task solving real SWE-bench problems. I constrained the tool and solution spaces using formal state machines. Each state in the machine defines which tools the model can a...

Fix It! Week Is Back May 18, 2026: Taking Care of Muni from the Ground Up

Fix It! Week Is Back May 18, 2026: Taking Care of Muni from the Ground Up By Sevilla Mann Fix It! Week subway closures allow us to do maintenance work that makes our system safer and more reliable. The second Fix It! Week of the year is coming up on May 18, 2026, and we’re here to help you prepare. These Fix It! Week closures ensure our crews can move safely as they carry out critical repairs and inspections. Their work helps to keep our system safe and reliable for everyone. The details: When: Market Street subway service will end early at 9:30 p.m. each night from Monday, March 18 through Thursday, May 21. Where: West Portal through Embarcadero stations Bus shuttles/service: Bus... Published 2026-05-12T00:00:00Z https://ift.tt/3d2gv81

Show HN: Gigacatalyst – Extend your SaaS with an embedded AI builder https://ift.tt/dDpwP9X

Show HN: Gigacatalyst – Extend your SaaS with an embedded AI builder Hi HN, I’m Namanyay from Gigacatalyst (link: https://ift.tt/edyx5Ho ). Gigacatalyst allows sales, CS, and users to build one-off features, so your SaaS can support long-tail customer workflows and engineers aren’t pulled away from the roadmap. When you sell software to large businesses, you realize that each customer needs their own workflow and features. Traditionally, this either means long engineering roadmaps or the customers end up using workarounds. But what if everyone could build their critical missing features just by talking to an AI? That’s what we do at Gigacatalyst. We provide an AI customization layer for your customers, CS team, and sales team to build these missing critical workflows without needing any engineers at all. Think Lovable, but built on top of YOUR platform. We connect to your product's APIs, learn your data model and design system, and let non-technical users build governed apps via...

Show HN: SyncBank – Self-hosted bank sync for EU banks https://ift.tt/HWouhbB

Show HN: SyncBank – Self-hosted bank sync for EU banks https://syncbank.app/ May 12, 2026 at 01:02AM

Show HN: TikTok but for Scientific Papers https://ift.tt/RHp7ZFJ

Show HN: TikTok but for Scientific Papers https://andreaturchet.github.io/website/index.html May 11, 2026 at 11:05PM

Show HN: Learn2Burp – Surgery-free solution for R-CPD https://ift.tt/ZNKe4bG

Show HN: Learn2Burp – Surgery-free solution for R-CPD R-CPD (Retrograde Cricopharyngeus Dysfunction) is a condition where a muscle in the throat never learned to relax properly, making it impossible to burp. It affects more people than you'd think and causes significant discomfort, extreme bloating, and social anxiety. The most common medical treatment is a botox injection, but it's expensive and not accessible to everyone. I'm a Software Engineer from Germany and suffered from R-CPD my entire life before curing myself last year. I wanted to make the self-teaching process easier for everyone who comes after me, so I built Learn2Burp. It walks you through exercises with video guidance, builds a workout plan around your specific situation, and includes a burp tracker. There's also a wiki covering the questions I wish I'd had answers to when I started. If you or someone you know has R-CPD, there's also a dedicated r/noburp community worth checking out. https://lear...

Show HN: adamsreview – better multi-agent PR reviews for Claude Code https://ift.tt/agrC8Dy

Show HN: adamsreview – better multi-agent PR reviews for Claude Code I built adamsreview, a Claude Code plugin that runs deeper, multi-stage PR reviews using parallel sub-agents, validation passes, persistent JSON state, and optional ensemble review via Codex CLI and PR bot comments. On my own PRs, it has been catching dramatically more real bugs than Claude’s built-in /review, /ultrareview, CodeRabbit, Greptile, and Codex’s built-in review, while producing fewer false positives. adamsreview is six Claude Code slash commands packaged as a plugin: review, codex-review, add, promote, walkthrough, and fix. I modeled it after the built-in /review command and extended it meaningfully. You can clear context between review stages because state is stored in JSON artifacts on disk, with built-in scripts for keeping it updated. The walkthrough command uses Claude’s AskUserQuestion feature to walk you through uncertain findings or items needing human review one by one. Then, the fix command dispa...

Show HN: I trained a chess engine to play like humans https://ift.tt/0OXAFgD

Show HN: I trained a chess engine to play like humans I built 1e4.ai - a chess web app where you play against neural networks trained to mimic human Lichess players at specific Elo ranges. There's a separate model for each 100-point rating bucket from ~800 to 2200+, and the bots not only choose human-like moves but also burn clock time, play worse under time pressure, and blunder in human-like ways. Live demo: https://1e4.ai Code: https://ift.tt/ljec1VS A few things that might be interesting: - Trained on almost a full year of Lichess blitz games, around 1B total games - Architecture is an a small (~9MM parameters) transformer-based network that takes the board, recent move history, the player's rating, and remaining clock time as input. Three separate models per rating bucket: move, clock-usage, and win probability. The clock model is what makes the bots feel humanish under time pressure rather than instant. Because the move model takes the clock as one input parameter, it...

Show HN: Hustler Bingo – a tiny bingo game about startup Twitter clichés https://ift.tt/I7UseGn

Show HN: Hustler Bingo – a tiny bingo game about startup Twitter clichés I built this after my brother started complaining that I got too much into brainrot culture. It's just for fun nothing serious, but was able to test vercel, tanstack start and convex without high stakes. Have fun! This is the game where lower score is goood for your mental health https://ift.tt/muRfPbv May 11, 2026 at 03:36AM

Show HN: Mosaic – arrange iOS icons by color using an evolutionary algorithm https://ift.tt/ASZGWzj

Show HN: Mosaic – arrange iOS icons by color using an evolutionary algorithm It started out as a way for me to freshen up my C++ skills during COVID. But life got in the way and it was put on ice. Luckily, coding LLMs came to the rescue and allowed me to bring it to a point where I feel comfortable sharing it. https://ift.tt/miDQ7uP May 11, 2026 at 01:29AM

Show HN: Create flashcards with Space CLI https://ift.tt/v4CxH7d

Show HN: Create flashcards with Space CLI Hey, I created seven years ago a flashcard app with a main focus on UX. In the last months I added offline-first mode and a CLI that allows Claude Code or Codex to create high quality flashcards for you. I use that to learn about pharma rules, technology, dancing, taxes and smart home. Never really did marketing, this not my specialty. Would love to know what you think https://ift.tt/wlE6nYd May 9, 2026 at 09:38PM

Show HN: A search engine for deleted YouTube videos (1.5B+ indexed since 2005) https://ift.tt/H8u16ht

Show HN: A search engine for deleted YouTube videos (1.5B+ indexed since 2005) https://ift.tt/0EWqNdI May 9, 2026 at 10:09PM

Show HN: A lie detector game that reads your pulse through your phone camera https://ift.tt/uRwD2N3

Show HN: A lie detector game that reads your pulse through your phone camera https://kouh.me/tells May 9, 2026 at 01:01AM

Show HN: We built a tool that generates 3D objects with editable, separate parts https://ift.tt/lDOKroI

Show HN: We built a tool that generates 3D objects with editable, separate parts https://nova3d.xyz/ May 9, 2026 at 12:11AM

Show HN: UltraCompress – first mathematically lossless 5-bit LLM compression https://ift.tt/qbInO6v

Show HN: UltraCompress – first mathematically lossless 5-bit LLM compression https://ift.tt/LQWz12d May 8, 2026 at 11:49PM

Show HN: Rejected by YC https://ift.tt/OLjBCa1

Show HN: Rejected by YC https://rejectedbyyc-ten.vercel.app/ May 8, 2026 at 11:31PM

Show HN: Bilig – a headless spreadsheet engine for Node services and agents https://ift.tt/C1Plnjd

Show HN: Bilig – a headless spreadsheet engine for Node services and agents https://ift.tt/AvHeRWL May 8, 2026 at 01:16AM

A Community-Powered Success: Bayview Shuttle Extended Through 2027

A Community-Powered Success: Bayview Shuttle Extended Through 2027 By Javaun Garcia Riders enjoy a community tour of San Francisco’s African American Arts & Cultural District. The California Air Resources Board (CARB) has extended the Bayview Shuttle’s grant. The service is fully funded by this grant, and the extension runs through November 2027. This allows us to continue connecting people in Bayview-Hunter's Point to Muni, BART and other important resources. This helps them get around more easily, and it strengthens the public transportation network in a community that was historically disconnected from the rest of the city. The extension is a direct result of strong... Published 2026-05-07T00:00:00Z https://ift.tt/8F7b4yg

Show HN: Stage CLI – a tool to make reading your AI generated changes easier https://ift.tt/zAN1vd4

Show HN: Stage CLI – a tool to make reading your AI generated changes easier Hey HN! We're Charles and Dean. A few weeks ago we posted about Stage, a code review tool that guides you through reading a PR step by step - https://ift.tt/eIAXWVw . We got a lot of great feedback but also heard from many people that they wanted to have the chapters experience even before opening a PR… so we built the Stage CLI as the local, open-source version that anyone can try. Here’s a quick demo video: https://ift.tt/65baiS3 It works with any coding agent of your choice. The skill instructs the agent to read your current branch’s changes, break them down into separate logical chapters, and open them in a local browser. We’ve found that reading changes this way is a lot easier for us than reading them in an IDE or other similar CLI tools, which present diffs to you in repository tree order. You can see a few examples of what it feels like here: https://ift.tt/dq0Ouvz . Try it out and let us know ...

Show HN: Local-first long-term memory engine for AI agents·MCP/CLI· 100% local https://ift.tt/Hzhk0tr

Show HN: Local-first long-term memory engine for AI agents·MCP/CLI· 100% local Local-first long-term memory engine for AI agents · MCP + HTTP + CLI · SQLite + sqlite-vec + FTS5 · 100% local, no cloud https://ift.tt/HVGl50E May 7, 2026 at 11:38PM

Show HN: BattleClaws – A battle arena where AI agents fight autonomously https://ift.tt/0cyIYgT

Show HN: BattleClaws – A battle arena where AI agents fight autonomously https://battleclaws.ai/ May 6, 2026 at 08:14PM

Show HN: Explore color palettes inspired by 3000 master painter artworks https://ift.tt/fmXtFWJ

Show HN: Explore color palettes inspired by 3000 master painter artworks I built PaletteInspiration.com, a browsable archive of color palettes pulled from artworks by 3,000+ master painters (Monet, Vermeer, Raphael, Van Gogh). Why I built it: every color palette generator I tried converged on the same five muted pastels. Painters spent centuries figuring out color and we mostly ignore that body of work when picking colors for digital design. Please share your feedback on the Color Harmony Explorer - drag the wheel to any color and it shows which hues master painters historically paired with it (not only standard complementary, analogous, triadic, etc.) It is solely based on co-occurrence across thousands of real paintings. Not algorithmic color theory rules - actual empirical pairings. No signup, no paywall, no email capture. Just curious what people think. https://ift.tt/6GHxYr4 May 6, 2026 at 01:13AM

Show HN: WolfCOSE, a zero alloc C COSE with multi-sign/recipient, and PQC https://ift.tt/U5EwOFC

Show HN: WolfCOSE, a zero alloc C COSE with multi-sign/recipient, and PQC https://ift.tt/m5UJ02A May 6, 2026 at 12:03AM

Show HN: Codeberg (Forgejo) CLI, built with Xclif https://ift.tt/S8z5Yix

Show HN: Codeberg (Forgejo) CLI, built with Xclif https://ift.tt/GuMcYKx May 5, 2026 at 10:07PM

Show HN: Pathetic – Java pathfinding: 10k concurrent paths in ~7ms https://ift.tt/8GfXjqZ

Show HN: Pathetic – Java pathfinding: 10k concurrent paths in ~7ms It started with drones. My co-founder and I were building a Minecraft plugin where drones had to navigate through unloaded chunks - terrain that doesn't even exist in memory yet. No existing library had any concept of it, which led to drones being stuck in non-existence. Sloppy at first, tightly coupled to Minecraft's API, we built our own. But somewhere along the way we realized: the problem wasn't Minecraft. It was how Java pathfinding is built in general - object-heavy, GC-hostile, and single-threaded by assumption. So I split the project. The core became its own thing: pure Java 8+ for compatibility, featuring a zero-allocation primitive heap instead of a theoretically optimal FibonacciHeap, because pointer chasing and cache misses were unacceptable. 100% async, even in a single-threaded, async-hating Minecraft hell, and a processor pipeline providing full extensibility. No game engine, yet the possibili...

Show HN: I indexed 8,643 BSides talks across 227 chapters and 6 continents https://ift.tt/LrDgfE3

Show HN: I indexed 8,643 BSides talks across 227 chapters and 6 continents Hi HN, I'm Roland, and for the past few weeks, I've been building AllBSides — a directory of every BSides conference talk uploaded to YouTube. As of today, 8,643 talks from 5,927 speakers across 227 chapters in 68 countries. Combined runtime is 280 days. The transcripts come to about 60 million words. The archive came together in stages: 1. Manually map every BSides chapter's YouTube channel 2. Pull every video and transcript from Supabase 3. Run each transcript through Haiku for tag extraction (tools, topics, difficulty, team, talk style, research method, and much more) 4. Run results through Sonnet for categorization and dedup 5. Final pass goes through Opus for verification 6. Do a manual verification - at one time, the pipeline showed over 16k AI suggestions for manual verification. Today, most are resolved. Total LLM cost so far: about €200. The whole pipeline is rebuildable from scratch. Each t...

Show HN: NeuralScript – A pure-Rust AOT compiler https://ift.tt/MwPTHse

Show HN: NeuralScript – A pure-Rust AOT compiler https://ift.tt/fEXkZbs May 5, 2026 at 03:06AM

Show HN: nfsdiag - a NFS diagnostic application https://ift.tt/rSJoefM

Show HN: nfsdiag - a NFS diagnostic application https://ift.tt/weavoXU May 2, 2026 at 07:48PM

Show HN: Muesli – If Granola and Wisprflow had an open source on device baby https://ift.tt/m1k3Zja

Show HN: Muesli – If Granola and Wisprflow had an open source on device baby Hey folks, I am the developer behind muesli - which is your one stop app for all your speech to text needs, be it voice dictation or meeting transcriptions that runs on device on your Apple Neural Engine using CoreML based STT models (Parakeet, Whisper, Cohere transcribe). Everything is open source and we are at 160 stars - au naturale - would love for folks to use it and contribute further to the development https://freedspeech.xyz May 4, 2026 at 11:41PM

Show HN: Ableton Live MCP https://ift.tt/JR8BFdf

Show HN: Ableton Live MCP https://ift.tt/rQef5Bg May 4, 2026 at 01:05AM

Show HN: GitHub Commits Leaderboard https://ift.tt/O98vpSQ

Show HN: GitHub Commits Leaderboard https://ghcommits.com May 3, 2026 at 11:53PM

Show HN: Software Engineer to Novelist: Writing a Book Like Coding https://ift.tt/oVqXwfn

Show HN: Software Engineer to Novelist: Writing a Book Like Coding I just published my first book, Means and Motive. ( https://ift.tt/4JLRBeH ) As a software engineer, I approached writing like a software project. I used familiar tools (Emacs and HTML) for the primary writing. I built my own tool (EPublish) to transform the HTML manuscript into an .epub file, the source for the ebook version. And I wrote shell scripts to reliably and repeatably transform the .epub version into PDF files for the printed editions. I wrote 'design' and 'architecture' docs, describing the world, key actors, and timelines. I kept a task list of chapters and key scenes that needed to be written, in priority order. Along the way, I kept my files version-controlled so I could see the progress of the novel and edit mercilessly, without worrying about keeping old text around in backup files should I want it back for some reason. If you've thought about writing a book, I highly recommen...

Show HN: Use an Android Phone as an HTTP Proxy https://ift.tt/ThOYmFy

Show HN: Use an Android Phone as an HTTP Proxy I created a simple project to allow you to use a phone as a web proxy. This is not a proxy for the phone, its a way to proxy web traffic from elsewhere via the phone. One practical use case is accessing geo-restricted content. If you have a trusted contact in the country with an Android phone, this can serve as a simple alternative to a commercial VPN. To set it up you need to run a proxy server which can run as a docker container. You then need to install the app on the Android phone which will connect to the server. Finally you configure a browser to use the proxy server as the HTTP/HTTPS proxy. More details here: https://ift.tt/VFHA48k Let me know how you go and if you run into any issues. https://ift.tt/iAEGDJg May 3, 2026 at 07:14AM

Show HN: State of the Art of Coding Models, According to Hacker News Commenters https://ift.tt/CuoyJVv

Show HN: State of the Art of Coding Models, According to Hacker News Commenters Hello HN, I was away from my computer for two weeks, and after coming back and reading the latest discussions on HN about coding assistants (models, harnesses), I felt very out of the loop. My normal process would have been to keep reading and figure out the latest and greatest from people's comments, but I wanted to try and automate this process. Basically the goal is to get a quick overview over which coding models are popular on HN. A next iteration could also scan for harnesses that people use, or info on self-hosting or hardware setups. I wrote a short intro on the page about the pipeline that collects and analyzes the data, but feel free to ask for more details or check the Google Sheet for more info. https://hnup.date/hn-sota https://hnup.date/hn-sota May 3, 2026 at 04:25AM

Show HN: Clipmon is a macOS clipboard manager on steroids https://ift.tt/o5Iyizk

Show HN: Clipmon is a macOS clipboard manager on steroids https://ift.tt/oTkrG82 May 3, 2026 at 03:29AM

Show HN: Rust library for Undo/Redo using deltas, snapshots or commands https://ift.tt/y0g9KVR

Show HN: Rust library for Undo/Redo using deltas, snapshots or commands https://ift.tt/1zkj3Aw May 3, 2026 at 01:41AM

Show HN: AI CAD Harness https://ift.tt/12pOFKN

Show HN: AI CAD Harness Hi HN, I'm Zach, one of the co-founders of Adam ( https://adam.new ). We've been on HN twice before with text-to-CAD/3D experiments [1][2]. The honest takeaway from those threads: prompt-to-3D model web apps are fun, but serious mechanical engineers don't want a black box that spits out an STL. They want help inside the CAD tool they already use, with full visibility and control over the feature tree. So we built that. Adam is now a harness that integrates directly with your CAD. It reads your parts, understands the existing feature tree, and edits it for you agentically. We are now live in beta on Onshape and Fusion! [3]: Install link Autodesk Fusion: https://ift.tt/M618L2G Install link PTC Onshape: https://ift.tt/xvpwPjf... Things people are using it for today: - "Merge redundant features and clean up my tree" - "Rename every feature so the tree is actually readable" - "Round all internal edges with a 2mm fillet" -...

Show HN: My Private GitHub on Postgres https://ift.tt/NTaESJ7

Show HN: My Private GitHub on Postgres https://ift.tt/pwCoT42 May 2, 2026 at 12:40AM

Show HN: N=1 – iOS app for structured longevity self-protocols https://ift.tt/5wTmX2J

Show HN: N=1 – iOS app for structured longevity self-protocols Hello My name is Henry. I built this app for people who want to know for sure that things that they are trying are actually working. I am looking for enthusiastic people who want to see longevity and bio-hacker community grow. At the moment the app is completely free to use. There is no sign up or anything like that. I need your feedback to build something beautiful. https://ift.tt/N2HtMvY May 2, 2026 at 12:30AM

Show HN: Access OPFS from multiple tabs using a fake Shared Worker https://ift.tt/sEeuCPR

Show HN: Access OPFS from multiple tabs using a fake Shared Worker https://ift.tt/PK4ZnVB May 1, 2026 at 11:15PM