<?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>Andy Girvan &#187; admin - Andy Girvan - Freelance Web &amp; Mobile Developer, London - HTML5/JS/CSS3 -  PHP/MySQL - iOS</title>
	<atom:link href="http://andygirvan.com/author/admin/feed/" rel="self" type="application/rss+xml" />
	<link>http://andygirvan.com</link>
	<description>Freelance Web &#38; Mobile Developer, London - HTML5/JS/CSS3 -  PHP/MySQL - iOS</description>
	<lastBuildDate>Tue, 17 Apr 2012 19:16:46 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Rails with OmniAuth &amp; Mini-FB for rapid Facebook app development</title>
		<link>http://andygirvan.com/2012/04/rails-with-omniauth-mini-fb-for-rapid-facebook-app-development/</link>
		<comments>http://andygirvan.com/2012/04/rails-with-omniauth-mini-fb-for-rapid-facebook-app-development/#comments</comments>
		<pubDate>Tue, 17 Apr 2012 19:14:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[facebook connect]]></category>
		<category><![CDATA[rails]]></category>
		<category><![CDATA[rapid]]></category>
		<category><![CDATA[ruby]]></category>

		<guid isPermaLink="false">http://andygirvan.com/?p=1169</guid>
		<description><![CDATA[I&#8217;ve recently been getting back into Ruby on Rails since my love-affair for CodeIgniter &#38; PHP has wained a bit recently. I kept on building apps that required Facebook/Twitter authentication and relied heavily on the well built but rarely updated libraries like TankAuth. If you don&#8217;t know, Rails has things called Gems, which are essentially [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve recently been getting back into Ruby on Rails since my love-affair for CodeIgniter &amp; PHP has wained a bit recently. I kept on building apps that required Facebook/Twitter authentication and relied heavily on the well built but rarely updated libraries like <a href="http://www.konyukhov.com/soft/tank_auth/" target="_blank">TankAuth</a>.</p>
<p>If you don&#8217;t know, <a href="http://rubygems.org/gems/rails" target="_blank">Rails has things called Gems</a>, which are essentially packaged up libraries of code, usable throughout your applications within the MVC framework. Two of these, OmniAuth and Mini FB, offer a fantastically easy roll-out of a basic <a href="http://developers.facebook.com/docs/" target="_blank">Facebook Connect</a> powered app.</p>
<p><span id="more-1169"></span></p>
<h4>OmniAuth</h4>
<p><a href="https://github.com/intridea/omniauth" target="_blank">OmniAuth</a>, officially, is &#8220;a flexible authentication system utilizing Rack middleware&#8221;, but it is basically a Gem you can install which handles the authentication process for services like Twitter and Facebook, leaving you to take the reigns at the callback stage. This is mind blowing for me, as a lot of the work in building apps with these services is hooking up to them, swapping tokens etc&#8230;</p>
<p>To get OmniAuth working with Facebook on your app is really simple. First of all, add:</p>
<p><script src="https://gist.github.com/2408268.js?file=gistfile1.txt"></script></p>
<p>to your Gemfile and run <em>bundle install. </em>This will add the Gem for you to start working with. Secondly, you need to create a flle in your config/ folder called <em>omniauth.rb</em> with:</p>
<p><script src="https://gist.github.com/2408298.js?file=gistfile1.txt"></script></p>
<p>&#8230;and thats it! Simply run the rails application and point it at localhost:3000/auth/facebook and it will prompt you to authenticate with Facebook. Bingo bango! You&#8217;ll also notice that when the application is successfully authenticated, it redirects back to localhost:3000/auth/facebook/callback, which you can do whatever you require with: creating a user, starting a session etc&#8230;.</p>
<h4>Mini FB</h4>
<p>What good is being connected to Facebook if you can&#8217;t easily retrieve that juicy Connect data? That&#8217;s where the Gem <a href="https://github.com/appoxy/mini_fb" target="_blank">Mini FB</a> comes in. It bundles up a few methods for you to make calls and receive the data back in hash format. Set up is similarly breezy. Add the following to your Gemfile:</p>
<p><script src="https://gist.github.com/2408323.js?file=gistfile1.txt"></script></p>
<p>As with OmniAuth, that&#8217;s pretty much the work done for you, now all you have to do is making some calls. If you have already authenticated using OmniAuth then you should have a user token. You can use this, for example, to get a list of all the current users friends:</p>
<p><script src="https://gist.github.com/2408340.js?file=gistfile1.txt"></script></p>
<p>Now you&#8217;ve got an object that you can loop through using an each loop and display it however you want!</p>
<hr />
<p>It really is incredibly simple to get a basic app up and running but the great thing about these tools is just how much it opens up. Make sure you check out this <a href="http://net.tutsplus.com/tutorials/ruby/how-to-use-omniauth-to-authenticate-your-users/" target="_blank">amazing tutorial from Nettuts+</a>, which goes further than I&#8217;ve gone with the examples or head straight on over to the official <a href="https://github.com/intridea/omniauth/wiki" target="_blank">Github-based wiki for OmniAuth</a> or <a href="https://github.com/appoxy/mini_fb" target="_blank">Mini FB</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://andygirvan.com/2012/04/rails-with-omniauth-mini-fb-for-rapid-facebook-app-development/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>5 jQuery optimization tips from jsPerf</title>
		<link>http://andygirvan.com/2012/04/5-jquery-optimization-tips-from-jsperf/</link>
		<comments>http://andygirvan.com/2012/04/5-jquery-optimization-tips-from-jsperf/#comments</comments>
		<pubDate>Wed, 04 Apr 2012 13:19:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[jquery tips]]></category>
		<category><![CDATA[jsperf]]></category>
		<category><![CDATA[optimization]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://andygirvan.com/?p=1141</guid>
		<description><![CDATA[jQuery is a wonderful library that offers a massive amount of functionality in a nicely wrapped up package. But jQuery is quite bloated, with the minified version weighing in at 94kb. If you&#8217;re micro-optimizing, any of these little tips should help to squeeze out the hidden milliseconds on load/run time. Lucikly there is a website [...]]]></description>
			<content:encoded><![CDATA[<p>jQuery is a wonderful library that offers a massive amount of functionality in a nicely wrapped up package. But jQuery is quite bloated, with the minified version weighing in at 94kb. If you&#8217;re micro-optimizing, any of these little tips should help to squeeze out the hidden milliseconds on load/run time.</p>
<p>Lucikly there is a website called <a href="http://jsperf.com" target="_blank">jsperf.com</a> which allows you to test &#038; compare different blocks of code against each other, and see the results of each &#8211; recording how fast each block ran in which browser. Here are some simple but handy tips.</p>
<p><span id="more-1141"></span></p>
<h4>Document Ready</h4>
<p><a href="http://jsperf.com/ready/2" target="_blank">http://jsperf.com/ready/2</a></p>
<p>When calling for jQuery to fire when the whole page has loaded &#8211; aka on document ready &#8211; there are a few options available to initiate this. The test shows that the quickest, by quite a way is:</p>
<p><script type="text/javascript" src="https://gist.github.com/2300208.js?file=gistfile1.txt"></script><br />
<br /></p>
<h4>A better .each() loop</h4>
<p><a href="http://jsperf.com/jquery-each-vs-quickeach" target="_blank">http://jsperf.com/jquery-each-vs-quickeach</a></p>
<p>Looping through X amount of the same element can be quite time intensive, especially if you&#8217;re doing manipulation in each loop. The built in .each method does a decent job, but James Padolsey at jsperf has taken advantage of object caching to create a faster loop extension, called .quickEach:</p>
<p><script src="https://gist.github.com/2300218.js?file=gistfile1.txt"></script><br />
<br /></p>
<h4>CSS3 Selector vs Jquery</h4>
<p><a href="http://jsperf.com/jquery-css3-not-vs-not" target="_blank">http://jsperf.com/jquery-css3-not-vs-not</a></p>
<p>Ok, so this is a test for the latest browsers (which you should be on anyway) but this test shows that using a CSS3 selector to help jQuery navigate the code is quicker than relying on the library itself.</p>
<p><script src="https://gist.github.com/2300976.js?file=gistfile1.txt"></script><br />
<br /></p>
<h4>Switch vs If/Else</h4>
<p><a href="http://jsperf.com/switch-if-else" target="_blank">http://jsperf.com/switch-if-else</a></p>
<p>Quite an interesting one, this. It seems that an if/else conditional block is faster, in all browsers, than a switch/case block &#8211; remember this if you&#8217;ve got a switch/case block in a loop.<br />
<br /></p>
<h4>jQuery selector vs normal javascript</h4>
<p><a href="http://jsperf.com/getelementbyid-vs-jquery-id/5">http://jsperf.com/getelementbyid-vs-jquery-id/5</a></p>
<p>This is a bit obvious this one, but one that is often forgotten. This test proves that, if you can, using standard javascript is always preferable if you&#8217;re optimizing as it doesn&#8217;t require the loading of a large library before firing. Although jQuery is very useful for pretty much all web JS development, there is absolutely no excuse for using jQuery to just select a canvas element.</p>
<p><script src="https://gist.github.com/2301013.js?file=gistfile1.txt"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://andygirvan.com/2012/04/5-jquery-optimization-tips-from-jsperf/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Social Break for iPhone &#8211; Gameplay Video</title>
		<link>http://andygirvan.com/2012/04/social-break-for-iphone-gameplay-video/</link>
		<comments>http://andygirvan.com/2012/04/social-break-for-iphone-gameplay-video/#comments</comments>
		<pubDate>Tue, 03 Apr 2012 12:54:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://andygirvan.com/?p=1122</guid>
		<description><![CDATA[If you&#8217;ve not yet had a chance to try out Social Break or the free version Social Break Lite, you can now see what all the fuss is about by checking out the latest gameplay video. If you enjoyed the look of that, head on over to the App Store to try it out!]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;ve not yet had a chance to try out <a href="http://bit.ly/socialbreak" target="_blank">Social Break</a> or the free version <a href="http://bit.ly/socialbreaklite" target="_blank">Social Break Lite</a>, you can now see what all the fuss is about by checking out the latest gameplay video.</p>
<p><!-- Embed Container -->
		<div class='embed-container'><iframe width="500" height="281" src="http://www.youtube.com/embed/voM_uNphhfI?fs=1&#038;feature=oembed" frameborder="0" allowfullscreen></iframe></div>
		<!--//end embed-container--></p>
<p>If you enjoyed the look of that, head on over to the <a href="http://bit.ly/socialbreak" target="_blank">App Store</a> to try it out!</p>
]]></content:encoded>
			<wfw:commentRss>http://andygirvan.com/2012/04/social-break-for-iphone-gameplay-video/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>5 great resources for web development</title>
		<link>http://andygirvan.com/2012/04/5-great-resources-for-web-development/</link>
		<comments>http://andygirvan.com/2012/04/5-great-resources-for-web-development/#comments</comments>
		<pubDate>Mon, 02 Apr 2012 10:44:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[github]]></category>
		<category><![CDATA[litmus]]></category>
		<category><![CDATA[resources]]></category>
		<category><![CDATA[stackoverflow]]></category>
		<category><![CDATA[testing]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://andygirvan.com/?p=1086</guid>
		<description><![CDATA[When I&#8217;m developing any of my web projects, I tend to use the following 5 resources over &#038; over &#8211; so it was surprising to speak to a developer who had never heard of some of them! So here&#8217;s a list of some essential web development resources. ThemeForest &#8211; Part of the Envato Suite A [...]]]></description>
			<content:encoded><![CDATA[<p>When I&#8217;m developing any of my web projects, I tend to use the following 5 resources over &#038; over &#8211; so it was surprising to speak to a developer who had never heard of some of them! </p>
<p><span id="more-1086"></span></p>
<p>So here&#8217;s a list of some essential web development resources.</p>
<h4><a href="http://themeforest.net" target="_blank">ThemeForest</a> &#8211; Part of the Envato Suite</h4>
<p>A store of literally thousands of premium WordPress &#038; eCommerce themes, html builds and PSD templates, all at very low prices making it the perfect place to start if you&#8217;ve got a small budget or limited resources. Starting with a premium theme can often get rid of the headaches caused by the menial jobs (hover states, contact forms, cross-browser compatibility)</p>
<h4><a href="http://github.com" target="_blank">Github</a> &#8211; Code Repository Browser</h4>
<p>Looking through open-source work is a brilliant way to learn a new language or way of working. Github is a hosted GIT repository site that houses millions of lines of code for you to look through. Viewing code is free, as is hosting publicly visible repositories but there is also a paid-version to keep your code hidden.</p>
<h4><a href="http://litmus.com" target="_blank">Litmus</a> &#8211; Email Test Suite</h4>
<p>Although the price is pretty high, starting at $50 per month, the service is invaluable if you&#8217;re considering an email campaign which needs to support a wide array of email clients (and all of their quirks!). Litmus allows you to test out your build, rendering it in all clients you could want &#8211; from Lotus Notes and Outlook to iPad &#038; BlackBerry.</p>
<h4><a href="http://smashingmagazine.com" target="_blank">Smashing Magazine</a> &#8211; Resource Blog</h4>
<p>Wonderful articles ranging from theory to practical implementations of code. The site is aimed more towards HTML5/CSS3 than heavyweight back-end languages like C# or PHP, although there are a few.</p>
<h4><a href="http://stackoverflow.com" target="_blank">StackOverflow</a> &#8211; Q&#038;A</h4>
<p>If you&#8217;ve been banging your head against the desk for a few hours on a small issue that you swear should work, then I highly recommend StackOverflow. There are thousands of intelligent and helpful developers out there who will be able to help you with your issue, or at least point you in the correct direction. It is a question &#038; answer platform, however, so don&#8217;t forget to contritube both ways.</p>
]]></content:encoded>
			<wfw:commentRss>http://andygirvan.com/2012/04/5-great-resources-for-web-development/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>John Lennon</title>
		<link>http://andygirvan.com/2012/04/the-time-you-enjoy-wasting-is-not-wasted-time/</link>
		<comments>http://andygirvan.com/2012/04/the-time-you-enjoy-wasting-is-not-wasted-time/#comments</comments>
		<pubDate>Mon, 02 Apr 2012 09:50:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Lifestyle]]></category>
		<category><![CDATA[#quote]]></category>

		<guid isPermaLink="false">http://andygirvan.com/?p=1104</guid>
		<description><![CDATA[The time you enjoy wasting is not wasted time.]]></description>
			<content:encoded><![CDATA[<p>The time you enjoy wasting is not wasted time.</p>
]]></content:encoded>
			<wfw:commentRss>http://andygirvan.com/2012/04/the-time-you-enjoy-wasting-is-not-wasted-time/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mozilla releases open-source, browser-based MMO &#8220;BrowserQuest&#8221;</title>
		<link>http://andygirvan.com/2012/03/mozilla-releases-open-source-browser-based-mmo-browserquest/</link>
		<comments>http://andygirvan.com/2012/03/mozilla-releases-open-source-browser-based-mmo-browserquest/#comments</comments>
		<pubDate>Tue, 27 Mar 2012 14:29:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Game]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[game development]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[mmorpg]]></category>
		<category><![CDATA[open-source]]></category>

		<guid isPermaLink="false">http://andygirvan.com/?p=1088</guid>
		<description><![CDATA[To show off the massive potential of browser-based games, Mozilla and Little Workshop recently released an open-source, browser-based massively multiplayer online game, BrowserQuest with the standard MMO mechanics you&#8217;d expect: chat, loot, mobs and more. The game itself can be played and tested here but the real value of it is that it is open source [...]]]></description>
			<content:encoded><![CDATA[<p>To show off the massive potential of browser-based games, Mozilla and <a href="http://www.littleworkshop.fr/" target="_blank">Little Workshop</a> recently released an open-source, browser-based massively multiplayer online game, <a href="http://browserquest.mozilla.org" target="_blank">BrowserQuest</a> with the standard MMO mechanics you&#8217;d expect: chat, loot, mobs and more.</p>
<p><a href="http://andygirvan.com/wp-content/uploads/2012/03/promo-title.jpg"><img class="aligncenter size-full wp-image-1095" title="promo-title" src="http://andygirvan.com/wp-content/uploads/2012/03/promo-title.jpg" alt="" width="500" height="250" /></a></p>
<p><span id="more-1088"></span></p>
<p>The game itself can be <a href="http://browserquest.mozilla.org" target="_blank">played and tested here</a> but the real value of it is that it is <a href="https://github.com/mozilla/BrowserQuest" target="_blank">open source and on GitHub</a>. The codebase itself is as tidy as you&#8217;d expect from a Mozilla release which makes it a great source of education if you&#8217;re looking at making in-browser games with multiplayer support.</p>
<blockquote><p>BrowserQuest is a tribute to classic video-games with a multiplayer twist. You play as a young warrior driven by the thrill of adventure. No princess to save here, just a dangerous world filled with treasures to discover. And it’s all done in glorious HTML5 and JavaScript.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://andygirvan.com/2012/03/mozilla-releases-open-source-browser-based-mmo-browserquest/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Around London &#8211; Portobello Market</title>
		<link>http://andygirvan.com/2012/03/around-london-portobello-market/</link>
		<comments>http://andygirvan.com/2012/03/around-london-portobello-market/#comments</comments>
		<pubDate>Sun, 25 Mar 2012 20:30:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Lifestyle]]></category>
		<category><![CDATA[Photos]]></category>

		<guid isPermaLink="false">http://andygirvan.com/?p=1070</guid>
		<description><![CDATA[I recently went on a walk around the world-famous Portobello Market and got a good look at some pretty vintage, retro &#38; quirky things.]]></description>
			<content:encoded><![CDATA[<p>I recently went on a walk around the world-famous Portobello Market and got a good look at some pretty vintage, retro &amp; quirky things.</p>

<a href='http://andygirvan.com/2012/03/around-london-portobello-market/img_2196/' title='IMG_2196'><img width="150" height="150" src="http://andygirvan.com/wp-content/uploads/2012/03/IMG_2196-150x150.jpg" class="attachment-thumbnail" alt="IMG_2196" title="IMG_2196" /></a>
<a href='http://andygirvan.com/2012/03/around-london-portobello-market/img_2197/' title='IMG_2197'><img width="150" height="150" src="http://andygirvan.com/wp-content/uploads/2012/03/IMG_2197-150x150.jpg" class="attachment-thumbnail" alt="IMG_2197" title="IMG_2197" /></a>
<a href='http://andygirvan.com/2012/03/around-london-portobello-market/img_2198/' title='IMG_2198'><img width="150" height="150" src="http://andygirvan.com/wp-content/uploads/2012/03/IMG_2198-150x150.jpg" class="attachment-thumbnail" alt="IMG_2198" title="IMG_2198" /></a>
<a href='http://andygirvan.com/2012/03/around-london-portobello-market/img_2205/' title='IMG_2205'><img width="150" height="150" src="http://andygirvan.com/wp-content/uploads/2012/03/IMG_2205-150x150.jpg" class="attachment-thumbnail" alt="IMG_2205" title="IMG_2205" /></a>
<a href='http://andygirvan.com/2012/03/around-london-portobello-market/img_2206/' title='IMG_2206'><img width="150" height="150" src="http://andygirvan.com/wp-content/uploads/2012/03/IMG_2206-150x150.jpg" class="attachment-thumbnail" alt="IMG_2206" title="IMG_2206" /></a>
<a href='http://andygirvan.com/2012/03/around-london-portobello-market/img_2212/' title='IMG_2212'><img width="150" height="150" src="http://andygirvan.com/wp-content/uploads/2012/03/IMG_2212-150x150.jpg" class="attachment-thumbnail" alt="IMG_2212" title="IMG_2212" /></a>
<a href='http://andygirvan.com/2012/03/around-london-portobello-market/img_2222/' title='IMG_2222'><img width="150" height="150" src="http://andygirvan.com/wp-content/uploads/2012/03/IMG_2222-150x150.jpg" class="attachment-thumbnail" alt="IMG_2222" title="IMG_2222" /></a>
<a href='http://andygirvan.com/2012/03/around-london-portobello-market/img_2223/' title='IMG_2223'><img width="150" height="150" src="http://andygirvan.com/wp-content/uploads/2012/03/IMG_2223-150x150.jpg" class="attachment-thumbnail" alt="IMG_2223" title="IMG_2223" /></a>
<a href='http://andygirvan.com/2012/03/around-london-portobello-market/img_2207/' title='IMG_2207'><img width="150" height="150" src="http://andygirvan.com/wp-content/uploads/2012/03/IMG_2207-150x150.jpg" class="attachment-thumbnail" alt="IMG_2207" title="IMG_2207" /></a>
<a href='http://andygirvan.com/2012/03/around-london-portobello-market/img_2216/' title='IMG_2216'><img width="150" height="150" src="http://andygirvan.com/wp-content/uploads/2012/03/IMG_2216-150x150.jpg" class="attachment-thumbnail" alt="IMG_2216" title="IMG_2216" /></a>
<a href='http://andygirvan.com/2012/03/around-london-portobello-market/img_2200/' title='IMG_2200'><img width="150" height="150" src="http://andygirvan.com/wp-content/uploads/2012/03/IMG_2200-150x150.jpg" class="attachment-thumbnail" alt="IMG_2200" title="IMG_2200" /></a>

]]></content:encoded>
			<wfw:commentRss>http://andygirvan.com/2012/03/around-london-portobello-market/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Social Break Lite &#8211; Now available on the App Store</title>
		<link>http://andygirvan.com/2012/03/social-break-lite-now-available-on-the-app-store/</link>
		<comments>http://andygirvan.com/2012/03/social-break-lite-now-available-on-the-app-store/#comments</comments>
		<pubDate>Wed, 21 Mar 2012 11:49:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Game]]></category>

		<guid isPermaLink="false">http://andygirvan.com/?p=1044</guid>
		<description><![CDATA[If you&#8217;ve not tried Social Break, then now is your chance because a free, ad-supported, version called Social Break Lite is now available on the App Store. Social Break is the innovative new iOS game which blends addictive arcade action with the massively popular social network, Twitter. You&#8217;ll never have to make the break-time decision again: [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;ve not tried <a title="Social Break – the innovative &amp; fun way to check Twitter." href="http://andygirvan.com/2012/03/social-break-the-innovative-fun-way-to-check-twitter/">Social Break</a>, then now is your chance because a free, ad-supported, version called <a href="http://bit.ly/socialbreaklite" target="_blank">Social Break Lite</a> is <a href="http://bit.ly/socialbreaklite" target="_blank">now available on the App Store</a>.</p>

<a href='http://andygirvan.com/2012/03/social-break-lite-now-available-on-the-app-store/mza_8525706280738678721-320x480-75/' title='mza_8525706280738678721.320x480-75'><img width="150" height="150" src="http://andygirvan.com/wp-content/uploads/2012/03/mza_8525706280738678721.320x480-75-150x150.jpg" class="attachment-thumbnail" alt="mza_8525706280738678721.320x480-75" title="mza_8525706280738678721.320x480-75" /></a>
<a href='http://andygirvan.com/2012/03/social-break-lite-now-available-on-the-app-store/mza_3920043203538515644-320x480-75/' title='mza_3920043203538515644.320x480-75'><img width="150" height="150" src="http://andygirvan.com/wp-content/uploads/2012/03/mza_3920043203538515644.320x480-75-150x150.jpg" class="attachment-thumbnail" alt="mza_3920043203538515644.320x480-75" title="mza_3920043203538515644.320x480-75" /></a>
<a href='http://andygirvan.com/2012/03/social-break-lite-now-available-on-the-app-store/mza_1424687232443755488-320x480-75/' title='mza_1424687232443755488.320x480-75'><img width="150" height="150" src="http://andygirvan.com/wp-content/uploads/2012/03/mza_1424687232443755488.320x480-75-150x150.jpg" class="attachment-thumbnail" alt="mza_1424687232443755488.320x480-75" title="mza_1424687232443755488.320x480-75" /></a>
<a href='http://andygirvan.com/2012/03/social-break-lite-now-available-on-the-app-store/mza_4023278150431188849-320x480-75/' title='mza_4023278150431188849.320x480-75'><img width="150" height="150" src="http://andygirvan.com/wp-content/uploads/2012/03/mza_4023278150431188849.320x480-75-150x150.jpg" class="attachment-thumbnail" alt="mza_4023278150431188849.320x480-75" title="mza_4023278150431188849.320x480-75" /></a>

<p><span id="more-1044"></span></p>
<blockquote><p>
Social Break is the innovative new iOS game which blends addictive arcade action with the massively popular social network, Twitter. You&#8217;ll never have to make the break-time decision again: play a game or check Twitter?</p>
<p>Chilled/Atmospheric music and sound effects make this a perfect way to get away from the hustle and bustle and give yourself a true Social Break.</p>
<p>Game Center supported, compare your scores to your friends and others across the world.</p>
<h4>Features</h4>
<ul class="square">
<li>Classic and addictive Breakout gameplay!</li>
<li>Blocks have a chance to become readable Tweets!</li>
<li>Sliders mean you control how many Tweet blocks you might see and how long they appear on the screen &#8211; slower for the slower readers, faster for the social gaming hardcore.*</li>
<li>Positive and negative power-ups: help or hinder with resizing paddles, extra lives and double points.</li>
<li>Never miss a Tweet: read all your collected Tweets when your game is over.</li>
<li>Game Center supported, so you can compare your high scores with your friends, or the world.*</li>
<li>Chilled, atmospheric audio to really use your time to relax.</li>
<li>Offline Mode for when you&#8217;re not able to access Twitter, or if you just want to focus on beating your friends&#8217; high-scores.</li>
</ul>
<p>*Full version only.
</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://andygirvan.com/2012/03/social-break-lite-now-available-on-the-app-store/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Watch/Learn #1 &#8211; Add CocosDenshion to an ARC project (iOS)</title>
		<link>http://andygirvan.com/2012/03/add-cocosdenshion-to-an-arc-project-ios/</link>
		<comments>http://andygirvan.com/2012/03/add-cocosdenshion-to-an-arc-project-ios/#comments</comments>
		<pubDate>Tue, 20 Mar 2012 09:37:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Videos]]></category>
		<category><![CDATA[Watch/Learn]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[arc]]></category>
		<category><![CDATA[ios]]></category>
		<category><![CDATA[objective c]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[watch/learn]]></category>

		<guid isPermaLink="false">http://andygirvan.com/?p=841</guid>
		<description><![CDATA[In the first episode, I show how to add the non-ARC supported CocosDenshion library to an ARC project.]]></description>
			<content:encoded><![CDATA[<p>This new series, called Watch/Learn, is made for developers just like myself &#8211; developers who don&#8217;t want to watch 20+ minute tutorials with heavy annotation and poor quality vocals just to get the answer to what they Google&#8217;d for. These are quick, straight to the point, vocal-less videos that show the steps required to solve the issue.</p>
<p>In the first episode, I show how to add the non-ARC supported CocosDenshion library to an ARC project.</p>
<p><!-- Embed Container -->
		<div class='embed-container'>    <iframe src="http://player.vimeo.com/video/38818141" width="500" height="313" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>
		<!--//end embed-container--></p>
]]></content:encoded>
			<wfw:commentRss>http://andygirvan.com/2012/03/add-cocosdenshion-to-an-arc-project-ios/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Social Break &#8211; the innovative &amp; fun way to check Twitter.</title>
		<link>http://andygirvan.com/2012/03/social-break-the-innovative-fun-way-to-check-twitter/</link>
		<comments>http://andygirvan.com/2012/03/social-break-the-innovative-fun-way-to-check-twitter/#comments</comments>
		<pubDate>Thu, 15 Mar 2012 14:31:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Game]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[game release]]></category>

		<guid isPermaLink="false">http://andygirvan.com/?p=815</guid>
		<description><![CDATA[Social Break is the unique &#038; innovative new game for iPhone which melds addictive, retro-arcade gameplay with the social network giant, Twitter - allowing you to be socially unsocial in your downtime.]]></description>
			<content:encoded><![CDATA[<p><strong><a title="Social Break" href="http://wickedlittlegames.com/app/social-break/">Social Break</a> is the unique &amp; innovative new game for iPhone which melds addictive, retro-arcade gameplay with the social network giant, Twitter &#8211; allowing you to be socially unsocial in your downtime.</strong></p>
<p><strong></strong>
<a href='http://andygirvan.com/2012/03/social-break-the-innovative-fun-way-to-check-twitter/1-716/' title='1-716'><img width="150" height="150" src="http://andygirvan.com/wp-content/uploads/2012/03/1-716-150x150.jpg" class="attachment-thumbnail" alt="1-716" title="1-716" /></a>
<a href='http://andygirvan.com/2012/03/social-break-the-innovative-fun-way-to-check-twitter/2-661/' title='2-661'><img width="150" height="150" src="http://andygirvan.com/wp-content/uploads/2012/03/2-661-150x150.jpg" class="attachment-thumbnail" alt="2-661" title="2-661" /></a>
<a href='http://andygirvan.com/2012/03/social-break-the-innovative-fun-way-to-check-twitter/3-560/' title='3-560'><img width="150" height="150" src="http://andygirvan.com/wp-content/uploads/2012/03/3-560-150x150.jpg" class="attachment-thumbnail" alt="3-560" title="3-560" /></a>
<a href='http://andygirvan.com/2012/03/social-break-the-innovative-fun-way-to-check-twitter/4-785/' title='4-785'><img width="150" height="150" src="http://andygirvan.com/wp-content/uploads/2012/03/4-785-150x150.jpg" class="attachment-thumbnail" alt="4-785" title="4-785" /></a>
<br />
<img title="More..." src="http://wickedlittlegames.com/wp-includes/js/tinymce/plugins/wordpress/img/trans.gif" alt="" /></p>
<p>Created by London-based independent game developers, <a href="http://wickedlittlegames.com">Wicked Little Games</a>, <strong><a title="Social Break" href="http://wickedlittlegames.com/app/social-break/">Social Break</a></strong> is already making headlines with the tech savvy, <a href="thenextweb.com/apps/2012/03/02/social-break-turns-reading-your-twitter-feed-into-an-old-school-video-game/" target="_blank">TheNextWeb</a> reporting that the game &#8220;doesn&#8217;t stop being fun&#8221; and commenting that &#8220;this is the perfect app to play during any of your idle time&#8221;.</p>
<p>The magic of <strong><a title="Social Break" href="http://wickedlittlegames.com/app/social-break/">Social Break</a></strong> is the star-decorated Twitter blocks which, when hit, cause a recent tweet from your timeline to appear. The gameplay is reminiscent of the arcade classic, Breakout, and will keep you on your toes with a wide variety of positive and negative powerups &#8211; including double points, bigger paddle and reverse controls. There are also options to tweak the number of tweets shown and for how long, to suit your social reading habits.</p>
<p>iOS5-powered Game Center &amp; Twitter integration means it is easy to compete with your friends or followers around the world.</p>
<p><strong><a title="Social Break" href="http://wickedlittlegames.com/app/social-break/">Social Break</a></strong> is a brand new way of interacting with your Twitter timeline and is undoubtably the most fun. Now you will no longer have to make the tough coffee-break choice: play a game or be social?</p>
<p><em><strong><a title="Social Break" href="http://wickedlittlegames.com/app/social-break/">Social Break</a></strong> is now available on the <a href="http://itunes.apple.com/gb/app/social-break/id498187188?ls=1&amp;mt=8" target="_blank">App Store</a>. <a href="http://itunes.apple.com/us/app/social-break-lite/id508942059" target="_blank">Social Break Lite is FREE </a>on the <a href="http://itunes.apple.com/us/app/social-break-lite/id508942059" target="_blank">App Store</a> right now.</em></p>
<p><em><a href="http://wickedlittlegames.com">Wicked Little Games</a> are on <a href="http://twitter.com/wickedlilgames" target="_blank">Twitter</a> and <a href="http://facebook.com/wickedlittlegames" target="_blank">Facebook</a>. Follow us for all the latest news and updates.</em></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://andygirvan.com/2012/03/social-break-the-innovative-fun-way-to-check-twitter/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

