Audio
π Speech-to-Text That Runs Where You Are
π¦ moonshine-ai/moonshine
Moonshine is an open-source speech-to-text project built to run fast on everyday hardware, including phones, laptops, browsers, and small edge devices. Instead of sending audio to the cloud, it can process speech locally, which helps with privacy, lower cost, and better reliability when internet access is limited. The repository provides compact language models, code examples, and developer tools for real-time captions, voice commands, and transcription in multiple languages. It solves a common problem: speech recognition systems can be slow, expensive, or too heavy for small devices. Moonshine is useful because it makes voice features practical for more products, even with limited compute power.
π https://github.com/moonshine-ai/moonshine
π° https://news.ycombinator.com/item?id=47143755
π’ @hackernewsgithubprojects
π¦ moonshine-ai/moonshine
Moonshine is an open-source speech-to-text project built to run fast on everyday hardware, including phones, laptops, browsers, and small edge devices. Instead of sending audio to the cloud, it can process speech locally, which helps with privacy, lower cost, and better reliability when internet access is limited. The repository provides compact language models, code examples, and developer tools for real-time captions, voice commands, and transcription in multiple languages. It solves a common problem: speech recognition systems can be slow, expensive, or too heavy for small devices. Moonshine is useful because it makes voice features practical for more products, even with limited compute power.
π https://github.com/moonshine-ai/moonshine
π° https://news.ycombinator.com/item?id=47143755
π’ @hackernewsgithubprojects
Audio
π Make Postgres Grow Without Rewriting Your App
π¦ pgdogdev/pgdog
PgDog is an open-source tool that sits between your app and PostgreSQL to help your database handle more traffic and data as you grow. Instead of forcing you to rebuild your app, it automatically routes queries, spreads work across multiple database servers, and can split large datasets into smaller pieces (shards). It also manages connection pooling and failover, so your system stays stable when load spikes or a server has issues. That means teams can scale PostgreSQL more safely, keep performance steady, and avoid expensive database migrations. It is especially useful for products moving from a single database setup to a larger, production-grade architecture.
π https://github.com/pgdogdev/pgdog
π° https://news.ycombinator.com/item?id=47123631
π’ @hackernewsgithubprojects
π¦ pgdogdev/pgdog
PgDog is an open-source tool that sits between your app and PostgreSQL to help your database handle more traffic and data as you grow. Instead of forcing you to rebuild your app, it automatically routes queries, spreads work across multiple database servers, and can split large datasets into smaller pieces (shards). It also manages connection pooling and failover, so your system stays stable when load spikes or a server has issues. That means teams can scale PostgreSQL more safely, keep performance steady, and avoid expensive database migrations. It is especially useful for products moving from a single database setup to a larger, production-grade architecture.
π https://github.com/pgdogdev/pgdog
π° https://news.ycombinator.com/item?id=47123631
π’ @hackernewsgithubprojects
Audio
π Build Software by Stating the Goal
π¦ sandgardenhq/sgai
Sgai is an open-source tool that helps people build software by describing the end result instead of managing every coding step. You set a goal, and a team of AI agents plans the work, writes code, reviews it, and runs checks like tests before marking it complete. The process is shown in a visual dashboard, so you can see what is happening, answer questions, and approve plans before execution. It solves a common problem with AI coding tools: unclear progress and uneven quality. Sgai is useful because it keeps humans in control, makes development more transparent, and runs locally in your own project so your code stays on your machine.
π https://github.com/sandgardenhq/sgai
π° https://news.ycombinator.com/item?id=47153941
π’ @hackernewsgithubprojects
π¦ sandgardenhq/sgai
Sgai is an open-source tool that helps people build software by describing the end result instead of managing every coding step. You set a goal, and a team of AI agents plans the work, writes code, reviews it, and runs checks like tests before marking it complete. The process is shown in a visual dashboard, so you can see what is happening, answer questions, and approve plans before execution. It solves a common problem with AI coding tools: unclear progress and uneven quality. Sgai is useful because it keeps humans in control, makes development more transparent, and runs locally in your own project so your code stays on your machine.
π https://github.com/sandgardenhq/sgai
π° https://news.ycombinator.com/item?id=47153941
π’ @hackernewsgithubprojects
Audio
π Scheme Coding, Finally with Modern Editor Superpowers
π¦ ufo5260987423/scheme-langserver
Scheme-langserver is an open-source helper that brings modern coding features to the Scheme programming language inside editors like VS Code, Neovim, and Helix. It acts as a background assistant while you type, offering smarter autocomplete, jump-to-definition, hover info, symbol search, references, and basic error checks, even when code is still unfinished. That matters because Scheme tools have historically been weaker than those for mainstream languages, making development slower and more frustrating. By analyzing code structure instead of just running it in a REPL, this project gives Scheme developers a more practical, IDE-like experience and helps teams work faster with fewer mistakes.
π https://github.com/ufo5260987423/scheme-langserver
π° https://news.ycombinator.com/item?id=47133716
π’ @hackernewsgithubprojects
π¦ ufo5260987423/scheme-langserver
Scheme-langserver is an open-source helper that brings modern coding features to the Scheme programming language inside editors like VS Code, Neovim, and Helix. It acts as a background assistant while you type, offering smarter autocomplete, jump-to-definition, hover info, symbol search, references, and basic error checks, even when code is still unfinished. That matters because Scheme tools have historically been weaker than those for mainstream languages, making development slower and more frustrating. By analyzing code structure instead of just running it in a REPL, this project gives Scheme developers a more practical, IDE-like experience and helps teams work faster with fewer mistakes.
π https://github.com/ufo5260987423/scheme-langserver
π° https://news.ycombinator.com/item?id=47133716
π’ @hackernewsgithubprojects
Audio
π Lock Your .env, Keep AI Out
π¦ greatscott/enveil
ENVeil is a command-line tool that protects app secrets like API keys and database passwords by keeping them out of plain-text `.env` files. Instead of storing real values in your project folder, you save encrypted secrets in a local per-project vault and reference them with simple placeholders. When you start your app through ENVeil, it asks for your password, unlocks the secrets in memory, and injects them at runtime. This solves a growing problem: coding assistants and other tools can scan project files and accidentally expose sensitive data. ENVeil is useful because it reduces secret leaks without changing your normal development workflow too much.
π https://github.com/GreatScott/enveil
π° https://news.ycombinator.com/item?id=47133055
π’ @hackernewsgithubprojects
π¦ greatscott/enveil
ENVeil is a command-line tool that protects app secrets like API keys and database passwords by keeping them out of plain-text `.env` files. Instead of storing real values in your project folder, you save encrypted secrets in a local per-project vault and reference them with simple placeholders. When you start your app through ENVeil, it asks for your password, unlocks the secrets in memory, and injects them at runtime. This solves a growing problem: coding assistants and other tools can scan project files and accidentally expose sensitive data. ENVeil is useful because it reduces secret leaks without changing your normal development workflow too much.
π https://github.com/GreatScott/enveil
π° https://news.ycombinator.com/item?id=47133055
π’ @hackernewsgithubprojects
Audio
π One Dashboard for Many AI Coding Helpers
π¦ generalaction/emdash
Emdash is an open-source desktop app that helps software teams run multiple AI coding assistants at the same time, without their work colliding. Instead of juggling separate terminals and branches, you can launch several agents in parallel, keep each task isolated, and compare their code changes side by side. It also connects to tools like GitHub Issues, Jira, and Linear so tasks flow directly into the workspace. The big problem it solves is coordination: testing different solutions quickly while keeping your main codebase clean. That makes development faster, reviews clearer, and experimentation less risky for teams that want to use AI agents productively.
π https://github.com/generalaction/emdash
π° https://news.ycombinator.com/item?id=47140322
π’ @hackernewsgithubprojects
π¦ generalaction/emdash
Emdash is an open-source desktop app that helps software teams run multiple AI coding assistants at the same time, without their work colliding. Instead of juggling separate terminals and branches, you can launch several agents in parallel, keep each task isolated, and compare their code changes side by side. It also connects to tools like GitHub Issues, Jira, and Linear so tasks flow directly into the workspace. The big problem it solves is coordination: testing different solutions quickly while keeping your main codebase clean. That makes development faster, reviews clearer, and experimentation less risky for teams that want to use AI agents productively.
π https://github.com/generalaction/emdash
π° https://news.ycombinator.com/item?id=47140322
π’ @hackernewsgithubprojects
Audio
π Your AI Teamβs Mission Control Room
π¦ meisnerdan/mission-control
Mission Control is an open-source app that helps people organize work when they use AI assistants to get things done. Instead of juggling scattered chats and notes, it gives you one dashboard to plan priorities, assign tasks, track progress, and review results. It is built for solo founders and small teams who want AI agents to handle execution without losing visibility or control. The tool runs locally on your own computer, so your workflow is not tied to a cloud service. In plain terms, it turns AI from a loose helper into a coordinated team, making projects clearer, faster, and easier to manage.
π https://github.com/MeisnerDan/mission-control
π° https://news.ycombinator.com/item?id=47165602
π’ @hackernewsgithubprojects
π¦ meisnerdan/mission-control
Mission Control is an open-source app that helps people organize work when they use AI assistants to get things done. Instead of juggling scattered chats and notes, it gives you one dashboard to plan priorities, assign tasks, track progress, and review results. It is built for solo founders and small teams who want AI agents to handle execution without losing visibility or control. The tool runs locally on your own computer, so your workflow is not tied to a cloud service. In plain terms, it turns AI from a loose helper into a coordinated team, making projects clearer, faster, and easier to manage.
π https://github.com/MeisnerDan/mission-control
π° https://news.ycombinator.com/item?id=47165602
π’ @hackernewsgithubprojects
Audio
π Build Live Web Apps Without Frontend Headaches
π¦ dynamic-alpha/hyper
Hyper is an open-source web framework for Clojure that lets developers build interactive websites using mostly server-side code. Instead of splitting work across a backend, frontend framework, and API layer, Hyper keeps rendering on the server and pushes updates to the browser in real time. This solves a common problem: modern web apps often become complex and fragile because state and logic are spread across many tools. With Hyper, user actions update server state, and the page refreshes automatically without full reloads. That makes it useful for teams who want fast, reactive interfaces with less JavaScript, simpler architecture, and a smoother development workflow.
π https://github.com/dynamic-alpha/hyper
π° https://news.ycombinator.com/item?id=47169948
π’ @hackernewsgithubprojects
π¦ dynamic-alpha/hyper
Hyper is an open-source web framework for Clojure that lets developers build interactive websites using mostly server-side code. Instead of splitting work across a backend, frontend framework, and API layer, Hyper keeps rendering on the server and pushes updates to the browser in real time. This solves a common problem: modern web apps often become complex and fragile because state and logic are spread across many tools. With Hyper, user actions update server state, and the page refreshes automatically without full reloads. That makes it useful for teams who want fast, reactive interfaces with less JavaScript, simpler architecture, and a smoother development workflow.
π https://github.com/dynamic-alpha/hyper
π° https://news.ycombinator.com/item?id=47169948
π’ @hackernewsgithubprojects
Audio
π Tiny AI, Big Math: The AdderBoard Challenge
π¦ anadim/adderboard
AdderBoard is a public challenge and leaderboard for building ultra-small AI models that can reliably add two 10-digit numbers. It gives people a common test, clear rules, and a verification script so every submission is checked the same way, including edge cases and 10,000 random examples. The core problem it tackles is efficiency: how little model size you can use while still getting high accuracy. That matters because smaller models are cheaper, faster, and easier to run on limited hardware. The repo is useful as a learning playground, a fair benchmark for comparing ideas, and a community hub where researchers and hobbyists share compact model designs.
π https://github.com/anadim/AdderBoard
π° https://news.ycombinator.com/item?id=47170030
π’ @hackernewsgithubprojects
π¦ anadim/adderboard
AdderBoard is a public challenge and leaderboard for building ultra-small AI models that can reliably add two 10-digit numbers. It gives people a common test, clear rules, and a verification script so every submission is checked the same way, including edge cases and 10,000 random examples. The core problem it tackles is efficiency: how little model size you can use while still getting high accuracy. That matters because smaller models are cheaper, faster, and easier to run on limited hardware. The repo is useful as a learning playground, a fair benchmark for comparing ideas, and a community hub where researchers and hobbyists share compact model designs.
π https://github.com/anadim/AdderBoard
π° https://news.ycombinator.com/item?id=47170030
π’ @hackernewsgithubprojects
Audio
π Stop Arguing About Code Style: Meet Fantomas
π¦ fsprojects/fantomas
Fantomas is an open-source tool that automatically formats F# code so it looks clean and consistent. Instead of developers spending time fixing spacing, indentation, or line breaks by hand, Fantomas applies shared style rules for them. This solves a common team problem: messy formatting and repeated style debates in code reviews. It can run from the command line, in editors, and in automated build checks, so teams can keep code quality steady without extra effort. The result is easier-to-read code, smaller and clearer change histories, and faster collaboration because people focus on logic and features, not formatting details.
π https://github.com/fsprojects/fantomas
π° https://news.ycombinator.com/item?id=47170193
π’ @hackernewsgithubprojects
π¦ fsprojects/fantomas
Fantomas is an open-source tool that automatically formats F# code so it looks clean and consistent. Instead of developers spending time fixing spacing, indentation, or line breaks by hand, Fantomas applies shared style rules for them. This solves a common team problem: messy formatting and repeated style debates in code reviews. It can run from the command line, in editors, and in automated build checks, so teams can keep code quality steady without extra effort. The result is easier-to-read code, smaller and clearer change histories, and faster collaboration because people focus on logic and features, not formatting details.
π https://github.com/fsprojects/fantomas
π° https://news.ycombinator.com/item?id=47170193
π’ @hackernewsgithubprojects
Audio
π Clean Up Your Codebaseβs Hidden Dependency Mess
π¦ jayu/rev-dep
rev-dep is a command-line tool for JavaScript and TypeScript projects that maps how files and packages depend on each other. It helps teams catch messy architecture early by flagging issues like circular imports, unused files, unused dependencies, missing packages, and imports that break project rules. Instead of running many separate tools, it can run multiple checks in one fast pass, which makes it practical for large codebases and CI pipelines. It is especially useful in monorepos where dependency relationships are hard to track manually. In short, rev-dep gives developers a clearer picture of their codebase, reduces dead code, and makes refactoring safer and faster.
π https://github.com/jayu/rev-dep
π° https://news.ycombinator.com/item?id=47170299
π’ @hackernewsgithubprojects
π¦ jayu/rev-dep
rev-dep is a command-line tool for JavaScript and TypeScript projects that maps how files and packages depend on each other. It helps teams catch messy architecture early by flagging issues like circular imports, unused files, unused dependencies, missing packages, and imports that break project rules. Instead of running many separate tools, it can run multiple checks in one fast pass, which makes it practical for large codebases and CI pipelines. It is especially useful in monorepos where dependency relationships are hard to track manually. In short, rev-dep gives developers a clearer picture of their codebase, reduces dead code, and makes refactoring safer and faster.
π https://github.com/jayu/rev-dep
π° https://news.ycombinator.com/item?id=47170299
π’ @hackernewsgithubprojects
Audio
π Your AI Assistantβs Missing Memory, Fixed
π¦ sukinshetty/nemp-memory
Nemp Memory is a lightweight plugin that gives coding assistants like Claude Code and OpenClaw a reliable memory across sessions. It solves a common frustration: having to repeat your project setup, decisions, and progress every time you start a new chat. Instead of using cloud services or complex databases, Nemp saves everything locally in simple JSON files, so setup is quick and data stays private. It can auto-detect your tech stack, recall saved notes fast, suggest useful things to store, and keep your project context file in sync automatically. This makes onboarding easier, reduces repeated explanations, and helps teams and solo builders work faster with fewer context mistakes.
π https://github.com/SukinShetty/Nemp-memory
π° https://news.ycombinator.com/item?id=47170416
π’ @hackernewsgithubprojects
π¦ sukinshetty/nemp-memory
Nemp Memory is a lightweight plugin that gives coding assistants like Claude Code and OpenClaw a reliable memory across sessions. It solves a common frustration: having to repeat your project setup, decisions, and progress every time you start a new chat. Instead of using cloud services or complex databases, Nemp saves everything locally in simple JSON files, so setup is quick and data stays private. It can auto-detect your tech stack, recall saved notes fast, suggest useful things to store, and keep your project context file in sync automatically. This makes onboarding easier, reduces repeated explanations, and helps teams and solo builders work faster with fewer context mistakes.
π https://github.com/SukinShetty/Nemp-memory
π° https://news.ycombinator.com/item?id=47170416
π’ @hackernewsgithubprojects
Audio
π A Linux Setup That Actually Feels Finished
π¦ basecamp/omarchy
Omarchy is an open-source Linux project from Basecamp that gives people a ready-made desktop experience instead of a do-it-yourself setup. It packages Linux with a polished look, built-in defaults, and a clear point of view, so users can install once and start working quickly. The main problem it solves is setup fatigue: many Linux systems expect you to pick and configure everything on your own. Omarchy reduces that friction by shipping a complete environment out of the box, including visual style and everyday tools. That makes it useful for people who want Linux freedom without spending days tweaking settings before they can be productive.
π https://github.com/basecamp/omarchy
π° https://news.ycombinator.com/item?id=47170615
π’ @hackernewsgithubprojects
π¦ basecamp/omarchy
Omarchy is an open-source Linux project from Basecamp that gives people a ready-made desktop experience instead of a do-it-yourself setup. It packages Linux with a polished look, built-in defaults, and a clear point of view, so users can install once and start working quickly. The main problem it solves is setup fatigue: many Linux systems expect you to pick and configure everything on your own. Omarchy reduces that friction by shipping a complete environment out of the box, including visual style and everyday tools. That makes it useful for people who want Linux freedom without spending days tweaking settings before they can be productive.
π https://github.com/basecamp/omarchy
π° https://news.ycombinator.com/item?id=47170615
π’ @hackernewsgithubprojects
Audio
π Build Smarter Microsoft Office Add-ins
π¦ officedev/office-js
OfficeDev/office-js is Microsoftβs public home for the Office JavaScript platform that powers Office add-ins, which are mini apps that run inside Word, Excel, Outlook, and other Microsoft 365 apps. In simple terms, it helps developers connect custom tools to the documents, spreadsheets, and emails people already use every day. The repository is now mainly used for reporting bugs, tracking API issues, and sharing guidance, while the actual Office.js library is delivered through Microsoftβs official online service. It solves the problem of extending Office without rewriting entire desktop software, making it easier to automate tasks, add features, and keep add-ins updated across web, desktop, and mobile.
π https://github.com/OfficeDev/office-js
π° https://news.ycombinator.com/item?id=47171038
π’ @hackernewsgithubprojects
π¦ officedev/office-js
OfficeDev/office-js is Microsoftβs public home for the Office JavaScript platform that powers Office add-ins, which are mini apps that run inside Word, Excel, Outlook, and other Microsoft 365 apps. In simple terms, it helps developers connect custom tools to the documents, spreadsheets, and emails people already use every day. The repository is now mainly used for reporting bugs, tracking API issues, and sharing guidance, while the actual Office.js library is delivered through Microsoftβs official online service. It solves the problem of extending Office without rewriting entire desktop software, making it easier to automate tasks, add features, and keep add-ins updated across web, desktop, and mobile.
π https://github.com/OfficeDev/office-js
π° https://news.ycombinator.com/item?id=47171038
π’ @hackernewsgithubprojects
Audio
π NornicDB Turns Data Graphs Into Smart Memory
π¦ orneryd/nornicdb
NornicDB is an open-source database built for apps that need both relationships and meaning, such as AI assistants and knowledge tools. It works like Neo4j out of the box, so teams can often switch without rewriting their code, while adding built-in vector search for finding similar ideas in text. The project solves a common pain point: storing connected data and semantic search in separate systems that are harder to run and keep in sync. NornicDB combines them, supports GPU acceleration for faster search, and includes optional AI helper features. That makes it useful for developers who want a simpler setup and quicker, smarter data retrieval.
π https://github.com/orneryd/NornicDB
π° https://news.ycombinator.com/item?id=47171318
π’ @hackernewsgithubprojects
π¦ orneryd/nornicdb
NornicDB is an open-source database built for apps that need both relationships and meaning, such as AI assistants and knowledge tools. It works like Neo4j out of the box, so teams can often switch without rewriting their code, while adding built-in vector search for finding similar ideas in text. The project solves a common pain point: storing connected data and semantic search in separate systems that are harder to run and keep in sync. NornicDB combines them, supports GPU acceleration for faster search, and includes optional AI helper features. That makes it useful for developers who want a simpler setup and quicker, smarter data retrieval.
π https://github.com/orneryd/NornicDB
π° https://news.ycombinator.com/item?id=47171318
π’ @hackernewsgithubprojects
Audio
π Teach Your AI New Tricks, Fast
π¦ anthropics/skills
Anthropicβs `skills` repository is a public library of plug-in style instructions that help Claude handle specific jobs better. Think of each skill as a mini playbook: it tells the AI how to do a task consistently, from document editing and data work to design and software testing. This solves a common problem with AI assistants: they can be helpful but uneven, especially on repeat workflows. By sharing ready-made examples, a clear skill template, and a standard format, the repo makes it easier for teams and individuals to build reliable, reusable AI behavior. It is useful as both a practical toolkit and a learning resource for creating custom AI workflows.
π https://github.com/anthropics/skills
π° https://news.ycombinator.com/item?id=47171432
π’ @hackernewsgithubprojects
π¦ anthropics/skills
Anthropicβs `skills` repository is a public library of plug-in style instructions that help Claude handle specific jobs better. Think of each skill as a mini playbook: it tells the AI how to do a task consistently, from document editing and data work to design and software testing. This solves a common problem with AI assistants: they can be helpful but uneven, especially on repeat workflows. By sharing ready-made examples, a clear skill template, and a standard format, the repo makes it easier for teams and individuals to build reliable, reusable AI behavior. It is useful as both a practical toolkit and a learning resource for creating custom AI workflows.
π https://github.com/anthropics/skills
π° https://news.ycombinator.com/item?id=47171432
π’ @hackernewsgithubprojects
Audio
π Inside MidnightBSD: The Code Behind a Desktop-Friendly OS
π¦ midnightbsd/src
This repository is the full source code for MidnightBSD, an open-source operating system built in the BSD family. In simple terms, it contains the core pieces that make a computer run: system tools, security components, libraries, and the kernel. It solves the problem of depending on closed, fixed software by letting people inspect, build, and customize the operating system themselves. That is useful for developers, system admins, and curious users who want control, transparency, and long-term reliability. It also helps the community improve stability and security over time, since fixes and updates can be shared in the open instead of being locked behind a vendor.
π https://github.com/MidnightBSD/src
π° https://news.ycombinator.com/item?id=47171660
π’ @hackernewsgithubprojects
π¦ midnightbsd/src
This repository is the full source code for MidnightBSD, an open-source operating system built in the BSD family. In simple terms, it contains the core pieces that make a computer run: system tools, security components, libraries, and the kernel. It solves the problem of depending on closed, fixed software by letting people inspect, build, and customize the operating system themselves. That is useful for developers, system admins, and curious users who want control, transparency, and long-term reliability. It also helps the community improve stability and security over time, since fixes and updates can be shared in the open instead of being locked behind a vendor.
π https://github.com/MidnightBSD/src
π° https://news.ycombinator.com/item?id=47171660
π’ @hackernewsgithubprojects
Audio
π Cron Jobs, Without the Headache
π¦ antoniorodr/cronboard
Cronboard is a text-based dashboard that makes it easier to manage scheduled computer tasks, known as cron jobs, on your own machine or on remote servers. Instead of remembering tricky command-line syntax, you can view jobs, create new ones, edit them, pause them, delete them, and check when they last ran or will run next. It also supports common shortcuts like daily or monthly schedules and can connect to other servers over SSH. This is useful for developers, system admins, or tinkerers who rely on automation and want a clearer, safer way to control background jobs without digging through raw cron files.
π https://github.com/antoniorodr/cronboard
π° https://news.ycombinator.com/item?id=47171773
π’ @hackernewsgithubprojects
π¦ antoniorodr/cronboard
Cronboard is a text-based dashboard that makes it easier to manage scheduled computer tasks, known as cron jobs, on your own machine or on remote servers. Instead of remembering tricky command-line syntax, you can view jobs, create new ones, edit them, pause them, delete them, and check when they last ran or will run next. It also supports common shortcuts like daily or monthly schedules and can connect to other servers over SSH. This is useful for developers, system admins, or tinkerers who rely on automation and want a clearer, safer way to control background jobs without digging through raw cron files.
π https://github.com/antoniorodr/cronboard
π° https://news.ycombinator.com/item?id=47171773
π’ @hackernewsgithubprojects
Audio
π Blazor Apps Get Their Own DevTools
π¦ joe-gregory/blazor-devtools
Blazor Developer Tools is an open-source browser extension and companion package that helps people inspect and debug Blazor web apps inside Chrome or Edge. Instead of guessing what a page is doing or filling code with temporary log messages, it shows a visual map of the appβs components, lets you click page elements to identify where they come from, and tracks which parts of the app are re-rendering. It also includes performance views that highlight slow or frequently updated components. That makes it useful for developers who want to understand complex Blazor apps faster, fix UI issues more easily, and spot performance problems before they become frustrating.
π https://github.com/joe-gregory/blazor-devtools
π° https://news.ycombinator.com/item?id=47171918
π’ @hackernewsgithubprojects
π¦ joe-gregory/blazor-devtools
Blazor Developer Tools is an open-source browser extension and companion package that helps people inspect and debug Blazor web apps inside Chrome or Edge. Instead of guessing what a page is doing or filling code with temporary log messages, it shows a visual map of the appβs components, lets you click page elements to identify where they come from, and tracks which parts of the app are re-rendering. It also includes performance views that highlight slow or frequently updated components. That makes it useful for developers who want to understand complex Blazor apps faster, fix UI issues more easily, and spot performance problems before they become frustrating.
π https://github.com/joe-gregory/blazor-devtools
π° https://news.ycombinator.com/item?id=47171918
π’ @hackernewsgithubprojects
Audio
π Turn Your Steam Deck Into a USB File Bridge
π¦ dafta/deckmtp
DeckMTP is a plugin for the Steam Deck that lets you move files between the Deck and a computer with a USB cable, similar to how phones can show up for media transfer. It solves a simple but annoying problem: getting screenshots, videos, mods, and other files on or off the device without relying on cloud storage, network setup, or removable drives. The plugin adds an on-device switch for turning this transfer mode on and off and warns users about a required BIOS setting. For Steam Deck owners who want a faster, more direct wired transfer option, it is a practical quality-of-life tool.
π https://github.com/dafta/DeckMTP
π° https://news.ycombinator.com/item?id=47172912
π’ @hackernewsgithubprojects
π¦ dafta/deckmtp
DeckMTP is a plugin for the Steam Deck that lets you move files between the Deck and a computer with a USB cable, similar to how phones can show up for media transfer. It solves a simple but annoying problem: getting screenshots, videos, mods, and other files on or off the device without relying on cloud storage, network setup, or removable drives. The plugin adds an on-device switch for turning this transfer mode on and off and warns users about a required BIOS setting. For Steam Deck owners who want a faster, more direct wired transfer option, it is a practical quality-of-life tool.
π https://github.com/dafta/DeckMTP
π° https://news.ycombinator.com/item?id=47172912
π’ @hackernewsgithubprojects
Audio
π Turn Audio Into Text, Fast
π¦ frikallo/parakeet.cpp
parakeet.cpp is a C++ library that turns spoken audio into written text directly on your device. It focuses on speed and portability, so developers can build transcription features without dragging in large runtimes like Python or heavier machine-learning stacks. Beyond basic speech-to-text, it can handle live streaming audio, add word-level timestamps, and even separate speakers in conversations. That solves a practical problem for apps that need quick, private, local voice processing, such as note takers, meeting tools, or voice interfaces. Its main value is giving teams a lightweight way to add modern speech recognition while keeping performance high and dependencies small.
π https://github.com/Frikallo/parakeet.cpp
π° https://news.ycombinator.com/item?id=47176239
π’ @hackernewsgithubprojects
π¦ frikallo/parakeet.cpp
parakeet.cpp is a C++ library that turns spoken audio into written text directly on your device. It focuses on speed and portability, so developers can build transcription features without dragging in large runtimes like Python or heavier machine-learning stacks. Beyond basic speech-to-text, it can handle live streaming audio, add word-level timestamps, and even separate speakers in conversations. That solves a practical problem for apps that need quick, private, local voice processing, such as note takers, meeting tools, or voice interfaces. Its main value is giving teams a lightweight way to add modern speech recognition while keeping performance high and dependencies small.
π https://github.com/Frikallo/parakeet.cpp
π° https://news.ycombinator.com/item?id=47176239
π’ @hackernewsgithubprojects