Monday, July 7, 2025

Show HN: Simple wrapper for Chrome's built-in local LLM (Gemini Nano) https://ift.tt/aVL6u8P

Show HN: Simple wrapper for Chrome's built-in local LLM (Gemini Nano) Chrome now includes a native on-device LLM (Gemini Nano) starting in version 138. I've been building with it since it was in origin trials, it's powerful but the official Prompt API is still a bit awkward: - Enforces sessions even for basic usage - Requires user-triggered downloads - Lacks type safety or structured error handling So I open-sourced a small TypeScript wrapper I originally built for other projects to smooth over the rough edges: github: https://ift.tt/i1GBgtZ npm: https://ift.tt/RpvFwUm - Stateless prompt() method inspired by Anthropic's SDK - Built-in error handling and Result-based .Safe.* variants with neverthrow - Token usage checks - Simple initialization that provides a helper to trigger downloads (must be triggered by user action) It’s intentionally minimal for hacking and prototyping. If you need fine-grained control (e.g. streaming, memory control), use the native API directly: https://ift.tt/hLVzSHl Would love to hear what people build with it or any feedback! https://ift.tt/i1GBgtZ July 6, 2025 at 11:24PM

Sunday, July 6, 2025

Show HN: From Photos to Positions: Prototyping VLM-Based Indoor Maps https://ift.tt/a1bnpmO

Show HN: From Photos to Positions: Prototyping VLM-Based Indoor Maps Just a fun hack I did while bored over the weekend. My wife was busy shopping, it got me thinking that can VLMs solve the indoor location problem in a mall? Can I just show a VLM a map and an image and have it doa good enough job locating me? I hacked this P.O.C and it seems to work. https://ift.tt/ohR62eH July 6, 2025 at 04:49AM

Show HN: Distapp. Manage and distribute Android, iOS and Desktop app https://ift.tt/9Z5ndWs

Show HN: Distapp. Manage and distribute Android, iOS and Desktop app Hi HN, I built DistApp, a tool for managing and distributing Android, iOS, and Desktop app builds. I created it after App Center Distribution was discontinued, I wanted a way to easily share builds with the QA team and users with different groups. DistApp lets you manage multiple apps across different organizations and groups. It also supports self-hosting on your own infrastructure and is open-source https://ift.tt/D4fesR0 You can try the free version by signing in with your Google account. I chose not to support email/password accounts to reduce abuse on the free version. But I’m open to suggestions if you think there’s a better way :) Thank you https://ift.tt/y0AVwpN July 5, 2025 at 11:54PM

Show HN: An AI tool that lets you interact with your terminal in plain English https://ift.tt/gmP5z2p

Show HN: An AI tool that lets you interact with your terminal in plain English https://ift.tt/WBl5evK July 5, 2025 at 11:57PM

Saturday, July 5, 2025

Show HN: Golang Challenges: Learn and Practice (See Demo) https://ift.tt/HrqM7YR

Show HN: Golang Challenges: Learn and Practice (See Demo) https://ift.tt/7WDOxIy July 5, 2025 at 01:12AM

Show HN: Browse Netflix and Prime catalogs by country, with multilingual support https://ift.tt/bRmPjiM

Show HN: Browse Netflix and Prime catalogs by country, with multilingual support I shared this a few weeks ago and wanted to post an update since it's improved quite a bit based on feedback. - Titles and overviews are now translated into 18 languages - You can browse full streaming catalogs by country and platform (e.g. Netflix UK, Prime Video Germany) - Catalogs can be filtered by genre,country - Per-season streaming availability is supported for TV shows - The database now includes over 1 Million movies and shows, with 1 million actor pages - Coverage spans more than 130 countries for the movies/shows. - No login, fast load times The goal is to make global streaming availability searchable in a way that JustWatch and others don’t across all countries, with full visibility in one click. Examples: - Netflix UK crime catalog: https://ift.tt/G67m4TJ... Would appreciate feedback, especially around country-based browsing, translations, or anything you think is missing. https://ift.tt/zuGXImx July 5, 2025 at 01:03AM

Show HN: Built a lovable clone to see what makes agentic apps tick https://ift.tt/09gFh7f

Show HN: Built a lovable clone to see what makes agentic apps tick https://ift.tt/k0D94vq July 5, 2025 at 12:58AM

Show HN: Yet Another Memory System for LLM's https://ift.tt/0oZIwAv

Show HN: Yet Another Memory System for LLM's Built this for my LLM workflows - needed searchable, persistent memory that wouldn't bl...