π οΈ All DevTools
Showing 1981–2000 of 4357 tools
Last Updated
April 27, 2026 at 08:00 AM
Programming PassionClass
Product Hunt[Other] Be a Backend Developer with Next.js & Relational Databases This course will teach you how to build scalable, server-side applications using Next.js and PostgreSQL, with a focus on SQL, APIs, and backend logic, a step in preparing you for a full-stack role. Programming and coding program that can be taken before or after the React frontend mini bootcamp.
Show HN: Real-time 4D Julia set navigation via gamepad
Show HN (score: 7)[Other] Show HN: Real-time 4D Julia set navigation via gamepad I've written Atlas, a GPU scripting language that eliminates the boilerplate of managing textures and uniforms. Here are some demos including 4D fractal exploration with gamepad controls. Press 7 to see the Julia set, and try reloading if you see rectangles/it glitches. Documentation: <a href="https://banditcat.github.io/Atlas/index.html" rel="nofollow">https://banditcat.github.io/Atlas/index.html</a> *requires approximately an RTX 3080.
Performance hacks for faster Python code
Hacker News (score: 74)[Other] Performance hacks for faster Python code
Show HN: Creavi Macropad β Built a wireless macropad with a display
Hacker News (score: 23)[Other] Show HN: Creavi Macropad β Built a wireless macropad with a display Hey HN,<p>We built a wireless, low-profile macropad with a display called the Creavi Macropad. It lasts at least 1 month on a single charge. We also put together a browser-based tool that lets you update macros in real time and even push OTA updates over BLE. Since we're software engineers by day, we had to figure out the hardware, mechanics, and industrial design as we went (and somehow make it all work together). This post covers the build process, and the final result.<p>Hope you enjoy!
Terminal Latency on Windows (2024)
Hacker News (score: 51)[Other] Terminal Latency on Windows (2024)
Show HN: Git Quick Stats β The Easiest Way to Analyze Any Git Repositor
Show HN (score: 5)[Other] Show HN: Git Quick Stats β The Easiest Way to Analyze Any Git Repositor
google/adk-web
GitHub Trending[Other] Agent Development Kit Web (adk web) is the built-in developer UI that is integrated with Agent Development Kit for easier agent development and debugging.
AtsushiSakai/PythonRobotics
GitHub Trending[Other] Python sample codes and textbook for robotics algorithms.
serverless-dns/serverless-dns
GitHub Trending[DevOps] The RethinkDNS resolver that deploys to Cloudflare Workers, Deno Deploy, Fastly, and Fly.io
Grebedoc β static site hosting for Git forges
Hacker News (score: 27)[Other] Grebedoc β static site hosting for Git forges
Show HN: Tusk Drift β Open-source tool for automating API tests
Hacker News (score: 16)[Testing] Show HN: Tusk Drift β Open-source tool for automating API tests Hey HN, I'm Marcel from Tusk. Weβre launching Tusk Drift, an open source tool that generates a full API test suite by recording and replaying live traffic.<p>How it works:<p>1. Records traces from live traffic (what gets captured)<p>2. Replays traces as API tests with mocked responses (how replay works)<p>3. Detects deviations between actual vs. expected output (what you get)<p>Unlike traditional mocking libraries, which require you to manually emulate how dependencies behave, Tusk Drift automatically records what these dependencies respond with based on actual user behavior and maintains recordings over time. The reason we built this is because of painful past experiences with brittle API test suites and regressions that would only be caught in prod.<p>Our SDK instruments your Node service, similar to OpenTelemetry. It captures all inbound requests and outbound calls like database queries, HTTP requests, and auth token generation. When Drift is triggered, it replays the inbound API call while intercepting outbound requests and serving them from recorded data. Driftβs tests are therefore idempotent, side-effect free, and fast (typically <100 ms per test). Think of it as a unit test but for your API.<p>Our Cloud platform does the following automatically:<p>- Updates the test suite of recorded traces to maintain freshness<p>- Matches relevant Drift tests to your PRβs changes when running tests in CI<p>- Surfaces unintended deviations, does root cause analysis, and suggests code fixes<p>Weβre excited to see this use case finally unlocked. The release of Claude Sonnet 4.5 and similar coding models have made it possible to go from failing test to root cause reliably. Also, the ability to do accurate test matching and deviation classification means running a tool like this in CI no longer contributes to poor DevEx (imagine the time otherwise spent reviewing test results).<p>Limitations:<p>- You can specify PII redaction rules but there is no default mode for this at the moment. I recommend first enabling Drift on dev/staging, adding transforms (<a href="https://docs.usetusk.ai/api-tests/pii-redaction/basic-concepts">https://docs.usetusk.ai/api-tests/pii-redaction/basic-concep...</a>), and monitoring for a week before enabling on prod.<p>- Expect a 1-2% throughput overhead. Transforms result in a 1.0% increase in tail latency when a small number of transforms are registered; its impact scales linearly with the number of transforms registered.<p>- Currently only supports Node backends. Python SDK is coming next.<p>- Instrumentation limited to the following packages (more to come): <a href="https://github.com/Use-Tusk/drift-node-sdk?tab=readme-ov-file#requirements" rel="nofollow">https://github.com/Use-Tusk/drift-node-sdk?tab=readme-ov-fil...</a><p>Let me know if you have questions or feedback.<p>Demo repo: <a href="https://github.com/Use-Tusk/drift-node-demo" rel="nofollow">https://github.com/Use-Tusk/drift-node-demo</a>
Show HN: Linnix β eBPF observability that predicts failures before they happen
Hacker News (score: 18)[Monitoring/Observability] Show HN: Linnix β eBPF observability that predicts failures before they happen I kept missing incidents until it was too late. By the time my monitoring alerted me, servers/nodes were already unrecoverable.<p>So I built Linnix. It watches your Linux systems at the kernel level using eBPF and tries to catch problems before they cascade into outages.<p>The idea is simple: instead of alerting you after your server runs out of memory, it notices when memory allocation patterns look weird and tells you "hey, this looks bad."<p>It uses a local LLM to spot patterns. Not trying to build AGI here - just pattern matching on process behavior. Turns out LLMs are actually pretty good at this.<p>Example: it flagged higher memory consumption over a short period and alerted me before it was too late. Turned out to be a memory leak that would've killed the process.<p>Quick start if you want to try it:<p><pre><code> docker pull ghcr.io/linnix-os/cognitod:latest docker-compose up -d </code></pre> Setup takes about 5 minutes. Everything runs locally - your data doesn't leave your machine.<p>The main difference from tools like Prometheus: most monitoring parses /proc files. This uses eBPF to get data directly from the kernel. More accurate, way less overhead.<p>Built it in Rust using the Aya framework. No libbpf, no C - pure Rust all the way down. Makes the kernel interactions less scary.<p>Current state: - Works on any Linux 5.8+ with BTF - Monitors Docker/Kubernetes containers - Exports to Prometheus - Apache 2.0 license<p>Still rough around the edges. Actively working on it.<p>Would love to know: - What kinds of failures do you wish you could catch earlier? - Does this seem useful for your setup?<p>GitHub: <a href="https://github.com/linnix-os/linnix" rel="nofollow">https://github.com/linnix-os/linnix</a><p>Happy to answer questions about how it works.
Listen to Database Changes Through the Postgres WAL
Hacker News (score: 11)[Other] Listen to Database Changes Through the Postgres WAL
Show HN: Gerbil β an open source desktop app for running LLMs locally
Show HN (score: 34)[Other] Show HN: Gerbil β an open source desktop app for running LLMs locally Gerbil is an open source app that I've been working on for the last couple of months. The development now is largely done and I'm unlikely to add anymore major features. Instead I'm focusing on any bug fixes, small QoL features and dependency upgrades.<p>Under the hood it runs llama.cpp (via koboldcpp) backends and allows easy integration with the popular modern frontends like Open WebUI, SillyTavern, ComfyUI, StableUI (built-in) and KoboldAI Lite (built-in).<p>Why did I create this? I wanted an all-in-one solution for simple text and image-gen local LLMs. I got fed up with needing to manage multiple tools for the various LLM backends and frontends. In addition, as a Linux Wayland user I needed something that would work and look great on my system.
Xqerl β Erlang XQuery 3.1 Processor
Hacker News (score: 26)[Other] Xqerl β Erlang XQuery 3.1 Processor
TrueJson
Product Hunt[IDE/Editor] Professional JSON Developer Studio The ultimate JSON editing experience with advanced tools for filtering, sorting, comparison, and conversion, save, view history, colloboration & API integration. Built for developers who demand precision and elegance without juggling across multiple different tabs.
Layout Manager React
Product Hunt[Other] Lightweight split-view manager for React Layout Manager React is a lightweight library designed to work with TypeScript. For resizable nested split views, it is optimized for the minimal size of the bundle and the most efficient re-renders. It handles horizontal vertical splits, drag to resize panels, nested layouts, supports RTL and LTR, and persistent layouts. It is suitable for dashboards, dynamic React applications, and admin panels.
Akamas Insights
Product Hunt[Monitoring/Observability] Optimize Performance, Reliability, and Cost. Together Akamas Insights is an AI-powered optimization solution for Kubernetes. It analyzes telemetry from tools like Prometheus, Datadog, and Dynatrace to automatically detect inefficiencies and reliability risks across clusters, pods, and runtimes. It then provides ready-to-apply, data-backed configuration recommendations β enabling safe, continuous, full-stack optimization.
Visual JSON Editor
Product Hunt[IDE/Editor] Free, visual JSON editor - Validation, Type Support etc This free web app lets you edit JSON data visually without writing any code. It automatically converts JSON into interactive form fields for easy editing and keeps changes synchronized both ways between the visual editor and raw JSON. You can manage objects and arrays dynamically, validate and auto-format your JSON, and download the result as a file. Everything runs 100% client-side in your browser, ensuring speed, privacy, and complete control over your data.
WebPizza AI - Private PDF Chat
Product Hunt[Other] POC: Private PDF AI using only your browser with WebGPU I built this POC to test if complete RAG pipelines could run entirely client-side using WebGPU. Key difference: zero server dependency. PDF parsing, embeddings, vector search, and LLM inference all happen in your browser. Select a model (Llama, Phi-3, Mistral), upload a PDF, ask questions. Documents stay local in IndexedDB. Works offline once models are cached. Integrated WeInfer optimization achieving ~3.76x speedup over standard WebLLM through buffer reuse and async pipeline processing.