<?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>Fri, 07 May 2010 19:00:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>XBMC Keymap for a Diamond RC118N MCE Remote</title>
		<link>http://thevedic.net/wordpress/2010/05/05/xbmc-keymap-for-a-diamond-rc118n-mce-remote/</link>
		<comments>http://thevedic.net/wordpress/2010/05/05/xbmc-keymap-for-a-diamond-rc118n-mce-remote/#comments</comments>
		<pubDate>Thu, 06 May 2010 02:47:42 +0000</pubDate>
		<dc:creator>Deano</dc:creator>
				<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://thevedic.net/wordpress/?p=310</guid>
		<description><![CDATA[The Diamond RC118N is not a good remote to choose. I messed with this for a while without much luck. Most of the buttons work out of the box. The power buttons, those in the first row (Pictures, Radio, ect), the Back button and the row under mute (Rec TV, Guide, ect) do not work. [...]]]></description>
			<content:encoded><![CDATA[<p>The Diamond RC118N is not a good remote to choose. I messed with this for a while without much luck. Most of the buttons work out of the box. The power buttons, those in the first row (Pictures, Radio, ect), the Back button and the row under mute (Rec TV, Guide, ect) do not work. There is no menu button. The pause button doesn't work, but you can get around that by pressing the play button.</p>
<p>This config below will get your ParentDir function working via the 'Back' button and the ContextMenu via * or #.</p>
<p>This needs to go into the global keyboard section of keymap.xml:</p>
<p>&lt;code&gt;<br />
&lt;key id="61606"&gt;ParentDir&lt;/key&gt;<br />
&lt;key id="61600"&gt;ContextMenu&lt;/key&gt;<br />
&lt;/code&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://thevedic.net/wordpress/2010/05/05/xbmc-keymap-for-a-diamond-rc118n-mce-remote/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Excel Tip of the Day!</title>
		<link>http://thevedic.net/wordpress/2010/03/16/excel-tip-of-the-day/</link>
		<comments>http://thevedic.net/wordpress/2010/03/16/excel-tip-of-the-day/#comments</comments>
		<pubDate>Tue, 16 Mar 2010 15:02:10 +0000</pubDate>
		<dc:creator>Deano</dc:creator>
				<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://thevedic.net/wordpress/?p=308</guid>
		<description><![CDATA[You can put an ' (apostrophe) in front of the + or -, like this '- or '+. The ' is Excel's comment character. The ' will not be displayed. The + or - will be.]]></description>
			<content:encoded><![CDATA[<p>If you need to put a + (plus, positive) or - (minus, negative) sign in an Excel field, Excel tries to start building a formula. This is cool if you actually want to make a formula, not so much when all you want is the + or -.</p>
<p>You can put an ' (apostrophe) in front of the + or -, like this '- or '+. The ' is Excel's comment character. The ' will not be displayed. The + or - will be.</p>
]]></content:encoded>
			<wfw:commentRss>http://thevedic.net/wordpress/2010/03/16/excel-tip-of-the-day/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<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;; $db3 = mysql_fetch_array&#40;$db2&#41;; if&#40;$db3&#91;'id'&#93;&#41; &#123; return&#40;0&#41;; &#125; &#160; ### INSERT AND GET THE NEW [...]]]></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 [...]]]></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;
&nbsp;
<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= tunnel authby= secret left= MY PUBLIC [...]]]></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>
	</channel>
</rss>
