I hereby claim:
- I am atomicbird on github.
- I am atomicbird (https://keybase.io/atomicbird) on keybase.
- I have a public key whose fingerprint is 04AD 033D D950 E0FB 263E A6CC 7013 5FE6 A156 5DE3
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>KeepAlive</key> | |
| <dict> | |
| <key>Crashed</key> | |
| <true/> | |
| <key>SuccessfulExit</key> | |
| <false/> |
| struct x { | |
| int y; | |
| }; | |
| @interface Game : NSObject { | |
| char fields[9]; | |
| BOOL singlePlayer; | |
| BOOL isPlayerOne; | |
| BOOL wasPlayerOne; | |
| long int played; |
| diff --git a/archives/wwdccheck.html b/archives/wwdccheck.html | |
| index 713b830..93d4f4f 100644 | |
| --- a/archives/wwdccheck.html | |
| +++ b/archives/wwdccheck.html | |
| @@ -6,7 +6,7 @@ | |
| <meta name="viewport" content="width=1024" /> | |
| <link rel="shortcut icon" href="/favicon.ico" /> | |
| <link rel="icon" href="/favicon.ico" /> | |
| -<link rel="stylesheet" href="https://devimages.apple.com.edgekey.net/assets/core/styles/base.css" type="text/css" /> | |
| +<link rel="stylesheet" href="/assets/core/styles/base.css" type="text/css" /> |
| diff --git a/archives/wwdccheck.html b/archives/wwdccheck.html | |
| index f92ed3a..713b830 100644 | |
| --- a/archives/wwdccheck.html | |
| +++ b/archives/wwdccheck.html | |
| @@ -60,7 +60,7 @@ | |
| var s_account="appleglobal,appleusdeveloper" | |
| </script> | |
| -<!-- <script type="text/javascript" src="https://ssl.apple.com/metrics/scripts/s_code_h.js"></script> --> | |
| +<script type="text/javascript" src="https://www.apple.com/metrics/scripts/s_code_h.js"></script> |
| diff --git a/archives/wwdccheck.html b/archives/wwdccheck.html | |
| index be95ffd..f92ed3a 100644 | |
| --- a/archives/wwdccheck.html | |
| +++ b/archives/wwdccheck.html | |
| @@ -60,7 +60,7 @@ | |
| var s_account="appleglobal,appleusdeveloper" | |
| </script> | |
| -<script type="text/javascript" src="https://ssl.apple.com/metrics/scripts/s_code_h.js"></script> | |
| +<!-- <script type="text/javascript" src="https://ssl.apple.com/metrics/scripts/s_code_h.js"></script> --> |
| # Fix an iOS-converted PNG | |
| fixpng () { | |
| if [ -z "$1" ]; then | |
| echo "Usage: fixpng <inputFile> [outputFile]" | |
| return -1 | |
| else | |
| inputFile=$1 | |
| # Only "png" and "PNG" are allowed | |
| pngRegex='.*.(png|PNG)$' |
| #import <Foundation/Foundation.h> | |
| // Get an NSDate representing 30 minutes past midnight in an arbitrary time zone, and print it in a readable form. | |
| // Tom Harrington, [email protected] | |
| int main(int argc, char *argv[]) { | |
| NSAutoreleasePool *p = [[NSAutoreleasePool alloc] init]; | |
| NSString *timeZoneName = @"America/New_York"; | |
| NSTimeZone *timeZone = [NSTimeZone timeZoneWithName:timeZoneName]; |
| NSManagedObjectContext *theCreatingMOC = theChildMOC; | |
| [theCreatingMOC performBlockAndWait:^{ | |
| // Insert some test data... | |
| NSManagedObject *thePerson = [NSEntityDescription insertNewObjectForEntityForName:@"Person" inManagedObjectContext:theCreatingMOC]; | |
| [thePerson setValue:@"Steve Jobs" forKey:@"name"]; | |
| NSManagedObject *theCompany = [NSEntityDescription insertNewObjectForEntityForName:@"Company" inManagedObjectContext:theCreatingMOC]; | |
| [theCompany setValue:@"Apple" forKey:@"name"]; |
| [theCreatingMOC performBlockAndWait:^{ | |
| // Insert some test data... | |
| NSManagedObject *thePerson = [NSEntityDescription insertNewObjectForEntityForName:@"Person" inManagedObjectContext:theCreatingMOC]; | |
| [thePerson setValue:@"Steve Jobs" forKey:@"name"]; | |
| NSManagedObject *theCompany = [NSEntityDescription insertNewObjectForEntityForName:@"Company" inManagedObjectContext:theCreatingMOC]; | |
| [theCompany setValue:@"Apple" forKey:@"name"]; | |
| [theCompany setValue:[NSSet setWithObject:thePerson] forKey:@"employees"]; |