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
-- show running queries (pre 9.2) | |
SELECT procpid, age(clock_timestamp(), query_start), usename, current_query | |
FROM pg_stat_activity | |
WHERE current_query != '<IDLE>' AND current_query NOT ILIKE '%pg_stat_activity%' | |
ORDER BY query_start desc; | |
-- show running queries (9.2) | |
SELECT pid, age(clock_timestamp(), query_start), usename, query | |
FROM pg_stat_activity | |
WHERE query != '<IDLE>' AND query NOT ILIKE '%pg_stat_activity%' |
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
$ cat re.py | |
print('local re being imported') | |
$ python2.6 -c 'import re' | |
local re being imported | |
$ python2.6 -c 'from __future__ import absolute_import;import re' | |
local re being imported | |
$ python2.6 -c 'from re import *' | |
local re being imported | |
$ python2.6 -c 'from .re import *' |
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
# pseudo django project, the bare minimum | |
$ tree | |
. | |
├── manage.py | |
├── settings.py | |
├── setup.py | |
└── urls.py | |
# mae this a package | |
$ cat setup.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
# -*- coding: UTF-8 -*- | |
from django.core.management.base import BaseCommand, CommandError | |
from cms.models.pagemodel import Page | |
from optparse import make_option | |
def rebuild_tree(parent, left=1, recursion_level=0, commit=False): | |
right = left + 1 |