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
| x = { | |
| name: "x" | |
| }; | |
| y = { | |
| name: "y", | |
| a: x | |
| }; | |
| z = { |
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
| #import <Foundation/Foundation.h> | |
| #define SECOND_INTERVAL 1 | |
| #define MINUTE_INTERVAL SECOND_INTERVAL * 60 | |
| #define HOUR_INTERVAL MINUTE_INTERVAL * 60 | |
| #define DAY_INTERVAL HOUR_INTERVAL * 24 | |
| #define WEEK_INTERVAL DAY_INTERVAL * 7 | |
| int main(int argc, char *argv[]) { | |
| NSAutoreleasePool *p = [[NSAutoreleasePool alloc] init]; |
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
| Process: Chocolat [6355] | |
| Path: /Applications/Chocolat.app/Contents/MacOS/Chocolat | |
| Identifier: com.chocolatapp.Chocolat | |
| Version: 0.13 (0.13) | |
| Code Type: X86-64 (Native) | |
| Parent Process: launchd [119] | |
| Date/Time: 2012-05-20 17:05:09.785 -0700 | |
| OS Version: Mac OS X 10.7.4 (11E53) | |
| Report Version: 9 |
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
| _VALID_PUNCTUATION = (u"-x\u2010-\u2015\u2212\u30FC\uFF0D-\uFF0F " + | |
| u"\u00A0\u200B\u2060\u3000()\uFF08\uFF09\uFF3B\uFF3D.\\[\\]/~\u2053\u223C\uFF5E") | |
| _VALID_PHONE_NUMBER = (u"[" + _PLUS_CHARS + u"]*(?:[" + _VALID_PUNCTUATION + _STAR_SIGN + u"]*" + _DIGITS + u"){3,}[" +_VALID_PUNCTUATION + _STAR_SIGN + _VALID_ALPHA + _DIGITS + u"]*") |
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
| CGColorRef colors_A[] = { [UIColor colorWithWhite:0.0 alpha:0.35].CGColor, [UIColor colorWithWhite:0.0 alpha:0.0].CGColor }; | |
| CFArrayRef colors = CFArrayCreate(NULL, (const void**)colors_A, sizeof(colors_A) / sizeof(CGColorRef), &kCFTypeArrayCallBacks); |
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
| Exception Type: EXC_BAD_ACCESS (SIGSEGV) | |
| Exception Codes: KERN_INVALID_ADDRESS at 0x7201fec4 | |
| Crashed Thread: 0 | |
| Thread 0 name: Dispatch queue: com.apple.main-thread | |
| Thread 0 Crashed: | |
| 0 libobjc.A.dylib 0x32608f86 objc_msgSend + 30 | |
| 1 CoreFoundation 0x33a6802c CFGetTypeID + 68 |
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
| - (void)setIssue:(Issue *)anIssue | |
| { | |
| self.issue = anIssue; | |
| } |
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
| Randys-MacBook-Pro:pine4.64 randy$ ./build bsd | |
| make args are CC=cc bsd | |
| Including LDAP functionality | |
| Making c-client library, imapd, and ipopd | |
| +-----------------------------------------------------------+ | |
| | It appears that you do not have OpenSSL or equivalent | | |
| | installed on this system. | | |
| | | | |
| | Building PINE without SSL support will possibly introduce | |
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
| transitionViewControllers(vc1, vc2, 0.15, nil, function(){ | |
| view.frame = CGRectMake(100,100,100,100); | |
| }, function(){ | |
| view.removeFromSuperview(); | |
| }); |
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
| int f(int *x) | |
| { | |
| *x = 100; | |
| return 1; | |
| } | |
| int main(int argc, char *argv[]) { | |
| int i; | |
| int a = 1; | |