<?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:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Mr. Matt</title>
	<atom:link href="http://matthall.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://matthall.wordpress.com</link>
	<description></description>
	<pubDate>Tue, 20 May 2008 14:31:09 +0000</pubDate>
	<generator>http://wordpress.org/?v=MU</generator>
	<language>en</language>
			<item>
		<title>Unterminated String Literal with Asset Packager</title>
		<link>http://matthall.wordpress.com/2008/05/20/unterminated-string-literal-with-asset-packager/</link>
		<comments>http://matthall.wordpress.com/2008/05/20/unterminated-string-literal-with-asset-packager/#comments</comments>
		<pubDate>Tue, 20 May 2008 14:31:09 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
		
		<category><![CDATA[Random Gubbins]]></category>

		<guid isPermaLink="false">http://matthall.wordpress.com/?p=37</guid>
		<description><![CDATA[A recent release of Bouldr threw a bit of a spanner in the works when the excellent Asset Packager began choking when attempting to create our concatenated and compressed javascript file.
It turns out that as I am developing in Windows (gah!), I need to run dos2unix in order to ensure that the js files are [...]]]></description>
		<wfw:commentRss>http://matthall.wordpress.com/2008/05/20/unterminated-string-literal-with-asset-packager/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/matthall-128.jpg" medium="image">
			<media:title type="html">Mr. Matt</media:title>
		</media:content>
	</item>
		<item>
		<title>Really Simple History (RSH) Initial URL</title>
		<link>http://matthall.wordpress.com/2008/04/07/really-simple-history-rsh-initial-url/</link>
		<comments>http://matthall.wordpress.com/2008/04/07/really-simple-history-rsh-initial-url/#comments</comments>
		<pubDate>Mon, 07 Apr 2008 17:48:57 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
		
		<category><![CDATA[Bouldr]]></category>

		<category><![CDATA[Development]]></category>

		<category><![CDATA[Google]]></category>

		<category><![CDATA[javascript]]></category>

		<category><![CDATA[really simple history]]></category>

		<category><![CDATA[rsh]]></category>

		<guid isPermaLink="false">http://matthall.wordpress.com/?p=36</guid>
		<description><![CDATA[I recently came across a small problem in RSH whereby on loading a page with a state in the url (e.g. localhost.com/test_page#test) would not trigger the history listener function on it&#8217;s initial load. To fix this, I needed to modify my window onload function to include a call to my history listener, as follows:


history_listener: function [...]]]></description>
		<wfw:commentRss>http://matthall.wordpress.com/2008/04/07/really-simple-history-rsh-initial-url/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/matthall-128.jpg" medium="image">
			<media:title type="html">Mr. Matt</media:title>
		</media:content>
	</item>
		<item>
		<title>Installing MySQL Gem - CentOS</title>
		<link>http://matthall.wordpress.com/2008/01/24/installing-mysql-gem-centos/</link>
		<comments>http://matthall.wordpress.com/2008/01/24/installing-mysql-gem-centos/#comments</comments>
		<pubDate>Thu, 24 Jan 2008 02:40:56 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
		
		<category><![CDATA[Random Gubbins]]></category>

		<guid isPermaLink="false">http://matthall.wordpress.com/2008/01/24/installing-mysql-gem-centos/</guid>
		<description><![CDATA[This one had me for a while: When attempting to install the MySQL gem on my shiny new Slicehost slice, I was getting the folowing error:


Building native extensions.  This could take a while...
ERROR:  Error installing mysql:
   ERROR: Failed to build gem native extension.

/usr/local/bin/ruby extconf.rb install mysql -- --with-mysql-include=/usr/include/mysql --with-mysql-lib=/usr/lib/mysql
checking for mysql_query() [...]]]></description>
		<wfw:commentRss>http://matthall.wordpress.com/2008/01/24/installing-mysql-gem-centos/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/matthall-128.jpg" medium="image">
			<media:title type="html">Mr. Matt</media:title>
		</media:content>
	</item>
		<item>
		<title>Stopping a submit_tag from Sending it&#8217;s Value</title>
		<link>http://matthall.wordpress.com/2007/12/12/stopping-a-submit_tag-from-sending-its-value/</link>
		<comments>http://matthall.wordpress.com/2007/12/12/stopping-a-submit_tag-from-sending-its-value/#comments</comments>
		<pubDate>Wed, 12 Dec 2007 03:12:17 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
		
		<category><![CDATA[Development]]></category>

		<category><![CDATA[Rails]]></category>

		<guid isPermaLink="false">http://matthall.wordpress.com/2007/12/12/stopping-a-submit_tag-from-sending-its-value/</guid>
		<description><![CDATA[OK, so say you have a form as follows:


&#60;% form_tag &#039;/&#039;, :method =&#62; :get do -%&#62;
&#60;p&#62;&#60;%= text_field_tag &#039;q&#039;, params[:q] &#124;&#124;= &#039;&#039; %&#62; &#60;%= submit_tag &#039;Search&#039; %&#62;&#60;/p&#62;
&#60;% end %&#62;

That form will send the contents of the text box to the page at &#8216;/&#8217;. Unfortunately, it will also send through the value of the submit button, which [...]]]></description>
		<wfw:commentRss>http://matthall.wordpress.com/2007/12/12/stopping-a-submit_tag-from-sending-its-value/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/matthall-128.jpg" medium="image">
			<media:title type="html">Mr. Matt</media:title>
		</media:content>
	</item>
		<item>
		<title>Gem Documentation Server</title>
		<link>http://matthall.wordpress.com/2007/12/06/gem-documentation-server/</link>
		<comments>http://matthall.wordpress.com/2007/12/06/gem-documentation-server/#comments</comments>
		<pubDate>Thu, 06 Dec 2007 01:01:19 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
		
		<category><![CDATA[Development]]></category>

		<category><![CDATA[ruby gems gemserver]]></category>

		<guid isPermaLink="false">http://matthall.wordpress.com/2007/12/06/gem-documentation-server/</guid>
		<description><![CDATA[Just a quick tip I recently came across:
If you want to see the docs for any of the gems installed on your dev machine, type the following in the command line&#8230;


gem_server

&#8230;and then browse over to http://localhost:8808/!
       ]]></description>
		<wfw:commentRss>http://matthall.wordpress.com/2007/12/06/gem-documentation-server/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/matthall-128.jpg" medium="image">
			<media:title type="html">Mr. Matt</media:title>
		</media:content>
	</item>
		<item>
		<title>Rails 2.0 is Almost Here - Lean About It!</title>
		<link>http://matthall.wordpress.com/2007/12/04/rails-20-is-almost-here-lean-about-it/</link>
		<comments>http://matthall.wordpress.com/2007/12/04/rails-20-is-almost-here-lean-about-it/#comments</comments>
		<pubDate>Tue, 04 Dec 2007 02:21:15 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
		
		<category><![CDATA[Random Gubbins]]></category>

		<guid isPermaLink="false">http://matthall.wordpress.com/2007/12/04/rails-20-is-almost-here-lean-about-it/</guid>
		<description><![CDATA[Railscasts are a Rails developers wet-dream. 
Since Ryan created the site, it has been a fount of knowledge for anyone wishing to learn about the latest and greatest tips and tricks. To make things even better, they are free, though PeepCode is also very much worth a look for those of us wanting to glean [...]]]></description>
		<wfw:commentRss>http://matthall.wordpress.com/2007/12/04/rails-20-is-almost-here-lean-about-it/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/matthall-128.jpg" medium="image">
			<media:title type="html">Mr. Matt</media:title>
		</media:content>
	</item>
		<item>
		<title>Browser History in Web Apps</title>
		<link>http://matthall.wordpress.com/2007/12/03/browser-history-in-web-apps/</link>
		<comments>http://matthall.wordpress.com/2007/12/03/browser-history-in-web-apps/#comments</comments>
		<pubDate>Mon, 03 Dec 2007 19:26:48 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
		
		<category><![CDATA[Bouldr]]></category>

		<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://matthall.wordpress.com/2007/12/03/browser-history-in-web-apps/</guid>
		<description><![CDATA[Given that the back button has been around for many years, and users have grown accustomed to it&#8217;s use, it&#8217;s a shame to see so many web applications neglecting this feature. As an example, I&#8217;ll pick on Lightbox, a tool that I like, yet one that is flawed in it&#8217;s disregard for the back button. [...]]]></description>
		<wfw:commentRss>http://matthall.wordpress.com/2007/12/03/browser-history-in-web-apps/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/matthall-128.jpg" medium="image">
			<media:title type="html">Mr. Matt</media:title>
		</media:content>
	</item>
		<item>
		<title>Add your Business to Facebook (for Free)!</title>
		<link>http://matthall.wordpress.com/2007/11/28/add-your-business-to-facebook-for-free/</link>
		<comments>http://matthall.wordpress.com/2007/11/28/add-your-business-to-facebook-for-free/#comments</comments>
		<pubDate>Wed, 28 Nov 2007 17:11:31 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
		
		<category><![CDATA[Business]]></category>

		<category><![CDATA[facebook]]></category>

		<category><![CDATA[marketing]]></category>

		<category><![CDATA[promotion]]></category>

		<guid isPermaLink="false">http://matthall.wordpress.com/2007/11/28/add-your-business-to-facebook-for-free/</guid>
		<description><![CDATA[From a business standpoint, Facebook&#8217;s killer feature is it&#8217;s Social Network, which gives even none-techies the ability to share nuggets of information found both on Facebook and the web at large with their friends.
What I didn&#8217;t realise until recently is that Facebook also allows businesses to set up pages inside the walled garden, that gives [...]]]></description>
		<wfw:commentRss>http://matthall.wordpress.com/2007/11/28/add-your-business-to-facebook-for-free/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/matthall-128.jpg" medium="image">
			<media:title type="html">Mr. Matt</media:title>
		</media:content>
	</item>
		<item>
		<title>Rails 2 Mysql Error - A Gotcha that Got Us</title>
		<link>http://matthall.wordpress.com/2007/11/23/rails-2-mysql-error-a-gotcha-that-got-us/</link>
		<comments>http://matthall.wordpress.com/2007/11/23/rails-2-mysql-error-a-gotcha-that-got-us/#comments</comments>
		<pubDate>Fri, 23 Nov 2007 16:52:53 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
		
		<category><![CDATA[Random Gubbins]]></category>

		<guid isPermaLink="false">http://matthall.wordpress.com/2007/11/23/rails-2-mysql-error-a-gotcha-that-got-us/</guid>
		<description><![CDATA[Symptoms

rake wouldn&#8217;t work
script/server wouldn&#8217;t run



# Logfile created on Wed Nov 21 13:39:25 +0000 2007 by /
DEPRECATION WARNING: observer is deprecated and will be removed from Rails 2.0  See http://www.rubyonrails.org/deprecation for details. (called from ./script/../config/../app/controllers/account_controller.rb:3)
DEPRECATION WARNING: depend_on is deprecated and will be removed from Rails 2.0  See http://www.rubyonrails.org/deprecation for details. (called from observer_without_deprecation at [...]]]></description>
		<wfw:commentRss>http://matthall.wordpress.com/2007/11/23/rails-2-mysql-error-a-gotcha-that-got-us/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/matthall-128.jpg" medium="image">
			<media:title type="html">Mr. Matt</media:title>
		</media:content>
	</item>
		<item>
		<title>Mike Robertson Sends The Eiffel Tower</title>
		<link>http://matthall.wordpress.com/2007/11/22/mike-robertson-sends-the-eiffel-tower/</link>
		<comments>http://matthall.wordpress.com/2007/11/22/mike-robertson-sends-the-eiffel-tower/#comments</comments>
		<pubDate>Thu, 22 Nov 2007 18:51:20 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
		
		<category><![CDATA[Random Gubbins]]></category>

		<guid isPermaLink="false">http://matthall.wordpress.com/2007/11/22/mike-robertson-sends-the-eiffel-tower/</guid>
		<description><![CDATA[
In protest at Total&#8217;s involvement in Burma, Mike Robertson solos the Eiffel Tower. (via)
       ]]></description>
		<wfw:commentRss>http://matthall.wordpress.com/2007/11/22/mike-robertson-sends-the-eiffel-tower/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/matthall-128.jpg" medium="image">
			<media:title type="html">Mr. Matt</media:title>
		</media:content>

		<media:content url="http://img.youtube.com/vi/p4bjmXFcJsc/2.jpg" medium="image" />
	</item>
	</channel>
</rss>