<?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>#iPhoneDev &#187; open source</title>
	<atom:link href="http://iphone.keyvisuals.com/tag/open-source/feed/" rel="self" type="application/rss+xml" />
	<link>http://iphone.keyvisuals.com</link>
	<description>Because Corporate Jobs Suck.</description>
	<lastBuildDate>Fri, 13 Jan 2012 07:26:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Implementing AdMob Ads in a PhoneGap Project for iOS (No Plugins Required)</title>
		<link>http://iphone.keyvisuals.com/iphonedev/implementing-admob-ads-in-a-phonegap-project-for-ios-no-plugins-required/</link>
		<comments>http://iphone.keyvisuals.com/iphonedev/implementing-admob-ads-in-a-phonegap-project-for-ios-no-plugins-required/#comments</comments>
		<pubDate>Thu, 06 Oct 2011 16:12:27 +0000</pubDate>
		<dc:creator>keyvisuals</dc:creator>
				<category><![CDATA[iPhone Development]]></category>
		<category><![CDATA[AdMob]]></category>
		<category><![CDATA[ads]]></category>
		<category><![CDATA[ios]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[phonegap]]></category>
		<category><![CDATA[source code]]></category>

		<guid isPermaLink="false">http://iphone.keyvisuals.com/?p=947</guid>
		<description><![CDATA[I posted this info on the PhoneGap Google Group a couple weeks ago and thought I would share it here too. Before we start I should mention that PhoneGap is an excellent open source project by Nitobi that allows you to create native applications for mobile devices using web technologies. Also, I have no affiliation [...]]]></description>
			<content:encoded><![CDATA[<p>I posted this info on the <a href="http://groups.google.com/group/phonegap/browse_thread/thread/fcb7f8a3ac6250ad?pli=1" target="_blank">PhoneGap Google Group</a> a couple weeks ago and thought I would share it here too. Before we start I should mention that <a title="PhoneGap" href="http://www.phonegap.com/" target="_blank">PhoneGap</a> is an excellent open source project by Nitobi that allows you to create native applications for mobile devices using web technologies. Also, I have no affiliation with <span style="color: #ff0000;"><a title="AdMob" href="http://www.admob.com/" target="_blank"><span style="color: #ff0000;">AdMob</span></a></span>. I&#8217;ve been using them in my apps for almost 3 years now. They are very dependable and they <em>pay on time</em> (unlike MobClix.)</p>
<p><img class="alignleft size-full wp-image-951" title="phonegaplogo" src="http://iphone.keyvisuals.com/wp-content/uploads/2011/10/phonegaplogo.png" alt="PhoneGap" width="200" height="200" />The reason I put this quick tutorial together is because I was trying to accomplish this very thing and after extensive googling was not able to find anything. I thought i&#8217;d find my answer in the phonegap google group but I was wrong. One person when asked how to setup Admob Ads actually replied &#8220;<em>just use iAds, there&#8217;s a plugin for that.</em>&#8221; There are many problems with that answer. One &#8211; maybe I don&#8217;t want to use iAds I want to use AdMob. Two &#8211; the iAds fill rate tends to be kinda low and I don&#8217;t want to loose income. Three &#8211; you must install the iAd phonegap-plugin which can be confusing and troublesome. Four &#8211; that solution doesn&#8217;t even attempt to provide a solution to the question. So without further adieu here&#8217;s my solution . . .</p>
<p>1.) Create your normal, everyday phonegap (1.0.0) project in xcode<br />
2.) Import the <strong>GoogleAdMobAdsSDK</strong> folder and the required AdMob frameworks (I believe the only one that wasn&#8217;t already in the phonegap project was <strong>MessageUI.framework</strong>)<br />
3.) In AppDelegate.h &#8211; implement &lt;GADBannerViewDelegate&gt; then #import &#8220;GADBannerView.h&#8221; &amp; add  GADBannerView *bannerView_; to your @interface<br />
4.) In AppDelegate.m &#8211;  #define MY_BANNER_UNIT_ID @&#8221;Your AdMob Publisher ID# Here&#8221;</p>
<p>Now the tricky part. This caused me to bang my head on the wall for<br />
some time . . .</p>
<p>5.) Change your method webViewDidFinishLoad to this . . .</p>
<pre class="brush: c; gutter: false">- (void)webViewDidFinishLoad:(UIWebView *)theWebView
{
    bannerView_ = [[GADBannerView alloc]init];
    [bannerView_ setDelegate:self];
    [bannerView_ setFrame:CGRectMake(0, 0, 320, 50)];

    // Specify the ad's "unit identifier." This is your AdMob Publisher ID.
    bannerView_.adUnitID = MY_BANNER_UNIT_ID;

    // Let the runtime know which UIViewController to restore after taking
    // the user wherever the ad goes and add it to the view hierarchy.
    bannerView_.rootViewController = self.viewController;
    [self.viewController.view addSubview:bannerView_];

    // Initiate a generic request to load it with an ad.
    [bannerView_ loadRequest:[GADRequest request]];

	// only valid if AdGap.plist specifies a protocol to handle
	if(self.invokeString)
	{
		// this is passed before the deviceready event is fired, so you can access it in js when you receive deviceready
		NSString* jsString = [NSString stringWithFormat:@"var invokeString = \"%@\";", self.invokeString];
		[theWebView stringByEvaluatingJavaScriptFromString:jsString];
	}
	return [ super webViewDidFinishLoad:theWebView ];
}</pre>
<p>That&#8217;s it.</p>
<p>Some of you may be asking why we didn&#8217;t create the bannerView_ in the AppDelegates <strong>didFinishLaunchingWithOptions</strong> method? You can&#8217;t. That&#8217;s because the PhoneGap AppDelegate seems to create the webview, then the view controller, then it pushes the webview into the view controller which in turn calls <strong>webViewDidFinishLoad</strong>. <em>This seems to be the key</em>. We <em>cannot</em> access the viewController object <span style="text-decoration: underline;">until webViewDidFinishLoad has been called</span>.</p>
<p>I&#8217;ve created a sample project which is also setup to load test ads. You can get it from here: <a href="http://iphone.keyvisuals.com/downloads/AdGap.zip">AdGap</a></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-blogger">
			<a href="http://www.shareaholic.com/api/share/?title=Implementing+AdMob+Ads+in+a+PhoneGap+Project+for+iOS+%28No+Plugins+Required%29&amp;link=http://iphone.keyvisuals.com/iphonedev/implementing-admob-ads-in-a-phonegap-project-for-ios-no-plugins-required/&amp;notes=I%20posted%20this%20info%20on%20the%20PhoneGap%20Google%20Group%20a%20couple%20weeks%20ago%20and%20thought%20I%20would%20share%20it%20here%20too.%20Before%20we%20start%20I%20should%20mention%20that%20PhoneGap%20is%20an%20excellent%20open%20source%20project%20by%20Nitobi%20that%20allows%20you%20to%20create%20native%20applications%20for%20mobile%20devices%20using%20web%20technologies.%20Also%2C%20I%20have&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=219&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-delicious">
			<a href="http://www.shareaholic.com/api/share/?title=Implementing+AdMob+Ads+in+a+PhoneGap+Project+for+iOS+%28No+Plugins+Required%29&amp;link=http://iphone.keyvisuals.com/iphonedev/implementing-admob-ads-in-a-phonegap-project-for-ios-no-plugins-required/&amp;notes=I%20posted%20this%20info%20on%20the%20PhoneGap%20Google%20Group%20a%20couple%20weeks%20ago%20and%20thought%20I%20would%20share%20it%20here%20too.%20Before%20we%20start%20I%20should%20mention%20that%20PhoneGap%20is%20an%20excellent%20open%20source%20project%20by%20Nitobi%20that%20allows%20you%20to%20create%20native%20applications%20for%20mobile%20devices%20using%20web%20technologies.%20Also%2C%20I%20have&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://www.shareaholic.com/api/share/?title=Implementing+AdMob+Ads+in+a+PhoneGap+Project+for+iOS+%28No+Plugins+Required%29&amp;link=http://iphone.keyvisuals.com/iphonedev/implementing-admob-ads-in-a-phonegap-project-for-ios-no-plugins-required/&amp;notes=I%20posted%20this%20info%20on%20the%20PhoneGap%20Google%20Group%20a%20couple%20weeks%20ago%20and%20thought%20I%20would%20share%20it%20here%20too.%20Before%20we%20start%20I%20should%20mention%20that%20PhoneGap%20is%20an%20excellent%20open%20source%20project%20by%20Nitobi%20that%20allows%20you%20to%20create%20native%20applications%20for%20mobile%20devices%20using%20web%20technologies.%20Also%2C%20I%20have&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=3&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=Implementing+AdMob+Ads+in+a+PhoneGap+Project+for+iOS+%28No+Plugins+Required%29&amp;link=http://iphone.keyvisuals.com/iphonedev/implementing-admob-ads-in-a-phonegap-project-for-ios-no-plugins-required/&amp;notes=I%20posted%20this%20info%20on%20the%20PhoneGap%20Google%20Group%20a%20couple%20weeks%20ago%20and%20thought%20I%20would%20share%20it%20here%20too.%20Before%20we%20start%20I%20should%20mention%20that%20PhoneGap%20is%20an%20excellent%20open%20source%20project%20by%20Nitobi%20that%20allows%20you%20to%20create%20native%20applications%20for%20mobile%20devices%20using%20web%20technologies.%20Also%2C%20I%20have&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.shareaholic.com/api/share/?title=Implementing+AdMob+Ads+in+a+PhoneGap+Project+for+iOS+%28No+Plugins+Required%29&amp;link=http://iphone.keyvisuals.com/iphonedev/implementing-admob-ads-in-a-phonegap-project-for-ios-no-plugins-required/&amp;notes=I%20posted%20this%20info%20on%20the%20PhoneGap%20Google%20Group%20a%20couple%20weeks%20ago%20and%20thought%20I%20would%20share%20it%20here%20too.%20Before%20we%20start%20I%20should%20mention%20that%20PhoneGap%20is%20an%20excellent%20open%20source%20project%20by%20Nitobi%20that%20allows%20you%20to%20create%20native%20applications%20for%20mobile%20devices%20using%20web%20technologies.%20Also%2C%20I%20have&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=257&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://www.shareaholic.com/api/share/?title=Implementing+AdMob+Ads+in+a+PhoneGap+Project+for+iOS+%28No+Plugins+Required%29&amp;link=http://iphone.keyvisuals.com/iphonedev/implementing-admob-ads-in-a-phonegap-project-for-ios-no-plugins-required/&amp;notes=I%20posted%20this%20info%20on%20the%20PhoneGap%20Google%20Group%20a%20couple%20weeks%20ago%20and%20thought%20I%20would%20share%20it%20here%20too.%20Before%20we%20start%20I%20should%20mention%20that%20PhoneGap%20is%20an%20excellent%20open%20source%20project%20by%20Nitobi%20that%20allows%20you%20to%20create%20native%20applications%20for%20mobile%20devices%20using%20web%20technologies.%20Also%2C%20I%20have&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.shareaholic.com/api/share/?title=Implementing+AdMob+Ads+in+a+PhoneGap+Project+for+iOS+%28No+Plugins+Required%29&amp;link=http://iphone.keyvisuals.com/iphonedev/implementing-admob-ads-in-a-phonegap-project-for-ios-no-plugins-required/&amp;notes=I%20posted%20this%20info%20on%20the%20PhoneGap%20Google%20Group%20a%20couple%20weeks%20ago%20and%20thought%20I%20would%20share%20it%20here%20too.%20Before%20we%20start%20I%20should%20mention%20that%20PhoneGap%20is%20an%20excellent%20open%20source%20project%20by%20Nitobi%20that%20allows%20you%20to%20create%20native%20applications%20for%20mobile%20devices%20using%20web%20technologies.%20Also%2C%20I%20have&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://www.shareaholic.com/api/share/?title=Implementing+AdMob+Ads+in+a+PhoneGap+Project+for+iOS+%28No+Plugins+Required%29&amp;link=http://iphone.keyvisuals.com/iphonedev/implementing-admob-ads-in-a-phonegap-project-for-ios-no-plugins-required/&amp;notes=I%20posted%20this%20info%20on%20the%20PhoneGap%20Google%20Group%20a%20couple%20weeks%20ago%20and%20thought%20I%20would%20share%20it%20here%20too.%20Before%20we%20start%20I%20should%20mention%20that%20PhoneGap%20is%20an%20excellent%20open%20source%20project%20by%20Nitobi%20that%20allows%20you%20to%20create%20native%20applications%20for%20mobile%20devices%20using%20web%20technologies.%20Also%2C%20I%20have&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=10&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=Implementing+AdMob+Ads+in+a+PhoneGap+Project+for+iOS+%28No+Plugins+Required%29&amp;link=http://iphone.keyvisuals.com/iphonedev/implementing-admob-ads-in-a-phonegap-project-for-ios-no-plugins-required/&amp;notes=I%20posted%20this%20info%20on%20the%20PhoneGap%20Google%20Group%20a%20couple%20weeks%20ago%20and%20thought%20I%20would%20share%20it%20here%20too.%20Before%20we%20start%20I%20should%20mention%20that%20PhoneGap%20is%20an%20excellent%20open%20source%20project%20by%20Nitobi%20that%20allows%20you%20to%20create%20native%20applications%20for%20mobile%20devices%20using%20web%20technologies.%20Also%2C%20I%20have&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%2524%257Btitle%257D%2B-%2B%2524%257Bshort_link%257D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul><div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="http://www.shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://iphone.keyvisuals.com/iphonedev/implementing-admob-ads-in-a-phonegap-project-for-ios-no-plugins-required/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>easyAPNS: Open Source Push Notification Service (using PHP/mySQL)</title>
		<link>http://iphone.keyvisuals.com/code-snippets/easyapns-open-source-push-notification-service/</link>
		<comments>http://iphone.keyvisuals.com/code-snippets/easyapns-open-source-push-notification-service/#comments</comments>
		<pubDate>Sun, 03 Jan 2010 17:45:44 +0000</pubDate>
		<dc:creator>keyvisuals</dc:creator>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[iPhone Development]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[apns]]></category>
		<category><![CDATA[notification]]></category>
		<category><![CDATA[push]]></category>

		<guid isPermaLink="false">http://iphone.keyvisuals.com/?p=757</guid>
		<description><![CDATA[easyAPNS is an open source (free) system for sending Apple&#8217;s push notifications to a device. From their website: What is Easy APNs? If you are a native iPhone application developer, you may have heard of the Apple Push Notification service (APNs). There are a lot of excellent online guides on how to get your application [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://iphone.keyvisuals.com/wp-content/uploads/2010/01/apns.png"><img class="alignleft size-full wp-image-759" title="apns" src="http://iphone.keyvisuals.com/wp-content/uploads/2010/01/apns.png" alt="" width="54" height="55" /></a>easyAPNS is an open source (free) system for sending Apple&#8217;s push notifications to a device. <em>From their website:</em></p>
<p><a href="http://iphone.keyvisuals.com/wp-content/uploads/2010/01/easyAPNS.png"><img class="alignleft size-full wp-image-758" title="easyAPNS" src="http://iphone.keyvisuals.com/wp-content/uploads/2010/01/easyAPNS.png" alt="" width="185" height="323" /></a></p>
<p><strong>What is Easy APNs?</strong><br />
If you are a native iPhone application developer, you may have heard of the Apple Push Notification service (APNs). There are a lot of excellent online guides on how to get your application to receive remote notifications&#8230; but what about the other piece of the puzzle&#8230; ACTUALLY SENDING A MESSAGE?!?!</p>
<p>This very cool project is brought you by <a href="http://www.manifestinteractive.com/" target="_blank">Manifest Interactive</a>.</p>
<p>*NOTE: I was NOT able to get this up and running on GoDaddy Hosting for some unknown reason, but the same exact files worked <strong>flawlessly </strong>on <a href="http://mediatemple.net/" target="_blank"><strong>(mt) MediaTemple</strong></a></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-blogger">
			<a href="http://www.shareaholic.com/api/share/?title=easyAPNS%3A+Open+Source+Push+Notification+Service+%28using+PHP%2FmySQL%29&amp;link=http://iphone.keyvisuals.com/code-snippets/easyapns-open-source-push-notification-service/&amp;notes=easyAPNS%20is%20an%20open%20source%20%28free%29%20system%20for%20sending%20Apple%27s%20push%20notifications%20to%20a%20device.%20From%20their%20website%3A%0D%0A%0D%0A%0D%0A%0D%0AWhat%20is%20Easy%20APNs%3F%0D%0AIf%20you%20are%20a%20native%20iPhone%20application%20developer%2C%20you%20may%20have%20heard%20of%20the%20Apple%20Push%20Notification%20service%20%28APNs%29.%20There%20are%20a%20lot%20of%20excellent%20online%20guides%20o&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=219&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-delicious">
			<a href="http://www.shareaholic.com/api/share/?title=easyAPNS%3A+Open+Source+Push+Notification+Service+%28using+PHP%2FmySQL%29&amp;link=http://iphone.keyvisuals.com/code-snippets/easyapns-open-source-push-notification-service/&amp;notes=easyAPNS%20is%20an%20open%20source%20%28free%29%20system%20for%20sending%20Apple%27s%20push%20notifications%20to%20a%20device.%20From%20their%20website%3A%0D%0A%0D%0A%0D%0A%0D%0AWhat%20is%20Easy%20APNs%3F%0D%0AIf%20you%20are%20a%20native%20iPhone%20application%20developer%2C%20you%20may%20have%20heard%20of%20the%20Apple%20Push%20Notification%20service%20%28APNs%29.%20There%20are%20a%20lot%20of%20excellent%20online%20guides%20o&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://www.shareaholic.com/api/share/?title=easyAPNS%3A+Open+Source+Push+Notification+Service+%28using+PHP%2FmySQL%29&amp;link=http://iphone.keyvisuals.com/code-snippets/easyapns-open-source-push-notification-service/&amp;notes=easyAPNS%20is%20an%20open%20source%20%28free%29%20system%20for%20sending%20Apple%27s%20push%20notifications%20to%20a%20device.%20From%20their%20website%3A%0D%0A%0D%0A%0D%0A%0D%0AWhat%20is%20Easy%20APNs%3F%0D%0AIf%20you%20are%20a%20native%20iPhone%20application%20developer%2C%20you%20may%20have%20heard%20of%20the%20Apple%20Push%20Notification%20service%20%28APNs%29.%20There%20are%20a%20lot%20of%20excellent%20online%20guides%20o&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=3&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=easyAPNS%3A+Open+Source+Push+Notification+Service+%28using+PHP%2FmySQL%29&amp;link=http://iphone.keyvisuals.com/code-snippets/easyapns-open-source-push-notification-service/&amp;notes=easyAPNS%20is%20an%20open%20source%20%28free%29%20system%20for%20sending%20Apple%27s%20push%20notifications%20to%20a%20device.%20From%20their%20website%3A%0D%0A%0D%0A%0D%0A%0D%0AWhat%20is%20Easy%20APNs%3F%0D%0AIf%20you%20are%20a%20native%20iPhone%20application%20developer%2C%20you%20may%20have%20heard%20of%20the%20Apple%20Push%20Notification%20service%20%28APNs%29.%20There%20are%20a%20lot%20of%20excellent%20online%20guides%20o&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.shareaholic.com/api/share/?title=easyAPNS%3A+Open+Source+Push+Notification+Service+%28using+PHP%2FmySQL%29&amp;link=http://iphone.keyvisuals.com/code-snippets/easyapns-open-source-push-notification-service/&amp;notes=easyAPNS%20is%20an%20open%20source%20%28free%29%20system%20for%20sending%20Apple%27s%20push%20notifications%20to%20a%20device.%20From%20their%20website%3A%0D%0A%0D%0A%0D%0A%0D%0AWhat%20is%20Easy%20APNs%3F%0D%0AIf%20you%20are%20a%20native%20iPhone%20application%20developer%2C%20you%20may%20have%20heard%20of%20the%20Apple%20Push%20Notification%20service%20%28APNs%29.%20There%20are%20a%20lot%20of%20excellent%20online%20guides%20o&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=257&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://www.shareaholic.com/api/share/?title=easyAPNS%3A+Open+Source+Push+Notification+Service+%28using+PHP%2FmySQL%29&amp;link=http://iphone.keyvisuals.com/code-snippets/easyapns-open-source-push-notification-service/&amp;notes=easyAPNS%20is%20an%20open%20source%20%28free%29%20system%20for%20sending%20Apple%27s%20push%20notifications%20to%20a%20device.%20From%20their%20website%3A%0D%0A%0D%0A%0D%0A%0D%0AWhat%20is%20Easy%20APNs%3F%0D%0AIf%20you%20are%20a%20native%20iPhone%20application%20developer%2C%20you%20may%20have%20heard%20of%20the%20Apple%20Push%20Notification%20service%20%28APNs%29.%20There%20are%20a%20lot%20of%20excellent%20online%20guides%20o&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.shareaholic.com/api/share/?title=easyAPNS%3A+Open+Source+Push+Notification+Service+%28using+PHP%2FmySQL%29&amp;link=http://iphone.keyvisuals.com/code-snippets/easyapns-open-source-push-notification-service/&amp;notes=easyAPNS%20is%20an%20open%20source%20%28free%29%20system%20for%20sending%20Apple%27s%20push%20notifications%20to%20a%20device.%20From%20their%20website%3A%0D%0A%0D%0A%0D%0A%0D%0AWhat%20is%20Easy%20APNs%3F%0D%0AIf%20you%20are%20a%20native%20iPhone%20application%20developer%2C%20you%20may%20have%20heard%20of%20the%20Apple%20Push%20Notification%20service%20%28APNs%29.%20There%20are%20a%20lot%20of%20excellent%20online%20guides%20o&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://www.shareaholic.com/api/share/?title=easyAPNS%3A+Open+Source+Push+Notification+Service+%28using+PHP%2FmySQL%29&amp;link=http://iphone.keyvisuals.com/code-snippets/easyapns-open-source-push-notification-service/&amp;notes=easyAPNS%20is%20an%20open%20source%20%28free%29%20system%20for%20sending%20Apple%27s%20push%20notifications%20to%20a%20device.%20From%20their%20website%3A%0D%0A%0D%0A%0D%0A%0D%0AWhat%20is%20Easy%20APNs%3F%0D%0AIf%20you%20are%20a%20native%20iPhone%20application%20developer%2C%20you%20may%20have%20heard%20of%20the%20Apple%20Push%20Notification%20service%20%28APNs%29.%20There%20are%20a%20lot%20of%20excellent%20online%20guides%20o&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=10&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=easyAPNS%3A+Open+Source+Push+Notification+Service+%28using+PHP%2FmySQL%29&amp;link=http://iphone.keyvisuals.com/code-snippets/easyapns-open-source-push-notification-service/&amp;notes=easyAPNS%20is%20an%20open%20source%20%28free%29%20system%20for%20sending%20Apple%27s%20push%20notifications%20to%20a%20device.%20From%20their%20website%3A%0D%0A%0D%0A%0D%0A%0D%0AWhat%20is%20Easy%20APNs%3F%0D%0AIf%20you%20are%20a%20native%20iPhone%20application%20developer%2C%20you%20may%20have%20heard%20of%20the%20Apple%20Push%20Notification%20service%20%28APNs%29.%20There%20are%20a%20lot%20of%20excellent%20online%20guides%20o&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%2524%257Btitle%257D%2B-%2B%2524%257Bshort_link%257D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul><div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="http://www.shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://iphone.keyvisuals.com/code-snippets/easyapns-open-source-push-notification-service/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>reviewscraper &#8211; Global App Store Review Scraper</title>
		<link>http://iphone.keyvisuals.com/iphonedev/reviewscraper-global-app-store-review-scraper/</link>
		<comments>http://iphone.keyvisuals.com/iphonedev/reviewscraper-global-app-store-review-scraper/#comments</comments>
		<pubDate>Mon, 20 Apr 2009 01:40:16 +0000</pubDate>
		<dc:creator>keyvisuals</dc:creator>
				<category><![CDATA[iPhone Development]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[app]]></category>
		<category><![CDATA[Apps]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[reviews]]></category>

		<guid isPermaLink="false">http://iphone.keyvisuals.com/?p=235</guid>
		<description><![CDATA[Review Scraper is the ideal app to download App Store reviews on a global scale. The App can be downloaded HERE free from Google Code and needs to be compiled. [nggallery id=2] Developers can easily track what people are saying about their apps and see how it ranks in all the App Store countries. • [...]]]></description>
			<content:encoded><![CDATA[<p>Review Scraper is the ideal app to download App Store reviews on a global scale. The App can be downloaded <a href="http://code.google.com/p/reviewscraper/" target="_blank">HERE</a> free from Google Code and needs to be compiled.</p>
<p>[nggallery id=2]</p>
<p>Developers can easily track what people are saying about their apps and see how it ranks in all the App Store countries.</p>
<p>• Search for apps using a familiar interface.</p>
<p>• Translate app reviews into your native language (language support is limited to what the Google Translation API supports).</p>
<p>• Downloaded app reviews are saved and can be easily deleted.</p>
<blockquote><p>svn checkout http://reviewscraper.googlecode.com/svn/trunk/</p></blockquote>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-blogger">
			<a href="http://www.shareaholic.com/api/share/?title=reviewscraper+-+Global+App+Store+Review+Scraper&amp;link=http://iphone.keyvisuals.com/iphonedev/reviewscraper-global-app-store-review-scraper/&amp;notes=Review%20Scraper%20is%20the%20ideal%20app%20to%20download%20App%20Store%20reviews%20on%20a%20global%20scale.%20The%20App%20can%20be%20downloaded%20HERE%20free%20from%20Google%20Code%20and%20needs%20to%20be%20compiled.%0D%0A%0D%0A%5Bnggallery%20id%3D2%5D%0D%0A%0D%0ADevelopers%20can%20easily%20track%20what%20people%20are%20saying%20about%20their%20apps%20and%20see%20how%20it%20ranks%20in%20all%20the%20App%20Store%20countri&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=219&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-delicious">
			<a href="http://www.shareaholic.com/api/share/?title=reviewscraper+-+Global+App+Store+Review+Scraper&amp;link=http://iphone.keyvisuals.com/iphonedev/reviewscraper-global-app-store-review-scraper/&amp;notes=Review%20Scraper%20is%20the%20ideal%20app%20to%20download%20App%20Store%20reviews%20on%20a%20global%20scale.%20The%20App%20can%20be%20downloaded%20HERE%20free%20from%20Google%20Code%20and%20needs%20to%20be%20compiled.%0D%0A%0D%0A%5Bnggallery%20id%3D2%5D%0D%0A%0D%0ADevelopers%20can%20easily%20track%20what%20people%20are%20saying%20about%20their%20apps%20and%20see%20how%20it%20ranks%20in%20all%20the%20App%20Store%20countri&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://www.shareaholic.com/api/share/?title=reviewscraper+-+Global+App+Store+Review+Scraper&amp;link=http://iphone.keyvisuals.com/iphonedev/reviewscraper-global-app-store-review-scraper/&amp;notes=Review%20Scraper%20is%20the%20ideal%20app%20to%20download%20App%20Store%20reviews%20on%20a%20global%20scale.%20The%20App%20can%20be%20downloaded%20HERE%20free%20from%20Google%20Code%20and%20needs%20to%20be%20compiled.%0D%0A%0D%0A%5Bnggallery%20id%3D2%5D%0D%0A%0D%0ADevelopers%20can%20easily%20track%20what%20people%20are%20saying%20about%20their%20apps%20and%20see%20how%20it%20ranks%20in%20all%20the%20App%20Store%20countri&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=3&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=reviewscraper+-+Global+App+Store+Review+Scraper&amp;link=http://iphone.keyvisuals.com/iphonedev/reviewscraper-global-app-store-review-scraper/&amp;notes=Review%20Scraper%20is%20the%20ideal%20app%20to%20download%20App%20Store%20reviews%20on%20a%20global%20scale.%20The%20App%20can%20be%20downloaded%20HERE%20free%20from%20Google%20Code%20and%20needs%20to%20be%20compiled.%0D%0A%0D%0A%5Bnggallery%20id%3D2%5D%0D%0A%0D%0ADevelopers%20can%20easily%20track%20what%20people%20are%20saying%20about%20their%20apps%20and%20see%20how%20it%20ranks%20in%20all%20the%20App%20Store%20countri&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.shareaholic.com/api/share/?title=reviewscraper+-+Global+App+Store+Review+Scraper&amp;link=http://iphone.keyvisuals.com/iphonedev/reviewscraper-global-app-store-review-scraper/&amp;notes=Review%20Scraper%20is%20the%20ideal%20app%20to%20download%20App%20Store%20reviews%20on%20a%20global%20scale.%20The%20App%20can%20be%20downloaded%20HERE%20free%20from%20Google%20Code%20and%20needs%20to%20be%20compiled.%0D%0A%0D%0A%5Bnggallery%20id%3D2%5D%0D%0A%0D%0ADevelopers%20can%20easily%20track%20what%20people%20are%20saying%20about%20their%20apps%20and%20see%20how%20it%20ranks%20in%20all%20the%20App%20Store%20countri&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=257&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://www.shareaholic.com/api/share/?title=reviewscraper+-+Global+App+Store+Review+Scraper&amp;link=http://iphone.keyvisuals.com/iphonedev/reviewscraper-global-app-store-review-scraper/&amp;notes=Review%20Scraper%20is%20the%20ideal%20app%20to%20download%20App%20Store%20reviews%20on%20a%20global%20scale.%20The%20App%20can%20be%20downloaded%20HERE%20free%20from%20Google%20Code%20and%20needs%20to%20be%20compiled.%0D%0A%0D%0A%5Bnggallery%20id%3D2%5D%0D%0A%0D%0ADevelopers%20can%20easily%20track%20what%20people%20are%20saying%20about%20their%20apps%20and%20see%20how%20it%20ranks%20in%20all%20the%20App%20Store%20countri&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.shareaholic.com/api/share/?title=reviewscraper+-+Global+App+Store+Review+Scraper&amp;link=http://iphone.keyvisuals.com/iphonedev/reviewscraper-global-app-store-review-scraper/&amp;notes=Review%20Scraper%20is%20the%20ideal%20app%20to%20download%20App%20Store%20reviews%20on%20a%20global%20scale.%20The%20App%20can%20be%20downloaded%20HERE%20free%20from%20Google%20Code%20and%20needs%20to%20be%20compiled.%0D%0A%0D%0A%5Bnggallery%20id%3D2%5D%0D%0A%0D%0ADevelopers%20can%20easily%20track%20what%20people%20are%20saying%20about%20their%20apps%20and%20see%20how%20it%20ranks%20in%20all%20the%20App%20Store%20countri&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://www.shareaholic.com/api/share/?title=reviewscraper+-+Global+App+Store+Review+Scraper&amp;link=http://iphone.keyvisuals.com/iphonedev/reviewscraper-global-app-store-review-scraper/&amp;notes=Review%20Scraper%20is%20the%20ideal%20app%20to%20download%20App%20Store%20reviews%20on%20a%20global%20scale.%20The%20App%20can%20be%20downloaded%20HERE%20free%20from%20Google%20Code%20and%20needs%20to%20be%20compiled.%0D%0A%0D%0A%5Bnggallery%20id%3D2%5D%0D%0A%0D%0ADevelopers%20can%20easily%20track%20what%20people%20are%20saying%20about%20their%20apps%20and%20see%20how%20it%20ranks%20in%20all%20the%20App%20Store%20countri&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=10&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=reviewscraper+-+Global+App+Store+Review+Scraper&amp;link=http://iphone.keyvisuals.com/iphonedev/reviewscraper-global-app-store-review-scraper/&amp;notes=Review%20Scraper%20is%20the%20ideal%20app%20to%20download%20App%20Store%20reviews%20on%20a%20global%20scale.%20The%20App%20can%20be%20downloaded%20HERE%20free%20from%20Google%20Code%20and%20needs%20to%20be%20compiled.%0D%0A%0D%0A%5Bnggallery%20id%3D2%5D%0D%0A%0D%0ADevelopers%20can%20easily%20track%20what%20people%20are%20saying%20about%20their%20apps%20and%20see%20how%20it%20ranks%20in%20all%20the%20App%20Store%20countri&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%2524%257Btitle%257D%2B-%2B%2524%257Bshort_link%257D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul><div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="http://www.shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://iphone.keyvisuals.com/iphonedev/reviewscraper-global-app-store-review-scraper/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Open Source iPhone Directory</title>
		<link>http://iphone.keyvisuals.com/iphonedev/open-source-iphone-directory/</link>
		<comments>http://iphone.keyvisuals.com/iphonedev/open-source-iphone-directory/#comments</comments>
		<pubDate>Thu, 16 Apr 2009 21:58:28 +0000</pubDate>
		<dc:creator>keyvisuals</dc:creator>
				<category><![CDATA[iPhone Development]]></category>
		<category><![CDATA[developers]]></category>
		<category><![CDATA[open source]]></category>

		<guid isPermaLink="false">http://iphone.keyvisuals.com/?p=195</guid>
		<description><![CDATA[This was first talked about at 360iDev in San Franscisco early in March. These guys got it up and running quick. This is an excellent hub of information if you are a developer trying to find Open Source code to learn from or expand upon. open.iphonedev.com Blog this on Blogger Share this on del.icio.us Digg [...]]]></description>
			<content:encoded><![CDATA[<p>This was first talked about at <a href="http://www.360idev.com/" target="_blank">360iDev</a> in San Franscisco early in March. These guys got it up and running quick. This is an excellent hub of information if you are a developer trying to find Open Source code to learn from or expand upon.</p>
<p><a href="http://open.iphonedev.com/" target="_blank">open.iphonedev.com</a></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-blogger">
			<a href="http://www.shareaholic.com/api/share/?title=Open+Source+iPhone+Directory&amp;link=http://iphone.keyvisuals.com/iphonedev/open-source-iphone-directory/&amp;notes=This%20was%20first%20talked%20about%20at%20360iDev%20in%20San%20Franscisco%20early%20in%20March.%20These%20guys%20got%20it%20up%20and%20running%20quick.%20This%20is%20an%20excellent%20hub%20of%20information%20if%20you%20are%20a%20developer%20trying%20to%20find%20Open%20Source%20code%20to%20learn%20from%20or%20expand%20upon.%0D%0A%0D%0Aopen.iphonedev.com&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=219&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-delicious">
			<a href="http://www.shareaholic.com/api/share/?title=Open+Source+iPhone+Directory&amp;link=http://iphone.keyvisuals.com/iphonedev/open-source-iphone-directory/&amp;notes=This%20was%20first%20talked%20about%20at%20360iDev%20in%20San%20Franscisco%20early%20in%20March.%20These%20guys%20got%20it%20up%20and%20running%20quick.%20This%20is%20an%20excellent%20hub%20of%20information%20if%20you%20are%20a%20developer%20trying%20to%20find%20Open%20Source%20code%20to%20learn%20from%20or%20expand%20upon.%0D%0A%0D%0Aopen.iphonedev.com&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://www.shareaholic.com/api/share/?title=Open+Source+iPhone+Directory&amp;link=http://iphone.keyvisuals.com/iphonedev/open-source-iphone-directory/&amp;notes=This%20was%20first%20talked%20about%20at%20360iDev%20in%20San%20Franscisco%20early%20in%20March.%20These%20guys%20got%20it%20up%20and%20running%20quick.%20This%20is%20an%20excellent%20hub%20of%20information%20if%20you%20are%20a%20developer%20trying%20to%20find%20Open%20Source%20code%20to%20learn%20from%20or%20expand%20upon.%0D%0A%0D%0Aopen.iphonedev.com&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=3&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=Open+Source+iPhone+Directory&amp;link=http://iphone.keyvisuals.com/iphonedev/open-source-iphone-directory/&amp;notes=This%20was%20first%20talked%20about%20at%20360iDev%20in%20San%20Franscisco%20early%20in%20March.%20These%20guys%20got%20it%20up%20and%20running%20quick.%20This%20is%20an%20excellent%20hub%20of%20information%20if%20you%20are%20a%20developer%20trying%20to%20find%20Open%20Source%20code%20to%20learn%20from%20or%20expand%20upon.%0D%0A%0D%0Aopen.iphonedev.com&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.shareaholic.com/api/share/?title=Open+Source+iPhone+Directory&amp;link=http://iphone.keyvisuals.com/iphonedev/open-source-iphone-directory/&amp;notes=This%20was%20first%20talked%20about%20at%20360iDev%20in%20San%20Franscisco%20early%20in%20March.%20These%20guys%20got%20it%20up%20and%20running%20quick.%20This%20is%20an%20excellent%20hub%20of%20information%20if%20you%20are%20a%20developer%20trying%20to%20find%20Open%20Source%20code%20to%20learn%20from%20or%20expand%20upon.%0D%0A%0D%0Aopen.iphonedev.com&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=257&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://www.shareaholic.com/api/share/?title=Open+Source+iPhone+Directory&amp;link=http://iphone.keyvisuals.com/iphonedev/open-source-iphone-directory/&amp;notes=This%20was%20first%20talked%20about%20at%20360iDev%20in%20San%20Franscisco%20early%20in%20March.%20These%20guys%20got%20it%20up%20and%20running%20quick.%20This%20is%20an%20excellent%20hub%20of%20information%20if%20you%20are%20a%20developer%20trying%20to%20find%20Open%20Source%20code%20to%20learn%20from%20or%20expand%20upon.%0D%0A%0D%0Aopen.iphonedev.com&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.shareaholic.com/api/share/?title=Open+Source+iPhone+Directory&amp;link=http://iphone.keyvisuals.com/iphonedev/open-source-iphone-directory/&amp;notes=This%20was%20first%20talked%20about%20at%20360iDev%20in%20San%20Franscisco%20early%20in%20March.%20These%20guys%20got%20it%20up%20and%20running%20quick.%20This%20is%20an%20excellent%20hub%20of%20information%20if%20you%20are%20a%20developer%20trying%20to%20find%20Open%20Source%20code%20to%20learn%20from%20or%20expand%20upon.%0D%0A%0D%0Aopen.iphonedev.com&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://www.shareaholic.com/api/share/?title=Open+Source+iPhone+Directory&amp;link=http://iphone.keyvisuals.com/iphonedev/open-source-iphone-directory/&amp;notes=This%20was%20first%20talked%20about%20at%20360iDev%20in%20San%20Franscisco%20early%20in%20March.%20These%20guys%20got%20it%20up%20and%20running%20quick.%20This%20is%20an%20excellent%20hub%20of%20information%20if%20you%20are%20a%20developer%20trying%20to%20find%20Open%20Source%20code%20to%20learn%20from%20or%20expand%20upon.%0D%0A%0D%0Aopen.iphonedev.com&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=10&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=Open+Source+iPhone+Directory&amp;link=http://iphone.keyvisuals.com/iphonedev/open-source-iphone-directory/&amp;notes=This%20was%20first%20talked%20about%20at%20360iDev%20in%20San%20Franscisco%20early%20in%20March.%20These%20guys%20got%20it%20up%20and%20running%20quick.%20This%20is%20an%20excellent%20hub%20of%20information%20if%20you%20are%20a%20developer%20trying%20to%20find%20Open%20Source%20code%20to%20learn%20from%20or%20expand%20upon.%0D%0A%0D%0Aopen.iphonedev.com&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%2524%257Btitle%257D%2B-%2B%2524%257Bshort_link%257D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul><div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="http://www.shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://iphone.keyvisuals.com/iphonedev/open-source-iphone-directory/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>appsales-mobile: Mobile App Store sales report analysis</title>
		<link>http://iphone.keyvisuals.com/iphonedev/appsales-mobile-mobile-app-store-sales-report-analysis/</link>
		<comments>http://iphone.keyvisuals.com/iphonedev/appsales-mobile-mobile-app-store-sales-report-analysis/#comments</comments>
		<pubDate>Thu, 16 Apr 2009 21:47:52 +0000</pubDate>
		<dc:creator>keyvisuals</dc:creator>
				<category><![CDATA[iPhone Development]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[app]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[sales]]></category>

		<guid isPermaLink="false">http://iphone.keyvisuals.com/?p=188</guid>
		<description><![CDATA[Here is another excellent tool for developers to track their daily/weekly/monthly sales figures from iTunes Connect. It&#8217;s the Open Source appsales-mobile app. It can be checked out of the GoogleCode Repository HERE using any SVN client. I use the free RapidSVN From their site: The newest reports can be downloaded with a single tap and [...]]]></description>
			<content:encoded><![CDATA[<p>Here is another excellent tool for developers to track their daily/weekly/monthly sales figures from iTunes Connect. It&#8217;s the Open Source appsales-mobile app. It can be checked out of the GoogleCode Repository <a href="http://code.google.com/p/appsales-mobile/" target="_blank">HERE</a> using any SVN client. I use the free <a href="http://rapidsvn.tigris.org/" target="_blank">RapidSVN</a></p>

<a href='http://iphone.keyvisuals.com/iphonedev/appsales-mobile-mobile-app-store-sales-report-analysis/attachment/appsales_mobile_screen2/' title='appsales_mobile_screen2'><img width="150" height="150" src="http://iphone.keyvisuals.com/wp-content/uploads/2009/04/appsales_mobile_screen2-150x150.png" class="attachment-thumbnail" alt="appsales_mobile_screen2" title="appsales_mobile_screen2" /></a>
<a href='http://iphone.keyvisuals.com/iphonedev/appsales-mobile-mobile-app-store-sales-report-analysis/attachment/appsales_mobile_screen1/' title='appsales_mobile_screen1'><img width="150" height="150" src="http://iphone.keyvisuals.com/wp-content/uploads/2009/04/appsales_mobile_screen1-150x150.png" class="attachment-thumbnail" alt="appsales_mobile_screen1" title="appsales_mobile_screen1" /></a>
<a href='http://iphone.keyvisuals.com/iphonedev/appsales-mobile-mobile-app-store-sales-report-analysis/attachment/appsales_mobile_screen3/' title='appsales_mobile_screen3'><img width="150" height="150" src="http://iphone.keyvisuals.com/wp-content/uploads/2009/04/appsales_mobile_screen3-150x150.png" class="attachment-thumbnail" alt="appsales_mobile_screen3" title="appsales_mobile_screen3" /></a>

<p>From their site:</p>
<blockquote><p>The newest reports can be downloaded with a single tap and all numbers are automatically converted to your (selectable) local currency.</p>
<p>With clear bar charts you&#8217;ll get a quick daily overview of how your apps are doing in the store. For each report you can view percentages of countries and each of your product&#8217;s share of the revenue.</p>
<p>The Graphs section offers trend charts for all or individual apps and a pie chart that shows revenue by region for a selectable date range.</p></blockquote>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-blogger">
			<a href="http://www.shareaholic.com/api/share/?title=appsales-mobile%3A+Mobile+App+Store+sales+report+analysis&amp;link=http://iphone.keyvisuals.com/iphonedev/appsales-mobile-mobile-app-store-sales-report-analysis/&amp;notes=Here%20is%20another%20excellent%20tool%20for%20developers%20to%20track%20their%20daily%2Fweekly%2Fmonthly%20sales%20figures%20from%20iTunes%20Connect.%20It%27s%20the%20Open%20Source%20appsales-mobile%20app.%20It%20can%20be%20checked%20out%20of%20the%20GoogleCode%20Repository%20HERE%20using%20any%20SVN%20client.%20I%20use%20the%20free%20RapidSVN%0D%0A%0D%0A%0D%0A%0D%0AFrom%20their%20site%3A%0D%0AThe%20newest%20rep&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=219&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-delicious">
			<a href="http://www.shareaholic.com/api/share/?title=appsales-mobile%3A+Mobile+App+Store+sales+report+analysis&amp;link=http://iphone.keyvisuals.com/iphonedev/appsales-mobile-mobile-app-store-sales-report-analysis/&amp;notes=Here%20is%20another%20excellent%20tool%20for%20developers%20to%20track%20their%20daily%2Fweekly%2Fmonthly%20sales%20figures%20from%20iTunes%20Connect.%20It%27s%20the%20Open%20Source%20appsales-mobile%20app.%20It%20can%20be%20checked%20out%20of%20the%20GoogleCode%20Repository%20HERE%20using%20any%20SVN%20client.%20I%20use%20the%20free%20RapidSVN%0D%0A%0D%0A%0D%0A%0D%0AFrom%20their%20site%3A%0D%0AThe%20newest%20rep&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://www.shareaholic.com/api/share/?title=appsales-mobile%3A+Mobile+App+Store+sales+report+analysis&amp;link=http://iphone.keyvisuals.com/iphonedev/appsales-mobile-mobile-app-store-sales-report-analysis/&amp;notes=Here%20is%20another%20excellent%20tool%20for%20developers%20to%20track%20their%20daily%2Fweekly%2Fmonthly%20sales%20figures%20from%20iTunes%20Connect.%20It%27s%20the%20Open%20Source%20appsales-mobile%20app.%20It%20can%20be%20checked%20out%20of%20the%20GoogleCode%20Repository%20HERE%20using%20any%20SVN%20client.%20I%20use%20the%20free%20RapidSVN%0D%0A%0D%0A%0D%0A%0D%0AFrom%20their%20site%3A%0D%0AThe%20newest%20rep&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=3&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=appsales-mobile%3A+Mobile+App+Store+sales+report+analysis&amp;link=http://iphone.keyvisuals.com/iphonedev/appsales-mobile-mobile-app-store-sales-report-analysis/&amp;notes=Here%20is%20another%20excellent%20tool%20for%20developers%20to%20track%20their%20daily%2Fweekly%2Fmonthly%20sales%20figures%20from%20iTunes%20Connect.%20It%27s%20the%20Open%20Source%20appsales-mobile%20app.%20It%20can%20be%20checked%20out%20of%20the%20GoogleCode%20Repository%20HERE%20using%20any%20SVN%20client.%20I%20use%20the%20free%20RapidSVN%0D%0A%0D%0A%0D%0A%0D%0AFrom%20their%20site%3A%0D%0AThe%20newest%20rep&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.shareaholic.com/api/share/?title=appsales-mobile%3A+Mobile+App+Store+sales+report+analysis&amp;link=http://iphone.keyvisuals.com/iphonedev/appsales-mobile-mobile-app-store-sales-report-analysis/&amp;notes=Here%20is%20another%20excellent%20tool%20for%20developers%20to%20track%20their%20daily%2Fweekly%2Fmonthly%20sales%20figures%20from%20iTunes%20Connect.%20It%27s%20the%20Open%20Source%20appsales-mobile%20app.%20It%20can%20be%20checked%20out%20of%20the%20GoogleCode%20Repository%20HERE%20using%20any%20SVN%20client.%20I%20use%20the%20free%20RapidSVN%0D%0A%0D%0A%0D%0A%0D%0AFrom%20their%20site%3A%0D%0AThe%20newest%20rep&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=257&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://www.shareaholic.com/api/share/?title=appsales-mobile%3A+Mobile+App+Store+sales+report+analysis&amp;link=http://iphone.keyvisuals.com/iphonedev/appsales-mobile-mobile-app-store-sales-report-analysis/&amp;notes=Here%20is%20another%20excellent%20tool%20for%20developers%20to%20track%20their%20daily%2Fweekly%2Fmonthly%20sales%20figures%20from%20iTunes%20Connect.%20It%27s%20the%20Open%20Source%20appsales-mobile%20app.%20It%20can%20be%20checked%20out%20of%20the%20GoogleCode%20Repository%20HERE%20using%20any%20SVN%20client.%20I%20use%20the%20free%20RapidSVN%0D%0A%0D%0A%0D%0A%0D%0AFrom%20their%20site%3A%0D%0AThe%20newest%20rep&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.shareaholic.com/api/share/?title=appsales-mobile%3A+Mobile+App+Store+sales+report+analysis&amp;link=http://iphone.keyvisuals.com/iphonedev/appsales-mobile-mobile-app-store-sales-report-analysis/&amp;notes=Here%20is%20another%20excellent%20tool%20for%20developers%20to%20track%20their%20daily%2Fweekly%2Fmonthly%20sales%20figures%20from%20iTunes%20Connect.%20It%27s%20the%20Open%20Source%20appsales-mobile%20app.%20It%20can%20be%20checked%20out%20of%20the%20GoogleCode%20Repository%20HERE%20using%20any%20SVN%20client.%20I%20use%20the%20free%20RapidSVN%0D%0A%0D%0A%0D%0A%0D%0AFrom%20their%20site%3A%0D%0AThe%20newest%20rep&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://www.shareaholic.com/api/share/?title=appsales-mobile%3A+Mobile+App+Store+sales+report+analysis&amp;link=http://iphone.keyvisuals.com/iphonedev/appsales-mobile-mobile-app-store-sales-report-analysis/&amp;notes=Here%20is%20another%20excellent%20tool%20for%20developers%20to%20track%20their%20daily%2Fweekly%2Fmonthly%20sales%20figures%20from%20iTunes%20Connect.%20It%27s%20the%20Open%20Source%20appsales-mobile%20app.%20It%20can%20be%20checked%20out%20of%20the%20GoogleCode%20Repository%20HERE%20using%20any%20SVN%20client.%20I%20use%20the%20free%20RapidSVN%0D%0A%0D%0A%0D%0A%0D%0AFrom%20their%20site%3A%0D%0AThe%20newest%20rep&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=10&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=appsales-mobile%3A+Mobile+App+Store+sales+report+analysis&amp;link=http://iphone.keyvisuals.com/iphonedev/appsales-mobile-mobile-app-store-sales-report-analysis/&amp;notes=Here%20is%20another%20excellent%20tool%20for%20developers%20to%20track%20their%20daily%2Fweekly%2Fmonthly%20sales%20figures%20from%20iTunes%20Connect.%20It%27s%20the%20Open%20Source%20appsales-mobile%20app.%20It%20can%20be%20checked%20out%20of%20the%20GoogleCode%20Repository%20HERE%20using%20any%20SVN%20client.%20I%20use%20the%20free%20RapidSVN%0D%0A%0D%0A%0D%0A%0D%0AFrom%20their%20site%3A%0D%0AThe%20newest%20rep&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%2524%257Btitle%257D%2B-%2B%2524%257Bshort_link%257D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul><div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="http://www.shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://iphone.keyvisuals.com/iphonedev/appsales-mobile-mobile-app-store-sales-report-analysis/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wolfenstein 3d for iPhone Open Source!</title>
		<link>http://iphone.keyvisuals.com/apps/wolfenstin-3d-iphone-open-source/</link>
		<comments>http://iphone.keyvisuals.com/apps/wolfenstin-3d-iphone-open-source/#comments</comments>
		<pubDate>Thu, 16 Apr 2009 20:49:39 +0000</pubDate>
		<dc:creator>keyvisuals</dc:creator>
				<category><![CDATA[Apps]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[app]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[wolfenstein]]></category>

		<guid isPermaLink="false">http://iphone.keyvisuals.com/?p=151</guid>
		<description><![CDATA[I&#8217;m sure you remember the classic 1st person shooter Wolfenstein 3d. The creators iD Software have revived the game once again and ported it to run on the iPhone. Non developers can buy the game from the App store for $4.99 Interestingly though, if you are an iPhone Developer, the full source files for the [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m sure you remember the classic 1st person shooter Wolfenstein 3d. The creators iD Software have revived the game once again and ported it to run on the iPhone. Non developers can <a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=309470478&amp;mt=8" target="_blank">buy the game from the App store for $4.99</a> Interestingly though, if you are an iPhone Developer, the full source files for the game are released free under an open source license. A full paid ($99) iPhone developer license is required in order to compile the code on your own device.</p>

<a href='http://iphone.keyvisuals.com/apps/wolfenstin-3d-iphone-open-source/attachment/wolfenstein3d_2/' title='wolfenstein3d_2'><img width="150" height="150" src="http://iphone.keyvisuals.com/wp-content/uploads/2009/04/wolfenstein3d_2-150x150.jpg" class="attachment-thumbnail" alt="wolfenstein3d_2" title="wolfenstein3d_2" /></a>
<a href='http://iphone.keyvisuals.com/apps/wolfenstin-3d-iphone-open-source/attachment/wolfenstein3d_3/' title='wolfenstein3d_3'><img width="150" height="150" src="http://iphone.keyvisuals.com/wp-content/uploads/2009/04/wolfenstein3d_3-150x150.jpg" class="attachment-thumbnail" alt="wolfenstein3d_3" title="wolfenstein3d_3" /></a>
<a href='http://iphone.keyvisuals.com/apps/wolfenstin-3d-iphone-open-source/attachment/wolf3d5/' title='wolf3d5'><img width="150" height="150" src="http://iphone.keyvisuals.com/wp-content/uploads/2009/04/wolf3d5-150x150.jpg" class="attachment-thumbnail" alt="wolf3d5" title="wolf3d5" /></a>

<p>The source code can be downloaded here from <a href="ftp://ftp.idsoftware.com/idstuff/wolf3d/wolf3d_iphone_v1.0_src.zip" target="_blank">Id&#8217;s ftp server</a></p>
<p>If you are interested in running Wolf3d on the iPhone simulator you need to make some minor code modification. Instruction can be found at <a href="http://www.ghostradio.net/2009/03/building-wolf3d-for-iphone/" target="_blank">ghostradio.net</a></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-blogger">
			<a href="http://www.shareaholic.com/api/share/?title=Wolfenstein+3d+for+iPhone+Open+Source%21&amp;link=http://iphone.keyvisuals.com/apps/wolfenstin-3d-iphone-open-source/&amp;notes=I%27m%20sure%20you%20remember%20the%20classic%201st%20person%20shooter%20Wolfenstein%203d.%20The%20creators%20iD%20Software%20have%20revived%20the%20game%20once%20again%20and%20ported%20it%20to%20run%20on%20the%20iPhone.%20Non%20developers%20can%20buy%20the%20game%20from%20the%20App%20store%20for%20%244.99%20Interestingly%20though%2C%20if%20you%20are%20an%20iPhone%20Developer%2C%20the%20full%20source%20files%20&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=219&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-delicious">
			<a href="http://www.shareaholic.com/api/share/?title=Wolfenstein+3d+for+iPhone+Open+Source%21&amp;link=http://iphone.keyvisuals.com/apps/wolfenstin-3d-iphone-open-source/&amp;notes=I%27m%20sure%20you%20remember%20the%20classic%201st%20person%20shooter%20Wolfenstein%203d.%20The%20creators%20iD%20Software%20have%20revived%20the%20game%20once%20again%20and%20ported%20it%20to%20run%20on%20the%20iPhone.%20Non%20developers%20can%20buy%20the%20game%20from%20the%20App%20store%20for%20%244.99%20Interestingly%20though%2C%20if%20you%20are%20an%20iPhone%20Developer%2C%20the%20full%20source%20files%20&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://www.shareaholic.com/api/share/?title=Wolfenstein+3d+for+iPhone+Open+Source%21&amp;link=http://iphone.keyvisuals.com/apps/wolfenstin-3d-iphone-open-source/&amp;notes=I%27m%20sure%20you%20remember%20the%20classic%201st%20person%20shooter%20Wolfenstein%203d.%20The%20creators%20iD%20Software%20have%20revived%20the%20game%20once%20again%20and%20ported%20it%20to%20run%20on%20the%20iPhone.%20Non%20developers%20can%20buy%20the%20game%20from%20the%20App%20store%20for%20%244.99%20Interestingly%20though%2C%20if%20you%20are%20an%20iPhone%20Developer%2C%20the%20full%20source%20files%20&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=3&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=Wolfenstein+3d+for+iPhone+Open+Source%21&amp;link=http://iphone.keyvisuals.com/apps/wolfenstin-3d-iphone-open-source/&amp;notes=I%27m%20sure%20you%20remember%20the%20classic%201st%20person%20shooter%20Wolfenstein%203d.%20The%20creators%20iD%20Software%20have%20revived%20the%20game%20once%20again%20and%20ported%20it%20to%20run%20on%20the%20iPhone.%20Non%20developers%20can%20buy%20the%20game%20from%20the%20App%20store%20for%20%244.99%20Interestingly%20though%2C%20if%20you%20are%20an%20iPhone%20Developer%2C%20the%20full%20source%20files%20&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.shareaholic.com/api/share/?title=Wolfenstein+3d+for+iPhone+Open+Source%21&amp;link=http://iphone.keyvisuals.com/apps/wolfenstin-3d-iphone-open-source/&amp;notes=I%27m%20sure%20you%20remember%20the%20classic%201st%20person%20shooter%20Wolfenstein%203d.%20The%20creators%20iD%20Software%20have%20revived%20the%20game%20once%20again%20and%20ported%20it%20to%20run%20on%20the%20iPhone.%20Non%20developers%20can%20buy%20the%20game%20from%20the%20App%20store%20for%20%244.99%20Interestingly%20though%2C%20if%20you%20are%20an%20iPhone%20Developer%2C%20the%20full%20source%20files%20&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=257&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://www.shareaholic.com/api/share/?title=Wolfenstein+3d+for+iPhone+Open+Source%21&amp;link=http://iphone.keyvisuals.com/apps/wolfenstin-3d-iphone-open-source/&amp;notes=I%27m%20sure%20you%20remember%20the%20classic%201st%20person%20shooter%20Wolfenstein%203d.%20The%20creators%20iD%20Software%20have%20revived%20the%20game%20once%20again%20and%20ported%20it%20to%20run%20on%20the%20iPhone.%20Non%20developers%20can%20buy%20the%20game%20from%20the%20App%20store%20for%20%244.99%20Interestingly%20though%2C%20if%20you%20are%20an%20iPhone%20Developer%2C%20the%20full%20source%20files%20&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.shareaholic.com/api/share/?title=Wolfenstein+3d+for+iPhone+Open+Source%21&amp;link=http://iphone.keyvisuals.com/apps/wolfenstin-3d-iphone-open-source/&amp;notes=I%27m%20sure%20you%20remember%20the%20classic%201st%20person%20shooter%20Wolfenstein%203d.%20The%20creators%20iD%20Software%20have%20revived%20the%20game%20once%20again%20and%20ported%20it%20to%20run%20on%20the%20iPhone.%20Non%20developers%20can%20buy%20the%20game%20from%20the%20App%20store%20for%20%244.99%20Interestingly%20though%2C%20if%20you%20are%20an%20iPhone%20Developer%2C%20the%20full%20source%20files%20&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://www.shareaholic.com/api/share/?title=Wolfenstein+3d+for+iPhone+Open+Source%21&amp;link=http://iphone.keyvisuals.com/apps/wolfenstin-3d-iphone-open-source/&amp;notes=I%27m%20sure%20you%20remember%20the%20classic%201st%20person%20shooter%20Wolfenstein%203d.%20The%20creators%20iD%20Software%20have%20revived%20the%20game%20once%20again%20and%20ported%20it%20to%20run%20on%20the%20iPhone.%20Non%20developers%20can%20buy%20the%20game%20from%20the%20App%20store%20for%20%244.99%20Interestingly%20though%2C%20if%20you%20are%20an%20iPhone%20Developer%2C%20the%20full%20source%20files%20&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=10&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=Wolfenstein+3d+for+iPhone+Open+Source%21&amp;link=http://iphone.keyvisuals.com/apps/wolfenstin-3d-iphone-open-source/&amp;notes=I%27m%20sure%20you%20remember%20the%20classic%201st%20person%20shooter%20Wolfenstein%203d.%20The%20creators%20iD%20Software%20have%20revived%20the%20game%20once%20again%20and%20ported%20it%20to%20run%20on%20the%20iPhone.%20Non%20developers%20can%20buy%20the%20game%20from%20the%20App%20store%20for%20%244.99%20Interestingly%20though%2C%20if%20you%20are%20an%20iPhone%20Developer%2C%20the%20full%20source%20files%20&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%2524%257Btitle%257D%2B-%2B%2524%257Bshort_link%257D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul><div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="http://www.shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://iphone.keyvisuals.com/apps/wolfenstin-3d-iphone-open-source/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

