Loading...
Daily Pic Pick

For my German reader:
Ich glaub’ - ab sofort kotzen bei mir die Pferde nicht mehr vor der Apotheke…
Loading...
“If opportunity doesn’t knock, build a door.”
Loading...
Loading...
Just a quick one for today.
How to play a sound file on the iPhone/iPod touch/iPad: SystemSoundID soundID;
NSString *aiffName = @"Glass";
NSString *aiffPath = [[NSBundle mainBundle] pathForResource:aiffName ofType:@"aiff"];
NSURL *aiffURL = [NSURL fileURLWithPath:aiffPath];
AudioServicesCreateSystemSoundID((CFURLRef) aiffURL, &soundID);
AudioServicesPlaySystemSound(soundID);
Loading...
Loading...
Random useless facts
The most common name in the world is Mohammed.
Loading...
Dear Paul,

Loading...
“Don’t be afraid of the space between your dreams and reality. If you can dream it, you can make it so.”
Loading...
Loading...
myWritings update available!

This update improves the documents chooser, printing of header/footer and fixes some bugs and glitches…
myWritings Website
myWritings Screen shots
Download myWritings for Mac OS 10.5.8+ (.app | 2.8 MB)
Loading...
Daily Snippet
Default behavior of every document-based application is to open a blank (new) document at startup - but sometimes one want to open the last used document:
- (BOOL)applicationShouldOpenUntitledFile:(NSApplication *)sender
{
NSDocumentController *docController = [NSDocumentController sharedDocumentController];
NSArray *docs = [docController recentDocumentURLs];
if ([docs count] > 0)
{
NSError *error = nil;
[docController openDocumentWithContentsOfURL:[docs objectAtIndex:0] display:YES error:&error];
if (!error)
{
return NO;
}
}
return YES;
}
Loading...
myTumblr update available!

This update adds rewritten tags and some improvements and bug fixes. You can now search for tags and easily delete them if needed…
myTumblr Website
myTumblr Screen shots
Download myTumblr (.app | Mac OS 10.5.8+ (Intel) | 3.4 MB)
Loading...
Loading...
“Life is a mirror and will reflect back to the thinker what he thinks into it.”
Loading...




