I hereby claim:
- I am mattrobenolt on github.
- I am mattrobenolt (https://keybase.io/mattrobenolt) on keybase.
- I have a public key whose fingerprint is D874 9766 A66D D714 236A 932C 3B2D 400C E5BB CA60
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
import os | |
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "project.settings") | |
from raven.utils.wsgi import ( | |
get_current_url, get_headers, get_environ) | |
class Sentry(object): | |
def __init__(self, application): | |
self.application = application |
api: | |
build: . | |
command: python manage.py runserver 0.0.0.0:80 | |
environment: | |
DJANGO_SETTINGS_MODULE: local_settings_api_service | |
ports: | |
- "80:80" | |
volumes: | |
- .:/usr/src | |
links: |
FROM disqus/nginx:python2.7-light | |
RUN mkdir -p /usr/src/app | |
WORKDIR /usr/src/app | |
# First compile numpy by itself so we never have to do this again | |
COPY requirements/numpy.txt requirements/numpy.txt | |
RUN pip install --no-cache-dir -r requirements/numpy.txt | |
# Install dev stuff early becaues they prob don't change |
import re | |
import json | |
from django.core.serializers.json import DjangoJSONEncoder | |
from django.http import HttpResponse, HttpResponseBadRequest | |
# Reserved words list from http://javascript.about.com/library/blreserved.htm | |
JAVASCRIPT_RESERVED_WORDS = frozenset(( | |
'abstract', 'as', 'boolean', 'break', 'byte', 'case', 'catch', 'char', | |
'class', 'continue', 'const', 'debugger', 'default', 'delete', 'do', |
import zlib | |
from django.db import models | |
from django.utils import six | |
from django.utils.encoding import force_bytes | |
__all__ = ('GzippedTextField',) | |
class GzippedTextField(six.with_metaclass(models.SubfieldBase, models.BinaryField)): |
--- cassandra.orig 2014-08-17 14:45:54.000000000 +0000 | |
+++ cassandra 2014-08-20 01:27:53.000000000 +0000 | |
@@ -38,6 +38,8 @@ | |
exit 3 | |
fi | |
+export JVM_OPTS | |
+ | |
# Export JAVA_HOME, if set. | |
[ -n "$JAVA_HOME" ] && export JAVA_HOME |
▓█████▄ ██▓ ██████ █████ █ ██ ██████ | |
▒██▀ ██▌▓██▒▒██ ▒ ▒██▓ ██▒ ██ ▓██▒▒██ ▒ | |
░██ █▌▒██▒░ ▓██▄ ▒██▒ ██░▓██ ▒██░░ ▓██▄ | |
░▓█▄ ▌░██░ ▒ ██▒░██ █▀ ░▓▓█ ░██░ ▒ ██▒ | |
░▒████▓ ░██░▒██████▒▒░▒███▒█▄ ▒▒█████▓ ▒██████▒▒ | |
▒▒▓ ▒ ░▓ ▒ ▒▓▒ ▒ ░░░ ▒▒░ ▒ ░▒▓▒ ▒ ▒ ▒ ▒▓▒ ▒ ░ | |
░ ▒ ▒ ▒ ░░ ░▒ ░ ░ ░ ▒░ ░ ░░▒░ ░ ░ ░ ░▒ ░ ░ | |
░ ░ ░ ▒ ░░ ░ ░ ░ ░ ░░░ ░ ░ ░ ░ ░ | |
░ ░ ░ ░ ░ ░ | |
░ |
package main | |
import ( | |
"fmt" | |
"log" | |
"net/http" | |
"net/url" | |
"os/exec" | |
"time" |
class A(object): | |
def hook(self, f): | |
def intime(*args): | |
print intime.atime | |
intime.atime += 1 | |
return f(*args) | |
intime.atime = 0 | |
return intime | |
>>> f = A().hook(lambda b: b + 1) |