Skip to content

Instantly share code, notes, and snippets.

@deadlocks
deadlocks / Sublime 3 - Ubuntu
Created August 29, 2016 06:10
Sublime 3 - Ubuntu
sudo add-apt-repository -y ppa:webupd8team/sublime-text-3 && sudo apt-get update && sudo apt-get install sublime-text-installer;
@deadlocks
deadlocks / chromedriver.sh
Last active August 29, 2016 06:08 — forked from mikesmullin/chromedriver.sh
easily install chromedriver on linux/osx
sudo apt-get install unzip;
wget -O /tmp/chromedriver.zip http://chromedriver.storage.googleapis.com/2.9/chromedriver_linux64.zip && sudo unzip /tmp/chromedriver.zip chromedriver -d /usr/bin/ && sudo chmod a+x chromedriver;
@deadlocks
deadlocks / 0_reuse_code.js
Last active August 29, 2015 14:09
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console