Skip to content

Instantly share code, notes, and snippets.

@keturn
keturn / run-pyrasite.md
Created June 30, 2015 04:38
pyrasite in 2015
@keturn
keturn / test_views.py
Last active December 31, 2015 16:39
dangjo view tests and URLs
from django.test import TestCase
from django.conf.urlresolvers impor resolve, reverse
from myviews import ThingView
class TestThingView(TestCase):
def setUp(self):
url_name = 'thing_view'
kwargs = {'pk': '5'}
/* The challenge:
* [from <https://plus.google.com/114096598438625047207/posts/1PaeD94qgDS>]
*
* Write a pure function z = f(x, y), where x and y are 7-bit unsigned
* integers and z is a 32-bit unsigned integer, having the following
* properties:
*
* - The function is one-to-one (that is, f(x, y) can only equal
* f(x', y') if x = x' and y = y')
*
@keturn
keturn / trackwindow.py
Created September 25, 2013 05:56
Log Windows focus changes.
"""Log window focus and appearance.
Written to try to debug some window popping up and stealing focus from my
Spelunky game for a split second.
Developed with 32-bit python on Windows 7. Might work in other environments,
but some of these APIs might not exist before Vista.
Much credit to Eric Blade for this:
https://mail.python.org/pipermail/python-win32/2009-July/009381.html
@keturn
keturn / nestedFuncs.py
Created August 9, 2012 18:28
python shadowing variables in inner scopes
def foo(a):
print "foo a", a
def bar(x):
print "bar reading a", a
def baz(x):
a = x
print "baz wrote to a", a
def quux(x):
<p>Something <a href="https://priv.ly/posts/276?burntAfter=1340935994&random_token=bae8874208">blah </a>
@keturn
keturn / hgrdiff.sh
Created October 13, 2011 19:13
hg repository diff
#!/bin/bash
# diff working copy of two mercurial repositories.
# Only include tracked files.
# Adapted from http://mercurial.selenic.com/wiki/GenerateDiffBetweenRepositories
if [ $# -eq 1 ] ; then
SRC=$PWD
DEST=$1
elif [ $# -eq 2 ] ; then
SRC=$1
DEST=$2
@keturn
keturn / assert_composite.py
Created August 10, 2011 20:13
asserting a function is a composite function
"""An example for discussion on "Fixing Untestable Code Sequences"
http://arlobelshee.com/post/mock-free-example-part-3-fixing-untestable-code-sequences
"""
from twisted.trial.unittest import TestCase
class ParserDoodle(object):
def parseCharacterIntoCards(self):
for powerElement in self.findAllPowers():
@keturn
keturn / gist:1121192
Created August 2, 2011 20:51
why is my wifi terrible?
client is ubuntu Lucid 10.04 LTS with updates, access point is an Airport Express of some sort.
$ ping -c 100 192.168.1.102 # this is the nameserver
--- 192.168.1.102 ping statistics ---
100 packets transmitted, 46 received, 54% packet loss, time 99207ms
rtt min/avg/max/mdev = 0.997/299.866/2064.793/466.158 ms, pipe 3
$ ping -c 100 192.168.1.1 # this is the router
--- 192.168.1.1 ping statistics ---
@keturn
keturn / gist:1061054
Created July 2, 2011 16:18
evolution fail on Migrating local user data
# Not sure exactly what the problem is here, or how to make a useful bug report out of it without sending off
# my entire ~/.evolution directory (which is both large and contains sensitive data).
# Version: 2.32.2-0ubuntu7
$ evolution &
Tracker-Message: Registering D-Bus service...
Name:'org.freedesktop.Tracker1.Miner.Emails'
Tracker-Message: Registering D-Bus object...
Tracker-Message: Path:'/org/freedesktop/Tracker1/Miner/Emails'
Tracker-Message: Object Type:'TrackerEvolutionPlugin'