🛠️ All DevTools
Showing 181–200 of 3028 tools
Last Updated
January 17, 2026 at 12:00 AM
Show HN: Stop Claude Code from forgetting everything
Hacker News (score: 34)[Other] Show HN: Stop Claude Code from forgetting everything I got tired of Claude Code forgetting all my context every time I open a new session: set-up decisions, how I like my margins, decision history. etc.<p>We built a shared memory layer you can drop in as a Claude Code Skill. It’s basically a tiny memory DB with recall that remembers your sessions. Not magic. Not AGI. Just state.<p>Install in Claude Code:<p><pre><code> /plugin marketplace add https://github.com/mutable-state-inc/ensue-skill /plugin install ensue-memory # restart Claude Code </code></pre> What it does: (1) persists context between sessions (2) semantic & temportal search (not just string grep). Basically git for your Claude brain<p>What it doesn’t do: - it won’t read your mind - it’s alpha; it might break if you throw a couch at it<p>Repo: <a href="https://github.com/mutable-state-inc/ensue-skill" rel="nofollow">https://github.com/mutable-state-inc/ensue-skill</a><p>If you try it and it sucks, tell me why so I can fix it. Don't be kind, tia
Obelisk 0.32: Cancellation, WebAPI, Postgres
Hacker News (score: 16)[Other] Obelisk 0.32: Cancellation, WebAPI, Postgres
[Other] Show HN: Zs3 – S3 server in ~1K lines of Zig, 250KB binary, zero dependencies Most S3 usage is PUT, GET, DELETE, LIST with basic auth. This does exactly that.<p>SigV4 auth, multipart uploads, range requests. Storage is just files on disk.<p>No versioning, no ACLs, no encryption. Use MinIO or AWS if you need those.
Show HN: Kuack – Run Kubernetes jobs in visitor browsers
Show HN (score: 5)[DevOps] Show HN: Kuack – Run Kubernetes jobs in visitor browsers WebAssembly makes it possible to run serious computation in browsers. I wanted to see if we could treat browsers as Kubernetes workers.<p>Kuack is a Virtual Kubelet provider that schedules Kubernetes workloads to browser tabs. Visitors' browsers connect, report capacity, and become ephemeral workers. It looks like a regular Kubernetes node - same kubectl commands, same OCI images, same workflows. The difference is that pods execute in browsers instead of servers. With multi-platform OCI images, Kubernetes can fall back to regular nodes if no agents are available.<p>It's designed for short-lived, stateless, CPU-heavy jobs: load testing from real networks, local data preprocessing, edge computing scenarios, machine learning tasks, etc.<p>Not a replacement for your cluster - just an extra option for workloads that benefit from browser execution.
Kubernetes egress control with squid proxy
Hacker News (score: 42)[DevOps] Kubernetes egress control with squid proxy
Bitrise™️ Artifact Uploader
Product Hunt[Build/Deploy] Drag & drop mobile builds to Bitrise - no CLI needed A web-based tool for uploading mobile application artifacts (IPA, APK, and AAB files) to Bitrise Release Management. It provides a simple and intuitive interface for selecting your Bitrise app and uploading new builds.
Plannotator
Product Hunt[Other] Annotate, review, and share Claude Code plans. (Plugin/Hook) Interactive Plan Review: Mark up and refine your plans using a UI, easily share for team collaboration, automatically integrates with agent plan mode. Select the exact parts of the plan you want to change. Mark it for deletion, add a comment, or suggest a replacement. Share plans and collect team member feedback. Automatically send feedback for Claude Code to act on. Runs locally. Local plugin. No network requests. Plannotator runs entirely in your browser. Plans never leave your machine.
Show HN: Pion SCTP with RACK is 70% faster with 30% less latency
Hacker News (score: 32)[Other] Show HN: Pion SCTP with RACK is 70% faster with 30% less latency SCTP is a low level protocol focused on reliable packet transmission. Unlike hopelessly flinging packets from one device to another, it makes sure that the packets are correct using CRC, removes duplicate packets, and allows for packets to be sent in any order.<p>Going into an established library, I thought that everything was already implemented and that there wasn't anything to do until I went through the existing issues and organized all the tasks and decided on an order. Sean DuBois (<a href="https://github.com/Sean-Der" rel="nofollow">https://github.com/Sean-Der</a>), one of the co-creators and current maintainers of Pion, an open-source pure Go implementation of WebRTC (which uses SCTP), introduced me to a dissertation that was written about improving SCTP from 2021 (<a href="https://duepublico2.uni-due.de/servlets/MCRFileNodeServlet/duepublico_derivate_00073893/Diss_Weinrank.pdf" rel="nofollow">https://duepublico2.uni-due.de/servlets/MCRFileNodeServlet/d...</a>). To my surprise, the features in it weren't actually implemented yet, and generally went unused even though it depicted pretty big improvements. This came as a bit of a shock to me considering the countless companies and services that actively use Pion with millions of users on a daily basis.<p>This led to two things: 1) implement the feature (done by me) and 2) measure the performance (done by Joe Turki <a href="https://github.com/JoeTurki" rel="nofollow">https://github.com/JoeTurki</a>). If you're interested in reading more, please check out the blog post where we go over what SCTP is used for, how I improved it, and the effort that went into making such a large improvement possible.<p>This also marks a huge milestone for other companies and services that use SCTP as they can refer to the implementation in Pion for their own SCTP libraries including any real-time streaming platforms such as Microsoft Teams, Discord screen share, Twitch guest star, and many more!<p>For my personal background, please take a look at a comment below about what it was like for me to get started with open-source and my career related journeys. Thanks for reading!
Ed25519-CLI – command-line interface for the Ed25519 signature system
Hacker News (score: 35)[CLI Tool] Ed25519-CLI – command-line interface for the Ed25519 signature system
Show HN: I built an open-source wallpaper gallery for GitHub repos
Show HN (score: 5)[Other] Show HN: I built an open-source wallpaper gallery for GitHub repos Hey HN,<p>GitHub has hundreds of wallpaper repositories with thousands of images, but actually browsing them is painful. You either clone gigabytes locally or click through the file browser one by one.<p>So I built WALL·E Gallery. Use existing collections or Paste a repo URL→ instant gallery.<p>How it works: - Fetches repo tree via GitHub (no cloning) - Proxies thumbnails (~50KB instead of 10MB originals) - Works with private repos too (with GitHub token)<p>Infinite scroll, search, dark mode, mobile friendly, self-hostable. No accounts, no tracking.<p>Live: <a href="https://walle.theblank.club" rel="nofollow">https://walle.theblank.club</a> Source: <a href="https://github.com/amitray007/wall-e" rel="nofollow">https://github.com/amitray007/wall-e</a><p>Do share your suggestions/feedback. Also, I did find my desktop wallpaper from this.
[Database] Show HN: Databasus – open-source backup tool for PostgreSQL, MySQL and MongoDB I had a post in the start of December about Postgresus 2.0: self hosted tool for PostgreSQL. Since then the project changed the name and added support of other databases: MySQL, MariaDB and MongoDB.<p>Website - <a href="https://databasus.com" rel="nofollow">https://databasus.com</a><p>GitHub - <a href="https://github.com/databasus/databasus" rel="nofollow">https://github.com/databasus/databasus</a><p>Main features:<p>- Scheduled backups for multiple PostgreSQL, MySQL, MariaDB and MongoDB databases<p>- Storage to S3, Cloudflare R2, Google Drive, Azure Blob, NAS, SFTP, rclone, etc.<p>- Notifications about backup status via email, Telegram, Slack, Discord, MS Teams and customizable webhooks<p>- Works with both self-hosted and managed PostgreSQL (RDS, Cloud SQL, etc.)<p>- Runs as a single Docker container or via Helm on Kubernetes, can be installed via script<p>- There are workspaces and role-based access with audit logs
Building a macOS app to know when my Mac is thermal throttling
Hacker News (score: 141)[Other] Building a macOS app to know when my Mac is thermal throttling
List, inspect and explore OCI container images, their layers and contents
Hacker News (score: 27)[DevOps] List, inspect and explore OCI container images, their layers and contents
Top DevOps Jobs
Product Hunt[Other] Find Your Next DevOps Job Discover the top DevOps jobs, cloud, SRE, and platform engineering opportunities at TopDevOpsJobs.com. Browse high-paying roles, career resources, and expert guidance to advance your tech career today.
HMPL
Product Hunt[Other] Lightweight server-oriented template language for JavaScript HMPL.js provides the flexibility to build server-driven templates with minimal JavaScript. With its block-based syntax, customizable fetch requests, and built-in support for forms, events, and time-based syncing you can deliver dynamic user interfaces without relying on a heavy framework. HMPL integrates with JSON5 for expressive object syntax and DOMPurify for safe HTML rendering, all in just a few kilobytes.
MemoriGraph
Product Hunt[Database] Build AI with contextual memory using knowledge graphs. MemoriGraph is an open-source API that enables developers to add sophisticated memory capabilities to their AI applications. Built on Neo4j and Graphiti, it transforms unstructured conversations and interactions into a rich knowledge graph that evolves over time. 🎯 Perfect For: - Personalized recommendation systems - Any app that needs to "remember" users Unlike simple vector databases, MemoriGraph builds a true knowledge graph that understands relationships, patterns, and context.
NovaKit CLI
Product Hunt[CLI Tool] AI coding agent in your terminal. Multi-model. Free. NovaKit CLI brings AI coding to your terminal—no IDE required. 🔌 Multi-provider: OpenAI, Anthropic, GitHub Copilot, Groq, OpenRouter ⏪ Checkpoints & Rewind: Esc+Esc to undo any AI change instantly 🔍 Semantic Search: Vector-indexed codebase for intelligent context 🧠 LSP Integration: Go-to-definition, find references, hover info 🤖 Agent Mode: Full autonomy for file ops, bash, web search Free to use. Bring your own API keys or connect GitHub Copilot. npm install -g @novakit/cli
Sentinel
Product Hunt[Other] fail2ban, dashboard, cybersecurity, linux-security, sysadmin 🛡️ Sentinel Dashboard — The Missing UI for Fail2ban A modern visual dashboard for Fail2ban – monitor bans in real-time, unban IPs, restart service, create filters and manage jails. No plugins. No cloud. 100% local & secure. Features ✔ Real-time ban monitoring ✔ View Active / Historical Bans ✔ Unban IP with one click ✔ Restart Fail2ban safely ✔ Create custom filters (UI) ✔ WebSocket live-logs ✔ No external tracking – self-hosted ✔ Works on Ubuntu, Debian, Raspberry Pi, VPS
Rust errors without dependencies
Hacker News (score: 36)[Other] Rust errors without dependencies
Show HN: I created a tool to design and create foamcore inserts for boardgames
Hacker News (score: 29)[Other] Show HN: I created a tool to design and create foamcore inserts for boardgames As a holiday project to test out spec first development using Codex CLI, I ended up creating <a href="https://boxinsertdesigner.com/" rel="nofollow">https://boxinsertdesigner.com/</a><p>It lets you design a box insert in 2D and spits out a cutting list.<p>I'm looking for feedback, bugs, feature ideas etc and figured this would be a good place to find it :)