<?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"
	>

<channel>
	<title>Tim Matheson Blog - Productive Tips and More</title>
	<atom:link href="http://www.timmatheson.com/myblog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.timmatheson.com/myblog</link>
	<description></description>
	<pubDate>Sun, 17 May 2009 05:20:49 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>class_navigation_for helper</title>
		<link>http://www.timmatheson.com/myblog/2009/05/class_navigation_for-helper/</link>
		<comments>http://www.timmatheson.com/myblog/2009/05/class_navigation_for-helper/#comments</comments>
		<pubDate>Sun, 17 May 2009 05:15:23 +0000</pubDate>
		<dc:creator>Tim Matheson</dc:creator>
		
		<category><![CDATA[About Tim Matheson]]></category>

		<category><![CDATA[Cellphone Hacks]]></category>

		<category><![CDATA[Do it yourself guides]]></category>

		<category><![CDATA[Web Tools]]></category>

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

		<guid isPermaLink="false">http://www.timmatheson.com/myblog/?p=338</guid>
		<description><![CDATA[

# The css classes used are for use with the Blueprint css framework

def class_navigation_for(object = nil, options = {})
  unless object.nil?
    options = {
      :class => &#8217;span-24 class-navigation&#8217;,
    }.merge!(options)
    content_tag(:div, options) do
      content_tag(:p) do
  [...]]]></description>
		<wfw:commentRss>http://www.timmatheson.com/myblog/2009/05/class_navigation_for-helper/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Rails flash messages dried up.</title>
		<link>http://www.timmatheson.com/myblog/2009/05/rails-flash-messages-dried-up/</link>
		<comments>http://www.timmatheson.com/myblog/2009/05/rails-flash-messages-dried-up/#comments</comments>
		<pubDate>Sun, 17 May 2009 05:11:58 +0000</pubDate>
		<dc:creator>Tim Matheson</dc:creator>
		
		<category><![CDATA[Do it yourself guides]]></category>

		<guid isPermaLink="false">http://www.timmatheson.com/myblog/?p=337</guid>
		<description><![CDATA[Im working on  this so I can have less of this  in my html templates.

def render_flash(flash)
    [:notice, :warning].each do &#124;key&#124;
      if flash.is_a?(Hash) &#038;&#038; flash.has_key?(key) &#038;&#038; !flash[key].blank?
        content_tag(:span, :class => key.to_s.downcase) do
        [...]]]></description>
		<wfw:commentRss>http://www.timmatheson.com/myblog/2009/05/rails-flash-messages-dried-up/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to set your iPhone wallpaper from Safari</title>
		<link>http://www.timmatheson.com/myblog/2009/04/how-to-set-your-iphone-wallpaper-from-safari/</link>
		<comments>http://www.timmatheson.com/myblog/2009/04/how-to-set-your-iphone-wallpaper-from-safari/#comments</comments>
		<pubDate>Sat, 04 Apr 2009 19:55:54 +0000</pubDate>
		<dc:creator>Tim Matheson</dc:creator>
		
		<category><![CDATA[Do it yourself guides]]></category>

		<guid isPermaLink="false">http://www.timmatheson.com/myblog/2009/04/how-to-set-your-iphone-wallpaper-from-safari/</guid>
		<description><![CDATA[Open Safari and locate an image on the web.
Tap and hold your finger on the screen where the image
is being displayed. A menu will appear, tap save image. Press the home button on you iPhone to return to the home screen. Tap photos and select camera roll. Locate the new image(s) and select one, choose [...]]]></description>
		<wfw:commentRss>http://www.timmatheson.com/myblog/2009/04/how-to-set-your-iphone-wallpaper-from-safari/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Rails ActiveRecord::Base missing find_all_by_date_range</title>
		<link>http://www.timmatheson.com/myblog/2009/02/rails-activerecordbase-missing-find_all_by_date_range/</link>
		<comments>http://www.timmatheson.com/myblog/2009/02/rails-activerecordbase-missing-find_all_by_date_range/#comments</comments>
		<pubDate>Fri, 06 Feb 2009 17:11:29 +0000</pubDate>
		<dc:creator>Tim Matheson</dc:creator>
		
		<category><![CDATA[Just for fun]]></category>

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

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

		<category><![CDATA[Web Design Tools]]></category>

		<category><![CDATA[Web Tools]]></category>

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

		<category><![CDATA[ActiveRecord::Base]]></category>

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

		<guid isPermaLink="false">http://www.timmatheson.com/myblog/?p=333</guid>
		<description><![CDATA[Hello everyone,
A current project I am working on required finding records within a certain date range. Many other projects I have worked on also required something similar. So, I decided to create a Rails gem to handle this. The gem is available on GitHub. http://github.com/timmatheson/find-all-by-date-range/tree/master
Install

Usage:

I hope this helps anyone else needing this feature of ActiveRecord::Base.
Best [...]]]></description>
		<wfw:commentRss>http://www.timmatheson.com/myblog/2009/02/rails-activerecordbase-missing-find_all_by_date_range/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Rails JavaScript and CSS file AutoInclude Snippet</title>
		<link>http://www.timmatheson.com/myblog/2008/11/rails-javascript-and-css-file-autoinclude-snippet/</link>
		<comments>http://www.timmatheson.com/myblog/2008/11/rails-javascript-and-css-file-autoinclude-snippet/#comments</comments>
		<pubDate>Wed, 19 Nov 2008 06:26:41 +0000</pubDate>
		<dc:creator>Tim Matheson</dc:creator>
		
		<category><![CDATA[Ruby on Rails]]></category>

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

		<guid isPermaLink="false">http://www.timmatheson.com/myblog/?p=332</guid>
		<description><![CDATA[Ok so you have a Rails application and it&#8217;s growing fast. Your putting complex logic where it belongs, Your partials are DRY, and your using TDD and BDD concepts in your project. The world is yours, your code is bullet poof. Well what about those pesky JavaScript and CSS files? If you have a lot [...]]]></description>
		<wfw:commentRss>http://www.timmatheson.com/myblog/2008/11/rails-javascript-and-css-file-autoinclude-snippet/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Refactoring ruby code</title>
		<link>http://www.timmatheson.com/myblog/2008/07/refactoring-ruby-code/</link>
		<comments>http://www.timmatheson.com/myblog/2008/07/refactoring-ruby-code/#comments</comments>
		<pubDate>Sat, 12 Jul 2008 00:10:36 +0000</pubDate>
		<dc:creator>Tim Matheson</dc:creator>
		
		<category><![CDATA[Refactored Code]]></category>

		<guid isPermaLink="false">http://www.timmatheson.com/myblog/?p=331</guid>
		<description><![CDATA[I am currently working on a Rails project with a team of developers.
I did some refactoring of a helper method and thought I would share it with the world.
Maybe someone out there can benefit from this.
NOTICE: I changed the helper method name and the model[attribute] values to show a more generic method.
Before refactoring

def some_helper_method
  [...]]]></description>
		<wfw:commentRss>http://www.timmatheson.com/myblog/2008/07/refactoring-ruby-code/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Meet the Aqua Bots</title>
		<link>http://www.timmatheson.com/myblog/2008/05/meet-the-aqua-bots/</link>
		<comments>http://www.timmatheson.com/myblog/2008/05/meet-the-aqua-bots/#comments</comments>
		<pubDate>Fri, 16 May 2008 08:14:32 +0000</pubDate>
		<dc:creator>Tim Matheson</dc:creator>
		
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.timmatheson.com/2008/05/meet-the-aqua-bots/</guid>
		<description><![CDATA[
A pair of underwater robots I created.
]]></description>
		<wfw:commentRss>http://www.timmatheson.com/myblog/2008/05/meet-the-aqua-bots/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Gaffney Plumbing - Marshfield Wisconsin Plumbing Company</title>
		<link>http://www.timmatheson.com/myblog/2008/05/gaffney-plumbing-marshfield-wisconsin-plumbing-company/</link>
		<comments>http://www.timmatheson.com/myblog/2008/05/gaffney-plumbing-marshfield-wisconsin-plumbing-company/#comments</comments>
		<pubDate>Thu, 15 May 2008 08:26:44 +0000</pubDate>
		<dc:creator>Tim Matheson</dc:creator>
		
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.timmatheson.com/2008/05/gaffney-plumbing-marshfield-wisconsin-plumbing-company/</guid>
		<description><![CDATA[
]]></description>
		<wfw:commentRss>http://www.timmatheson.com/myblog/2008/05/gaffney-plumbing-marshfield-wisconsin-plumbing-company/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
