<?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>Aaron Frerichs - Nerding Out</title>
	<atom:link href="http://www.aaronfrerichs.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.aaronfrerichs.com</link>
	<description>Technology... Is there anything it can&#039;t do?</description>
	<lastBuildDate>Fri, 10 May 2013 01:28:13 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>jQuery data and JSON</title>
		<link>http://www.aaronfrerichs.com/2013/05/jquery-data-and-json/</link>
		<comments>http://www.aaronfrerichs.com/2013/05/jquery-data-and-json/#comments</comments>
		<pubDate>Fri, 10 May 2013 01:25:28 +0000</pubDate>
		<dc:creator>Aaron</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[json]]></category>

		<guid isPermaLink="false">http://www.aaronfrerichs.com/?p=273</guid>
		<description><![CDATA[jQuery is picky about the JSON that is read from in HTML5 data elements. Of course, it&#8217;s not really jQuery that&#8217;s at fault, it&#8217;s simply that the JSON spec is a lot more strict than simple javascript. In javascript, I can define an object like this: Note the lack of quotes on the key names...  <a href="http://www.aaronfrerichs.com/2013/05/jquery-data-and-json/" class="more-link" title="Read jQuery data and JSON">Read more &#187;</a>]]></description>
				<content:encoded><![CDATA[<p class="lead"><a href="http://www.aaronfrerichs.com/wp-content/uploads/jquery_logo.png"><img class="alignright size-thumbnail wp-image-280" alt="jquery_logo" src="http://www.aaronfrerichs.com/wp-content/uploads/jquery_logo-150x150.png" /></a>jQuery is picky about the JSON that is read from in HTML5 data elements. Of course, it&#8217;s not really jQuery that&#8217;s at fault, it&#8217;s simply that the JSON spec is a lot more strict than simple javascript.</p>
<p>In javascript, I can define an object like this:</p>
<pre class="brush: jscript; title: ; notranslate">var object = { look: &quot;ma&quot;, no: &quot;quotes&quot; };</pre>
<p>Note the lack of quotes on the key names in the object.</p>
<p>Since JSON is a data exchange specification, it <strong>requires </strong>quoted keys.</p>
<p>So, if you want to put JSON into a data element, you need to do this.</p>
<pre class="brush: xml; title: ; notranslate">&lt;span data-stuff='{&quot;i&quot;:&quot;need&quot;,&quot;the&quot;:&quot;quotes&quot;}'&gt;&lt;/span&gt;</pre>
<p>Here is the relevant quote from the JSON documentation:</p>
<p>&#8220;When the data attribute is an object (starts with &#8216;{&#8216;) or array (starts with &#8216;[&#8216;) then <code>jQuery.parseJSON</code> is used to parse the string; it must follow <a href="http://en.wikipedia.org/wiki/JSON#Data_types.2C_syntax_and_example">valid JSON syntax</a> <em>including quoted property names</em>.&#8221;</p>
<p><a href="http://api.jquery.com/data/">http://api.jquery.com/data/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.aaronfrerichs.com/2013/05/jquery-data-and-json/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Community Calendar API</title>
		<link>http://www.aaronfrerichs.com/2013/04/community-calendar-api/</link>
		<comments>http://www.aaronfrerichs.com/2013/04/community-calendar-api/#comments</comments>
		<pubDate>Sat, 20 Apr 2013 00:43:09 +0000</pubDate>
		<dc:creator>Aaron</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Ruby on Rails]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[github]]></category>
		<category><![CDATA[hooplanow]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[sinatra]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.aaronfrerichs.com/?p=269</guid>
		<description><![CDATA[At work, we had a hackathon and developed some sample apps that make use of our new HoopaNow API. HooplaNow is a community calendar in Iowa&#8217;s Creative Corridor. These are still works in progress, but there is a Sinatra app called simply hooplanow_api_example for you Rubyists out there, and a wordpress plugin for those of...  <a href="http://www.aaronfrerichs.com/2013/04/community-calendar-api/" class="more-link" title="Read Community Calendar API">Read more &#187;</a>]]></description>
				<content:encoded><![CDATA[<p class="lead">At work, we had a hackathon and developed some sample apps that make use of our new HoopaNow API. <a href="http://events.hooplanow.com/events/search" target="_blank">HooplaNow</a> is a community calendar in <a href="http://creativecorridor.co/" target="_blank">Iowa&#8217;s Creative Corridor</a>.</p>
<p>These are still works in progress, but there is a Sinatra app called simply <a href="https://github.com/Fusionfarm/hoopla_api_example" target="_blank">hooplanow_api_example</a> for you Rubyists out there, and a <a href="https://github.com/Fusionfarm/wp-plugin-hooplanow-events-tools" target="_blank">wordpress plugin</a> for those of you who have a wordpress blog, or want to take a peek at some PHP code that uses the API.</p>
<p>Neither is complete, but I would welcome pull requests from anyone who wants to help out.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.aaronfrerichs.com/2013/04/community-calendar-api/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Never Say WordPress When Selling a Web Design Project</title>
		<link>http://www.aaronfrerichs.com/2013/04/never-say-wordpress-when-selling-a-web-design-project/</link>
		<comments>http://www.aaronfrerichs.com/2013/04/never-say-wordpress-when-selling-a-web-design-project/#comments</comments>
		<pubDate>Sat, 20 Apr 2013 00:34:01 +0000</pubDate>
		<dc:creator>Aaron</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.aaronfrerichs.com/?p=267</guid>
		<description><![CDATA[Never Say WordPress When Selling a Web Design Project]]></description>
				<content:encoded><![CDATA[<p class="lead"><a href="http://speckyboy.com/2013/04/18/never-say-wordpress-when-selling-a-web-design-project/" target="_blank">Never Say WordPress When Selling a Web Design Project</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.aaronfrerichs.com/2013/04/never-say-wordpress-when-selling-a-web-design-project/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CoffeeScript, Jade and Stylus syntax highlighting in Sublime Text 2</title>
		<link>http://www.aaronfrerichs.com/2013/02/coffeescript-jade-and-stylus-syntax-highlighting-in-sublime-text-2/</link>
		<comments>http://www.aaronfrerichs.com/2013/02/coffeescript-jade-and-stylus-syntax-highlighting-in-sublime-text-2/#comments</comments>
		<pubDate>Tue, 19 Feb 2013 14:21:03 +0000</pubDate>
		<dc:creator>Aaron</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Ruby on Rails]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[coffeescript]]></category>
		<category><![CDATA[configuration]]></category>
		<category><![CDATA[jade]]></category>
		<category><![CDATA[packages]]></category>
		<category><![CDATA[stylus]]></category>
		<category><![CDATA[sublime text]]></category>

		<guid isPermaLink="false">http://www.aaronfrerichs.com/?p=259</guid>
		<description><![CDATA[CoffeeScript, Jade and Stylus syntax highlighting in Sublime Text 2]]></description>
				<content:encoded><![CDATA[<p class="lead"><a href="https://gist.github.com/liamdon/2467603" target="_blank">CoffeeScript, Jade and Stylus syntax highlighting in Sublime Text 2</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.aaronfrerichs.com/2013/02/coffeescript-jade-and-stylus-syntax-highlighting-in-sublime-text-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New blog theme</title>
		<link>http://www.aaronfrerichs.com/2013/02/new-blog-theme/</link>
		<comments>http://www.aaronfrerichs.com/2013/02/new-blog-theme/#comments</comments>
		<pubDate>Sat, 09 Feb 2013 02:38:12 +0000</pubDate>
		<dc:creator>Aaron</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[bootstrap]]></category>
		<category><![CDATA[bootswatch]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[twitter bootstrap]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.aaronfrerichs.com/?p=254</guid>
		<description><![CDATA[It sometimes feels as if I change themes more often than I post. Anyway, I extend many thanks to 320press and bootswatch for the new look.]]></description>
				<content:encoded><![CDATA[<p class="lead">It sometimes feels as if I change themes more often than I post. Anyway, I extend many thanks to <a href="https://github.com/320press/wordpress-bootstrap" target="_blank">320press</a> and <a href="http://bootswatch.com/" target="_blank">bootswatch</a> for the new look.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.aaronfrerichs.com/2013/02/new-blog-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Learning git made me a better svn user</title>
		<link>http://www.aaronfrerichs.com/2013/02/learning-git-made-me-a-better-svn-user/</link>
		<comments>http://www.aaronfrerichs.com/2013/02/learning-git-made-me-a-better-svn-user/#comments</comments>
		<pubDate>Sat, 02 Feb 2013 16:42:49 +0000</pubDate>
		<dc:creator>Aaron</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[branch]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[merge]]></category>
		<category><![CDATA[svn]]></category>

		<guid isPermaLink="false">http://www.aaronfrerichs.com/?p=240</guid>
		<description><![CDATA[Before learning git, I rarely created branches in svn projects. Honestly, I don&#8217;t know why. It seemed like too much work, but really that was just because I didn&#8217;t do it. Now, whenever I start a new feature, I create a branch first. Sure, it creates a branch on the svn server that may or...  <a href="http://www.aaronfrerichs.com/2013/02/learning-git-made-me-a-better-svn-user/" class="more-link" title="Read Learning git made me a better svn user">Read more &#187;</a>]]></description>
				<content:encoded><![CDATA[<p class="lead">Before learning git, I rarely created branches in svn projects. Honestly, I don&#8217;t know why. It seemed like too much work, but really that was just because I didn&#8217;t do it. Now, whenever I start a new feature, I create a branch first.</p>
<pre class="brush: bash; title: ; notranslate">svn cp {{trunk}} {{branches/blah}}</pre>
<p>Sure, it creates a branch on the svn server that may or may not go anywhere, but it&#8217;s simple to remove it, so there&#8217;s no harm. It also feels a lot safer. Even my experimental code lives on both my system and on the repository server. My commits are getting smaller and more focused as well. Previously, I would often wait until a whole feature was complete before committing. Now, I commit each individual step.</p>
<p>When I&#8217;m done, it&#8217;s simple to merge back in.</p>
<pre class="brush: bash; title: ; notranslate">svn merge -r{{start_rev}}:{{end_rev}} {{branches/blah}}</pre>
<p>But what about conflicts, right?  Git handles merging much better, but again, it&#8217;s an unfounded fear. Yes, if changes are made to trunk while you are working on the branch, you might get conflicts, but in my experience, conflicts are rare and the benefits of branching outweigh the risk.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.aaronfrerichs.com/2013/02/learning-git-made-me-a-better-svn-user/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ActiveRecord: self.field vs field</title>
		<link>http://www.aaronfrerichs.com/2013/01/activerecord-self-field-vs-field/</link>
		<comments>http://www.aaronfrerichs.com/2013/01/activerecord-self-field-vs-field/#comments</comments>
		<pubDate>Sun, 13 Jan 2013 22:01:05 +0000</pubDate>
		<dc:creator>Aaron</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Ruby on Rails]]></category>
		<category><![CDATA[ActiveRecord]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[self]]></category>

		<guid isPermaLink="false">http://www.aaronfrerichs.com/?p=208</guid>
		<description><![CDATA[TL;DR version:&#8220;self.field&#8221; is only necessary when you are assigning a new value to a field. It always confused me why it seemed like sometimes using the field name from the database failed to work in model methods that I wrote. When the method was simple, things would work fine, but then something would happen and...  <a href="http://www.aaronfrerichs.com/2013/01/activerecord-self-field-vs-field/" class="more-link" title="Read ActiveRecord: self.field vs field">Read more &#187;</a>]]></description>
				<content:encoded><![CDATA[<p class="lead">TL;DR version:<br/>&#8220;self.field&#8221; is only necessary when you are assigning a new value to a field.</p>
<p>It always confused me why it seemed like sometimes using the field name from the database failed to work in model methods that I wrote. When the method was simple, things would work fine, but then something would happen and it suddenly stopped working. I never quite put together what was going on until now. I would start out with something like this:</p>
<pre class="brush: ruby; title: ; notranslate">
# Very simple, overused, contrived example
def full_name
  &quot;#{prefix} #{first_name} #{last_name}&quot;
end
</pre>
<p>It works beautifully and looks clean. But then, I&#8217;d need to add some defaults, like so.</p>
<pre class="brush: ruby; title: ; notranslate">
def full_name
  prefix = &quot;Mr.&quot; if prefix.blank?
  first_name = &quot;First&quot; if first_name.blank?
  last_name = &quot;Last&quot; if last_name.blank?
  &quot;#{prefix} #{first_name} #{last_name}&quot;
end
</pre>
<p>At first glance, it looks right, but it&#8217;s not. It causes full_name to produce &#8220;Mr. First Last&#8221;, <strong>every</strong> time you run it. WTF? Here&#8217;s where I would usually overreach and get it horribly wrong. I know that the fields are available as &#8220;self.field&#8221;, so I make one more change.</p>
<pre class="brush: ruby; title: ; notranslate">
def full_name
  self.prefix = &quot;Mr.&quot; if self.prefix.blank?
  self.first_name = &quot;First&quot; if self.first_name.blank?
  self.last_name = &quot;Last&quot; if self.last_name.blank?
  &quot;#{self.prefix} #{self.first_name} #{self.last_name}&quot;
end
</pre>
<p>So, one WTF leads right to another. This code is horrible. It&#8217;s ugly and it feels like there should be a better answer. In this example, it&#8217;s not so bad, but what usually ends up happening is this type of code gets written in a method that is already fairly ugly, and because of a simple misunderstanding, it goes directly from bad to worse.</p>
<p>Finally having some time, and just being fed up enough, I did some searching and <a href="http://stackoverflow.com/questions/5183664/why-isnt-self-always-needed-in-ruby-rails-activerecord#5183917" target="_blank">found this</a>. It ends up being fairly easy to understand once you think about it. In ActiveRecord models, the fields are methods. The way Ruby works, writing &#8220;field = &#8221; creates a local variable instead of calling the &#8220;field=&#8221; method on self. It is the very act of assigning the field with a default that causes the issue. So, you can scale it back a little and rewrite the code like this. You only need &#8220;self.field&#8221; when assigning a new value.</p>
<pre class="brush: ruby; title: ; notranslate">
def full_name
  self.prefix = &quot;Mr.&quot; if prefix.blank?
  self.first_name = &quot;First&quot; if first_name.blank?
  self.last_name = &quot;Last&quot; if last_name.blank?
  &quot;#{prefix} #{first_name} #{last_name}&quot;
end
</pre>
<p>Much better.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.aaronfrerichs.com/2013/01/activerecord-self-field-vs-field/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MTV Follow-up fail</title>
		<link>http://www.aaronfrerichs.com/2012/09/mtv-follow-up-fail/</link>
		<comments>http://www.aaronfrerichs.com/2012/09/mtv-follow-up-fail/#comments</comments>
		<pubDate>Sun, 09 Sep 2012 20:00:45 +0000</pubDate>
		<dc:creator>Aaron</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[frameworks]]></category>
		<category><![CDATA[mtv]]></category>
		<category><![CDATA[twig]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.aaronfrerichs.com/?p=197</guid>
		<description><![CDATA[A while back, I wrote about wordpress as a framework, and how I was going to follow up in a few weeks with some thoughts on MTV, which is a project that wants to make wordpress even more framework-like. Well, &#8220;a while back&#8221; at this point is actually almost an entire year, and I have...  <a href="http://www.aaronfrerichs.com/2012/09/mtv-follow-up-fail/" class="more-link" title="Read MTV Follow-up fail">Read more &#187;</a>]]></description>
				<content:encoded><![CDATA[<p class="lead"><a href="http://www.aaronfrerichs.com/wp-content/uploads/cow-fail.jpg"><img class="alignright  wp-image-198" title="cow-fail" src="http://www.aaronfrerichs.com/wp-content/uploads/cow-fail.jpg" alt="" width="270" height="203" /></a> A while back, I wrote about <a href="http://www.aaronfrerichs.com/2011/10/wordpress-as-a-framework/">wordpress as a framework</a>, and how I was going to follow up in a few weeks with some thoughts on <a href="https://github.com/newsapps/wordpress-mtv" target="_blank">MTV</a>, which is a project that wants to make wordpress even more framework-like. Well, &#8220;a while back&#8221; at this point is actually almost an entire year, and I have yet to follow up. Fail. Getting enough time to properly review something is hard, so I&#8217;ve instead thrown together a few thoughts that can pretend to be a real review when they grow up.</p>
<p>First, let me say what I like. I love the M in MTV. Using the core models makes working with posts, users, attachments, etc, so much nicer than using the wordpress functions themselves. Because the project was so young when I first tried using it, it could be a bit frustrating to learn that something wasn&#8217;t implemented (like avatar images), but over time, that has improved.</p>
<p>I also like being able to create my own models, and MTV keeps storage a detail, so if I don&#8217;t want to mix my models into the wp_posts table (like built-in post types have you do), then I can do that.</p>
<p>I understand why it was chosen, and I like that it <strong>forces</strong> you to use better practices, but I really wish MTV would have stuck with PHP for html templates instead of going with <a href="http://twig.sensiolabs.org/" target="_blank">Twig</a>. It makes it nearly impossible to take existing themes and port them to MTV. It&#8217;s probably because I come from the Rails community where erb templates are just ruby. I&#8217;m sure having a full-featured language at your disposal in the view is exactly what the developers of MTV were trying to avoid, because it leads to misuse, but when you need it and it isn&#8217;t there, it&#8217;s can be really frustrating.</p>
<p>So, the verdict? Overall I like it. In my opinion, it still needs to mature before it&#8217;s ready for a larger audience to adopt it. I also have my own doubts that the wordpress community as a whole would ever adopt MTV or something like it. It would be for its own benefit, but the community seems to embrace its chaos rather than shun it. But that&#8217;s probably another blog post all together. It&#8217;s also one I probably will never write, as it would just be food for the trolls.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.aaronfrerichs.com/2012/09/mtv-follow-up-fail/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dogs at computers</title>
		<link>http://www.aaronfrerichs.com/2012/09/dogs-at-computers/</link>
		<comments>http://www.aaronfrerichs.com/2012/09/dogs-at-computers/#comments</comments>
		<pubDate>Sun, 09 Sep 2012 17:53:25 +0000</pubDate>
		<dc:creator>Aaron</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Ruby on Rails]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[dogs at computers]]></category>
		<category><![CDATA[newbies]]></category>
		<category><![CDATA[rails]]></category>

		<guid isPermaLink="false">http://www.aaronfrerichs.com/?p=192</guid>
		<description><![CDATA[The lightning talk at 39:00 helps make programming a lot less scary for newbies.]]></description>
				<content:encoded><![CDATA[<p class="lead">The lightning talk at <a href="http://www.youtube.com/watch?v=1UdanqXA17Q&amp;feature=player_embedded%23!&amp;ytsession=38ijWMQVpTKucsI7EAJb3fHFQqjmZheDKArAxizAhaj68njbGvTY8dnqvV9OQMUxVG8cUpCDso4QKu0Br0g8XK1Plxb4tUd4NrkpZQULarX2gMv1JE2S0uBAoRLrDHBicxvWkRn96Fu9w2Da_nsM8rBO3arUKKTCme75JJNi8g-rd1c5vnW9vAnMAMEVA7LuF8mQdG0INHuWe-h_CA0Ly0Gfv3cSw0-ovw9u9ikXK0k#">39:00</a> helps make programming a lot less scary for newbies.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.aaronfrerichs.com/2012/09/dogs-at-computers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Humble Bundle for Android 3</title>
		<link>http://www.aaronfrerichs.com/2012/08/humble-bundle-for-android-3/</link>
		<comments>http://www.aaronfrerichs.com/2012/08/humble-bundle-for-android-3/#comments</comments>
		<pubDate>Sun, 19 Aug 2012 23:21:02 +0000</pubDate>
		<dc:creator>Aaron</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.aaronfrerichs.com/?p=183</guid>
		<description><![CDATA[The Humble Bundle is awesome as always. What is there not to like about cross platform (including Linux) and DRM free games? Plus buying helps support worthy charities like EFF and Child&#8217;s Play.]]></description>
				<content:encoded><![CDATA[<p class="lead"><a href="http://bit.ly/MONBJh" target="_blank">The Humble Bundle</a> is awesome as always. What is there not to like about cross platform (including Linux) and DRM free games? Plus buying helps support worthy charities like EFF and Child&#8217;s Play.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.aaronfrerichs.com/2012/08/humble-bundle-for-android-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
