Skip to content

Instantly share code, notes, and snippets.

View tititake's full-sized avatar

Chris Yu tititake

View GitHub Profile
@tititake
tititake / ubuntu-openvpn.sh
Created June 24, 2014 02:53
Install OpenVPN server on Ubuntu and Debian
#!/bin/bash
# Quick and dirty OpenVPN install script
# Tested on debian 5.0 32bit, openvz minimal debian OS template
# and Ubuntu 9.04 32 bit minimal, should work on 64bit images as well
# Please submit feedback and questions at support@vpsnoc.com
# John Malkowski vpsnoc.com 01/18/2010
WANIF=`ip route get 8.8.8.8 | awk '{ for(f=0;f<NF;f++){if($f=="dev"){print $(f+1);exit;}} }'`
@tititake
tititake / fetchsub.sh
Last active December 20, 2015 05:29 — forked from ravageralpha/fetchsub.sh
Get subtitles from shooter
#!/bin/sh
# Author: RA <ravageralpha@gmail.com>
# Author: Chris Yu <chrisyu.gm@gmail.com>
USAGE(){
echo "Usage:$(basename $0) [-eng] [-suf] [-togbk] [-toutf8] files..."
echo "OPTIONS"
echo " -eng : download English subtitle, default is Chinese"
echo " -suf : add language suffix in subtitle file name"
echo " -togbk : try to convert file content from big5 to gbk with iconv"