Skip to content

Instantly share code, notes, and snippets.

View highercomve's full-sized avatar
🏠
Working from home for Pantacor 👍

Sergio Marin highercomve

🏠
Working from home for Pantacor 👍
View GitHub Profile
@domachine
domachine / docker-compose-daemon.sh
Created April 28, 2015 16:29
run docker-compose in daemon mode and attach to web container
docker-compose up -d
docker attach myapp_web_1
@Siedrix
Siedrix / add-register.py
Created September 7, 2014 21:21
Redbird example with adding host with redis
import redis
import json
register = {
"src" : "nodebots-dev.mx",
"target" : "http://127.0.0.1:4500/"
}
registerAsStr = json.dumps(register)
@passcod
passcod / Gemfile
Created September 20, 2012 05:15
Padrino + Sidekiq = ♥
# ...
gem 'sidekiq'
# ...