Categories
Computers

uBlock Origin Twitch Hide Recommend Sidebar

The first filter hides the Recommended Channels in the sidebar and the second hides both Recommended and Popular Channels. They also work for the collapsed view.

www.twitch.tv##div[aria-label="Recommended Channels"]

www.twitch.tv##.side-nav-section:nth-of-type(2)

I have been using these filters since beginning of December 2020. They are still working for me as of 1/14/2021.

uBlock Origin: 1.32.4
Microsoft Edge: 87.0.664.75 (Official build) (64-bit)

Categories
Computers

Shuck Western Digital 4TB MyBook

How to remove the drive from the enclosure.

P/N: WDBFJK0040HBK
Controller Board: 4061-705149-000
HDD: WD40EURX – 5400RPM

Categories
Computers

Install YNAB4 with Dropbox

The Dropbox app does not need to be install on mobile device.

  • 1. YNAB4 installed on computer
  • 2. Dropbox installed on computer
  • 3. YNAB4 budget option CloudSync enabled
  • 4. Install YNAB Classic on android/iphone (dropbox app not required on android/iphone)
  • 5. Choose Link Dropbox option from YNAB Classic app
  • 6. This will open Chrome to the website dropbox.com requesting sign in
  • 7. Confirm to link Dropbox with YNAB
  • 8. You will be directed back to YNAB, open budget and wait for it to load.
Categories
Computers

asterisk 1.6 on centos 6.5 minimal

# sudo yum install wget

# wget http://downloads.asterisk.org/pub/telephony/asterisk/old-releases/asterisk-1.6.0.24.tar.gz
# tar -zxvf asterisk-1.6.0.24.tar.gz

# cd asterisk-1.6.0.24

asterisk-1.6.0.24# ./configure

checking for gcc… no

asterisk-1.6.0.24# sudo yum install gcc

asterisk-1.6.0.24# ./configure

checking for g++… no
checking for c++… no
—-
configure: error: C++ preprocessor “/lib/cpp” fails sanity check
See `config.log’ for more details.

asterisk-1.6.0.24# sudo yum install gcc-c++

asterisk-1.6.0.24# ./configure

configure: error: *** termcap support not found (on modern systems, this typically means the ncurses development package is missing)

asterisk-1.6.0.24# sudo yum install libtermcap-devel

after configuration, asterisk ASCII art logo appears, no errors

asterisk-1.6.0.24# make

asterisk-1.6.0.24# make install