Skip to content

Instantly share code, notes, and snippets.

#!/bin/bash -x
## https://github.com/major/MySQLTuner-perl
wget http://mysqltuner.pl/ -O mysqltuner.pl
wget https://raw.githubusercontent.com/major/MySQLTuner-perl/master/basic_passwords.txt -O basic_passwords.txt
wget https://raw.githubusercontent.com/major/MySQLTuner-perl/master/vulnerabilities.csv -O vulnerabilities.csv
chmod +x mysqltuner.pl
@tknr
tknr / gist:616da71c15d636afaeec28f3dab16494
Created July 26, 2017 08:18
recode youtube live streaming
# Overview — Livestreamer 1.12.2 documentation http://docs.livestreamer.io/index.html
su -
pip install livestreamer
exit
livestreamer <youtube url> best -o <output filename>
@tknr
tknr / rename_zen2han
Created June 13, 2017 06:36
rename zenkaku alphabet to hankaku alphabet
export IFS=$'\n';for filename in `ls -1`;do mv -v ${filename} `echo ${filename}|nkf -m0Z1 -W -w`;done