//
// MyPortfolio
//
@implementation Portfolio
/* My name is [names objectAtIndex:*];
---------------------------------------------------------------------------*/
NSMutableArray* names = [[[NSMutableArray alloc] init] autorelease];
[names addObject:@"濱田優"];
[names addObject:@"hamadayuu"];
[names addObject:@"濱田"];
[names addObject:@"優"];
[names addObject:@"hamada"];
[names addObject:@"yuu"];
[names addObject:@"浜田"];
[names addObject:@"浜田優"];
[names addObject:@"はまだゆう"];
[names addObject:@"はまだ"];
[names addObject:@"ゆう"];
/* Writing in the blog
---------------------------------------------------------------------------*/
Blog* WebTerminal = [[[Blog alloc]
initWithUrlString:@"http://web-terminal.blogspot.com/"] autorelease];
[WebTerminal openInNewTab];
/* Participate in Twitter
---------------------------------------------------------------------------*/
SNS* Twitter = [[[SNS alloc]
initWithUrlString:@"https://twitter.com/hamadayuu1"] autorelease];
[Twitter openInNewTab];
/* Participate in Facebook
---------------------------------------------------------------------------*/
SNS* Facebook = [[[SNS alloc]
initWithUrlString:@"http://www.facebook.com/profile.php?id=100004512762191"] autorelease];
[Facebook openInNewTab];
/* Facebook WebTerminal
---------------------------------------------------------------------------*/
SNS* FacebookBlogPage = [[[SNS alloc]
initWithUrlString:@"http://www.facebook.com/pages/WebTerminal/303080913134879"] autorelease];
[FacebookBlogPage openInNewTab];
/* Participate in GooglePlus
---------------------------------------------------------------------------*/
SNS* GooglePlus = [[[SNS alloc]
initWithUrlString:@"https://plus.google.com/111046934797894926602/posts"] autorelease];
[GooglePlus openInNewTab];
/* GooglePlus WebTerminal
---------------------------------------------------------------------------*/
SNS* GooglePlusBlogPage = [[[SNS alloc]
initWithUrlString:@"https://plus.google.com/102649881440892161911/posts"] autorelease];
[GooglePlusBlogPage openInNewTab];
@end