🛠️ All DevTools

Showing 1701–1720 of 6206 tools

Last Updated
July 22, 2026 at 08:31 PM

[API/SDK] Show HN: I Replaced React in GraphiQL with Svelte I love Svelte and GraphQL. I do not like React. So, when I&#x27;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 &quot;@eeeooolll&#x2F;graphiql&quot; (@eol was taken).<p><a href="https:&#x2F;&#x2F;www.npmjs.com&#x2F;package&#x2F;@eeeooolll&#x2F;graphiql" rel="nofollow">https:&#x2F;&#x2F;www.npmjs.com&#x2F;package&#x2F;@eeeooolll&#x2F;graphiql</a><p>I also upgraded my batteries-included GraphQL server to use it. You can find it on JSR.<p><a href="https:&#x2F;&#x2F;jsr.io&#x2F;@eol&#x2F;gq" rel="nofollow">https:&#x2F;&#x2F;jsr.io&#x2F;@eol&#x2F;gq</a>

Found: May 07, 2026 ID: 4510

[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&#x2F;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&#x2F;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:&#x2F;&#x2F;dreamworkhq.com" rel="nofollow">https:&#x2F;&#x2F;dreamworkhq.com</a>

Found: May 07, 2026 ID: 4515

[Other] Show HN: Free tool to mark points and polygon regions For a game I&#x27;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.

Found: May 06, 2026 ID: 4541

[Other] Apple is enforcing an old App Store rule against a new kind of software

Found: May 06, 2026 ID: 4500

[Other] Show HN: I built a game where AI agents compete to ship code

Found: May 06, 2026 ID: 4511

[API/SDK] Show HN: Pay.sh – Discover, access, and pay for any API autonomously

Found: May 06, 2026 ID: 4503

[Other] Show HN: I built an open-source email builder, alternative to Beefree/Unlayer

Found: May 06, 2026 ID: 4499

[Other] Building the deployment tool I wish I had

Found: May 06, 2026 ID: 4495

[Other] Agents can now create Cloudflare accounts, buy domains, and deploy

Found: May 06, 2026 ID: 4489

[Other] Show HN: Better Design – 28 Shadcn design systems (OSS, MCP: Cursor/Claude Code)

Found: May 05, 2026 ID: 4497

[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.

Found: May 05, 2026 ID: 4494

[Other] Building my own Vi text editor in BASIC

Found: May 05, 2026 ID: 4498

[Other] Computer Use is 45x more expensive than structured APIs

Found: May 05, 2026 ID: 4496

[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&#x27;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&#x27;s API, we built our own. But somewhere along the way we realized: the problem wasn&#x27;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&#x27;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.

Found: May 05, 2026 ID: 4492

[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.

Found: May 05, 2026 ID: 4480

[Other] Show HN: I built an API for agents visiting my personal website

Found: May 05, 2026 ID: 4488

[CLI Tool] Show HN: Codeberg (Forgejo) CLI, built with Xclif

Found: May 05, 2026 ID: 4486

[Other] Agents for financial services and insurance

Found: May 05, 2026 ID: 4491

[Other] Show HN: Octopus Code Review is now free for OSI-licensed repos

Found: May 05, 2026 ID: 4487

[Other] VSCode theme based off the easemate IDE and Jetbrains islands theme

Found: May 05, 2026 ID: 4478
Previous Page 86 of 311 Next