mkdir tdd && cd tdd
bundle init
vim Gemfile
# A sample Gemfile
# 1. discover what is wrong | |
sudo nginx -t | |
# 2. fix everything | |
# 3. restart the service | |
sudo service nginx restart |
mkdir -p site-cookbooks/tomatoes/{recipes,{templates,files}/default} |
# with netstat | |
netstat -nlp | grep :80 | |
# or with lsof | |
lsof -i :80 | grep LISTEN | |
# http://www.cyberciti.biz/faq/find-linux-what-running-on-port-80-command/ |
# generate ssh key | |
ssh-keygen -t dsa | |
# (Don’t enter a passphrase unless you want to type it every time you want to use the key) | |
# set permissions | |
chmod 700 ~/.ssh | |
chmod 600 ~/.ssh/id_dsa | |
chmod 644 ~/.ssh/id_dsa.pub | |
# Add this to you ~/.profile | |
function tree { | |
find ${1:-.} -print | sed -e 's;[^/]*/;|____;g;s;____|; |;g' | |
} | |
# Then: | |
$ source ~/.profile | |
$ tree |
var request = require('supertest'), | |
mongoose = require('mongoose'), | |
app = require('../../../../server'); | |
describe('GET /api/transactions/import', function(){ | |
before(function (done) { | |
mongoose.connection.on('open', done); | |
}); | |
it('respond with json', function(done){ |
private class Screen | |
{ | |
Form mainForm = ... | |
private void Screen_Loaded(object sender, ControlLoadedEventArgs e) | |
{ | |
if(mainForm.InputControls != null && mainForm.InputControls.Contains("Id")) | |
mainForm.InputControls["Id"].Editable = isEditable; | |
} | |
} |
mkdir tdd && cd tdd
bundle init
vim Gemfile
# A sample Gemfile
path_your_folder/* | |
!path_your_folder/.gitkeep | |
(since_became_a_zombie..Float::INFINITY).each { eat :brains, :tasks } |