<?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>Dean Vaughan</title>
	<atom:link href="http://thevedic.net/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://thevedic.net/wordpress</link>
	<description>Lobster Madness</description>
	<lastBuildDate>Sat, 30 Jan 2010 17:23:01 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>PHP: Create a HTML drop down/select box from a database</title>
		<link>http://thevedic.net/wordpress/2010/01/28/php-create-a-html-drop-downselect-box-from-a-database/</link>
		<comments>http://thevedic.net/wordpress/2010/01/28/php-create-a-html-drop-downselect-box-from-a-database/#comments</comments>
		<pubDate>Thu, 28 Jan 2010 16:22:52 +0000</pubDate>
		<dc:creator>Deano</dc:creator>
				<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://thevedic.net/wordpress/?p=289</guid>
		<description><![CDATA[Here is a function I use all of the time. It takes the contents of a mySQL table and creates an HTML select box (I call them drop downs) from it.
]]></description>
			<content:encoded><![CDATA[<p>Here is a function I use all of the time. It takes the contents of a mySQL table and creates an HTML select box (I call them drop downs) from it.</p>
<pre class="chili"><code class="php""""">

# $table: The mySQL table to use.
# $column: The column in $table to display
# $name: The HTML name of the drop down
# $selected: The value that the drop down defaults to.
# $show_any: If you have a row in the table where the $column equals
                    00_Any it will be displayed.
#                  This is useful for having an Any or All value.
# $distinct: Only show DISTINCT() $column
function dropdown_db($table, $column, $name, $selected,
                              $show_any = 1, $distinct = 0) {

  $dropdown = &quot;&lt;select id=\&quot;$name\&quot; name=\&quot;$name\&quot;&gt;\n&quot;;

  $any_sql = &#039;&#039;;
  if(!$show_any) {
    $any_sql = &quot; WHERE $column &lt;&gt; &#039;00_Any&#039; &quot;;
  }

  $select = $column;
  if($distinct) {
    $select = &quot;DISTINCT($column)&quot;;
  }

  $from_db = &quot;SELECT $select FROM $table $any_sql ORDER by $column&quot;;
  $from_db2 = mysql_query($from_db) ;
  while($from_db3=mysql_fetch_array($from_db2, MYSQL_ASSOC)) {

    $value = $from_db3[&quot;$column&quot;];

    $pretty_db = $value;
    $pretty_db = str_replace(&#039;00_&#039;, &#039;&#039;, $pretty_db);
    $pretty_db = str_replace(&#039;_&#039;, &#039; &#039;, $pretty_db);

    $SELECTED = &#039;&#039;;
    if($value == $selected) {
        $SELECTED = &#039; SELECTED&#039;;
    }

    $dropdown .= &quot;&lt;option value=\&quot;$value\&quot;$SELECTED&gt;$pretty_db&lt;/option&gt;\n&quot;;
  }

  $dropdown .= &quot;&lt;/select&gt;\n&quot;;

  return($dropdown);
}

</code></pre>
]]></content:encoded>
			<wfw:commentRss>http://thevedic.net/wordpress/2010/01/28/php-create-a-html-drop-downselect-box-from-a-database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Cheat at Cafe World</title>
		<link>http://thevedic.net/wordpress/2009/12/31/how-to-cheat-at-cafe-world/</link>
		<comments>http://thevedic.net/wordpress/2009/12/31/how-to-cheat-at-cafe-world/#comments</comments>
		<pubDate>Thu, 31 Dec 2009 19:40:08 +0000</pubDate>
		<dc:creator>Deano</dc:creator>
				<category><![CDATA[Me]]></category>

		<guid isPermaLink="false">http://thevedic.net/wordpress/?p=270</guid>
		<description><![CDATA[Cafe World is a time management game that is all the rage on Facebook. I use the term loosely because it is not much of a game in my opinion. You click some things for a minute or two then wait a day. You do this over and over again and it is supposed to [...]]]></description>
			<content:encoded><![CDATA[<p>Cafe World is a time management game that is all the rage on Facebook. I use the term loosely because it is not much of a game in my opinion. You click some things for a minute or two then wait a day. You do this over and over again and it is supposed to be fun.</p>
<p>The game's logic appears to be almost entirely in the client and the server will accept any old data. For fun and profit I used <a href="http://www.cheatengine.org/downloads.php">Cheat Engine</a> to speed time up in the game so my dishes cooked 20x faster than normal.</p>
<p>Here is how I did it.</p>
<ol>
<li>Load up Cafe World</li>
<li>Start Cheat Engine</li>
<li>Click Search</li>
<li>Find Firefox and click it.</li>
<li>Click open.</li>
<li>Check Enable Speed Hack</li>
<li>Set the Speed to 20. Any lower is too slow, any higher and it won't work.</li>
<li>Click Apply.</li>
<li>Make the longest taking highest level dishes you can.</li>
<li>Repeat 9 until you get tired.</li>
<li>Make your fiance cry because you just surpassed her months of work in a week.</li>
</ol>

<a href="http://thevedic.net/wordpress/wp-content/gallery/random-2009/cheat_engine.png" title="" class="thickbox" rel="singlepic330" >
	<img class="ngg-singlepic ngg-center" src="http://thevedic.net/wordpress/wp-content/plugins/nextgen-gallery/nggshow.php?pid=330&amp;width=600&amp;height=400&amp;mode=" alt="cheat_engine" title="cheat_engine" />
</a>

<p>A note about the speed setting. It may seem like a good idea to crank that sucker up to 500, but you quickly lose connection with the server and the game reloads. Once the game reloads the time left on your dishes resets to what they should be.</p>
<p>Another note... this method should work on any of the time based games on FB. Good times.</p>
]]></content:encoded>
			<wfw:commentRss>http://thevedic.net/wordpress/2009/12/31/how-to-cheat-at-cafe-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OpenSwan to Cisco 7XXX Config</title>
		<link>http://thevedic.net/wordpress/2009/11/13/openswan-to-cisco-7xxx-config/</link>
		<comments>http://thevedic.net/wordpress/2009/11/13/openswan-to-cisco-7xxx-config/#comments</comments>
		<pubDate>Fri, 13 Nov 2009 16:37:12 +0000</pubDate>
		<dc:creator>Deano</dc:creator>
				<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://thevedic.net/wordpress/?p=256</guid>
		<description><![CDATA[Oh hey, there! What's up? This was a week long project that should have been twenty minutes at most.
I hate VPNs.  Call me odd, but I think the protocols should have the encryption built in.  If you need it use it, if not, don't.
net-to-net.conf:

conn net-to-net
        type=   [...]]]></description>
			<content:encoded><![CDATA[<p>Oh hey, there! What's up? This was a week long project that should have been twenty minutes at most.</p>
<p>I hate VPNs.  Call me odd, but I think the protocols should have the encryption built in.  If you need it use it, if not, don't.</p>
<p>net-to-net.conf:</p>
<pre>
conn net-to-net
        type=           tunnel
        authby=         secret
        left=           MY PUBLIC IP
        leftnexthop=    MY DEFAULT GATEWAY
        leftsubnet=     MY PUBLIC IP/32
        right=          REMOTE PUBLIC IP
        rightsubnet=    REMOTE PRIVATE IP/32
        keyexchange=    ike
        pfs=            no
        auto=           start
        ike=3des-md5-modp1024,3des-md5-modp1536
        esp=3des-md5
</pre>
<p>net-to-net.secrets:</p>
<pre>
MY PUBLIC IP REMOTE PUBLIC IP: PSK "password"
</pre>
]]></content:encoded>
			<wfw:commentRss>http://thevedic.net/wordpress/2009/11/13/openswan-to-cisco-7xxx-config/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Labor Day!</title>
		<link>http://thevedic.net/wordpress/2009/09/07/labor-day/</link>
		<comments>http://thevedic.net/wordpress/2009/09/07/labor-day/#comments</comments>
		<pubDate>Mon, 07 Sep 2009 22:48:59 +0000</pubDate>
		<dc:creator>Deano</dc:creator>
				<category><![CDATA[Bikes]]></category>

		<guid isPermaLink="false">http://thevedic.net/wordpress/?p=216</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[
<a href="http://thevedic.net/wordpress/wp-content/gallery/random-2009/100_1071.jpg" title="" class="thickbox" rel="singlepic329" >
	<img class="ngg-singlepic ngg-center" src="http://thevedic.net/wordpress/wp-content/plugins/nextgen-gallery/nggshow.php?pid=329&amp;width=600&amp;height=400&amp;mode=" alt="100_1071" title="100_1071" />
</a>

]]></content:encoded>
			<wfw:commentRss>http://thevedic.net/wordpress/2009/09/07/labor-day/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>3 Fast, 3 Furious &#8211; Tokyo Drift</title>
		<link>http://thevedic.net/wordpress/2009/08/25/3-fast-3-furious-tokyo-drift/</link>
		<comments>http://thevedic.net/wordpress/2009/08/25/3-fast-3-furious-tokyo-drift/#comments</comments>
		<pubDate>Tue, 25 Aug 2009 15:47:32 +0000</pubDate>
		<dc:creator>Deano</dc:creator>
				<category><![CDATA[Bikes]]></category>

		<guid isPermaLink="false">http://thevedic.net/wordpress/?p=212</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[
<a href="http://thevedic.net/wordpress/wp-content/gallery/random-2009/5729_102402779773460_100000112168596_48405_4366388_n.jpg" title="" class="thickbox" rel="singlepic328" >
	<img class="ngg-singlepic ngg-center" src="http://thevedic.net/wordpress/wp-content/plugins/nextgen-gallery/nggshow.php?pid=328&amp;width=600&amp;height=400&amp;mode=" alt="5729_102402779773460_100000112168596_48405_4366388_n.jpg" title="5729_102402779773460_100000112168596_48405_4366388_n.jpg" />
</a>

]]></content:encoded>
			<wfw:commentRss>http://thevedic.net/wordpress/2009/08/25/3-fast-3-furious-tokyo-drift/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My Garage is Complete!</title>
		<link>http://thevedic.net/wordpress/2009/07/28/my-garage-is-complete/</link>
		<comments>http://thevedic.net/wordpress/2009/07/28/my-garage-is-complete/#comments</comments>
		<pubDate>Tue, 28 Jul 2009 22:49:19 +0000</pubDate>
		<dc:creator>Deano</dc:creator>
				<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://thevedic.net/wordpress/?p=208</guid>
		<description><![CDATA[At least close enough that I'm calling it!
]]></description>
			<content:encoded><![CDATA[<p>At least close enough that I'm calling it!</p>

<div class="ngg-galleryoverview" id="ngg-gallery-23-208">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-312" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://thevedic.net/wordpress/wp-content/gallery/garage-complete/100_1032.jpg" title=" " class="thickbox" rel="garage-complete" >
				<img title="100_1032.jpg" alt="100_1032.jpg" src="http://thevedic.net/wordpress/wp-content/gallery/garage-complete/thumbs/thumbs_100_1032.jpg"  />
			</a>
<b> </b><br><br>
		</div>
	</div>
	 		
	<div id="ngg-image-313" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://thevedic.net/wordpress/wp-content/gallery/garage-complete/100_1033.jpg" title=" " class="thickbox" rel="garage-complete" >
				<img title="100_1033.jpg" alt="100_1033.jpg" src="http://thevedic.net/wordpress/wp-content/gallery/garage-complete/thumbs/thumbs_100_1033.jpg"  />
			</a>
<b> </b><br><br>
		</div>
	</div>
	 		
	<div id="ngg-image-314" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://thevedic.net/wordpress/wp-content/gallery/garage-complete/100_1039.jpg" title=" " class="thickbox" rel="garage-complete" >
				<img title="100_1039.jpg" alt="100_1039.jpg" src="http://thevedic.net/wordpress/wp-content/gallery/garage-complete/thumbs/thumbs_100_1039.jpg"  />
			</a>
<b> </b><br><br>
		</div>
	</div>
	 		
	<div id="ngg-image-315" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://thevedic.net/wordpress/wp-content/gallery/garage-complete/100_1043.jpg" title=" " class="thickbox" rel="garage-complete" >
				<img title="100_1043.jpg" alt="100_1043.jpg" src="http://thevedic.net/wordpress/wp-content/gallery/garage-complete/thumbs/thumbs_100_1043.jpg"  />
			</a>
<b> </b><br><br>
		</div>
	</div>
	 		
	<div id="ngg-image-316" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://thevedic.net/wordpress/wp-content/gallery/garage-complete/100_1045.jpg" title=" " class="thickbox" rel="garage-complete" >
				<img title="100_1045.jpg" alt="100_1045.jpg" src="http://thevedic.net/wordpress/wp-content/gallery/garage-complete/thumbs/thumbs_100_1045.jpg"  />
			</a>
<b> </b><br><br>
		</div>
	</div>
	 		
	<div id="ngg-image-317" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://thevedic.net/wordpress/wp-content/gallery/garage-complete/100_1047.jpg" title=" " class="thickbox" rel="garage-complete" >
				<img title="100_1047.jpg" alt="100_1047.jpg" src="http://thevedic.net/wordpress/wp-content/gallery/garage-complete/thumbs/thumbs_100_1047.jpg"  />
			</a>
<b> </b><br><br>
		</div>
	</div>
	 		
	<div id="ngg-image-318" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://thevedic.net/wordpress/wp-content/gallery/garage-complete/100_1048.jpg" title=" " class="thickbox" rel="garage-complete" >
				<img title="100_1048.jpg" alt="100_1048.jpg" src="http://thevedic.net/wordpress/wp-content/gallery/garage-complete/thumbs/thumbs_100_1048.jpg"  />
			</a>
<b> </b><br><br>
		</div>
	</div>
	 		
	<div id="ngg-image-319" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://thevedic.net/wordpress/wp-content/gallery/garage-complete/100_1049.jpg" title=" " class="thickbox" rel="garage-complete" >
				<img title="100_1049.jpg" alt="100_1049.jpg" src="http://thevedic.net/wordpress/wp-content/gallery/garage-complete/thumbs/thumbs_100_1049.jpg"  />
			</a>
<b> </b><br><br>
		</div>
	</div>
	 		
	<div id="ngg-image-320" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://thevedic.net/wordpress/wp-content/gallery/garage-complete/100_1050.jpg" title=" " class="thickbox" rel="garage-complete" >
				<img title="100_1050.jpg" alt="100_1050.jpg" src="http://thevedic.net/wordpress/wp-content/gallery/garage-complete/thumbs/thumbs_100_1050.jpg"  />
			</a>
<b> </b><br><br>
		</div>
	</div>
	 		
	<div id="ngg-image-321" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://thevedic.net/wordpress/wp-content/gallery/garage-complete/100_1051.jpg" title=" " class="thickbox" rel="garage-complete" >
				<img title="100_1051.jpg" alt="100_1051.jpg" src="http://thevedic.net/wordpress/wp-content/gallery/garage-complete/thumbs/thumbs_100_1051.jpg"  />
			</a>
<b> </b><br><br>
		</div>
	</div>
	 		
	<div id="ngg-image-322" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://thevedic.net/wordpress/wp-content/gallery/garage-complete/100_1055.jpg" title=" " class="thickbox" rel="garage-complete" >
				<img title="100_1055.jpg" alt="100_1055.jpg" src="http://thevedic.net/wordpress/wp-content/gallery/garage-complete/thumbs/thumbs_100_1055.jpg"  />
			</a>
<b> </b><br><br>
		</div>
	</div>
	 		
	<div id="ngg-image-323" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://thevedic.net/wordpress/wp-content/gallery/garage-complete/100_1057.jpg" title=" " class="thickbox" rel="garage-complete" >
				<img title="100_1057.jpg" alt="100_1057.jpg" src="http://thevedic.net/wordpress/wp-content/gallery/garage-complete/thumbs/thumbs_100_1057.jpg"  />
			</a>
<b> </b><br><br>
		</div>
	</div>
	 		
	<div id="ngg-image-324" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://thevedic.net/wordpress/wp-content/gallery/garage-complete/100_1060.jpg" title=" " class="thickbox" rel="garage-complete" >
				<img title="100_1060.jpg" alt="100_1060.jpg" src="http://thevedic.net/wordpress/wp-content/gallery/garage-complete/thumbs/thumbs_100_1060.jpg"  />
			</a>
<b> </b><br><br>
		</div>
	</div>
	 		
	<div id="ngg-image-325" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://thevedic.net/wordpress/wp-content/gallery/garage-complete/100_1061.jpg" title=" " class="thickbox" rel="garage-complete" >
				<img title="100_1061.jpg" alt="100_1061.jpg" src="http://thevedic.net/wordpress/wp-content/gallery/garage-complete/thumbs/thumbs_100_1061.jpg"  />
			</a>
<b> </b><br><br>
		</div>
	</div>
	 		
	<div id="ngg-image-326" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://thevedic.net/wordpress/wp-content/gallery/garage-complete/100_1062.jpg" title=" " class="thickbox" rel="garage-complete" >
				<img title="100_1062.jpg" alt="100_1062.jpg" src="http://thevedic.net/wordpress/wp-content/gallery/garage-complete/thumbs/thumbs_100_1062.jpg"  />
			</a>
<b> </b><br><br>
		</div>
	</div>
	 		
	<div id="ngg-image-327" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://thevedic.net/wordpress/wp-content/gallery/garage-complete/100_1064.jpg" title=" " class="thickbox" rel="garage-complete" >
				<img title="100_1064.jpg" alt="100_1064.jpg" src="http://thevedic.net/wordpress/wp-content/gallery/garage-complete/thumbs/thumbs_100_1064.jpg"  />
			</a>
<b> </b><br><br>
		</div>
	</div>
	 	 	
	<!-- Pagination -->
 	<div class="ngg-clear">&nbsp;</div> 	
</div>


]]></content:encoded>
			<wfw:commentRss>http://thevedic.net/wordpress/2009/07/28/my-garage-is-complete/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Oh Hey</title>
		<link>http://thevedic.net/wordpress/2009/07/04/oh-hey/</link>
		<comments>http://thevedic.net/wordpress/2009/07/04/oh-hey/#comments</comments>
		<pubDate>Sun, 05 Jul 2009 00:47:01 +0000</pubDate>
		<dc:creator>Deano</dc:creator>
				<category><![CDATA[Me]]></category>

		<guid isPermaLink="false">http://thevedic.net/wordpress/?p=206</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[
<div class="ngg-galleryoverview" id="ngg-gallery-22-206">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-306" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://thevedic.net/wordpress/wp-content/gallery/garage-beginnings/100_1029.jpg" title=" " class="thickbox" rel="garage-beginnings" >
				<img title="100_1029.jpg" alt="100_1029.jpg" src="http://thevedic.net/wordpress/wp-content/gallery/garage-beginnings/thumbs/thumbs_100_1029.jpg"  />
			</a>
<b> </b><br><br>
		</div>
	</div>
	 		
	<div id="ngg-image-307" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://thevedic.net/wordpress/wp-content/gallery/garage-beginnings/100_1032.jpg" title=" " class="thickbox" rel="garage-beginnings" >
				<img title="100_1032.jpg" alt="100_1032.jpg" src="http://thevedic.net/wordpress/wp-content/gallery/garage-beginnings/thumbs/thumbs_100_1032.jpg"  />
			</a>
<b> </b><br><br>
		</div>
	</div>
	 		
	<div id="ngg-image-308" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://thevedic.net/wordpress/wp-content/gallery/garage-beginnings/100_1033.jpg" title=" " class="thickbox" rel="garage-beginnings" >
				<img title="100_1033.jpg" alt="100_1033.jpg" src="http://thevedic.net/wordpress/wp-content/gallery/garage-beginnings/thumbs/thumbs_100_1033.jpg"  />
			</a>
<b> </b><br><br>
		</div>
	</div>
	 		
	<div id="ngg-image-309" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://thevedic.net/wordpress/wp-content/gallery/garage-beginnings/100_1038.jpg" title=" " class="thickbox" rel="garage-beginnings" >
				<img title="100_1038.jpg" alt="100_1038.jpg" src="http://thevedic.net/wordpress/wp-content/gallery/garage-beginnings/thumbs/thumbs_100_1038.jpg"  />
			</a>
<b> </b><br><br>
		</div>
	</div>
	 		
	<div id="ngg-image-311" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://thevedic.net/wordpress/wp-content/gallery/garage-beginnings/img_0480.jpg" title=" " class="thickbox" rel="garage-beginnings" >
				<img title="img_0480.jpg" alt="img_0480.jpg" src="http://thevedic.net/wordpress/wp-content/gallery/garage-beginnings/thumbs/thumbs_img_0480.jpg"  />
			</a>
<b> </b><br><br>
		</div>
	</div>
	 	 	
	<!-- Pagination -->
 	<div class="ngg-clear">&nbsp;</div> 	
</div>


]]></content:encoded>
			<wfw:commentRss>http://thevedic.net/wordpress/2009/07/04/oh-hey/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Spring!</title>
		<link>http://thevedic.net/wordpress/2009/05/11/spring/</link>
		<comments>http://thevedic.net/wordpress/2009/05/11/spring/#comments</comments>
		<pubDate>Mon, 11 May 2009 23:40:29 +0000</pubDate>
		<dc:creator>Deano</dc:creator>
				<category><![CDATA[Me]]></category>

		<guid isPermaLink="false">http://thevedic.net/wordpress/?p=204</guid>
		<description><![CDATA[I thought it would never stop raining.
]]></description>
			<content:encoded><![CDATA[<p>I thought it would never stop raining.</p>

<a href="http://thevedic.net/wordpress/wp-content/gallery/random-2009/100_0900-1.jpg" title="" class="thickbox" rel="singlepic305" >
	<img class="ngg-singlepic ngg-center" src="http://thevedic.net/wordpress/wp-content/plugins/nextgen-gallery/nggshow.php?pid=305&amp;width=500&amp;height=400&amp;mode=" alt="100_0900-1.jpg" title="100_0900-1.jpg" />
</a>

]]></content:encoded>
			<wfw:commentRss>http://thevedic.net/wordpress/2009/05/11/spring/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cat Cam!</title>
		<link>http://thevedic.net/wordpress/2009/05/10/cat-cam/</link>
		<comments>http://thevedic.net/wordpress/2009/05/10/cat-cam/#comments</comments>
		<pubDate>Sun, 10 May 2009 23:36:46 +0000</pubDate>
		<dc:creator>Deano</dc:creator>
				<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://thevedic.net/wordpress/?p=198</guid>
		<description><![CDATA[Cat + Camera = Cat Cam!
The camera is on a timer, taking photos every minute. Most turn out terrible, some turn out to be interesting. My cat digs birds and garden hoses.
]]></description>
			<content:encoded><![CDATA[<p>Cat + Camera = Cat Cam!</p>
<p>The camera is on a timer, taking photos every minute. Most turn out terrible, some turn out to be interesting. My cat digs birds and garden hoses.</p>

<div class="ngg-galleryoverview" id="ngg-gallery-21-198">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-303" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://thevedic.net/wordpress/wp-content/gallery/cat-cam-may-2009/img_0476.jpg" title=" " class="thickbox" rel="cat-cam-may-2009" >
				<img title="img_0476.jpg" alt="img_0476.jpg" src="http://thevedic.net/wordpress/wp-content/gallery/cat-cam-may-2009/thumbs/thumbs_img_0476.jpg"  />
			</a>
<b> </b><br><br>
		</div>
	</div>
	 		
	<div id="ngg-image-304" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://thevedic.net/wordpress/wp-content/gallery/cat-cam-may-2009/img_0478.jpg" title=" " class="thickbox" rel="cat-cam-may-2009" >
				<img title="img_0478.jpg" alt="img_0478.jpg" src="http://thevedic.net/wordpress/wp-content/gallery/cat-cam-may-2009/thumbs/thumbs_img_0478.jpg"  />
			</a>
<b> </b><br><br>
		</div>
	</div>
	 		
	<div id="ngg-image-269" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://thevedic.net/wordpress/wp-content/gallery/cat-cam-may-2009/img_0001.jpg" title="My House" class="thickbox" rel="cat-cam-may-2009" >
				<img title="img_0001.jpg" alt="img_0001.jpg" src="http://thevedic.net/wordpress/wp-content/gallery/cat-cam-may-2009/thumbs/thumbs_img_0001.jpg"  />
			</a>
<b>My House</b><br><br>
		</div>
	</div>
	 		
	<div id="ngg-image-270" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://thevedic.net/wordpress/wp-content/gallery/cat-cam-may-2009/img_0003.jpg" title="A newly planted rose of sharon" class="thickbox" rel="cat-cam-may-2009" >
				<img title="img_0003.jpg" alt="img_0003.jpg" src="http://thevedic.net/wordpress/wp-content/gallery/cat-cam-may-2009/thumbs/thumbs_img_0003.jpg"  />
			</a>
<b>A newly planted rose of sharon</b><br><br>
		</div>
	</div>
	 		
	<div id="ngg-image-271" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://thevedic.net/wordpress/wp-content/gallery/cat-cam-may-2009/img_0004.jpg" title="A Swallow" class="thickbox" rel="cat-cam-may-2009" >
				<img title="img_0004.jpg" alt="img_0004.jpg" src="http://thevedic.net/wordpress/wp-content/gallery/cat-cam-may-2009/thumbs/thumbs_img_0004.jpg"  />
			</a>
<b>A Swallow</b><br><br>
		</div>
	</div>
	 		
	<div id="ngg-image-272" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://thevedic.net/wordpress/wp-content/gallery/cat-cam-may-2009/img_0006.jpg" title="Approaching my garden pond" class="thickbox" rel="cat-cam-may-2009" >
				<img title="img_0006.jpg" alt="img_0006.jpg" src="http://thevedic.net/wordpress/wp-content/gallery/cat-cam-may-2009/thumbs/thumbs_img_0006.jpg"  />
			</a>
<b>Approaching my garden pond</b><br><br>
		</div>
	</div>
	 		
	<div id="ngg-image-273" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://thevedic.net/wordpress/wp-content/gallery/cat-cam-may-2009/img_0009.jpg" title="whiskers and scenery" class="thickbox" rel="cat-cam-may-2009" >
				<img title="img_0009.jpg" alt="img_0009.jpg" src="http://thevedic.net/wordpress/wp-content/gallery/cat-cam-may-2009/thumbs/thumbs_img_0009.jpg"  />
			</a>
<b>whiskers and scenery</b><br><br>
		</div>
	</div>
	 		
	<div id="ngg-image-274" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://thevedic.net/wordpress/wp-content/gallery/cat-cam-may-2009/img_0010.jpg" title="Nice bike broham" class="thickbox" rel="cat-cam-may-2009" >
				<img title="img_0010.jpg" alt="img_0010.jpg" src="http://thevedic.net/wordpress/wp-content/gallery/cat-cam-may-2009/thumbs/thumbs_img_0010.jpg"  />
			</a>
<b>Nice bike broham</b><br><br>
		</div>
	</div>
	 		
	<div id="ngg-image-275" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://thevedic.net/wordpress/wp-content/gallery/cat-cam-may-2009/img_0014.jpg" title="Tiburon and Solstice tires" class="thickbox" rel="cat-cam-may-2009" >
				<img title="img_0014.jpg" alt="img_0014.jpg" src="http://thevedic.net/wordpress/wp-content/gallery/cat-cam-may-2009/thumbs/thumbs_img_0014.jpg"  />
			</a>
<b>Tiburon and Solstice tires</b><br><br>
		</div>
	</div>
	 		
	<div id="ngg-image-276" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://thevedic.net/wordpress/wp-content/gallery/cat-cam-may-2009/img_0024.jpg" title="Scenery!" class="thickbox" rel="cat-cam-may-2009" >
				<img title="img_0024.jpg" alt="img_0024.jpg" src="http://thevedic.net/wordpress/wp-content/gallery/cat-cam-may-2009/thumbs/thumbs_img_0024.jpg"  />
			</a>
<b>Scenery!</b><br><br>
		</div>
	</div>
	 		
	<div id="ngg-image-277" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://thevedic.net/wordpress/wp-content/gallery/cat-cam-may-2009/img_0025.jpg" title="The camera being low to the ground and unable to compensate for movement produces some surreal shots on occasion. " class="thickbox" rel="cat-cam-may-2009" >
				<img title="img_0025.jpg" alt="img_0025.jpg" src="http://thevedic.net/wordpress/wp-content/gallery/cat-cam-may-2009/thumbs/thumbs_img_0025.jpg"  />
			</a>
<b>The camera being low to the ground and unable to compensate for movement produces some surreal shots on occasion. </b><br><br>
		</div>
	</div>
	 		
	<div id="ngg-image-278" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://thevedic.net/wordpress/wp-content/gallery/cat-cam-may-2009/img_0026.jpg" title=" " class="thickbox" rel="cat-cam-may-2009" >
				<img title="img_0026.jpg" alt="img_0026.jpg" src="http://thevedic.net/wordpress/wp-content/gallery/cat-cam-may-2009/thumbs/thumbs_img_0026.jpg"  />
			</a>
<b> </b><br><br>
		</div>
	</div>
	 		
	<div id="ngg-image-279" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://thevedic.net/wordpress/wp-content/gallery/cat-cam-may-2009/img_0027.jpg" title=" " class="thickbox" rel="cat-cam-may-2009" >
				<img title="img_0027.jpg" alt="img_0027.jpg" src="http://thevedic.net/wordpress/wp-content/gallery/cat-cam-may-2009/thumbs/thumbs_img_0027.jpg"  />
			</a>
<b> </b><br><br>
		</div>
	</div>
	 		
	<div id="ngg-image-280" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://thevedic.net/wordpress/wp-content/gallery/cat-cam-may-2009/img_0028.jpg" title="A newly planted Weeping Willow" class="thickbox" rel="cat-cam-may-2009" >
				<img title="img_0028.jpg" alt="img_0028.jpg" src="http://thevedic.net/wordpress/wp-content/gallery/cat-cam-may-2009/thumbs/thumbs_img_0028.jpg"  />
			</a>
<b>A newly planted Weeping Willow</b><br><br>
		</div>
	</div>
	 		
	<div id="ngg-image-281" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://thevedic.net/wordpress/wp-content/gallery/cat-cam-may-2009/img_0029.jpg" title=" " class="thickbox" rel="cat-cam-may-2009" >
				<img title="img_0029.jpg" alt="img_0029.jpg" src="http://thevedic.net/wordpress/wp-content/gallery/cat-cam-may-2009/thumbs/thumbs_img_0029.jpg"  />
			</a>
<b> </b><br><br>
		</div>
	</div>
	 		
	<div id="ngg-image-282" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://thevedic.net/wordpress/wp-content/gallery/cat-cam-may-2009/img_0031.jpg" title="Some dude" class="thickbox" rel="cat-cam-may-2009" >
				<img title="img_0031.jpg" alt="img_0031.jpg" src="http://thevedic.net/wordpress/wp-content/gallery/cat-cam-may-2009/thumbs/thumbs_img_0031.jpg"  />
			</a>
<b>Some dude</b><br><br>
		</div>
	</div>
	 		
	<div id="ngg-image-283" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://thevedic.net/wordpress/wp-content/gallery/cat-cam-may-2009/img_0051.jpg" title=" " class="thickbox" rel="cat-cam-may-2009" >
				<img title="img_0051.jpg" alt="img_0051.jpg" src="http://thevedic.net/wordpress/wp-content/gallery/cat-cam-may-2009/thumbs/thumbs_img_0051.jpg"  />
			</a>
<b> </b><br><br>
		</div>
	</div>
	 		
	<div id="ngg-image-284" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://thevedic.net/wordpress/wp-content/gallery/cat-cam-may-2009/img_0053.jpg" title=" " class="thickbox" rel="cat-cam-may-2009" >
				<img title="img_0053.jpg" alt="img_0053.jpg" src="http://thevedic.net/wordpress/wp-content/gallery/cat-cam-may-2009/thumbs/thumbs_img_0053.jpg"  />
			</a>
<b> </b><br><br>
		</div>
	</div>
	 		
	<div id="ngg-image-285" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://thevedic.net/wordpress/wp-content/gallery/cat-cam-may-2009/img_0055.jpg" title="She hung out around the hose for a good while." class="thickbox" rel="cat-cam-may-2009" >
				<img title="img_0055.jpg" alt="img_0055.jpg" src="http://thevedic.net/wordpress/wp-content/gallery/cat-cam-may-2009/thumbs/thumbs_img_0055.jpg"  />
			</a>
<b>She hung out around the hose for a good while.</b><br><br>
		</div>
	</div>
	 		
	<div id="ngg-image-286" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://thevedic.net/wordpress/wp-content/gallery/cat-cam-may-2009/img_0056.jpg" title=" " class="thickbox" rel="cat-cam-may-2009" >
				<img title="img_0056.jpg" alt="img_0056.jpg" src="http://thevedic.net/wordpress/wp-content/gallery/cat-cam-may-2009/thumbs/thumbs_img_0056.jpg"  />
			</a>
<b> </b><br><br>
		</div>
	</div>
	 		
	<div id="ngg-image-287" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://thevedic.net/wordpress/wp-content/gallery/cat-cam-may-2009/img_0057.jpg" title=" " class="thickbox" rel="cat-cam-may-2009" >
				<img title="img_0057.jpg" alt="img_0057.jpg" src="http://thevedic.net/wordpress/wp-content/gallery/cat-cam-may-2009/thumbs/thumbs_img_0057.jpg"  />
			</a>
<b> </b><br><br>
		</div>
	</div>
	 		
	<div id="ngg-image-288" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://thevedic.net/wordpress/wp-content/gallery/cat-cam-may-2009/img_0059.jpg" title=" " class="thickbox" rel="cat-cam-may-2009" >
				<img title="img_0059.jpg" alt="img_0059.jpg" src="http://thevedic.net/wordpress/wp-content/gallery/cat-cam-may-2009/thumbs/thumbs_img_0059.jpg"  />
			</a>
<b> </b><br><br>
		</div>
	</div>
	 		
	<div id="ngg-image-289" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://thevedic.net/wordpress/wp-content/gallery/cat-cam-may-2009/img_0060.jpg" title="This shot turned out squished." class="thickbox" rel="cat-cam-may-2009" >
				<img title="img_0060.jpg" alt="img_0060.jpg" src="http://thevedic.net/wordpress/wp-content/gallery/cat-cam-may-2009/thumbs/thumbs_img_0060.jpg"  />
			</a>
<b>This shot turned out squished.</b><br><br>
		</div>
	</div>
	 		
	<div id="ngg-image-290" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://thevedic.net/wordpress/wp-content/gallery/cat-cam-may-2009/img_0071.jpg" title=" " class="thickbox" rel="cat-cam-may-2009" >
				<img title="img_0071.jpg" alt="img_0071.jpg" src="http://thevedic.net/wordpress/wp-content/gallery/cat-cam-may-2009/thumbs/thumbs_img_0071.jpg"  />
			</a>
<b> </b><br><br>
		</div>
	</div>
	 		
	<div id="ngg-image-291" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://thevedic.net/wordpress/wp-content/gallery/cat-cam-may-2009/img_0083.jpg" title=" " class="thickbox" rel="cat-cam-may-2009" >
				<img title="img_0083.jpg" alt="img_0083.jpg" src="http://thevedic.net/wordpress/wp-content/gallery/cat-cam-may-2009/thumbs/thumbs_img_0083.jpg"  />
			</a>
<b> </b><br><br>
		</div>
	</div>
	 		
	<div id="ngg-image-292" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://thevedic.net/wordpress/wp-content/gallery/cat-cam-may-2009/img_0086.jpg" title=" " class="thickbox" rel="cat-cam-may-2009" >
				<img title="img_0086.jpg" alt="img_0086.jpg" src="http://thevedic.net/wordpress/wp-content/gallery/cat-cam-may-2009/thumbs/thumbs_img_0086.jpg"  />
			</a>
<b> </b><br><br>
		</div>
	</div>
	 		
	<div id="ngg-image-293" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://thevedic.net/wordpress/wp-content/gallery/cat-cam-may-2009/img_0087.jpg" title=" " class="thickbox" rel="cat-cam-may-2009" >
				<img title="img_0087.jpg" alt="img_0087.jpg" src="http://thevedic.net/wordpress/wp-content/gallery/cat-cam-may-2009/thumbs/thumbs_img_0087.jpg"  />
			</a>
<b> </b><br><br>
		</div>
	</div>
	 		
	<div id="ngg-image-294" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://thevedic.net/wordpress/wp-content/gallery/cat-cam-may-2009/img_0088.jpg" title=" " class="thickbox" rel="cat-cam-may-2009" >
				<img title="img_0088.jpg" alt="img_0088.jpg" src="http://thevedic.net/wordpress/wp-content/gallery/cat-cam-may-2009/thumbs/thumbs_img_0088.jpg"  />
			</a>
<b> </b><br><br>
		</div>
	</div>
	 		
	<div id="ngg-image-295" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://thevedic.net/wordpress/wp-content/gallery/cat-cam-may-2009/img_0090.jpg" title=" " class="thickbox" rel="cat-cam-may-2009" >
				<img title="img_0090.jpg" alt="img_0090.jpg" src="http://thevedic.net/wordpress/wp-content/gallery/cat-cam-may-2009/thumbs/thumbs_img_0090.jpg"  />
			</a>
<b> </b><br><br>
		</div>
	</div>
	 		
	<div id="ngg-image-296" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://thevedic.net/wordpress/wp-content/gallery/cat-cam-may-2009/img_0097.jpg" title="A bird feeder" class="thickbox" rel="cat-cam-may-2009" >
				<img title="img_0097.jpg" alt="img_0097.jpg" src="http://thevedic.net/wordpress/wp-content/gallery/cat-cam-may-2009/thumbs/thumbs_img_0097.jpg"  />
			</a>
<b>A bird feeder</b><br><br>
		</div>
	</div>
	 		
	<div id="ngg-image-297" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://thevedic.net/wordpress/wp-content/gallery/cat-cam-may-2009/img_0110.jpg" title="Under the bird feeder" class="thickbox" rel="cat-cam-may-2009" >
				<img title="img_0110.jpg" alt="img_0110.jpg" src="http://thevedic.net/wordpress/wp-content/gallery/cat-cam-may-2009/thumbs/thumbs_img_0110.jpg"  />
			</a>
<b>Under the bird feeder</b><br><br>
		</div>
	</div>
	 		
	<div id="ngg-image-298" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://thevedic.net/wordpress/wp-content/gallery/cat-cam-may-2009/img_0117.jpg" title="In the house..." class="thickbox" rel="cat-cam-may-2009" >
				<img title="img_0117.jpg" alt="img_0117.jpg" src="http://thevedic.net/wordpress/wp-content/gallery/cat-cam-may-2009/thumbs/thumbs_img_0117.jpg"  />
			</a>
<b>In the house...</b><br><br>
		</div>
	</div>
	 		
	<div id="ngg-image-299" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://thevedic.net/wordpress/wp-content/gallery/cat-cam-may-2009/img_0121.jpg" title="stealin' your Wii" class="thickbox" rel="cat-cam-may-2009" >
				<img title="img_0121.jpg" alt="img_0121.jpg" src="http://thevedic.net/wordpress/wp-content/gallery/cat-cam-may-2009/thumbs/thumbs_img_0121.jpg"  />
			</a>
<b>stealin' your Wii</b><br><br>
		</div>
	</div>
	 		
	<div id="ngg-image-300" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://thevedic.net/wordpress/wp-content/gallery/cat-cam-may-2009/img_0127.jpg" title="and your fishies" class="thickbox" rel="cat-cam-may-2009" >
				<img title="img_0127.jpg" alt="img_0127.jpg" src="http://thevedic.net/wordpress/wp-content/gallery/cat-cam-may-2009/thumbs/thumbs_img_0127.jpg"  />
			</a>
<b>and your fishies</b><br><br>
		</div>
	</div>
	 		
	<div id="ngg-image-301" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://thevedic.net/wordpress/wp-content/gallery/cat-cam-may-2009/img_0130.jpg" title="Watchin' the Hammer" class="thickbox" rel="cat-cam-may-2009" >
				<img title="img_0130.jpg" alt="img_0130.jpg" src="http://thevedic.net/wordpress/wp-content/gallery/cat-cam-may-2009/thumbs/thumbs_img_0130.jpg"  />
			</a>
<b>Watchin' the Hammer</b><br><br>
		</div>
	</div>
	 		
	<div id="ngg-image-302" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://thevedic.net/wordpress/wp-content/gallery/cat-cam-may-2009/img_0132.jpg" title=" " class="thickbox" rel="cat-cam-may-2009" >
				<img title="img_0132.jpg" alt="img_0132.jpg" src="http://thevedic.net/wordpress/wp-content/gallery/cat-cam-may-2009/thumbs/thumbs_img_0132.jpg"  />
			</a>
<b> </b><br><br>
		</div>
	</div>
	 	 	
	<!-- Pagination -->
 	<div class="ngg-clear">&nbsp;</div> 	
</div>


]]></content:encoded>
			<wfw:commentRss>http://thevedic.net/wordpress/2009/05/10/cat-cam/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Another Garage? Oh Yes.</title>
		<link>http://thevedic.net/wordpress/2009/05/08/another-garage-oh-yes/</link>
		<comments>http://thevedic.net/wordpress/2009/05/08/another-garage-oh-yes/#comments</comments>
		<pubDate>Fri, 08 May 2009 20:44:48 +0000</pubDate>
		<dc:creator>Deano</dc:creator>
				<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://thevedic.net/wordpress/?p=187</guid>
		<description><![CDATA[I'm adding a 12'x20' garage for my bikes and lawnmower as I have the highbrow problem of not being able to fit everything I own into the existing two car garage. Two cars, two bikes and a lawnmower. The mower is under a tarp in the backyard, and I am only able to get two [...]]]></description>
			<content:encoded><![CDATA[
<a href="http://thevedic.net/wordpress/wp-content/gallery/random-2009/new_garage_drawing.jpg" title="" class="thickbox" rel="singlepic268" >
	<img class="ngg-singlepic ngg-center" src="http://thevedic.net/wordpress/wp-content/plugins/nextgen-gallery/nggshow.php?pid=268&amp;width=500&amp;height=400&amp;mode=" alt="new_garage_drawing.jpg" title="new_garage_drawing.jpg" />
</a>

<p>I'm adding a 12'x20' garage for my bikes and lawnmower as I have the highbrow problem of not being able to fit everything I own into the existing two car garage. Two cars, two bikes and a lawnmower. The mower is under a tarp in the backyard, and I am only able to get two vehicles in and out without moving the third or the forth.</p>
<p>I'm putting the addition it in the middle of the house as I don't have room on the side and my heat pump is also in the way. I plan on having a nice path that connects to my driveway so I can just ride around. It's going to be awesome.</p>
<p>This coupled with all of the trees I planted this year furthers my goal of being able to walk around in my underwear without the neighbors calling the rozzers.</p>
]]></content:encoded>
			<wfw:commentRss>http://thevedic.net/wordpress/2009/05/08/another-garage-oh-yes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
