Skip to content

Instantly share code, notes, and snippets.

View uplus's full-sized avatar
🌏
Working from the earth

Yuto Ito uplus

🌏
Working from the earth
View GitHub Profile
@uplus
uplus / proxy-on.sh
Last active September 24, 2017 04:28
proxy-on () {
proxy="${1:? server:port}"
export http_proxy="${proxy}"
export https_proxy="${proxy}"
export ftp_proxy="${proxy}"
export rsync_proxy="${proxy}"
export all_proxy="${proxy}"
export HTTP_PROXY="${proxy}"
export HTTPS_PROXY="${proxy}"
export FTP_PROXY="${proxy}"
" set debug=throw
" git ls-files | grep -Ev 'init.vim|.gitignore' | xargs rm
language message C
scriptencoding utf-8
set shell=/bin/sh
let g:netrw_nogx = 1
let g:loaded_node_provider = 0
setup_my_tmp() {
TMPDIR=/private/my_tmp
sudo mkdir -p "${TMPDIR}"
sudo mount_tmpfs "${TMPDIR}"
sudo chmod 1777 "${TMPDIR}"
export TMPDIR
}
if [[ $(stat -c '%a' '/private/my_tmp') = 1777 ]]; then
export TMPDIR='/private/my_tmp'
git rev-list HEAD...master --left-only | git diff-tree --no-commit-id --name-only --stdin | uniq