Skip to content

Instantly share code, notes, and snippets.

@bulain
bulain / svn_http_proxy.sh
Created March 5, 2013 07:24
subversion update through http proxy
vim /etc/subversion/servers
http-proxy-host=proxy
http-proxy-port=8080
@bulain
bulain / 32bit-exe-run-on-64bit-linux
Created March 21, 2013 14:30
32bit executable run on 64bit linux
sudo apt-get install ia32-libs
sudo apt-get install nspluginwrapper
@bulain
bulain / npm-http-proxy.sh
Created April 3, 2013 01:51
npm behind a proxy
npm config set proxy http://proxy:8080
npm config set https-proxy http://proxy:8080
@bulain
bulain / p4_commands.sh
Last active December 17, 2015 05:59
perforce commands
P4PORT=<port>
P4USER=<user>
P4PASSWD=<password>
P4CLIENT=<client>
P4IGNORE=<ignore>
P4DIFF=<diff>
P4EDITOR=<editor>
P4MERGE=<merge>
more client.txt | p4 client -i
@bulain
bulain / git-http-proxy.sh
Created October 10, 2013 02:26
git http proxy
git config --global --get http.proxy
git config --global http.proxy http://proxy:port