I hereby claim:
- I am jdriscoll on github.
- I am jdriscoll (https://keybase.io/jdriscoll) on keybase.
- I have a public key whose fingerprint is 019B 34DA 7585 1BA0 84FF AD16 AA0C 4F12 8190 ECAF
To claim this, I am signing this object:
| #include <SPI.h> | |
| #include <Wire.h> | |
| #include <Adafruit_GFX.h> | |
| #include <Adafruit_SSD1306.h> | |
| Adafruit_SSD1306 display = Adafruit_SSD1306(); | |
| #if defined(ESP8266) | |
| #define BUTTON_A 0 | |
| #define BUTTON_B 16 |
I hereby claim:
To claim this, I am signing this object:
| // Copyright (c) 2016 Justin Driscoll <[email protected]> | |
| // | |
| // Permission is hereby granted, free of charge, to any person obtaining a copy | |
| // of this software and associated documentation files (the "Software"), to deal | |
| // in the Software without restriction, including without limitation the rights | |
| // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| // copies of the Software, and to permit persons to whom the Software is | |
| // furnished to do so, subject to the following conditions: | |
| // | |
| // The above copyright notice and this permission notice shall be included in |
| -- all_things | |
| SELECT * FROM things | |
| -- thing_with_id | |
| SELECT * FROM things WHERE id = :id |
| // | |
| // Layout.swift | |
| // | |
| // Created by Justin Driscoll on 2/22/15. | |
| // | |
| import UIKit | |
| struct Inset { | |
| let value: CGFloat |
| #!/usr/bin/env sh | |
| if git diff-index --quiet HEAD --; then | |
| agvtool next-version -all | |
| if [ $# -eq 1 ] | |
| then | |
| agvtool new-marketing-version "$1" | |
| fi | |
| void arrayDiff(NSArray *array1, NSArray *array2, NSSet **objectsToAdd, NSSet **objectsToRemove, NSSet **objectsInBoth) { | |
| if (array1 == nil) { | |
| *objectsToAdd = [NSSet setWithArray:array2]; | |
| *objectsToRemove = [NSSet set]; | |
| *objectsInBoth = [NSSet set]; | |
| } | |
| else if (array2 == nil) { | |
| *objectsToAdd = [NSSet set]; | |
| *objectsToRemove = [NSSet setWithArray:array1]; |
| // | |
| // XMLObjectMapper.h | |
| // Copyright (c) 2014 Justin Driscoll All rights reserved. | |
| // | |
| // Permission is hereby granted, free of charge, to any person obtaining a copy | |
| // of this software and associated documentation files (the "Software"), to deal | |
| // in the Software without restriction, including without limitation the rights | |
| // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| // copies of the Software, and to permit persons to whom the Software is | |
| // furnished to do so, subject to the following conditions: |
| #import <Foundation/Foundation.h> | |
| void logIt(NSSet *set) { | |
| NSLog(@"set: %@", set); | |
| for (id object in set) { | |
| NSLog(@"element with hash: %lu", (unsigned long)[object hash]); | |
| } | |
| } | |
| int main(int argc, char *argv[]) { |
I hereby claim:
To claim this, I am signing this object: