Skip to content

Instantly share code, notes, and snippets.

@mbylstra
mbylstra / gist:813d1a9c25cf671bb1a4
Created March 18, 2015 05:27
linux: temporarily change timezone for ls command
env TZ=Australia/Melbourne ls -al
@mbylstra
mbylstra / gist:c33077198227115ae590
Created March 18, 2015 06:19
turn on/off psql pager (annoying for \dt)
\pset pager
@mbylstra
mbylstra / gist:385fa8cbf22e58b3aa62
Last active December 3, 2015 13:38
django 1.7+ standalone script
import os
import django
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "myapp.settings")
django.setup()
################################################################################
@mbylstra
mbylstra / gist:aae6eac98d162a5cc9c2
Last active September 20, 2016 06:32
python mixin inheritance
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# MixinParent
# |
# Mixin A
# └--┐ |
# B