http://superuser.com/questions/78880/how-do-i-get-os-xs-keychain-to-remember-my-github-rsa-key
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
#So, we don't need RubyMine just to get rails server to recognize the required gems in a rails project | |
bundle 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
.bundle | |
db/*.sqlite3* | |
log/*.log | |
*.log | |
/tmp/ | |
doc/ | |
*.swp | |
*~ | |
.DS_Store | |
.idea/* |
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
ggVG |
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
virtualenv foo --no-site-packages | |
cd foo | |
bin/activate | |
git clone git@your_github_fi.com/your_repo.git | |
pip install ./anweb/ -i http://yourick:9003 |
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
var http = require("http"); | |
var redis = require("redis"); | |
var url = require('url'); | |
client = redis.createClient(); | |
var requests = []; | |
var strings = []; | |
http.createServer( | |
function(request, response) { |
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
server { | |
listen 8000 default; | |
server_name localhost; | |
access_log /var/log/nginx/schemaspy.access.log; | |
location / { | |
root /var/www/schemaspy/; | |
index index.html index.htm; | |
autoindex on; |
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
kill -QUIT $( cat /usr/local/nginx/logs/nginx.pid ) |
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
AUTHOR='timothy sabat' | |
EMAIL='[email protected]' | |
mkdir $1 | |
cd $1 | |
mkdir bin $1 tests docs | |
touch $1/__init__.py | |
touch tests/__init__.py |
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
default] [Thu, 01 Dec 2011 16:08:22 -0800] FATAL: Stacktrace dumped to /tmp/vagrant-chef-1/chef-stacktrace.out | |
: stdout | |
[default] [Thu, 01 Dec 2011 16:08:22 -0800] FATAL: SyntaxError: compile error | |
/tmp/vagrant-chef-1/chef-solo-1/vagrant_main/recipes/default.rb:97: syntax error, unexpected tASSOC, expecting '}' | |
connection {:host => "localhost", :username => 'ro... | |
^ | |
/tmp/vagrant-chef-1/chef-solo-1/vagrant_main/recipes/default.rb:97: syntax error, unexpected ',', expecting '}' | |
...nection {:host => "localhost", :username => 'root', :passwor... | |
^ | |
/tmp/vagrant-chef-1/chef-solo-1/vagrant_main/recipes/default.rb:97: syntax error, unexpected ',', expecting '}' |
OlderNewer