This file contains hidden or 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
| #!/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'; |
This file contains hidden or 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
| 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 | |
This file contains hidden or 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
| #!/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"} |
This file contains hidden or 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
| #!/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/ |
This file contains hidden or 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
| # 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') |
NewerOlder