🛠️ Hacker News Tools

Showing 321–340 of 3057 tools from Hacker News

Last Updated
June 05, 2026 at 12:00 PM

A History of IDEs at Google

Hacker News (score: 131)

[Other] A History of IDEs at Google

Found: May 09, 2026 ID: 4594

[Other] Bun's experimental Rust rewrite hits 99.8% test compatibility on Linux x64 glibc <a href="https:&#x2F;&#x2F;xunroll.com&#x2F;thread&#x2F;2053047748191232310" rel="nofollow">https:&#x2F;&#x2F;xunroll.com&#x2F;thread&#x2F;2053047748191232310</a><p>Recent and related: <i>Zig → Rust porting guide</i> - <a href="https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=48016880">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=48016880</a> - May 2026 (540 comments)

Found: May 09, 2026 ID: 4543

[Other] Killswitch: Per-function short-circuit mitigation primitive

Found: May 09, 2026 ID: 4540

[Other] All my clients wanted a carousel, now it's an AI chatbot

Found: May 09, 2026 ID: 4538

[Other] Using Claude Code: The unreasonable effectiveness of HTML Examples: <a href="https:&#x2F;&#x2F;thariqs.github.io&#x2F;html-effectiveness&#x2F;" rel="nofollow">https:&#x2F;&#x2F;thariqs.github.io&#x2F;html-effectiveness&#x2F;</a><p>Related: <a href="https:&#x2F;&#x2F;simonwillison.net&#x2F;2026&#x2F;May&#x2F;8&#x2F;unreasonable-effectiveness-of-html&#x2F;" rel="nofollow">https:&#x2F;&#x2F;simonwillison.net&#x2F;2026&#x2F;May&#x2F;8&#x2F;unreasonable-effectiven...</a>

Found: May 09, 2026 ID: 4534

[Other] Show HN: Ant – A from-scratch JavaScript runtime in 9 MB Hey HN! I have been working on Ant for a while now, would love to share around now.<p>What is Ant? It&#x27;s my JavaScript runtime, built from scratch over many hours of work. Much effort has gone into keeping the binary size small, around 9MB at the moment (6.5 MB with -Os). On my M4 Pro, the hono coldstart bench (examples&#x2F;npm&#x2F;hono&#x2F;bench-coldstart.js) lands around 5ms, about 2.4x faster than bun, and 5.8x faster than node.<p>To keep things small, the engine (&quot;Ant Silver&quot;) is hand-written, not a wrapper around V8&#x2F;JSC&#x2F;SpiderMonkey. The JIT is still a work in progress but it uses a fork of MIR as the backend.<p>Ant currently targets the WinterTC Minimum Common API, while also passing 100% the javascript-zoo compat-table tests, and is sitting around 64% on test262.<p>Why did I build Ant? Well, I wanted a runtime small enough to ship with CLI&#x27;s and small Docker containers without having to drag along 50 to 100mb of just runtime. Ant in its current state is performant enough in some cases to compete with v8, but mostly in specific shapes.<p>Background on how it got here: <a href="https:&#x2F;&#x2F;themackabu.dev&#x2F;blog&#x2F;ant-part-two" rel="nofollow">https:&#x2F;&#x2F;themackabu.dev&#x2F;blog&#x2F;ant-part-two</a><p>Online demo shell&#x2F;container: <a href="https:&#x2F;&#x2F;ant.ax" rel="nofollow">https:&#x2F;&#x2F;ant.ax</a><p>If anyone has questions about Ant, such as the engine, im happy to answer any of them! Feedback is also appreciated, if you run your own code and hit some edge case.

Found: May 09, 2026 ID: 4539

[Other] Remembering Planet Source Code: Sharing Code Before GitHub Made It Easy

Found: May 09, 2026 ID: 4578

[API/SDK] Show HN: GETadb.com – every GET request creates a DB Hey HN! We made GETadb.com, so it&#x27;s easier to get agents to build you full stack apps. You don&#x27;t need to give them any credentials. Just by loading a GET request, they get access to a database, a sync engine, and abstractions for auth, presence, and streams.<p>To see what the agent sees, you can load https:&#x2F;&#x2F;getadb.com&#x2F;new<p>There&#x27;s two fun things about how it&#x27;s implemented:<p>1. If you curl the home page, it the agent content rather than human content. We do this by detecting the &#x27;Sec-Fetch-Mode&#x27; header. It&#x27;s not perfect, but gets the job done for Claude Code et al.<p>2. For an agent to spin up an app, they make _two_ fethes. (1) getadb.com&#x2F;guide tells them to generate a uuid, and fetch (2) getadb.com&#x2F;provision&#x2F;&lt;uuid&gt;. We did this, because just about half of the popular web-based app builders cache URLs globally, even if you return no-store headers. To get around this we just instruct the agent to generate unique URLs<p>You may wonder: Why GET requests, rather than POST requests? It&#x27;s because then you can build in surprising places. For example, we get meta.ai to build an app inside the artifact preview: https:&#x2F;&#x2F;artifacts.meta.ai&#x2F;share&#x2F;a&#x2F;b80c7412-c3af-4088-b430-78efdfe8ea2d<p>Under the hood, this is possible because the whole infra is mult-tenant from ground up. We already announced how that works on HN, but if you&#x27;re curious here&#x27;s the essay for it: https:&#x2F;&#x2F;www.instantdb.com&#x2F;essays&#x2F;architecture

Found: May 08, 2026 ID: 4532

[Other] Show HN: Notion-to-site – sync any Notion database to local Markdown/MDX/JSON Built this while syncing my own blog from Notion. Good alternative to paid options like Super.so.<p>Supports incremental sync, all Notion block types including equations and synced blocks, image download + WebP conversion, and adapters for Markdown, MDX, and JSON.<p>Works with Next.js, Astro, SvelteKit, and anything that reads files.

Found: May 08, 2026 ID: 4536

Show HN: Git for AI Agents

Hacker News (score: 20)

[Other] Show HN: Git for AI Agents hi guys. been working on something i think is fundamentally missing in today&#x27;s workflow with ai agents.<p>vcs.<p>i find myself struggling with questions that agents can&#x27;t answer like &quot;why did you do it?&quot;, &quot;when did u delete this folder? why?&quot;, etc. or trying to &#x2F;rewind (after a &#x2F;compact...) or basically `bisect` to find when and why something was done by the agent in the current &#x2F; previous session.<p>just like git did for code, i think we are the same core capabilities with ai agents<p>so...<p>i developed an open source solution for that (currently supporting claude code)<p>would love to get feedback, contribution or maybe other ideas or solutions you find for those problems.

Found: May 08, 2026 ID: 4527

[Other] Building a web server in aarch64 assembly to give my life (a lack of) meaning

Found: May 08, 2026 ID: 4566

[Other] Podman rootless containers and the Copy Fail exploit

Found: May 08, 2026 ID: 4526

[CLI Tool] Show HN: Crit – local review tool for agent plans and code diffs Crit is a single-binary CLI that opens your file or code diffs in a browser with GitHub-inspired interface. Your favourite agent acts on the feedback and responds back - continue until you&#x27;re happy.<p>I&#x27;ve been building this for a few months now and it&#x27;s been helping me a lot juggling parallel conversations with agents, making it easier to actually review the plans they generate and the resulting code - all before it hits GitHub.<p>It also allows you to export the plans to a hosted service (which you can self-host for privacy), to solicit feedback from your team. No account needed, and reviews are automatically deleted after 30 days of inactivity.

Found: May 08, 2026 ID: 4529

[Other] Stop MitM on the first SSH connection, on any VPS or cloud provider

Found: May 08, 2026 ID: 4553

[DevOps] Show HN: Runs AI coding agents inside isolated Docker containers

Found: May 08, 2026 ID: 4533

QBE – Compiler Back End

Hacker News (score: 53)

[Other] QBE – Compiler Back End

Found: May 08, 2026 ID: 4528

[Other] Blaise – A modern self-hosting zero-legacy Object Pascal compiler targeting QBE

Found: May 08, 2026 ID: 4520

[Other] Claude Code CVE-2026-39861:sandbox escape via symlink

Found: May 08, 2026 ID: 4521

[Other] Show HN: AnamDB – An AI-native, differentiable Datalog engine written in Rust

Found: May 08, 2026 ID: 4535

[Other] Show HN: DiffCAD, a FreeCAD workbench to review model changes like code I&#x27;d like to share a new workbench I&#x27;ve been working on called DiffCAD. Coming from a software engineering background, not having the ability to properly diff my CAD model changes was driving me crazy. This project scratches my own itch, and maybe someone elses&#x27;, too!<p>I&#x27;m open to feedback, ideas, and contributions. Cheers!

Found: May 07, 2026 ID: 4522
Previous Page 17 of 153 Next