Electronics Journal
Thursday, June 29, 2023
Podcasting (part 2)
Thursday, August 26, 2021
Ubuntu periodic audio clicking
This website shows how to resolve the problem, including a test fix:
echo 0 | sudo tee /sys/module/snd_hda_intel/parameters/power_save
Then a final fix:
echo 0 > /sys/module/snd_hda_intel/parameters/power_save
Always good to see that test vectors are provided before actually doing some change.
Thursday, January 7, 2021
quick configuration (download vimrc from google drive)
This website shows how to break down URL from google, like this vimrc file:
https://docs.google.com/document/d/1CAPUjT7Ay1YN6wgliDDamQLT62zAqilVDWqkqzLbkhg/export?format=txt
Combining this with wget:
wget -O .vimrc https://docs.google.com/document/d/1CAPUjT7Ay1YN6wgliDDamQLT62zAqilVDWqkqzLbkhg/export?format=txt
Friday, January 1, 2021
steam on ubuntu 20.04
Introduction
Steam is free software, for many installs just fine. However, a quick google search shows that many (in the hundreds) cannot make it work on their systems, with problems starting in 2014 or earlier.
Progress
Actively struggling with installing. Currently most progress obtained by some combination of installing Nvidia graphics drivers (even though this computer doesn't actually have that).
Installing via package "libglu1-mesa:i386" seems to have the most progress available idea source. Sadly only temporarily provided dependent packages. After attempting to use 32bit drivers from Nvidia, more broken (though some packages are available).
Conclusion
Thursday, December 31, 2020
podcasting
Introduction
Many people are building their own podcasts at the moment. The intent of this project is not for others to be able to follow my podcast, but to preserve the podcasts that were most influential to me. It would be good to continue to listen to stuff that is currently being released, but have my own local server generate a podcast xml to be able to keep the "cleaned up" versions of audio that I will download.
Audio Processing
Process
Needed apache2 and php-xml from apt-get.
My final implementation:
http://default-inspiron-3647/podcasts/dir2cast.php?dir=archive
Conclusion
Only problem is that original theory of hosting on off-internet server would be flouted by podcast app requiring their own curated link (see pca.st links). Thus, motivating me to move away entirely from "free" app that used to be $4.
I listen to podcasts at 1.8x and would like to preserve "trim silence" feature, going to add audacity scripts to "trim silence" before piping into any other podcast app. Thus will be good to process weekly sermons and preserve ones.
Very disappointing that there is no automated tool to generate local URL to pass directly to the app. I could process each file individually and save in google drive, sharing over to podcast app (profile > files)
Tuesday, December 29, 2020
useful networking locations on the internet
Monday, December 28, 2020
Converting Fidelity fund research to Google Sheets
Converts this:
To this:
Version 1 of formula:
=mid(A2,1,if(isnumber(find("%",A2)),find("%",A2)-1,""))
Version 2 that filters out blanks better:
=if(isnumber(find("%",N53)),mid(N53,1,find("%",N53)-1)/100,"")