🛠️ All DevTools
Showing 1561–1580 of 4338 tools
Last Updated
April 26, 2026 at 12:01 AM
Langjam-Gamejam Devlog: Making a language, compiler, VM and 5 games in 52 hours
Hacker News (score: 12)[Other] Langjam-Gamejam Devlog: Making a language, compiler, VM and 5 games in 52 hours
Using Vectorize to build an unreasonably good search engine in 160 lines of code
Hacker News (score: 21)[Other] Using Vectorize to build an unreasonably good search engine in 160 lines of code
Show HN: HN Sentiment API – I ranked tech CEOs by how much you hate them
Hacker News (score: 11)[API/SDK] Show HN: HN Sentiment API – I ranked tech CEOs by how much you hate them I built an API that extracts entities from Hacker News comments and classifies sentiment towards them as positive, negative, or neutral. It also classifies overall comment sentiment and assigns each entity a label (person, location, date, technology, organization, other).<p>505k+ comments, Oct 31 - Present.<p>Here's the leaderboard:<p>LOVED:<p>- Steve Jobs: 44% positive, 7% negative<p>- Linus Torvalds: 43% positive, 5% negative<p>- Gabe Newell: 34% positive, 8% negative<p>MID:<p>- Bill Gates: 22% positive, 8% negative<p>- Tim Cook: 15% positive, 30% negative<p>- Bezos: 12% positive, 18% negative<p>HATED:<p>- Zuckerberg: 4% positive, 35% negative<p>- Sam Altman: 8% positive, 38% negative<p>- Musk: 5% positive, 45% negative<p>Try it yourself:<p># Who does HN talk about the most?<p>curl "<a href="https://api.hnpulse.com/entities?label=person&sort=mentions" rel="nofollow">https://api.hnpulse.com/entities?label=person&sort=mentions</a>"<p># What are people saying about remote work?<p>curl "<a href="https://api.hnpulse.com/comments?entity=remote" rel="nofollow">https://api.hnpulse.com/comments?entity=remote</a> work&limit=3"<p># Is OpenAI's reputation getting worse?<p>curl "<a href="https://api.hnpulse.com/trends?entity=openai&bucket=day" rel="nofollow">https://api.hnpulse.com/trends?entity=openai&bucket=day</a>"<p># What technology gets mentioned alongside SF?<p>curl "<a href="https://api.hnpulse.com/entities?co-occur=SF&label=technology&sort=mentions" rel="nofollow">https://api.hnpulse.com/entities?co-occur=SF&label=technolog...</a>"<p>Stack: Go, PostgreSQL, GPT-4o mini for entity extraction<p>Docs: <a href="https://docs.hnpulse.com" rel="nofollow">https://docs.hnpulse.com</a> API: <a href="https://api.hnpulse.com" rel="nofollow">https://api.hnpulse.com</a>
Show HN: RenderCV – Open-source CV/resume generator, YAML → PDF
Show HN (score: 9)[Other] Show HN: RenderCV – Open-source CV/resume generator, YAML → PDF I built RenderCV because Word kept breaking my layout and LaTeX was overkill. I wanted my CV as a single YAML file (content, design, margins, everything) that I could render with one command.<p>Run <i>rendercv render cv.yaml</i> → get a perfectly typeset PDF.<p>Highlights:<p>1. <i>Version-controllable:</i> Your CV is just text. Diff it, tag it.<p>2. <i>LLM-friendly:</i> Paste into ChatGPT, tailor to a job description, paste back, render. Batch-produce variants with terminal AI agents.<p>3. <i>Perfect typography:</i> Typst under the hood handles pixel-perfect alignment and spacing.<p>4. <i>Full design control:</i> Margins, fonts, colors, and more; tweak everything in YAML.<p>5. <i>Comes with JSON Schema:</i> Autocompletion and inline docs in your editor.<p>Battle-tested for 2+ years, thousands of users, 120k+ total PyPI downloads, 100% test coverage, actively maintained.<p>GitHub: <a href="https://github.com/rendercv/rendercv" rel="nofollow">https://github.com/rendercv/rendercv</a><p>Docs: <a href="https://docs.rendercv.com" rel="nofollow">https://docs.rendercv.com</a><p>Overview on RenderCV's software design (Pydantic + Jinja2 + Typst): <a href="https://docs.rendercv.com/developer_guide/understanding_rendercv/" rel="nofollow">https://docs.rendercv.com/developer_guide/understanding_rend...</a><p>I also wrote up the internals as an educational resource on maintaining Python projects (GitHub Actions, packaging, Docker, JSON Schema, deploying docs, etc.): <a href="https://docs.rendercv.com/developer_guide/" rel="nofollow">https://docs.rendercv.com/developer_guide/</a>
Show HN: Mushak – Zero config zero downtime Docker/Compose to server deployment
Hacker News (score: 16)[Build/Deploy] Show HN: Mushak – Zero config zero downtime Docker/Compose to server deployment
pollen-robotics/reachy_mini
GitHub Trending[API/SDK] Reachy Mini's SDK
GetProfile
Product Hunt[Other] User profiles and long-term memory for your AI agents Self-hosted and open-source user profiles and long-term memory for your AI agents. Unlike generic memory solutions that store blobs of text, GetProfile extracts natural language summary, typed traits with confidence scores and relevant memories with importance levels into a structured user profiles stored in your own PostgreSQL database.
fp-filters (JavaScript / TypeScript)
Product Hunt[Other] A curated list of JS/TS ready-to-use array filters A curated list of ready-to-use (functional programming) array filter functions in JavaScript and TypeScript (TS / ESM / CJS). fp-filters allows you to stop rewriting the same code over and over again and greatly improves readability. So that you will probably never write another filter function 🚀! fp-filters functions are designed API-first and leveraging high-order predicates are super easy to use and to combine.
DepPulse
Product Hunt[IDE/Editor] Real-time dependency health monitoring for vs code Monitor dependency health, detect vulnerabilities, track outdated packages, and ensure license compliance directly in VS Code. Free, open-source, and works offline.
GitHub Pull Request Notifier
Product Hunt[IDE/Editor] Extension that notifies you when PRs need your attention GitHub notifications don't work for busy developers. This extension puts review requests and your open PRs in your browser toolbar where you'll actually see them. Badge shows review count | PR count. Completed reviews auto-remove. 100% open source. Setup takes 60 seconds. Perfect if you're juggling multiple repos and tired of missing review requests or losing track of your PRs.
I wrote a code editor in C and now I'm a changed man
Hacker News (score: 29)[Other] I wrote a code editor in C and now I'm a changed man
Comptime – C# meta-programming with compile-time code generation and evaluation
Hacker News (score: 23)[Other] Comptime – C# meta-programming with compile-time code generation and evaluation
Show HN: Cerberus – Real-time network monitor with eBPF
Show HN (score: 6)[Monitoring/Observability] Show HN: Cerberus – Real-time network monitor with eBPF Hi HN! I'm Mo, a platform engineer at Deltaflare working on critical infrastructure protection.<p>I built Cerberus because traditional packet capture tools (tcpdump, Wireshark) have too much overhead for production CNI environments. eBPF lets us filter and classify packets at the kernel level with near-zero performance impact.<p>Some interesting challenges: - eBPF verifier is <i>strict</i> - every memory access needs bounds checking - Limited to 32 bytes of L7 payload (tradeoff between inspection depth and overhead) - TC vs XDP decision (chose TC for compatibility)<p>Looking for contributors, especially on: - Redis backend for distributed deployments - Prometheus metrics export - Anomaly detection<p>Happy to answer questions!
GreyDGL/PentestGPT
GitHub Trending[Other] A GPT-empowered penetration testing tool
[Database] Show HN: Dbzero – Code as if you have infinite RAM (Python persistence engine)
hex2tailwind
Product Hunt[Other] Convert hex to tailwind v4 colors Convert any hex color to the closest Tailwind CSS class using the CIEDE2000 (ΔE00) perceptual color difference algorithm. Supports the Tailwind v4 OKLCH palette. Free and unlimited.
Code Eye
Product Hunt[Other] Next Js and Prisma Visulizer Code Eye is a personal tool that visualizes large Next.js codebases to make architecture easy to understand. It maps routes, file dependencies, and reverse dependencies, and generates clear ER diagrams if your Next.js project uses Prisma. It works with local projects and GitHub repositories. Useful for: onboarding into large codebases, safe refactoring, impact analysis, debugging, and understanding complex system architecture at a glance.
Build Your Own React
Hacker News (score: 81)[Other] Build Your Own React
Show HN: Netrinos – A keep it simple Mesh VPN for small teams
Hacker News (score: 77)[DevOps] Show HN: Netrinos – A keep it simple Mesh VPN for small teams I'm the founder at Netrinos. I built a WireGuard-based mesh VPN because remote access has always been a pain. After years of SSH tunnels, IPsec headaches, and the ssh log horror movie, I wanted something simpler: install, sign in, get work done.<p>Netrinos creates a LAN-like overlay network across your devices. Connections are direct P2P via WireGuard, with no central server routing traffic. Each device gets a stable IP and DNS name (pc.you.netrinos.com). When direct connections fail, they fall back to a relay server that's still encrypted end-to-end. We can't see your traffic.<p>The most challenging problem to solve was NAT traversal. UDP hole punching works most of the time. The rest is a cocktail of symmetric NAT, CGNAT, and serial NATs. We use STUN-style discovery and relay fallback for the edge cases. I was surprised by how unreliable low-end ISP routers really are, and how much technical wizardry it takes to hide that behind a clean, simple UX.<p>Our stack is a Go backend for client and server, WireGuard kernel mode for Linux and Windows (macOS is userspace), Wails.io for cross-platform UI. WireGuard does all the heavy lifting. Go ties it all together.<p>Popular use cases include: RDP to home PCs, accessing NAS without exposing it, and SSH into headless Linux boxes. One customer manages hundreds of IoT devices in the field, eliminating the need to deal with customer routers.<p>We just released Pro with multi-user, access control, and remote gateway routing. Personal is free (up to 100 devices).<p>I'd love to hear what you expect from a simple mesh VPN, what's missing from current tools, and what's lacking from your remote access setup. Use code HNPRO26 for a 30-day trial of Pro.<p><a href="https://netrinos.com" rel="nofollow">https://netrinos.com</a>
google/adk-js
GitHub Trending[API/SDK] An open-source, code-first Typescript toolkit for building, evaluating, and deploying sophisticated AI agents with flexibility and control.