This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Looks like the JSON feed now only works after 9pm. Thanks Daring Fireball! ;) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // GTMStackTrace.m | |
| // | |
| // Copyright 2007-2008 Google Inc. | |
| // | |
| // Licensed under the Apache License, Version 2.0 (the "License"); you may not | |
| // use this file except in compliance with the License. You may obtain a copy | |
| // of the License at | |
| // | |
| // http://www.apache.org/licenses/LICENSE-2.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // GTMStackTrace.h | |
| // | |
| // Copyright 2007-2008 Google Inc. | |
| // | |
| // Licensed under the Apache License, Version 2.0 (the "License"); you may not | |
| // use this file except in compliance with the License. You may obtain a copy | |
| // of the License at | |
| // | |
| // http://www.apache.org/licenses/LICENSE-2.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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>Colors</key> | |
| <dict> | |
| <key>Background</key> | |
| <string>0.078 0.078 0.078</string> | |
| <key>InsertionPoint</key> | |
| <string>1.000 1.000 1.000</string> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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>Colors</key> | |
| <dict> | |
| <key>Background</key> | |
| <string>0.078 0.078 0.078</string> | |
| <key>InsertionPoint</key> | |
| <string>1.000 1.000 1.000</string> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Goes to the current iPhone simulator app directory | |
| alias simwd='cd "/Users/$USER/Library/Application Support/iPhone Simulator/User/Applications/" && cd `ls -t | cut -f 1 | head -1` && echo "Changed to `pwd`"' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| NSData *data = [NSData dataWithContentsOfFile:@"example.json"]; | |
| YAJLParser *parser = [[YAJLParser alloc] initWithParserOptions:YAJLParserOptionsAllowComments]; | |
| parser.delegate = self; | |
| [parser parse:data]; | |
| if (parser.parserError) { | |
| NSLog(@"Error:\n%@", parser.parserError); | |
| } | |
| parser.delegate = nil; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| YAJLParser *parser = [[[YAJLParser alloc] initWithParserOptions:0] autorelease]; | |
| parser.delegate = self; | |
| // A chunk of data comes... | |
| YAJLParserStatus status = [parser parse:chunk1]; | |
| // 'status' should be YAJLParserStatusInsufficientData, if its not finished | |
| if (parser.parserError) ...; | |
| // Another chunk of data comes... | |
| YAJLParserStatus status = [parser parse:chunk2]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| NSData *data = [NSData dataWithContentsOfFile:@"example.json"]; | |
| NSError *error = nil; | |
| YAJLDocument *document = [[YAJLDocument alloc] initWithData:data parserOptions:0 error:&error]; | |
| // Access root element at document.root | |
| NSLog(@"Root: %@", document.root); | |
| [document release]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| NSInvocation *invocation = [NSInvocation invocationWithMethodSignature:[self methodSignatureForSelector:@selector(listWithOffset:limit:)]]; | |
| [theInvocation setSelector:@selector(listWithOffset:limit:)]; | |
| [theInvocation setTarget:self]; | |
| NSInteger offset = 40; | |
| [theInvocation setArgument:&offset atIndex:2]; | |
| NSInteger limit = 20; | |
| [theInvocation setArgument:&limit atIndex:3]; | |
| [invocation performSelector:@selector(invoke) onThread:thread withObject:nil waitUntilDone:NO]; |
OlderNewer