<?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>Burm.net</title>
	<atom:link href="http://burm.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://burm.net</link>
	<description>John Burmeister's Blog</description>
	<pubDate>Wed, 08 Oct 2008 05:49:43 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
	<language>en</language>
			<item>
		<title>Acts As Taggable on Steroids Ruby On Rails Plugin With Paginate</title>
		<link>http://burm.net/2008/10/08/acts-as-taggable-on-steroids-ruby-on-rails-plugin-with-paginate/</link>
		<comments>http://burm.net/2008/10/08/acts-as-taggable-on-steroids-ruby-on-rails-plugin-with-paginate/#comments</comments>
		<pubDate>Wed, 08 Oct 2008 05:48:33 +0000</pubDate>
		<dc:creator>John Burmeister</dc:creator>
		
		<category><![CDATA[My Projects]]></category>

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

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

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

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

		<guid isPermaLink="false">http://burm.net/?p=133</guid>
		<description><![CDATA[Acts As Taggable On Steroids is a great plugin for Rails that makes adding tags to your application quick and easy.  Check it out on github here => http://github.com/mattetti/acts_as_taggable_on_steroids/tree/master
I threw this post together with some notes that I took along the way when setting up the plugin for use. 
Installation:

script/plugin install http://svn.viney.net.nz/things/rails/plugins/acts_as_taggable_on_steroids

Setup
Setup your migration [...]]]></description>
			<content:encoded><![CDATA[<p>Acts As Taggable On Steroids is a great plugin for Rails that makes adding tags to your application quick and easy.  Check it out on github here => <a href="http://github.com/mattetti/acts_as_taggable_on_steroids/tree/master">http://github.com/mattetti/acts_as_taggable_on_steroids/tree/master</a></p>
<p>I threw this post together with some notes that I took along the way when setting up the plugin for use. </p>
<p><strong>Installation:</strong></p>

<div class="wp_syntax"><div class="code"><pre class="rails rails" style="font-family:monospace;">script<span style="color:#006600; font-weight:bold;">/</span>plugin install http:<span style="color:#006600; font-weight:bold;">//</span>svn.<span style="color:#9900CC;">viney</span>.<span style="color:#9900CC;">net</span>.<span style="color:#9900CC;">nz</span><span style="color:#006600; font-weight:bold;">/</span>things<span style="color:#006600; font-weight:bold;">/</span>rails<span style="color:#006600; font-weight:bold;">/</span>plugins<span style="color:#006600; font-weight:bold;">/</span>acts_as_taggable_on_steroids</pre></div></div>

<p><strong>Setup</strong></p>
<p>Setup your migration by running the below:</p>
<pre lang ="rails">
ruby script/generate acts_as_taggable_migration
rake db:migrate
</pre>
<p>Add the acts_as_taggable to your model, in my case its the Events model&#8230;</p>

<div class="wp_syntax"><div class="code"><pre class="rails rails" style="font-family:monospace;"><span style="color:#9966CC; font-weight:bold;">class</span> Event <span style="color:#006600; font-weight:bold;">&lt;</span> <span style="color:#6666ff; font-weight:bold;">ActiveRecord::Base</span>
<span style="color:#008000; font-style:italic;"># acts as taggable on roids</span>
acts_as_taggable</pre></div></div>

<p>Now I needed to add a way to allow tags to be added to Events, in my form for my Event I added the following:</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;p&gt;
  &lt;%= f.label 'Tag List (Delimiter = ,)' %&gt;&lt;br /&gt;
  &lt;%= f.text_field :tag_list %&gt;
&lt;/p&gt;</pre></div></div>

<p>To view the tags associated this a Event on the Show page, along with linking to the actual tag to search for other events tagged with the same item, I added the following:</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;p&gt;&lt;strong&gt;This event was tagged with&lt;/strong&gt;: &lt;% for tag in @event.tags %&gt; 
&lt;%= link_to tag.name, events_path(:view =&gt;'tag', :tag =&gt; tag.name) %&gt;&lt;% end %&gt;
&lt;/p&gt;</pre></div></div>

<p><strong>Tag Clouds </strong></p>
<p>In order to use the plugin&#8217;s build in tag cloud functionality you need to add the helper to your application helper by doing the following:</p>

<div class="wp_syntax"><div class="code"><pre class="rails rails" style="font-family:monospace;">  <span style="color:#9966CC; font-weight:bold;">module</span> ApplicationHelper
    <span style="color:#9966CC; font-weight:bold;">include</span> TagsHelper
  <span style="color:#9966CC; font-weight:bold;">end</span></pre></div></div>

<p>In your controller where you are planning on using your tag cloud add the below, this will grab the counts of all your tags so the helper can generate your cloud. Again in my case I am putting this in my Events controller.</p>

<div class="wp_syntax"><div class="code"><pre class="rails rails" style="font-family:monospace;"><span style="color:#0066ff; font-weight:bold;">@tags</span> = Event.<span style="color:#9900CC;">tag_counts</span></pre></div></div>

<p>Now you use the following where you wish to show your views:</p>

<div class="wp_syntax"><div class="code"><pre class="rails rails" style="font-family:monospace;"><span style="color:#006600; font-weight:bold;">&lt;%</span> tag_cloud <span style="color:#0066ff; font-weight:bold;">@tags</span>, <span style="color:#006600; font-weight:bold;">%</span>w<span style="color:#006600; font-weight:bold;">&#40;</span>tag1 tag2 tag3 tag4<span style="color:#006600; font-weight:bold;">&#41;</span> <span style="color:#9966CC; font-weight:bold;">do</span> |tag, css_class| <span style="color:#006600; font-weight:bold;">%&gt;</span>
    <span style="color:#006600; font-weight:bold;">&lt;%</span>= <span style="color:#5A0A0A; font-weight:bold;">link_to</span> <span style="color:#5A0A0A; font-weight:bold;">tag</span>.<span style="color:#9900CC;">name</span>, <span style="color:#006600; font-weight:bold;">&#123;</span> <span style="color:#ff3333; font-weight:bold;">:action</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#ff3333; font-weight:bold;">:tag</span>, <span style="color:#ff3333; font-weight:bold;">:id</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#5A0A0A; font-weight:bold;">tag</span>.<span style="color:#9900CC;">name</span> <span style="color:#006600; font-weight:bold;">&#125;</span>, <span style="color:#ff3333; font-weight:bold;">:class</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> css_class <span style="color:#006600; font-weight:bold;">%&gt;</span>
  <span style="color:#006600; font-weight:bold;">&lt;%</span> <span style="color:#9966CC; font-weight:bold;">end</span> <span style="color:#006600; font-weight:bold;">%&gt;</span></pre></div></div>

<p>In your main CSS file you should add something to match the tags we specified above, this sets your font sizes for the cloud display generated by the helper&#8230;</p>

<div class="wp_syntax"><div class="code"><pre class="css css" style="font-family:monospace;">  <span style="color: #6666ff;">.tag1</span> <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">font-size</span><span style="color: #00AA00;">:</span> <span style="color: #933;">1.0em</span>; <span style="color: #00AA00;">&#125;</span>
  <span style="color: #6666ff;">.tag2</span> <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">font-size</span><span style="color: #00AA00;">:</span> <span style="color: #933;">1.6em</span>; <span style="color: #00AA00;">&#125;</span>
  <span style="color: #6666ff;">.tag3</span> <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">font-size</span><span style="color: #00AA00;">:</span> <span style="color: #933;">2.7em</span>; <span style="color: #00AA00;">&#125;</span>
  <span style="color: #6666ff;">.tag4</span> <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">font-size</span><span style="color: #00AA00;">:</span> <span style="color: #933;">3.8em</span>; <span style="color: #00AA00;">&#125;</span></pre></div></div>

<p><strong>Tag Clouds with Paginate Example</strong></p>
<p>Here I am passing the page and tag to my events model to find all events tagged with that tag, and then use the results of that query and passing it onto paginate.</p>

<div class="wp_syntax"><div class="code"><pre class="rails rails" style="font-family:monospace;"><span style="color:#9966CC; font-weight:bold;">def</span> <span style="color:#0000FF; font-weight:bold;">self</span>.<span style="color:#9900CC;">tag_event_list</span><span style="color:#006600; font-weight:bold;">&#40;</span>page, <span style="color:#5A0A0A; font-weight:bold;">tag</span><span style="color:#006600; font-weight:bold;">&#41;</span>
&nbsp;
 options = Event.<span style="color:#9900CC;">find_options_for_find_tagged_with</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#5A0A0A; font-weight:bold;">tag</span><span style="color:#006600; font-weight:bold;">&#41;</span>.<span style="color:#9900CC;">merge</span> <span style="color:#ff3333; font-weight:bold;">:page</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> page, <span style="color:#ff3333; font-weight:bold;">:per_page</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#006666;">10</span>, <span style="color:#ff3333; font-weight:bold;">:order</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#996600;">'date DESC'</span> 
 <span style="color:#5A0A0A; font-weight:bold;">paginate</span><span style="color:#006600; font-weight:bold;">&#40;</span>options<span style="color:#006600; font-weight:bold;">&#41;</span>
&nbsp;
<span style="color:#9966CC; font-weight:bold;">end</span></pre></div></div>

<p>Other Notes:</p>
<p>I added the following to my environment.rb file so that the unused tags get destroyed if they are no longer in use by any events.</p>

<div class="wp_syntax"><div class="code"><pre class="rails rails" style="font-family:monospace;"><span style="color:#008000; font-style:italic;"># automatically remove dead tags</span>
Tag.<span style="color:#9900CC;">destroy_unused</span> = <span style="color:#0000FF; font-weight:bold;">true</span></pre></div></div>

<p>For more help check out the read me here: <a href="http://github.com/mattetti/acts_as_taggable_on_steroids/tree/master">http://github.com/mattetti/acts_as_taggable_on_steroids/tree/maste</a>r</p>
]]></content:encoded>
			<wfw:commentRss>http://burm.net/2008/10/08/acts-as-taggable-on-steroids-ruby-on-rails-plugin-with-paginate/feed/</wfw:commentRss>
		</item>
		<item>
		<title>The Ruby On Rails Paperclip Plugin Tutorial - Easy Image Attachments</title>
		<link>http://burm.net/2008/10/07/the-ruby-on-rails-paperclip-plugin-tutorial-easy-image-attachments-ror/</link>
		<comments>http://burm.net/2008/10/07/the-ruby-on-rails-paperclip-plugin-tutorial-easy-image-attachments-ror/#comments</comments>
		<pubDate>Wed, 08 Oct 2008 01:00:38 +0000</pubDate>
		<dc:creator>John Burmeister</dc:creator>
		
		<category><![CDATA[My Projects]]></category>

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

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

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

		<guid isPermaLink="false">http://burm.net/?p=127</guid>
		<description><![CDATA[I used Paperclip for my latest project, and I figured I would give a brief tutorial on how to use it.
Paperclip - Paperclip is intended as an easy file attachment library for ActiveRecord. The intent behind it was to keep setup as easy as possible and to treat files as much like other attributes as [...]]]></description>
			<content:encoded><![CDATA[<p>I used Paperclip for my latest project, and I figured I would give a brief tutorial on how to use it.</p>
<p><strong>Paperclip</strong> - Paperclip is intended as an easy file attachment library for ActiveRecord. The intent behind it was to keep setup as easy as possible and to treat files as much like other attributes as possible. <a href="http://github.com/thoughtbot/paperclip/tree/master">http://github.com/thoughtbot/paperclip/tree/master</a></p>
<p>In my case, I wanted to allow an attachment to an Event, which will have one photo.</p>
<p>To install:</p>

<div class="wp_syntax"><div class="code"><pre class="ruby ruby" style="font-family:monospace;">script<span style="color:#006600; font-weight:bold;">/</span>install git:<span style="color:#006600; font-weight:bold;">//</span>github.<span style="color:#9900CC;">com</span><span style="color:#006600; font-weight:bold;">/</span>thoughtbot<span style="color:#006600; font-weight:bold;">/</span>paperclip.<span style="color:#9900CC;">git</span></pre></div></div>

<p>Create your migration, again in my case I was adding the images to my Events model / DB, so I did the following:</p>

<div class="wp_syntax"><div class="code"><pre class="rails rails" style="font-family:monospace;">script<span style="color:#006600; font-weight:bold;">/</span>generate migration AddPhotosToEvents</pre></div></div>

<p>Open up your newly created migration with your favorite Text editor, and add the following:</p>

<div class="wp_syntax"><div class="code"><pre class="rails rails" style="font-family:monospace;"><span style="color:#9966CC; font-weight:bold;">class</span> AddPhotoToEvent <span style="color:#006600; font-weight:bold;">&lt;</span> <span style="color:#6666ff; font-weight:bold;">ActiveRecord::Migration</span>
  <span style="color:#9966CC; font-weight:bold;">def</span> <span style="color:#0000FF; font-weight:bold;">self</span>.<span style="color:#9900CC;">up</span>
    add_column <span style="color:#ff3333; font-weight:bold;">:events</span>, <span style="color:#ff3333; font-weight:bold;">:photo_file_name</span>, <span style="color:#ff3333; font-weight:bold;">:string</span>
    add_column <span style="color:#ff3333; font-weight:bold;">:events</span>, <span style="color:#ff3333; font-weight:bold;">:photo_content_type</span>, <span style="color:#ff3333; font-weight:bold;">:string</span>
    add_column <span style="color:#ff3333; font-weight:bold;">:events</span>, <span style="color:#ff3333; font-weight:bold;">:photo_file_size</span>, <span style="color:#ff3333; font-weight:bold;">:integer</span>
  <span style="color:#9966CC; font-weight:bold;">end</span>
&nbsp;
  <span style="color:#9966CC; font-weight:bold;">def</span> <span style="color:#0000FF; font-weight:bold;">self</span>.<span style="color:#9900CC;">down</span>
    remove_column <span style="color:#ff3333; font-weight:bold;">:events</span>, <span style="color:#ff3333; font-weight:bold;">:photo_file_name</span>
    remove_column <span style="color:#ff3333; font-weight:bold;">:events</span>, <span style="color:#ff3333; font-weight:bold;">:photo_content_type</span>
    remove_column <span style="color:#ff3333; font-weight:bold;">:events</span>, <span style="color:#ff3333; font-weight:bold;">:photo_file_size</span>
  <span style="color:#9966CC; font-weight:bold;">end</span>
<span style="color:#9966CC; font-weight:bold;">end</span></pre></div></div>

<p>Then rake your migration so the new columns are added to your database:</p>

<div class="wp_syntax"><div class="code"><pre class="rails rails" style="font-family:monospace;">rake db:migrate</pre></div></div>

<p>Next you need to tell your model to use Paperclip, again I am using the Event model as an example, the #Paperclip and below is what you need to add.  If you notice below I added 4 options to the :styles.  I wanted to have a few different sizes generated when a image was uploaded, i named them appropriately (you can name them whatever you wish).   Please note when you put a # on the end it signifies that you want that <strong>exact</strong> aspect ratio, it will crop your photo automatically.  When you use > on the end it will make the largest side the size you specify and keep the aspect ratio uploaded.  In addition note that because we specified has_attached_file :photo its going to look for that naming convention we created in the migration above.  In addition it uses that name to store your photo in the public folder of your application.  So our photo url is going to be as follows: /public/photos/(event#)/(size_name)/image_name</p>

<div class="wp_syntax"><div class="code"><pre class="rails rails" style="font-family:monospace;"><span style="color:#9966CC; font-weight:bold;">class</span> Event <span style="color:#006600; font-weight:bold;">&lt;</span> <span style="color:#6666ff; font-weight:bold;">ActiveRecord::Base</span>
<span style="color:#5A0A0A; font-weight:bold;">belongs_to</span> <span style="color:#ff3333; font-weight:bold;">:user</span>
<span style="color:#5A0A0A; font-weight:bold;">validates_presence_of</span> <span style="color:#ff3333; font-weight:bold;">:title</span>, <span style="color:#ff3333; font-weight:bold;">:on</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#ff3333; font-weight:bold;">:create</span>, <span style="color:#ff3333; font-weight:bold;">:message</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#996600;">&quot;can't be blank&quot;</span>
<span style="color:#5A0A0A; font-weight:bold;">validates_presence_of</span> <span style="color:#ff3333; font-weight:bold;">:teaser</span>, <span style="color:#ff3333; font-weight:bold;">:on</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#ff3333; font-weight:bold;">:create</span>, <span style="color:#ff3333; font-weight:bold;">:message</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#996600;">&quot;can't be blank&quot;</span>
<span style="color:#5A0A0A; font-weight:bold;">validates_presence_of</span> <span style="color:#ff3333; font-weight:bold;">:subject</span>, <span style="color:#ff3333; font-weight:bold;">:on</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#ff3333; font-weight:bold;">:create</span>, <span style="color:#ff3333; font-weight:bold;">:message</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#996600;">&quot;can't be blank&quot;</span>
<span style="color:#008000; font-style:italic;"># Paperclip</span>
has_attached_file <span style="color:#ff3333; font-weight:bold;">:photo</span>,
  <span style="color:#ff3333; font-weight:bold;">:styles</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#006600; font-weight:bold;">&#123;</span>
    <span style="color:#ff3333; font-weight:bold;">:thumb</span><span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#996600;">&quot;100x100#&quot;</span>,
    <span style="color:#ff3333; font-weight:bold;">:small</span>  <span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#996600;">&quot;150x150&gt;&quot;</span>,
    <span style="color:#ff3333; font-weight:bold;">:medium</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#996600;">&quot;300x300&gt;&quot;</span>,
    <span style="color:#ff3333; font-weight:bold;">:large</span> <span style="color:#006600; font-weight:bold;">=&gt;</span>   <span style="color:#996600;">&quot;400x400&gt;&quot;</span> <span style="color:#006600; font-weight:bold;">&#125;</span></pre></div></div>

<p>Next you need to make sure you put the html => { :multipart => true } in <strong>both </strong>your edit and new views for the model you are working with.  Example in my case:</p>

<div class="wp_syntax"><div class="code"><pre class="rails rails" style="font-family:monospace;"><span style="color:#006600; font-weight:bold;">&lt;%</span> <span style="color:#5A0A0A; font-weight:bold;">form_for</span><span style="color:#006600; font-weight:bold;">&#40;</span>@event,:html <span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#006600; font-weight:bold;">&#123;</span> <span style="color:#ff3333; font-weight:bold;">:multipart</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#0000FF; font-weight:bold;">true</span> <span style="color:#006600; font-weight:bold;">&#125;</span><span style="color:#006600; font-weight:bold;">&#41;</span> <span style="color:#9966CC; font-weight:bold;">do</span> |f| <span style="color:#006600; font-weight:bold;">%&gt;</span>
  <span style="color:#006600; font-weight:bold;">&lt;%</span>= f.<span style="color:#9900CC;">error_messages</span> <span style="color:#006600; font-weight:bold;">%&gt;</span>
  <span style="color:#006600; font-weight:bold;">&lt;%</span>= <span style="color:#5A0A0A; font-weight:bold;">render</span> <span style="color:#ff3333; font-weight:bold;">:partial</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#996600;">'form'</span>, <span style="color:#ff3333; font-weight:bold;">:locals</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#006600; font-weight:bold;">&#123;</span> <span style="color:#ff3333; font-weight:bold;">:f</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> f <span style="color:#006600; font-weight:bold;">&#125;</span> <span style="color:#006600; font-weight:bold;">%&gt;</span>
<span style="color:#006600; font-weight:bold;">&lt;%</span> <span style="color:#9966CC; font-weight:bold;">end</span> <span style="color:#006600; font-weight:bold;">%&gt;</span></pre></div></div>

<p>You then need to add the file_field to your new and edit forms or your _form partial like in my case:</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;p&gt;
  &lt;%= f.label 'Photo' %&gt;&lt;br /&gt;
  &lt;%= f.file_field :photo %&gt;
&lt;/p&gt;</pre></div></div>

<p>Next up is deciding on how you are going to use / view your images.   In my case I wanted to show a few different sizes in the Event view.  I also wanted to make sure I am only going to show photo&#8217;s if one exists. In this example I am just showing the small and medium sizes we generated:</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;% if @event.photo.exists? then %&gt;
&lt;p&gt;Small:&lt;%= image_tag @event.photo.url(:small) %&gt;&lt;/p&gt;
&lt;p&gt;Medium:&lt;%= image_tag @event.photo.url(:medium) %&gt;&lt;/p&gt;
&lt;% else %&gt;
&lt;p&gt; There are no photo's attached, upload one. &lt;/p&gt;
&lt;% end %&gt;</pre></div></div>

<h3>A few other notes&#8230;</h3>
<p>
Calling @event.photo.nil destroys the photo</p>
<p>Also checkout this great tutorial <a href="http://jimneath.org/2008/04/17/paperclip-attaching-files-in-rails/" target="_blank">Jim put up here.</a></p>
<p><a href="http://jimneath.org/2008/04/17/paperclip-attaching-files-in-rails/" target="_blank"></a><br />
Thats all for now, I&#8217;ll try to post an update with some more options / features when using the Paperclip plugin in the future.</p>
]]></content:encoded>
			<wfw:commentRss>http://burm.net/2008/10/07/the-ruby-on-rails-paperclip-plugin-tutorial-easy-image-attachments-ror/feed/</wfw:commentRss>
		</item>
		<item>
		<title>A few great plugins that I am using in my current Ruby on Rails project</title>
		<link>http://burm.net/2008/10/06/a-few-great-plugins-that-i-am-using-in-my-current-ruby-on-rails-project/</link>
		<comments>http://burm.net/2008/10/06/a-few-great-plugins-that-i-am-using-in-my-current-ruby-on-rails-project/#comments</comments>
		<pubDate>Tue, 07 Oct 2008 03:12:21 +0000</pubDate>
		<dc:creator>John Burmeister</dc:creator>
		
		<category><![CDATA[My Projects]]></category>

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

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

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

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

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

		<guid isPermaLink="false">http://burm.net/?p=113</guid>
		<description><![CDATA[I am currently working on an interesting project for a customer of mine.   Hopefully I&#8217;ll be able to share more of the details with you all when the project is near completion.  The project involves creating events, parsing and caching RSS feeds, generating RSS feeds, as well as Emailing and SMS&#8217;ing subscribers daily events.   I [...]]]></description>
			<content:encoded><![CDATA[<p>I am currently working on an interesting project for a customer of mine.   Hopefully I&#8217;ll be able to share more of the details with you all when the project is near completion.  The project involves creating events, parsing and caching RSS feeds, generating RSS feeds, as well as Emailing and SMS&#8217;ing subscribers daily events.   I have been working on the project for the last 5 days, and I am about one third of the way through.</p>
<p>I wanted to share some great plugins for Ruby on Rails that I have come across, along with some tutorials. Check back for an updated post with more info.</p>
<h2>Plugins:</h2>
<p><strong>Restful Authentication </strong>- This widely-used plugin provides a foundation for securely managing user authentication - <a href="http://github.com/technoweenie/restful-authentication/tree/master">http://github.com/technoweenie/restful-authentication/tree/master</a></p>
<p><strong>acts_as_taggable_on_steroids</strong> - This plugin is based on acts_as_taggable by DHH but includes extrassuch as tests, smarter tag assignment, and tag cloud calculations.  - <a href="http://github.com/mattetti/acts_as_taggable_on_steroids/tree/master  ">http://github.com/mattetti/acts_as_taggable_on_steroids/tree/master</a></p>
<p><strong>Paperclip</strong> - Paperclip is intended as an easy file attachment library for ActiveRecord. The intent behind it was to keep setup as easy as possible and to treat files as much like other attributes as possible. <a href="http://github.com/thoughtbot/paperclip/tree/master">http://github.com/thoughtbot/paperclip/tree/master</a></p>
<p><strong>Paperclip Polymorph</strong> - This plugin allows users of the Paperclip plugin to easily share attached files between multiple models. <a href="http://locusfoc.us/2008/6/29/paperclip-polymorph">http://locusfoc.us/2008/6/29/paperclip-polymorph</a></p>
<p><strong>acts_as_textiled </strong>- This simple plugin allows you to forget about constantly rendering Textile in your application. Instead, you can rest easy knowing the Textile fields you want to display as HTML will always be displayed as HTML (unless you tell your code otherwise). <a href="http://github.com/defunkt/acts_as_textiled/tree/master">http://github.com/defunkt/acts_as_textiled/tree/master</a></p>
<p><strong>Will_paginate</strong> - Pagination is just limiting the number of records displayed. Why should you let it get in your way while developing, then? This plugin makes magic happen. <a href="http://github.com/mislav/will_paginate/tree/master">http://github.com/mislav/will_paginate/tree/master</a></p>
<h2>Tutorials / Guides:</h2>
<p>If you are new to Ruby on Rails be sure to check out the guides that are being worked on right now here: <a href="http://guides.rails.info/index.html">http://guides.rails.info/index.html</a></p>
<p><strong>Railscasts</strong> - Free Ruby on Rails Screencasts - <a href="http://railscasts.com/">http://railscasts.com/</a></p>
<p><strong>Learning Rails</strong> - Audio (Podcasts) and Screencasts -<a href="http://www.buildingwebapps.com/podcasts"> http://www.buildingwebapps.com/podcasts</a></p>
<p>Jim created a great list of plugins he found useful when he was building a social network in Rails. Check it out here: <a href="http://jimneath.org/2008/04/25/building-a-social-network-site-in-rails/">http://jimneath.org/2008/04/25/building-a-social-network-site-in-rails/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://burm.net/2008/10/06/a-few-great-plugins-that-i-am-using-in-my-current-ruby-on-rails-project/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Golf - Myrtle Beach Trip - November 2008!</title>
		<link>http://burm.net/2008/10/06/golf-myrtle-beach-trip-november-2008/</link>
		<comments>http://burm.net/2008/10/06/golf-myrtle-beach-trip-november-2008/#comments</comments>
		<pubDate>Tue, 07 Oct 2008 00:36:10 +0000</pubDate>
		<dc:creator>John Burmeister</dc:creator>
		
		<category><![CDATA[Personal]]></category>

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

		<category><![CDATA[myrtle beach]]></category>

		<guid isPermaLink="false">http://burm.net/?p=110</guid>
		<description><![CDATA[Just got our confirmations for Myrtle Beach this year! Last year was a blast, looking forward to this year.
Here is a pic from last year&#8230;

Here are the tee times for your golf group.
 
11/5 Myrtle   Beach National West 
11/6 Waterway Hills 
11/6 Witch 
11/7 Aberdeen CC 
11/8 Kings North 
11/9 River Club 
11/9 [...]]]></description>
			<content:encoded><![CDATA[<p>Just got our confirmations for Myrtle Beach this year! Last year was a blast, looking forward to this year.</p>
<p>Here is a pic from last year&#8230;</p>
<p><a class="tt-flickr tt-flickr-Medium" title="IMG_6315" href="http://burm.net/photos/photo/2104469879/img_6315.html"><img class="alignnone" src="http://farm3.static.flickr.com/2078/2104469879_e409f8dbdf.jpg" alt="IMG_6315" width="500" height="333" /></a></p>
<blockquote><p><span style="font-size: x-small; font-family: Arial; color: navy;"><span style="font-size: 10pt; font-family: Arial; color: navy;">Here are the tee times for your golf group.</span></span></p>
<p><span style="font-size: x-small; font-family: Arial; color: navy;"><span style="font-size: 10pt; font-family: Arial; color: navy;"> </span></span></p>
<p><span style="font-size: x-small; font-family: Arial; color: navy;"><span style="font-size: 10pt; font-family: Arial; color: navy;">11/5 Myrtle   Beach National West </span></span></p>
<p><span style="font-size: x-small; font-family: Arial; color: navy;"><span style="font-size: 10pt; font-family: Arial; color: navy;">11/6 Waterway Hills </span></span></p>
<p><span style="font-size: x-small; font-family: Arial; color: navy;"><span style="font-size: 10pt; font-family: Arial; color: navy;">11/6 Witch </span></span></p>
<p><span style="font-size: x-small; font-family: Arial; color: navy;"><span style="font-size: 10pt; font-family: Arial; color: navy;">11/7 Aberdeen CC </span></span></p>
<p><span style="font-size: x-small; font-family: Arial; color: navy;"><span style="font-size: 10pt; font-family: Arial; color: navy;">11/8 Kings North </span></span></p>
<p><span style="font-size: x-small; font-family: Arial; color: navy;"><span style="font-size: 10pt; font-family: Arial; color: navy;">11/9 River Club </span></span></p>
<p><span style="font-size: x-small; font-family: Arial; color: navy;"><span style="font-size: 10pt; font-family: Arial; color: navy;">11/9 Willbrook Plantation </span></span></p></blockquote>
<p><span style="font-size: x-small; font-family: Arial; color: navy;"><span style="font-size: 10pt; font-family: Arial; color: navy;"> Thats a lot of golf!<br />
</span></span></p>
]]></content:encoded>
			<wfw:commentRss>http://burm.net/2008/10/06/golf-myrtle-beach-trip-november-2008/feed/</wfw:commentRss>
		</item>
		<item>
		<title>EDITalk.com Launched with New Logo, blog and Forums</title>
		<link>http://burm.net/2008/10/06/editalk-launched-new-blog-logo-and-forums/</link>
		<comments>http://burm.net/2008/10/06/editalk-launched-new-blog-logo-and-forums/#comments</comments>
		<pubDate>Mon, 06 Oct 2008 20:31:25 +0000</pubDate>
		<dc:creator>John Burmeister</dc:creator>
		
		<category><![CDATA[EDI]]></category>

		<category><![CDATA[My Projects]]></category>

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

		<category><![CDATA[editalk.com]]></category>

		<category><![CDATA[Gentran Integration Suite]]></category>

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

		<guid isPermaLink="false">http://burm.net/?p=82</guid>
		<description><![CDATA[EDITalk.com is one of my side projects, and I&#8217;d figure I&#8217;d post about it here on my blog.
The EDI Talk Blog and Forums have gone through some major changes in the last week.  We have invested in an amazing community software which includes forums / discussions, social groups, buddy lists, private messaging, user profiles, reputation [...]]]></description>
			<content:encoded><![CDATA[<p>EDITalk.com is one of my side projects, and I&#8217;d figure I&#8217;d post about it here on my blog.</p>
<blockquote><p>The EDI Talk Blog and Forums have gone through some major changes in the last week.  We have invested in an amazing community software which includes forums / discussions, social groups, buddy lists, private messaging, user profiles, reputation system, and many other features.</p>
<p>I hope to see all of you join the community.  For those that would like to help, we are looking for qualified moderators to help make the site a better place for everyone.  We also have updated our blogging platform, and will be working to integrate it further with our discussion groups this week.  If you have an idea for a blog article or wish to write one yourself please let us know in the Article Idea&#8217;s category here: <a href="http://editalk.com/forums/forumdisplay.php?f=23" target="_blank">http://EDITalk.com/forums/forumdisplay.php?f=23</a></p>
<p>We are hoping to grow this community to make it an amazing free resource for everyone in the EDI world. If you have any suggestions, would like to get involved, or have any questions at all please let us know in the feedback forum here: <a href="http://editalk.com/forums/forumdisplay.php?f=24" target="_blank">http://EDITalk.com/forums/forumdisplay.php?f=24</a></p>
<p>To register (it only takes a few seconds) please visit the discussion forums here: <a href="http://editalk.com/forums/" target="_blank">http://EDITalk.com/forums/</a></p>
<p>In roughly one week we are planning on launching the EDI Wiki, which will be a community driven wiki that will cover all aspects of EDI and EDI related documents.</p>
<p>For the GIS (Gentran Integration Suite) users we have added a dedicated subsection just for you: <a href="http://editalk.com/forums/forumdisplay.php?f=39" target="_blank">http://editalk.com/forums/forumdisplay.php?f=39</a></p>
<p>And of course checkout the latest blog posts on the EDI blog: <a href="http://editalk.com/" target="_blank">http://EDITalk.com</a></p>
<p>See you on the forums. And if you have an RSS reader please be sure to add the EDITalk.com RSS feed to get the latest articles.  RSS Feed: <a href="http://editalk.com/feed" target="_blank">http://editalk.com/feed</a></p></blockquote>
<p>Pics: 
<a href='http://burm.net/2008/10/06/editalk-launched-new-blog-logo-and-forums/editalk_blog/' title='editalk_blog'><img src="http://burm.net/wp-content/uploads/2008/10/editalk_blog-150x150.png" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://burm.net/2008/10/06/editalk-launched-new-blog-logo-and-forums/editalk_forum/' title='editalk_forum'><img src="http://burm.net/wp-content/uploads/2008/10/editalk_forum-150x150.png" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
</p>
]]></content:encoded>
			<wfw:commentRss>http://burm.net/2008/10/06/editalk-launched-new-blog-logo-and-forums/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Some updated house pictures, guest room, pond and garage!</title>
		<link>http://burm.net/2008/08/28/some-updated-house-pictures-guest-room-pond-and-garage-2/</link>
		<comments>http://burm.net/2008/08/28/some-updated-house-pictures-guest-room-pond-and-garage-2/#comments</comments>
		<pubDate>Thu, 28 Aug 2008 12:19:28 +0000</pubDate>
		<dc:creator>John Burmeister</dc:creator>
		
		<category><![CDATA[Levittown]]></category>

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

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

		<category><![CDATA[long island]]></category>

		<guid isPermaLink="false">http://burm.net/2008/08/28/some-updated-house-pictures-guest-room-pond-and-garage-2/</guid>
		<description><![CDATA[Here is how our kitchen and dining room came out.


This is the buffet table we did in the dining room, we did a glass tile counter top for it
b/c of the leftover tile from the backsplash in the kitchen.

This is the guest room I just (almost) finished yesterday,
just need a bed frame and some other [...]]]></description>
			<content:encoded><![CDATA[<p>Here is how our kitchen and dining room came out.</p>
<p><img src="http://farm4.static.flickr.com/3083/2648282300_28a3fe76b0.jpg?v=0" style="max-width: 800px" /></p>
<p><img src="http://farm4.static.flickr.com/3228/2647450717_ea1bf3fd82.jpg?v=0" style="max-width: 800px" /></p>
<p>This is the buffet table we did in the dining room, we did a glass tile counter top for it<br />
b/c of the leftover tile from the backsplash in the kitchen.</p>
<p><img src="http://farm4.static.flickr.com/3162/2647449981_90b610eddf.jpg?v=0" style="max-width: 800px" /><br />
This is the guest room I just (almost) finished yesterday,<br />
just need a bed frame and some other stuff..</p>
<p><img src="http://farm4.static.flickr.com/3101/2804451158_05796c2e35.jpg?v=0" style="max-width: 800px" /></p>
<p><img src="http://farm4.static.flickr.com/3023/2803606363_b7c63e071b.jpg?v=0" style="max-width: 800px" /></p>
<p>The next project, the pond, got my rocks yesterday… Loaded down my truck and my dads.  PA Flag stone.<br />
<img src="http://farm4.static.flickr.com/3224/2803605405_b9ae0120d8.jpg?v=0" style="max-width: 800px" /></p>
<p>My other project I am working on, the garage!  To many projects, not enough time&#8230;</p>
<p><img src="http://farm4.static.flickr.com/3289/2801076221_8cd5042217.jpg?v=0" style="max-width: 800px" /></p>
<p>Eventually I&#8217;d like to do a nice garage tile floor and finish rocking the garage.  Garage has its own zone of heat too.</p>
<p><img src="http://farm4.static.flickr.com/3185/2801923668_cb668e544d.jpg?v=0" style="max-width: 800px" /></p>
]]></content:encoded>
			<wfw:commentRss>http://burm.net/2008/08/28/some-updated-house-pictures-guest-room-pond-and-garage-2/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Some new pictures of the outside, grass is coming in strong!</title>
		<link>http://burm.net/2008/06/21/some-new-pictures-of-the-outside-grass-is-coming-in-strong/</link>
		<comments>http://burm.net/2008/06/21/some-new-pictures-of-the-outside-grass-is-coming-in-strong/#comments</comments>
		<pubDate>Sat, 21 Jun 2008 20:25:14 +0000</pubDate>
		<dc:creator>John Burmeister</dc:creator>
		
		<category><![CDATA[Levittown]]></category>

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

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

		<category><![CDATA[long island]]></category>

		<guid isPermaLink="false">http://burm.net/2008/06/21/some-new-pictures-of-the-outside-grass-is-coming-in-strong/</guid>
		<description><![CDATA[Here are some new pictures of the outside, the grass is coming in really good.  I just finished putting down some fertilizer / grub and insect killer.  Central Air unit / install is going to happen this Tuesday, I am excited!  We ran the 40 Amp line outside into a waterproof box with a cut [...]]]></description>
			<content:encoded><![CDATA[<p>Here are some new pictures of the outside, the grass is coming in really good.  I just finished putting down some fertilizer / grub and insect killer.  Central Air unit / install is going to happen this Tuesday, I am excited!  We ran the 40 Amp line outside into a waterproof box with a cut off and the whip is ready for the Unit install.  I also ran an extra 20 amp line outside for some low voltage lighting and eventually a pond pump into its own small waterproof box.   I was able to score a free pond pump and pond insert, I am not sure how big it is, but its free!</p>
<p>Front Yard</p>
<p><img src="http://farm4.static.flickr.com/3139/2598129825_b70f55da56.jpg?v=0" height="333" width="500" /></p>
<p><img src="http://farm4.static.flickr.com/3038/2598962514_be2886ec22.jpg?v=0" height="333" width="500" /></p>
<p>Back Yard</p>
<p><img src="http://farm4.static.flickr.com/3065/2598128897_8349cae62e.jpg?v=0" height="333" width="500" /></p>
<p><img src="http://farm4.static.flickr.com/3174/2598962212_301e76ba0b.jpg?v=0" height="333" width="500" /></p>
]]></content:encoded>
			<wfw:commentRss>http://burm.net/2008/06/21/some-new-pictures-of-the-outside-grass-is-coming-in-strong/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Here are some before, during and after shots of the landscaping</title>
		<link>http://burm.net/2008/05/27/here-are-some-before-during-and-after-shots-of-the-landscaping/</link>
		<comments>http://burm.net/2008/05/27/here-are-some-before-during-and-after-shots-of-the-landscaping/#comments</comments>
		<pubDate>Tue, 27 May 2008 13:30:45 +0000</pubDate>
		<dc:creator>John Burmeister</dc:creator>
		
		<category><![CDATA[Interesting]]></category>

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

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

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

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

		<category><![CDATA[long island]]></category>

		<guid isPermaLink="false">http://burm.net/2008/05/27/here-are-some-before-during-and-after-shots-of-the-landscaping/</guid>
		<description><![CDATA[Here are some before, during and after shots of the landscaping. We did a simple design for the front, and are planning on adding another layer or two of the brick to finish it off. We just did one layer so we could put the initial mulch down and that is all that would fit [...]]]></description>
			<content:encoded><![CDATA[<p>Here are some before, during and after shots of the landscaping. We did a simple design for the front, and are planning on adding another layer or two of the brick to finish it off. We just did one layer so we could put the initial mulch down and that is all that would fit in my truck.</p>
<p>Everything seems to be growing pretty good, the grass has some bare spots and I&#8217;ll address those in the spring. Hopefully some of those weeds will go away with the next weed and feed session. Next up is to do a fence along the side and back (behind the new arborvitaes we planted). Waiting for that tax refund!</p>
<p>Front Before</p>
<p><img src="http://farm3.static.flickr.com/2106/2527835332_4c7715b852.jpg?v=0" style="max-width: 800px" /></p>
<p>Front After</p>
<p><img src="http://farm4.static.flickr.com/3286/2525347773_19a51b94e3.jpg?v=0" style="max-width: 800px" /></p>
<p>Another Shot of the front - An in progress photo</p>
<p><img src="http://farm3.static.flickr.com/2373/2527841708_af83ce5286.jpg?v=0" style="max-width: 800px" /></p>
<p>Another two shots of the front - All done - And sidewalk / walkway is power washed now!</p>
<p><img src="http://farm3.static.flickr.com/2370/2525361495_3165f15ca1.jpg?v=0" style="max-width: 800px" /></p>
<p><img src="http://farm3.static.flickr.com/2251/2525339253_91059583ab.jpg?v=0" style="max-width: 800px" /></p>
<p>The Backyard</p>
<p>Before:</p>
<p><img src="http://farm3.static.flickr.com/2171/2527835054_61a13a7cc5.jpg?v=0" style="max-width: 800px" /></p>
<p>In Progress (All cleaned up and seeded)</p>
<p><img src="http://farm4.static.flickr.com/3088/2526153118_92de6e9d32.jpg?v=0" style="max-width: 800px" /></p>
<p>After - John Power washed neighbors fence too</p>
<p><img src="http://farm3.static.flickr.com/2310/2526172888_317caecf83.jpg?v=0" style="max-width: 800px" /></p>
<p>Two more backyard shots</p>
<p><img src="http://farm3.static.flickr.com/2328/2526170948_422c888b2a.jpg?v=0" style="max-width: 800px" /></p>
<p><img src="http://farm4.static.flickr.com/3239/2526169382_6fb43c9905.jpg?v=0" style="max-width: 800px" /></p>
]]></content:encoded>
			<wfw:commentRss>http://burm.net/2008/05/27/here-are-some-before-during-and-after-shots-of-the-landscaping/feed/</wfw:commentRss>
		</item>
		<item>
		<title>House Reminders - How often do you do normal maintainance?</title>
		<link>http://burm.net/2008/04/10/house-reminders-how-often-do-you-do-normal-maintainance/</link>
		<comments>http://burm.net/2008/04/10/house-reminders-how-often-do-you-do-normal-maintainance/#comments</comments>
		<pubDate>Thu, 10 Apr 2008 13:48:43 +0000</pubDate>
		<dc:creator>John Burmeister</dc:creator>
		
		<category><![CDATA[Levittown]]></category>

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

		<category><![CDATA[long island]]></category>

		<guid isPermaLink="false">http://burm.net/2008/04/10/house-reminders-how-often-do-you-do-normal-maintainance/</guid>
		<description><![CDATA[Just making a page so I can remind myself when I did the basic things around the house that are done on a routine basis.
Just yesterday I ran out to buy Ortho Home Defense Max, both the spray and the Granules (overkill).  The purpose is to keep bugs out of the house.  I [...]]]></description>
			<content:encoded><![CDATA[<p>Just making a page so I can remind myself when I did the basic things around the house that are done on a routine basis.</p>
<p><img src="http://www.orthohomedefense.com/scotts-sites/ortho-hdm/images/large.gif" height="108" width="106" />Just yesterday I ran out to buy Ortho Home Defense Max, both the spray and the Granules (overkill).  The purpose is to keep bugs out of the house.  I went and sprayed my entire foundation (outside) with the product, and will repeat in a month or so. I wanted to get this stuff down before the bug season comes, hopefully it works!  Here is the product description from the site<img src="http://www.orthohomedefense.com/scotts-sites/ortho-hdm/images/granule.gif" height="92" width="106" /></p>
<p>&#8220;Create a bug barrier inside and outside your home with Ortho® Home Defense® MAX®! Our exclusive InvisiShield® formula, with up to 12 month control indoors, penetrates deep into the cracks and crevices where bugs live to kill pests like ants, spiders, and cockroaches.</p>
<p>In addition to the ready-to-use liquid lineup, Ortho® Home Defense® MAX® is available in an outdoor granule form. These granules come in an easy-to-use bottle and will protect your home from invading insects all season. Choose the product form that is right for you!&#8221;</p>
<p>My Notes:</p>
<p>4/10/2008  - Ortho Home Defense Spray and Granules - Do every 6 months<br />
4/10/2008 - Foaming Root Killer for your Sewer Pipes (Kills Roots in your sewage pipes) - Do every 6 months</p>
]]></content:encoded>
			<wfw:commentRss>http://burm.net/2008/04/10/house-reminders-how-often-do-you-do-normal-maintainance/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Tree smashed my truck, wife&#8217;s car, and my house - Will I be in good hands? (Allstate)</title>
		<link>http://burm.net/2008/03/08/tree-smashed-my-truck-wifes-car-and-my-house-will-i-be-in-good-hands-allstate/</link>
		<comments>http://burm.net/2008/03/08/tree-smashed-my-truck-wifes-car-and-my-house-will-i-be-in-good-hands-allstate/#comments</comments>
		<pubDate>Sun, 09 Mar 2008 04:13:14 +0000</pubDate>
		<dc:creator>John Burmeister</dc:creator>
		
		<category><![CDATA[Interesting]]></category>

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

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

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

		<category><![CDATA[long island]]></category>

		<guid isPermaLink="false">http://burm.net/2008/03/08/tree-smashed-my-truck-wifes-car-and-my-house-will-i-be-in-good-hands-allstate/</guid>
		<description><![CDATA[Well,  this isn&#8217;t a normal &#8220;house update&#8221;.  The house was updated, but with a few thousand pound branch that crushed my truck, scratched Chrissy&#8217;s car, and took off my brand new gutters.  Below are some pictures, it happened at about 10:45pm (about an hour and 1/2 ago) on 3/8/2008.  I reported 3 claims (yes three) [...]]]></description>
			<content:encoded><![CDATA[<p>Well,  this isn&#8217;t a normal &#8220;house update&#8221;.  The house was updated, but with a few thousand pound branch that crushed my truck, scratched Chrissy&#8217;s car, and took off my brand new gutters.  Below are some pictures, it happened at about 10:45pm (about an hour and 1/2 ago) on 3/8/2008.  I reported 3 claims (yes three) to Allstate.  They made me do one claim per car, then one for the house.  I&#8217;ve herd some horror stories in the past with claims of this nature with Allstate, lets just hope they handle everything correctly.</p>
<p>I do have a question for everyone, this was a branch from my neighbors tree.  What do I do? Who&#8217;s responsible for the tree cleanup and all of the other expenses?</p>
<p>Sideshow here:  <a href="http://www.flickr.com/photos/burmjohn/sets/72157604073525656/show/">http://www.flickr.com/photos/burmjohn/sets/72157604073525656/show/</a></p>
<p>All pictures here: <a href="http://www.flickr.com/photos/burmjohn/sets/72157604073525656/">http://www.flickr.com/photos/burmjohn/sets/72157604073525656/ </a></p>
<p><img src="http://farm4.static.flickr.com/3003/2319671079_172ca9edab.jpg" height="333" width="500" /></p>
<p>Yes, the tree is IN my car!</p>
<p><img src="http://farm4.static.flickr.com/3083/2319669367_55d47759f2.jpg?v=0" height="333" width="500" /></p>
<p>Roof is crushed in, windows smashed, quarter panel is smashed&#8230;.</p>
<p><img src="http://farm3.static.flickr.com/2075/2319669849_f88cf74cab.jpg?v=0" height="333" width="500" /></p>
<p>Wifes car has a lot of scratches and missing a side mirror now&#8230;</p>
<p><img src="http://farm3.static.flickr.com/2396/2319669103_36e51cd4f3.jpg?v=0" height="333" width="500" /></p>
<p>Thats one big branch!</p>
<p><img src="http://farm3.static.flickr.com/2084/2320480368_85c3bbec1f.jpg?v=0" height="333" width="500" /></p>
]]></content:encoded>
			<wfw:commentRss>http://burm.net/2008/03/08/tree-smashed-my-truck-wifes-car-and-my-house-will-i-be-in-good-hands-allstate/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
