This file contains 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
pkg | |
.bundle | |
.DS_Store | |
TAGS | |
REVISION | |
*.tmproj | |
*~ | |
.settings | |
.project | |
.tasks-cache |
This file contains 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
sudo su | |
groupadd www | |
useradd aratak --shell /bin/bash --group www --home /home/aratak | |
mkdir /home/aratak | |
chown aratak:www /home/aratak | |
passwd aratak | |
# add username to AllowUsers /etc/ssh/sshd_config | |
# add `aratak ALL=(ALL) NOPASSWD:ALL` to the /etc/sudoers | |
sudo service ssh restart |
This file contains 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
git log --format='%aN' | sort | uniq -c | sort -nr |
This file contains 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
# bundle config build.mysql2 --with-mysql-config='/usr/local/mysql/bin/mysql_config' | |
gem 'mysql2', '< 0.3' # in the Gemfile.lock |
This file contains 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
TAGS | |
REVISION | |
*.tmproj | |
*~ | |
.DS_Store | |
.settings | |
.project | |
.tasks-cache | |
.svn | |
*DONOTVERSION* |
This file contains 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
"use strict"; | |
Object.defineProperty(window, "undefined", { | |
value: void(0), | |
writable: false | |
}); |
This file contains 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
This Was A Triumph... I'm Making A Note Here: HUGE SUCCESS. It's hard to overstate... my satisfaction... Aperture Science...We do what we must... because we can...For the good of all of us... Except the ones who are dead. |
This file contains 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
curl https://raw.github.com/gist/1759759/711c192b8bff65fa63c65d715b5def6263be01c0/gistfile1.txt | xargs say -v Zarvox |
This file contains 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
('HTMLCanvasElement' in this) && (function () { | |
HTMLCanvasElement.prototype.trim = function (opts) { | |
opts = opts || {}; | |
var | |
element = this, | |
bound = { | |
top: null, | |
left: null, | |
right: null, |
OlderNewer