All you needed to know about MFCC See answers by Amir Poorjam on RG https://www.researchgate.net/post/Why_we_take_only_12-13_MFCC_coefficients_in_feature_extraction He …
Review of small microcontrollers for embedded systems | The Amazing $1 microcontrollers Look no further! https://jaycarlson.net/microcontrollers/ (Wayback Machine link) has the most exhaustive review of µC I’ve ever read. And …
Generate Android Bundle (.aab file) for a Cordova app Cordova 8.1+ supports generating Android Bundle (.aab file). Usually cordova generates an .apk file for your app. Playstore often warns …
Getting X11 (XQuartz) to work on OSX Today I finally managed to get XQuartz to work on a mac mini. I use this machine as server to test my code for OSX. Its a horrible machine …
argmax in pure Python Python does not have an inbuilt argmax function. numpy does. Here is one implementation. def argmax(ls : list) -> int: _m, _mi = -math.inf, …
Adding google-analytics to your vue application I am using Google’s global site gags (gtags) on my framework7+vue application to collect data. The gtag official documentation has an easy …
fd is an awesome replacement of find command Recently, I came across fd command. It is written in Rust and suppose to replace find command. fd is amazing, PERIOD. It has much better …
Debugging python extension in gdb $ gdb -ex r --args python myscript.py If you are using virtual environment then you are likely to run into the following error. …
How to Fix or Get Rid of "Briefly Unavailable for Scheduled Maintenance" message in WordPress Reason: During the update of a plugin or a theme, you refreshed the page, moved to another page, or the upgrade failed due to some other …