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
@interface NSString (Soundex) | |
- (NSString*) soundexString; | |
- (BOOL) soundsLikeString:(NSString*) aString; | |
@end |
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
- (NSError *)application:(NSApplication *)theApplication | |
willPresentError:(NSError *)error | |
{ | |
// Log the error to the console for debugging | |
NSLog(@"Application will present error:\n%@", [error description]); | |
return error; | |
} |
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
server { | |
listen 80; | |
server_name sparanoid.com www.sparanoid.com; | |
server_name_in_redirect off; | |
access_log /srv/www/sparanoid.com/logs/access.log; | |
error_log /srv/www/sparanoid.com/logs/error.log; | |
location / { | |
root /srv/www/sparanoid.com/public_html; |
NewerOlder