🛠️ All DevTools
Showing 1701–1720 of 6206 tools
Last Updated
July 22, 2026 at 08:31 PM
Show HN: I Replaced React in GraphiQL with Svelte
Show HN (score: 5)[API/SDK] Show HN: I Replaced React in GraphiQL with Svelte I love Svelte and GraphQL. I do not like React. So, when I'm building APIs, I cringe when using the official GraphiQL interface.<p>I have free will and a Claude subscription so I made it happen. You can find it on npm as "@eeeooolll/graphiql" (@eol was taken).<p><a href="https://www.npmjs.com/package/@eeeooolll/graphiql" rel="nofollow">https://www.npmjs.com/package/@eeeooolll/graphiql</a><p>I also upgraded my batteries-included GraphQL server to use it. You can find it on JSR.<p><a href="https://jsr.io/@eol/gq" rel="nofollow">https://jsr.io/@eol/gq</a>
Show HN: Dreamwork – a job search site I made after Indeed fired my pregnant wif
Show HN (score: 6)[Other] Show HN: Dreamwork – a job search site I made after Indeed fired my pregnant wif Hey, I’m Colin and I have a fun story for you.<p>My 7 month pregnant wife was laid off from Indeed (she was a PM there) back in December. This pissed me off quite a bit, as she was supposed to get 6 months leave and instead got fired.<p>So I spent the last five months working part time to build Dreamwork, a platform aiming to make the job search experience actually better with AI (not just mass application spam).<p>I started with just a telegram bot doing scraping, then advanced to Google Embeddings 2.0 for vectorizing the jobs, built out a tight 6 axis scorecard for both the user and each job.<p>Then I actually got to use my English degree (lol) to optimize the prompt for custom per-job resumes and cover letters to make them not sound like - again - shitty AI.<p>Most AI cover letters have a kind of consistently dead quality. They use all the keywords and somehow communicate nothing. I absolutely hate that, so I’ve been fairly obsessive about making the output feel more like a decent human draft: specific but restrained, and not stuffed with keywords.<p>It is now useful enough that I think strangers can try it and find serious value.<p>What it does today:<p>- indexes ~100k curated tech jobs<p>- tries to avoid stale/duplicate aggregator garbage<p>- uses semantic matching instead of only keyword search<p>- generates an “application pack” for each job: tailored resume, cover letter, and answers to common/custom questions<p>- lets the user edit everything before applying<p>- helps keep track of saved jobs and generated materials<p>Auto apply is the part I’m conflicted about. I do t think blindly spraying applications is good for the candidates (chance of hiring is already low, even with hard work and customization), recruiters (they’re swamped), or the world (we don’t need more slop).<p>I’ll build auto apply out in some format, but I want to be thoughtful about it.<p>I also built out a whole research section to map out layoffs and hiring trends. This will start to be super useful in a month or two.<p>Anyways - it’s all free to use right now. Built originally out of spite, now becoming a real product.<p>I’d love to get feedback on what elements would truly make this the career companion you’re looking for. Not - resume spray and pray platform, but something that will actually help you navigate this insane hiring economy we’re in.<p>You can check it out here:<p><a href="https://dreamworkhq.com" rel="nofollow">https://dreamworkhq.com</a>
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.
LearningCircuit/local-deep-research
GitHub Trending[Other] ~95% on SimpleQA (e.g. Qwen3.6-27B on a 3090). Supports all local and cloud LLMs (llama.cpp, Ollama, Google, ...). 10+ search engines - arXiv, PubMed, your private documents. Everything Local & Encrypted.
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
bwya77/vscode-dark-islands
GitHub Trending[Other] VSCode theme based off the easemate IDE and Jetbrains islands theme