Skip to content

Instantly share code, notes, and snippets.

@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):
@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
/* 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 / 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'}
@keturn
keturn / run-pyrasite.md
Created June 30, 2015 04:38
pyrasite in 2015
@keturn
keturn / dunder_str_unicode.py
Last active November 11, 2015 21:05
the perils of returning unicode from __str__ in Python 2 compatible code
# -*- coding: utf-8 -*-
from django.utils.encoding import force_str
class BadStr(object):
def __init__(self, content):
self.content = content
def __str__(self):
assert isinstance(self.content, unicode), "returning it from __str__ anyway"
@keturn
keturn / rescope.py
Created February 8, 2016 09:16
Nested scope, but not nested visually?
"""
Can we have a "nested function", but have definition of the inner function not lexically within its parent?
Question by https://www.reddit.com/r/compsci/comments/44o18l/do_any_programming_languages_allow_you_to_give/
This file was written as an intellectual exercise. I do not recommend using it. Ever.
The implementation below works by using the descriptor protocol to return a newly bound method every time the outer
function makes a new reference to the inner function, and uses the outer method's *locals* as the inner method's
*globals*. The primary disadvantage here is that means the inner method doesn't have access to the actual globals.
@keturn
keturn / ec2-ssh.sh
Last active February 9, 2016 00:46
ssh to an AWS EC2 host by its group name.
#!/bin/bash
# requires AWS CLI: https://aws.amazon.com/cli/
# and jq: https://stedolan.github.io/jq/
set -e
EC2_NAME="$1"
if [ -z "${EC2_NAME}" ] ; then
echo Usage: "$0" '<ec2-name> [ssh args ...]'
fi
shift
EC2_HOSTNAME=$(aws --output json ec2 describe-network-interfaces --filter "Name=group-name,Values=${EC2_NAME}" |
@keturn
keturn / cypher_python_syntax_abuse.py
Last active February 21, 2016 06:15
Can we force something like Cypher syntax in to Python? In the tradition of [Sugared DOM](https://gist.github.com/neilj/1532562) and [plumbum](https://pypi.python.org/pypi/plumbum).
# -*- coding: utf-8 -*-
"""THIS IS PROBABLY NOT A GOOD IDEA.
"""
def test_cases():
cases = [
(N(), "()"),
(E, "[]"),
(E[:], "[]"),
@keturn
keturn / multiple_merge_not_commutative.adoc
Last active July 8, 2016 00:08 — forked from jexp/graph_gist_template.adoc
Cypher: Multiple MERGE statements are not commutative

Muliple Merge Operations are Not Commutative

Note
See graphgist view.

Introduction