🛠️ Hacker News Tools
Showing 2041–2060 of 2578 tools from Hacker News
Last Updated
April 28, 2026 at 08:00 AM
[CLI Tool] Show HN: GitType – A typing game that uses your own Git repo as practice text I built a small Rust CLI game called GitType.<p>It’s a typing practice tool that takes <i>your own Git repository</i> and turns the code inside into typing material. Instead of random words, you type through real functions, comments, and code you’ve written — making practice feel closer to real-world programming.<p>Features: - Works directly in the terminal (no GUI required) - Pulls text from any local Git repo - Tracks WPM and accuracy - Keeps a history of your past runs (so you can see progress over time) - Fun ranking titles based on your score<p>Source and install instructions: <a href="https://github.com/unhappychoice/gittype" rel="nofollow">https://github.com/unhappychoice/gittype</a><p>Would love feedback from fellow devs — especially around the scoring system and ideas for new modes. :)
Show HN: Vizzly – Visual testing platform with built-in review workflows
Show HN (score: 6)[Testing] Show HN: Vizzly – Visual testing platform with built-in review workflows Hey HN! I’m Robert. I worked on [Percy’s SDKs/support from 2018–2022.](<a href="https://github.com/percy/cli/graphs/contributors" rel="nofollow">https://github.com/percy/cli/graphs/contributors</a>) If you ever reached out to support or opened an issue, I probably helped you. Hopefully it was positive :) After a few years away, visual testing still felt stuck, so I'm building Vizzly.<p>The problem: Design handoffs kinda suck. Designers make beautiful specs, devs implement them, then everyone realizes the details got lost somewhere. Current visual testing tools catch broken CSS but miss the real issue - making sure what ships actually matches what was designed, functionally (like really in the browser/OS/etc).<p>What it is<p>- Visual testing + review where you send actual screenshots (not DOM re-renders). Can be _any_ image to review (PDFS!)<p>- Collaboration built-in: reviewer assignment, approvals, @mentions, screenshot-level threads.<p>- Baselines: automatic (Git-aware), manual (not Git-based), or hybrid.<p>- Team-based pricing; generous free plan for OSS; on-prem available.<p>What’s different<p>- Capture-first: use the pixels your app produced (no “but it doesn’t look like that on my machine/CI”).<p>- Local TDD + CI parity: run locally with instant feedback; same flow in CI.<p>- Custom properties to filter/slice reviews (component, viewport, theme, etc).<p>Try it quickly (Playwright example)<p>```<p>npm i -D @vizzly-testing/cli<p>export VIZZLY_TOKEN=your-token<p># in your tests:<p>import { vizzlyScreenshot } from '@vizzly-testing/cli';<p>let img = await page.screenshot({ fullPage: true });<p>await vizzlyScreenshot('homepage-layout', img);<p>```<p>I would love feedback on everything! Rough edges you hit using the product/sdk, baseline expectations across branches, what you need for design/dev review to feel “done”, etc. Features like root cause analysis, an MCP, and more collab features are coming. But it's just me building :p<p>I'm a big fan of OSS, so the OSS plan is pretty generous (10 seats + 10 review seats (20 total), unlimited public projects, 75GB, 6 concurrent builds). If it's not generous enough for teams, I'm willing to up it!<p>This is my first time launching anything like this, I'm super keen on getting feedback and working any support or suggestions folks have. If anyone knew me from my support at Percy, I _really_ enjoy those conversations and opportunities to ship a fix or feature at the end of a chat. If Vizzly isn't it for your team, I wanna know why and what I can do to help you.<p>Backstory + screenshots from my intro blog post: <a href="https://robertdelu.ca/2025/09/07/vizzly-introduction" rel="nofollow">https://robertdelu.ca/2025/09/07/vizzly-introduction</a>
Show HN: Bottlefire – Build single-executable microVMs from Docker images
Hacker News (score: 31)[Other] Show HN: Bottlefire – Build single-executable microVMs from Docker images
Show HN: Semantic grep for Claude Code (RUST) (local embeddings)
Hacker News (score: 63)[Other] Show HN: Semantic grep for Claude Code (RUST) (local embeddings)
Show HN: An Open Source XR(AR/VR) Operating System
Hacker News (score: 10)[Other] Show HN: An Open Source XR(AR/VR) Operating System We're two college students building an XR(AR/VR) native Operating System with a custom kernel. We're also Open Source so feel free to check our GitHub Repository- <a href="https://github.com/manaskamal/XenevaOS" rel="nofollow">https://github.com/manaskamal/XenevaOS</a> .<p>The journey hasn't exactly been easy, we've been criticized by a lot saying that whatever we're doing is impractical and that we're too ambitious. Regardless, we've been committed to reach our goal.<p>Here to answer all questions and doubts. Answering one question beforehand because we know someone is going to ask it -<p>Q: Why use your own kernel/ Why don't you use Linux/ Why are you trying to reinvent the wheel?<p>A: Using our own kernel helps us get rid of the baggage of legacy codes, bring the most optimal performance on our target hardware (XR/AR/VR) and achieve more efficiency than what we would've achieved on an existing kernel.<p>We're not trying to reinvent the wheel, but just building Formula One racing tyres for it.
Show HN: I'm a dermatologist and I vibe coded a skin cancer learning app
Hacker News (score: 395)[Other] Show HN: I'm a dermatologist and I vibe coded a skin cancer learning app Coded using Gemini Pro 2.5 (free version) in about 2-3 hours.<p>Single file including all html/js/css, Vanilla JS, no backend, scores persisted with localStorage.<p>Deployed using ubuntu/apache2/python/flask on a ÂŁ5 Digital Ocean server (but could have been hosted on a static hosting provider as it's just a single page with no backend).<p>Images / metadata stored in an AWS S3 bucket.
Things you can do with a debugger but not with print debugging
Hacker News (score: 60)[Other] Things you can do with a debugger but not with print debugging
Show HN: CrabCamera – Cross-platform camera plugin for Tauri desktop apps
Hacker News (score: 29)[API/SDK] Show HN: CrabCamera – Cross-platform camera plugin for Tauri desktop apps After building several Tauri desktop apps, I kept hitting the same wall: there's no reliable way to access cameras across Windows, macOS, and Linux. Every project meant reinventing camera integration, dealing with platform-specific APIs, and debugging permission issues.<p><pre><code> So I built CrabCamera – a Tauri plugin that handles all the camera complexity for you. What it does: - One API, three platforms: Same Rust code works on Windows (DirectShow), macOS (AVFoundation), and Linux (V4L2) - Permission handling: Automatically requests camera permissions on each platform - Format conversion: Takes care of the messy bits between platform formats and what your app needs - Error handling: Proper Rust error types instead of mysterious crashes - Hot-plugging: Detects when cameras are connected/disconnected The problem it solves: Before CrabCamera, adding camera support to a Tauri app meant: 1. Writing separate native code for each platform 2. Managing three different permission systems 3. Handling format conversions manually 4. Debugging platform-specific edge cases 5. Maintaining it all as OS APIs change Now it's just: use crabcamera::Camera; let camera = Camera::new()?; let frame = camera.capture_frame().await?; Why I built it: I was working on a plant monitoring app (botanica) that needed reliable camera access for time-lapse photography. Existing solutions were either abandoned, platform-specific, or required complex native bindings. The Tauri ecosystem is growing fast, but camera support was this obvious gap. Every desktop app eventually needs camera access – video calls, document scanning, AR features, security monitoring. Technical highlights: - Uses nokhwa for the heavy lifting but wraps it in Tauri-friendly APIs - Proper async/await support throughout - Memory-efficient streaming for video capture - Built-in image processing pipeline - Extensible plugin architecture What's next: - WebRTC integration for video calls - Built-in barcode/QR code scanning - Face detection hooks - Performance optimizations for 4K streams The crate is MIT licensed and available on crates.io. I'd love feedback from other Tauri developers who've wrestled with camera integration. Links: - Crates.io: https://crates.io/crates/crabcamera - GitHub: https://github.com/Michael-A-Kuykendall/crabcamera - Documentation: https://docs.rs/crabcamera</code></pre>
Longhorn – A Kubernetes-Native Filesystem
Hacker News (score: 28)[Other] Longhorn – A Kubernetes-Native Filesystem
Show HN: Lightweight tool for managing Linux virtual machines
Hacker News (score: 47)[Other] Show HN: Lightweight tool for managing Linux virtual machines hey guys. the other day i was migrating hosting providers and i just needed something not too heavy and convenient to spin up my backups for awhile and realised there is almost nothing out there. kimchi hasn't been updated for years and cockpit is heavy. so here's something i came up with in a couple hours because of a sudden urge, nothing fancy just basic creation with cloud init, lifecycle management and image/storage, but it's modern-ish and it compiles to a 8.4mb binary inclusive of the embedded web UI, CLI and API, and only dep is libvirt.
Show HN: Greppers – fast CLI cheat sheet with instant copy and shareable search
Hacker News (score: 17)[CLI Tool] Show HN: Greppers – fast CLI cheat sheet with instant copy and shareable search I kept re-Googling the same flags, so I built a tiny, fast directory of copy-ready CLI commands. It’s static (vanilla JS), instant search, keyboard nav (↑/↓ + Enter), favorites (localStorage), and linkable queries.<p>Examples: • grep errors → <a href="https://www.greppers.com/?q=grep%20error%20logs" rel="nofollow">https://www.greppers.com/?q=grep%20error%20logs</a> • list open ports (macOS) → <a href="https://www.greppers.com/?q=list%20open%20ports" rel="nofollow">https://www.greppers.com/?q=list%20open%20ports</a> • show git branch graph → <a href="https://www.greppers.com/?q=git%20graph" rel="nofollow">https://www.greppers.com/?q=git%20graph</a> • tail with colors → <a href="https://www.greppers.com/?q=tail%20colors" rel="nofollow">https://www.greppers.com/?q=tail%20colors</a><p>Suggest a missing command: <a href="https://www.greppers.com/submit.html" rel="nofollow">https://www.greppers.com/submit.html</a><p>I’m looking for gaps and better real-world examples. Feedback welcome.
Show HN: Find the cheapest protein per gram across 3000 powders
Show HN (score: 5)[Other] Show HN: Find the cheapest protein per gram across 3000 powders I tracked protein powder prices in a spreadsheet for years and found that identical protein content can have wild price differences.<p>I built PricePerProtein to automate it. It pulls real-time Amazon data (Keepa API) and uses Gemini 2.5 Flash to extract nutrition facts from product images/descriptions. Calculates actual protein per dollar, not just package price.<p>Technical: FastAPI + Celery backend, Next.js frontend with virtual scrolling to handle 3000+ products. Deployed on a VPS (migrated from GCP - much simpler). The AI handles everything from blurry nutrition labels to understanding flavor categories.<p>No signup, no ads, no affiliate links. Updates hourly.
Stop writing CLI validation. Parse it right the first time
Hacker News (score: 56)[Other] Stop writing CLI validation. Parse it right the first time
Using Claude Code SDK to reduce E2E test time
Hacker News (score: 60)[API/SDK] Using Claude Code SDK to reduce E2E test time
Show HN: Evalyze – AI investor matching from your pitch deck (feedback welcome)
Show HN (score: 5)[Other] Show HN: Evalyze – AI investor matching from your pitch deck (feedback welcome) I used to work in VC and watched good teams lose months chasing the wrong investors. I’m building Evalyze to make the unglamorous parts faster and more precise.<p>After sign-up (email only, no card) you can:<p>- upload a deck or paste your site - get a ranked list of relevant VCs/angels with a short “why” for each<p>What’s different: instead of dumping a big list, we try to explain why an investor fits based on stage, sector, check size, and portfolio patterns. It’s far from perfect and we want blunt feedback before opening wider.<p>Limits to know:<p>- newer funds and emerging managers can be underrepresented - geo nuances are still rough - matching can over-weight buzzwords if the deck is vague<p>I’d love critique on the ranking logic, signals you’d add/remove, and any privacy concerns. If you don’t want to upload a deck, there’s a sample you can use to see the flow.<p>I’ll be here replying and shipping fixes as comments come in.
Show HN: Inception: Automatic Rust Trait Implementation by Induction
Show HN (score: 5)[Other] Show HN: Inception: Automatic Rust Trait Implementation by Induction Hi HN,<p>I thought this would be a good place to share a little puzzle I've been working on. Inception is a Rust library that helps you share behaviors in Rust using structural induction. Practically, this means that instead of having a derive macro for each behavior, a single derive can be used to enable any number of behaviors. It doesn't do this using runtime reflection, but rather type-level programming - so there is monomorphization across the substructures, and (at least in theory) no greater overhead than with macro expansion.<p>While there are a lot of things missing still and the current implementation is very suboptimal, I'd say it proves the general concept for common structures. Examples of Clone/Eq/Hash/etc replicas implemented in this way are provided.<p>The code is not idiomatic, which is my biggest reservation about continuing this work. It was fun to prove, but is not so fun to _improve_, as it feels a bit like swimming upstream. In any case I hope some of you find it interesting!
Show HN: Open-sourcing our text-to-CAD app
Hacker News (score: 38)[Other] Show HN: Open-sourcing our text-to-CAD app Hey HN! I'm Zach from Adam (<a href="https://adam.new/">https://adam.new/</a>). We’re building an AI co-pilot for mechanical CAD software.<p>As part of our broader research, we built a browser-based Text-to-CAD app (<a href="https://news.ycombinator.com/item?id=44182206">https://news.ycombinator.com/item?id=44182206</a>) and are now open sourcing it. This is a React SPA with a Supabase backend.<p>What it does:<p>* Generates parametric 3D models from natural language descriptions, with support for both text prompts and image references<p>* Outputs OpenSCAD code with automatically extracted parameters that surface as interactive sliders for instant dimension tweaking<p>* Exports as .STL or .SCAD<p>Under the hood:<p>* Separate agents for conversation and code generation; simple parameter tweaks bypass AI entirely using deterministic regex-based updates<p>* Runs fully in-browser by compiling OpenSCAD to WebAssembly and integrating Three.js with React Three Fiber for 3D rendering<p>* Supports BOSL, BOSL2, MCAD libraries and custom font support (Geist) for text in models<p>We’ve seen many developers trying to replicate this kind of functionality, so we’re releasing this to give the community a solid foundation to build on.<p>Future improvements:<p>* Expand geometry support - Move beyond CSG primitives to support curved surfaces, fillets, lofts, and constraint-driven modeling through CadQuery/Build123D<p>* Better spatial context - UI for face/edge selection and viewport image integration to give LLMs spatial understanding<p>* Enhanced capabilities - RAG on documentation and integration with more OpenSCAD libraries for features like proper threading<p>You can clone the repo and run it locally! Contributions are welcome, and we’ll keep merging PRs as they come in.
Use singular nouns for database table names
Hacker News (score: 19)[Other] Use singular nouns for database table names
Data Modeling Guide for Real-Time Analytics with ClickHouse
Hacker News (score: 41)[Other] Data Modeling Guide for Real-Time Analytics with ClickHouse
Building an acoustic camera with UMA-16 and Acoular
Hacker News (score: 33)[Other] Building an acoustic camera with UMA-16 and Acoular