<?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>Alan Hietala's Core Dump</title>
	<atom:link href="http://alan.hietala.ca/feed/" rel="self" type="application/rss+xml" />
	<link>http://alan.hietala.ca</link>
	<description>A dump of my brain</description>
	<lastBuildDate>Fri, 09 Dec 2011 14:44:16 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<item>
		<title>Moved to Tumblr</title>
		<link>http://alan.hietala.ca/2011/12/moved-to-tumblr/</link>
		<comments>http://alan.hietala.ca/2011/12/moved-to-tumblr/#comments</comments>
		<pubDate>Fri, 09 Dec 2011 14:44:16 +0000</pubDate>
		<dc:creator>Alan Hietala</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://alan.hietala.ca/?p=170</guid>
		<description><![CDATA[I&#8217;ve moved most of my blogging over to tumblr. I find it supports the short bursts of thought I have and I find it easier to keep on top of updates in that format. find me over at alanhietala.tumblr.com]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve moved most of my blogging over to tumblr. I find it supports the short bursts of thought I have and I find it easier to keep on top of updates in that format.</p>
<p>find me over at <a href="http://alanhietala.tumblr.com">alanhietala.tumblr.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://alan.hietala.ca/2011/12/moved-to-tumblr/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery camouflaging javascript complexities</title>
		<link>http://alan.hietala.ca/2011/03/jquery-camouflaging-js-complexities/</link>
		<comments>http://alan.hietala.ca/2011/03/jquery-camouflaging-js-complexities/#comments</comments>
		<pubDate>Sat, 19 Mar 2011 18:52:37 +0000</pubDate>
		<dc:creator>Alan Hietala</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://alan.hietala.ca/?p=163</guid>
		<description><![CDATA[I&#8217;ve been writing javascript for awhile and when I was first introduced to jQuery it was such a great experience. Finally DOM manipulation in javascript didn&#8217;t suck. As the framework progressed it added more and more convenience that started to hide a lot of the complexity of javascript. It can be argued that hiding these [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been writing javascript for awhile and when I was first introduced to jQuery it was such a great experience. Finally DOM manipulation in javascript didn&#8217;t suck. As the framework progressed it added more and more convenience that started to hide a lot of the complexity of javascript.</p>
<p>It can be argued that hiding these complexities is a good thing, javascript gives you more than enough rope to hang yourself and shortening that rope will increase developer productivity, reduce errors and lead to an overall better development experience. Unfortunately it seems there is such a reliance on frameworks these days that many of the basics of javascript never actually are understood by many developers.</p>
<p>One of these basics is closures within a loop. This often comes up in event binding when you iterate over a list of items and attach an event to each item.</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #006600; font-style: italic;">// vanilla javascript way</span>
<span style="color: #003366; font-weight: bold;">var</span> dataItems <span style="color: #339933;">=</span> <span style="color: #009900;">&#91;</span><span style="color: #3366CC;">'a'</span><span style="color: #339933;">,</span><span style="color: #3366CC;">'b'</span><span style="color: #009900;">&#93;</span>
<span style="color: #003366; font-weight: bold;">var</span> i <span style="color: #339933;">=</span> dataItems.<span style="color: #660066;">length</span><span style="color: #339933;">;</span>
<span style="color: #000066; font-weight: bold;">while</span><span style="color: #009900;">&#40;</span>i<span style="color: #009900;">&#41;</span> <span style="color: #006600; font-style: italic;">// using descending while loop for efficiency</span>
<span style="color: #009900;">&#123;</span>
   <span style="color: #003366; font-weight: bold;">var</span> ele <span style="color: #339933;">=</span> createElement<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'div'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
   ele.<span style="color: #660066;">onclick</span>  <span style="color: #339933;">=</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span>dataItem<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
           <span style="color: #000066; font-weight: bold;">return</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span>event<span style="color: #009900;">&#41;</span>
           <span style="color: #009900;">&#123;</span>
               <span style="color: #006600; font-style: italic;">// do something with dataItem</span>
               <span style="color: #000066;">alert</span><span style="color: #009900;">&#40;</span>dataItem<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
           <span style="color: #009900;">&#125;</span>
   <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#40;</span>dataItems<span style="color: #009900;">&#91;</span>i<span style="color: #339933;">-</span><span style="color: #CC0000;">1</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    i<span style="color: #339933;">--;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>This is a standard way of creating a scope containing the variable you want to have available in the event handler that isn&#8217;t tied to the loop iteration variable. If we didn&#8217;t wrap the function to bind to the click event in another closure every alert would come up as &#8216;b&#8217;.</p>
<p>jQuery for a long period of time required you to do something similar when using their own event binding model.</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #006600; font-style: italic;">// jquery &lt; 1.4.3 way</span>
<span style="color: #003366; font-weight: bold;">var</span> dataItems <span style="color: #339933;">=</span> <span style="color: #009900;">&#91;</span><span style="color: #3366CC;">'a'</span><span style="color: #339933;">,</span><span style="color: #3366CC;">'b'</span><span style="color: #009900;">&#93;</span>
<span style="color: #003366; font-weight: bold;">var</span> i <span style="color: #339933;">=</span> dataItems.<span style="color: #660066;">length</span><span style="color: #339933;">;</span>
<span style="color: #000066; font-weight: bold;">while</span><span style="color: #009900;">&#40;</span>i<span style="color: #009900;">&#41;</span> <span style="color: #006600; font-style: italic;">// using descending while loop for efficiency</span>
<span style="color: #009900;">&#123;</span>
   <span style="color: #003366; font-weight: bold;">var</span> ele <span style="color: #339933;">=</span> $<span style="color: #009900;">&#40;</span>createElement<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'div'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
   ele.<span style="color: #660066;">bind</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span>dataItem<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
           <span style="color: #000066; font-weight: bold;">return</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span>event<span style="color: #009900;">&#41;</span>
           <span style="color: #009900;">&#123;</span>
               <span style="color: #006600; font-style: italic;">// do something with dataItem</span>
               <span style="color: #000066;">alert</span><span style="color: #009900;">&#40;</span>dataItem<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
           <span style="color: #009900;">&#125;</span>
       <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#40;</span>dataItems<span style="color: #009900;">&#91;</span>i<span style="color: #339933;">-</span><span style="color: #CC0000;">1</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span>
   <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    i<span style="color: #339933;">--;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>In the above example you still have to understand closures in order to make your code work. Developers still learn the lesson of why their closure is pointing to the last element in the array and still get that &#8220;a ha&#8221; moment.</p>
<p>In jQuery <a href='http://api.jquery.com/bind/'>1.4.3</a> they added the ability to pass data arguments in the bind function alleviating the need to create an additional closure to pass the correct arguments. This is a great feature in a framework it cleans up code significantly.</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #006600; font-style: italic;">// jquery &gt;= 1.4.3 way </span>
<span style="color: #003366; font-weight: bold;">var</span> dataItems <span style="color: #339933;">=</span> <span style="color: #009900;">&#91;</span><span style="color: #3366CC;">'a'</span><span style="color: #339933;">,</span><span style="color: #3366CC;">'b'</span><span style="color: #009900;">&#93;</span>
<span style="color: #003366; font-weight: bold;">var</span> i <span style="color: #339933;">=</span> dataItems.<span style="color: #660066;">length</span><span style="color: #339933;">;</span>
<span style="color: #000066; font-weight: bold;">while</span><span style="color: #009900;">&#40;</span>i<span style="color: #009900;">&#41;</span> <span style="color: #006600; font-style: italic;">// using descending while loop for efficiency</span>
<span style="color: #009900;">&#123;</span>
   <span style="color: #003366; font-weight: bold;">var</span> ele <span style="color: #339933;">=</span> $<span style="color: #009900;">&#40;</span>createElement<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'div'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
   <span style="color: #003366; font-weight: bold;">var</span> dataItem <span style="color: #339933;">=</span> dataItems<span style="color: #009900;">&#91;</span>i<span style="color: #339933;">-</span><span style="color: #CC0000;">1</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
   ele.<span style="color: #660066;">bind</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span><span style="color: #3366CC;">'dataItem'</span><span style="color: #339933;">:</span>dataItem<span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span>event<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
               <span style="color: #006600; font-style: italic;">// do something with dataItem</span>
               <span style="color: #000066;">alert</span><span style="color: #009900;">&#40;</span>event.<span style="color: #660066;">data</span>.<span style="color: #660066;">dataItem</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
           <span style="color: #009900;">&#125;</span> 
   <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    i<span style="color: #339933;">--;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>The downside is this method completely hides a fundamental language feature from the user. This has the potential to lead to a group of new developers that really don&#8217;t understand javascript, only jQuery. This is a bit worrying since jQuery, while being a good framework, isn&#8217;t going to be the best tool for the job everywhere. </p>
<p>The recent <a href='https://market.android.com/details?id=com.ecobee.mobile'>ecobee android application</a> is good example. It is written as a html5 application and I quickly realized the performance impact of jQuery on a mobile device is enough to degrade the experience significantly on underpowered devices (the sort of android device that you get for free with a 2 year contract). </p>
<p>Javascript isn&#8217;t going anywhere and is becoming more important in the land of cross platform mobile applications. This doesn&#8217;t mean that developers shouldn&#8217;t understand how the language they are using works under the fancy framework they&#8217;ve chosen. Maybe it doesn&#8217;t matter in 99% of cases and I&#8217;m just being pedantic but understanding closures seems like a fundamental concept in javascript and it is worrying that so many don&#8217;t understand why their event assigning loop is &#8220;broken&#8221;.</p>
]]></content:encoded>
			<wfw:commentRss>http://alan.hietala.ca/2011/03/jquery-camouflaging-js-complexities/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Froyo 2.2 UX Review</title>
		<link>http://alan.hietala.ca/2010/06/froyo-2-2-ux-review/</link>
		<comments>http://alan.hietala.ca/2010/06/froyo-2-2-ux-review/#comments</comments>
		<pubDate>Wed, 30 Jun 2010 13:40:45 +0000</pubDate>
		<dc:creator>Alan Hietala</dc:creator>
				<category><![CDATA[android]]></category>

		<guid isPermaLink="false">http://alan.hietala.ca/?p=157</guid>
		<description><![CDATA[I installed the Android Froyo 2.2 update yesterday on my nexus one and thought I would share some initial thoughts on what I like and more importantly what I don&#8217;t. I will only touch on the main UI for now. I know many of the stock apps received updates, but they don&#8217;t relate to the core OS [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://alan.hietala.ca/wp-content/uploads/2010/06/android_vector.jpg"><img class="alignleft size-thumbnail wp-image-158" title="android_vector" src="http://alan.hietala.ca/wp-content/uploads/2010/06/android_vector-150x150.jpg" alt="" width="150" height="150" /></a>I installed the Android Froyo 2.2 update yesterday on my nexus one and thought I would share some initial thoughts on what I like and more importantly what I don&#8217;t. I will only touch on the main UI for now. I know many of the stock apps received updates, but they don&#8217;t relate to the core OS which is what I want to review today.</p>
<p><span id="more-157"></span></p>
<h2>Things I like</h2>
<p>The system is much snappier. The first thing I noticed when scrolling the home screen was how it was finally smooth. I didn&#8217;t feel like the glass was resisting what I was trying to do and as a result found that i was using a lot less pressure than before on the screen.</p>
<p>This is important since our natural reaction to something &#8220;resisting&#8221; your movement is to apply more force. This might be an interesting metric to be able to analyse how much a user thinks the UI is fighting their actions.</p>
<p>The second thing I like are the UI changes adding dedicated phone and browser buttons that appear on every pane. The browser button is especially appreciated as I jump into the browser all the time.</p>
<p>Javascript performance is greatly increased. This is fantastic news as I am on the HTML5 mobile web app bandwagon and this represents a big step forward. This is one of the best changes from a platform perspective as it empowers developers to take their HTML5 apps to the next level.</p>
<p>Folders are another great addition to help keep everything organized. I dropped all my games into one folder, my food apps into another and my system admin apps in a third. This cut down on the number of icons on the home screens and freed up room for more widgets.</p>
<p>Widgets are one of the features that set android apart from iOS4 so anything that frees up home screen space is a good thing.</p>
<h2>Things I Don&#8217;t Like</h2>
<p>Froyo isn&#8217;t without its warts though. The general UX inconsistencies are still there and unsurprisingly made their way into the new folder feature.</p>
<p>The expected behaviour of all android phones is that hitting the home button on your phone brings you to the center pane of the phone with your app closed.</p>
<p>For some inexplicable reason Froyo threw this convention out the window when they were designing folders. When you hit the home button nothing happens. No tactile feedback, no going to the home screen. The phone just sits there until you decide to hit the back button. Why on earth they decided to disable the home button functionality in folders is beyond me and could have been found by a database guy who knows nothing about UX design.</p>
<p>This is my biggest gripe about android. The UX is still horribly inconsistent and until they get it together they will be a distant third compared to iOS4 and webOS. Lets hope that Matias Duarte (recently <a href="http://www.mobilecrunch.com/2010/05/27/palm-loses-their-lead-webos-designer-to-the-google-android-team-others-may-follow/">hired away</a> from palm) can beat some sense into the UX team over there because it&#8217;s still pure amateur hour.</p>
<h2>In Closing</h2>
<p>Despite the problems with android&#8217;s UX I think the Froyo 2.2 update brings many great things to the table. This release was more about getting a rock solid system out in terms of speed and smoothness. In that capacity it achieves top marks.</p>
<p>I can only hope the next pass at android fixes the horrible UX inconsistencies that still exist in the system. Android&#8217;s next giant leap forward lies solely in the hands of Matias.</p>
]]></content:encoded>
			<wfw:commentRss>http://alan.hietala.ca/2010/06/froyo-2-2-ux-review/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Infinity Pool The Human Sphere Live</title>
		<link>http://alan.hietala.ca/2010/03/infinity-pool-the-human-sphere-live/</link>
		<comments>http://alan.hietala.ca/2010/03/infinity-pool-the-human-sphere-live/#comments</comments>
		<pubDate>Mon, 15 Mar 2010 03:42:18 +0000</pubDate>
		<dc:creator>Alan Hietala</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[Ruby]]></category>

		<guid isPermaLink="false">http://alan.hietala.ca/?p=149</guid>
		<description><![CDATA[The rollout for Infinity Pool that I discussed earlier went off without a hitch. I had some great support from the community on this one and it let me delegate the most dreaded portion of the job (for me anyways) data entry. I decided to create a handy admin interface that lets Infinity Pool be [...]]]></description>
			<content:encoded><![CDATA[<p>The rollout for <a href="http://infinitypool.failedsave.com">Infinity Pool</a> that I discussed earlier went off without a hitch. I had some great support from the community on this one and it let me delegate the most dreaded portion of the job (for me anyways) data entry.</p>
<p>I decided to create a handy admin interface that lets Infinity Pool be updated without the need for a programming / SQL background. This takes a lot of the pressure off of me as there are a group of people that are able to do updates now. This is very similar to the approach I took when I was the head of <a href="/2007/12/httc-the-raid-coalition-that-could/">Horde to the Core</a>. Delegate and train those around you to take on tasks when they ask for more responsibility so you don&#8217;t end up burning out. </p>
<p>A big thank you to CserZ and Atis52 for doing a lot of the leg work and doing a lot of testing and suggesting some fantastic features to help save them time. </p>
]]></content:encoded>
			<wfw:commentRss>http://alan.hietala.ca/2010/03/infinity-pool-the-human-sphere-live/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Directions For Google Maps Updated</title>
		<link>http://alan.hietala.ca/2010/02/directions-for-google-maps-updated/</link>
		<comments>http://alan.hietala.ca/2010/02/directions-for-google-maps-updated/#comments</comments>
		<pubDate>Mon, 08 Feb 2010 15:33:20 +0000</pubDate>
		<dc:creator>Alan Hietala</dc:creator>
				<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://alan.hietala.ca/?p=143</guid>
		<description><![CDATA[Directions with Google Maps has just been updated to version 0.6. There are minor changes in this version the major one being the update for firefox 3.6. What does Directions with Google Maps do? It is an extremely simple plugin that takes any text you highlight and passes it to google maps to do a [...]]]></description>
			<content:encoded><![CDATA[<p><a href="https://addons.mozilla.org/en-US/firefox/addon/13028">Directions with Google Maps</a> has just been updated to version 0.6. There are minor changes in this version the major one being the update for firefox 3.6.</p>
<p>What does Directions with Google Maps do? It is an extremely simple plugin that takes any text you highlight and passes it to google maps to do a search. The search results open in a new tab. </p>
<p>If you find your self highlighting a business address, copying it, opening a new tab, going to maps.google.com and then pasting the address in as a search then this plugin is for you. </p>
<p>It streamlines this process to one click, a major time saver.</p>
]]></content:encoded>
			<wfw:commentRss>http://alan.hietala.ca/2010/02/directions-for-google-maps-updated/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Body Scanners Can&#8217;t Find Bomb Parts</title>
		<link>http://alan.hietala.ca/2010/01/body-scanners-cant-find-bomb-parts/</link>
		<comments>http://alan.hietala.ca/2010/01/body-scanners-cant-find-bomb-parts/#comments</comments>
		<pubDate>Fri, 22 Jan 2010 19:04:08 +0000</pubDate>
		<dc:creator>Alan Hietala</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://alan.hietala.ca/?p=140</guid>
		<description><![CDATA[Here is a body scanner in action on tv in germany. They plant various objects on a person and have them scanned. Funnily enough they find a pocket knife and a cellphone, but miss the bomb components. These things are useless wastes of money that do nothing more than invade privacy.]]></description>
			<content:encoded><![CDATA[<p>Here is a body scanner in action on tv in germany. They plant various objects on a person and have them scanned. Funnily enough they find a pocket knife and a cellphone, but miss the bomb components. These things are useless wastes of money that do nothing more than invade privacy. </p>
<p><object width="560" height="340"><param name="movie" value="http://www.youtube.com/v/nrKvweNugnQ&#038;hl=en_US&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/nrKvweNugnQ&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="340"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://alan.hietala.ca/2010/01/body-scanners-cant-find-bomb-parts/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Big Wax, So Awesome</title>
		<link>http://alan.hietala.ca/2010/01/big-wax-so-awesome/</link>
		<comments>http://alan.hietala.ca/2010/01/big-wax-so-awesome/#comments</comments>
		<pubDate>Tue, 19 Jan 2010 15:53:55 +0000</pubDate>
		<dc:creator>Alan Hietala</dc:creator>
				<category><![CDATA[music]]></category>

		<guid isPermaLink="false">http://alan.hietala.ca/?p=137</guid>
		<description><![CDATA[Big Wax captures everything that I love about hip hop. The great flows, the smart rhymes, the fantastic vibe. He brings a little bit of pharcyde style to the new school.]]></description>
			<content:encoded><![CDATA[<p>Big Wax captures everything that I love about hip hop. The great flows, the smart rhymes, the fantastic vibe. He brings a little bit of pharcyde style to the new school.</p>
<p><object width="560" height="340"><param name="movie" value="http://www.youtube.com/v/F-IKvw3-Rss&#038;hl=en_US&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/F-IKvw3-Rss&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="340"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://alan.hietala.ca/2010/01/big-wax-so-awesome/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Infinity Pool Doing Well</title>
		<link>http://alan.hietala.ca/2009/12/infinity-pool-doing-well/</link>
		<comments>http://alan.hietala.ca/2009/12/infinity-pool-doing-well/#comments</comments>
		<pubDate>Wed, 30 Dec 2009 17:03:33 +0000</pubDate>
		<dc:creator>Alan Hietala</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[infinity pool]]></category>
		<category><![CDATA[rails]]></category>

		<guid isPermaLink="false">http://alan.hietala.ca/?p=135</guid>
		<description><![CDATA[Just a quick update on one of my side projects Infinity Pool. I&#8217;ve pulled it out of beta and it is now hosting 300 accounts with over 2500 army lists for the table top game Infinity created. When I started the project I figured it would be a good way to keep my Rails skills [...]]]></description>
			<content:encoded><![CDATA[<p>Just a quick update on one of my side projects <a href="http://infinitypool.failedsave.com">Infinity Pool</a>. I&#8217;ve pulled it out of beta and it is now hosting 300 accounts with over 2500 army lists for the table top game Infinity created. When I started the project I figured it would be a good way to keep my Rails skills up to date I didn&#8217;t think it would still have many daily users this far after launch.</p>
<p>As happens with many table top games the rules are about to undergo a huge overhaul. This means much of the codebase will need to change. This will be an interesting challenge as I will need to maintain all of the current users data while adding in all of the new features that are coming due to the new armies and rules.</p>
<p>This should be pretty fun and some good experience. All I can say is I&#8217;m grateful I built out a full suite of tests for my code as having them will be essential to ensuring that things don&#8217;t break while the site is under heavy reconstruction.</p>
]]></content:encoded>
			<wfw:commentRss>http://alan.hietala.ca/2009/12/infinity-pool-doing-well/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Blog Up</title>
		<link>http://alan.hietala.ca/2009/12/new-blog-up/</link>
		<comments>http://alan.hietala.ca/2009/12/new-blog-up/#comments</comments>
		<pubDate>Wed, 09 Dec 2009 20:16:29 +0000</pubDate>
		<dc:creator>Alan Hietala</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://alan.hietala.ca/?p=133</guid>
		<description><![CDATA[I&#8217;ve created a new blog over at www.mediumhard.com. It covers all the gaming related material that I want to talk about but never really set up a platform to do it from. Should be a lot of fun, some good humour and lots of youtube videos. Check it out!]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve created a new blog over at <a href="http://www.mediumhard.com">www.mediumhard.com</a>. It covers all the gaming related material that I want to talk about but never really set up a platform to do it from. Should be a lot of fun, some good humour and lots of youtube videos. Check it out!</p>
]]></content:encoded>
			<wfw:commentRss>http://alan.hietala.ca/2009/12/new-blog-up/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>City News &#8211; all about the money</title>
		<link>http://alan.hietala.ca/2009/07/city-news-all-about-the-money/</link>
		<comments>http://alan.hietala.ca/2009/07/city-news-all-about-the-money/#comments</comments>
		<pubDate>Thu, 02 Jul 2009 18:03:33 +0000</pubDate>
		<dc:creator>Alan Hietala</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://alan.hietala.ca/?p=126</guid>
		<description><![CDATA[So there was a story on citynews today about a poor guy that was beaten into a coma. Fortunately there was a surveillance video showing someone that might have crucial evidence to help catch the guy that curb stomped this guy. What does City news do? Force you watch 30 seconds of a Dove commercial [...]]]></description>
			<content:encoded><![CDATA[<p>So there was a <a href="http://www.citynews.ca/news/news_35741.aspx">story</a> on citynews today about a poor guy that was beaten into a coma. Fortunately there was a surveillance video showing someone that might have crucial evidence to help catch the guy that curb stomped this guy.</p>
<p>What does City news do? Force you watch 30 seconds of a Dove commercial first. This is just disgusting as a 30 second ad will drive away many people that came to watch the video in order to try and help.</p>
<p>Stay Classy CityNews.</p>
]]></content:encoded>
			<wfw:commentRss>http://alan.hietala.ca/2009/07/city-news-all-about-the-money/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

