Skip to content

Instantly share code, notes, and snippets.

@keturn
keturn / closure-compiler
Created August 4, 2010 23:47
convenience wrapper for closure-compiler/compiler.jar
#!/bin/bash
java -jar ~/src/closure-compiler/compiler.jar ${@/#/--js }
@keturn
keturn / loopback-latency.sh
Created August 20, 2010 22:35
use netem to add latency to loopback network traffic
#!/bin/bash
#
# Add latency to all outgoing traffic on $DEV on tcp/udp $PORT,
# in the amount of $DELAY.
#
# This is matching on both source port and destination port, which
# may hit you twice if you're accessing a local resource.
#
# To see what's currently in effect,
# tc -s qdisc show dev lo
@keturn
keturn / ngplans.htm
Created April 8, 2011 19:04
trying to use angular
<!doctype html>
<html xmlns:ng="http://angularjs.org">
<head>
<title>all plans</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link rel="icon" href="/s/plans/images/plans-icon.png?68f34ebf0f" />
<link rel="stylesheet" href="/s/jquery-ui-css/jquery-ui-1.8.9.css?9f6e6ea563" type="text/css" charset="utf-8"/>
<link rel="stylesheet" href="/s/jquery-ui-css/jquery-ui-1.8.9.custom.css?7ea76fa98c" type="text/css" charset="utf-8"/>
<link rel="stylesheet" type="text/css" href="/s/plans/css/plans.css?9fbd065898">
<link rel="stylesheet" type="text/css" href="/s/plans/css/datatables.css?396b174e7a" />
@keturn
keturn / README.markdown
Created May 25, 2011 22:51
playing with canvas and sierpinski

Canvas Experiment: Sierpinski Triangles

This is just a little doodle for me to get a feel for how the HTML5 canvas element can be used. The canvas is a pixel-based sort of thing, and so maybe not well suited to applications that want scalable elements or independent moving parts; there SVG might be a better choice. But for uses where you want to fiddle with a lot of pixels, where it'd be undesirable to make a new object for every point you manipulate, canvas fits the bill.

@keturn
keturn / test_handler.py
Created June 16, 2011 23:47
another "Am I doing this wrong?" case of unit tests for a web controller
# test case using fudge 0.9.x for fakes.
class TestUploadList(TestCase):
@with_fakes
def test_upload(self):
"""Upload is converted and JSON returned.
"""
self.req = Fake("Request").has_attr(variables={})
content = "UPLOADED STUFF"
@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'
@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 / 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 / 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
<p>Something <a href="https://priv.ly/posts/276?burntAfter=1340935994&random_token=bae8874208">blah </a>