<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>The world of me.</title>
	<atom:link href="http://hybrid808.com/wordpress/Index.php?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://hybrid808.com/wordpress</link>
	<description>Jacob Dolinsky</description>
	<lastBuildDate>Fri, 05 Feb 2010 07:03:46 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Setting View to Landscape and Hiding Status Bar in iPhone</title>
		<link>http://hybrid808.com/wordpress/?p=195</link>
		<comments>http://hybrid808.com/wordpress/?p=195#comments</comments>
		<pubDate>Fri, 05 Feb 2010 07:02:07 +0000</pubDate>
		<dc:creator>jacobdol</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://hybrid808.com/wordpress/?p=195</guid>
		<description><![CDATA[If you were wondering how to start your application in landscape mode with the status bar hidden, you need to override two methods in your ViewController: viewDidLoad and shouldAutorotateToInterfaceOrientation.

// Implement viewDidLoad to do additional setup after loading the view, typically from a nib.
- (void)viewDidLoad {
	[[UIApplication sharedApplication] setStatusBarHidden:YES animated:NO];
    [super viewDidLoad];
}
// Override to [...]]]></description>
			<content:encoded><![CDATA[<p>If you were wondering how to start your application in landscape mode with the status bar hidden, you need to override two methods in your ViewController: viewDidLoad and shouldAutorotateToInterfaceOrientation.</p>
<p><code><br />
// Implement viewDidLoad to do additional setup after loading the view, typically from a nib.<br />
- (void)viewDidLoad {<br />
	[[UIApplication sharedApplication] setStatusBarHidden:YES animated:NO];<br />
    [super viewDidLoad];<br />
}</p>
<p>// Override to allow orientations other than the default portrait orientation.<br />
- (BOOL) shouldAutorotateToInterfaceOrientation: (UIInterfaceOrientation) interfaceOrientation {<br />
    // Return YES for supported orientations<br />
    return (interfaceOrientation == UIInterfaceOrientationLandscapeRight);<br />
}<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://hybrid808.com/wordpress/?feed=rss2&amp;p=195</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Interface Builder does not have &#8220;Class Outlets&#8221; any longer</title>
		<link>http://hybrid808.com/wordpress/?p=187</link>
		<comments>http://hybrid808.com/wordpress/?p=187#comments</comments>
		<pubDate>Fri, 29 Jan 2010 01:45:09 +0000</pubDate>
		<dc:creator>jacobdol</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://hybrid808.com/wordpress/?p=187</guid>
		<description><![CDATA[ I am not sure what happened, but Class Actions and Outlets got moved to a new location. They live now in the Library Window. To add Actions and Outlets to your class, first locate it in the Library (search for it), click and then select Outlets or Actions tabs. 
 
]]></description>
			<content:encoded><![CDATA[<p> I am not sure what happened, but Class Actions and Outlets got moved to a new location. They live now in the Library Window. To add Actions and Outlets to your class, first locate it in the Library (search for it), click and then select Outlets or Actions tabs. <br/><br />
 <a href="http://hybrid808.com/wordpress/wp-content/uploads/2010/01/xcode.jpg"><img src="http://hybrid808.com/wordpress/wp-content/uploads/2010/01/xcode.jpg" alt="xcode" title="xcode" class="alignright size-full wp-image-186" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://hybrid808.com/wordpress/?feed=rss2&amp;p=187</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Creating gradient background for iPhone Tab Bar</title>
		<link>http://hybrid808.com/wordpress/?p=174</link>
		<comments>http://hybrid808.com/wordpress/?p=174#comments</comments>
		<pubDate>Sun, 24 Jan 2010 17:49:59 +0000</pubDate>
		<dc:creator>jacobdol</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://hybrid808.com/wordpress/?p=174</guid>
		<description><![CDATA[If you want to have a gradient on the background of your UITabBar in iPhone 3.0, it&#8217;s fairly easy. 
Step 1: Create an image with width of 1px and height of 49px with a gradient of your choice. Save the image as png with the name of your choice (tabbar_back_.png).
Step 2: Add the image to [...]]]></description>
			<content:encoded><![CDATA[<p>If you want to have a gradient on the background of your UITabBar in iPhone 3.0, it&#8217;s fairly easy. </p>
<p>Step 1: Create an image with width of 1px and height of 49px with a gradient of your choice. Save the image as png with the name of your choice (tabbar_back_.png).</p>
<p>Step 2: Add the image to your project.</p>
<p>Step 3: Extend UITabBarController. Assuming you already have Tab Bar Controller in your xib file, go to Xcode and create a new UIViewController subclass with the name of  your choice (MyUITabController).<br />
Change the header file to:<br />
<code> @interface MyUITabController : UITabBarController{}@end</code><br />
Change the implementation file to:<br />
<code><br />
- (void)viewDidLoad {<br />
    [super viewDidLoad];<br />
	CGRect frame = CGRectMake(0, 0, 480, 49);<br />
    UIView *viewWithColor = [[UIView alloc] initWithFrame:frame];<br />
    UIImage *backgroundImage = [UIImage imageNamed:@"tabbar_back_.png"];<br />
    UIColor *backgroundColor = [[UIColor alloc] initWithPatternImage:backgroundImage];<br />
    viewWithColor.backgroundColor =backgroundColor;<br />
	[backgroundColor release];<br />
    [[self tabBar] insertSubview:viewWithColor atIndex:0];<br />
    [viewWithColor release];</p>
<p>}<br />
</code><br />
Save the project.</p>
<p>Step 4. Go to Interface Builder and select UITabBarController. Press Command+4 this should bring up Controller Identity Window. Select your new file name (MyUITabController) from Class Identity Class drop down. Save. Build and go!!!!!</p>
]]></content:encoded>
			<wfw:commentRss>http://hybrid808.com/wordpress/?feed=rss2&amp;p=174</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Configuring Subeclipse with Flex 3</title>
		<link>http://hybrid808.com/wordpress/?p=172</link>
		<comments>http://hybrid808.com/wordpress/?p=172#comments</comments>
		<pubDate>Fri, 22 Jan 2010 20:38:04 +0000</pubDate>
		<dc:creator>jacobdol</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://hybrid808.com/wordpress/?p=172</guid>
		<description><![CDATA[I have two computers one of which runs SVN. When I tried to access the SVN from a remote Flex Builder, it worked fine. Subeclipse on a local Flex Builder however was not able to connect and was giving me this error: error validating location.
The trick is to use local host to connect locally to [...]]]></description>
			<content:encoded><![CDATA[<p>I have two computers one of which runs SVN. When I tried to access the SVN from a remote Flex Builder, it worked fine. Subeclipse on a local Flex Builder however was not able to connect and was giving me this error: error validating location.<br />
The trick is to use local host to connect locally to the SVN with Subeclipse. In the url enter next &#8211; (protocol of your choice)://localhost/path_to_your_repository</p>
]]></content:encoded>
			<wfw:commentRss>http://hybrid808.com/wordpress/?feed=rss2&amp;p=172</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>No Flash CS5 Beta</title>
		<link>http://hybrid808.com/wordpress/?p=171</link>
		<comments>http://hybrid808.com/wordpress/?p=171#comments</comments>
		<pubDate>Sat, 19 Dec 2009 16:19:33 +0000</pubDate>
		<dc:creator>jacobdol</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Flash]]></category>

		<guid isPermaLink="false">http://hybrid808.com/wordpress/?p=171</guid>
		<description><![CDATA[Adobe decided to cancel Flash CS5 Beta. I wonder if it has something to do with Apple (being control freaks) freaking out about Flash CS5 being able to compile applications for iPhone. 
]]></description>
			<content:encoded><![CDATA[<p>Adobe decided to cancel Flash CS5 Beta. I wonder if it has something to do with Apple (being control freaks) freaking out about Flash CS5 being able to compile applications for iPhone. </p>
]]></content:encoded>
			<wfw:commentRss>http://hybrid808.com/wordpress/?feed=rss2&amp;p=171</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SVG is alive and well</title>
		<link>http://hybrid808.com/wordpress/?p=168</link>
		<comments>http://hybrid808.com/wordpress/?p=168#comments</comments>
		<pubDate>Sun, 13 Dec 2009 20:23:19 +0000</pubDate>
		<dc:creator>jacobdol</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://hybrid808.com/wordpress/?p=168</guid>
		<description><![CDATA[I have been working on a countdown timer for the 2010 New Years (work in progress) and decided to give SVG a try. And it works great in most browsers except IE of course. To work around this annoying limitation, I downloaded SVGWEB javascript library.  This is an amazing library that detects IE and [...]]]></description>
			<content:encoded><![CDATA[<p>I have been working on a <a href="http://hybrid808.com">countdown timer</a> for the 2010 New Years (work in progress) and decided to give SVG a try. And it works great in most browsers except IE of course. To work around this annoying limitation, I downloaded <a href="http://code.google.com/p/svgweb/">SVGWEB javascript library</a>.  This is an amazing library that detects IE and substitutes SVG with Flash.<br />
Working with SVG is very easy since it becomes a part of your document DOM model. You can manipulate it with common used DOM methods: getElementById, getElementsByTagName and others. </p>
]]></content:encoded>
			<wfw:commentRss>http://hybrid808.com/wordpress/?feed=rss2&amp;p=168</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>My Portfolio Beta is Up</title>
		<link>http://hybrid808.com/wordpress/?p=164</link>
		<comments>http://hybrid808.com/wordpress/?p=164#comments</comments>
		<pubDate>Thu, 12 Nov 2009 00:19:31 +0000</pubDate>
		<dc:creator>jacobdol</dc:creator>
				<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://hybrid808.com/wordpress/?p=164</guid>
		<description><![CDATA[here it is H E R E
]]></description>
			<content:encoded><![CDATA[<p>here it is <a href="http://hybrid808.com/portfolio">H E R E</a></p>
]]></content:encoded>
			<wfw:commentRss>http://hybrid808.com/wordpress/?feed=rss2&amp;p=164</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Narita&#8217;s butterfly effect</title>
		<link>http://hybrid808.com/wordpress/?p=160</link>
		<comments>http://hybrid808.com/wordpress/?p=160#comments</comments>
		<pubDate>Tue, 24 Mar 2009 03:46:24 +0000</pubDate>
		<dc:creator>jacobdol</dc:creator>
				<category><![CDATA[Thailand 09]]></category>
		<category><![CDATA[Travel]]></category>

		<guid isPermaLink="false">http://hybrid808.com/wordpress/?p=160</guid>
		<description><![CDATA[Our United flight from Bangkok to Narita got cancelled. We wouldn&#8217;t have known about it, had Jon not checked our voicemail. United rescheduled  us on a flight from Bangkok to Seoul and from Seoul to San Fran. The worse part was that the flight from Bangkok to Seoul was leaving at 1.20am arriving to [...]]]></description>
			<content:encoded><![CDATA[<p>Our United flight from Bangkok to Narita got cancelled. We wouldn&#8217;t have known about it, had Jon not checked our voicemail. United rescheduled  us on a flight from Bangkok to Seoul and from Seoul to San Fran. The worse part was that the flight from Bangkok to Seoul was leaving at 1.20am arriving to Seoul at 8.30am and our flight to SF was not until 2.00pm. So now we are in Seoul waiting for our flight to SF.<br />
Needless to say that our original flight to Narita from Bangkok was not cancelled and actually left Bangkok with a 2 hour delay. Thanks United!!!</p>
]]></content:encoded>
			<wfw:commentRss>http://hybrid808.com/wordpress/?feed=rss2&amp;p=160</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Le Meridian Resort Beach</title>
		<link>http://hybrid808.com/wordpress/?p=155</link>
		<comments>http://hybrid808.com/wordpress/?p=155#comments</comments>
		<pubDate>Mon, 23 Mar 2009 01:29:11 +0000</pubDate>
		<dc:creator>jacobdol</dc:creator>
				<category><![CDATA[Photography]]></category>
		<category><![CDATA[Thailand 09]]></category>
		<category><![CDATA[Travel]]></category>

		<guid isPermaLink="false">http://hybrid808.com/wordpress/?p=155</guid>
		<description><![CDATA[This resort has one of the best beaches I have ever been too. Here is a few pictures. 
]]></description>
			<content:encoded><![CDATA[<p>This resort has one of the best beaches I have ever been too. Here is a few pictures.<br />

<div class="ngg-galleryoverview" id="ngg-gallery-3-155">


	<!-- Piclense link -->
	<div class="piclenselink">
		<a class="piclenselink" href="javascript:PicLensLite.start({feedUrl:'http://hybrid808.com/wordpress/wp-content/plugins/nextgen-gallery/xml/media-rss.php?gid=3&amp;mode=gallery'});">
			[View with PicLens]		</a>
	</div>
	
	<!-- Thumbnails -->
		
	<div id="ngg-image-15" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://hybrid808.com/wordpress/wp-content/gallery/le_meridian_beach/resort_beach-1.jpg" title=" " class="shutterset_set_3" >
								<img title="resort_beach-1.jpg" alt="resort_beach-1.jpg" src="http://hybrid808.com/wordpress/wp-content/gallery/le_meridian_beach/thumbs/thumbs_resort_beach-1.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-16" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://hybrid808.com/wordpress/wp-content/gallery/le_meridian_beach/resort_beach-2.jpg" title=" " class="shutterset_set_3" >
								<img title="resort_beach-2.jpg" alt="resort_beach-2.jpg" src="http://hybrid808.com/wordpress/wp-content/gallery/le_meridian_beach/thumbs/thumbs_resort_beach-2.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-17" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://hybrid808.com/wordpress/wp-content/gallery/le_meridian_beach/resort_beach-3.jpg" title=" " class="shutterset_set_3" >
								<img title="resort_beach-3.jpg" alt="resort_beach-3.jpg" src="http://hybrid808.com/wordpress/wp-content/gallery/le_meridian_beach/thumbs/thumbs_resort_beach-3.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-18" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://hybrid808.com/wordpress/wp-content/gallery/le_meridian_beach/resort_beach-4.jpg" title=" " class="shutterset_set_3" >
								<img title="resort_beach-4.jpg" alt="resort_beach-4.jpg" src="http://hybrid808.com/wordpress/wp-content/gallery/le_meridian_beach/thumbs/thumbs_resort_beach-4.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-19" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://hybrid808.com/wordpress/wp-content/gallery/le_meridian_beach/resort_beach-5.jpg" title=" " class="shutterset_set_3" >
								<img title="resort_beach-5.jpg" alt="resort_beach-5.jpg" src="http://hybrid808.com/wordpress/wp-content/gallery/le_meridian_beach/thumbs/thumbs_resort_beach-5.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>

</p>
]]></content:encoded>
			<wfw:commentRss>http://hybrid808.com/wordpress/?feed=rss2&amp;p=155</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Le Meridian Phuket Resort</title>
		<link>http://hybrid808.com/wordpress/?p=150</link>
		<comments>http://hybrid808.com/wordpress/?p=150#comments</comments>
		<pubDate>Sat, 21 Mar 2009 03:56:39 +0000</pubDate>
		<dc:creator>jacobdol</dc:creator>
				<category><![CDATA[Photography]]></category>
		<category><![CDATA[Thailand 09]]></category>
		<category><![CDATA[Travel]]></category>

		<guid isPermaLink="false">http://hybrid808.com/wordpress/?p=150</guid>
		<description><![CDATA[So the weather has been on and off.. We were supposed to take a speed boat to Phi Phi Islands, but the trip got pushed to tomorrow due to weather. Here is a few pictures of our resort I took yesterday.
]]></description>
			<content:encoded><![CDATA[<p>So the weather has been on and off.. We were supposed to take a speed boat to Phi Phi Islands, but the trip got pushed to tomorrow due to weather. Here is a few pictures of our resort I took yesterday.<br />

<div class="ngg-galleryoverview" id="ngg-gallery-2-150">


	<!-- Piclense link -->
	<div class="piclenselink">
		<a class="piclenselink" href="javascript:PicLensLite.start({feedUrl:'http://hybrid808.com/wordpress/wp-content/plugins/nextgen-gallery/xml/media-rss.php?gid=2&amp;mode=gallery'});">
			[View with PicLens]		</a>
	</div>
	
	<!-- Thumbnails -->
		
	<div id="ngg-image-9" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://hybrid808.com/wordpress/wp-content/gallery/le_meridian_1/phuket-0041.jpg" title=" " class="shutterset_set_2" >
								<img title="phuket-0041.jpg" alt="phuket-0041.jpg" src="http://hybrid808.com/wordpress/wp-content/gallery/le_meridian_1/thumbs/thumbs_phuket-0041.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-10" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://hybrid808.com/wordpress/wp-content/gallery/le_meridian_1/phuket-0042.jpg" title=" " class="shutterset_set_2" >
								<img title="phuket-0042.jpg" alt="phuket-0042.jpg" src="http://hybrid808.com/wordpress/wp-content/gallery/le_meridian_1/thumbs/thumbs_phuket-0042.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-11" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://hybrid808.com/wordpress/wp-content/gallery/le_meridian_1/phuket-0046.jpg" title=" " class="shutterset_set_2" >
								<img title="phuket-0046.jpg" alt="phuket-0046.jpg" src="http://hybrid808.com/wordpress/wp-content/gallery/le_meridian_1/thumbs/thumbs_phuket-0046.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-12" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://hybrid808.com/wordpress/wp-content/gallery/le_meridian_1/phuket-0048.jpg" title=" " class="shutterset_set_2" >
								<img title="phuket-0048.jpg" alt="phuket-0048.jpg" src="http://hybrid808.com/wordpress/wp-content/gallery/le_meridian_1/thumbs/thumbs_phuket-0048.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-13" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://hybrid808.com/wordpress/wp-content/gallery/le_meridian_1/phuket-0049.jpg" title=" " class="shutterset_set_2" >
								<img title="phuket-0049.jpg" alt="phuket-0049.jpg" src="http://hybrid808.com/wordpress/wp-content/gallery/le_meridian_1/thumbs/thumbs_phuket-0049.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-14" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://hybrid808.com/wordpress/wp-content/gallery/le_meridian_1/phuket-0054.jpg" title=" " class="shutterset_set_2" >
								<img title="phuket-0054.jpg" alt="phuket-0054.jpg" src="http://hybrid808.com/wordpress/wp-content/gallery/le_meridian_1/thumbs/thumbs_phuket-0054.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>

</p>
]]></content:encoded>
			<wfw:commentRss>http://hybrid808.com/wordpress/?feed=rss2&amp;p=150</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
