- GitHub Staff
- @codysoyland
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
-module(riak_zmq). | |
-export([postcommit_publish/1, get_zmq_publisher/0, zmq_publisher/0, zmq_publisher/1]). | |
postcommit_publish(RObj) -> | |
Body = riak_object:get_value(RObj), | |
{ok, Pid} = get_zmq_publisher(), | |
Pid ! {send, Body}. | |
get_zmq_publisher() -> |
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
# Example usage: | |
# with temporary_settings(CELERY_ALWAYS_EAGER=True): | |
# run_task.delay() # runs task with eager setting enabled. | |
from contextlib import contextmanager | |
from django.conf import settings | |
@contextmanager | |
def temporary_settings(**temp_settings): | |
orig_settings = {} |
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
import gevent | |
from gevent.server import StreamServer | |
from gevent.pool import Group | |
from gevent_zeromq import zmq | |
context = zmq.Context() | |
class CodependentGroup(Group): | |
""" | |
A greenlet group that will kill all greenlets if a single one dies. |
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
#! /bin/sh | |
echo "Purging pyc files and empty directories..." | |
# Start from the repository root. | |
cd ./$(git rev-parse --show-cdup) | |
# Delete .pyc files and empty directories. | |
find . -name "*.pyc" -delete 2>&1 > /dev/null & | |
find . -type d -empty -delete 2>&1 > /dev/null & |
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
/* | |
twirc.js | |
======== | |
Automating Twitter messages to IRC. BSD license. | |
Installation: | |
------------- | |
* brew install node |
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
from django.template import Parser, Lexer, Token, Context, TextNode, TOKEN_BLOCK, TOKEN_COMMENT, TOKEN_TEXT, TOKEN_VAR | |
from django.conf import settings | |
LITERAL_DELIMITER = '8====D' | |
class LiteralNode(TextNode): | |
pass | |
def parse(parser): | |
depth = 0 |
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
diff --git a/tastypie/api.py b/tastypie/api.py | |
index 0344a81..b4f2adc 100644 | |
--- a/tastypie/api.py | |
+++ b/tastypie/api.py | |
@@ -50,6 +50,19 @@ class Api(object): | |
# Register it globally so we can build URIs. | |
_add_resource(self, resource, canonical) | |
+ def register_representation(self, representation, name, canonical=True): | |
+ """ |
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
# working with mercurial, the easy way | |
# requires hg-git | |
hg clone http://bitbucket.org/ianb/pip | |
cd pip | |
hg bookmark hg/default | |
hg gexport | |
ln -s .hg/git .git | |
echo ".hg" >> .git/info/exclude | |
git reset hg/default |
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
from HTMLParser import HTMLParser | |
import sys | |
import pprint | |
import urllib | |
from pip.commands.search import highest_version | |
import pkg_resources | |
class PyPISearchParser(HTMLParser): | |
def __init__(self): | |
HTMLParser.__init__(self) |
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
[user] | |
email = [email protected] | |
name = Cody Soyland | |
[color] | |
ui = true | |
[core] | |
whitespace=fix,-indent-with-non-tab,trailing-space,cr-at-eol | |
excludesfile = ~/.gitignore |