架设好 shadowsocks 服务端,在路由器上安装 shadowsocks 客户端,并配置 /etc/config/shadowsocks.json ,假设本地监听端口为 1080 。启动 shadowsocks
/etc/init.d/shadowsocks start
安装 privoxy openwrt 版。
# 0 is too far from ` ;) | |
set -g base-index 1 | |
# Automatically set window title | |
set-window-option -g automatic-rename on | |
set-option -g set-titles on | |
#set -g default-terminal screen-256color | |
set -g status-keys vi | |
set -g history-limit 10000 |
###0x00 在github上初始化repo 在github上开启一个代码库(repository), 具体方式参考github的帮助手册(help) 如下图所示, 现在整个项目了一个中心repo. 所有的项目成员将共用这一个repo.
var $buttons = $('button.star-button') | |
var index = 0 | |
var timer = window.setInterval(function(){ | |
if(index >= $buttons.length){ | |
window.clearInterval(timer); | |
}else{ | |
$buttons[index++].click(); | |
} | |
}, 1000) |
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |