HN user

da12

353 karma
Posts21
Comments6
View on HN
thoughtcicles.xyz 1y ago

How to Use an LLM Without Selling Your Soul

da12
1pts0
davidamos.dev 3y ago

ChatGPT Is an Extra-Ordinary Python Programmer

da12
25pts9
davidamos.dev 3y ago

Never Modify Inputs Without Permission

da12
3pts0
davidamos.dev 3y ago

Method Chaining in Pandas: Bad Form or a Recipe for Success?

da12
13pts14
davidamos.dev 3y ago

Things I Wish I’d Done Earlier as a Coder

da12
2pts0
davidamos.dev 3y ago

Tree Traversals and Anagrams: A Weekend Project

da12
1pts0
davidamos.dev 3y ago

5 Time-Saving VS Code Shortcuts and How to Memorize Them

da12
1pts0
davidamos.dev 3y ago

You should write bad code

da12
5pts0
davidamos.dev 3y ago

Want cleaner code? Use the rule of six

da12
319pts333
davidamos.dev 4y ago

Beginner Projects from an Advanced View: Rock Paper Scissors

da12
3pts0
davidamos.dev 4y ago

The Right Way to Compare Floats in Python

da12
3pts1
www.youtube.com 4y ago

3 Things You Might Not Know About Numbers in Python

da12
1pts0
davidamos.dev 4y ago

3 Tips for Writing Pythonic Code

da12
4pts0
davidamos.dev 4y ago

Why can't you reverse a string with a flag emoji?

da12
189pts239
bestastronomyphotos.com 4y ago

Don't Be Fooled by This Peaceful Portrait of Venus

da12
1pts0
davidamos.dev 4y ago

Ramsey Numbers: A Problem of Galactic Proportions

da12
3pts0
www.meddlinginmathematics.com 5y ago

The Reasonable Ineffectiveness of Defining Mathematics

da12
2pts0
www.youtube.com 5y ago

Graph Theory with Python #4: Degrees and Degree Sequences

da12
3pts0
www.youtube.com 5y ago

Python Graph Visualization with Pyvis

da12
2pts0
www.youtube.com 5y ago

Graphs, Adjacency Lists, and the Adjacency Matrix – Graph Theory with Python #2

da12
1pts0
www.youtube.com 5y ago

Solving the Königsberg Bridge Problem with Python

da12
1pts0

That's a really good point. I am the author of the article, and this is something I debated during writing. In the end the goal was to provide an "in-depth enough" tutorial on adding speech recognition to an app for people who were new to it and possibly intimidated by the topic. For that, I think SpeechRecognition is a fantastic module.

I had to leave a lot out of this that I wish could have gone in, simply due to length constraints. In that regard, perhaps "The Ultimate Guide to Speech Recognition" wasn't be best choice of title. I'm sure that we'll be updating this article as time goes on, and Google's streaming API is something I want to make sure goes in it.

Also, something that was left out of the article was SpeechRecognition's listen_in_background method, which does solve this problem somewhat. My issue with it is that SpeechRecognition uses a somewhat crude RMS energy based VAD for detecting speech.

Thanks for your feedback!