frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: The Mog Programming Language

https://moglang.org
66•belisarius222•2h ago•27 comments

Show HN: DenchClaw – Local CRM on Top of OpenClaw

https://github.com/DenchHQ/DenchClaw
51•kumar_abhirup•5h ago•53 comments

Show HN: DopaLoop – Habit tracker for ADHD brains, local-first, no streaks

https://dopaloop.app/de
2•steviee•36m ago•0 comments

Show HN: Free open-source churn prediction for SaaS–Stripe and LLM interventions

https://github.com/ShreyasDasari/churnguard-ai
2•ShreyasDasari•40m ago•1 comments

Show HN: VS Code Agent Kanban: Task Management for the AI-Assisted Developer

https://www.appsoftware.com/blog/introducing-vs-code-agent-kanban-task-management-for-the-ai-assi...
84•gbro3n•10h ago•41 comments

Show HN: I gave my robot physical memory – it stopped repeating mistakes

https://github.com/robotmem/robotmem
14•robotmem•4h ago•1 comments

Show HN: MindfulClaude – Guided breathing during Claude Code's thinking time

https://github.com/halluton/Mindful-Claude
4•kayba•2h ago•0 comments

Show HN: Zenòdot – Find if a book has been translated into your language

https://www.zenodot.app/
9•AusiasTsel•4h ago•9 comments

Show HN: Colchis Log – cryptographic audit trail for AI systems (Python)

https://github.com/GhurtSky-GR13/colchis-log
3•GhurtSky•2h ago•0 comments

Show HN: Ratschn – A local Mac dictation app built with Rust, Tauri and CoreML

https://ratschn.com
3•Edos8877•2h ago•2 comments

Show HN: Time as the 4th Dimension – What if it emerges from rotational motion?

2•lisajguo•2h ago•0 comments

Show HN: We help engineers understand codebases with interactive missions

https://oncode.tech/#for
3•AfthabShiraz•3h ago•1 comments

Show HN: TinyChart. Paste CSV, get shareable chart. No accounts

https://tinychart.io/
4•jordanf•3h ago•1 comments

Show HN: I built a real-time OSINT dashboard pulling 15 live global feeds

https://github.com/BigBodyCobain/Shadowbroker
292•vancecookcobxin•1d ago•111 comments

Show HN: Skir – like Protocol Buffer but better

https://skir.build/
103•gepheum•1d ago•55 comments

Show HN: Caloriva – A calorie tracker that actually understands

2•caloriva•2h ago•0 comments

Show HN: Locode, a local first CLI that routes tasks to local LLMs or Claude

https://github.com/chocks/locode
4•chocks•5h ago•0 comments

Show HN: I built a site where strangers leave kind voice notes for each other

https://kindvoicenotes.com
37•thepaulthomson•22h ago•20 comments

Show HN: Husky hook that blocks Git push until you do your pushups

https://git-push.app
10•zimboy•12h ago•2 comments

Show HN: Run autoresearch on a gaming PC (Windows and RTX GPUs fork)

https://github.com/jsegov/autoresearch-win-rtx
2•segov•6h ago•0 comments

Show HN: Bring your own prompts to remote shells

https://github.com/tgalal/promptcmd/
3•tgalal•6h ago•0 comments

Show HN: Mcp2cli – One CLI for every API, 96-99% fewer tokens than native MCP

https://github.com/knowsuchagency/mcp2cli
138•knowsuchagency•15h ago•98 comments

Show HN: Reviving a 20-year-old puzzle game Chromatron with Ghidra and AI

https://quesma.com/blog/chromatron-recompiled/
23•stared•2d ago•8 comments

Show HN: Eyot, A programming language where the GPU is just another thread

https://cowleyforniastudios.com/2026/03/08/announcing-eyot/
75•steeleduncan•1d ago•16 comments

Show HN: Run 500B+ Parameter LLMs Locally on a Mac Mini

https://github.com/opengraviton/graviton
7•fatihturker•13h ago•4 comments

Show HN: WolfStack – Proxmox-like server management in a single Rust binary

https://wolfscale.org/
30•wolfsoftware•1d ago•2 comments

Show HN: Curiosity – DIY 6" Newtonian Reflector Telescope

https://curiosity-telescope.vercel.app/
80•big_Brain69•1d ago•22 comments

Show HN: OpenMeters – A fast and free audio metering/visualization suite

https://github.com/httpsworldview/openmeters
14•httpsworldview•20h ago•0 comments

Show HN: Engram – open-source persistent memory for AI agents (Bun and SQLite)

https://github.com/zanfiel/engram
2•zanfiel•9h ago•1 comments

Show HN: OxiMedia – Pure Rust Reconstruction of FFmpeg and OpenCV

https://github.com/cool-japan/oximedia
11•kitasan•21h ago•9 comments
Open in hackernews

Show HN: Ratschn – A local Mac dictation app built with Rust, Tauri and CoreML

https://ratschn.com
3•Edos8877•2h ago
Hi HN, I'm the solo developer behind Ratschn.

I type a lot and got extremely frustrated with the current state of Mac dictation tools. Most of them are either heavy Electron wrappers, rely on cloud APIs (a privacy nightmare), or force you into a SaaS subscription for a tool that essentially runs on your own hardware. I wanted something that feels native, respects system resources, and runs entirely offline without forced subscriptions.

The stack is Rust, Tauri, and whisper.cpp. Here are the design decisions I made:

Model Size vs. Accuracy: Instead of using the smallest possible model just to claim a tiny footprint, the app downloads a ~490MB multi-language Whisper model locally on the first run. I found this to be the sweet spot for high accuracy (accents, technical jargon) to drastically reduce text correction time.

Hardware Acceleration: The downloaded model is compiled via CoreML. This allows the transcription to run directly on the Apple Neural Engine (ANE) and Metal on M-series chips, keeping the main CPU largely idle.

Memory Footprint: By using Tauri instead of Electron, the UI footprint is negligible. While actively running, the app takes up around 500MB of RAM. This makes perfect technical sense, as it is almost entirely the ~490MB AI model being actively held in memory to ensure instant transcription the millisecond you hit the global shortcut.

Input Method: It uses macOS accessibility APIs to type directly into your active window.

Business Model & Pricing: I strongly dislike subscription fatigue for local tools. There is a fully functional 7-day free trial (no account required). If you want to keep it, my main focus is a fair one-time purchase (€125 for a lifetime license). However, since I highly value the technical feedback from this community, I generated an exclusive launch code (HN25) that takes 25% off at checkout (dropping it to roughly €93 / ~$100).

Bug Bounty: Since I'm a solo dev, I know I might have missed some edge cases (especially around CoreML compilation on specific M-chips or weird keyboard layouts). If you find a genuine, reproducible bug and take the time to report it here in the thread, I will happily manually upgrade you to a free Lifetime license as a massive thank you for the QA help.

I'd love to hear your technical feedback on the Rust/Tauri architecture or how the CoreML compilation performs on your specific Apple Silicon setup. Happy to answer any questions!

Comments

rekabis•2h ago
Grüße as Kanada!!

Quick question: while I love the offline aspect, how does this handle spelling in relation to context? Is that via a ruleset, or is there some intelligence that learns user speaking patterns and common subjects?

Edos8877•1h ago
Grüße zurück nach Kanada!

Good question! The short answer is, neither. There are no hardcoded rules, but the app also doesn't actively learn your personal speaking patterns over time.

All the context-awareness comes straight from the pre-trained Whisper model. Since it's a transformer network, it looks at the entire sentence context rather than translating word-by-word. For example, if you dictate a sentence about coding, it naturally knows to capitalize "Rust" and "Python" instead of writing about rusty metal and snakes.

I deliberately kept the model static. Trying to fine-tune it locally on the fly would mean I'd have to store your voice data (which kills the 100% privacy promise).

That being said, adding a custom dictionary feature, so you can feed it highly specific industry jargon right before you speak, is at the very top of my to-do list!

Let me know how it handles your vocabulary if you give the trial a spin.