🛠️ All DevTools

Showing 1441–1460 of 3069 tools

Last Updated
January 21, 2026 at 04:00 AM

prjct/cli

Product Hunt

[CLI Tool] Local CLI layer that turns chat into shippable tasks prjct/cli is the execution layer for Claude Code, Codex & Warp. Turn ideas into AI-ready roadmaps, feed perfect context to your agents, and ship features straight from your terminal. No PM overhead—just you, your AI, and pure shipping.

Found: September 30, 2025 ID: 1632

Vibe Backup

Product Hunt

[Other] Vibe Coding Easy Backup Built for Vibe Coding devs. Never lose code! Backup instantly with shortcuts or auto-sync on Git commit. Securely roll back to any version with confidence.

Found: September 30, 2025 ID: 1638

QR Event Maker

Product Hunt

[Other] Create unique QR codes to easily schedule calendar events Create QR codes that instantly add events to calendars. Turn your event details into a QR code. When scanned, it opens in Google, Apple, or Outlook Calendar.

Found: September 30, 2025 ID: 1641

[Other] Prevent the next chargeback. Prevent is a post-transaction fraud prevention platform built for eCommerce. It stops friendly fraud, return abuse & bots with actor-based analysis, a collaborative fraud network, and a transparent Digital Score. Plug & play for SMBs.

Found: September 30, 2025 ID: 1642

[API/SDK] Show HN: Simple WhatsApp API (Open Source) Had a Lot of issues with existing APIs especially with Attachment support. Hence built own Whatsapp API.<p>Currently only Send Messages

Found: September 30, 2025 ID: 1620

[Other] Show HN: Cap'n-rs – Rust implementation of Cloudflare's Cap'n Web protocol Last week Cloudflare released Cap&#x27;n Web [1], a schema-free capability-based RPC protocol. I built capn-rs this week - a Rust implementation with full wire protocol compatibility. Links:<p>GitHub: <a href="https:&#x2F;&#x2F;github.com&#x2F;currentspace&#x2F;capn-rs" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;currentspace&#x2F;capn-rs</a> Crates: <a href="https:&#x2F;&#x2F;crates.io&#x2F;crates&#x2F;capnweb-server" rel="nofollow">https:&#x2F;&#x2F;crates.io&#x2F;crates&#x2F;capnweb-server</a> API docs: <a href="https:&#x2F;&#x2F;docs.rs&#x2F;capnweb-server" rel="nofollow">https:&#x2F;&#x2F;docs.rs&#x2F;capnweb-server</a><p>What&#x27;s working:<p>Wire compatibility verified via integration tests against TypeScript reference Multi-transport: HTTP batch, WebSocket, WebTransport (HTTP&#x2F;3) Complete IL (intermediate language) expression evaluator Promise pipelining with dependency resolution Comprehensive test coverage<p>The interesting design challenge was mapping Cap&#x27;n Web&#x27;s record-replay .map() semantics to Rust&#x27;s type system while maintaining ergonomic APIs. Cap&#x27;n Web records operations on placeholder values to build execution plans - in Rust this became a clean builder pattern with type-level guarantees. Built this as an experiment with Claude Code for porting complex protocols. The AI handled mechanical translation well, but architectural decisions (especially around async&#x2F;await patterns and lifetime management) required human judgment. This is early days - I&#x27;d especially appreciate feedback on API ergonomics and any edge cases I might have missed. Also happy to discuss the protocol design or the AI-assisted development experience.<p>[1] <a href="https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=45332883">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=45332883</a>

Found: September 30, 2025 ID: 1619

[Other] Show HN: I built an IDE for devs who live in the terminal

Found: September 29, 2025 ID: 1618

Done-0/fuck-u-code

GitHub Trending

[Code Quality] Legacy-Mess Detector – assess the “legacy-mess level” of your code and output a beautiful report | 屎山代码检测器,评估代码的“屎山等级”并输出美观的报告

Found: September 29, 2025 ID: 1615

[Other] Show HN: Resrap – A Parser but in Reverse I built Resrap, a Go package that takes a grammar in ABNF format and generates infinitely long sequences of syntactically correct code...either completely randomly or with seeds for a deterministic generation.<p>ABNF is a modified version of EBNF(<a href="https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;Extended_Backus%E2%80%93Naur_form" rel="nofollow">https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;Extended_Backus%E2%80%93Naur_f...</a>) I made for this project, basically means you can specify when generating code 20% of lines will be if{} blocks and 50% will be while{} blocks which allows for more natural code generation, plus support for infinite generation of code.<p>It’s very fast...it generated ~40 million tokens of C syntax in about 26 seconds on my laptop and supports multithreading which actually saw boosts in performance since its very easy to parallelize.<p>I originally made this for a typing-test project (I didn’t want to store code snippets manually), but it turned out to be useful in other contexts too, like: - Stress-testing parsers and linters - Creating non-copyrighted “lorem ipsum” code for tech demos - Generating those endless “hacker” code scenes you see in movies<p>Curious what other cool things people might do with it!<p>Github: <a href="https:&#x2F;&#x2F;github.com&#x2F;osdc&#x2F;Resrap" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;osdc&#x2F;Resrap</a> Website: <a href="https:&#x2F;&#x2F;resrap.osdc.dev&#x2F;" rel="nofollow">https:&#x2F;&#x2F;resrap.osdc.dev&#x2F;</a>

Found: September 29, 2025 ID: 1617

[Other] Show HN: Neural Emotion Matrix for NPCs Hey! I built this system to humanize NPCs by giving them emotions using Rust and ML.<p>The system provides emotion coordinates (based on Russell&#x27;s circumplex model) from text input or actions, with persistent emotional memory per entity. Think NPCs that remember how they feel about specific players or events.<p>I pre-trained a DistilBERT model on ~1k video game dialogues (Skyrim, Cyberpunk, etc.) and plan to extract and evaluate 100k+ dialogues soon. However studio&#x2F;team can manually add dialogues to enrich their own dataset.<p>The matrix doesn&#x27;t generate dialogue, it only analyzes content. When you pass text or an action, it returns emotion coordinates on the valence (pleasant&#x2F;unpleasant) and arousal(energetic&#x2F;calm) scale. For example:<p>- [0.00, 0.00] = neutral<p>- [0.29, 0.80] = excited<p>- [-0.50, -0.30] = sad&#x2F;tired<p>I made a quick visualizer here to help understand <a href="https:&#x2F;&#x2F;valence-arousal-visualizer.vercel.app&#x2F;" rel="nofollow">https:&#x2F;&#x2F;valence-arousal-visualizer.vercel.app&#x2F;</a><p>The system helps select which dialogue&#x2F;action to play based on emotional state:<p>- Player says something bad to NPC → system detects negative valence → game picks from &quot;angry dialogue pool&quot;<p>- NPC remembers past positive interactions → system returns positive valence → friendlier responses available<p>So, the devs still write the dialogues or choose the next actions, but the matrix helps manage NPC emotional states and memory dynamically.<p>Here&#x27;s the project structure to better understand how it works:<p>- src&#x2F;config: Helper utilities for NPC configuration setup<p>- src&#x2F;module: The core engine with emotion prediction, memory storage, and entity management<p>- src&#x2F;api: FFI layer with pub extern &quot;C&quot; to bridge our modules with C&#x2F;C++ game engines and modding tools (Unity, Unreal, etc.)<p>To implement it, just call `build.sh`, it will create DLL files that you can use to call the matrix functions directly in C++&#x2F;C&#x2F;C#.<p>I&#x27;d love feedback on code quality and overall architecture.<p>Feel free to be honest about the good, the bad, and the ugly. PRs welcome if you want to contribute!

Found: September 29, 2025 ID: 1713

[Other] Dbos: Durable Workflow Orchestration with Go and PostgreSQL

Found: September 29, 2025 ID: 1681

[Package Manager] PyOCI – Publish and install private Python packages using OCI/Docker registries

Found: September 29, 2025 ID: 1685

[Other] Optimizing a 6502 image decoder, from 70 minutes to 1 minute

Found: September 29, 2025 ID: 1612

Nexa SDK

Product Hunt

[API/SDK] Run, build & ship local AI in minutes Nexa SDK runs any model on any device, across any backend locally—text, vision, audio, speech, or image generation—on NPU, GPU, or CPU. It supports Qualcomm and Apple NPUs, GGUF, Apple MLX, and the latest SOTA models (Gemma3n, PaddleOCR).

Found: September 29, 2025 ID: 1607

Fern

Product Hunt

[API/SDK] Instant Docs and SDKs for your API Start with an API spec. Generate SDKs in multiple languages and interactive API documentation tailored to your brand.

Found: September 29, 2025 ID: 1608

[Database] Get your database software prototypes fast A multi platform framework with prototyping and database capabilities. It includes code generators and UML ex/import. The main software itself is a prototype including it's UML model you could look at using BoUML.

Found: September 29, 2025 ID: 1609

Todos.now

Product Hunt

[Other] Private todos - capture quickly, focus on what matters now. Todos.now is a privacy-first todo-list dashboard. Type natural language to add tasks (“Launch Todos.now #sideproject 9/29@8am !high”), fly with keyboard shortcuts, switch between List/Kanban/Priority views, and keep data private with end-to-end encryption.

Found: September 29, 2025 ID: 1610

ReSMS

Product Hunt

[API/SDK] Twilio made SMS APIs complicated. We've made it 5-min simple Send SMS at scale with the developer—friendly API. Simple integration, predictable pricing, and optimized for modern applications.

Found: September 29, 2025 ID: 1611

NameSnag

Product Hunt

[Other] From idea to startup — name, domain & dev prompt in 10s Generate unique brand names with domains, colors, and logo ideas using AI

Found: September 29, 2025 ID: 1613

NewStudio

Product Hunt

[Other] Better YouTube Analytics NewStudio is a Chrome Extension built to further enhance and customize YouTube Studio. Currently launching with 4 features: - Confirm-click Sign-out - Real-time engaged views - Customizable dashboard - Live subscriber count

Found: September 29, 2025 ID: 1614
Previous Page 73 of 154 Next