<?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>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>How to save a PHP object to a database</title>
		<link>http://thevedic.net/wordpress/2010/02/11/how-to-save-a-php-object-to-a-database/</link>
		<comments>http://thevedic.net/wordpress/2010/02/11/how-to-save-a-php-object-to-a-database/#comments</comments>
		<pubDate>Thu, 11 Feb 2010 14:55:12 +0000</pubDate>
		<dc:creator>Deano</dc:creator>
				<category><![CDATA[Code]]></category>

		<guid isPermaLink="false">http://thevedic.net/wordpress/?p=305</guid>
		<description><![CDATA[This is an example from a class that deals with user accounts.

&#160;
  function save&#40;&#41; &#123;
    if&#40;!$this-&#62;id&#41; &#123;
&#160;
### DUPE PREVENTION
      $sql = &#34;SELECT id FROM users WHERE username = '&#34; . $this-&#62;username . &#34;' LIMIT 1&#34;;
      $db2 = mysql_query&#40;$sql&#41;;
    [...]]]></description>
			<content:encoded><![CDATA[<p>This is an example from a class that deals with user accounts.</p>
<p><code></p>
<pre class="php">&nbsp;
  <span style="color: #000000; font-weight: bold;">function</span> save<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span>
    <span style="color: #b1b100;">if</span><span style="color: #66cc66;">&#40;</span>!<span style="color: #0000ff;">$this</span>-&gt;<span style="color: #006600;">id</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span>
&nbsp;
<span style="color: #808080; font-style: italic;">### DUPE PREVENTION</span>
      <span style="color: #0000ff;">$sql</span> = <span style="color: #ff0000;">&quot;SELECT id FROM users WHERE username = '&quot;</span> . <span style="color: #0000ff;">$this</span>-&gt;<span style="color: #006600;">username</span> . <span style="color: #ff0000;">&quot;' LIMIT 1&quot;</span>;
      <span style="color: #0000ff;">$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;">$sql</span><span style="color: #66cc66;">&#41;</span>;
      <span style="color: #0000ff;">$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;">$db2</span><span style="color: #66cc66;">&#41;</span>;
      <span style="color: #b1b100;">if</span><span style="color: #66cc66;">&#40;</span><span style="color: #0000ff;">$db3</span><span style="color: #66cc66;">&#91;</span><span style="color: #ff0000;">'id'</span><span style="color: #66cc66;">&#93;</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span>
        <span style="color: #b1b100;">return</span><span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">0</span><span style="color: #66cc66;">&#41;</span>;
      <span style="color: #66cc66;">&#125;</span>
&nbsp;
<span style="color: #808080; font-style: italic;">### INSERT AND GET THE NEW ID</span>
      <span style="color: #0000ff;">$sql</span> = <span style="color: #ff0000;">&quot;INSERT INTO users(`name`, `username`) &quot;</span> .
                  <span style="color: #ff0000;">&quot;VALUES('&quot;</span> . <span style="color: #0000ff;">$this</span>-&gt;<span style="color: #006600;">name</span> . <span style="color: #ff0000;">&quot;', '&quot;</span> . <span style="color: #0000ff;">$this</span>-&gt;<span style="color: #006600;">username</span> . <span style="color: #ff0000;">&quot;')&quot;</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;">$sql</span><span style="color: #66cc66;">&#41;</span>;
&nbsp;
      <span style="color: #0000ff;">$sql</span> = <span style="color: #ff0000;">&quot;SELECT id FROM users WHERE name = '&quot;</span> . <span style="color: #0000ff;">$this</span>-&gt;<span style="color: #006600;">name</span> . <span style="color: #ff0000;">&quot;' &quot;</span> .
             <span style="color: #ff0000;">&quot;AND username = '&quot;</span> . <span style="color: #0000ff;">$this</span>-&gt;<span style="color: #006600;">username</span> . <span style="color: #ff0000;">&quot;' ORDER by username DESC LIMIT 1&quot;</span>;
      <span style="color: #0000ff;">$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;">$sql</span><span style="color: #66cc66;">&#41;</span>;
      <span style="color: #0000ff;">$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;">$db2</span><span style="color: #66cc66;">&#41;</span>;
      <span style="color: #0000ff;">$this</span>-&gt;<span style="color: #006600;">id</span> = <span style="color: #0000ff;">$db3</span><span style="color: #66cc66;">&#91;</span><span style="color: #ff0000;">'id'</span><span style="color: #66cc66;">&#93;</span>;
&nbsp;
    <span style="color: #66cc66;">&#125;</span>
&nbsp;
    <span style="color: #0000ff;">$to_set</span> = <span style="color: #ff0000;">''</span>;
&nbsp;
    <span style="color: #b1b100;">foreach</span><span style="color: #66cc66;">&#40;</span><span style="color: #0000ff;">$this</span> <span style="color: #b1b100;">as</span> <span style="color: #0000ff;">$key</span> =&gt; <span style="color: #0000ff;">$value</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span>
      <span style="color: #b1b100;">if</span><span style="color: #66cc66;">&#40;</span><span style="color: #0000ff;">$key</span> == <span style="color: #ff0000;">'id'</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span>
        <span style="color: #b1b100;">continue</span>;
      <span style="color: #66cc66;">&#125;</span>
&nbsp;
      <span style="color: #b1b100;">if</span><span style="color: #66cc66;">&#40;</span><span style="color: #0000ff;">$key</span> != <span style="color: #cc66cc;">-1</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span>
        <span style="color: #b1b100;">if</span><span style="color: #66cc66;">&#40;</span><span style="color: #0000ff;">$to_set</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span>
          <span style="color: #0000ff;">$to_set</span> .= <span style="color: #ff0000;">', '</span>;
        <span style="color: #66cc66;">&#125;</span>
&nbsp;
        <span style="color: #b1b100;">if</span><span style="color: #66cc66;">&#40;</span><a href="http://www.php.net/is_array"><span style="color: #000066;">is_array</span></a><span style="color: #66cc66;">&#40;</span><span style="color: #0000ff;">$value</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span>
          <span style="color: #0000ff;">$value</span> = <a href="http://www.php.net/serialize"><span style="color: #000066;">serialize</span></a><span style="color: #66cc66;">&#40;</span><span style="color: #0000ff;">$value</span><span style="color: #66cc66;">&#41;</span>;
        <span style="color: #66cc66;">&#125;</span>
&nbsp;
        <span style="color: #0000ff;">$to_set</span> .= <span style="color: #ff0000;">&quot;$key = '&quot;</span> . <a href="http://www.php.net/mysql_real_escape_string"><span style="color: #000066;">mysql_real_escape_string</span></a><span style="color: #66cc66;">&#40;</span><span style="color: #0000ff;">$value</span><span style="color: #66cc66;">&#41;</span> . <span style="color: #ff0000;">&quot;'&quot;</span>;
      <span style="color: #66cc66;">&#125;</span>
    <span style="color: #66cc66;">&#125;</span>
&nbsp;</pre>
<p></code></p>
]]></content:encoded>
			<wfw:commentRss>http://thevedic.net/wordpress/2010/02/11/how-to-save-a-php-object-to-a-database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<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>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>
	</channel>
</rss>
