Skip to content
Aug 30 10

Portfolio

by Colin

My portfolio site, INC, has been attacked and redirects users to malicious third-party websites. I'm under the impression it's related to Media Temple's Redirect Exploit since INC uses WordPress. Since INC is not hosted by Media Temple, though Tomorrow Evening is, I can not log in to back up my database. Hopefully INC's host can get things moving.. this has been the only issue I've had with them over the years I've been with them. Perhaps this is the sign I've been looking for to make a new flash portfolio site.

Aug 5 10

iPhone Event Dispatching

by Colin

Here are the basics of Event Handling for Objective C.

 
// To listen for an event.
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(eventHandler:) name:@"eventName" object:nil];
 
// The event handler
-(void)eventHandler:(NSNotification *)notification
{
	NSLog(@"Event triggered!");
}
 
// Dispatching the event
[[NSNotificationCenter defaultCenter] postNotificationName:@"eventName" object:nil];
 
Jul 15 10

Particle Play

by Colin

First stages of my first personal iPhone/iPad App.

Red circles are touch points.
Double tap to change from creating gravitational fields to adding particles.

Originally written in Processing, Particle Play has been converted to C++ using OpenGL and openFrameworks.

Jul 5 10

Xcode 3.2.3 Problems and Solutions

by Colin

Upgrading to Xcode 3.2.3 can give you a few problems at first, but here's how I've found out how to fix those issues.
read more...

Jun 10 10

Google Code

by Colin

I now have a Google Code page to offer open-source classes.