JSON
# If pylibmc exists within requirements, use vendored libmemcached. | |
if (grep -Eiq "\s*pylibmc" requirements.txt) then | |
echo "-----> Noticed pylibmc. Bootstrapping libmemcached." | |
cd .heroku | |
if [ -d "vendor/lib/sasl2" ]; then | |
export LIBMEMCACHED=$(pwd)/vendor | |
else | |
# Download and extract libmemcached into target vendor directory. | |
curl -s -L -o tmp-libmemcached.tar.gz $VENDORED_MEMCACHED |
--- | |
- name: Deploy new site release | |
user: deployer | |
hosts: all | |
tasks: | |
- name: Fetch repo updates | |
git: > | |
[email protected]:my/repo.git |
import string | |
from django.http import HttpResponseRedirect, HttpResponsePermanentRedirect | |
def case_insensitive(func, case='lower', code=301): | |
""" | |
Django view function decorator which can enforce the case of a URL path by | |
redirecting to the properly cased URL. This *allows* for case insensitive | |
matches while ensuring that only a commonly cased-URL is used and seen. |
from organizations.backends.defaults import RegistrationBackend, InvitationBackend | |
class SendMailMixin(object): | |
def _send_email(self, user, subject_template, body_template, | |
sender=None, connection=None, **kwargs): | |
"""Utility method for sending emails to new users""" | |
if sender: | |
from_email = "%s %s <%s>" % (sender.first_name, sender.last_name, |
Get Homebrew installed on your mac if you don't already have it
Install highlight. "brew install highlight". (This brings down Lua and Boost as well)
Dear Sir or Madam,
I have continued to read about the project and I have found some problems in the most recent study by Davenport.
Please note their first assumption on page 3 of the report. It reads as follows: "All Non-Ballpark (i.e. Retail, Residential, Hotel, Office, Parking, etc.) improvements will be privately financed by the Developer." Underneath this, they repeat, underline, and emphasize their first assumption: "No allowances have been made with respect to development incentives."
Their second assumption contains the first mistake made in the compilation of their report. They appear to have misunderstood the 2009 ERA report. Davenport's study states:
"In conducting our analysis, Davenport has extrapolated the following assumptions from the original 2009 Era Report:
for SHAPEFILE in $(find . -name "*.shp") | |
do | |
BASENAME=$(basename $SHAPEFILE .shp) | |
DIRNAME=$(dirname $SHAPEFILE) | |
SQLFILE="${BASENAME}.sql" | |
shp2pgsql -W UTF-8 $SHAPEFILE $BASENAME > "${DIRNAME}/${BASENAME}.sql" | |
psql -d richmond -f "${DIRNAME}/${BASENAME}.sql" | |
done |
--- | |
# ^^^ YAML documents must begin with the document separator "---" | |
# | |
#### Example docblock, I like to put a descriptive comment at the top of my | |
#### playbooks. | |
# | |
# Overview: Playbook to bootstrap a new host for configuration management. | |
# Applies to: production | |
# Description: | |
# Ensures that a host is configured for management with Ansible. |
from django.db import models | |
from django.contrib.contenttypes.models import ContentType | |
class BookmarkManager(models.Manager): | |
def _lookup_kwargs(self, **kwargs): | |
owner = kwargs.pop('owner', None) | |
if owner: | |
owner_type = ContentType.objects.get_for_model(owner) |