<?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 &#187; Random</title>
	<atom:link href="http://thevedic.net/wordpress/category/random/feed/" rel="self" type="application/rss+xml" />
	<link>http://thevedic.net/wordpress</link>
	<description>Lobster Madness</description>
	<lastBuildDate>Thu, 11 Feb 2010 14:57:31 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</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.

&#160;
# $table: The mySQL table to use.
# $column: The column in $table to display
# $name: The HTML name of the drop down
# $selected: The value [...]]]></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>
<p><code></p>
<pre class="php">&nbsp;
<span style="color: #808080; font-style: italic;"># $table: The mySQL table to use.</span>
<span style="color: #808080; font-style: italic;"># $column: The column in $table to display</span>
<span style="color: #808080; font-style: italic;"># $name: The HTML name of the drop down</span>
<span style="color: #808080; font-style: italic;"># $selected: The value that the drop down defaults to.</span>
<span style="color: #808080; font-style: italic;"># $show_any: If you have a row in the table where the $column equals</span>
                    00_Any it will be displayed.
<span style="color: #808080; font-style: italic;">#                  This is useful for having an Any or All value.</span>
<span style="color: #808080; font-style: italic;"># $distinct: Only show DISTINCT() $column</span>
<span style="color: #000000; font-weight: bold;">function</span> dropdown_db<span style="color: #66cc66;">&#40;</span><span style="color: #0000ff;">$table</span>, <span style="color: #0000ff;">$column</span>, <span style="color: #0000ff;">$name</span>, <span style="color: #0000ff;">$selected</span>,
                              <span style="color: #0000ff;">$show_any</span> = <span style="color: #cc66cc;">1</span>, <span style="color: #0000ff;">$distinct</span> = <span style="color: #cc66cc;">0</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span> 
&nbsp;
  <span style="color: #0000ff;">$dropdown</span> = <span style="color: #ff0000;">&quot;
&lt;select id=<span style="color: #000099; font-weight: bold;">\&quot;</span>$name<span style="color: #000099; font-weight: bold;">\&quot;</span> name=<span style="color: #000099; font-weight: bold;">\&quot;</span>$name<span style="color: #000099; font-weight: bold;">\&quot;</span>&gt;<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span>; 
&nbsp;
  <span style="color: #0000ff;">$any_sql</span> = <span style="color: #ff0000;">''</span>;
  <span style="color: #b1b100;">if</span><span style="color: #66cc66;">&#40;</span>!<span style="color: #0000ff;">$show_any</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span>
    <span style="color: #0000ff;">$any_sql</span> = <span style="color: #ff0000;">&quot; WHERE $column &lt;&gt; '00_Any' &quot;</span>;
  <span style="color: #66cc66;">&#125;</span> 
&nbsp;
  <span style="color: #0000ff;">$select</span> = <span style="color: #0000ff;">$column</span>;
  <span style="color: #b1b100;">if</span><span style="color: #66cc66;">&#40;</span><span style="color: #0000ff;">$distinct</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span>
    <span style="color: #0000ff;">$select</span> = <span style="color: #ff0000;">&quot;DISTINCT($column)&quot;</span>;
  <span style="color: #66cc66;">&#125;</span> 
&nbsp;
  <span style="color: #0000ff;">$from_db</span> = <span style="color: #ff0000;">&quot;SELECT $select FROM $table $any_sql ORDER by $column&quot;</span>;
  <span style="color: #0000ff;">$from_db2</span> = <a href="http://www.php.net/mysql_query"><span style="color: #000066;">mysql_query</span></a><span style="color: #66cc66;">&#40;</span><span style="color: #0000ff;">$from_db</span><span style="color: #66cc66;">&#41;</span> ;
  <span style="color: #b1b100;">while</span><span style="color: #66cc66;">&#40;</span><span style="color: #0000ff;">$from_db3</span>=<a href="http://www.php.net/mysql_fetch_array"><span style="color: #000066;">mysql_fetch_array</span></a><span style="color: #66cc66;">&#40;</span><span style="color: #0000ff;">$from_db2</span>, MYSQL_ASSOC<span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span> 
&nbsp;
    <span style="color: #0000ff;">$value</span> = <span style="color: #0000ff;">$from_db3</span><span style="color: #66cc66;">&#91;</span><span style="color: #ff0000;">&quot;$column&quot;</span><span style="color: #66cc66;">&#93;</span>; 
&nbsp;
    <span style="color: #0000ff;">$pretty_db</span> = <span style="color: #0000ff;">$value</span>;
    <span style="color: #0000ff;">$pretty_db</span> = <a href="http://www.php.net/str_replace"><span style="color: #000066;">str_replace</span></a><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">'00_'</span>, <span style="color: #ff0000;">''</span>, <span style="color: #0000ff;">$pretty_db</span><span style="color: #66cc66;">&#41;</span>;
    <span style="color: #0000ff;">$pretty_db</span> = <a href="http://www.php.net/str_replace"><span style="color: #000066;">str_replace</span></a><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">'_'</span>, <span style="color: #ff0000;">' '</span>, <span style="color: #0000ff;">$pretty_db</span><span style="color: #66cc66;">&#41;</span>; 
&nbsp;
    <span style="color: #0000ff;">$SELECTED</span> = <span style="color: #ff0000;">''</span>;
    <span style="color: #b1b100;">if</span><span style="color: #66cc66;">&#40;</span><span style="color: #0000ff;">$value</span> == <span style="color: #0000ff;">$selected</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span>
        <span style="color: #0000ff;">$SELECTED</span> = <span style="color: #ff0000;">' SELECTED'</span>;
    <span style="color: #66cc66;">&#125;</span> 
&nbsp;
    <span style="color: #0000ff;">$dropdown</span> .= <span style="color: #ff0000;">&quot;&lt;option value=<span style="color: #000099; font-weight: bold;">\&quot;</span>$value<span style="color: #000099; font-weight: bold;">\&quot;</span>$SELECTED&gt;$pretty_db&lt;/option&gt;<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span>;
  <span style="color: #66cc66;">&#125;</span> 
&nbsp;
  <span style="color: #0000ff;">$dropdown</span> .= <span style="color: #ff0000;">&quot;&lt;/select&gt;
&nbsp;
<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span>; 
&nbsp;
  <span style="color: #b1b100;">return</span><span style="color: #66cc66;">&#40;</span><span style="color: #0000ff;">$dropdown</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #66cc66;">&#125;</span>
&nbsp;</pre>
<p></code></p>
]]></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>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>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>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>
		<item>
		<title>Viva La Arkansas</title>
		<link>http://thevedic.net/wordpress/2009/05/05/viva-la-arkansas/</link>
		<comments>http://thevedic.net/wordpress/2009/05/05/viva-la-arkansas/#comments</comments>
		<pubDate>Wed, 06 May 2009 01:51:01 +0000</pubDate>
		<dc:creator>Deano</dc:creator>
				<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://thevedic.net/wordpress/?p=184</guid>
		<description><![CDATA[Found this chap eating cat food off of my back porch.
]]></description>
			<content:encoded><![CDATA[<p>Found this chap eating cat food off of my back porch.</p>

<a href="http://thevedic.net/wordpress/wp-content/gallery/random-2009/possum_100_0897.jpg" title="" class="thickbox" rel="singlepic267" >
	<img class="ngg-singlepic ngg-center" src="http://thevedic.net/wordpress/wp-content/plugins/nextgen-gallery/nggshow.php?pid=267&amp;width=500&amp;height=440&amp;mode=" alt="possum_100_0897.jpg" title="possum_100_0897.jpg" />
</a>


<a href="http://thevedic.net/wordpress/wp-content/gallery/random-2009/possum_100_0896.jpg" title="" class="thickbox" rel="singlepic266" >
	<img class="ngg-singlepic ngg-center" src="http://thevedic.net/wordpress/wp-content/plugins/nextgen-gallery/nggshow.php?pid=266&amp;width=500&amp;height=440&amp;mode=" alt="possum_100_0896.jpg" title="possum_100_0896.jpg" />
</a>

]]></content:encoded>
			<wfw:commentRss>http://thevedic.net/wordpress/2009/05/05/viva-la-arkansas/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Backyard Wildlife 03-09</title>
		<link>http://thevedic.net/wordpress/2009/03/12/backyard-wildlife-03-09/</link>
		<comments>http://thevedic.net/wordpress/2009/03/12/backyard-wildlife-03-09/#comments</comments>
		<pubDate>Thu, 12 Mar 2009 17:25:30 +0000</pubDate>
		<dc:creator>Deano</dc:creator>
				<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://thevedic.net/wordpress/?p=170</guid>
		<description><![CDATA[It's almost spring in the Ozarks, lots of brown, but a touch of green here and there.
]]></description>
			<content:encoded><![CDATA[<p>It's almost spring in the Ozarks, lots of brown, but a touch of green here and there.</p>

<div class="ngg-galleryoverview" id="ngg-gallery-20-170">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-248" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://thevedic.net/wordpress/wp-content/gallery/backyard-wildlife-03-09/100_0494.jpg" title="Meadow Lark" class="thickbox" rel="backyard-wildlife-03-09" >
				<img title="100_0494.jpg" alt="100_0494.jpg" src="http://thevedic.net/wordpress/wp-content/gallery/backyard-wildlife-03-09/thumbs/thumbs_100_0494.jpg"  />
			</a>
<b>Meadow Lark</b><br><br>
		</div>
	</div>
	 		
	<div id="ngg-image-249" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://thevedic.net/wordpress/wp-content/gallery/backyard-wildlife-03-09/100_0520.jpg" title="Dark-Eyed Junco" class="thickbox" rel="backyard-wildlife-03-09" >
				<img title="100_0520.jpg" alt="100_0520.jpg" src="http://thevedic.net/wordpress/wp-content/gallery/backyard-wildlife-03-09/thumbs/thumbs_100_0520.jpg"  />
			</a>
<b>Dark-Eyed Junco</b><br><br>
		</div>
	</div>
	 		
	<div id="ngg-image-250" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://thevedic.net/wordpress/wp-content/gallery/backyard-wildlife-03-09/100_0550.jpg" title=" " class="thickbox" rel="backyard-wildlife-03-09" >
				<img title="100_0550.jpg" alt="100_0550.jpg" src="http://thevedic.net/wordpress/wp-content/gallery/backyard-wildlife-03-09/thumbs/thumbs_100_0550.jpg"  />
			</a>
<b> </b><br><br>
		</div>
	</div>
	 		
	<div id="ngg-image-252" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://thevedic.net/wordpress/wp-content/gallery/backyard-wildlife-03-09/100_0754.jpg" title="Cow Birds" class="thickbox" rel="backyard-wildlife-03-09" >
				<img title="100_0754.jpg" alt="100_0754.jpg" src="http://thevedic.net/wordpress/wp-content/gallery/backyard-wildlife-03-09/thumbs/thumbs_100_0754.jpg"  />
			</a>
<b>Cow Birds</b><br><br>
		</div>
	</div>
	 		
	<div id="ngg-image-253" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://thevedic.net/wordpress/wp-content/gallery/backyard-wildlife-03-09/100_0760.jpg" title="Dark-Eyed Junco" class="thickbox" rel="backyard-wildlife-03-09" >
				<img title="100_0760.jpg" alt="100_0760.jpg" src="http://thevedic.net/wordpress/wp-content/gallery/backyard-wildlife-03-09/thumbs/thumbs_100_0760.jpg"  />
			</a>
<b>Dark-Eyed Junco</b><br><br>
		</div>
	</div>
	 		
	<div id="ngg-image-254" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://thevedic.net/wordpress/wp-content/gallery/backyard-wildlife-03-09/100_0781.jpg" title="Box Cat" class="thickbox" rel="backyard-wildlife-03-09" >
				<img title="100_0781.jpg" alt="100_0781.jpg" src="http://thevedic.net/wordpress/wp-content/gallery/backyard-wildlife-03-09/thumbs/thumbs_100_0781.jpg"  />
			</a>
<b>Box Cat</b><br><br>
		</div>
	</div>
	 		
	<div id="ngg-image-255" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://thevedic.net/wordpress/wp-content/gallery/backyard-wildlife-03-09/100_0789.jpg" title="Meadow Larks" class="thickbox" rel="backyard-wildlife-03-09" >
				<img title="100_0789.jpg" alt="100_0789.jpg" src="http://thevedic.net/wordpress/wp-content/gallery/backyard-wildlife-03-09/thumbs/thumbs_100_0789.jpg"  />
			</a>
<b>Meadow Larks</b><br><br>
		</div>
	</div>
	 		
	<div id="ngg-image-256" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://thevedic.net/wordpress/wp-content/gallery/backyard-wildlife-03-09/100_0793.jpg" title="Camo" class="thickbox" rel="backyard-wildlife-03-09" >
				<img title="100_0793.jpg" alt="100_0793.jpg" src="http://thevedic.net/wordpress/wp-content/gallery/backyard-wildlife-03-09/thumbs/thumbs_100_0793.jpg"  />
			</a>
<b>Camo</b><br><br>
		</div>
	</div>
	 		
	<div id="ngg-image-257" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://thevedic.net/wordpress/wp-content/gallery/backyard-wildlife-03-09/100_0804.jpg" title="Rusty Capped Sparrow" class="thickbox" rel="backyard-wildlife-03-09" >
				<img title="100_0804.jpg" alt="100_0804.jpg" src="http://thevedic.net/wordpress/wp-content/gallery/backyard-wildlife-03-09/thumbs/thumbs_100_0804.jpg"  />
			</a>
<b>Rusty Capped Sparrow</b><br><br>
		</div>
	</div>
	 		
	<div id="ngg-image-258" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://thevedic.net/wordpress/wp-content/gallery/backyard-wildlife-03-09/100_0814.jpg" title="Bradford Pear" class="thickbox" rel="backyard-wildlife-03-09" >
				<img title="100_0814.jpg" alt="100_0814.jpg" src="http://thevedic.net/wordpress/wp-content/gallery/backyard-wildlife-03-09/thumbs/thumbs_100_0814.jpg"  />
			</a>
<b>Bradford Pear</b><br><br>
		</div>
	</div>
	 		
	<div id="ngg-image-259" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://thevedic.net/wordpress/wp-content/gallery/backyard-wildlife-03-09/100_0818.jpg" title="White Crowned Sparrow" class="thickbox" rel="backyard-wildlife-03-09" >
				<img title="100_0818.jpg" alt="100_0818.jpg" src="http://thevedic.net/wordpress/wp-content/gallery/backyard-wildlife-03-09/thumbs/thumbs_100_0818.jpg"  />
			</a>
<b>White Crowned Sparrow</b><br><br>
		</div>
	</div>
	 		
	<div id="ngg-image-260" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://thevedic.net/wordpress/wp-content/gallery/backyard-wildlife-03-09/100_0820.jpg" title="Female Northern Cardinal" class="thickbox" rel="backyard-wildlife-03-09" >
				<img title="100_0820.jpg" alt="100_0820.jpg" src="http://thevedic.net/wordpress/wp-content/gallery/backyard-wildlife-03-09/thumbs/thumbs_100_0820.jpg"  />
			</a>
<b>Female Northern Cardinal</b><br><br>
		</div>
	</div>
	 		
	<div id="ngg-image-261" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://thevedic.net/wordpress/wp-content/gallery/backyard-wildlife-03-09/100_0821.jpg" title="Female Northern Cardinal" class="thickbox" rel="backyard-wildlife-03-09" >
				<img title="100_0821.jpg" alt="100_0821.jpg" src="http://thevedic.net/wordpress/wp-content/gallery/backyard-wildlife-03-09/thumbs/thumbs_100_0821.jpg"  />
			</a>
<b>Female Northern Cardinal</b><br><br>
		</div>
	</div>
	 		
	<div id="ngg-image-262" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://thevedic.net/wordpress/wp-content/gallery/backyard-wildlife-03-09/100b0600.jpg" title="Dark-Eyed Junco" class="thickbox" rel="backyard-wildlife-03-09" >
				<img title="100b0600.jpg" alt="100b0600.jpg" src="http://thevedic.net/wordpress/wp-content/gallery/backyard-wildlife-03-09/thumbs/thumbs_100b0600.jpg"  />
			</a>
<b>Dark-Eyed Junco</b><br><br>
		</div>
	</div>
	 		
	<div id="ngg-image-263" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://thevedic.net/wordpress/wp-content/gallery/backyard-wildlife-03-09/100b0650.jpg" title="Dark-Eyed Junco" class="thickbox" rel="backyard-wildlife-03-09" >
				<img title="100b0650.jpg" alt="100b0650.jpg" src="http://thevedic.net/wordpress/wp-content/gallery/backyard-wildlife-03-09/thumbs/thumbs_100b0650.jpg"  />
			</a>
<b>Dark-Eyed Junco</b><br><br>
		</div>
	</div>
	 	 	
	<!-- Pagination -->
 	<div class="ngg-clear">&nbsp;</div> 	
</div>


]]></content:encoded>
			<wfw:commentRss>http://thevedic.net/wordpress/2009/03/12/backyard-wildlife-03-09/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Keeping Busy&#8230;</title>
		<link>http://thevedic.net/wordpress/2009/03/03/keeping-busy-3/</link>
		<comments>http://thevedic.net/wordpress/2009/03/03/keeping-busy-3/#comments</comments>
		<pubDate>Tue, 03 Mar 2009 19:37:04 +0000</pubDate>
		<dc:creator>Deano</dc:creator>
				<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://thevedic.net/wordpress/?p=141</guid>
		<description><![CDATA[Not my thigh, but it is my handy work.
]]></description>
			<content:encoded><![CDATA[
<a href="http://thevedic.net/wordpress/wp-content/gallery/random-2009/thigh_bruise.jpg" title="" class="thickbox" rel="singlepic247" >
	<img class="ngg-singlepic ngg-center" src="http://thevedic.net/wordpress/wp-content/plugins/nextgen-gallery/nggshow.php?pid=247&amp;width=600&amp;height=440&amp;mode=" alt="thigh_bruise.jpg" title="thigh_bruise.jpg" />
</a>

<p>Not my thigh, but it is my handy work.</p>
]]></content:encoded>
			<wfw:commentRss>http://thevedic.net/wordpress/2009/03/03/keeping-busy-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP Image/Ad Rotator</title>
		<link>http://thevedic.net/wordpress/2009/02/07/php-imagead-rotator/</link>
		<comments>http://thevedic.net/wordpress/2009/02/07/php-imagead-rotator/#comments</comments>
		<pubDate>Sat, 07 Feb 2009 16:49:45 +0000</pubDate>
		<dc:creator>Deano</dc:creator>
				<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://thevedic.net/wordpress/?p=117</guid>
		<description><![CDATA[Simply reads a directory of images and rotates through them randomly. What makes it cool is the script is called from and HTML IMG tag. Neato.

Download Source!
Once downloaded, open the file and change $ad_dir to the path (not url) of your images. Then upload it to your web host. Call the script from an IMG [...]]]></description>
			<content:encoded><![CDATA[<p>Simply reads a directory of images and rotates through them randomly. What makes it cool is the script is called from and HTML IMG tag. Neato.</p>
<p style="text-align: center;"><img class="aligncenter" title="Example!" src="/wordpress/wp-content/uploads/2009/02/ad_rotator.php" alt=""/></p>
<p><a title="Image Rotator Source" href="/wordpress/wp-content/uploads/2009/02/ad_rotator.phps"><strong>Download Source!</strong></a></p>
<p>Once downloaded, open the file and change $ad_dir to the path (not url) of your images. Then upload it to your web host. Call the script from an IMG tag: &lt;img src=ad_rotator.php&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://thevedic.net/wordpress/2009/02/07/php-imagead-rotator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PlayOn &#8211; XBMC</title>
		<link>http://thevedic.net/wordpress/2009/01/07/playon-xbmc/</link>
		<comments>http://thevedic.net/wordpress/2009/01/07/playon-xbmc/#comments</comments>
		<pubDate>Wed, 07 Jan 2009 18:28:11 +0000</pubDate>
		<dc:creator>Deano</dc:creator>
				<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://thevedic.net/wordpress/?p=105</guid>
		<description><![CDATA[I've been trying out the beta of PlayOn on my Xbox for the last few weeks. I like it.
PlayOn is a UPnP server that you install on your PC. It scrapes RSS feeds and then performs some magic so you can watch videos from those feeds on DLNA capable devices. So far it supports YouTube, [...]]]></description>
			<content:encoded><![CDATA[<p>I've been trying out the beta of <a href="http://www.themediamall.com/playon">PlayOn</a> on my Xbox for the last few weeks. I like it.</p>
<p>PlayOn is a UPnP server that you install on your PC. It scrapes RSS feeds and then performs some magic so you can watch videos from those feeds on DLNA capable devices. So far it supports YouTube, Netflix, CBS, CNN, ESPN and Hulu.</p>
<p>It works well on my Xbox running XBMC. It's really nice to watch videos from those sites on my TV, so nice that I paid the $30 for the registered version of PlayOn.</p>
<p>It is a beta, and the only problem I have found is a strange one. My first attempt to play a video never works, the second one always does. This means I click play, wait five seconds for it to fail, then click play again. It's hardly even annoying.</p>
]]></content:encoded>
			<wfw:commentRss>http://thevedic.net/wordpress/2009/01/07/playon-xbmc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
