Skip to content

Instantly share code, notes, and snippets.

View jacobb's full-sized avatar

Jacob Burch-Hill jacobb

View GitHub Profile
1234
@jacobb
jacobb / mtggbpycon.rst
Last active August 29, 2015 13:59
Magic the Gathering and Game Boy Pycon 2014 Meetup

Love to play Magic? Heard of it, but never learned how to play?

Own a Gameboy, or want to check out someone else's 3DS? Want to exchange Streetpasses, trade Pokemon?

Come to the MTG+Gameboy Open Space!

Sunday, April 13th at 4:00pm in 525 in Hall Viger.

MTG

Keybase proof

I hereby claim:

  • I am jacobb on github.
  • I am jacob (https://keybase.io/jacob) on keybase.
  • I have a public key whose fingerprint is B120 09B3 F492 51D3 822F CEE0 2E21 B472 EACF 55F1

To claim this, I am signing this object:

there's a day
the stove will be off
the dog, lazy and subdued
but this burnt and bitten hand
knows only speed.
it cannot tap,
it cannot sway,
it cannot bunt.
it swings for the fences
hooks, cuts and thrusts.
@jacobb
jacobb / bad.py
Created August 30, 2012 19:15
poorly formatted python file
import os
import re
import sys
print sys.path
print {'some_key':'lol'}
print "a really really super duper long crazy line that goes beyond what is recommended at 80 characters and all of that jazz yay yay yay"
@jacobb
jacobb / key_bindings.json
Created August 30, 2012 19:15
sublimetext 2 conf
[
{ "keys": ["ctrl+f"], "command": "indentxml" },
{ "keys": ["super+k", "super+b"], "command": "toggle_side_bar" },
{
"keys": ["super+shift+2"],
"command": "set_layout",
"args":
{
"cols": [0.0, 1.0],
"rows": [0.0, 0.5, 1.0],
class Choice(object):
def __init__(self, *args):
self._data = tuple([
(value, value) if isinstance(value, str) else value
for value in args
])
self._data_dict = dict(self._data)
@jacobb
jacobb / nap.txt
Created August 4, 2012 08:41
Nap Example
This is a sample nap gist!
<?xml version="1.0"?>
<root>
<list>
<item>
<name>Swap Space and Tab</name>
<identifier>private.swap_space_and_tab</identifier>
<autogen>--KeyToKey-- KeyCode::SPACE, KeyCode::TAB</autogen>
<autogen>--KeyToKey-- KeyCode::TAB, KeyCode::SPACE</autogen>
</item>
<item>
/*
SublimeLinter default settings
*/
{
/*
Sets the mode in which SublimeLinter runs:
true - Linting occurs in the background as you type (the default).
false - Linting only occurs when you initiate it.
"load-save" - Linting occurs only when a file is loaded and saved.