Skip to content

Instantly share code, notes, and snippets.

View blanc0's full-sized avatar

Charlie Parks blanc0

View GitHub Profile
@blanc0
blanc0 / SUBLIME TEXT2 INSTALLATION
Created October 1, 2012 16:19 — forked from devudilip/SUBLIME TEXT2 INSTALLATION
HOW TO INSTALL SUBLIME TEXT 2 ON UBUNTU 11.10
#BECOME SUPER USER#
sudo -i
#add sublime to repository#
add-apt-repository ppa:webupd8team/sublime-text-2
#update#
@blanc0
blanc0 / zsh.md
Created August 8, 2012 22:43 — forked from tsabat/zsh.md
Getting oh-my-zsh to work in Ubuntu

Getting zsh to work in ubuntu is weird, since sh does not understand the source command. So, you do this to install zsh

wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | zsh

and then you change your shell to zsh

chsh -s `which zsh`

and then restart

@blanc0
blanc0 / python
Created June 13, 2011 22:34 — forked from kennethreitz/python
def contains(k,l):
for x in l:
if k in ((x[0],x[1]), (x[1],x[0]))
return True
return False
:::