🛠️ All DevTools
Showing 2121–2140 of 4362 tools
Last Updated
April 27, 2026 at 04:00 PM
Futuristic React Landing Page Template
Product Hunt[Other] 🚀 A Futuristic React + Tailwind Landing Page Template Hey developers! 👋 I just finished building Orbitpay, a futuristic landing page template built with React + Tailwind CSS. It’s clean, responsive, and designed for modern SaaS or digital product landing pages. ⚡ Features: 🚀 Futuristic UI with smooth AOS animations 💎 Semi-glassmorphism style for a sleek, modern feel 📱 Fully responsive across all devices ⚙️ Built using React + Tailwind CSS 🧩 Easy to customize and extend
Hire Developers
Product Hunt[Other] #HireDevelopers Hire Developers matches companies with rigorously vetted engineers worldwide, from cost-effective Asian talent and time zone-friendly LatAm teams to on-site professionals in the US and Europe. They handle vetting, compliance, payroll, and offer flexible engagements from single contractors to full teams, with fast shortlists and dedicated support.
Leeflytic
Product Hunt[Code Quality] AI Powered Developer Intelligence Platform Analyze your codebase with AI-powered insights. LeefLytic helps developers, freelancers, and engineering teams instantly understand their code quality, complexity, vulnerabilities, and dependency issues. You can connect your projects from GitHub, GitLab, or Bitbucket and get detailed AI-driven analysis in seconds. With our Ask AI feature, you can get instant AI-generated fixes for identified problems.Export and share insightful reports that build confidence in your code.
VectorCare Smart on FHIR for EPIC
Product Hunt[API/SDK] Patient Logistics inside the EHR. VectorCare’s SMART on FHIR App for Epic brings all post-acute coordination directly into Epic. Care teams can now schedule, message, and track services like DME, transportation, and home health — without ever leaving the patient chart. It’s built on FHIR standards, meaning it integrates securely, scales easily, and works across the healthcare ecosystem.
Conciliate
Product Hunt[Other] Unified context for smarter AI decisions. Keep AI assistants synchronized across logically linked projects. Automatically extracts API specs, detects changes, and streams context to your IDE. Share context between different IDE sessions.
AztecPay
Product Hunt[Other] Lower transaction fees with Arbitrum-powered payments What We Do: We're building a payment gateway that bridges the gap between Web2 and Web3, powered by Arbitrum blockchain technology. The Problem We Solve: Traditional payment processors charge 2-3%+ per transaction. For small businesses operating on tight margins, these fees add up quickly. By utilizing blockchain technology, we're cutting these costs dramatically without requiring businesses or customers to understand crypto.
CLI to manage your SQL database schemas and migrations
Hacker News (score: 12)[Database] CLI to manage your SQL database schemas and migrations
Writing an Asciidoc Parser in Rust: Asciidocr
Hacker News (score: 19)[Other] Writing an Asciidoc Parser in Rust: Asciidocr
Show HN: Duper – The Format That's Super
Hacker News (score: 13)[Code Quality] Show HN: Duper – The Format That's Super An MIT-licensed human-friendly extension of JSON with quality-of-life improvements (comments, trailing commas, unquoted keys), extra types (tuples, bytes, raw strings), and semantic identifiers (think type annotations).<p>Built in Rust, with bindings for Python and WebAssembly, as well as syntax highlighting in VSCode. I made it for those like me who hand-edit JSONs and want a breath of fresh air.<p>It's at a good enough point that I felt like sharing it, but there's still plenty I wanna work on! Namely, I want to add (real) Node support, make a proper LSP with auto-formatting, and get it out there before I start thinking about stabilization.
Show HN: KeyLeak Detector – Scan websites for exposed API keys and secrets
Hacker News (score: 15)[Testing] Show HN: KeyLeak Detector – Scan websites for exposed API keys and secrets I built this after seeing multiple teams accidentally ship API keys in their frontend code.<p>The problem: Modern web development moves fast. You're vibe-coding, shipping features, and suddenly your AWS keys are sitting in a <script> tag visible to anyone who opens DevTools. I've personally witnessed this happen to at least 3-4 production apps in the past year alone.<p>KeyLeak Detector runs through your site (headless browser + network interception) and checks for 50+ types of leaked secrets: AWS/Google keys, Stripe tokens, database connection strings, LLM API keys (OpenAI, Claude, etc.), JWT tokens, and more.<p>It's not perfect, there are false positives but it's caught real issues in my own projects. Think of it as a quick sanity check before you ship.<p>Use case: Run it on staging before deploying, or audit your existing sites. Takes ~30 seconds per page.<p>MIT licensed, for authorized testing only.<p><a href="https://github.com/Amal-David/keyleak-detector" rel="nofollow">https://github.com/Amal-David/keyleak-detector</a>
[Other] Show HN: Micro-RLE ≤264-byte compression for UART/MCU logs, zero RAM growth I needed to stuff twice the telemetry through the same 115 kbaud line on a Cortex-M0+ that only had 8 kB flash left.<p>Micro-RLE is the smallest drop-in I could come up with: 264 B of Thumb code, 36 B of state, no malloc, worst-case 14 cycles/byte and still lossless for every 8-bit pattern.<p>On the usual sensor streams (ADC, IMU, GPS) it’s 33-70 % smaller than raw output and boots in < 600 µs, so you can fire-and-forget from main() before the PLL even locks.<p>Repo is a single .c file and a 3-function API—replace the weak emit() hook with your UART / DMA / ring-buffer and you’re done.<p>Size proof: arm-none-eabi-size micro_rle.o text data bss 264 0 36<p>MIT licensed, link in the repo. Happy to hear where else this fits!
Show HN: UnisonDB – Log-native KV database that replicates like a message bus
Show HN (score: 10)[Database] Show HN: UnisonDB – Log-native KV database that replicates like a message bus Hi HN,<p>For the past few months, I’ve been building UnisonDB — a log-native database where the Write-Ahead Log (WAL) is the database, not just a recovery mechanism.<p>I started this because every time I needed data to flow — from core to edge, or between datacenters — I ended up gluing together a KV database + CDC + Kafka.<p>It worked, but it always felt like overkill: too many moving parts for even small workloads, and too little determinism.<p>What is it?<p>UnisonDB unifies storage and streaming into a single log-based core. Every write is: • Durable (appended to the WAL), • Ordered (globally sequenced for safety), • Streamable (available to any follower in real time).<p>It combines B+Tree storage (predictable reads, no LSM compaction storms) with WAL-based replication (sub-second fan-out to 100+ nodes).<p>Key Ideas<p>1. Storage + Streaming = One System — no CDC, no Kafka, no sidecar pipelines<p>2. B+Tree-Backed — predictable reads, zero compaction overhead<p>3. Multi-Model — KV, wide-column, and large objects (LOB) in one atomic transaction<p>4. Replication-Native — WAL streams via gRPC; followers tail in real time<p>5. Reactive by Design — every write emits a ZeroMQ notification<p>6. Edge-Friendly — replicas can go offline and resync instantly<p>Performance & Tradeoffs 1. Write throughput is lower than pure LSM stores (e.g. BadgerDB) — because writes are globally ordered for replication safety. Deliberate tradeoff: consistency > raw write speed.<p>2. Still ~2× faster than BoltDB with replication enabled.<p>Tech Details<p>Written in Go<p>FlatBuffers for zero-copy serialization<p>gRPC for streaming replication<p>GitHub: <a href="https://github.com/ankur-anand/unisondb" rel="nofollow">https://github.com/ankur-anand/unisondb</a>
Claude Code Can Debug Low-Level Cryptography
Hacker News (score: 155)[Other] Claude Code Can Debug Low-Level Cryptography
WebAssembly (WASM) arch support for the Linux kernel
Hacker News (score: 96)[Other] WebAssembly (WASM) arch support for the Linux kernel Demos at: <a href="https://joelseverin.github.io/linux-wasm/" rel="nofollow">https://joelseverin.github.io/linux-wasm/</a>
github/copilot-cli
GitHub Trending[CLI Tool] GitHub Copilot CLI brings the power of Copilot coding agent directly to your terminal.
IntelBee - Uncover the Web's DNA
Product Hunt[Other] Find the technology behind any website Intelbee gives you the power to explore any website’s tech stack, track market trends in real time, and generate leads effortlessly. Turn web intelligence into actionable insights and grow smarter, faster, and ahead of the competition.
Phish Def
Product Hunt[API/SDK] Phishdef — phishing url api to detect malicious links PhishDef is a cybersecurity-focused SaaS company offering a fast and reliable API for real-time phishing URL detection. Designed for developers, security teams, and digital platforms, our service helps prevent phishing threats before they reach end users. We prioritize speed, accuracy, and privacy — with sub-100ms response time and no tracking or data logging.
codetomap
Product Hunt[Other] CodeToMap (https://codetomapsakura.streamlit.app/) Website Introduction: CodeToMap by Sakura Overview CodeToMap (https://codetomapsakura.streamlit.app/) is a dynamic and innovative web platform developed by Sakura, designed to transform code-based data into interactive and visually engaging maps. Built using the Streamlit framework, this site merges the simplicity of Python programming with the power of modern geographic visualization tools, offering users an intuitive and efficient way to convert structured data into geographical insights.
DevBoost AI — 100 Proven Prompts
Product Hunt[Other] 100 AI prompts that actually make you a better developer. If you’re a developer, freelancer, or student who wants to boost productivity, this collection is for you. I’ve compiled 100 developer-optimized AI prompts, organized across backend, frontend, DevOps, testing, automation, AI integration, and more. Each prompt is practical, ready to use, and built to help you write cleaner code, automate workflows, and save time every day. Get instant access here → https://hamzaflare013.gumroad.com/l/100-promptpack,
AnnamPOS
Product Hunt[Other] Annam POS is your complete restaurant management solution AnnamPOS Powerful Point of Sale. Based on over 15 years of development experience, our product is implemented throughout the UAE, Oman, Saudi Arabia, Kenya and Sri Lanka. We are experts in the latest technology tools like Android Studio, Swift, Flutter, Laravel, Angular, React, Python, and Java to deliver high-quality POS, ERP, Android, and iOS apps. We aren’t just software developers, we also have hardware solutions, which in turn gives our clients a total end to end service.