youtube-dl Troubleshooting: ERROR: This video is unavailable

When you want to download some video from youtube with favorite tool youtube-dl, but this error shows up. That means the youtube-dl version that you’re using needs to be updated. This is how to install the latest version of youtube-dl : sudo curl -L https://yt-dl.org/downloads/latest/youtube-dl -o /usr/local/bin/youtube-dl sudo chmod a+rx /usr/local/bin/youtube-dl Or if you installed … Read more

How to Push Docker Image to Google Cloud Repository (GCR) (Easy steps!)

      Here’s how to push your local docker image to your GCR (Google Cloud Repository). You might want to use your own docker image later for your containerized app or kubernetes. For this research, I use Ubuntu 18.04.03 LTS Install gcloud, see the full instructions here : https://cloud.google.com/sdk/docs/quickstarts Once you’ve installed the gcloud, … Read more

Run bash terminal inside VIM with Conque-Shell

This is one of the coolest trick I’ve ever seen when working with VIM. This plugin allows you to run the bash terminal inside the VIM. And you can actually make it a spitted pane within your VIM work space. Check out this plugin: How to install conque-shell: Open vim config: vim ~/.vimrc call plug#begin(‘~/.vim/plugged’) … Read more