I hereby claim:
- I am phooky on github.
- I am phooky (https://keybase.io/phooky) on keybase.
- I have a public key whose fingerprint is 8D02 E4ED 9CB7 9E1D 739A A5AE 2811 F88B 2064 A861
To claim this, I am signing this object:
| #!/usr/bin/env python | |
| # Here's a useful skeleton for generating (in this case) an intel hex file | |
| # for filling size bytes with 0xff; it can be easily modified to convert | |
| # bytes from stdin. | |
| size = 0x200 | |
| offset = 0 | |
| blocksize = 16 |
| #!/bin/sh | |
| # | |
| # Git wrapper for tracking cloned repositories and implementing | |
| # "pull-all" to update all cloned repositories from their origins. | |
| # | |
| # Add the following to your bashrc to enable: | |
| # alias git=/PATH/TO/git-wrapper.sh | |
| # Todo: parse out options to clone to avoid completely messing up |
| #!/usr/bin/python | |
| import sdxf | |
| from math import sqrt, sin, cos, pi | |
| iterations = 11 | |
| def move(pos,angle,distance): | |
| nx = pos[0] + sin(angle)*distance | |
| ny = pos[1] + cos(angle)*distance |
| #!/usr/bin/python | |
| from itertools import chain | |
| import sdxf | |
| from math import sin,cos,pi | |
| axiom = list("LFL+F+LFL") | |
| rules = { 'L' : list("-RF+LFL+FR-"), | |
| 'R' : list("+LF-RFR-FL+") } |
| #!/usr/bin/python | |
| from github3 import authorize, login | |
| from getpass import getuser, getpass | |
| from os.path import exists, expanduser | |
| from subprocess import Popen | |
| CREDENTIALS_PATH = expanduser('~/.clone_repo.token') | |
| def cloneAllRepos(gh): |
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/python3 | |
| import wave | |
| import sys | |
| import struct | |
| import math | |
| outpath=sys.argv[0].rsplit('.',1)[0]+".wav" | |
| print("Writing to {}".format(outpath)) |
| #!/bin/bash | |
| # There's a better way to do this! Use: | |
| # https://github.com/dfm/rename-github-default-branch | |
| # instead. | |
| # | |
| # Also: don't change the default branch name on your gists! Github appears to have them | |
| # locked to master; it will break your gist. | |
| set -e |