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
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
def print_class_name(fn): | |
""" | |
A decorator that prints the name of the class of a bound function (IE, a method). | |
NOTE: This MUST be the first decorator applied to the function! E.g.: | |
@another_decorator | |
@yet_another_decorator | |
@print_class_name | |
def my_fn(stuff): |
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
def print_class_name(fn): | |
""" | |
A decorator that prints the name of the class of a bound function (IE, a method). | |
This version works with Python 2.6. | |
NOTE: This MUST be the first decorator applied to the function! E.g.: | |
@another_decorator | |
@yet_another_decorator | |
@print_class_name |
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
{ | |
"folders": | |
[ | |
{ | |
"path": "django_project_dir" | |
}, | |
{ | |
"path": "lib/python2.7" | |
} | |
], |
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
for dir in *; do cd $dir && git remote show origin -n | grep Fetch | awk '{split($0,array," ")} END{print array[3]}' | xargs -I {} git submodule add {} $dir && cd ..; done |
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
_, filename, _, _ := runtime.Caller(1) | |
f, err := os.Open(path.Join(path.Dir(filename), "data.csv")) |
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
$ python --version | |
Python 2.6.5 | |
In [1]: import dogapi | |
In [2]: quit() | |
Exception in thread Thread-2 (most likely raised during interpreter shutdown): | |
Traceback (most recent call last): | |
File "/usr/lib/python2.6/threading.py", line 532, in __bootstrap_inner |
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
$ python --version | |
Python 2.6.5 | |
$ sudo /etc/init.d/datadog-agent restart | |
Stopping datadog agent: (using supervisorctl) collector: stopped | |
dd-agent. | |
Starting datadog agent: (using supervisorctl) collector: started | |
forwarder: ERROR (abnormal termination) | |
dd-agent. |
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.db import models | |
# Assuming this model. | |
class Example(models.Model): | |
image = models.ImageField(upload_to="somewhere/special") | |
# You want to set this field to point to an existing image (in a script, or a view, etc.). | |
example = Example.objects.get(id=1) |
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
%install_ext https://raw.github.com/abrookins/django_notebook/master/django_notebook.py |
OlderNewer