🛠️ All DevTools
Showing 1–20 of 3665 tools
Last Updated
March 07, 2026 at 08:00 PM
A Decade of Docker Containers
Hacker News (score: 135)[Other] A Decade of Docker Containers
agentjido/jido
GitHub Trending🤖 Autonomous agent framework for Elixir. Built for distributed, autonomous behavior and dynamic workflows.
Claude Code deletes developers' production setup, including database
Hacker News (score: 12)Claude Code deletes developers' production setup, including database
Show HN: µJS, a 5KB alternative to Htmx and Turbo with zero dependencies
Hacker News (score: 13)Show HN: µJS, a 5KB alternative to Htmx and Turbo with zero dependencies I built µJS because I wanted AJAX navigation without the verbosity of HTMX or the overhead of Turbo.<p>It intercepts links and form submissions, fetches pages via AJAX, and swaps fragments of the DOM. Single <script> tag, one call to `mu.init()`. No build step, no dependencies.<p>Key features: patch mode (update multiple fragments in one request), SSE support, DOM morphing via idiomorph, View Transitions, prefetch on hover, polling, and full HTTP verb support on any element.<p>At ~5KB gzipped, it's smaller than HTMX (16KB) and Turbo (25KB), and works with any backend: PHP, Python, Go, Ruby, whatever.<p>Playground: <a href="https://mujs.org/playground" rel="nofollow">https://mujs.org/playground</a><p>Comparison with HTMX and Turbo: <a href="https://mujs.org/comparison" rel="nofollow">https://mujs.org/comparison</a><p>About the project creation, why and when: <a href="https://mujs.org/about" rel="nofollow">https://mujs.org/about</a><p>GitHub: <a href="https://github.com/Digicreon/muJS" rel="nofollow">https://github.com/Digicreon/muJS</a><p>Happy to discuss the project.
Show HN: Git-lanes – Parallel isolation for AI coding agents using Git worktrees
Show HN: OculOS – Any desktop app as a JSON API via OS accessibility tree
Show HN (score: 6)Show HN: OculOS – Any desktop app as a JSON API via OS accessibility tree Single Rust binary (~3 MB) that reads the OS accessibility tree and gives every UI element a REST endpoint. Click buttons, type text, toggle checkboxes — all via JSON. Works as an MCP server too, so Claude/Cursor/Windsurf can control any desktop app out of the box.<p>Windows + Linux + macOS. MIT licensed.
Show HN: Kula – Lightweight, self-contained Linux server monitoring tool
Hacker News (score: 39)[Monitoring/Observability] Show HN: Kula – Lightweight, self-contained Linux server monitoring tool Zero dependencies. No external databases. Single binary. Just deploy and go. I needed something that would allow for real-time monitoring, and installation is as simple as dropping a single file and running it. That's exactly what Kula is. Kula is the Polish word for "ball," as in "crystal ball." The project is in constant development, but I'm already using it on multiple servers in production. It still has some rough edges and needs to mature, but I wanted to share it with the world now—perhaps someone else will find it useful and be willing to help me develop it by testing or providing feedback. Cheers! Github: <a href="https://github.com/c0m4r/kula" rel="nofollow">https://github.com/c0m4r/kula</a>
Show HN: The Roman Industrial Revolution that could have been (Vol 2)
Hacker News (score: 11)Show HN: The Roman Industrial Revolution that could have been (Vol 2) A few months ago I shared the first issue of The Lydian Stone Series here:<p><a href="https://news.ycombinator.com/item?id=44253083">https://news.ycombinator.com/item?id=44253083</a><p>It's an alternate-history comic about an archaeology student in modern Pompeii who discovers a slate that lets him exchange short messages with a Roman slave a week before the eruption of Vesuvius.<p>The premise is simple: what happens if someone in the Roman world suddenly gains access to modern scientific knowledge, but still has to build everything using the materials and tools available in 79 AD?<p>Volume 2 (The Engine of Empire) explores the second-order effects of that idea.<p>About the process: I write the story, research, structure, and dialogue. The narrative is planned first (acts → scenes → pages → panels). Once a panel is defined, I write a detailed visual description (camera angle, posture, lighting, environment, etc.).<p>LLMs help turn those descriptions into prompts, and image models generate sketches. I usually generate many variations and manually select or combine the ones that best match the panel.<p>The bulk of the work is in the narrative design, historical research, and building a plausible technological path the Romans could realistically follow. The AI mostly acts as a sketching assistant.<p>I'd love feedback on the story direction, pacing, and whether the industrial shift feels believable.
Show HN: I open-sourced my Steam game, 100% written in Lua, engine is also open
Hacker News (score: 31)Show HN: I open-sourced my Steam game, 100% written in Lua, engine is also open Homebrew engine <a href="https://github.com/willtobyte/carimbo" rel="nofollow">https://github.com/willtobyte/carimbo</a>
Utah's online porn tax proposal poses a major threat to civil liberties
Hacker News (score: 14)[Other] Utah's online porn tax proposal poses a major threat to civil liberties
Show HN: Graph-Oriented Generation – Beating RAG for Codebases by 89%
Show HN (score: 7)[Other] Show HN: Graph-Oriented Generation – Beating RAG for Codebases by 89% LLMs are better at being the "mouth" than the "brain" and I can prove it mathematically. I built a deterministic graph engine that offloads reasoning from the LLM. It reduces token usage by 89% and makes a tiny 0.8B model trace enterprise execution paths flawlessly. Here is the white paper and the reproducible benchmark.
Show HN: Go-TUI – A framework for building declarative terminal UIs in Go
Show HN (score: 5)[Other] Show HN: Go-TUI – A framework for building declarative terminal UIs in Go I've been building go-tui (<a href="https://go-tui.dev" rel="nofollow">https://go-tui.dev</a>), a terminal UI framework for Go inspired by the templ framework for the web (<a href="https://templ.guide/" rel="nofollow">https://templ.guide/</a>). The syntax should be familiar to templ users and is quite different from other terminal frameworks like bubbletea. Instead of imperative widget manipulation or bubbletea's elm architecture, you write HTML-like syntax and Tailwind-style classes that can intermingle with regular Go code in a new .gsx filetype. Then you compile these files to type-safe Go using `tui generate`. At runtime there's a flexbox layout engine based on yoga that handles positioning and a double-buffered renderer that diffs output to minimize terminal writes.<p>Here are some other features in the framework:<p>- It supports reactive state with State[T]. You change a value and the framework redraws for you. You can also forego reactivity and simply use pure components if you would like.<p>- You can render out a single frame to the terminal scrollback if you don't care about UIs and just want to place a box, table, or other styled component into your stdout. It's super handy and avoids the headache of dealing with the ansi escape sequences directly.<p>- It supports an inline mode that lets you embed an interactive widget in your shell session instead of taking over the full screen. With it you can build things like custom streaming chat interfaces directly in the terminal.<p>- I built full editor support for the new filetype. I published a VS Code and Open-VSX extension with completion, hover, and go-to-definition. Just search for "go-tui" in the marketplace to find them. The repo also includes a tree-sitter grammar for Neovim/Helix, and an LSP that proxies Go features through gopls so the files are easy to work with.<p>There are roughly 20 examples in the repo covering everything from basic components to a dashboard with live metrics and sparklines. I also built an example wrapper for claude code if you wanted to build your own AI chat interface.<p>Docs & guides: <a href="https://go-tui.dev" rel="nofollow">https://go-tui.dev</a><p>Repo: <a href="https://github.com/grindlemire/go-tui" rel="nofollow">https://github.com/grindlemire/go-tui</a><p>I'd love feedback on the project!
Codex Security: now in research preview
Hacker News (score: 16)[Other] Codex Security: now in research preview
Show HN: Claude-replay – A video-like player for Claude Code sessions
Hacker News (score: 54)[CLI Tool] Show HN: Claude-replay – A video-like player for Claude Code sessions I got tired of sharing AI demos with terminal screenshots or screen recordings.<p>Claude Code already stores full session transcripts locally as JSONL files. Those logs contain everything: prompts, tool calls, thinking blocks, and timestamps.<p>I built a small CLI tool that converts those logs into an interactive HTML replay.<p>You can step through the session, jump through the timeline, expand tool calls, and inspect the full conversation.<p>The output is a single self-contained HTML file — no dependencies. You can email it, host it anywhere, embed it in a blog post, and it works on mobile.<p>Repo: <a href="https://github.com/es617/claude-replay" rel="nofollow">https://github.com/es617/claude-replay</a><p>Example replay: <a href="https://es617.github.io/assets/demos/peripheral-uart-demo.html" rel="nofollow">https://es617.github.io/assets/demos/peripheral-uart-demo.ht...</a>
Entomologists use a particle accelerator to image ants at scale
Hacker News (score: 87)Entomologists use a particle accelerator to image ants at scale
Show HN: Moongate – Ultima Online server emulator in .NET 10 with Lua scripting
Hacker News (score: 44)Show HN: Moongate – Ultima Online server emulator in .NET 10 with Lua scripting I've been building a modern Ultima Online server emulator from scratch. It's not feature-complete (no combat, no skills yet), but the foundation is solid and I wanted to share it early.<p>What it does today: - Full packet layer for the classic UO client (login, movement, items, mobiles) - Lua scripting for item behaviors (double-click a potion, open a door — all defined in Lua, no C# recompile) - Spatial world partitioned into sectors with delta sync (only sends packets for new sectors when crossing boundaries) - Snapshot-based persistence with MessagePack - Source generators for automatic DI wiring, packet handler registration, and Lua module exposure - NativeAOT support — the server compiles to a single native binary - Embedded HTTP admin API + React management UI - Auto-generated doors from map statics (same algorithm as ModernUO/RunUO)<p>Tech stack: .NET 10, NativeAOT, NLua, MessagePack, DryIoc, Kestrel<p>What's missing: Combat, skills, weather integration, NPC AI. This is still early — the focus so far has been on getting the architecture right so adding those systems doesn't require rewiring everything.<p>Why not just use ModernUO/RunUO? Those are mature and battle-tested. I started this because I wanted to rethink the architecture from scratch: strict network/domain separation, event-driven game loop, no inheritance-heavy item hierarchies, and Lua for rapid iteration on game logic without recompiling.<p>GitHub: <a href="https://github.com/moongate-community/moongatev2" rel="nofollow">https://github.com/moongate-community/moongatev2</a>
I Dropped Our Production Database and Now Pay 10% More for AWS
Hacker News (score: 21)I Dropped Our Production Database and Now Pay 10% More for AWS
aidenybai/react-grab
GitHub TrendingSelect context for coding agents directly from your website
lingfengQAQ/webnovel-writer
GitHub Trending基于 Claude Code 的长篇网文辅助创作系统,解决 AI 写作中的「遗忘」和「幻觉」问题,支持 200 万字量级 连载创作。
Ed1s0nZ/CyberStrikeAI
GitHub TrendingCyberStrikeAI is an AI-native security testing platform built in Go. It integrates 100+ security tools, an intelligent orchestration engine, role-based testing with predefined security roles, a skills system with specialized testing skills, and comprehensive lifecycle management capabilities.