Skip to content

Instantly share code, notes, and snippets.

#!/usr/bin/php
<?php
// A git pre-commit script for drupal-based repositories
$output = array();
$return = 0;
exec('git rev-parse --verify HEAD 2> /dev/null', $output, $return);
$against = $return == 0 ? 'HEAD' : '4b825dc642cb6eb9a060e54bf8d69288fbee4904';
diff --git a/apps/bednets/constants.py b/apps/bednets/constants.py
index 20709dd..0f33557 100644
--- a/apps/bednets/constants.py
+++ b/apps/bednets/constants.py
@@ -1,6 +1,6 @@
#!/usr/bin/env python
# vim: ai et sts=4 sw=4 ts=4
-from reporters.models import Location
+from locations.models import Location
#!/bin/sh
# Invocation: ./domain_available.sh domain.com [email protected]
# Could be configured with cron to alert you when a domain is available.
MAILTO=$2
DOMAIN=$1
STATUS=`whois $DOMAIN | grep 'Status:' | awk -F ' ' '{ print \$2; }'`
STATUS=${STATUS:="available"}
@takinbo
takinbo / spomskyd_install.sh
Created May 9, 2009 12:38
installing spomskyd on Ubuntu
#!/bin/sh
sudo apt-get install build-essential
sudo apt-get install ruby
sudo apt-get install rubygems
sudo apt-get install ruby1.8-dev
# if the following doesn't work (Debian systems for example) use
# sudo gem install rubygems-update
# /var/lib/gems/1.8/bin/update_rubygems
sudo gem update --system
sudo gem sources -a http://gems.github.com/
# in case you ever come across a similar error in python:
#
# UnicodeEncodeError: 'ascii' codec can't encode character u'\u2019' in
# position 2: ordinal not in range(128)
#
# simply use these
import sys
reload(sys)
sys.setdefaultencoding('utf-8')