<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Alex</title>
    <description>The latest articles on DEV Community by Alex (@fireharp).</description>
    <link>https://dev.to/fireharp</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F654557%2F8faf41c2-66cb-4f96-bb11-df958a0622ad.jpeg</url>
      <title>DEV Community: Alex</title>
      <link>https://dev.to/fireharp</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/fireharp"/>
    <language>en</language>
    <item>
      <title>Mumbli – my personal Wispr Flow</title>
      <dc:creator>Alex</dc:creator>
      <pubDate>Thu, 21 May 2026 13:37:54 +0000</pubDate>
      <link>https://dev.to/fireharp/mumbli-my-personal-wispr-flow-3202</link>
      <guid>https://dev.to/fireharp/mumbli-my-personal-wispr-flow-3202</guid>
      <description>&lt;p&gt;My text-to-speech journey started roughly a year ago, when I tried it again and was impressed by how much faster it was than typing. I'd been fascinated by Churchill's use of a stenographer, and I knew it was a more efficient way to write things given proper editor post-processing. I'd tried dictation earlier, about 5 years ago, but it didn't work out - I tried using dictation and then sending it to people to transcribe, but it wasn't successful.&lt;/p&gt;

&lt;p&gt;A year ago, I tried Whisper models with Python Qt, and it was fine. I used that initial Qt application for some time, but it was a bit ugly and not too easy to use. I found another application for Mac, and used it for a while.&lt;/p&gt;

&lt;p&gt;After a year of using it almost every day, I've learned how to speak freely without hesitation. It's not perfect, but it's much faster, and I've been able to produce a lot more. A friend told me about Wispr Flow, which had a nice UI with a small overlay and simple key bindings. Although I didn't like the Electron application and the marketing, I picked the features I needed, like vocabulary, history of dictations, and key bindings.&lt;/p&gt;

&lt;p&gt;That's how I created Mumbli, and so far, it's working well - I'm over 3300 transcriptions now. I can tweak it and try new things, like new GPT live transcription models.&lt;/p&gt;

&lt;p&gt;The most useful part of owning the stack is that I can actually measure the pieces. Recently I benchmarked the latest 50 saved Mumbli recordings: 2,021 seconds of real dictation, with clips ranging from 0.3s to 293.8s. I ran the same recordings through a few STT providers and measured the time from "audio file is ready" to "transcript is back."&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Provider&lt;/th&gt;
&lt;th&gt;Model&lt;/th&gt;
&lt;th&gt;Success&lt;/th&gt;
&lt;th&gt;Median STT latency&lt;/th&gt;
&lt;th&gt;p95 latency&lt;/th&gt;
&lt;th&gt;Audio-judge wins&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Groq Whisper&lt;/td&gt;
&lt;td&gt;&lt;code&gt;whisper-large-v3-turbo&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;50/50&lt;/td&gt;
&lt;td&gt;534ms&lt;/td&gt;
&lt;td&gt;1,098ms&lt;/td&gt;
&lt;td&gt;2&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;ElevenLabs Scribe&lt;/td&gt;
&lt;td&gt;&lt;code&gt;scribe_v1&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;50/50&lt;/td&gt;
&lt;td&gt;2,386ms&lt;/td&gt;
&lt;td&gt;7,472ms&lt;/td&gt;
&lt;td&gt;25&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Interfaze STT&lt;/td&gt;
&lt;td&gt;&lt;code&gt;interfaze-beta&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;50/50&lt;/td&gt;
&lt;td&gt;8,383ms&lt;/td&gt;
&lt;td&gt;13,584ms&lt;/td&gt;
&lt;td&gt;6&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Tie / skipped&lt;/td&gt;
&lt;td&gt;-&lt;/td&gt;
&lt;td&gt;-&lt;/td&gt;
&lt;td&gt;-&lt;/td&gt;
&lt;td&gt;-&lt;/td&gt;
&lt;td&gt;16 ties, 1 skipped&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;So the technical result is not "Groq wins everything." It is more specific: Groq was about 4.5x faster than ElevenLabs on median STT latency in this benchmark, and about 6.8x faster at p95. Compared to Interfaze it was much faster again. But ElevenLabs won the audio-judge comparison more often, so it still looks like the better quality default.&lt;/p&gt;

&lt;p&gt;For my personal use, that split matters. Wispr Flow feels good partly because the interaction is tiny: hold a key, speak, release, get text. If the transcript comes back in half a second, the whole app feels different. It is the difference between "this is a transcription job running somewhere" and "this is close enough to typing latency that I keep using it."&lt;/p&gt;

&lt;p&gt;So the setup is not one fixed answer. I can keep a quality-oriented path, and I can keep a fast path. That was the part I wanted from the Wispr Flow-like experience: the tiny overlay and simple hotkeys, but with the ability to swap the engine when the numbers say something interesting.&lt;/p&gt;

&lt;p&gt;I've put the benchmark notes in the documentation: &lt;a href="https://docs.mumbli.app/benchmarks#benchmarks-mumbli-performance" rel="noopener noreferrer"&gt;https://docs.mumbli.app/benchmarks#benchmarks-mumbli-performance&lt;/a&gt;. You can also check out the GitHub page: &lt;a href="https://github.com/fireharp/mumbli" rel="noopener noreferrer"&gt;https://github.com/fireharp/mumbli&lt;/a&gt;, and the main site: &lt;a href="https://mumbli.app/" rel="noopener noreferrer"&gt;https://mumbli.app/&lt;/a&gt;. No huge value here, just a nice tinkering approach - it was pretty fast to do, pretty exciting, and I still use it.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fj3xicr8wl9irkb7zoyva.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fj3xicr8wl9irkb7zoyva.png" alt=" " width="774" height="970"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>tts</category>
      <category>whisper</category>
      <category>productivity</category>
      <category>opensource</category>
    </item>
    <item>
      <title>Simplifying Data for small teams and sole developers</title>
      <dc:creator>Alex</dc:creator>
      <pubDate>Fri, 02 Jul 2021 22:11:13 +0000</pubDate>
      <link>https://dev.to/fireharp/simplifying-data-for-small-teams-and-sole-developers-ib0</link>
      <guid>https://dev.to/fireharp/simplifying-data-for-small-teams-and-sole-developers-ib0</guid>
      <description>&lt;p&gt;Hello everyone,&lt;/p&gt;

&lt;p&gt;I'm Alex co-founder of SimpleData &lt;a href="https://datashouldbesimple.com/" rel="noopener noreferrer"&gt;https://datashouldbesimple.com/&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  TL;DR
&lt;/h2&gt;

&lt;p&gt;Please help provide us some feedback on our early stage product )&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Which part of our product you're interested in? (API, Reporting, other)&lt;/li&gt;
&lt;li&gt;Which are languages you would use? (JS, Python, etc.)&lt;/li&gt;
&lt;li&gt;Which are the platforms? (Backend, FE, iOS, Android, Desktop)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Any other free form feedback is highly appreciated.&lt;/p&gt;

&lt;p&gt;I would also &lt;a href="https://calendly.com/alex_yanitskiy/simpledata" rel="noopener noreferrer"&gt;love to talk to any interested person personally&lt;/a&gt; (with my colleague John). &lt;/p&gt;

&lt;h2&gt;
  
  
  Short description
&lt;/h2&gt;

&lt;p&gt;The high-level arch is pretty simple&lt;br&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ftxzawkcxccscqc98st6l.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ftxzawkcxccscqc98st6l.jpg" alt="archChart" width="799" height="323"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;⚙️ Consume data&lt;/li&gt;
&lt;li&gt;🪄 Process it (not simple, haha)&lt;/li&gt;
&lt;li&gt;🚀 Deliver prepared data, metrics in different ways: API, Reporting, custom apps&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;I'm thinking it should help a lot of developers and teams to simplify their experience with plethora of Data tasks and should make it easier, faster (or even possible when we talk scoring/models/pre-built metrics or some tools like reporting).&lt;/p&gt;

&lt;h2&gt;
  
  
  Simple Use case
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Task Spec
&lt;/h3&gt;

&lt;p&gt;This's a real scenario we used in one of our projects.&lt;/p&gt;

&lt;p&gt;Let's assume you want to get all the info on some of your users and pass it over to colleague in Slack via Slack App command &lt;code&gt;/user some@email.com&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;The information contains Billing, Activity (in your app), Communications and whatever else you have on this user. Including calculated metrics like LTV.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fwqrfte46n5289q7y0knq.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fwqrfte46n5289q7y0knq.png" alt="Screenshot 2021-06-22 at 23.19.34" width="800" height="1241"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Implementation draft (w/o SimpleData)
&lt;/h3&gt;

&lt;p&gt;If you start implementing this Slack App, you would need:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;data from your DB (probably easiest)&lt;/li&gt;
&lt;li&gt;data from 3rd party apps (Billing, all Comms – CS, maybe emails, Activity – events from user clients)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;After some dev time – you got it.&lt;/p&gt;

&lt;p&gt;Then you probably need to NLP analyse Comms for detecting sentiment (or use some app that does it for you). Calculate LTV. Evaluate churn risk, etc.&lt;/p&gt;

&lt;p&gt;After more dev time – you probably also got it.&lt;/p&gt;

&lt;p&gt;Overall time spent would be from week to a few weeks after all the debugging and business needs optimizations.&lt;/p&gt;

&lt;h3&gt;
  
  
  SimpleData implementation
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;&lt;span class="kn"&gt;from&lt;/span&gt; &lt;span class="n"&gt;simpledata&lt;/span&gt; &lt;span class="kn"&gt;import&lt;/span&gt; &lt;span class="n"&gt;User&lt;/span&gt;

&lt;span class="c1"&gt;# Get User Data
&lt;/span&gt;&lt;span class="k"&gt;def&lt;/span&gt; &lt;span class="nf"&gt;get_users_data&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;email&lt;/span&gt;&lt;span class="p"&gt;):&lt;/span&gt;
   &lt;span class="n"&gt;user&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;User&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;objects&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;get&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;User&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;email&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="n"&gt;email&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;

   &lt;span class="c1"&gt;# basics
&lt;/span&gt;   &lt;span class="n"&gt;age&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;user&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;age&lt;/span&gt;
   &lt;span class="n"&gt;gender&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;user&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;gender&lt;/span&gt;
   &lt;span class="c1"&gt;# activity
&lt;/span&gt;   &lt;span class="n"&gt;last_active&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;user&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;last_active&lt;/span&gt;
   &lt;span class="n"&gt;activity_rank&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;user&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;activity_rank&lt;/span&gt;
   &lt;span class="n"&gt;days_active_last7_days&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;user&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;activity&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;from_&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="n"&gt;datetime&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;now&lt;/span&gt; &lt;span class="o"&gt;-&lt;/span&gt; &lt;span class="nf"&gt;timedelta&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;days&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="mi"&gt;7&lt;/span&gt;&lt;span class="p"&gt;),&lt;/span&gt; &lt;span class="n"&gt;to_&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="n"&gt;datetime&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;now&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
   &lt;span class="c1"&gt;# billing
&lt;/span&gt;   &lt;span class="n"&gt;subscriptions&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;user&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;subscriptions&lt;/span&gt;
   &lt;span class="n"&gt;transactions&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;user&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;transactions&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;tail&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt;
   &lt;span class="c1"&gt;# etc.
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Pretty short and simple. Even if you just start you developer journey. Or if you have several teams / lots of tasks — may simplify your hard work.&lt;/p&gt;

&lt;h2&gt;
  
  
  What about another usecases?
&lt;/h2&gt;

&lt;p&gt;And we have them:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;User Billing Info on your website&lt;/li&gt;
&lt;li&gt;User Info Apps (like Slack App above – but may be elsewhere)&lt;/li&gt;
&lt;li&gt;Reporting&lt;/li&gt;
&lt;li&gt;Smart Alerts&lt;/li&gt;
&lt;li&gt;Scoring Models&lt;/li&gt;
&lt;li&gt;NLP Messages Processing (prioritization, sentiments, intent detection)&lt;/li&gt;
&lt;li&gt;Socket + Client (serverless way – subscribe to our GraphQL API directly from client)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;We're going to describe these and maybe more in our initial wiki and docs coming next few weeks.&lt;/p&gt;

&lt;h2&gt;
  
  
  Beta access to everyone from dev.to!
&lt;/h2&gt;

&lt;p&gt;Expecting some initial invites-only beta access by end of summer ≈ (&lt;a href="https://forms.gle/scanxW2nmKAFb7Wz6" rel="noopener noreferrer"&gt;you are welcome sign up here&lt;/a&gt;! I'll prioritize all dev.to requests 😉)&lt;/p&gt;

</description>
      <category>productivity</category>
      <category>discuss</category>
      <category>showdev</category>
      <category>startup</category>
    </item>
  </channel>
</rss>
