🛠️ All DevTools

Showing 3161–3180 of 6288 tools

Last Updated
July 25, 2026 at 04:38 PM

Rmusic

Product Hunt

[Other] Play local & online music on desktop with Vue.js & Rust Rmusic is a modern, fast desktop music player for Windows, macOS, and Linux. Built with Tauri 2, Rust, and Vue 3, it offers local audio playback (MP3, WAV, OGG, FLAC) and online streaming via KuGou/NetEase APIs. Features include lyrics, immersive mode, dark/light themes, keyboard shortcuts, and minimal resource usage. Open-source and free!

Found: January 26, 2026 ID: 3127

Buildfast

Product Hunt

[Other] The NextJS boilerplate that all you need to reach 1K+ MRR Hey Builders 👏 From the last 1 year, I’ve been building and shipping products, and every time I had to repeat the same boring tasks. Setting up the database, auth, payments, SEO, emails, analytics. All of this took more time than actually building the product. So I built BuildFast, a production-ready Next.js boilerplate with auth, payments, database, emails, UI, SEO, and analytics already set up. It’s built to help you ship faster and make your first dollar online. Thankyou

Found: January 26, 2026 ID: 3128

[Other] Real-time authentication session tracking for Node.js apps Secure Session Tracker is an event-driven Node.js library for monitoring authentication sessions in real time. It works with any auth system and lets developers track logins, logouts, password changes, role updates, and suspicious activity through clean events. Built with TypeScript, zero dependencies, and full async support — making session security observable, extensible, and easy to manage.

Found: January 26, 2026 ID: 3129

[Other] Show HN: Deploy backends without the hassle. An Open source alternative

Found: January 26, 2026 ID: 3124

[Other] Show HN: A small programming language where everything is a value This is a hobby project of mine that I started a few years ago to learn about programming language implementation. It was created 95% without AI, although a few recent commits include code from Gemini CLI.<p>I started out following Crafting Interpreters, but gradually branched off that until I had almost nothing left in common.<p>Tech stack: Rust, Cranelift (JIT compilation), LALRPOP (parser).

Found: January 25, 2026 ID: 3117

[CLI Tool] Show HN: Bucket – Encrypted file sharing for people who live in the terminal I built this because I am perpetually drowning in file transfer hell.<p>As a systems engineer, I am constantly moving massive files. Whether it&#x27;s getting new releases of custom ISOs to clients, downloading entire filesystems to spin up clones, or uploading massive support packages to L3.<p>I always have to get something to somebody. Usually, it&#x27;s something large that lives on a headless server. I can&#x27;t tell you how many times I&#x27;ve modified my &#x27;clone&#x27; script to tar most of a filesystem over ssh (&quot;hello --exclude, my old friend...&quot;) just to get 10GB that someone will need for two days.<p>Tedious is an understatement.<p>And the truth is, whatever I am sending, it is ephemeral. I download it, I upload it, I delete it. They download it only to delete soon after.<p>I kept wondering - why isn&#x27;t there a simpler tool that works where I spend 90% of my time -- the terminal? I wanted something that I could install quickly on whatever server I was currently connected to, and run a simple command to push to the cloud.<p>Enter Bucket – a secure, encrypted file sharing platform that works the way I do. I upload from the CLI, share with a link and unique secret, done. No browser required (unless you want it). The people you&#x27;re sharing with can simply click the link you share to download, no need for them to make an account (unless they want it).<p>What makes it different:<p>- CLI-first: Built for terminal workflows first, web UI second<p>- Encryption: End-to-end AES-256 encryption. We never see your files or your secrets. The secret generated during a push is required for the pull, keeping your data private even from us. If you lose the secret, you can&#x27;t access the file.<p>- Simple scalability: Free tier for trying it out, plans up to 250GB for serious use, enterprise coming soon.<p>- File retention: Bucket is designed for ephemeral storage. Upload things that people need <i>now</i>. Free tier keeps files for 3 days (email notifications are sent to you before they are deleted, in case you need to upload again)<p>Colleagues I have introduced this to tell me they use it every day. I know that I do.<p>Free tier gives you 3 GB to try it out - enough for most one-off transfers.<p>Here&#x27;s the workflow:<p><pre><code> $ bucket push api.bin Verifying upload... Upload complete! bID: bkdf1e848ea23e bURL: api.bucketlabs.org&#x2F;d&#x2F;bkdf1e848ea23e Secret: 9b1e15167403a88cadb7d0f4d2890856 Expires: 2026-01-28T03:15:18.277988Z </code></pre> Now you have a link for your browser-dwellers to simply click, paste the Secret and download. (go ahead, try on the link above to download the readme.md)<p>... but if the person you&#x27;re sharing with has bucket installed they simply run:<p><pre><code> $ bucket pull bkdf1e848ea23e Enter secret: ⠇ Downloading... Downloaded: api.bin </code></pre> Check your file:<p><pre><code> $ bucket list ID Filename Size Expires ---------------------------------------------------------------------- bkdf1e848ea23e api.bin 204.2 MB 2026-01-28T03:15:18.277988Z $ bucket account Account Info ------------ Subscription: free Used: 204.2 MB Quota: 3.00 GB To increase storage limits, visit: https:&#x2F;&#x2F;bucketlabs.org&#x2F;auth </code></pre> Everyone you needed to pull have the file? Go ahead and delete:<p><pre><code> $ bucket del bkdf1e848ea23e Deleted: bkdf1e848ea23e </code></pre> Built in Go. Single static binary, works anywhere. Download at bucketlabs.org

Found: January 25, 2026 ID: 3118

[DevOps] Show HN: Netfence – Like Envoy for eBPF Filters To power the firewalling for our agents so that they couldn&#x27;t contact arbitrary services, I build netfence. It&#x27;s like Envoy but for eBPF filters.<p>It allows you to define different DNS-based rules that are resolved in a local daemon to IPs, then pushed to the eBPF filter to allow traffic. By doing it this way, we can still allow DNS-defined rules, but prevent contacting random IPs.<p>There&#x27;s also no network performance penalty, since it&#x27;s just DNS lookups and eBPF filters referencing memory.<p>It also means you don&#x27;t have to tamper with the base image, which the agent could potentially manipulate to remove rules (unless you prevent root maybe).<p>It automatically manages the lifecycle of eBPF filters on cgroups and interfaces, so it works well for both containers and micro VMs (like Firecracker).<p>You implement a control plane, just like Envoy xDS, which you can manage the rules of each cgroup&#x2F;interface. You can even manage DNS through the control plane to dynamically resolve records (which is helpful as a normal DNS server doesn&#x27;t know which interface&#x2F;cgroup a request might be coming from).<p>We specifically use this to allow our agents to only contact S3, pip, apt, and npm.

Found: January 25, 2026 ID: 3113

[Other] Xmake: A cross-platform build utility based on Lua

Found: January 25, 2026 ID: 3153

[Other] Show HN: Sightline – Shodan-style search for real-world infra using OSM Data Hi HN,<p>I built *Sightline*, a Shodan-style search engine for *physical-world infrastructure*.<p>Shodan makes it easy to explore exposed internet services. Sightline applies the same idea to the real world, using OpenStreetMap as the data source.<p>You can search things like:<p>* “telecom towers in karnataka” * “power plants near mumbai” * “data centers in paris france”<p>or use structured queries:<p>* `type:telecom operator:airtel region:karnataka` * `type:data_center operator:google`<p>Sightline:<p>* uses Overpass API for querying OSM features * uses Nominatim for resolving countries, regions, and cities * avoids hardcoded geography * uses deterministic, rule-based parsing (no AI inference)<p>Repo: <a href="https:&#x2F;&#x2F;github.com&#x2F;ni5arga&#x2F;sightline" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;ni5arga&#x2F;sightline</a> Try it out: <a href="https:&#x2F;&#x2F;sightline-maps.vercel.app" rel="nofollow">https:&#x2F;&#x2F;sightline-maps.vercel.app</a>

Found: January 25, 2026 ID: 3111

Hostim.dev

Product Hunt

[DevOps] Simple Docker hosting with managed databases. Run Docker apps with managed MySQL, Postgres, Redis and storage. Deploy from Docker or Git (Compose supported). EU bare-metal, HTTPS, metrics. From €2.50/mo.

Found: January 25, 2026 ID: 3112

MiniMate

Product Hunt

[Other] Open-source AI search agent inspired by Genspark Minimate brings Genspark-style agentic search to developers. Our AI agent autonomously plans searches, crawls web content, and synthesizes comprehensive answers. open-source, self-hostable, and free. Built with Claude, Playwright & Python.

Found: January 25, 2026 ID: 3115

[Other] a stateless, pure TypeScript search engine for Quranic text. Quran Search Engine is a stateless, pure TypeScript search engine designed for Quranic text. It offers advanced features such as Arabic normalization, exact text search, lemma and root matching through morphology and word maps, and UI-agnostic highlight ranges. Unlike many Quran search solutions, this engine is not tightly coupled to a UI, is fully client-side or server-side, and is both stateless and deterministic. It is TypeScript-first and strongly typed.

Found: January 25, 2026 ID: 3116

Forums

Product Hunt

[Other] AI-powered Q&A for GitHub repositories. Ask questions about any repo and AI agents will clone, explore, and grep the source code to provide source-backed answers.

Found: January 25, 2026 ID: 3119

[CLI Tool] Show HN: VM-curator – a TUI alternative to libvirt and virt-manager I&#x27;ve long wanted to harness QEMU&#x2F;KVM for my desktop virtual machines, but I&#x27;m befuddled by virt-manager&#x27;s lack of support for working NVIDIA 3D acceleration, dogmatic embrace of ugly XML, and the puzzling UI decision of having to click what seems like 15 buttons to attach an ISO to a VM image. When I further learned that NVIDIA&#x27;s broken 3D acceleration is the fault of libvirt as opposed to QEMU&#x27;s virtio driver, I had an idea...<p>Behold, vm-curator! A fast and friendly VM management TUI written in Rust. You can create, configure, organize, and manage VMs directly with QEMU. No libvert. No XML. No wonky UI&#x27;s. Just the right level of friendliness, customization, and speed to be really really useful.<p>The best part? 3D para-virtualization works with NVIDIA cards (via virtio-vga-gl!) No jumping through hoops to get GPU passthrough working!<p>(Disclaimer: This works great with other guest Linux VMs, but is not suitable for Windows gaming. If you want to game on Windows within a VM, passthrough is a must. vm-curator will have fast and friendly support soon.)<p>Looking for contributors (especially to help with the ascii art,) and donations are welcome. (Claude was a big help, but this was not a vibe-coded affair. We pair-programmed approx. 10,000 lines of code here. It was a great way to learn Rust, actually!)

Found: January 25, 2026 ID: 3109

[Other] Building a High-Performance Rotating Bloom Filter in Java

Found: January 25, 2026 ID: 3158

[Other] Show HN: C From Scratch – Learn safety-critical C with prove-first methodology Seven modules teaching C the way safety-critical systems are actually built: MATH → STRUCT → CODE → TEST.<p>Each module answers one question: Does it exist? (Pulse), Is it normal? (Baseline), Is it regular? (Timing), Is it trending? (Drift), Which sensor to trust? (Consensus), How to handle overflow? (Pressure), What do we do about it? (Mode).<p>Every module is closed (no dependencies), total (handles all inputs), deterministic, and O(1). 83 tests passing.<p>Built this after 30 years in UNIX systems. Wanted something that teaches the rigour behind certified systems without requiring a decade of on-the-job learning first.<p>MIT licensed. Feedback welcome.

Found: January 25, 2026 ID: 3108

[Other] Show HN: JSciPy – SciPy-inspired signal processing library for Java and Android jSciPy is an open-source Java signal processing and scientific computing library inspired by SciPy.<p>It focuses on FFT, filters, PSD, STFT, DCT and Android compatibility, aiming to fill the gap for DSP-heavy workloads on JVM and Android.

Found: January 24, 2026 ID: 3105

I Like GitLab

Hacker News (score: 94)

[Other] I Like GitLab

Found: January 24, 2026 ID: 3101

[Other] Show HN: I built a space travel calculator using Vanilla JavaScript I built this because measuring my age in years felt boring—I wanted to see the kilometers.<p>The first version only used Earth&#x27;s orbital speed (~30km&#x2F;s), but the number moved too slowly. To get the &quot;existential dread&quot; feeling, I switched to using the Milky Way&#x27;s velocity relative to the CMB (~600km&#x2F;s). The math takes some liberties (using scalar sum instead of vector) to make the speed feel &quot;fast,&quot; but it gets the point across.<p>Under the hood, it&#x27;s a single HTML file with zero dependencies. No React, no build step. The main challenge was the canvas starfield—I had to pre-allocate the star objects to stop the garbage collector from causing stutters on mobile.<p>Let me know if the physics makes you angry or if the stars run smooth on your device.

Found: January 24, 2026 ID: 3102

[Other] One-click MCP config conversion across AI editors MCP Config Converter lets you paste an MCP config once and instantly convert it into the correct format for your target AI editor — no manual edits, no guessing, no copy-paste mistakes. Whether you’re switching between Cursor, Claude Code, or Gemini CLI, MCP Config Converter automatically detects the source format and converts it with a single click. Built for developers who live inside AI editors and want their tools to just work everywhere.

Found: January 24, 2026 ID: 3103
Previous Page 159 of 315 Next