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 isplit(patt, s, flags=None): | |
"""Return a generator that behaves similarly to re.split, with the | |
following differences: | |
1. It's a generator, not a list. | |
2. Zero-width separators work properly | |
(see http://bugs.python.org/issue3262) | |
3. The sequence always includes the separators, similar to calling |
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 bar.models import Bar | |
>>> b=Bar() | |
>>> b.pk='abcdef' | |
>>> b.save() | |
Traceback (most recent call last): | |
File "<console>", line 1, in <module> | |
File "/home/aron/.virtualenvs/pp/lib/python2.7/site-packages/django/db/models/base.py", line 460, in save | |
self.save_base(using=using, force_insert=force_insert, force_update=force_update) | |
File "/home/aron/.virtualenvs/pp/lib/python2.7/site-packages/django/db/models/base.py", line 553, in save_base | |
result = manager._insert(values, return_id=update_pk, using=using) |
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 operator, os, re, urllib | |
from google.appengine.ext import webapp | |
from google.appengine.ext.webapp import template | |
__all__ = ['PySearch'] | |
anchors, lower_anchors = None, None | |
def get_anchors(): | |
global anchors, lower_anchors | |
if anchors is None: |
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
#!/bin/bash | |
hdmi=HDMI-1 | |
dvi=DVI-D-1 | |
case /$0 in | |
*/sitdown) xrandr --output $hdmi --auto ; xrandr --output $dvi --off ;; | |
*/standup) xrandr --output $dvi --auto ; xrandr --output $hdmi --off ;; | |
esac |
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
#!/bin/bash | |
if glxinfo | grep -q 'NVIDIA Corporation'; then | |
case /$0 in | |
*/sitdown) xrandr -s 1 ;; | |
*/standup) xrandr -s 0 ;; | |
esac | |
else | |
hdmi=HDMI-1 | |
dvi=DVI-D-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
# Dynamically load virtualenvwrapper functions to reduce shell startup | |
# time. | |
# | |
# Copyright 2012 Aron Griffis <[email protected]> | |
# Released under the GNU GPL v3 | |
####################################################################### | |
# Python virtualenvwrapper loads really slowly, so load it on demand. | |
if [[ $(type -t workon) != function ]]; then | |
virtualenv_funcs=( workon deactivate mkvirtualenv ) |
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 python3 | |
# | |
# reghex.py -- checker for reghex puzzle | |
# | |
# Input on stdin in the following format: | |
# | |
# XXXXXXX | |
# XXXXXXXX | |
# XXXXXXXXX | |
# XXXXXXXXXX |
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 walk_url_tree(urls): | |
""" | |
Generator to walk a tree consisting of RegexURLPattern (with callback) | |
and RegexURLResolver (with nested url_patterns). | |
Recursive depth-first. | |
""" | |
for u in urls: | |
if hasattr(u, 'url_patterns'): | |
for u2 in walk_url_tree(u.url_patterns): |
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 walk_url_tree(urls): | |
""" | |
Generator to walk a tree consisting of RegexURLPattern (with callback) | |
and RegexURLResolver (with nested url_patterns). | |
""" | |
for u in urls: | |
if hasattr(u, 'url_patterns'): | |
for u2 in walk_url_tree(u.url_patterns): | |
yield u2 | |
else: |
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
#!/bin/bash | |
# | |
# gpgsig, a little script to sign your gpg/pgp keys | |
# | |
# Copyright 2006,2013 Aron Griffis <agriffis@n01se net> | |
# Released under the GNU GPL v2 | |
# | |
# Based loosely on ideas Damien Chrisment's gpgsig, but written from scratch to | |
# be simpler and just do what I need. Simply: | |
# |
OlderNewer