๐Ÿ› ๏ธ All DevTools

Showing 2541–2560 of 4412 tools

Last Updated
April 30, 2026 at 12:00 PM

nitrojs/nitro

GitHub Trending

[DevOps] Next Generation Server Toolkit. Create web servers with everything you need and deploy them wherever you prefer.

Found: October 13, 2025 ID: 1864

Traycer AI

Product Hunt

[Other] Plan-first AI coding for real codebases Traycer helps devs plan-first, code-faster with specโ€‘driven development. It breaks down high-level intents into structured plans, hands off to your favorite AI agent, then verifies changes so your large codebase stays solid.

Found: October 13, 2025 ID: 1861

Replyke

Product Hunt

[API/SDK] API & components for comments, feeds, notifications & more Re-launching as fully open-source under Apache 2.0, with an improved state-management architecture, and new components, such as Threaded Comments - advanced comment section featuring Reddit-style threaded discussions. Quality, speed & built-in moderation.

Found: October 13, 2025 ID: 1862

Block Editor

Product Hunt

[IDE/Editor] Visual Page Builder with real code Build and design websites visually โ€” create blocks, drag components, and assemble full pages in seconds. Export clean React/JSX code or deploy instantly right from the editor. Powered by MistUI โ€” fast, flexible, and developer-friendly.

Found: October 13, 2025 ID: 1863

NextBoiler

Product Hunt

[Other] Personalized Next.js boilerplate in 1 min Generate your next.js boilerplate in 1 min - Describe it - Pick the pages to include (our AI will generate the skeleton for you) - Choose your integrations (payments, database, auth, emails) BOOM! Your Next.js boilerplate is ready for download

Found: October 13, 2025 ID: 1865

[Other] A native desktop client for your SaaS (Public Preview) Deskofy is a CLI-powered framework and toolkit that transforms your SaaS into a native desktop app. From build to release, it handles Electron setup, system integrations, and packaging.

Found: October 13, 2025 ID: 1868

GenZai

Product Hunt

[Other] Prompt To Product GenZai is the ultimate AI-powered development platform for Gen Z developers. Transform your ideas into production-ready websites with just a prompt. Experience vibe coding with instant code generation, live preview, and one-click deployment.

Found: October 13, 2025 ID: 1869

StoreConfig

Product Hunt

[CLI Tool] Manage App Store Connect the Smart, Automated Way A powerful CLI tool for managing apps on App Store Connect. Manage in-app purchases, subscriptions, pricing, and more with JSON-based configuration. Transform hours of manual work into minutes of automation.

Found: October 13, 2025 ID: 1870

[Other] From idea to architecture โ€” powered by AI. ArchtSoft is an AI-powered platform that helps you generate, visualize, and optimize software architecture. Describe your system, and it creates best-practice designs, suggests tech stacks, and estimates cloud costs โ€” all in minutes.

Found: October 13, 2025 ID: 1873

[Other] Show HN: Run PyTorch locally with a remote GPU backend I integrated a remote GPU execution backend into PyTorch through the same system that custom hardware accelerators get integrated into PyTorch. You can create a remote machine and obtain its CUDA device whenever you want to create or move tensors onto the remote GPU.<p><pre><code> machine = mycelya_torch.RemoteMachine(&quot;modal&quot;, &quot;A100&quot;) cuda_device = machine.device(&quot;cuda&quot;) x = torch.randn(1000, 1000, device=cuda_device) y = torch.randn(1000, 1000).to(cuda_device) </code></pre> I made it reasonably performant by having most operations dispatch asynchronously whenever possible. For cases where slow performance is unavoidable such as uploading many GB of weights onto the GPU, I added a decorator that can be applied to functions to turn it into a remotely executed function. For the most part, the function should behave the same with or without the decorator; the main difference is whether the function code is executed locally or remotely.<p><pre><code> import mycelya_torch from transformers import AutoModelForCausalLM, AutoTokenizer @mycelya_torch.remote def load_model(model_name: str): tokenizer = AutoTokenizer.from_pretrained(model_name) model = AutoModelForCausalLM.from_pretrained( model_name, torch_dtype=&quot;auto&quot;, device_map=&quot;auto&quot; ) return model, tokenizer </code></pre> You can only use it with Modal as the cloud provider right now, and it&#x27;s free to use with their free monthly credits. I appreciate any feedback and bug reports :)

Found: October 12, 2025 ID: 1867

[Other] Show HN: Hyprvoice โ€“ Voice-Powered Typing for Wayland/Hyprland (No X11 Hacks) I built Hyprvoice, a small tool that lets you type with your voice on Wayland โ€” no X11, no kludgy bridges. Press a key, talk, and your words appear wherever your cursor is.<p>Itโ€™s written in Go, uses PipeWire for audio, and talks directly to the compositor. The workflow is simple:<p>press key โ†’ start recording<p>press again โ†’ stop and inject text<p>Notifications show recording&#x2F;transcribing states, and it works with multiple backends โ€” currently OpenAI Whisper, with whisper.cpp (local&#x2F;offline) in progress.<p>Everything runs through a lightweight daemon with IPC over a unix socket. Text injection uses wl-clipboard + wtype with clipboard restore fallback.<p>Install (Arch&#x2F;AUR):<p>yay -S hyprvoice-bin systemctl --user enable --now hyprvoice.service<p>Then add something like this to Hyprland:<p>bind = SUPER, R, exec, hyprvoice toggle<p>Repo: <a href="https:&#x2F;&#x2F;github.com&#x2F;leonardotrapani&#x2F;hyprvoice" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;leonardotrapani&#x2F;hyprvoice</a><p>Itโ€™s beta but fully usable. Iโ€™d love feedback, especially from people running Wayland full-time or maintaining compositors.

Found: October 12, 2025 ID: 1856

[Other] Show HN: AI toy I worked on is in stores Alt link: <a href="https:&#x2F;&#x2F;mrchristmas.com&#x2F;products&#x2F;santas-magical-telephone" rel="nofollow">https:&#x2F;&#x2F;mrchristmas.com&#x2F;products&#x2F;santas-magical-telephone</a><p>Video demo: <a href="https:&#x2F;&#x2F;www.youtube.com&#x2F;watch?v=0z7QJxZWFQg" rel="nofollow">https:&#x2F;&#x2F;www.youtube.com&#x2F;watch?v=0z7QJxZWFQg</a><p>The first time I talked with AI santa and it responded with a joke I was HOOKED. The fun&#x2F;nonsense doesn&#x27;t click until you try it yourself. What&#x27;s even more exciting is you can build it yourself:<p>libpeer: <a href="https:&#x2F;&#x2F;github.com&#x2F;sepfy&#x2F;libpeer" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;sepfy&#x2F;libpeer</a><p>pion: <a href="https:&#x2F;&#x2F;github.com&#x2F;pion&#x2F;webrtc" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;pion&#x2F;webrtc</a><p>Then go do all your fun logic in your Pion server. Connect to any Voice AI provider, or roll your own via Open Source. Anything is possible.<p>If you have questions or hit any roadblocks I would love to help you. I have lots of hardware snippets on my GitHub: <a href="https:&#x2F;&#x2F;github.com&#x2F;sean-der" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;sean-der</a>.

Found: October 12, 2025 ID: 1877

huggingface/diffusers

GitHub Trending

[Other] ๐Ÿค— Diffusers: State-of-the-art diffusion models for image, video, and audio generation in PyTorch.

Found: October 12, 2025 ID: 1850

oven-sh/bun

GitHub Trending

[Build/Deploy] Incredibly fast JavaScript runtime, bundler, test runner, and package manager โ€“ all in one

Found: October 12, 2025 ID: 1849

[Other] Agentic AI Framework for Java Developers

Found: October 12, 2025 ID: 1848

daytonaio/daytona

GitHub Trending

[DevOps] Daytona is a Secure and Elastic Infrastructure for Running AI-Generated Code

Found: October 12, 2025 ID: 1847

PTTrak

Product Hunt

[Other] Personal trainer management platform PTTrak - The all-in-one platform for personal trainers. Manage clients, create custom workouts, track progress, and grow your fitness business with our comprehensive training management system.

Found: October 12, 2025 ID: 1842

Bee Web Dev

Product Hunt

[Other] Smart, simple, and fast tools for modern developers Bee Web Dev is a modern developer toolbox offering powerful online utilities for web designers, programmers, and IT professionals โ€” all in one place.

Found: October 12, 2025 ID: 1843

Toolsinfree

Product Hunt

[Other] Free, Unlimited, No login or Signup Tools in Free is your go-to destination for free online tools, offering a collection of 500+ utilities for text, images, developers, and more.

Found: October 12, 2025 ID: 1844

CurateClick

Product Hunt

[Other] Latest products Discover the latest and most popular developer tools and products. Browse through our curated collection of amazing resources.

Found: October 12, 2025 ID: 1845
Previous Page 128 of 221 Next