🛠️ Hacker News Tools
Showing 1681–1700 of 4369 tools from Hacker News
Last Updated
July 26, 2026 at 04:24 PM
Show HN: Pathetic – Java pathfinding: 10k concurrent paths in ~7ms
Show HN (score: 8)[Other] Show HN: Pathetic – Java pathfinding: 10k concurrent paths in ~7ms It started with drones. My co-founder and I were building a Minecraft plugin where drones had to navigate through unloaded chunks - terrain that doesn't even exist in memory yet. No existing library had any concept of it, which led to drones being stuck in non-existence.<p>Sloppy at first, tightly coupled to Minecraft's API, we built our own. But somewhere along the way we realized: the problem wasn't Minecraft. It was how Java pathfinding is built in general - object-heavy, GC-hostile, and single-threaded by assumption.<p>So I split the project. The core became its own thing: pure Java 8+ for compatibility, featuring a zero-allocation primitive heap instead of a theoretically optimal FibonacciHeap, because pointer chasing and cache misses were unacceptable. 100% async, even in a single-threaded, async-hating Minecraft hell, and a processor pipeline providing full extensibility. No game engine, yet the possibility to adapt to your environment.<p>Sometimes it isn't the algorithm that needs optimization, but the environment it lives in. Pathetic is full of these micro-optimizations: a BloomFilter lookup before the expensive closed set check, a multi-metric squared heuristic to kill Math.sqrt() overhead, and bit-packing 3D coordinates into a single primitive long. In order to get Java fast, you need to treat it like C++.<p>The result: 10k concurrent paths in ~7ms, where most libraries quietly die. A 20k distance path (equivalent to 100k+ nodes) in ~60ms without bloating the heap. The README is... a choice. Judge it, because it does the same to you.
Show HN: I built an API for agents visiting my personal website
Show HN (score: 5)[Other] Show HN: I built an API for agents visiting my personal website
Show HN: Codeberg (Forgejo) CLI, built with Xclif
Show HN (score: 6)[CLI Tool] Show HN: Codeberg (Forgejo) CLI, built with Xclif
Agents for financial services and insurance
Hacker News (score: 214)[Other] Agents for financial services and insurance
Show HN: Octopus Code Review is now free for OSI-licensed repos
Show HN (score: 6)[Other] Show HN: Octopus Code Review is now free for OSI-licensed repos
A polynomial autoencoder beats PCA on transformer embeddings
Hacker News (score: 52)[Other] A polynomial autoencoder beats PCA on transformer embeddings
Show HN: Retroguard – Verifiably secure AI guardrails
Show HN (score: 6)[Other] Show HN: Retroguard – Verifiably secure AI guardrails Cryptographically secure and verifiably robust protection with drop-in integration and outcome-based pricing
CVE-2026-31431: Copy Fail vs. rootless containers
Hacker News (score: 83)[Other] CVE-2026-31431: Copy Fail vs. rootless containers
Show HN: Kanban-CLI – a web UI for local Markdown todo lists
Show HN (score: 6)[CLI Tool] Show HN: Kanban-CLI – a web UI for local Markdown todo lists As we all are, I've been experimenting with ways to reduce external saas spend, and continually bring traditionally external pieces of context (prs, docs, trello boards) into the one mono repo.<p>I have toyed with a markdown todo list and setting claude/codex into a "ralph" loop previously, but always missed the web ui for organising, planning, and tracking things in progress.<p>So codex and I build kanban-cli, an installable or npx-runnable cli util that takes one or more markdown files, and uses markdown headers and todo syntax to track and manage agentic tasks.<p>Let me know your thoughts, or if you've got a more convenient way of managing tasks!<p>I was tempted to link to the project landing page <a href="https://kanban-cli.vochsel.com" rel="nofollow">https://kanban-cli.vochsel.com</a> as I made a cute example demo, but linking to the repo felt less self-promo-y.<p>Cheers!
Show HN: I indexed 8,643 BSides talks across 227 chapters and 6 continents
Show HN (score: 21)[Other] Show HN: I indexed 8,643 BSides talks across 227 chapters and 6 continents Hi HN,<p>I'm Roland, and for the past few weeks, I've been building AllBSides — a directory of every BSides conference talk uploaded to YouTube. As of today, 8,643 talks from 5,927 speakers across 227 chapters in 68 countries. Combined runtime is 280 days. The transcripts come to about 60 million words.<p>The archive came together in stages:<p>1. Manually map every BSides chapter's YouTube channel 2. Pull every video and transcript from Supabase 3. Run each transcript through Haiku for tag extraction (tools, topics, difficulty, team, talk style, research method, and much more) 4. Run results through Sonnet for categorization and dedup 5. Final pass goes through Opus for verification 6. Do a manual verification - at one time, the pipeline showed over 16k AI suggestions for manual verification. Today, most are resolved.<p>Total LLM cost so far: about €200. The whole pipeline is rebuildable from scratch.<p>Each talk gets its own page with embedded video, full transcript, speakers, tags, and "related talks." Each tool/framework/protocol/standard mentioned across the corpus gets its own page (3,968 distinct technologies tracked).<p>Some interesting facts I gathered while building it:<p>-(A) The site is currently 94% bot traffic. Of that, about 80,000 hits/month are AI training crawlers (ClaudeBot, GPTBot, meta-externalagent). Within 7 days of the talks archive going live, all major AI labs had ingested the entire corpus. The discovery cascade was startling to watch in real time.<p>-(B) The taxonomy work was the hardest part. Distinguishing "tools" from "frameworks" from "protocols" from "concepts" sounds easy until you have 5,000 ambiguous extracted entities. The 3-tier LLM pipeline helped a lot — Haiku alone was too noisy, Opus alone was too expensive.<p>-(C) Top tools mentioned: Wireshark (343), PowerShell (342), Metasploit (332), Burp Suite (322), GitHub (296), VirusTotal (273), Docker (253), Splunk (251), Nmap (247), MITRE ATT&CK (237). The list reflects what BSides talks actually discuss, not what vendors curate.<p>-(D) May is the peak BSides month — 29 events, 17% of all events with dates.<p>-(E) The top 1% of talks (86 videos by view count) account for 51% of all viewership. The other 99% are deeply niche, often the only video record of a specific technique.<p>The stack is intentionally lean: Go, SQLite, vanilla JavaScript, BunnyCDN. Static rendering at build time. No frameworks, no client-side state. The site costs about €50/month to run.<p>The data behind this post and much more can be found in the site footer, under the link "stats".<p>Happy to answer questions about the data pipeline, the taxonomy decisions, or what the AI crawler patterns looked like as the archive went live. Feedback on what to build next is genuinely welcome — I'm a solo dev figuring this out as I go.<p>— Roland (parkado)
Formatting a 25M-line codebase overnight
Hacker News (score: 103)[Other] Formatting a 25M-line codebase overnight
Show HN: Agent-evals – Claude skill to build your own evals
Show HN (score: 7)[Other] Show HN: Agent-evals – Claude skill to build your own evals I’ve spent the past 10 years working on AI in finance, with much of that time focused on building evaluation systems for production environments.<p>As agents become more widely adopted, more software engineering and product people have start building them. But I’ve noticed that many teams are not yet fluent in systematic evaluation, or in the processes needed to keep agent quality high over time.<p>For large organizations, that gap is rarely the bottleneck due to dedicated teams. But after speaking with a number of startups, it became clear that building strong, up-to-date evals is much harder in a fast startup, especially when the team does not have a data science background.<p>So I tried to condense as much of my experience as possible into a Claude Skill: a practical starting point for evaluating your agent.<p>The idea is simple: tell Claude you need evals, and it will set up a solid baseline directly in your codebase - that's it! The evals will follow patterns I've seen many times before, and will get you a summary of what your agent does well and what it doesnt.<p>Looking forward to your feedback!
Google is discontinuing its free web search index for developers
Hacker News (score: 38)[Other] Google is discontinuing its free web search index for developers
White House Considers Vetting A.I. Models Before They Are Released
Hacker News (score: 30)[Other] White House Considers Vetting A.I. Models Before They Are Released
Days without GitHub incidents
Hacker News (score: 317)[Other] Days without GitHub incidents
Show HN: Muesli – If Granola and Wisprflow had an open source on device baby
Show HN (score: 9)[Other] Show HN: Muesli – If Granola and Wisprflow had an open source on device baby Hey folks, I am the developer behind muesli - which is your one stop app for all your speech to text needs, be it voice dictation or meeting transcriptions that runs on device on your Apple Neural Engine using CoreML based STT models (Parakeet, Whisper, Cohere transcribe). Everything is open source and we are at 160 stars - au naturale - would love for folks to use it and contribute further to the development
Show HN: Bonsai 1.7B ternary model at 442T/s on M4 Max
Show HN (score: 10)[Other] Show HN: Bonsai 1.7B ternary model at 442T/s on M4 Max We took a recently released Bonsai 1.7B ternary model from PrismML (<a href="https://github.com/PrismML-Eng/Bonsai-demo" rel="nofollow">https://github.com/PrismML-Eng/Bonsai-demo</a>) and ran our agentic evolution search on it for 6 hours to optimize the Metal kernels. The search was fully autonomous.<p>Measured against unmodified upstream llama.cpp at the same Bonsai/Q2_0 commit, same M4 Max:<p>- tg128: 309.82 → 442.42 t/s (+42.0%)<p>- pp512: 4250.32 → 4622.63 t/s (+8.8%)
Show HN: Replacing spec-driven development with just facts
Show HN (score: 5)[Other] Show HN: Replacing spec-driven development with just facts I had a lot of issues with spec-driven approaches, agents are too readily producing fluff, large projects have so many specs agents start making mistakes maintaining them. There's a constant consistency tax.<p>In the end every spec is just a bunch of facts, so I decided to leave that and throw away everything else while making it friendlier for agentic use.<p>Introducing facts - skills and CLI for agents to use facts-driven development. <a href="https://github.com/av/facts" rel="nofollow">https://github.com/av/facts</a>
PyInfra 3.8.0 Is Out
Hacker News (score: 126)[Other] PyInfra 3.8.0 Is Out
Setting up server monitoring for a Rails app on Hatchbox
Hacker News (score: 12)[Monitoring/Observability] Setting up server monitoring for a Rails app on Hatchbox