πŸ› οΈ All DevTools

Showing 241–260 of 4253 tools

Last Updated
April 21, 2026 at 08:00 PM

[Other] Show HN: Aurion OS, A 1.8MB OS with a browser, try it live (C/x86 ASM) I posted Aurion OS a few weeks ago on HN.<p>Since then, the OS has gone from Beta to v1.0 Release with a lot of improvements:<p>Blaze Browser: HTML&#x2F;CSS&#x2F;JS rendering with tabs and a developer console (local only, no full http&#x2F;https support for now) Installer with user account setup and app selection Multi-resolution support (800x600 to 2560x1440, I plan to add 4096x2160 pixels in next versions) Unix-style luka@aurion prompt Serbian keyboard layout Python interpreter and Make build system 50+ terminal commands Window manager improvements and bug fixes<p>1.8MB ISO (entire OS including the browser and GUI) Supports QEMU, VirtualBox, VMware, and v86<p>You can try it live in the link above, or grab the ISO from GitHub: <a href="https:&#x2F;&#x2F;github.com&#x2F;Luka12-dev&#x2F;AurionOS" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;Luka12-dev&#x2F;AurionOS</a><p>Built solo as a hobby&#x2F;learning project. I&#x27;m 13. I&#x27;d love any feedback, suggestions!

Found: April 03, 2026 ID: 4014

Big-Endian Testing with QEMU

Hacker News (score: 30)

[Testing] Big-Endian Testing with QEMU

Found: April 03, 2026 ID: 4005

[Other] Show HN: LLMnesia – search across ChatGPT, Claude, Gemini chats locally I kept running into this annoying problem:<p>I’d remember a really useful answer, but not where it was.<p>ChatGPT? Claude? Gemini? No idea. So I’d end up digging through all of them or just rewriting the prompt.<p>Built this to fix that.<p>It’s a Chrome extension that indexes chats locally and lets you search across them all in one place. Once it’s indexed, search is basically instant.<p>Still early. UIs change and break things sometimes, so it’s a bit fragile in places.<p>Curious if other people have the same issue or if it’s just me jumping between tools too much.

Found: April 03, 2026 ID: 4006

[Other] Show HN: Apfel – The free AI already on your Mac Github: <a href="https:&#x2F;&#x2F;github.com&#x2F;Arthur-Ficial&#x2F;apfel" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;Arthur-Ficial&#x2F;apfel</a>

Found: April 03, 2026 ID: 4017

[CLI Tool] rpg: A modern psql-compatible Postgres terminal and TUI written in Rust

Found: April 02, 2026 ID: 4004

[Other] AWS has officially removed all EC2 instances in Bahrain from their docs

Found: April 02, 2026 ID: 4000

[Other] Show HN: I tested 15 free AI models at building real software on a $25/year VPS

Found: April 02, 2026 ID: 4013

[Other] Extracted system prompts from ChatGPT (GPT-5.4, GPT-5.3, Codex), Claude (Opus 4.6, Sonnet 4.6, Claude Code), Gemini (3.1 Pro, 3 Flash, CLI), Grok (4.2, 4), Perplexity, and more. Updated regularly.

Found: April 02, 2026 ID: 3994

[Other] OmX - Oh My codeX: Your codex is not alone. Add hooks, agent teams, HUDs, and so much more.

Found: April 02, 2026 ID: 3993

[Other] Decisions that eroded trust in Azure – by a former Azure Core engineer

Found: April 02, 2026 ID: 4018

[Other] Show HN: A P2P messenger with dual network modes (Fast and Tor) Hello HN,<p>I have been working on a desktop P2P messenger called Kiyeovo for the last ~8 months, and I just published its beta version.<p>Quick backstory: It started out as a CLI application for my Graduate Thesis, where I tried to make the most secure and private messenger application possible. Then, I transformed it into a desktop application, gave it &quot;clearnet&quot; support and added a bunch of features.<p>Short summary:<p>The app runs in 2 completely isolated modes:<p>- fast mode: relay&#x2F;DCUtR -&gt; lower latency, calls support<p>- anonymous mode: Tor message routing -&gt; slower, anonymous<p>These modes use different protocol IDs, DHT namespaces, pubsub topics and storage scopes so there’s no data crossover between them.<p>Messaging works peer-to-peer when both parties are online, but falls back to DHT &quot;offline buckets&quot; when one of them is not. To ensure robustness, messages are ACK-ed and deleted after being read.<p>Group chats use GossipSub for realtime messaging. Group messages are also saved to offline buckets in order for offline users to be able to read them upon logging in. Kick&#x2F;Join&#x2F;Leave events are also propagated using the DHT. Group metadata and all offline data is of course encrypted.<p>Other features: Chats are E2E, file sharing is supported, 1:1 audio&#x2F;video calls are supported (only in fast mode though, using WebRTC)<p>Tradeoffs: Tor has noticeable latency, offline delivery is not immediately guaranteed, but rather &quot;eventually consistent&quot;; beta version does not have group calls yet.<p>I’d appreciate feedback, that&#x27;s why I posted this as a beta version<p>Repo: <a href="https:&#x2F;&#x2F;github.com&#x2F;Realman78&#x2F;Kiyeovo" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;Realman78&#x2F;Kiyeovo</a>

Found: April 02, 2026 ID: 3999

[Other] Enabling Codex to Analyze Two Decades of Hacker News Data

Found: April 02, 2026 ID: 3995

[Other] Show HN: SideX – VS Code rebuilt on Tauri instead of Electron (96% smaller)

Found: April 02, 2026 ID: 3997

[API/SDK] Show HN: Open-agent-SDK – Claude Code's internals, extracted and open-sourced Claude Code&#x27;s source map leaked last month. Instead of just reading it, I fed the entire source into Claude Code itself and asked it to extract the core agent loop logic.<p>The result: open-agent-sdk β€” a drop-in replacement for claude-agent-sdk that&#x27;s fully open source and doesn&#x27;t spawn a CLI subprocess.<p>Why this matters if you&#x27;ve built with claude-agent-sdk:<p>claude-agent-sdk is just a thin wrapper around the Claude Code binary. It works, but it&#x27;s a black box β€” when something breaks, you&#x27;re stuck.<p>Every query creates a new Claude Code process. That&#x27;s fine on a laptop, not fine when you&#x27;re running thousands of concurrent agents in the cloud.<p>What open-agent-sdk does differently:<p>Pure function calls, no CLI process spawning β€” cloud-native from day one Fully compatible interface with claude-agent-sdk β€” swap the package name, done<p>MIT licensed β€” fork it, patch it, make it yours<p>β†’ <a href="https:&#x2F;&#x2F;github.com&#x2F;codeany-ai&#x2F;open-agent-sdk-typescript" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;codeany-ai&#x2F;open-agent-sdk-typescript</a>

Found: April 02, 2026 ID: 3998

[Other] The future of code search is not regex – 100x faster than ripgrep

Found: April 02, 2026 ID: 3991

[Monitoring/Observability] Tracing goroutines in realtime with eBPF

Found: April 01, 2026 ID: 3992

[Other] SolveSpace (open source 2D/3D CAD) working on Windows 2000 (2025) SolveSpace just became &quot;officially&quot; available for the Web (<a href="https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=47586614">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=47586614</a>), it is also officially supported on Windows (Vista-11), Linux and macOS.<p>However with a little effort it also compiles for and runs on Windows 2000. Here it is:<p><a href="https:&#x2F;&#x2F;github.com&#x2F;solvespace&#x2F;solvespace&#x2F;issues&#x2F;1036#issuecomment-3405830198" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;solvespace&#x2F;solvespace&#x2F;issues&#x2F;1036#issueco...</a><p>So it runs on all the majour platforms from the last 26 years (excluding MacOS 9).

Found: April 01, 2026 ID: 3988

[Monitoring/Observability] Show HN: Real-time dashboard for Claude Code agent teams This project (Agents Observe) started as an exploration into building automation harnesses around claude code. I needed a way to see exactly what teams of agents were doing in realtime and to filter and search their output.<p>A few interesting learnings from building and using this:<p>- Claude code hooks are blocking - performance degrades rapidly if you have a lot of plugins that use hooks<p>- Hooks provide a lot more useful info than OTEL data<p>- Claude&#x27;s jsonl files provide the full picture<p>- Lifecycle management of MCP processes started by plugins is a bit kludgy at best<p>The biggest takeaway is how much of a difference it made in claude performance when I switched to background (fire and forget) hooks and removed all other plugins. It&#x27;s easy to forget how many claude plugins I&#x27;ve installed and how they effect performance.<p>The Agents Observe plugin uses docker to start the API and dashboard service. This is a pattern I&#x27;d love to see used more often for security (think Axios hack) reasons. The tricky bit was handling process management across multiple claude instances - the solution was to have the server track active connections then auto shut itself down when not in use. Then the plugin spins it back up when a new session is started.<p>This tool has been incredibly useful for my own daily workflow. Enjoy!

Found: April 01, 2026 ID: 3987

[Other] C89cc.sh – standalone C89/ELF64 compiler in pure portable shell

Found: April 01, 2026 ID: 4001

[Other] Show HN: Claude Code rewritten as a bash script Have you ever wondered if Claude Code could be rewritten as a bash script? Me neither, yet here we are. Just for kicks I decided to try and strip down the source, removing all the packages.

Found: March 31, 2026 ID: 3990
Previous Page 13 of 213 Next