This gist contains lists of modules available in
in AWS Lambda.
This gist contains lists of modules available in
in AWS Lambda.
Heil PR40 Package - http://www.bswusa.com/Dynamic-Microphones-Heil-Sound-PR40-Package-P7628.aspx
This is a great deal, and is a perfect mic for this stuff.
OC White Boom - http://www.ocwhite.com/broadcast-arms/proboomtm-elite-extended-reach-mic-arm-with-riser-45-reach-12-vertical-riser.html
The kit comes with a boom. It is decent, I guess, but this OC White boom is badass prostyle with a 4' reach and a 15" riser that lets it live behind my monitor.
| from fabric.api import env, local, require | |
| def deploy(): | |
| """fab [environment] deploy""" | |
| require('environment') | |
| maintenance_on() | |
| push() | |
| syncdb() | |
| migrate() |
| <html> | |
| <head> | |
| <link rel="stylesheet" href="http://twitter.github.com/bootstrap/assets/css/bootstrap.css" type="text/css"> | |
| <style type="text/css"> | |
| code { display: block; } | |
| pre { color: green; } | |
| </style> | |
| </head> | |
| <body> | |
| <h1>Balanced Sample - Collect Bank Account Information</h1> |
| from django.dispatch import Signal | |
| charge_succeeded = Signal(providing_args=["event"]) | |
| charge_failed = Signal(providing_args=["event"]) | |
| charge_refunded = Signal(providing_args=["event"]) | |
| charge_disputed = Signal(providing_args=["event"]) | |
| customer_created = Signal(providing_args=["event"]) | |
| customer_updated = Signal(providing_args=["event"]) | |
| customer_deleted = Signal(providing_args=["event"]) | |
| customer_subscription_created = Signal(providing_args=["event"]) |
| # -*- coding: utf-8 -*- | |
| from django.contrib.auth.decorators import login_required | |
| from django.utils.cache import patch_response_headers | |
| from django.utils.decorators import method_decorator | |
| from django.views.decorators.cache import cache_page, never_cache | |
| from django.views.decorators.csrf import csrf_exempt | |
| class NeverCacheMixin(object): | |
| @method_decorator(never_cache) |