🛠️ All DevTools

Showing 2581–2600 of 4413 tools

Last Updated
April 30, 2026 at 04:00 PM

[Other] Show HN: Rebuilt Bible search app to run 100% client-side with Transformers.js I rebuilt Biblos, my semantic Bible search app, to run entirely in your browser. No more server costs. The main challenge was fitting an accurate text embedding model into browsers. Last year&#x27;s version cost $20 monthly to host. The new version runs free on Vercel and searches 31k Bible verses without sending data to any server.<p>I pre-compute embeddings for all 31,000 Bible verses offline using BGE-large-en-v1.5. Each verse becomes a 1024-dimensional vector stored as JSON, compressed into ZIP files by book. When you visit the site, your browser downloads Transformers.js and the BGE model.<p>The model generates an embedding for your query, then finds similar verses using cosine similarity against the cached embeddings. Everything happens in your browser.<p>The app is designed to search Bible verses by semantic meaning, not just keywords. There&#x27;s a separate tab to read daily passages with church fathers commentary from 15+ sources, based on a read the bible in a year plan.<p>Free to use, no sign-in features or anything like that. Try it out biblos.app. I&#x27;d appreciate feedback on the search experience, especially on mobile devices! Happy to discuss the technical details or help anyone building similar browser-based ML applications.

Found: October 10, 2025 ID: 1821

[Other] Tangled, a Git collaboration platform built on atproto

Found: October 10, 2025 ID: 1819

[Other] Show HN: Modeling the Human Body in Rust So I Can Cmd+Click Through It I started this trying to understand two things: why my Asian friends turn red after drinking, and why several friends all seemed to have migraine clusters.<p>I was reading medical papers and textbooks, but kept getting lost jumping between topics. I thought: what if I could just Cmd+Click through this like code? What if &quot;ALDH2 gene&quot; was actually clickable, and took me to the variant, the phenotype, the population frequencies?<p>So I started modeling human biology in Rust with my Ralph agent (Claude in a loop, ty ghuntley). Turns out the type system is perfect for this. Every biological entity is strongly-typed with relationships enforced at compile time.<p>After 1 day of agent coding: - 277 Rust files, ~95k lines of code - 1,561 tests passing - 13 complete organ systems - Genetics with ancestry-specific variants - Clinical pathology models<p>Try it:<p>git clone <a href="https:&#x2F;&#x2F;github.com&#x2F;lantos1618&#x2F;open_human_ontology" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;lantos1618&#x2F;open_human_ontology</a> cd open_human_ontology cargo run --example ide_navigation_demo<p>Then open `examples&#x2F;ide_navigation_demo.rs` and Cmd+Click through:<p>Understanding Asian flush:<p>AsianGeneticVariantsCatalog::get_metabolic_variants()<p>&#x2F;&#x2F; Click through to:<p>&#x2F;&#x2F; → ALDH2 gene on chromosome 12q24.12<p>&#x2F;&#x2F; → rs671 variant (Glu504Lys)<p>&#x2F;&#x2F; → 40% frequency in Japanese population<p>&#x2F;&#x2F; → Alcohol flush reaction<p>&#x2F;&#x2F; → 10x esophageal cancer risk with alcohol<p>&#x2F;&#x2F; → Acetaldehyde metabolism pathway<p>Understanding migraines: Migraine { subtype: WithAura, triggers: [Stress, LackOfSleep, HormonalChanges], genetic_variants: [&quot;rs2075968&quot;, &quot;rs1835740&quot;], ... }<p>&#x2F;&#x2F; Click through to:<p>&#x2F;&#x2F; → 17 migraine trigger types<p>&#x2F;&#x2F; → 12 aura symptom types<p>&#x2F;&#x2F; → Genetic risk factors<p>&#x2F;&#x2F; → Why clusters happen (HormonalChanges → Menstruation)<p>Now I can actually <i>navigate</i> the connections instead of flipping through PDFs. Heart → CoronaryArtery → Plaque. VisualCortex → 200M neurons → NeuralConnection pathways. It&#x27;s like Wikipedia but type-checked and with jump-to-definition.<p>This isn&#x27;t production medical software - it&#x27;s a learning tool. But it&#x27;s way more useful than textbooks for understanding how biological systems connect.<p>The agent keeps expanding it. Sometimes it OOMs but that&#x27;s part of the fun.<p>Tech: Rust, nalgebra, serde, rayon, proptest<p>I am not a dr or medical professional this is for my education you can commit to it if you want to or review and open some PR&#x27;s if you find wrong information or want to add references.

Found: October 10, 2025 ID: 1813

[Other] Show HN: Gitcasso – Syntax Highlighting and Draft Recovery for GitHub Comments I built a browser extension called Gitcasso which:<p>- Adds markdown syntax highlighting to GitHub textareas<p>- Lists every open PR&#x2F;issue tab and any drafts<p>- (Optional, unimplemented) autosaves your comment drafts so you don’t lose work<p>I made it because I was impressed by <a href="https:&#x2F;&#x2F;overtype.dev&#x2F;" rel="nofollow">https:&#x2F;&#x2F;overtype.dev&#x2F;</a> (a markdown textarea syntax highlighter) which went big on here on HN a few weeks ago, and it seemed like a perfect fit for a GitHub browser extension. Keeping up with changes on upstream GitHub would normally be a pain, but with with Playwright and Claude Code it seemed possible for it to be nearly automatic, which has turned out to be mostly true!<p>This was the first time where I built a tool, gave the tool to AI, and then AI used the tool to make the thing I hoped it would be able to make. I&#x27;m pretty sold on the general technique...<p>GitHub repo (Apache2-licensed, open source): <a href="https:&#x2F;&#x2F;github.com&#x2F;diffplug&#x2F;gitcasso" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;diffplug&#x2F;gitcasso</a><p>Video walkthrough (2 mins of the tool, 12 mins of its development tooling): <a href="https:&#x2F;&#x2F;www.youtube.com&#x2F;watch?v=wm7fVg4DWqk" rel="nofollow">https:&#x2F;&#x2F;www.youtube.com&#x2F;watch?v=wm7fVg4DWqk</a><p>And a text writeup with timestamps to the video walkthrough <a href="https:&#x2F;&#x2F;nedshed.dev&#x2F;p&#x2F;meet-gitcasso" rel="nofollow">https:&#x2F;&#x2F;nedshed.dev&#x2F;p&#x2F;meet-gitcasso</a>

Found: October 10, 2025 ID: 1811

[Other] Show HN: Static builds of popular open source libraries on npmjs.org

Found: October 10, 2025 ID: 1817

[Other] Show HN: Rustacean AI – Tracking Rust's Expanding Role in AI Rustacean AI, a weekly newsletter exploring how Rust is shaping the future of AI and Machine Learning. Issue #1: From Models to Data — Rust’s Expanding Role in AI Covers the growing Rust ecosystem around AI frameworks (Burn), data systems (Polars, Qdrant, Daft), and emerging tools that power safe, high-performance pipelines. The goal is to curate news, releases, and experiments from across the Rust + AI community — helping developers follow how the language is influencing the next generation of infrastructure. Read first issue here → <a href="https:&#x2F;&#x2F;rustacean.ai&#x2F;p&#x2F;issue-1-from-models-to-data-rust-s-expanding-role-in-ai" rel="nofollow">https:&#x2F;&#x2F;rustacean.ai&#x2F;p&#x2F;issue-1-from-models-to-data-rust-s-ex...</a>

Found: October 10, 2025 ID: 1814

xyflow/xyflow

GitHub Trending

[Other] React Flow | Svelte Flow - Powerful open source libraries for building node-based UIs with React (https://reactflow.dev) or Svelte (https://svelteflow.dev). Ready out-of-the-box and infinitely customizable.

Found: October 10, 2025 ID: 1809

[Other] Show HN: I extracted BASIC listings for Tim Hartnell's 1986 book Tim Hartnell was one of the most prolific authors during the early days of the home computing boom, writing many popular books covering genres of games on different platforms and, in this case, artificial intelligence.<p>I&#x27;ve extracted the BASIC program listings from Hartnell&#x27;s 1986 book &#x27;Exploring Artificial Intelligence on Your IBM PC&#x27; and organized them along with a PC-BASIC runtime environment and instructions so you can try these programs out yourself.<p>Even though the AI landscape has changed enormously since Hartnell first wrote this book, I hope one or two of you will get some value out of these program listings if you&#x27;re interested in exploring the fundamentals of AI on home-computing platforms as they were in the 1980&#x27;s.<p>Tim Hartnell unfortunately passed away in 1991 at the young age of 40, and without his writing I imagine more than a few of us would not have found the start in computing we did. Thanks Tim.

Found: October 10, 2025 ID: 1859

[Other] Datastar: Lightweight hypermedia framework for building interactive web apps

Found: October 10, 2025 ID: 1816

Tulsi Pentest

Product Hunt

[Other] Tulsi It Right! Find Vulnerabilities Before Hackers Do! Tulsi PenTest Platform is a proactive penetration testing and vulnerability assessment platform designed for SMBs and enterprises. Our solution combines automated scans with advanced manual testing to deliver comprehensive security insights.

Found: October 10, 2025 ID: 1805

TuTuck

Product Hunt

[Other] The messenger, right in terminal, secure, fast A messenger (server + 2 clients) that works right in terminal, has secure auth via SSH keys, has zero-log system, DMs and global chat and some more things. Ban and unban users, broadcast login / leaving / action. Contributions are welcome :)

Found: October 10, 2025 ID: 1806

Fomr

Product Hunt

[Other] The fastest way to create powerful forms for free Build professional forms without coding using Fomr's drag&drop form builder. Create surveys, contact forms, or sign-up pages. For free.

Found: October 10, 2025 ID: 1807

Usertour

Product Hunt

[Other] open source user onboarding platform Usertour is an open-source user onboarding platform designed for developers. It allows you to create in-app product tours, checklists, and launchers in minutes—effortlessly and with full control.

Found: October 10, 2025 ID: 1808

Protobuf decoder

Product Hunt

[Other] develop,website,tool Browser-based Protocol Buffers decoder supporting hex, Base64, binary inputs withproto parsing.

Found: October 10, 2025 ID: 1810

[CLI Tool] Never worry about leaving your computer unlocked again. Proximity Lock System is a Python CLI tool that automatically locks your system when your paired Bluetooth device (like your phone) goes out of range. It continuously monitors nearby devices, ensuring your computer stays secure when you step away.

Found: October 10, 2025 ID: 1815

Layercode CLI

Product Hunt

[CLI Tool] Build voice AI agents with one command Build a voice AI agent in minutes, straight from your terminal. One command scaffolds your project with built-in tunneling, sample backends, and global edge deployment. Connect via webhook, use existing agent logic, pay only for speech (silence is free).

Found: October 10, 2025 ID: 1818

Temporary Email

Product Hunt

[Other] Create instant, private temporary emails — no signup needed TemporaryEmail.ai lets you create instant, private disposable emails with no signup or ads. Ideal for users who want privacy and for developers who need a simple API to test apps, automate inboxes, or protect staging environments.

Found: October 10, 2025 ID: 1822

Orchestro

Product Hunt

[Other] Trello for Claude Code an MCP server + dashboard Orchestro is an open-source MCP server + real-time dashboard for Claude Code. Think “Trello for Claude Code” with a built-in Scrum Master: Task Decomposition, Dependency Tracking, Pattern Learning, Risk Detection, and a Real-time Dashboard. One-command install

Found: October 10, 2025 ID: 1823

[Other] Show HN: Open source, logical multi-master PostgreSQL replication

Found: October 09, 2025 ID: 1803

[Other] Show HN: Open-Source Voice AI Badge Powered by ESP32+WebRTC hi!<p>video[0]<p>The idea is you could carry around this hardware and ask it any questions about the conference. Who is speaking, what are they speaking about etc... it connects via WebRTC to a LLM and you get a bunch of info.<p>This is a workshop&#x2F;demo project I did for a conference. When I was talking to the organizers I mentioned that I enjoy doing hardware + WebRTC projects. They thought that was cool and so we ran with it.<p>I have been doing these ESP32 + voice ai projects for a bit now. Started with an embedded sdk for livekit[1] that jul 2024 and been noodling with it since then. This code then found its way into pipecat&#x2F;livekit etc...<p>So I hope it inspires you to go build with hardware and webrtc. It&#x27;s a REALLY fun space right now. Lots of different cheap microcontrollers and even more cool projects.<p>[0] <a href="https:&#x2F;&#x2F;www.youtube.com&#x2F;watch?v=gPuNpaL9ig8" rel="nofollow">https:&#x2F;&#x2F;www.youtube.com&#x2F;watch?v=gPuNpaL9ig8</a><p>[1] <a href="https:&#x2F;&#x2F;github.com&#x2F;Sean-Der&#x2F;embedded-sdk" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;Sean-Der&#x2F;embedded-sdk</a>

Found: October 09, 2025 ID: 1804
Previous Page 130 of 221 Next