🛠️ Hacker News Tools
Showing 361–380 of 3060 tools from Hacker News
Last Updated
June 05, 2026 at 04:00 PM
Show HN: Free tool to mark points and polygon regions
Show HN (score: 7)[Other] Show HN: Free tool to mark points and polygon regions For a game I'm developing I needed an easy way to create hotspot areas on images. So I hacked together a small tool to do so and before I knew it, I had created an entire app :-)<p>It allows you to generate JSON or YAML from the coordinates you tack on the image. tack runs entirely in your browser, there is no server side component to it, so good in terms of privacy.<p>Hope this is helpful.
Apple is enforcing an old App Store rule against a new kind of software
Hacker News (score: 66)[Other] Apple is enforcing an old App Store rule against a new kind of software
Show HN: I built a game where AI agents compete to ship code
Show HN (score: 6)[Other] Show HN: I built a game where AI agents compete to ship code
Show HN: Pay.sh – Discover, access, and pay for any API autonomously
Show HN (score: 5)[API/SDK] Show HN: Pay.sh – Discover, access, and pay for any API autonomously
Show HN: I built an open-source email builder, alternative to Beefree/Unlayer
Hacker News (score: 88)[Other] Show HN: I built an open-source email builder, alternative to Beefree/Unlayer
Building the deployment tool I wish I had
Hacker News (score: 12)[Other] Building the deployment tool I wish I had
Agents can now create Cloudflare accounts, buy domains, and deploy
Hacker News (score: 25)[Other] Agents can now create Cloudflare accounts, buy domains, and deploy
Show HN: Better Design – 28 Shadcn design systems (OSS, MCP: Cursor/Claude Code)
Show HN (score: 11)[Other] Show HN: Better Design – 28 Shadcn design systems (OSS, MCP: Cursor/Claude Code)
Show HN: Explore color palettes inspired by 3000 master painter artworks
Hacker News (score: 182)[Other] 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.<p>No signup, no paywall, no email capture. Just curious what people think.
Building my own Vi text editor in BASIC
Hacker News (score: 10)[Other] Building my own Vi text editor in BASIC
Computer Use is 45x more expensive than structured APIs
Hacker News (score: 467)[Other] Computer Use is 45x more expensive than structured APIs
Show HN: Pathetic – Java pathfinding: 10k concurrent paths in ~7ms
Show HN (score: 8)[Other] 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.<p>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.<p>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 possibility to adapt to your environment.<p>Sometimes it isn't the algorithm that needs optimization, but the environment it lives in. Pathetic is full of these micro-optimizations: a BloomFilter lookup before the expensive closed set check, a multi-metric squared heuristic to kill Math.sqrt() overhead, and bit-packing 3D coordinates into a single primitive long. In order to get Java fast, you need to treat it like C++.<p>The result: 10k concurrent paths in ~7ms, where most libraries quietly die. A 20k distance path (equivalent to 100k+ nodes) in ~60ms without bloating the heap. The README is... a choice. Judge it, because it does the same to you.
Show HN: I built an API for agents visiting my personal website
Show HN (score: 5)[Other] Show HN: I built an API for agents visiting my personal website
Show HN: Codeberg (Forgejo) CLI, built with Xclif
Show HN (score: 6)[CLI Tool] Show HN: Codeberg (Forgejo) CLI, built with Xclif
Agents for financial services and insurance
Hacker News (score: 214)[Other] Agents for financial services and insurance
Show HN: Octopus Code Review is now free for OSI-licensed repos
Show HN (score: 6)[Other] Show HN: Octopus Code Review is now free for OSI-licensed repos
A polynomial autoencoder beats PCA on transformer embeddings
Hacker News (score: 52)[Other] A polynomial autoencoder beats PCA on transformer embeddings
Show HN: Retroguard – Verifiably secure AI guardrails
Show HN (score: 6)[Other] Show HN: Retroguard – Verifiably secure AI guardrails Cryptographically secure and verifiably robust protection with drop-in integration and outcome-based pricing
CVE-2026-31431: Copy Fail vs. rootless containers
Hacker News (score: 83)[Other] CVE-2026-31431: Copy Fail vs. rootless containers
Show HN: Kanban-CLI – a web UI for local Markdown todo lists
Show HN (score: 6)[CLI Tool] Show HN: Kanban-CLI – a web UI for local Markdown todo lists As we all are, I've been experimenting with ways to reduce external saas spend, and continually bring traditionally external pieces of context (prs, docs, trello boards) into the one mono repo.<p>I have toyed with a markdown todo list and setting claude/codex into a "ralph" loop previously, but always missed the web ui for organising, planning, and tracking things in progress.<p>So codex and I build kanban-cli, an installable or npx-runnable cli util that takes one or more markdown files, and uses markdown headers and todo syntax to track and manage agentic tasks.<p>Let me know your thoughts, or if you've got a more convenient way of managing tasks!<p>I was tempted to link to the project landing page <a href="https://kanban-cli.vochsel.com" rel="nofollow">https://kanban-cli.vochsel.com</a> as I made a cute example demo, but linking to the repo felt less self-promo-y.<p>Cheers!