Posts

Show HN: I run AI background removal in the browser–no upload,no server https://ift.tt/oqXcpn8

Show HN: I run AI background removal in the browser–no upload,no server RMBG-1.4 + SAM running client-side via ONNX Runtime WASM. ~2s on laptop, works on mobile. Your image never leaves the browser. Built this as part of allplix.com. 19yo student in France, solo project. Happy to talk about the WASM pipeline or the pain of running ML models in a browser tab. https://ift.tt/2ZOple0 April 10, 2026 at 11:30PM

Show HN: Dynamic Map of YouTube Channels https://ift.tt/LI4POYf

Show HN: Dynamic Map of YouTube Channels https://www.ytmap.xyz/ April 10, 2026 at 10:55PM

Show HN: Figma for Coding Agents https://ift.tt/nM5YDOP

Show HN: Figma for Coding Agents Feels a bit like Figma, but for coding agents. Instead of going back and forth with prompts, you give the agent a DESIGN.md that defines the design system up front, and it generally sticks to it when generating UI. Google Stitch seems to be moving in this direction as a standard, so we put together a small collection of DESIGN.md files based on popular web sites. https://getdesign.md April 10, 2026 at 08:50PM

Show HN: Druids – Build your own software factory https://ift.tt/uH7ixcL

Show HN: Druids – Build your own software factory Hi HN! Druids ( https://ift.tt/XKFGSWJ ) is an open-source library for structuring and running multi-agent coding workflows. Druids makes it easy to do this by abstracting away all the VM infrastructure, agent provisioning, and communication. You can watch our demo video here ( https://www.youtube.com/watch?v=EVJqW-tvSy4 ) to see what it looks like. At a high level: - Users can write Python programs that define what roles the agents take on and how they interact with each other. - A program is made of events - clear state transitions that the agents or clients can call to modify state. Each event gets exposed as an agent tool. - Druids provisions full VMs so that the agents can run continuously and communicate effectively. We made Druids because we were making lots of internal coding tools using agents and found it annoying to have to rearrange the wiring every time. As we were building Druids, we realized a lot of our internal tools we...

Show HN: Last Year I wrote a (Sci)fictional story where the EFF was a player [pdf] https://ift.tt/H3qoFlU

Show HN: Last Year I wrote a (Sci)fictional story where the EFF was a player [pdf] https://ift.tt/phX9U2c April 9, 2026 at 11:43PM

Show HN: Logoshi, a brand kit generator for solo founders https://ift.tt/gtsE1HY

Show HN: Logoshi, a brand kit generator for solo founders https://logoshi.com/ April 9, 2026 at 10:12PM

Show HN: I built a Cargo-like build tool for C/C++ https://ift.tt/71rnuav

Show HN: I built a Cargo-like build tool for C/C++ I love C and C++, but setting up projects can sometimes be a pain. Every time I wanted to start something new I'd spend the first hour writing CMakeLists.txt, figuring out find_package, copying boilerplate from my last project, and googling why my library isn't linking. By the time the project was actually set up I'd lost all momentum. So, I built Craft - a lightweight build and workflow tool for C and C++. Instead of writing CMake, your project configuration goes in a simple craft.toml: [project] name = "my_app" version = "0.1.0" language = "c" c_standard = 99 [build] type = "executable" Run craft build and Craft generates the CMakeLists.txt automatically and builds your project. Want to add dependencies? That's just a simple command: craft add --git https://ift.tt/78HnIRz --links raylib craft add --path ../my_library craft add sfml Craft will clone the dependency, regenerate the...