<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>iPhone Programming</title>
	<atom:link href="http://iph0nefun.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://iph0nefun.wordpress.com</link>
	<description>The adventures of learning how to program apps on the iPhone</description>
	<lastBuildDate>Mon, 23 Nov 2009 04:19:33 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='iph0nefun.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://1.gravatar.com/blavatar/d8e0ed19245311247158f0accebb70e9?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>iPhone Programming</title>
		<link>http://iph0nefun.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://iph0nefun.wordpress.com/osd.xml" title="iPhone Programming" />
	<atom:link rel='hub' href='http://iph0nefun.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Another iPhone hello world tutorial</title>
		<link>http://iph0nefun.wordpress.com/2009/11/22/another-iphone-hello-world-tutorial/</link>
		<comments>http://iph0nefun.wordpress.com/2009/11/22/another-iphone-hello-world-tutorial/#comments</comments>
		<pubDate>Mon, 23 Nov 2009 04:14:35 +0000</pubDate>
		<dc:creator>jimmyhunt123</dc:creator>
				<category><![CDATA[iPhone development]]></category>

		<guid isPermaLink="false">http://iph0nefun.wordpress.com/?p=23</guid>
		<description><![CDATA[If you&#8217;re wanting to create your first iPhone application then this is the article for you.  I&#8217;ll be going through how to create a Hello World application and what you&#8217;ll need to make it happen. First you&#8217;ll need to make sure you&#8217;ve installed the most current iPhone SDK.   If you haven&#8217;t installed the SDK [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iph0nefun.wordpress.com&amp;blog=10616875&amp;post=23&amp;subd=iph0nefun&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re wanting to create your first iPhone application then this is the article for you.  I&#8217;ll be going through how to create a Hello World application and what you&#8217;ll need to make it happen.</p>
<p>First you&#8217;ll need to make sure you&#8217;ve installed the most current iPhone SDK.   If you haven&#8217;t installed the SDK go to Apple&#8217;s site, find it, download it, and install it.  It is pretty easy and there isn&#8217;t much to it.  The SDK includes XCode (development environment), Interface Builder, and the iPhone Simulator.  You&#8217;ll need all of these to start developing your first application.</p>
<p>Now that you have installed the SDK you&#8217;ll need to find XCode and open the program.  Once you&#8217;ve opened  XCode you&#8217;ll need to decide what type of application template you&#8217;ll want to create.  For this tutorial you&#8217;ll want to use a <strong>View-based Application</strong> template and name the project <strong>HelloWorld</strong>.   Now that you have created the View-based Application project XCode will open it&#8217;s IDE that includes several folders and files.  You&#8217;ll see the Classes, other Sources, Resources, Framework, Project directories.  You won&#8217;t need to know what each of these directories are used for to complete this tutorial, but I do recommend navigating through each one of these directories and looking at the files included.  This will give you a good idea what a normal iPhone View-based Application includes.  At least it will get you thinking about what is there.</p>
<p>So it is time to start coding and if you&#8217;ve gotten this far you&#8217;re probably ready to start.   Under the Classes directory in XCode you should see four files, two app delegate files and two view controller files.  At this point we&#8217;ll only need to worry about the files called <strong>HelloWorldViewController.h</strong> and <strong>HelloWorldViewController.m</strong>.  These files are called the header and implementation files.  I&#8217;m sure you can guess which one is the header file (.h).  You&#8217;ll need to click the <strong>HelloWorldViewController.h</strong> and add a few lines of code into the file.</p>
<p>You&#8217;ll want to add two IBOutlets which define the two controls we will be including on our interface&#8211;a button called button and label called label.  I know, how creative of me&#8230;</p>
<p>@interface HelloWorldViewController : UIViewController {<br />
// IBOutlet list<br />
<strong>IBOutlet UIButton *button;<br />
IBOutlet UILabel *label;</strong><br />
}</p>
<p>So now that you&#8217;ve added the IBOutlets you&#8217;ll need to add code to access these IBOutlets called properties.</p>
<p>You&#8217;ll really only need access to the label control or &#8220;IBOutlet&#8221;, but it is a good habit to just include all your variables or IBOutlets in your properties list unless there is a good reason to not allow access. To add your properties you&#8217;ll want to add the following code right below the closing bracket of your interface.</p>
<p>// properties to access the controls or variables<br />
<strong>@property (nonatomic, retain) UIButton *button;<br />
@property (nonatomic, retain) UILabel    *label;</strong></p>
<p>Now that we&#8217;ve added the IBOutlets and properties we&#8217;ll now want to add a method declaration to set that label to &#8220;Hello World&#8221;.  This is only a declaration, so that we can access the sayHello method in our implementation file upon a particular IBAction&#8211;for instance a button click.  Add this code below the @property list.</p>
<p>// methods list<br />
<strong>- (IBAction) sayHello; </strong></p>
<p>We are now finished with the header file now lets get started on our implementation file.</p>
<p>Click the <strong>HelloWorldViewController.m</strong> and we&#8217;ll get started.</p>
<p>We have to do two things here add our @synthesize statements and add the sayHello method we declared in our header file.</p>
<p>#import &#8220;HelloWorldViewController.h&#8221;</p>
<p>@implementation HelloWorldViewController</p>
<p><strong>@synthesize label;<br />
@synthesize button;</strong></p>
<p>@synthesize statements are an easy way to create get/set statements.  If you don&#8217;t know what get/set statements are&#8211;basically they are statements to get or set values of a variable such as our label and button.</p>
<p>The code we need to write for the sayHello method is very simple and a hello world app should be simple right.  Copy and paste this write below your synthesize statements.</p>
<p><strong>- (IBAction) sayHello {<br />
label.text = @&#8221;Hello World&#8221;;<br />
}</strong></p>
<p>Now that we have written the code we&#8217;ll need to create our interface and connect the outlets and actions to our controls.</p>
<p>To access Interface Builder go to the Resources folder and double click the nib file HelloWorldViewController.xib.  Once you click on this file Interface Builder should open.  Sometimes it is slow to open so be patient.   When Interface Builder opens you should see four windows <strong>nib file window</strong>, <strong>view window</strong>, <strong>inspector window (which include the attribute, connections, size and identity tabs), </strong>and the <strong>library window. </strong>You&#8217;ll need to use all of these windows to create our interface.  First you&#8217;ll want to drag a button and label over to the view from the <strong>Library&#8217;s Cocoa Touch &#8211; Input &amp; Values section</strong> which is found in the <strong>Objects</strong> area.  Place them however you want for this project.  Once you have them on the view you&#8217;ll want to set some of their attributes.  Select the button, by clicking on it, and then go to the <strong>Inspector window</strong> and select the <strong>Identity</strong> tab.  You&#8217;ll want to set the name to <strong>button. </strong>Now do the same thing for the label&#8211;select the label go to the <strong>Identity</strong> tab and set it&#8217;s name to <strong>label. </strong>Now if you want to set the text in the button just double click inside the button and add the words &#8220;Click this&#8221; or whatever you&#8217;d like.   This isn&#8217;t really important.  Now we need to create the connections.</p>
<p>Interface Builder helps us connect our outlets and actions.  To do this you&#8217;ll need to select the <strong>File&#8217;s Owner</strong> object in the <strong>nib file window</strong>.  Click it while holding down the control key and dragging over to the button and label separately.  Once you are let go while hovering over the label and button you&#8217;ll need to select the outlet name associated to that control.    To connect the <strong>setHello</strong> method you&#8217;ll need to click the button while holding down the control key and hovering and letting go over the <strong>File&#8217;s Owner object</strong> in the<strong> nib file window</strong>.  Once you let go over the <strong>File&#8217;s Owner</strong> object you should be able to select the <strong>sayHello</strong> action.</p>
<p>If you&#8217;ve done all this successfully you&#8217;ll be ready to build the application and test it in the iPhone Simulator.  You can do this simply by going back to XCode and clicking the <strong>Build and Run button</strong>.  Once you click Build and Run the iPhone Simulator will open and automatically open the HelloWorld application.  At this point you should be able to click the button and view &#8220;Hello World&#8221; as the label&#8217;s text.</p>
<p>I hope this helps you create your first iPhone application.  If you have any problems with completing this successfully please let me know by commenting on this post.</p>
<p>Happy Programming!</p>
<p>-JAH</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/iph0nefun.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/iph0nefun.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/iph0nefun.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/iph0nefun.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/iph0nefun.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/iph0nefun.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/iph0nefun.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/iph0nefun.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/iph0nefun.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/iph0nefun.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/iph0nefun.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/iph0nefun.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/iph0nefun.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/iph0nefun.wordpress.com/23/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iph0nefun.wordpress.com&amp;blog=10616875&amp;post=23&amp;subd=iph0nefun&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://iph0nefun.wordpress.com/2009/11/22/another-iphone-hello-world-tutorial/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/eabfa382f7e1160a2b9915fd64eee355?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jimmyhunt123</media:title>
		</media:content>
	</item>
		<item>
		<title>Three20 iPhone library</title>
		<link>http://iph0nefun.wordpress.com/2009/11/22/three20-iphone-library/</link>
		<comments>http://iph0nefun.wordpress.com/2009/11/22/three20-iphone-library/#comments</comments>
		<pubDate>Sun, 22 Nov 2009 22:55:03 +0000</pubDate>
		<dc:creator>jimmyhunt123</dc:creator>
				<category><![CDATA[iPhone development resources]]></category>

		<guid isPermaLink="false">http://iph0nefun.wordpress.com/?p=16</guid>
		<description><![CDATA[I&#8217;ll have to play around with this library soon.  It looks pretty robust. http://thbi.wordpress.com/2009/11/12/three20/<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iph0nefun.wordpress.com&amp;blog=10616875&amp;post=16&amp;subd=iph0nefun&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ll have to play around with this library soon.  It looks pretty robust.</p>
<p><a title="Three20 library" href="http://thbi.wordpress.com/2009/11/12/three20/" target="_blank">http://thbi.wordpress.com/2009/11/12/three20/</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/iph0nefun.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/iph0nefun.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/iph0nefun.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/iph0nefun.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/iph0nefun.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/iph0nefun.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/iph0nefun.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/iph0nefun.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/iph0nefun.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/iph0nefun.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/iph0nefun.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/iph0nefun.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/iph0nefun.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/iph0nefun.wordpress.com/16/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iph0nefun.wordpress.com&amp;blog=10616875&amp;post=16&amp;subd=iph0nefun&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://iph0nefun.wordpress.com/2009/11/22/three20-iphone-library/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/eabfa382f7e1160a2b9915fd64eee355?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jimmyhunt123</media:title>
		</media:content>
	</item>
		<item>
		<title>Minimum requirements to develop iPhone apps</title>
		<link>http://iph0nefun.wordpress.com/2009/11/22/minimum-requirements-to-develop-iphone-apps/</link>
		<comments>http://iph0nefun.wordpress.com/2009/11/22/minimum-requirements-to-develop-iphone-apps/#comments</comments>
		<pubDate>Sun, 22 Nov 2009 22:35:31 +0000</pubDate>
		<dc:creator>jimmyhunt123</dc:creator>
				<category><![CDATA[iPhone development]]></category>

		<guid isPermaLink="false">http://iph0nefun.wordpress.com/?p=10</guid>
		<description><![CDATA[If you are going to develop iPhone apps you will need a Mac running OS X with an Intel processor.  There are alternatives to this, but if you really want to become an iPhone app developer this is the route you&#8217;ll have to take.   If you have your Mac OS X with an Intel processor [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iph0nefun.wordpress.com&amp;blog=10616875&amp;post=10&amp;subd=iph0nefun&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>If you are going to develop iPhone apps you will need a Mac running OS X with an Intel processor.  There are alternatives to this, but if you really want to become an iPhone app developer this is the route you&#8217;ll have to take.   If you have your Mac OS X with an Intel processor then you will also need to download the <a title="iPhone SDK" href="http://developer.apple.com/iphone/index.action#downloads" target="_blank">iPhone SDK</a> so that you can get access to the development tools.  You&#8217;ll need XCode for your programming/framework management  and the Interface Builder software to develop your windows, views, outlets, actions, etc.  We&#8217;ll get into this later.  Here are a few links that will serve you well if you are currently beginning your adventures in iPhone application development.</p>
<p>http://developer.apple.com/iphone/index.action</p>
<p>http://developer.apple.com/profiles/</p>
<p>http://developer.apple.com/technology/</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/iph0nefun.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/iph0nefun.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/iph0nefun.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/iph0nefun.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/iph0nefun.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/iph0nefun.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/iph0nefun.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/iph0nefun.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/iph0nefun.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/iph0nefun.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/iph0nefun.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/iph0nefun.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/iph0nefun.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/iph0nefun.wordpress.com/10/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iph0nefun.wordpress.com&amp;blog=10616875&amp;post=10&amp;subd=iph0nefun&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://iph0nefun.wordpress.com/2009/11/22/minimum-requirements-to-develop-iphone-apps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/eabfa382f7e1160a2b9915fd64eee355?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jimmyhunt123</media:title>
		</media:content>
	</item>
		<item>
		<title>Core Data, iPhone&#8217;s data solution</title>
		<link>http://iph0nefun.wordpress.com/2009/11/21/core-data-iphones-data-solution/</link>
		<comments>http://iph0nefun.wordpress.com/2009/11/21/core-data-iphones-data-solution/#comments</comments>
		<pubDate>Sun, 22 Nov 2009 04:23:17 +0000</pubDate>
		<dc:creator>jimmyhunt123</dc:creator>
				<category><![CDATA[iPhone development]]></category>

		<guid isPermaLink="false">http://iph0nefun.wordpress.com/?p=8</guid>
		<description><![CDATA[http://developer.apple.com/iphone/library/documentation/DataManagement/Conceptual/iPhoneCoreData01/Introduction/Introduction.html<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iph0nefun.wordpress.com&amp;blog=10616875&amp;post=8&amp;subd=iph0nefun&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://developer.apple.com/iphone/library/documentation/DataManagement/Conceptual/iPhoneCoreData01/Introduction/Introduction.html">http://developer.apple.com/iphone/library/documentation/DataManagement/Conceptual/iPhoneCoreData01/Introduction/Introduction.html</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/iph0nefun.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/iph0nefun.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/iph0nefun.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/iph0nefun.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/iph0nefun.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/iph0nefun.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/iph0nefun.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/iph0nefun.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/iph0nefun.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/iph0nefun.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/iph0nefun.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/iph0nefun.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/iph0nefun.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/iph0nefun.wordpress.com/8/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iph0nefun.wordpress.com&amp;blog=10616875&amp;post=8&amp;subd=iph0nefun&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://iph0nefun.wordpress.com/2009/11/21/core-data-iphones-data-solution/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/eabfa382f7e1160a2b9915fd64eee355?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jimmyhunt123</media:title>
		</media:content>
	</item>
		<item>
		<title>Great place to get started</title>
		<link>http://iph0nefun.wordpress.com/2009/11/21/great-place-to-get-started/</link>
		<comments>http://iph0nefun.wordpress.com/2009/11/21/great-place-to-get-started/#comments</comments>
		<pubDate>Sun, 22 Nov 2009 03:18:43 +0000</pubDate>
		<dc:creator>jimmyhunt123</dc:creator>
				<category><![CDATA[iPhone development]]></category>

		<guid isPermaLink="false">http://iph0nefun.wordpress.com/?p=4</guid>
		<description><![CDATA[It does take some time to download these videos, but they teach some of the basics before you have to start a more in-depth research. http://www.stanford.edu/class/cs193p/cgi-bin/index.php<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iph0nefun.wordpress.com&amp;blog=10616875&amp;post=4&amp;subd=iph0nefun&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>It does take some time to download these videos, but they teach some of the basics before you have to start a more in-depth research.</strong></p>
<p><strong><a href="http://www.stanford.edu/class/cs193p/cgi-bin/index.php">http://www.stanford.edu/class/cs193p/cgi-bin/index.php</a></strong></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/iph0nefun.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/iph0nefun.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/iph0nefun.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/iph0nefun.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/iph0nefun.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/iph0nefun.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/iph0nefun.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/iph0nefun.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/iph0nefun.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/iph0nefun.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/iph0nefun.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/iph0nefun.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/iph0nefun.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/iph0nefun.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iph0nefun.wordpress.com&amp;blog=10616875&amp;post=4&amp;subd=iph0nefun&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://iph0nefun.wordpress.com/2009/11/21/great-place-to-get-started/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/eabfa382f7e1160a2b9915fd64eee355?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jimmyhunt123</media:title>
		</media:content>
	</item>
	</channel>
</rss>
