Skip to content

Instantly share code, notes, and snippets.

@maxclaus
maxclaus / inspect-nginx.sh
Created February 2, 2014 02:55
Nginx not running with no error message
# 1. discover what is wrong
sudo nginx -t
# 2. fix everything
# 3. restart the service
sudo service nginx restart
@maxclaus
maxclaus / create-multiple-directories-in-a-path.sh
Created January 20, 2014 14:48
Create multiple directories in a path
mkdir -p site-cookbooks/tomatoes/{recipes,{templates,files}/default}
@maxclaus
maxclaus / find-out-what-process-using-a-specific-port.sh
Created January 16, 2014 18:39
Unix - Find what process is using a specif port
# 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/
@maxclaus
maxclaus / setting-up-ssh-unix.sh
Created January 16, 2014 10:23
Setting up SSH key authentication on Unix
# 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
@maxclaus
maxclaus / example.js
Created December 24, 2013 12:55
Wait mongo connection before test express controller/route with supertest
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){
@maxclaus
maxclaus / Ask_Version.cs
Last active December 31, 2015 15:19
Example of Principle Tell don't Ask
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
@maxclaus
maxclaus / .gitignore
Created September 25, 2013 20:03
Git keep empty folder: 1. Add a .gitkeep file inside the folder you want to keep 2. Then include this configuration in your .gitignore
path_your_folder/*
!path_your_folder/.gitkeep
(since_became_a_zombie..Float::INFINITY).each { eat :brains, :tasks }