Question | Scripture |
---|---|
What is sin? | [1 John 3:4][1] |
Can one sin by doing nothing? | [James 4:17][2] |
From where does sin come? | [Mark 7:20-23][3] |
What is the result of sin? | [Romans 8:5-8][4] |
What has been done about sin? | [Romans 5:6-11][5] |
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
(et-test)erics@builder-1204-x64:~/et-test/et-issue-example$ valgrind --tool=massif python manage.py generate_all_thumbnail_aliases | |
==16695== Massif, a heap profiler | |
==16695== Copyright (C) 2003-2011, and GNU GPL'd, by Nicholas Nethercote | |
==16695== Using Valgrind-3.7.0 and LibVEX; rerun with -h for copyright info | |
==16695== Command: python manage.py generate_all_thumbnail_aliases | |
==16695== | |
1; RSS: 142912; Unshared: 0; Obj: 27683 | |
2; RSS: 142912; Unshared: 0; Obj: 27535 | |
3; RSS: 177228; Unshared: 0; Obj: 27563 | |
4; RSS: 177228; Unshared: 0; Obj: 27591 |
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
#!/usr/bin/env bash | |
# This script prints out all of your Redis keys and their size in a human readable format | |
# Copyright 2013 Brent O'Connor | |
# License: http://www.apache.org/licenses/LICENSE-2.0 | |
human_size() { | |
awk -v sum="$1" ' BEGIN {hum[1024^3]="Gb"; hum[1024^2]="Mb"; hum[1024]="Kb"; for (x=1024^3; x>=1024; x/=1024) { if (sum>=x) { printf "%.2f %s\n",sum/x,hum[x]; break; } } if (sum<1024) print "1kb"; } ' | |
} |
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
$ ./pip.sh outdated | |
Fabric (1.4.3 != 1.5.1) | |
gunicorn (0.17.0 != 0.17.2) | |
$ ./pip.sh install -U gunicorn | |
Downloading/unpacking gunicorn==0.17.2 | |
Using download cache from /Users/jefftriplett/.pip/download_cache/http%3A%2F%2Fpypi.python.org%2Fpackages%2Fsource%2Fg%2Fgunicorn%2Fgunicorn-0.17.2.tar.gz | |
Running setup.py egg_info for package gunicorn | |
Installing collected packages: gunicorn |
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
#!/usr/bin/env python | |
from checkpid import pidcheck | |
from time import sleep | |
import logging | |
log = logging.getLogger("checkpid") | |
log.setLevel(logging.INFO) | |
log.setLevel(logging.DEBUG) | |
ch = logging.StreamHandler() |
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
""" | |
Author: Jeff Triplett | |
Based off: https://code.djangoproject.com/wiki/PaginatorTag | |
Thanks to Brent O'Connor for pointing it out. | |
""" | |
from django import template | |
register = template.Library() |
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
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
import urllib2 | |
gh_url = 'https://api.github.com' | |
req = urllib2.Request(gh_url) | |
password_manager = urllib2.HTTPPasswordMgrWithDefaultRealm() |
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
class CachedCountCloneProxy(object): | |
''' This allows us to monkey-patch count() on QuerySets so we can cache it and speed things up. | |
._clone is called so we have to monkey-patch that first... | |
''' | |
def __init__(self, queryset): | |
self._queryset = queryset | |
self._queryset._clone_original = self._queryset._clone | |
def __call__(self): |