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
# -*- coding: utf-8 -*- | |
import os | |
from flask import Flask | |
from flask_heroku import Heroku | |
from flask_sslify import SSLify | |
from raven.contrib.flask import Sentry | |
from flask.ext.celery import Celery |
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
## | |
## Simple password management in ksh-compatible shell | |
## You'll need a unix-like system and a working GPG configuration | |
export GPG_KEY="" | |
function pwgrep() { | |
gpg --batch -q -d -r $GPG_KEY $HOME/.auth/pwdb.asc | grep $* | |
} | |
function pwcat() { |
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
live_loop :kick do | |
sample :bd_808 | |
sleep 0.5 | |
end | |
live_loop :snare, sync: :kick do | |
sample :sn_dolf | |
sleep 1 | |
end |