This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
perl Makefile.PL | |
make | |
make test | |
sudo make install |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
git archive master | tar -x -C ../exportDirectory | |
cd ../exportDirectory | |
tar -zcvf projectName.tar.gz projectName |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Restore Google Chrome on Linux (Ubuntu), when it | |
# starts with "Could not restore your profile" | |
# $ ./google-chrome-restore.sh | |
rm -rf ~/.config/google-chrome/Backup | |
mv ~/.config/google-chrome/Default ~/.config/google-chrome/Backup | |
rm -rf ~/.config/google-chrome/Default | |
cp -R ~/.config/google-chrome/Backup ~/.config/google-chrome/Default | |
rm -rf ~/.config/google-chrome/Backup |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(document).keydown(function(ev){ | |
if (ev.which === 27){ // ESC key | |
close(); | |
}); |
NewerOlder