7 hours ago
daily pic pick


Daily Pic Pick

(via)

For my German reader:
Ich glaub’ - ab sofort kotzen bei mir die Pferde nicht mehr vor der Apotheke…


Loading...



10 hours ago
quote


“If opportunity doesn’t knock, build a door.”

Milton Berle

Loading...




14 hours ago


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...




1 day ago
useless


Random useless facts

The most common name in the world is Mohammed.

Loading...



1 day ago
paul conrad


Dear Paul,

I guess you won’t stop drawing, wherever you now may be. Hopefully the surrounding persons have changed…

Loading...



1 day ago
quote


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

Belva Davis

Loading...



myWritings update available!

There is a new version of myWritings (the word processor for the rest of us) 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...



2 days ago
mytumblr
moapp
update


myTumblr update available!

I’ve just uploaded the latest version of myTumblr.

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...




2 days ago
quote


“Life is a mirror and will reflect back to the thinker what he thinks into it.”

Ernest Holmes

Loading...