<?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>aKa Web Design &#187; AJAX</title>
	<atom:link href="http://www.akawebdesign.com/category/ajax/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.akawebdesign.com</link>
	<description>Longtime nerd. Rockstar developer.</description>
	<lastBuildDate>Tue, 31 Jan 2012 02:23:00 +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>Pong: Built with Sencha Touch</title>
		<link>http://www.akawebdesign.com/2012/01/31/pong-built-with-sencha-touch/</link>
		<comments>http://www.akawebdesign.com/2012/01/31/pong-built-with-sencha-touch/#comments</comments>
		<pubDate>Tue, 31 Jan 2012 02:23:00 +0000</pubDate>
		<dc:creator>Arthur Kay</dc:creator>
				<category><![CDATA[Algorithms]]></category>
		<category><![CDATA[Sencha Touch]]></category>

		<guid isPermaLink="false">http://www.akawebdesign.com/?p=933</guid>
		<description><![CDATA[How many of you played Pong when you were little? I'm old enough to remember playing it in the arcade and on my Atari 2600. I'm such a nerd that I decided to recreate Pong using Sencha Touch!

I did some searching on the interwebs to find the original Pong AI algorithm... but it seems like everyone and their mother has a different take on it. I'd love to hear your thoughts. How can I improve this game? <a href="http://www.akawebdesign.com/2012/01/31/pong-built-with-sencha-touch/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.akawebdesign.com/2012/01/31/pong-built-with-sencha-touch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Automating JavaScript Unit Tests with Git</title>
		<link>http://www.akawebdesign.com/2012/01/23/automating-javascript-unit-tests-with-git/</link>
		<comments>http://www.akawebdesign.com/2012/01/23/automating-javascript-unit-tests-with-git/#comments</comments>
		<pubDate>Mon, 23 Jan 2012 16:07:17 +0000</pubDate>
		<dc:creator>Arthur Kay</dc:creator>
				<category><![CDATA[Sencha Touch]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.akawebdesign.com/?p=913</guid>
		<description><![CDATA[How many of you JavaScript developers out there write unit tests?

The key to unit tests is that they're run <strong>EVERY TIME</strong> you touch your code... otherwise your tests aren't going to do anything (obviously). If your tests don't do anything, there's no point in having them.

I'd like to share an example app in which I create a bash script that runs my unit tests via PhantomJS. By utilizing a Git pre-commit hook, I ensure my unit tests are run <strong>EVERY TIME</strong> I touch my code, and (best of all) it won't allow me to commit code that doesn't pass my tests! <a href="http://www.akawebdesign.com/2012/01/23/automating-javascript-unit-tests-with-git/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.akawebdesign.com/2012/01/23/automating-javascript-unit-tests-with-git/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sencha SDK Tools &#8211; JSBuilder</title>
		<link>http://www.akawebdesign.com/2011/11/17/sencha-sdk-tools-jsbuilder/</link>
		<comments>http://www.akawebdesign.com/2011/11/17/sencha-sdk-tools-jsbuilder/#comments</comments>
		<pubDate>Thu, 17 Nov 2011 21:20:54 +0000</pubDate>
		<dc:creator>Arthur Kay</dc:creator>
				<category><![CDATA[ExtJs]]></category>
		<category><![CDATA[Sencha Touch]]></category>

		<guid isPermaLink="false">http://www.akawebdesign.com/?p=758</guid>
		<description><![CDATA[I've been working onsite with a client for the past few weeks, and I was recently asked to implement a minification tool for our JavaScript files. Naturally, I turned to Sencha for the answer... although I hadn't actually used the SDK tools before.

I'm detailing my experience using the Sencha SDK tools on Mac OSX for posterity - because inevitably I'm going to need to re-reference this. Hopefully it helps someone else, as the documentation for the SDK tools is (currently) a bit sparse. <a href="http://www.akawebdesign.com/2011/11/17/sencha-sdk-tools-jsbuilder/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.akawebdesign.com/2011/11/17/sencha-sdk-tools-jsbuilder/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Code Reviews: Why Your Code Sucks</title>
		<link>http://www.akawebdesign.com/2011/10/18/code-reviews-why-your-code-sucks/</link>
		<comments>http://www.akawebdesign.com/2011/10/18/code-reviews-why-your-code-sucks/#comments</comments>
		<pubDate>Tue, 18 Oct 2011 15:07:23 +0000</pubDate>
		<dc:creator>Arthur Kay</dc:creator>
				<category><![CDATA[ExtJs]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Sencha Touch]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.akawebdesign.com/?p=721</guid>
		<description><![CDATA[Over the past few years I've been asked to perform <strong>Code Reviews</strong> on many web applications, often projects utilizing ExtJS or Sencha Touch.

I always enjoy peeking into the thought process behind an application because you never know when you're going to learn something useful. As someone who takes an immense amount of pride in my profession, I strongly believe that education should never stop because <strong>someone will always do something better than you</strong>. At the very least, reading someone else's code will trigger ideas of your own.

That being said, code reviews are sometimes fun... <em>but more often frustrating</em>. <a href="http://www.akawebdesign.com/2011/10/18/code-reviews-why-your-code-sucks/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.akawebdesign.com/2011/10/18/code-reviews-why-your-code-sucks/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Mobile App Hackathon Chicago #mobileappchi</title>
		<link>http://www.akawebdesign.com/2011/08/28/mobile-app-hackathon-chicago-mobileappchi/</link>
		<comments>http://www.akawebdesign.com/2011/08/28/mobile-app-hackathon-chicago-mobileappchi/#comments</comments>
		<pubDate>Sun, 28 Aug 2011 02:06:48 +0000</pubDate>
		<dc:creator>Arthur Kay</dc:creator>
				<category><![CDATA[Chicago Ajax Developers]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Sencha Touch]]></category>

		<guid isPermaLink="false">http://www.akawebdesign.com/?p=676</guid>
		<description><![CDATA[I spent all day today at the AT&#038;T Mobile App Hackathon in Chicago helping developers build some really cool applications using Sencha Touch (among other technologies). Here&#8217;s a recap of what you missed. The day started with introductions from the &#8230; <a href="http://www.akawebdesign.com/2011/08/28/mobile-app-hackathon-chicago-mobileappchi/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.akawebdesign.com/2011/08/28/mobile-app-hackathon-chicago-mobileappchi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>aKa Web Design &#8211; Now with Turbo!</title>
		<link>http://www.akawebdesign.com/2011/07/01/aka-web-design-now-with-turbo/</link>
		<comments>http://www.akawebdesign.com/2011/07/01/aka-web-design-now-with-turbo/#comments</comments>
		<pubDate>Fri, 01 Jul 2011 16:14:06 +0000</pubDate>
		<dc:creator>Arthur Kay</dc:creator>
				<category><![CDATA[AJAX]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.akawebdesign.com/?p=672</guid>
		<description><![CDATA[Last night at the Sencha Chicago User Group, I gave a presentation titled AJAX Communication in Sencha Touch and ExtJS. The premise of the talk was that all websites (and web applications) should be optimized to be as fast as &#8230; <a href="http://www.akawebdesign.com/2011/07/01/aka-web-design-now-with-turbo/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.akawebdesign.com/2011/07/01/aka-web-design-now-with-turbo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Chicago Metro App Contest</title>
		<link>http://www.akawebdesign.com/2011/06/24/chicago-metro-app-contest/</link>
		<comments>http://www.akawebdesign.com/2011/06/24/chicago-metro-app-contest/#comments</comments>
		<pubDate>Fri, 24 Jun 2011 15:58:09 +0000</pubDate>
		<dc:creator>Arthur Kay</dc:creator>
				<category><![CDATA[AJAX]]></category>
		<category><![CDATA[Chicago Ajax Developers]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.akawebdesign.com/?p=655</guid>
		<description><![CDATA[I was reading the RedEye, a free local daily newspaper, on my train ride to work this morning when I stumbled across an interesting story. The city of Chicago is holding an Apps for Metro Chicago contest to celebrate the &#8230; <a href="http://www.akawebdesign.com/2011/06/24/chicago-metro-app-contest/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.akawebdesign.com/2011/06/24/chicago-metro-app-contest/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sencha Touch &#8211; Prize Patrol App</title>
		<link>http://www.akawebdesign.com/2011/05/18/sencha-touch-prize-patrol-app/</link>
		<comments>http://www.akawebdesign.com/2011/05/18/sencha-touch-prize-patrol-app/#comments</comments>
		<pubDate>Wed, 18 May 2011 20:22:13 +0000</pubDate>
		<dc:creator>Arthur Kay</dc:creator>
				<category><![CDATA[Sencha Touch]]></category>

		<guid isPermaLink="false">http://www.akawebdesign.com/?p=645</guid>
		<description><![CDATA[Ready for yet another quasi-useful mobile app?

Today I am introducing the <a href="http://www.akawebdesign.com/sencha-touch/prize-patrol/">Prize Patrol</a>, a small application built on Sencha Touch! <a href="http://www.akawebdesign.com/2011/05/18/sencha-touch-prize-patrol-app/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.akawebdesign.com/2011/05/18/sencha-touch-prize-patrol-app/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Event-Driven Architecture</title>
		<link>http://www.akawebdesign.com/2011/03/15/event-driven-architecture/</link>
		<comments>http://www.akawebdesign.com/2011/03/15/event-driven-architecture/#comments</comments>
		<pubDate>Tue, 15 Mar 2011 11:24:57 +0000</pubDate>
		<dc:creator>Arthur Kay</dc:creator>
				<category><![CDATA[ExtJs]]></category>
		<category><![CDATA[Sencha Touch]]></category>

		<guid isPermaLink="false">http://www.akawebdesign.com/?p=622</guid>
		<description><![CDATA[Events are the glue that binds web applications together. Users click on one thing, expecting that something else will happen. This cause/effect relationship is the key to understanding how to structure an advanced web application built on ExtJS or Sencha &#8230; <a href="http://www.akawebdesign.com/2011/03/15/event-driven-architecture/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.akawebdesign.com/2011/03/15/event-driven-architecture/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sencha Chicago User Group</title>
		<link>http://www.akawebdesign.com/2011/02/22/sencha-chicago-user-group/</link>
		<comments>http://www.akawebdesign.com/2011/02/22/sencha-chicago-user-group/#comments</comments>
		<pubDate>Tue, 22 Feb 2011 18:34:02 +0000</pubDate>
		<dc:creator>Arthur Kay</dc:creator>
				<category><![CDATA[Chicago Ajax Developers]]></category>
		<category><![CDATA[ExtJs]]></category>
		<category><![CDATA[Sencha Touch]]></category>

		<guid isPermaLink="false">http://blog.akawebdesign.com/?p=589</guid>
		<description><![CDATA[A long, long time ago I tried to get an ExtJS group started in the Chicago area. We had one meeting, but due to a lack of support the group never really got moving. I have recently decided to get &#8230; <a href="http://www.akawebdesign.com/2011/02/22/sencha-chicago-user-group/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.akawebdesign.com/2011/02/22/sencha-chicago-user-group/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

