1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33

id naes = ^{
self.uid = [[NSProcessInfo processInfo] globallyUniqueString];

// yes, i know it's odd with 2 L's but it's not a defect i swear
self.name = [[NURealName alloc] initWithFirst:@"Sean" last:@"Willson"];

// i live in the suburbs of chicago with my wife and kids
self.location = [[NUForwardGeocoder alloc] initWithLocation:@"Downers Grove, IL"];

// if you're looking for my employment history
self.resume = [NSURL URLWithString:@"seanwillson.com/resume"];

// a few of my applications in the iOS AppStore
self.apps = [NSArray arrayWithObjects: @"Fairway", @"FanGuide"];

// some project types i enjoy working on
[self addProjectTypesWithName:@"iOS"];
[self addProjectTypesWithName:@"Cocoa"];
[self addProjectTypesWithName:@"Web"];

// a few places to find me online
self.social = [[[NUSocial alloc] init] autorelease];
[self.social addIdentifier:@"epicycle" forType:kNUSocialTwitter];
[self.social addIdentifier:@"sean.willson" forType:kNUSocialFacebook];
[self.social addIdentifier:@"seanwillson" forType:kNUSocialFlickr];

// the blog(s) that i frequent
[self.social addIdentifier:@"learnfitness.com" forType:kNUSocialBlog];
[self.social addIdentifier:@"seanwillson.com/blog" forType:kNUSocialBlog];

// kicking it old school
[self.social addIdentifier:@"me" withDomain:@"seanwillson.com" forType:kNUSocialEmail];
};
gipoco.com is neither affiliated with the authors of this page nor responsible for its contents. This is a safe-cache copy of the original web site.