Bulk Download of Recordings and Gallery items
Write a simple script
- Login to mi cloud https://i.mi.com
- Navigate to https://us.i.mi.com/#record or https://us.i.mi.com/v1#gallery
- In web browser (Chrome) press F12 to open Chrome developer tool
Bulk Download of Recordings and Gallery items
Write a simple script
OS: Ubuntu 14.04 LTS, Apache 2.4.7, OpenSSL 1.0.1f | |
SSL Labs: A+ (RSA2048, SHA256 certificate) | |
Certificate: 100% | |
Protocol Support: 95% | |
Key Exchange: 90% | |
Cipher Strength: 90% | |
#### In the SSL.CONF file | |
SSLCipherSuite AES256+EECDH:AES256+EDH:AES128+EECDH:AES128+EDH |
cd /tmp | |
echo "Checking for Outdated Boxes" | |
vagrant box outdated --global | awk '/outdated/{print $2}' > /tmp/outdated_boxes | |
sleep 2 | |
cat /tmp/outdated_boxes | |
sleep 1 | |
for box in $(cat outdated_boxes) | |
do | |
echo "Updating : $box " | |
echo "vagrant init $box" | sh |
! urxvt | |
URxvt*geometry: 115x40 | |
!URxvt*font: xft:Liberation Mono:pixelsize=14:antialias=false:hinting=true | |
URxvt*font: xft:Inconsolata:pixelsize=17:antialias=true:hinting=true | |
URxvt*boldFont: xft:Inconsolata:bold:pixelsize=17:antialias=false:hinting=true | |
!URxvt*boldFont: xft:Liberation Mono:bold:pixelsize=14:antialias=false:hinting=true | |
URxvt*depth: 24 | |
URxvt*borderless: 1 | |
URxvt*scrollBar: false |
# REF Link https://medium.com/@huntie/10-essential-vim-plugins-for-2018-39957190b7a9 | |
# Clone Vundle | |
git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim | |
# Config Vundle | |
cat <<EOF > ~/.vim/plugins.vim | |
set rtp+=~/.vim/bundle/Vundle.vim | |
call vundle#begin() |