<?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; JavaScript</title>
	<atom:link href="http://www.akawebdesign.com/category/web-development/javascript/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.akawebdesign.com</link>
	<description>Longtime nerd. Rockstar developer.</description>
	<lastBuildDate>Tue, 15 May 2012 18:08:08 +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>#ThatConference: Summer Camp for Geeks</title>
		<link>http://www.akawebdesign.com/2012/05/15/thatconference-summer-camp-for-geeks/</link>
		<comments>http://www.akawebdesign.com/2012/05/15/thatconference-summer-camp-for-geeks/#comments</comments>
		<pubDate>Tue, 15 May 2012 18:08:08 +0000</pubDate>
		<dc:creator>Arthur Kay</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Sencha Touch]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.akawebdesign.com/?p=1048</guid>
		<description><![CDATA[Apparently I&#8217;ve developed some serious JavaScript credibility in the Chicago-land area. I just found out that both of my sessions were accepted for ThatConference in August! The titles of my sessions are: Sencha Touch 101: Mobile Apps Built with HTML5 &#8230; <a href="http://www.akawebdesign.com/2012/05/15/thatconference-summer-camp-for-geeks/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.akawebdesign.com/2012/05/15/thatconference-summer-camp-for-geeks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Book Review: The Node Beginner Book</title>
		<link>http://www.akawebdesign.com/2012/04/30/book-review-the-node-beginner-book/</link>
		<comments>http://www.akawebdesign.com/2012/04/30/book-review-the-node-beginner-book/#comments</comments>
		<pubDate>Mon, 30 Apr 2012 16:10:10 +0000</pubDate>
		<dc:creator>Arthur Kay</dc:creator>
				<category><![CDATA[Book/Product Reviews]]></category>
		<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://www.akawebdesign.com/?p=1037</guid>
		<description><![CDATA[One of my New Year's resolutions for 2012 was to learn more Node.js... so I did a bit of Googling for good beginner's resources, and I stumbled across The Node Beginner Book by Manuel Kiessling.

Considering the book's title, I think the content is spot-on. Developers who are looking for an introduction to Node.js will find this book to be easy to understand, full of useful examples that are expanded in each chapter, and generally enlightening. <a href="http://www.akawebdesign.com/2012/04/30/book-review-the-node-beginner-book/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.akawebdesign.com/2012/04/30/book-review-the-node-beginner-book/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JavaScript Mergesort: Top-Down vs Bottom-Up</title>
		<link>http://www.akawebdesign.com/2012/04/13/javascript-mergesort-top-down-vs-bottom-up/</link>
		<comments>http://www.akawebdesign.com/2012/04/13/javascript-mergesort-top-down-vs-bottom-up/#comments</comments>
		<pubDate>Fri, 13 Apr 2012 16:49:04 +0000</pubDate>
		<dc:creator>Arthur Kay</dc:creator>
				<category><![CDATA[Algorithms]]></category>
		<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://www.akawebdesign.com/?p=1004</guid>
		<description><![CDATA[In my continuing series on JavaScript algorithms, I thought it might be fun to examine two methods for implementing "mergesort".

Mergesort is essentially a "divide and conquer" technique, where the algorithm breaks an array into smaller pieces. Each of the small pieces is sorted and then recursively merged back together.

Mergesort is an attractive option for sorting large arrays because it is fast... and we'll look at its efficiency in a moment. However, it also has a disadvantage: the algorithm requires more memory than Selection Sort and Insertion Sort, so for systems in which memory usage must be kept low mergesort may not be a good option. <a href="http://www.akawebdesign.com/2012/04/13/javascript-mergesort-top-down-vs-bottom-up/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.akawebdesign.com/2012/04/13/javascript-mergesort-top-down-vs-bottom-up/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Thoughts on JS Unit Tests: Phantom.js vs Node.js</title>
		<link>http://www.akawebdesign.com/2012/03/21/thoughts-on-js-unit-tests-phantom-js-vs-node-js/</link>
		<comments>http://www.akawebdesign.com/2012/03/21/thoughts-on-js-unit-tests-phantom-js-vs-node-js/#comments</comments>
		<pubDate>Wed, 21 Mar 2012 15:36:19 +0000</pubDate>
		<dc:creator>Arthur Kay</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.akawebdesign.com/?p=982</guid>
		<description><![CDATA[I have written before about using the Jasmine framework for unit testing your client-side JavaScript code. If you're not writing tests, you need to start... today.

I recently started exploring the option of using Node.js to run my tests... but after spending several hours diving into the matter I wanted to share some immediate thoughts. <a href="http://www.akawebdesign.com/2012/03/21/thoughts-on-js-unit-tests-phantom-js-vs-node-js/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.akawebdesign.com/2012/03/21/thoughts-on-js-unit-tests-phantom-js-vs-node-js/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Book Review: jQuery Tools UI Library</title>
		<link>http://www.akawebdesign.com/2012/03/16/book-review-jquery-tools-ui-library/</link>
		<comments>http://www.akawebdesign.com/2012/03/16/book-review-jquery-tools-ui-library/#comments</comments>
		<pubDate>Fri, 16 Mar 2012 12:30:18 +0000</pubDate>
		<dc:creator>Arthur Kay</dc:creator>
				<category><![CDATA[Book/Product Reviews]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.akawebdesign.com/?p=963</guid>
		<description><![CDATA[jQuery Tools is a tiny (4k) standalone JavaScript framework that allows website developers to create common UI widgets without requiring the overhead of its larger jQuery cousin or a cluster of plugins.

I’m glad I was introduced to the jQuery Tools UI library, and I will probably use it when I build some upcoming websites. <a href="http://www.akawebdesign.com/2012/03/16/book-review-jquery-tools-ui-library/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.akawebdesign.com/2012/03/16/book-review-jquery-tools-ui-library/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JavaScript: Selection vs. Insertion Sort</title>
		<link>http://www.akawebdesign.com/2012/01/03/javascript-selection-vs-insertion-sort/</link>
		<comments>http://www.akawebdesign.com/2012/01/03/javascript-selection-vs-insertion-sort/#comments</comments>
		<pubDate>Tue, 03 Jan 2012 22:05:05 +0000</pubDate>
		<dc:creator>Arthur Kay</dc:creator>
				<category><![CDATA[Algorithms]]></category>
		<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://www.akawebdesign.com/?p=829</guid>
		<description><![CDATA["Selection Sort" and "Insertion Sort" are two popular sorting algorithms. If they have the same Big-O notation, which is better?

The point here is that Big-O notation, although certainly helpful, doesn't always tell us the full story. It's great to know what the worst possible performance is for our code... but we need to know how often to expect that situation. <a href="http://www.akawebdesign.com/2012/01/03/javascript-selection-vs-insertion-sort/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.akawebdesign.com/2012/01/03/javascript-selection-vs-insertion-sort/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JavaScript: Binary Search vs Linear Search</title>
		<link>http://www.akawebdesign.com/2011/12/07/javascript-binary-search-vs-linear-search/</link>
		<comments>http://www.akawebdesign.com/2011/12/07/javascript-binary-search-vs-linear-search/#comments</comments>
		<pubDate>Wed, 07 Dec 2011 21:31:31 +0000</pubDate>
		<dc:creator>Arthur Kay</dc:creator>
				<category><![CDATA[Algorithms]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.akawebdesign.com/?p=783</guid>
		<description><![CDATA[The linear search algorithm is often "good enough" for most applications. Although optimization would improve performance, the benefit might only be minimal if our data set (stored in an array) is relatively small.

But what happens to our algorithm as the data set increases in size?

I put together a short example comparing the expected (worst-case) and actual performance of these two search algorithms. <a href="http://www.akawebdesign.com/2011/12/07/javascript-binary-search-vs-linear-search/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.akawebdesign.com/2011/12/07/javascript-binary-search-vs-linear-search/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>JavaScript Encapsulation</title>
		<link>http://www.akawebdesign.com/2011/11/25/javascript-encapsulation/</link>
		<comments>http://www.akawebdesign.com/2011/11/25/javascript-encapsulation/#comments</comments>
		<pubDate>Fri, 25 Nov 2011 05:10:47 +0000</pubDate>
		<dc:creator>Arthur Kay</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.akawebdesign.com/?p=766</guid>
		<description><![CDATA[I recently had a discussion with a colleague about <strong>encapsulation</strong>. We lamented the fact that many developers cannot adequately define, describe or otherwise communicate the concept during the interview process - even at the "senior developer" level.

After our conversation, I went home and Googled "JavaScript encapsulation" just to see what came up. After seeing the search results I am not at all surprised that few JavaScript programmers really understand the concept. I didn't feel satisfied by any of the examples or definitions I found, so here's my crack at explaining things. <a href="http://www.akawebdesign.com/2011/11/25/javascript-encapsulation/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.akawebdesign.com/2011/11/25/javascript-encapsulation/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Book Review: Test Driven JavaScript Development</title>
		<link>http://www.akawebdesign.com/2011/11/03/book-review-test-driven-javascript-development/</link>
		<comments>http://www.akawebdesign.com/2011/11/03/book-review-test-driven-javascript-development/#comments</comments>
		<pubDate>Thu, 03 Nov 2011 11:45:21 +0000</pubDate>
		<dc:creator>Arthur Kay</dc:creator>
				<category><![CDATA[Book/Product Reviews]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.akawebdesign.com/?p=728</guid>
		<description><![CDATA[<em>Test Driven JavaScript Development</em> is probably the best book about JavaScript that I've read yet.

I realize that's a bold statement to make, but I challenge anyone to name another book that (1) explains fundamental JavaScript concepts as clearly, or (2) offers specific advice on how to tackle an enterprise solution in JavaScript. <a href="http://www.akawebdesign.com/2011/11/03/book-review-test-driven-javascript-development/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.akawebdesign.com/2011/11/03/book-review-test-driven-javascript-development/feed/</wfw:commentRss>
		<slash:comments>4</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>
	</channel>
</rss>

