I hereby claim:
- I am davemenninger on github.
- I am davemenninger (https://keybase.io/davemenninger) on keybase.
- I have a public key whose fingerprint is 2054 5168 14F3 E5E3 6A1C C390 7310 F86F A989 BBBA
To claim this, I am signing this object:
| #include <SDL2/SDL.h> | |
| #include <stdio.h> | |
| /* Screen dimension constants */ | |
| const int SCREEN_WIDTH = 640; | |
| const int SCREEN_HEIGHT = 480; | |
| int error(char *msg, const char *err) { | |
| printf("Error %s: %s\n", msg, err); | |
| return 1; |
| #!/usr/bin/env bash | |
| GIT_ROOT=`git rev-parse --show-toplevel` | |
| MIGRATION_FILENAME="$GIT_ROOT/migrations/$1.sql" | |
| git checkout -b $1 | |
| touch $MIGRATION_FILENAME | |
| vim $MIGRATION_FILENAME |
| def position( speed: , time:) | |
| (speed * time) % 576 | |
| end | |
| planets = [ | |
| { name: "A", speed: 24, }, | |
| { name: "B", speed: 15, }, | |
| { name: "C", speed: 9, }, | |
| { name: "D", speed: 6, }, | |
| { name: "E", speed: 4, }, |
| #!/bin/bash │- # TODO line_item_number, event, description | |
| │- # $order->$method( | |
| here=`pwd` │- # line_item_numbers => [ $message->{line_item_number} ], | |
| cd `git rev-parse --show-toplevel` │- # description => $message->{event}->{description}, | |
| findintext TODO | egrep -v '*~$' |
I hereby claim:
To claim this, I am signing this object:
| HTML = $(patsubst %.asciidoc,%.html,$(shell find . -name '*.asciidoc' )) | |
| PDF = $(patsubst %.html,%.pdf,$(shell find . -name '*.html' )) | |
| all: $(HTML) $(PDF) | |
| %.html: %.asciidoc | |
| asciidoc -a toc $(<F) | |
| %.pdf: %.html | |
| xhtml2pdf $(<F) |
| import supybot.utils as utils | |
| from supybot.commands import * | |
| import supybot.plugins as plugins | |
| import supybot.ircutils as ircutils | |
| import supybot.callbacks as callbacks | |
| from urllib2 import urlopen | |
| from json import load | |
| class Hive13(callbacks.Plugin): |
| #!/usr/bin/python | |
| import urllib | |
| import urllib2 | |
| from bs4 import BeautifulSoup | |
| url = "http://slg.cps-k12.org/slg/school-lookup.asp" | |
| #url = "http://slg.cps-k12.org/slg/school-lookup-nextyear.asp" | |
| values = { |
| #!/bin/bash | |
| curl 'http://www.ohgo.com/Dashboard.aspx/getRoadSensorMarkers' \ | |
| -X POST \ | |
| -H 'Accept: */*' \ | |
| -H 'Accept-Encoding: gzip, deflate' \ | |
| -H 'Accept-Language: en-US,en;q=0.5' \ | |
| -H 'Cache-Control: no-cache' \ | |
| -H 'Connection: keep-alive' \ | |
| -H 'Content-Type: application/json; charset=utf-8' \ |