{"exhaustive":{"nbHits":false,"typo":false},"exhaustiveNbHits":false,"exhaustiveTypo":false,"hits":[{"_highlightResult":{"author":{"matchLevel":"none","matchedWords":[],"value":"mrprincerawat"},"title":{"fullyHighlighted":false,"matchLevel":"full","matchedWords":["whisperflow"],"value":"OpenWhispr \u2013 Open-source WhisperFlow alternative, runs on your Mac"},"url":{"matchLevel":"none","matchedWords":[],"value":"https://github.com/MrPrinceRawat/OpenWhispr"}},"_tags":["story","author_mrprincerawat","story_47277099"],"author":"mrprincerawat","children":[47277100],"created_at":"2026-03-06T16:28:46Z","created_at_i":1772814526,"num_comments":0,"objectID":"47277099","points":5,"story_id":47277099,"title":"OpenWhispr \u2013 Open-source WhisperFlow alternative, runs on your Mac","updated_at":"2026-03-07T05:32:46Z","url":"https://github.com/MrPrinceRawat/OpenWhispr"},{"_highlightResult":{"author":{"matchLevel":"none","matchedWords":[],"value":"newtechwiz"},"title":{"fullyHighlighted":false,"matchLevel":"full","matchedWords":["whisperflow"],"value":"Show HN: Free, Open-Source WhisperFlow That Just Works"},"url":{"matchLevel":"none","matchedWords":[],"value":"https://typedwith.ai/"}},"_tags":["story","author_newtechwiz","story_47570412","show_hn"],"author":"newtechwiz","children":[47570742],"created_at":"2026-03-30T04:32:49Z","created_at_i":1774845169,"num_comments":0,"objectID":"47570412","points":3,"story_id":47570412,"title":"Show HN: Free, Open-Source WhisperFlow That Just Works","updated_at":"2026-03-30T17:55:53Z","url":"https://typedwith.ai/"},{"_highlightResult":{"author":{"matchLevel":"none","matchedWords":[],"value":"emillykkeg"},"story_text":{"fullyHighlighted":false,"matchLevel":"full","matchedWords":["whisperflow"],"value":"Hi, I built a free, local-first, open-source Whisper Flow clone that can dictate to any application. Right now it's only for macOS because that's the only computer I have tested and built it on but I think it has potential to be used on a lot of devices."},"title":{"matchLevel":"none","matchedWords":[],"value":"Show HN: I built a free open-source Wispr Flow clone"},"url":{"matchLevel":"none","matchedWords":[],"value":"https://codictate.app"}},"_tags":["story","author_emillykkeg","story_47616062","show_hn"],"author":"emillykkeg","created_at":"2026-04-02T15:48:17Z","created_at_i":1775144897,"num_comments":0,"objectID":"47616062","points":2,"story_id":47616062,"story_text":"Hi, I built a free, local-first, open-source Whisper Flow clone that can dictate to any application. Right now it's only for macOS because that's the only computer I have tested and built it on but I think it has potential to be used on a lot of devices.","title":"Show HN: I built a free open-source Wispr Flow clone","updated_at":"2026-04-30T18:58:52Z","url":"https://codictate.app"},{"_highlightResult":{"author":{"matchLevel":"none","matchedWords":[],"value":"vood"},"story_text":{"fullyHighlighted":false,"matchLevel":"full","matchedWords":["whisperflow"],"value":"Hi HN,

I built AIDictation.com, a voice to text app written in Swift. It sends audio to my own backend, runs it through a Whisper-based pipeline, and returns a transcription you can then send straight into an AI chat like ChatGPT or Claude.

I\u2019ve been building full\u2011stack apps for ~20 years, but this is my first Swift application. I leaned heavily on AI coding tools to get from zero Swift to a working app and backend in a couple of weeks.

What it does

Records audio and sends it to my server.\nThe backend runs a pipeline using Whisper V3 Turbo + OpenAI GPT OSS 120B.

I intentionally went with a cloud pipeline instead of on\u2011device models so I can:\n- Parallelize work on the backend and tune the pipeline.\n- Mix and match providers and models.\n- Improve latency without shipping new app versions.

After transcription, there\u2019s a \u201cshare to AI chat\u201d flow so you can send it with one tap to ChatGPT, Claude, etc.

Context rules\nOne feature I missed in Whisper Flow was configurable context rules (similar to the Super Whisper Modes). AIDictation lets you define how transcription should behave depending on what you\u2019re doing.

For example:\n- Meetings: keep speaker names and timestamps.\n- Coding: preserve technical terms and code formatting.\n- Journaling: be more forgiving, add punctuation, make the text more readable.\n- You can configure different presets and switch between them.

Why cloud instead of on\u2011device

A lot of apps focus on running models locally. I chose the opposite trade\u2011off:\n- Provider flexibility: right now I\u2019m using the Groq API because, in my tests, it had the best end\u2011to\u2011end latency (700-800ms), but the backend is built to swap providers and models.\n- This does mean audio leaves the device, so I tried to be very explicit about data handling.

No registration needed. You get about 2,000 words per month for free without creating an account or giving an email.

Tech stack\nClient: Swift (first real Swift/iOS app I\u2019ve shipped).\nBackend: NodeJS on Vercel.\nModels: Whisper V3 Turbo + OpenAI GPT OSS 120B.\nProvider: Groq API at the moment, mainly for latency reasons.

I\u2019ve been using AIDictation daily for the past couple of weeks, and I\u2019m happy with it so far, but I\u2019d really like candid feedback from HN\u2014both on the product and on the implementation."},"title":{"matchLevel":"none","matchedWords":[],"value":"Show HN: AIDictation \u2013 zero data retention dictation app"},"url":{"matchLevel":"none","matchedWords":[],"value":"https://aidictation.com"}},"_tags":["story","author_vood","story_46094955","show_hn"],"author":"vood","created_at":"2025-11-30T08:40:30Z","created_at_i":1764492030,"num_comments":0,"objectID":"46094955","points":2,"story_id":46094955,"story_text":"Hi HN,

I built AIDictation.com, a voice to text app written in Swift. It sends audio to my own backend, runs it through a Whisper-based pipeline, and returns a transcription you can then send straight into an AI chat like ChatGPT or Claude.

I\u2019ve been building full\u2011stack apps for ~20 years, but this is my first Swift application. I leaned heavily on AI coding tools to get from zero Swift to a working app and backend in a couple of weeks.

What it does

Records audio and sends it to my server.\nThe backend runs a pipeline using Whisper V3 Turbo + OpenAI GPT OSS 120B.

I intentionally went with a cloud pipeline instead of on\u2011device models so I can:\n- Parallelize work on the backend and tune the pipeline.\n- Mix and match providers and models.\n- Improve latency without shipping new app versions.

After transcription, there\u2019s a \u201cshare to AI chat\u201d flow so you can send it with one tap to ChatGPT, Claude, etc.

Context rules\nOne feature I missed in Whisper Flow was configurable context rules (similar to the Super Whisper Modes). AIDictation lets you define how transcription should behave depending on what you\u2019re doing.

For example:\n- Meetings: keep speaker names and timestamps.\n- Coding: preserve technical terms and code formatting.\n- Journaling: be more forgiving, add punctuation, make the text more readable.\n- You can configure different presets and switch between them.

Why cloud instead of on\u2011device

A lot of apps focus on running models locally. I chose the opposite trade\u2011off:\n- Provider flexibility: right now I\u2019m using the Groq API because, in my tests, it had the best end\u2011to\u2011end latency (700-800ms), but the backend is built to swap providers and models.\n- This does mean audio leaves the device, so I tried to be very explicit about data handling.

No registration needed. You get about 2,000 words per month for free without creating an account or giving an email.

Tech stack\nClient: Swift (first real Swift/iOS app I\u2019ve shipped).\nBackend: NodeJS on Vercel.\nModels: Whisper V3 Turbo + OpenAI GPT OSS 120B.\nProvider: Groq API at the moment, mainly for latency reasons.

I\u2019ve been using AIDictation daily for the past couple of weeks, and I\u2019m happy with it so far, but I\u2019d really like candid feedback from HN\u2014both on the product and on the implementation.","title":"Show HN: AIDictation \u2013 zero data retention dictation app","updated_at":"2026-03-05T23:10:38Z","url":"https://aidictation.com"},{"_highlightResult":{"author":{"matchLevel":"none","matchedWords":[],"value":"leopiney"},"story_text":{"fullyHighlighted":false,"matchLevel":"full","matchedWords":["whisperflow"],"value":"Just vibe-coded this app today, hope it works for you if don't want to pay SuperWhisper/WhisperFlow/Monologue apps and happen to have an ElevenLabs subscription."},"title":{"matchLevel":"none","matchedWords":[],"value":"Show HN: macOS ElevenLabs Scribe v2 app"},"url":{"matchLevel":"none","matchedWords":[],"value":"https://github.com/leopiney/elevenscribe"}},"_tags":["story","author_leopiney","story_47405064","show_hn"],"author":"leopiney","created_at":"2026-03-16T21:21:50Z","created_at_i":1773696110,"num_comments":0,"objectID":"47405064","points":1,"story_id":47405064,"story_text":"Just vibe-coded this app today, hope it works for you if don't want to pay SuperWhisper/WhisperFlow/Monologue apps and happen to have an ElevenLabs subscription.","title":"Show HN: macOS ElevenLabs Scribe v2 app","updated_at":"2026-03-16T21:23:24Z","url":"https://github.com/leopiney/elevenscribe"},{"_highlightResult":{"author":{"matchLevel":"none","matchedWords":[],"value":"nirajjha"},"story_text":{"fullyHighlighted":false,"matchLevel":"full","matchedWords":["whisperflow"],"value":"I recently explored Vibe Coding, a new approach to building apps using voice and AI, and wanted to share my experience.

It\u2019s an exciting way to develop without writing every line of code manually. Here\u2019s a quick breakdown:

Vibe Coding Starter Pack: Build Apps by Talking to AI

What is Vibe Coding?\nVibe Coding allows you to create apps by speaking to AI tools like Cursor and Whisper Flow, which convert your ideas into working code. This approach makes development accessible, intuitive, and efficient for both beginners and experienced developers.

How It Works:\nSay your idea \u2192 AI writes the code.\nCursor handles coding; Whisper Flow converts speech to text.\nNo coding experience? No problem\u2014just describe what you want.

Benefits of Vibe Coding\nEffortless development: Voice replaces manual coding.\nFlexible and fast: Iterate with real-time feedback.\nNo syntax struggles: AI does the heavy lifting.\nSecurity matters: Store API keys securely and document everything.

Tools for Vibe Coding\nAI Coding Assistants\nCursor \u2013 AI-powered coding assistant.\nWhisper Flow \u2013 Speech-to-text tool.\nSuper Whisper \u2013 High-performance voice-to-code transcription.

Open-Source Alternatives\nAide \u2013 Lightweight AI coding assistant.\nDSNote \u2013 AI-powered note-taking tool.\nSay \u2013 Open-source speech-to-text for coding.\nSpeech Transcription Tools

For more tools, check out Awesome Whisper.

Curious about Vibe Coding? Explore these tools and start turning your voice into apps today!"},"title":{"matchLevel":"none","matchedWords":[],"value":"Vibe Coding Starter Pack: Build Apps by Talking to AI"}},"_tags":["story","author_nirajjha","story_43025811","ask_hn"],"author":"nirajjha","children":[43025819],"created_at":"2025-02-12T14:38:18Z","created_at_i":1739371098,"num_comments":0,"objectID":"43025811","points":1,"story_id":43025811,"story_text":"I recently explored Vibe Coding, a new approach to building apps using voice and AI, and wanted to share my experience.

It\u2019s an exciting way to develop without writing every line of code manually. Here\u2019s a quick breakdown:

Vibe Coding Starter Pack: Build Apps by Talking to AI

What is Vibe Coding?\nVibe Coding allows you to create apps by speaking to AI tools like Cursor and Whisper Flow, which convert your ideas into working code. This approach makes development accessible, intuitive, and efficient for both beginners and experienced developers.

How It Works:\nSay your idea \u2192 AI writes the code.\nCursor handles coding; Whisper Flow converts speech to text.\nNo coding experience? No problem\u2014just describe what you want.

Benefits of Vibe Coding\nEffortless development: Voice replaces manual coding.\nFlexible and fast: Iterate with real-time feedback.\nNo syntax struggles: AI does the heavy lifting.\nSecurity matters: Store API keys securely and document everything.

Tools for Vibe Coding\nAI Coding Assistants\nCursor \u2013 AI-powered coding assistant.\nWhisper Flow \u2013 Speech-to-text tool.\nSuper Whisper \u2013 High-performance voice-to-code transcription.

Open-Source Alternatives\nAide \u2013 Lightweight AI coding assistant.\nDSNote \u2013 AI-powered note-taking tool.\nSay \u2013 Open-source speech-to-text for coding.\nSpeech Transcription Tools

For more tools, check out Awesome Whisper.

Curious about Vibe Coding? Explore these tools and start turning your voice into apps today!","title":"Vibe Coding Starter Pack: Build Apps by Talking to AI","updated_at":"2025-02-12T14:42:40Z"},{"_highlightResult":{"author":{"matchLevel":"none","matchedWords":[],"value":"js98"},"story_text":{"fullyHighlighted":false,"matchLevel":"full","matchedWords":["whisperflow"],"value":"Looking at tech blogs, HN submissions, et cetera, a lot of content is (partly, increasingly?) generated by AI. The value of the reader's time and slop has been discussed at length. I ask:

Among you, the HN-community who writes, how much do you use AI in the process?

There is somewhat a spectrum from none, to grammarly-style cleanup, to whisprflow to 'look at my project, write me a HN-ready post'.

Personally, I've done a 180, where I started at light touchups to rough draft-to-polished back to almost none, to keep the writing my own (I do some writing at jakobs.dev).

As a reader, do you believe you notice, and care?"},"title":{"matchLevel":"none","matchedWords":[],"value":"Ask HN: How much AI is in your writing?"}},"_tags":["story","author_js98","story_48235223","ask_hn"],"author":"js98","children":[48235280,48235297,48235302,48235497,48235521,48235535,48236259,48236462,48236488,48236669,48237034,48237080,48237344,48237392,48237397,48238456,48239028,48239956,48239970,48240485,48241186,48241204,48241333,48241399,48241777,48245563,48245697,48245714,48255034,48255726,48261408,48261459,48261471,48263145,48263298,48263381,48268090,48272977,48278129],"created_at":"2026-05-22T12:55:35Z","created_at_i":1779454535,"num_comments":37,"objectID":"48235223","points":10,"story_id":48235223,"story_text":"Looking at tech blogs, HN submissions, et cetera, a lot of content is (partly, increasingly?) generated by AI. The value of the reader's time and slop has been discussed at length. I ask:

Among you, the HN-community who writes, how much do you use AI in the process?

There is somewhat a spectrum from none, to grammarly-style cleanup, to whisprflow to 'look at my project, write me a HN-ready post'.

Personally, I've done a 180, where I started at light touchups to rough draft-to-polished back to almost none, to keep the writing my own (I do some writing at jakobs.dev).

As a reader, do you believe you notice, and care?","title":"Ask HN: How much AI is in your writing?","updated_at":"2026-06-05T11:39:04Z"},{"_highlightResult":{"author":{"matchLevel":"none","matchedWords":[],"value":"pHequals7"},"story_text":{"matchLevel":"none","matchedWords":[],"value":"Hey folks, I am the developer behind muesli - which is your one stop app for all your speech to text needs, be it voice dictation or meeting transcriptions that runs on device on your Apple Neural Engine using CoreML based STT models (Parakeet, Whisper, Cohere transcribe). Everything is open source and we are at 160 stars - au naturale - would love for folks to use it and contribute further to the development"},"title":{"fullyHighlighted":false,"matchLevel":"full","matchedWords":["whisperflow"],"value":"Show HN: Muesli \u2013 If Granola and Wisprflow had an open source on device baby"},"url":{"matchLevel":"none","matchedWords":[],"value":"https://freedspeech.xyz"}},"_tags":["story","author_pHequals7","story_48011116","show_hn"],"author":"pHequals7","children":[48011169,48011443,48012136,48014097,48015468,48017818,48017955,48018529,48050353,48134986],"created_at":"2026-05-04T16:41:54Z","created_at_i":1777912914,"num_comments":10,"objectID":"48011116","points":15,"story_id":48011116,"story_text":"Hey folks, I am the developer behind muesli - which is your one stop app for all your speech to text needs, be it voice dictation or meeting transcriptions that runs on device on your Apple Neural Engine using CoreML based STT models (Parakeet, Whisper, Cohere transcribe). Everything is open source and we are at 160 stars - au naturale - would love for folks to use it and contribute further to the development","title":"Show HN: Muesli \u2013 If Granola and Wisprflow had an open source on device baby","updated_at":"2026-07-23T19:23:05Z","url":"https://freedspeech.xyz"},{"_highlightResult":{"author":{"matchLevel":"none","matchedWords":[],"value":"michalwarda"},"title":{"fullyHighlighted":false,"matchLevel":"full","matchedWords":["whisperflow"],"value":"Show HN: QSpeak \u2013 An alternative for WisprFlow supporting local LLMs and Linux"},"url":{"matchLevel":"none","matchedWords":[],"value":"https://qspeak.app"}},"_tags":["story","author_michalwarda","story_43996075","show_hn"],"author":"michalwarda","children":[43996076,43996118],"created_at":"2025-05-15T15:31:07Z","created_at_i":1747323067,"num_comments":3,"objectID":"43996075","points":6,"story_id":43996075,"title":"Show HN: QSpeak \u2013 An alternative for WisprFlow supporting local LLMs and Linux","updated_at":"2025-06-06T00:38:54Z","url":"https://qspeak.app"},{"_highlightResult":{"author":{"matchLevel":"none","matchedWords":[],"value":"josiahsrc"},"story_text":{"fullyHighlighted":false,"matchLevel":"full","matchedWords":["whisperflow"],"value":"Hey HN, I'm Josiah. We love voice dictation, but wanted an open source version for transparency, privacy, and something that everyone could contribute to. So we built Voquill, an open source alternative to WisprFlow, Monologue, and Willow.

It lets you dictate into any desktop app. Press a hotkey, talk, text gets inserted. You can run Whisper locally, use our server, or wire up any provider you want (OpenAI, Claude, Groq, OpenRouter, whatever). You have full control over where your data goes.

Runs on Windows, macOS, and Linux. Open source, AGPLv3, built with Tauri and Rust. We're working on a mobile app too (Flutter).

To try it: Download from the repo or voquill.com. Click "local setup" on first launch. Hope you like it!"},"title":{"fullyHighlighted":false,"matchLevel":"full","matchedWords":["whisperflow"],"value":"Show HN: Voquill - free, open source, cross-platform alternative to WisprFlow"},"url":{"matchLevel":"none","matchedWords":[],"value":"https://github.com/josiahsrc/voquill"}},"_tags":["story","author_josiahsrc","story_47074495","show_hn"],"author":"josiahsrc","created_at":"2026-02-19T14:59:37Z","created_at_i":1771513177,"num_comments":0,"objectID":"47074495","points":6,"story_id":47074495,"story_text":"Hey HN, I'm Josiah. We love voice dictation, but wanted an open source version for transparency, privacy, and something that everyone could contribute to. So we built Voquill, an open source alternative to WisprFlow, Monologue, and Willow.

It lets you dictate into any desktop app. Press a hotkey, talk, text gets inserted. You can run Whisper locally, use our server, or wire up any provider you want (OpenAI, Claude, Groq, OpenRouter, whatever). You have full control over where your data goes.

Runs on Windows, macOS, and Linux. Open source, AGPLv3, built with Tauri and Rust. We're working on a mobile app too (Flutter).

To try it: Download from the repo or voquill.com. Click "local setup" on first launch. Hope you like it!","title":"Show HN: Voquill - free, open source, cross-platform alternative to WisprFlow","updated_at":"2026-03-05T23:35:45Z","url":"https://github.com/josiahsrc/voquill"},{"_highlightResult":{"author":{"matchLevel":"none","matchedWords":[],"value":"speckx"},"title":{"fullyHighlighted":false,"matchLevel":"full","matchedWords":["whisperflow"],"value":"WisprFlow Became the Highest-Leverage Upgrade to My Dev Workflow"},"url":{"fullyHighlighted":false,"matchLevel":"full","matchedWords":["whisperflow"],"value":"https://zackproser.com/blog/wisprflow-high-leverage-workflow"}},"_tags":["story","author_speckx","story_45775874"],"author":"speckx","children":[45776745],"created_at":"2025-10-31T19:39:20Z","created_at_i":1761939560,"num_comments":1,"objectID":"45775874","points":5,"story_id":45775874,"title":"WisprFlow Became the Highest-Leverage Upgrade to My Dev Workflow","updated_at":"2026-03-05T22:59:28Z","url":"https://zackproser.com/blog/wisprflow-high-leverage-workflow"},{"_highlightResult":{"author":{"matchLevel":"none","matchedWords":[],"value":"josiahsrc"},"story_text":{"fullyHighlighted":false,"matchLevel":"full","matchedWords":["whisperflow"],"value":"Hey HN! We love voice dictation, but wanted an open source version for transparency, privacy, and something that everyone could contribute to. So we built Voquill, an open source alternative to WisprFlow, Monologue, and SuperWhisper.

It lets you dictate into any desktop app. Press a hotkey, talk, text gets inserted. You can run Whisper locally, use our server, or wire up any provider you want (OpenAI, Claude, Groq, OpenRouter, whatever). You have full control over where your data goes.

Runs on Windows, MacOS, and Linux. Open source, AGPLv3, built with Tauri and Rust. We're working on a mobile app too (Flutter) that's currently in beta for iOS and android.

To try it: Download from the repo or voquill.com. Click "local setup" on first launch. Hope you like it!"},"title":{"fullyHighlighted":false,"matchLevel":"full","matchedWords":["whisperflow"],"value":"Show HN: Voquill, an open source and cross-platform alternative to wisprflow"},"url":{"matchLevel":"none","matchedWords":[],"value":"https://github.com/josiahsrc/voquill"}},"_tags":["story","author_josiahsrc","story_47236677","show_hn"],"author":"josiahsrc","children":[47237277],"created_at":"2026-03-03T18:33:28Z","created_at_i":1772562808,"num_comments":1,"objectID":"47236677","points":4,"story_id":47236677,"story_text":"Hey HN! We love voice dictation, but wanted an open source version for transparency, privacy, and something that everyone could contribute to. So we built Voquill, an open source alternative to WisprFlow, Monologue, and SuperWhisper.

It lets you dictate into any desktop app. Press a hotkey, talk, text gets inserted. You can run Whisper locally, use our server, or wire up any provider you want (OpenAI, Claude, Groq, OpenRouter, whatever). You have full control over where your data goes.

Runs on Windows, MacOS, and Linux. Open source, AGPLv3, built with Tauri and Rust. We're working on a mobile app too (Flutter) that's currently in beta for iOS and android.

To try it: Download from the repo or voquill.com. Click "local setup" on first launch. Hope you like it!","title":"Show HN: Voquill, an open source and cross-platform alternative to wisprflow","updated_at":"2026-03-06T01:28:58Z","url":"https://github.com/josiahsrc/voquill"},{"_highlightResult":{"author":{"matchLevel":"none","matchedWords":[],"value":"yaseralnajjar"},"title":{"fullyHighlighted":false,"matchLevel":"full","matchedWords":["whisperflow"],"value":"No need to pay a WisprFlow sub, I re-created same user exp for free"},"url":{"matchLevel":"none","matchedWords":[],"value":"https://github.com/yaseralnajjar/v2t"}},"_tags":["story","author_yaseralnajjar","story_47195934"],"author":"yaseralnajjar","children":[47195935,47197912],"created_at":"2026-02-28T14:44:21Z","created_at_i":1772289861,"num_comments":1,"objectID":"47195934","points":4,"story_id":47195934,"title":"No need to pay a WisprFlow sub, I re-created same user exp for free","updated_at":"2026-03-05T23:39:12Z","url":"https://github.com/yaseralnajjar/v2t"},{"_highlightResult":{"author":{"matchLevel":"none","matchedWords":[],"value":"watzon"},"title":{"fullyHighlighted":false,"matchLevel":"full","matchedWords":["whisperflow"],"value":"Open source, Mac-native alternative to SuperWhisper and WisprFlow"},"url":{"matchLevel":"none","matchedWords":[],"value":"https://github.com/watzon/pindrop"}},"_tags":["story","author_watzon","story_47251445"],"author":"watzon","children":[47251446],"created_at":"2026-03-04T18:09:53Z","created_at_i":1772647793,"num_comments":1,"objectID":"47251445","points":3,"story_id":47251445,"title":"Open source, Mac-native alternative to SuperWhisper and WisprFlow","updated_at":"2026-04-21T09:17:04Z","url":"https://github.com/watzon/pindrop"},{"_highlightResult":{"author":{"matchLevel":"none","matchedWords":[],"value":"marksully"},"title":{"fullyHighlighted":false,"matchLevel":"full","matchedWords":["whisperflow"],"value":"SuperCmd \u2013 open-source alternative to Raycast Pro, WisprFlow, and Speechify"},"url":{"matchLevel":"none","matchedWords":[],"value":"https://supercmd.sh/"}},"_tags":["story","author_marksully","story_47702165"],"author":"marksully","created_at":"2026-04-09T11:19:15Z","created_at_i":1775733555,"num_comments":0,"objectID":"47702165","points":3,"story_id":47702165,"title":"SuperCmd \u2013 open-source alternative to Raycast Pro, WisprFlow, and Speechify","updated_at":"2026-04-09T11:41:32Z","url":"https://supercmd.sh/"},{"_highlightResult":{"author":{"matchLevel":"none","matchedWords":[],"value":"aspaler"},"story_text":{"matchLevel":"none","matchedWords":[],"value":"Hi, we've created a desktop voice transcription and AI assistant tool with local models and MCP support working on all major platforms and now it's open source. It's also free to download and use with cloud models. Have fun!"},"title":{"fullyHighlighted":false,"matchLevel":"full","matchedWords":["whisperflow"],"value":"Show HN: An open source WisprFlow alternative for Linux, Windows and Mac"},"url":{"matchLevel":"none","matchedWords":[],"value":"https://github.com/qforge-dev/qspeak"}},"_tags":["story","author_aspaler","story_45997303","show_hn"],"author":"aspaler","created_at":"2025-11-20T20:31:17Z","created_at_i":1763670677,"num_comments":0,"objectID":"45997303","points":3,"story_id":45997303,"story_text":"Hi, we've created a desktop voice transcription and AI assistant tool with local models and MCP support working on all major platforms and now it's open source. It's also free to download and use with cloud models. Have fun!","title":"Show HN: An open source WisprFlow alternative for Linux, Windows and Mac","updated_at":"2026-03-05T23:04:00Z","url":"https://github.com/qforge-dev/qspeak"},{"_highlightResult":{"author":{"matchLevel":"none","matchedWords":[],"value":"nutanc"},"title":{"fullyHighlighted":false,"matchLevel":"full","matchedWords":["whisperflow"],"value":"Killing SaaS. Anatomy of a murder. How I replaced Wisprflow.ai with vibe coding"},"url":{"matchLevel":"none","matchedWords":[],"value":"https://gpt3experiments.substack.com/p/killing-saas-the-anatomy-of-a-murder"}},"_tags":["story","author_nutanc","story_47354128"],"author":"nutanc","created_at":"2026-03-12T17:15:56Z","created_at_i":1773335756,"num_comments":0,"objectID":"47354128","points":2,"story_id":47354128,"title":"Killing SaaS. Anatomy of a murder. How I replaced Wisprflow.ai with vibe coding","updated_at":"2026-03-12T18:02:38Z","url":"https://gpt3experiments.substack.com/p/killing-saas-the-anatomy-of-a-murder"},{"_highlightResult":{"author":{"matchLevel":"none","matchedWords":[],"value":"lucharo"},"story_text":{"fullyHighlighted":false,"matchLevel":"full","matchedWords":["whisperflow"],"value":"Voice-to-text tools like WisprFlow, MacWhisper, and VoiceInk have been getting popular, and I wanted to see how hard it would be to build something similar running entirely locally.

The transcription itself (Whisper via MLX) isn't new \u2014 plenty of people have done that. What I find useful is the combination: transcription, LLM cleanup (Qwen 2.5-3B via Ollama) and pasting wherever your cursor is. That last part is (to me) the magic of tools like WisprFlow, and it turns out you can replicate it in a single Python script, running fully locally with comparable performance to paid subscriptions.

It's a proof of concept more than a polished product, but I've been using it daily. It's a testament to our times that all of this fits in a single script."},"title":{"fullyHighlighted":false,"matchLevel":"full","matchedWords":["whisperflow"],"value":"Show HN: 270 Lines of Python to Replace WisprFlow (Local Whisper and Qwen)"},"url":{"matchLevel":"none","matchedWords":[],"value":"https://github.com/lucharo/voice2text"}},"_tags":["story","author_lucharo","story_46273664","show_hn"],"author":"lucharo","created_at":"2025-12-15T12:34:42Z","created_at_i":1765802082,"num_comments":0,"objectID":"46273664","points":2,"story_id":46273664,"story_text":"Voice-to-text tools like WisprFlow, MacWhisper, and VoiceInk have been getting popular, and I wanted to see how hard it would be to build something similar running entirely locally.

The transcription itself (Whisper via MLX) isn't new \u2014 plenty of people have done that. What I find useful is the combination: transcription, LLM cleanup (Qwen 2.5-3B via Ollama) and pasting wherever your cursor is. That last part is (to me) the magic of tools like WisprFlow, and it turns out you can replicate it in a single Python script, running fully locally with comparable performance to paid subscriptions.

It's a proof of concept more than a polished product, but I've been using it daily. It's a testament to our times that all of this fits in a single script.","title":"Show HN: 270 Lines of Python to Replace WisprFlow (Local Whisper and Qwen)","updated_at":"2026-03-05T23:12:23Z","url":"https://github.com/lucharo/voice2text"},{"_highlightResult":{"author":{"matchLevel":"none","matchedWords":[],"value":"daverad"},"story_text":{"matchLevel":"none","matchedWords":[],"value":"For those interested in practical AI workflows, I just made a quick video showing how I use Raycast as an MCP client to control my to do list through natural language.

Skip to minute 8:30 to see the good stuff - creating, breaking down, and scheduling tasks just by talking to my computer using Raycast's new MCP client (released ~2 weeks ago) to interact with Asana. Not an official integration, but shows the potential of what's possible with MCPs.

Curious if anyone else is experimenting with MCPs for daily work flow? Would love to hear your use cases!"},"title":{"fullyHighlighted":false,"matchLevel":"full","matchedWords":["whisperflow"],"value":"Show HN: My AI-powered voice productivity system with Raycast MCP and WisprFlow"},"url":{"matchLevel":"none","matchedWords":[],"value":"https://www.youtube.com/watch?v=iI3ztIJqwWg"}},"_tags":["story","author_daverad","story_44040989","show_hn"],"author":"daverad","created_at":"2025-05-20T12:49:10Z","created_at_i":1747745350,"num_comments":0,"objectID":"44040989","points":2,"story_id":44040989,"story_text":"For those interested in practical AI workflows, I just made a quick video showing how I use Raycast as an MCP client to control my to do list through natural language.

Skip to minute 8:30 to see the good stuff - creating, breaking down, and scheduling tasks just by talking to my computer using Raycast's new MCP client (released ~2 weeks ago) to interact with Asana. Not an official integration, but shows the potential of what's possible with MCPs.

Curious if anyone else is experimenting with MCPs for daily work flow? Would love to hear your use cases!","title":"Show HN: My AI-powered voice productivity system with Raycast MCP and WisprFlow","updated_at":"2025-05-20T13:06:38Z","url":"https://www.youtube.com/watch?v=iI3ztIJqwWg"},{"_highlightResult":{"author":{"matchLevel":"none","matchedWords":[],"value":"gabeste1n"},"title":{"fullyHighlighted":false,"matchLevel":"full","matchedWords":["whisperflow"],"value":"I built an open source wisprflow"},"url":{"matchLevel":"none","matchedWords":[],"value":"https://github.com/HeroTools/open-wispr"}},"_tags":["story","author_gabeste1n","story_44684132"],"author":"gabeste1n","children":[44684133],"created_at":"2025-07-25T15:18:36Z","created_at_i":1753456716,"num_comments":1,"objectID":"44684132","points":1,"story_id":44684132,"title":"I built an open source wisprflow","updated_at":"2025-07-25T15:21:36Z","url":"https://github.com/HeroTools/open-wispr"},{"_highlightResult":{"author":{"matchLevel":"none","matchedWords":[],"value":"ingve"},"title":{"fullyHighlighted":false,"matchLevel":"full","matchedWords":["whisperflow"],"value":"Wisprflow.ai review: reaching 179WPM and writing software by talking"},"url":{"fullyHighlighted":false,"matchLevel":"full","matchedWords":["whisperflow"],"value":"https://zackproser.com/blog/wisprflow-review"}},"_tags":["story","author_ingve","story_45288759"],"author":"ingve","created_at":"2025-09-18T12:25:48Z","created_at_i":1758198348,"num_comments":0,"objectID":"45288759","points":1,"story_id":45288759,"title":"Wisprflow.ai review: reaching 179WPM and writing software by talking","updated_at":"2026-03-05T22:44:00Z","url":"https://zackproser.com/blog/wisprflow-review"},{"_highlightResult":{"author":{"matchLevel":"none","matchedWords":[],"value":"indescions_2017"},"title":{"fullyHighlighted":false,"matchLevel":"full","matchedWords":["whisperflow"],"value":"Whisperlodge: An ASMR Spa for the Senses"},"url":{"fullyHighlighted":false,"matchLevel":"full","matchedWords":["whisperflow"],"value":"https://whisperlodge.nyc/"}},"_tags":["story","author_indescions_2017","story_15008018"],"author":"indescions_2017","created_at":"2017-08-14T11:54:08Z","created_at_i":1502711648,"num_comments":0,"objectID":"15008018","points":1,"story_id":15008018,"title":"Whisperlodge: An ASMR Spa for the Senses","updated_at":"2024-09-20T01:10:32Z","url":"https://whisperlodge.nyc/"},{"_highlightResult":{"author":{"matchLevel":"none","matchedWords":[],"value":"kodjima33"},"story_text":{"fullyHighlighted":false,"matchLevel":"full","matchedWords":["whisperflow"],"value":"Spent 4 months and built Omi for Desktop, your life architect: It sees your screen, hears your conversations and will advise you on what to do next

Basically Cluely + Rewind + Granola + Wisprflow + ChatGPT + Claude in one app

I talk to claude/chatgpt 24/7 but I find it frustrating that i have to capture/send screenshots of my screen and that it doesn't help proactively during my work

Whenever omi sees something wrong about my workflow, it will send me a proactive notification with advice. It will also point to something I'm missing.

The hardest part was to nail proactivity - after trying 20+ similar tools I didn't find a single one with smart proactive notifications based on content on your screen. I made it look at your screen every second with 4 main prompts:

1. Is the user productive or distracted?

2. Is there anything useful to say right now?

3. is there any task to add to do later?

4. is there anything important to remember about the user?

Full stack: - Swift - Rust backend - Deepgram transcription - Claude code for messaging - GPT 5.4 summaries - Gemini for embeddings and translation

Open source, stores screenshots locally, uses Claude Code for chat. Has cloud to sync with hardware or mobile app but can be disabled in settings"},"title":{"matchLevel":"none","matchedWords":[],"value":"Show HN: Omi \u2013 watches your screen, hears conversations, tells you what to do"},"url":{"matchLevel":"none","matchedWords":[],"value":"https://github.com/BasedHardware/omi"}},"_tags":["story","author_kodjima33","story_47784914","show_hn"],"author":"kodjima33","children":[47784977,47785113,47785116,47785126,47785263,47788031,47788782,47788789,47788923,47789059,47789601,47790341,47790342,47791621,47798427,47801785,47802752,47808491,47815102,47817823,47822056,47826059,47832865,47842626],"created_at":"2026-04-15T20:38:21Z","created_at_i":1776285501,"num_comments":13,"objectID":"47784914","points":19,"story_id":47784914,"story_text":"Spent 4 months and built Omi for Desktop, your life architect: It sees your screen, hears your conversations and will advise you on what to do next

Basically Cluely + Rewind + Granola + Wisprflow + ChatGPT + Claude in one app

I talk to claude/chatgpt 24/7 but I find it frustrating that i have to capture/send screenshots of my screen and that it doesn't help proactively during my work

Whenever omi sees something wrong about my workflow, it will send me a proactive notification with advice. It will also point to something I'm missing.

The hardest part was to nail proactivity - after trying 20+ similar tools I didn't find a single one with smart proactive notifications based on content on your screen. I made it look at your screen every second with 4 main prompts:

1. Is the user productive or distracted?

2. Is there anything useful to say right now?

3. is there any task to add to do later?

4. is there anything important to remember about the user?

Full stack: - Swift - Rust backend - Deepgram transcription - Claude code for messaging - GPT 5.4 summaries - Gemini for embeddings and translation

Open source, stores screenshots locally, uses Claude Code for chat. Has cloud to sync with hardware or mobile app but can be disabled in settings","title":"Show HN: Omi \u2013 watches your screen, hears conversations, tells you what to do","updated_at":"2026-05-03T20:22:32Z","url":"https://github.com/BasedHardware/omi"},{"_highlightResult":{"author":{"matchLevel":"none","matchedWords":[],"value":"probe"},"story_text":{"fullyHighlighted":false,"matchLevel":"full","matchedWords":["whisperflow"],"value":"the full stack for those curious:

brain (gpt-4o + trained on some notes) ||\norchestration (vapi)||\nvoice (elevenlabs)||\nhosting (vercel), database (supabase)||\nsome design inspo from delphi ||\nvibe coding via WisprFlow + cursor/composer ||"},"title":{"matchLevel":"none","matchedWords":[],"value":"Show HN: I built a voice AI investor clone for fun startup pitches"},"url":{"matchLevel":"none","matchedWords":[],"value":"https://parthai.vercel.app/"}},"_tags":["story","author_probe","story_43176532","show_hn"],"author":"probe","children":[43182904],"created_at":"2025-02-25T19:57:49Z","created_at_i":1740513469,"num_comments":1,"objectID":"43176532","points":12,"story_id":43176532,"story_text":"the full stack for those curious:

brain (gpt-4o + trained on some notes) ||\norchestration (vapi)||\nvoice (elevenlabs)||\nhosting (vercel), database (supabase)||\nsome design inspo from delphi ||\nvibe coding via WisprFlow + cursor/composer ||","title":"Show HN: I built a voice AI investor clone for fun startup pitches","updated_at":"2025-03-05T05:47:17Z","url":"https://parthai.vercel.app/"},{"_highlightResult":{"author":{"matchLevel":"none","matchedWords":[],"value":"shoman3003"},"story_text":{"fullyHighlighted":false,"matchLevel":"full","matchedWords":["whisperflow"],"value":"The moment i saw the first llm, i knew the future of tech is keyboardless, actually i was trying to get there before gpt but failed. The fact that its 2026 and most of the industry doesn't see this is baffling to me. When both hardware and software giants are innovating in the same direction (neuralink, apple vision, voice models...etc),

You all think using a keyboard and a mouse all day is normal for primates - but it's completely unnatural! it's killing us slowly, both physically & socially. Like it or not, evolution has a voice here & the spine is not made for this UI. Not to mention a device that isn't very mobile ends up isolating people no matter how much they tried, if you don't believe me through away your laptop for a month & see how much your patterns will change.

We weren't made for this interface, no matter how much we much we got adjusted to it. Imagine if a species of birds had to stop flying for 100 years because of endless storms in a certain region! that 100 year is not enough for evolution to remove the wings & strengthen legs; those birds have to eventually figure out a way to be able to fly again. Lucky for us we are smarter than birds, and we have already built something that might solve it (voice models).

In 20 years; if we are still using a keyboard & a mouse on a daily basis - it would be as awful as not getting to superintelligence. To me, someone who is not using tools like Wisprflow is more or less the same stubborn as someone who refuse to vibe code our of principle.

I am not saying that the future of technology is %100 guaranteed to be voice-first, neuralink might be better idk. What I am %100 sure of is that we will not be using a keyboard & mouse as the input.

The 3 generations that spent their entire life behind a PC in the 20/21st century will be seen as crazy as the soldiers who spend all day underground to click a button inside a missile silo."},"title":{"matchLevel":"none","matchedWords":[],"value":"You all think it's normal to sit behind a laptop all day"}},"_tags":["story","author_shoman3003","story_48668434","ask_hn"],"author":"shoman3003","children":[48668622,48668656,48668684,48668809],"created_at":"2026-06-25T03:23:37Z","created_at_i":1782357817,"num_comments":8,"objectID":"48668434","points":2,"story_id":48668434,"story_text":"The moment i saw the first llm, i knew the future of tech is keyboardless, actually i was trying to get there before gpt but failed. The fact that its 2026 and most of the industry doesn't see this is baffling to me. When both hardware and software giants are innovating in the same direction (neuralink, apple vision, voice models...etc),

You all think using a keyboard and a mouse all day is normal for primates - but it's completely unnatural! it's killing us slowly, both physically & socially. Like it or not, evolution has a voice here & the spine is not made for this UI. Not to mention a device that isn't very mobile ends up isolating people no matter how much they tried, if you don't believe me through away your laptop for a month & see how much your patterns will change.

We weren't made for this interface, no matter how much we much we got adjusted to it. Imagine if a species of birds had to stop flying for 100 years because of endless storms in a certain region! that 100 year is not enough for evolution to remove the wings & strengthen legs; those birds have to eventually figure out a way to be able to fly again. Lucky for us we are smarter than birds, and we have already built something that might solve it (voice models).

In 20 years; if we are still using a keyboard & a mouse on a daily basis - it would be as awful as not getting to superintelligence. To me, someone who is not using tools like Wisprflow is more or less the same stubborn as someone who refuse to vibe code our of principle.

I am not saying that the future of technology is %100 guaranteed to be voice-first, neuralink might be better idk. What I am %100 sure of is that we will not be using a keyboard & mouse as the input.

The 3 generations that spent their entire life behind a PC in the 20/21st century will be seen as crazy as the soldiers who spend all day underground to click a button inside a missile silo.","title":"You all think it's normal to sit behind a laptop all day","updated_at":"2026-06-25T16:16:52Z"},{"_highlightResult":{"author":{"matchLevel":"none","matchedWords":[],"value":"moughxyz"},"story_text":{"fullyHighlighted":false,"matchLevel":"full","matchedWords":["whisperflow"],"value":"My fingers have been aching lately, likely due to inflammation, and I have an important project I need to work on, but haven't been able to put in the time it needs.

I tried the various speech-to-text products out there like WisprFlow and VS Code Speech but they both did a pretty lousy job of converting my speech to code syntax.

I put together this VSCode extension that works very well for my needs, which is dictating code syntax orally and converting it to the right code, based on the context on the page.

So if you have

type User struct {

   ID        string    `json:"uuid" gorm:"primaryKey;type:uuid"`\n\n   | <- cursor here\n
\n}

You can say outloud:

"Updated at time dot time json updated at not null"

and it will convert it to:

type User struct {

   ID        string    `json:"uuid" gorm:"primaryKey;type:uuid"`\n\n   UpdatedAt time.Time `json:"UpdatedAt" gorm:"not null"`\n
\n}

Demo video: https://x.com/moughxyz/status/1948477448838152259

Direct download link: https://marketplace.visualstudio.com/items?itemName=moughxyz..."},"title":{"matchLevel":"none","matchedWords":[],"value":"Show HN: Inflammation \u2013 Intelligent Voice to Code for Cursor and VSCode"},"url":{"matchLevel":"none","matchedWords":[],"value":"https://github.com/moughxyz/inflammation"}},"_tags":["story","author_moughxyz","story_44675798","show_hn"],"author":"moughxyz","created_at":"2025-07-24T20:37:42Z","created_at_i":1753389462,"num_comments":0,"objectID":"44675798","points":2,"story_id":44675798,"story_text":"My fingers have been aching lately, likely due to inflammation, and I have an important project I need to work on, but haven't been able to put in the time it needs.

I tried the various speech-to-text products out there like WisprFlow and VS Code Speech but they both did a pretty lousy job of converting my speech to code syntax.

I put together this VSCode extension that works very well for my needs, which is dictating code syntax orally and converting it to the right code, based on the context on the page.

So if you have

type User struct {

   ID        string    `json:"uuid" gorm:"primaryKey;type:uuid"`\n\n   | <- cursor here\n
\n}

You can say outloud:

"Updated at time dot time json updated at not null"

and it will convert it to:

type User struct {

   ID        string    `json:"uuid" gorm:"primaryKey;type:uuid"`\n\n   UpdatedAt time.Time `json:"UpdatedAt" gorm:"not null"`\n
\n}

Demo video: https://x.com/moughxyz/status/1948477448838152259

Direct download link: https://marketplace.visualstudio.com/items?itemName=moughxyz...","title":"Show HN: Inflammation \u2013 Intelligent Voice to Code for Cursor and VSCode","updated_at":"2025-07-24T20:40:47Z","url":"https://github.com/moughxyz/inflammation"},{"_highlightResult":{"author":{"matchLevel":"none","matchedWords":[],"value":"moona3k"},"story_text":{"fullyHighlighted":false,"matchLevel":"full","matchedWords":["whisperflow"],"value":"i mainly focused on just the things i need:\n- wisprflow-like UIUX for dictation\n- youtube transcription & export

(it runs on parakeet so only english + european languages are supported)

i'm sure there are many other apps already with much wider features (handy is a great example!), but in the spirit of mario (pi creator), "there are many voice transcription apps, but this one is mine.""},"title":{"matchLevel":"none","matchedWords":[],"value":"Show HN: MacParakeet \u2013 Local voice dictation and transcription for Mac (GPL-3.0)"},"url":{"matchLevel":"none","matchedWords":[],"value":"https://github.com/moona3k/macparakeet"}},"_tags":["story","author_moona3k","story_47525645","show_hn"],"author":"moona3k","created_at":"2026-03-26T01:23:36Z","created_at_i":1774488216,"num_comments":0,"objectID":"47525645","points":1,"story_id":47525645,"story_text":"i mainly focused on just the things i need:\n- wisprflow-like UIUX for dictation\n- youtube transcription & export

(it runs on parakeet so only english + european languages are supported)

i'm sure there are many other apps already with much wider features (handy is a great example!), but in the spirit of mario (pi creator), "there are many voice transcription apps, but this one is mine."","title":"Show HN: MacParakeet \u2013 Local voice dictation and transcription for Mac (GPL-3.0)","updated_at":"2026-03-27T03:51:06Z","url":"https://github.com/moona3k/macparakeet"},{"_highlightResult":{"author":{"matchLevel":"none","matchedWords":[],"value":"Patt_"},"story_text":{"fullyHighlighted":false,"matchLevel":"full","matchedWords":["whisperflow"],"value":"I wanted something really simple: click record, speak, get text.

I tried a bunch of existing tools (SuperWhisper, Aqua Voice, Wisprflow, etc.). They\u2019re solid products, but the setup friction killed it for me. By the time everything was ready, the thought I wanted to capture was gone.

So I built a simpler version that runs entirely in a browser tab.

No install, no signup, no setup. Just works if you have a browser and a mic.

I keep it pinned and use it for quick notes, writing, and anything where speaking is faster than typing."},"title":{"matchLevel":"none","matchedWords":[],"value":"Show HN: Voice-to-Text in a Browser Tab"},"url":{"matchLevel":"none","matchedWords":[],"value":"https://donetyping.com/"}},"_tags":["story","author_Patt_","story_47517863","show_hn"],"author":"Patt_","created_at":"2026-03-25T14:32:14Z","created_at_i":1774449134,"num_comments":0,"objectID":"47517863","points":1,"story_id":47517863,"story_text":"I wanted something really simple: click record, speak, get text.

I tried a bunch of existing tools (SuperWhisper, Aqua Voice, Wisprflow, etc.). They\u2019re solid products, but the setup friction killed it for me. By the time everything was ready, the thought I wanted to capture was gone.

So I built a simpler version that runs entirely in a browser tab.

No install, no signup, no setup. Just works if you have a browser and a mic.

I keep it pinned and use it for quick notes, writing, and anything where speaking is faster than typing.","title":"Show HN: Voice-to-Text in a Browser Tab","updated_at":"2026-03-25T14:37:00Z","url":"https://donetyping.com/"},{"_highlightResult":{"author":{"matchLevel":"none","matchedWords":[],"value":"GFuller"},"story_text":{"fullyHighlighted":false,"matchLevel":"full","matchedWords":["whisperflow"],"value":"Not a startup attempt, just a weekend project for my family. My parents do a daily quiz, but the site they use looks like it was built in 1999 and not touched since. I thought it\u2019d be a fun excuse to rebuild something simple and leverage AI for automation.

The app uses 5 agents to generate a 10 question general knowledge quiz, daily, with loose association to a random topic. It also allows for user generated quizzes based on a provided topic.

Side note: I built the majority of it whilst riding my indoor bike. Claude Code + WisprFlow is insanely good these days."},"title":{"matchLevel":"none","matchedWords":[],"value":"Show HN: An AI-generated daily quiz app I built on my bike"},"url":{"matchLevel":"none","matchedWords":[],"value":"https://www.dailyquiz.ai"}},"_tags":["story","author_GFuller","story_46396215","show_hn"],"author":"GFuller","created_at":"2025-12-26T21:01:45Z","created_at_i":1766782905,"num_comments":0,"objectID":"46396215","points":1,"story_id":46396215,"story_text":"Not a startup attempt, just a weekend project for my family. My parents do a daily quiz, but the site they use looks like it was built in 1999 and not touched since. I thought it\u2019d be a fun excuse to rebuild something simple and leverage AI for automation.

The app uses 5 agents to generate a 10 question general knowledge quiz, daily, with loose association to a random topic. It also allows for user generated quizzes based on a provided topic.

Side note: I built the majority of it whilst riding my indoor bike. Claude Code + WisprFlow is insanely good these days.","title":"Show HN: An AI-generated daily quiz app I built on my bike","updated_at":"2026-03-05T23:19:06Z","url":"https://www.dailyquiz.ai"},{"_highlightResult":{"author":{"matchLevel":"none","matchedWords":[],"value":"laurex"},"title":{"matchLevel":"none","matchedWords":[],"value":"Inside the Whispery, Wonderful Golden Age of ASMR"},"url":{"fullyHighlighted":false,"matchLevel":"full","matchedWords":["whisperflow"],"value":"https://www.newsweek.com/2018/09/07/asmr-whisper-videos-tingles-craig-richard-whisperlodge-1096749.html"}},"_tags":["story","author_laurex","story_17893633"],"author":"laurex","children":[17894357,17903534,17906239,17906800,17907071,17907190,17907308],"created_at":"2018-09-01T19:55:24Z","created_at_i":1535831724,"num_comments":42,"objectID":"17893633","points":49,"story_id":17893633,"title":"Inside the Whispery, Wonderful Golden Age of ASMR","updated_at":"2024-09-20T03:02:40Z","url":"https://www.newsweek.com/2018/09/07/asmr-whisper-videos-tingles-craig-richard-whisperlodge-1096749.html"},{"_highlightResult":{"author":{"matchLevel":"none","matchedWords":[],"value":"divyanthj"},"story_text":{"matchLevel":"none","matchedWords":[],"value":"My girlfriend relocated to Bangalore from Pune and was struggling to talk to cab drivers. So I built this simple app to instantly translate voice.

The app even auto-detects the other person's language; ideal for when you have set the language to "Tamil" when the other person was actually speaking in "Kannada" and you didn't realize it.

I used OpenAI's Whisper and TTS for this."},"title":{"matchLevel":"none","matchedWords":[],"value":"Show HN: I built a free voice translation tool using OpenAI"},"url":{"fullyHighlighted":false,"matchLevel":"full","matchedWords":["whisperflow"],"value":"https://www.whisperglot.ai/"}},"_tags":["story","author_divyanthj","story_43491095","show_hn"],"author":"divyanthj","created_at":"2025-03-27T07:09:17Z","created_at_i":1743059357,"num_comments":0,"objectID":"43491095","points":5,"story_id":43491095,"story_text":"My girlfriend relocated to Bangalore from Pune and was struggling to talk to cab drivers. So I built this simple app to instantly translate voice.

The app even auto-detects the other person's language; ideal for when you have set the language to "Tamil" when the other person was actually speaking in "Kannada" and you didn't realize it.

I used OpenAI's Whisper and TTS for this.","title":"Show HN: I built a free voice translation tool using OpenAI","updated_at":"2025-03-28T01:47:43Z","url":"https://www.whisperglot.ai/"},{"_highlightResult":{"author":{"matchLevel":"none","matchedWords":[],"value":"strax01"},"title":{"matchLevel":"none","matchedWords":[],"value":"Why is Wispr Flow a $2B company?"},"url":{"fullyHighlighted":false,"matchLevel":"full","matchedWords":["whisperflow"],"value":"https://wisprflow.ai"}},"_tags":["story","author_strax01","story_49234651"],"author":"strax01","children":[49234652],"created_at":"2026-08-09T19:14:03Z","created_at_i":1786302843,"num_comments":1,"objectID":"49234651","points":3,"story_id":49234651,"title":"Why is Wispr Flow a $2B company?","updated_at":"2026-08-10T02:43:05Z","url":"https://wisprflow.ai"},{"_highlightResult":{"author":{"matchLevel":"none","matchedWords":[],"value":"freediver"},"title":{"matchLevel":"none","matchedWords":[],"value":"Voice Is My New Keyboard"},"url":{"fullyHighlighted":false,"matchLevel":"full","matchedWords":["whisperflow"],"value":"https://sanju.sh/wisprflow/"}},"_tags":["story","author_freediver","story_48815637"],"author":"freediver","children":[48815776,48822966,48873948],"created_at":"2026-07-07T09:55:10Z","created_at_i":1783418110,"num_comments":2,"objectID":"48815637","points":2,"story_id":48815637,"title":"Voice Is My New Keyboard","updated_at":"2026-07-16T07:14:07Z","url":"https://sanju.sh/wisprflow/"},{"_highlightResult":{"author":{"matchLevel":"none","matchedWords":[],"value":"ayushchat"},"title":{"matchLevel":"none","matchedWords":[],"value":"Wispr Flow Is Broken"},"url":{"fullyHighlighted":false,"matchLevel":"full","matchedWords":["whisperflow"],"value":"https://old.reddit.com/r/WisprFlow/comments/1thejf4/wisprflow_what_is_going_on/"}},"_tags":["story","author_ayushchat","story_48218435"],"author":"ayushchat","created_at":"2026-05-21T05:53:21Z","created_at_i":1779342801,"num_comments":0,"objectID":"48218435","points":2,"story_id":48218435,"title":"Wispr Flow Is Broken","updated_at":"2026-05-21T11:09:05Z","url":"https://old.reddit.com/r/WisprFlow/comments/1thejf4/wisprflow_what_is_going_on/"},{"_highlightResult":{"author":{"matchLevel":"none","matchedWords":[],"value":"eustoria"},"title":{"matchLevel":"none","matchedWords":[],"value":"Wispr Flow \u2013 Effortless Voice Dictation"},"url":{"fullyHighlighted":false,"matchLevel":"full","matchedWords":["whisperflow"],"value":"https://wisprflow.ai"}},"_tags":["story","author_eustoria","story_46767397"],"author":"eustoria","created_at":"2026-01-26T16:09:19Z","created_at_i":1769443759,"num_comments":0,"objectID":"46767397","points":1,"story_id":46767397,"title":"Wispr Flow \u2013 Effortless Voice Dictation","updated_at":"2026-03-05T23:26:03Z","url":"https://wisprflow.ai"},{"_highlightResult":{"author":{"matchLevel":"none","matchedWords":[],"value":"kdavis"},"title":{"matchLevel":"none","matchedWords":[],"value":"Talk to Your Multilingual AI Assistant"},"url":{"fullyHighlighted":false,"matchLevel":"full","matchedWords":["whisperflow"],"value":"https://huggingface.co/spaces/ysharma/Talk_to_Multilingual_AI_WhisperBloomCoqui"}},"_tags":["story","author_kdavis","story_32949344"],"author":"kdavis","created_at":"2022-09-23T08:29:29Z","created_at_i":1663921769,"num_comments":0,"objectID":"32949344","points":1,"story_id":32949344,"title":"Talk to Your Multilingual AI Assistant","updated_at":"2024-09-20T12:05:41Z","url":"https://huggingface.co/spaces/ysharma/Talk_to_Multilingual_AI_WhisperBloomCoqui"},{"_highlightResult":{"author":{"matchLevel":"none","matchedWords":[],"value":"triptronic"},"title":{"matchLevel":"none","matchedWords":[],"value":"Demystifying Website User Experience"},"url":{"fullyHighlighted":false,"matchLevel":"full","matchedWords":["whisperflow"],"value":"https://whisperlouder.com/website-user-experience-ux/"}},"_tags":["story","author_triptronic","story_27038504"],"author":"triptronic","created_at":"2021-05-04T15:17:47Z","created_at_i":1620141467,"num_comments":0,"objectID":"27038504","points":1,"story_id":27038504,"title":"Demystifying Website User Experience","updated_at":"2024-09-20T08:30:54Z","url":"https://whisperlouder.com/website-user-experience-ux/"},{"_highlightResult":{"author":{"fullyHighlighted":true,"matchLevel":"full","matchedWords":["whisperflow"],"value":"whispersnow"},"title":{"matchLevel":"none","matchedWords":[],"value":"Data salaries at FAANG companies in 2022"},"url":{"matchLevel":"none","matchedWords":[],"value":"https://medium.com/@mikldd/data-salaries-at-faang-companies-in-2022-29d5b56b2428"}},"_tags":["story","author_whispersnow","story_33036807"],"author":"whispersnow","children":[33037020,33037110,33037123,33037579,33037592,33037688,33038333],"created_at":"2022-09-30T16:12:45Z","created_at_i":1664554365,"num_comments":78,"objectID":"33036807","points":41,"story_id":33036807,"title":"Data salaries at FAANG companies in 2022","updated_at":"2024-09-20T12:11:46Z","url":"https://medium.com/@mikldd/data-salaries-at-faang-companies-in-2022-29d5b56b2428"},{"_highlightResult":{"author":{"fullyHighlighted":true,"matchLevel":"full","matchedWords":["whisperflow"],"value":"whispersnow"},"title":{"matchLevel":"none","matchedWords":[],"value":"Microservices Retrospective \u2013 What We Learned (and Didn\u2019t Learn) from Netflix"},"url":{"matchLevel":"none","matchedWords":[],"value":"https://www.infoq.com/presentations/microservices-netflix-industry/"}},"_tags":["story","author_whispersnow","story_37095885"],"author":"whispersnow","children":[37098348],"created_at":"2023-08-12T01:05:18Z","created_at_i":1691802318,"num_comments":0,"objectID":"37095885","points":24,"story_id":37095885,"title":"Microservices Retrospective \u2013 What We Learned (and Didn\u2019t Learn) from Netflix","updated_at":"2024-09-20T14:54:48Z","url":"https://www.infoq.com/presentations/microservices-netflix-industry/"},{"_highlightResult":{"author":{"fullyHighlighted":true,"matchLevel":"full","matchedWords":["whisperflow"],"value":"whispersnow"},"title":{"matchLevel":"none","matchedWords":[],"value":"Go 1.18 Stabilizes Generics, Fuzzing, Multi-Module Support,Improves Performance"},"url":{"matchLevel":"none","matchedWords":[],"value":"https://www.infoq.com/news/2022/03/go-1-18-stable/"}},"_tags":["story","author_whispersnow","story_31346891"],"author":"whispersnow","created_at":"2022-05-11T22:42:55Z","created_at_i":1652308975,"num_comments":0,"objectID":"31346891","points":19,"story_id":31346891,"title":"Go 1.18 Stabilizes Generics, Fuzzing, Multi-Module Support,Improves Performance","updated_at":"2024-09-20T11:07:12Z","url":"https://www.infoq.com/news/2022/03/go-1-18-stable/"},{"_highlightResult":{"author":{"fullyHighlighted":true,"matchLevel":"full","matchedWords":["whisperflow"],"value":"whispersnow"},"story_text":{"matchLevel":"none","matchedWords":[],"value":"I thought lisp is losing its audiences but seeing more Lisp posts on front page recently. Is it coming back?"},"title":{"matchLevel":"none","matchedWords":[],"value":"Is Lisp Regaining Popularity?"}},"_tags":["story","author_whispersnow","story_32842037","ask_hn"],"author":"whispersnow","children":[32842641,32845571,32855254,32856203,32902651],"created_at":"2022-09-14T19:23:50Z","created_at_i":1663183430,"num_comments":14,"objectID":"32842037","points":12,"story_id":32842037,"story_text":"I thought lisp is losing its audiences but seeing more Lisp posts on front page recently. Is it coming back?","title":"Is Lisp Regaining Popularity?","updated_at":"2024-09-20T12:02:07Z"},{"_highlightResult":{"author":{"fullyHighlighted":true,"matchLevel":"full","matchedWords":["whisperflow"],"value":"whispersnow"},"title":{"matchLevel":"none","matchedWords":[],"value":"Where Did Covid Go?"},"url":{"matchLevel":"none","matchedWords":[],"value":"https://medium.com/the-nuance/where-did-covid-go-16eb997a6980"}},"_tags":["story","author_whispersnow","story_36816010"],"author":"whispersnow","created_at":"2023-07-21T16:38:37Z","created_at_i":1689957517,"num_comments":0,"objectID":"36816010","points":11,"story_id":36816010,"title":"Where Did Covid Go?","updated_at":"2024-09-20T14:34:41Z","url":"https://medium.com/the-nuance/where-did-covid-go-16eb997a6980"},{"_highlightResult":{"author":{"fullyHighlighted":true,"matchLevel":"full","matchedWords":["whisperflow"],"value":"whispersnow"},"story_text":{"matchLevel":"none","matchedWords":[],"value":"with their own definition and interpretation that almost feel like a mkt buzz word and I am totally confused..."},"title":{"matchLevel":"none","matchedWords":[],"value":"What does \u201cserverless\u201d mean to you? So many companies are using it"}},"_tags":["story","author_whispersnow","story_32928816","ask_hn"],"author":"whispersnow","children":[32928894,32929219,32929594,32929929,32930440,32931115,32931203,32959912],"created_at":"2022-09-21T18:01:37Z","created_at_i":1663783297,"num_comments":19,"objectID":"32928816","points":8,"story_id":32928816,"story_text":"with their own definition and interpretation that almost feel like a mkt buzz word and I am totally confused...","title":"What does \u201cserverless\u201d mean to you? So many companies are using it","updated_at":"2024-09-20T12:03:41Z"},{"_highlightResult":{"author":{"fullyHighlighted":true,"matchLevel":"full","matchedWords":["whisperflow"],"value":"whispersnow"},"title":{"matchLevel":"none","matchedWords":[],"value":"UPS's hiring process takes only 25 minutes"},"url":{"matchLevel":"none","matchedWords":[],"value":"https://www.npr.org/2022/09/10/1122234117/ups-hiring-100000-workers-holiday-shopping"}},"_tags":["story","author_whispersnow","story_32953944"],"author":"whispersnow","children":[32954186,32954668],"created_at":"2022-09-23T16:20:39Z","created_at_i":1663950039,"num_comments":2,"objectID":"32953944","points":8,"story_id":32953944,"title":"UPS's hiring process takes only 25 minutes","updated_at":"2024-09-20T12:06:02Z","url":"https://www.npr.org/2022/09/10/1122234117/ups-hiring-100000-workers-holiday-shopping"},{"_highlightResult":{"author":{"fullyHighlighted":true,"matchLevel":"full","matchedWords":["whisperflow"],"value":"whispersnow"},"title":{"matchLevel":"none","matchedWords":[],"value":"Twitter is launching its \u2018Close Friends\u2019 feature Circle globally"},"url":{"matchLevel":"none","matchedWords":[],"value":"https://techcrunch.com/2022/08/30/twitter-is-launching-its-close-friends-feature-circle-globally/"}},"_tags":["story","author_whispersnow","story_32652416"],"author":"whispersnow","children":[32653169,32654380],"created_at":"2022-08-30T16:44:23Z","created_at_i":1661877863,"num_comments":2,"objectID":"32652416","points":6,"story_id":32652416,"title":"Twitter is launching its \u2018Close Friends\u2019 feature Circle globally","updated_at":"2024-09-20T11:54:41Z","url":"https://techcrunch.com/2022/08/30/twitter-is-launching-its-close-friends-feature-circle-globally/"},{"_highlightResult":{"author":{"fullyHighlighted":true,"matchLevel":"full","matchedWords":["whisperflow"],"value":"whispersnow"},"title":{"matchLevel":"none","matchedWords":[],"value":"Raft Engine: A Log-Structured Embedded Storage Engine for Multi-Raft Logs InTiKV"},"url":{"matchLevel":"none","matchedWords":[],"value":"https://www.infoq.com/articles/raft-engine-tikv-database/"}},"_tags":["story","author_whispersnow","story_31356363"],"author":"whispersnow","created_at":"2022-05-12T16:27:11Z","created_at_i":1652372831,"num_comments":0,"objectID":"31356363","points":5,"story_id":31356363,"title":"Raft Engine: A Log-Structured Embedded Storage Engine for Multi-Raft Logs InTiKV","updated_at":"2024-09-20T11:08:10Z","url":"https://www.infoq.com/articles/raft-engine-tikv-database/"},{"_highlightResult":{"author":{"fullyHighlighted":true,"matchLevel":"full","matchedWords":["whisperflow"],"value":"whispersnow"},"title":{"matchLevel":"none","matchedWords":[],"value":"Rust for the Linux Kernel Updated"},"url":{"matchLevel":"none","matchedWords":[],"value":"https://www.phoronix.com/scan.php?page=news_item&px=Rust-Linux-v7-Plus-New-Uutils"}},"_tags":["story","author_whispersnow","story_31486049"],"author":"whispersnow","children":[31486050],"created_at":"2022-05-23T23:17:04Z","created_at_i":1653347824,"num_comments":1,"objectID":"31486049","points":4,"story_id":31486049,"title":"Rust for the Linux Kernel Updated","updated_at":"2024-09-20T11:14:14Z","url":"https://www.phoronix.com/scan.php?page=news_item&px=Rust-Linux-v7-Plus-New-Uutils"},{"_highlightResult":{"author":{"fullyHighlighted":true,"matchLevel":"full","matchedWords":["whisperflow"],"value":"whispersnow"},"title":{"matchLevel":"none","matchedWords":[],"value":"System Level Programming Languages Panel"},"url":{"matchLevel":"none","matchedWords":[],"value":"https://www.infoq.com/presentations/oxide-rust/"}},"_tags":["story","author_whispersnow","story_31322879"],"author":"whispersnow","children":[31322880],"created_at":"2022-05-10T02:52:24Z","created_at_i":1652151144,"num_comments":1,"objectID":"31322879","points":4,"story_id":31322879,"title":"System Level Programming Languages Panel","updated_at":"2024-09-20T11:04:45Z","url":"https://www.infoq.com/presentations/oxide-rust/"},{"_highlightResult":{"author":{"fullyHighlighted":true,"matchLevel":"full","matchedWords":["whisperflow"],"value":"whispersnow"},"title":{"matchLevel":"none","matchedWords":[],"value":"AWS Private 5G Mobile Network Generally Available but Without 5G Support"},"url":{"matchLevel":"none","matchedWords":[],"value":"https://www.infoq.com/news/2022/08/aws-private-5g-ga/"}},"_tags":["story","author_whispersnow","story_32555576"],"author":"whispersnow","created_at":"2022-08-22T18:52:02Z","created_at_i":1661194322,"num_comments":0,"objectID":"32555576","points":4,"story_id":32555576,"title":"AWS Private 5G Mobile Network Generally Available but Without 5G Support","updated_at":"2024-09-20T11:52:25Z","url":"https://www.infoq.com/news/2022/08/aws-private-5g-ga/"},{"_highlightResult":{"author":{"fullyHighlighted":true,"matchLevel":"full","matchedWords":["whisperflow"],"value":"whispersnow"},"title":{"matchLevel":"none","matchedWords":[],"value":"Java should be your first programming language"},"url":{"matchLevel":"none","matchedWords":[],"value":"https://medium.com/codex/why-your-first-programming-language-should-be-java-969c8d0e08f7"}},"_tags":["story","author_whispersnow","story_31674662"],"author":"whispersnow","children":[31676218,31677866],"created_at":"2022-06-08T21:39:40Z","created_at_i":1654724380,"num_comments":2,"objectID":"31674662","points":3,"story_id":31674662,"title":"Java should be your first programming language","updated_at":"2024-09-20T11:21:05Z","url":"https://medium.com/codex/why-your-first-programming-language-should-be-java-969c8d0e08f7"}],"hitsPerPage":50,"nbHits":108,"nbPages":3,"page":0,"params":"query=Whisperflow&tags=story&hitsPerPage=50&advancedSyntax=true&analyticsTags=backend","processingTimeMS":8,"processingTimingsMS":{"_request":{"roundTrip":16},"afterFetch":{"format":{"highlighting":1,"total":1},"merge":{"mergeLoop":{"total":1},"total":1},"total":1},"fetch":{"query":6,"total":7},"total":8},"query":"Whisperflow","serverTimeMS":11}