You have a Django site using GeoDjango with Postgres and PostGIS and want to take a backup copy of your production database and restore it on a different server with a different owner.
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
var logger = (function(console){ | |
var log = console.log.bind(console) || function(){}; | |
var obj = { | |
info: (console.info) ? console.info.bind(console) : log, | |
error: (console.error) ? console.error.bind(console) : log | |
}; | |
if (console.warn) { | |
obj.warning = console.warn.bind(console); | |
} else if (console.warning) { | |
obj.warning = console.warning.bind(console); |
We need to support multiple stockrecords per product.
Example stories:
- Customers in the UK use a stockrecord from a UK partner, customers from the US use a stockrecord from a US partner etc. We use IP lookup to determine which stockrecord is appropriate for a customer (this is the Meridian problem).
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
# Question - how best to handle model fields that are excluded from a form's | |
# fields. | |
# ------------------------------------------------------------ | |
# Option 1: assign fields to instance before passing into form | |
# ------------------------------------------------------------ | |
# views.py | |
instance = Vote(review=review, user=request.user) | |
form = VoteForm(data=request.POST, instance=instance) |
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 | |
""" | |
Search for migrations that share the same number. | |
""" | |
import subprocess | |
# You will probably want to replace 'oscar' with the appropriate folder for | |
# your project. I tried using '.' but it finds lots of migrations in .tox which | |
# I don't want to consider. | |
find_args = ['find', 'oscar', '-name', '*.py'] |
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 requests | |
import datetime | |
import sys | |
# Pass your OAuth token | |
token = sys.argv[1] | |
# Fetch all private repos (lazy - assumes only two pages) | |
headers = {'Authorization': 'token %s' % token} | |
response = requests.get( |
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 os | |
from django.db import connection | |
def setUp(): | |
""" | |
Create custom database tables before test suite runs | |
""" | |
execute_from_file('stores_table.sql') |
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 | |
""" | |
Extract metrics from a uWSGI log file | |
This should be saved as /etc/zabbix/pluginx/uwsgi_stats and called from | |
/etc/zabbix/zabbix_agentd.conf.d/uwsgi.conf, which should have contents: | |
UserParameter=uwsgi.stats[*],/etc/zabbix/plugins/uwsgi_stats $1 $2 | |
To gather these metrics in Zabbix, create a new item which calls this plugin and |
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
" ================================================== | |
" VIMRC file for David Winterbottom (@codeinthehole) | |
" ================================================== | |
" Inspiration {{{ | |
" ----------- | |
" See http://www.youtube.com/watch?v=aHm36-na4-4 | |
" | |
" Good articles: | |
" - http://alexpounds.com/blog/2014/06/06/the-vimrc-antiques-roadshow |