<?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>entens.net</title>
	<atom:link href="http://entens.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://entens.net</link>
	<description>The less one forgets, the less one can remember.</description>
	<lastBuildDate>Tue, 22 Dec 2009 23:12:37 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Useful Utility: DialupRouteMaster</title>
		<link>http://entens.net/2009/12/useful-utility-dialuproutemaster/</link>
		<comments>http://entens.net/2009/12/useful-utility-dialuproutemaster/#comments</comments>
		<pubDate>Tue, 22 Dec 2009 06:18:17 +0000</pubDate>
		<dc:creator>entens</dc:creator>
				<category><![CDATA[Progamming]]></category>
		<category><![CDATA[Project time!]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[WhatCouldPossiblyGoWrong]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://entens.net/?p=198</guid>
		<description><![CDATA[
Setup
Source*
If you've ever tried to setup static routing on Windows, you may know that the 'interface index' can change on you breaking your route. This utility will detect a broken route, remove the defunct persistent route, then recreate it with the correct interface parameter.
Note: I haven't had a chance to test it on a live network (I [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-199" title="DialupRouteMaster" src="http://entens.net/wp-content/uploads/2009/12/DialupRouteMaster.png" alt="DialupRouteMaster" width="398" height="300" /></p>
<p><a href="http://entens.net/wp-content/uploads/2009/12/DialupRouteMaster_binary.zip">Setup</a></p>
<p><a href="http://entens.net/wp-content/uploads/2009/12/DialupRouteMaster_source.zip">Source</a>*</p>
<p>If you've ever tried to setup static routing on Windows, you may know that the 'interface index' can change on you breaking your route. This utility will detect a broken route, remove the defunct persistent route, then recreate it with the correct interface parameter.</p>
<p>Note: I haven't had a chance to test it on a live network (I will 12-22-09), but it may prove interesting for the rare need to route using Windows.</p>
<p>UPDATE: Tested, debugged, and 100% working.  This is now managing the static routes for a dialup connection between two power plants in Alaska!</p>
<p>*Released under the MIT license.</p>
]]></content:encoded>
			<wfw:commentRss>http://entens.net/2009/12/useful-utility-dialuproutemaster/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quickly make a scratch file using .net</title>
		<link>http://entens.net/2009/12/quickly-make-a-scratch-file-using-net/</link>
		<comments>http://entens.net/2009/12/quickly-make-a-scratch-file-using-net/#comments</comments>
		<pubDate>Tue, 08 Dec 2009 20:28:07 +0000</pubDate>
		<dc:creator>entens</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://entens.net/?p=191</guid>
		<description><![CDATA[Using this code, you can quickly make a scratch file for read/write before you either save it or requiem in pace


'Returns Tempfile Path
Dim FileName As String = Path.GetTempFileName()

Dim File_Stream As New FileStream(FileName, FileMode.Append, FileAccess.Write)
Dim FileWriter As New StreamWriter(File_Stream)
'Write the Data
With FileWriter
  Try
      .BaseStream.Seek(0, SeekOrigin.End)
      [...]]]></description>
			<content:encoded><![CDATA[<p>Using this code, you can quickly make a scratch file for read/write before you either save it or requiem in pace<br />
<code lang="vb.net"></p>
<pre>
'Returns Tempfile Path
Dim FileName As String = Path.GetTempFileName()

Dim File_Stream As New FileStream(FileName, FileMode.Append, FileAccess.Write)
Dim FileWriter As New StreamWriter(File_Stream)
'Write the Data
With FileWriter
  Try
      .BaseStream.Seek(0, SeekOrigin.End)
      .WriteLine("writing to scratch")
       Catch ex As IOException
          Debug.Assert(False, ex.ToString)
       Finally
          .Close()
   End Try

End With
</pre>
<p></code><br />
<code lang="c#"></p>
<pre>
string FileName = Path.GetTempFileName();
FileStream File_Stream = new FileStream(FileName, FileMode.Append, FileAccess.Write);
StreamWriter FileWriter = new Stream(File_Stream);
try
{
    FileWriter.BaseStream.Seek(0, SeekOrigin.End);
    FileWriter.WriteLine("writing to scratch");
}
catch(IOException ex)
{
    Debug.Assert(false, ex.ToString());
}
finally
{
    FileWriter.Close();
}
</pre>
<p></code></p>
]]></content:encoded>
			<wfw:commentRss>http://entens.net/2009/12/quickly-make-a-scratch-file-using-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pwnsauce Program: Cain and Able</title>
		<link>http://entens.net/2009/11/pwnsauce-program-cain-and-able/</link>
		<comments>http://entens.net/2009/11/pwnsauce-program-cain-and-able/#comments</comments>
		<pubDate>Tue, 24 Nov 2009 14:40:49 +0000</pubDate>
		<dc:creator>entens</dc:creator>
				<category><![CDATA[Pwnsauce Program]]></category>

		<guid isPermaLink="false">http://entens.net/?p=53</guid>
		<description><![CDATA[Cain and Abel is a Windows security toolkit. It can recover passwords from your local cache, crack passwords, find wireless networks, and even sniff the network for transmitted passwords.  It even has tools to recover your Cisco passwords from your router. This is a must have for any computer guru.

Cain and Abel is a Windows [...]]]></description>
			<content:encoded><![CDATA[<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">Cain and Abel is a Windows security toolkit. It can recover passwords from your local cache, crack passwords, find wireless networks, and even sniff the network for transmitted passwords.  It even has tools to recover your Cisco passwords from your router. This is a must have for any computer guru.</div>
<p><img class="alignnone size-full wp-image-55" title="cain-abel" src="http://entens.net/wp-content/uploads/2009/09/cain-abel.gif" alt="cain-abel" width="640" height="452" /></p>
<p>Cain and Abel is a Windows security toolkit. It can recover passwords from your local cache, crack passwords, find wireless networks, and even sniff the network for transmitted passwords.  It even has tools to recover your Cisco passwords from your router. This is a must have for any computer tech.</p>
<p><a href="http://www.oxid.it/cain.html">Goto the software's site</a></p>
]]></content:encoded>
			<wfw:commentRss>http://entens.net/2009/11/pwnsauce-program-cain-and-able/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I got owned this week</title>
		<link>http://entens.net/2009/11/i-got-owned-this-week/</link>
		<comments>http://entens.net/2009/11/i-got-owned-this-week/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 08:10:13 +0000</pubDate>
		<dc:creator>entens</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://entens.net/2009/11/i-got-owned-this-week/</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/Bjr-x-iNe7A&#038;hl=en_US&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Bjr-x-iNe7A&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://entens.net/2009/11/i-got-owned-this-week/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sold the PLC</title>
		<link>http://entens.net/2009/11/sold-the-plc/</link>
		<comments>http://entens.net/2009/11/sold-the-plc/#comments</comments>
		<pubDate>Fri, 06 Nov 2009 00:23:33 +0000</pubDate>
		<dc:creator>entens</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://entens.net/2009/11/sold-the-plc/</guid>
		<description><![CDATA[I sold the PLC on eBay and made about $600 back on the investment. I'll be buying one that isn't such overkill.
]]></description>
			<content:encoded><![CDATA[<p>I sold the PLC on eBay and made about $600 back on the investment. I'll be buying one that isn't such overkill.</p>
]]></content:encoded>
			<wfw:commentRss>http://entens.net/2009/11/sold-the-plc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Equipment started showing up!</title>
		<link>http://entens.net/2009/10/equipment-started-showing-up/</link>
		<comments>http://entens.net/2009/10/equipment-started-showing-up/#comments</comments>
		<pubDate>Mon, 26 Oct 2009 19:56:03 +0000</pubDate>
		<dc:creator>entens</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://entens.net/2009/10/equipment-started-showing-up/</guid>
		<description><![CDATA[I've started getting packages by the dozen in the mail!
So far I've received my ControlLogix SLC-5555 from Allen-Bradley along with a bunch of the I/O modules for it. The Arduino (coolest diy gadget ever) and assorted other hardware.  All I need to get my process automated now is some containers, burners, electrically actuated valves, [...]]]></description>
			<content:encoded><![CDATA[<p>I've started getting packages by the dozen in the mail!</p>
<p>So far I've received my ControlLogix SLC-5555 from Allen-Bradley along with a bunch of the I/O modules for it. The Arduino (coolest diy gadget ever) and assorted other hardware.  All I need to get my process automated now is some containers, burners, electrically actuated valves, pumps and tubing.</p>
<p>Also, the first batch of homebrew was wicked awesome!</p>
]]></content:encoded>
			<wfw:commentRss>http://entens.net/2009/10/equipment-started-showing-up/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Newegg has gotten their IPO!</title>
		<link>http://entens.net/2009/09/newegg-has-gotten-their-ipo/</link>
		<comments>http://entens.net/2009/09/newegg-has-gotten-their-ipo/#comments</comments>
		<pubDate>Tue, 29 Sep 2009 05:23:10 +0000</pubDate>
		<dc:creator>entens</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://entens.net/2009/09/newegg-has-gotten-their-ipo/</guid>
		<description><![CDATA[I dont know about you, but I love Newegg and they are looking at going public on the stock exchange. They filed for IPO status today with the symbol 'EGG'
I'm buying ASAP!
here for more info: http://www.marketwatch.com/story/online-retailer-newegg-files-for-175-million-ipo-2009-09-28
]]></description>
			<content:encoded><![CDATA[<p>I dont know about you, but I love Newegg and they are looking at going public on the stock exchange. They filed for IPO status today with the symbol 'EGG'</p>
<p>I'm buying ASAP!</p>
<p>here for more info: http://www.marketwatch.com/story/online-retailer-newegg-files-for-175-million-ipo-2009-09-28</p>
]]></content:encoded>
			<wfw:commentRss>http://entens.net/2009/09/newegg-has-gotten-their-ipo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Initial Brew Rig Planning</title>
		<link>http://entens.net/2009/09/initial-brew-rig-planning/</link>
		<comments>http://entens.net/2009/09/initial-brew-rig-planning/#comments</comments>
		<pubDate>Sun, 27 Sep 2009 23:28:40 +0000</pubDate>
		<dc:creator>entens</dc:creator>
				<category><![CDATA[Beer!]]></category>
		<category><![CDATA[I_WANT]]></category>
		<category><![CDATA[Project time!]]></category>
		<category><![CDATA[Stuff to revisit]]></category>
		<category><![CDATA[WhatCouldPossiblyGoWrong]]></category>

		<guid isPermaLink="false">http://entens.net/?p=152</guid>
		<description><![CDATA[ 
Arighty, I said I would post this, but life got in the way. Heres the run down of my current plans.
Containers:
I'm going to have three 10 gallon stainless steel containers fabricated. These will serve as the sparg tank, the mash tun, and the boil kettle. I could really get away with two, but then [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://entens.net/wp-content/uploads/2009/09/uberbrewrig_controls.jpg"><img class="size-medium wp-image-157   alignleft" title="uberbrewrig_controls" src="http://entens.net/wp-content/uploads/2009/09/uberbrewrig_controls-300x235.jpg" alt="uberbrewrig_controls" width="300" height="235" /></a> <a href="http://entens.net/wp-content/uploads/2009/09/uberbrewrig.jpg"><img class="alignnone size-medium wp-image-156" title="uberbrewrig" src="http://entens.net/wp-content/uploads/2009/09/uberbrewrig-300x228.jpg" alt="uberbrewrig" width="300" height="228" /></a></p>
<p>Arighty, I said I would post this, but life got in the way. Heres the run down of my current plans.</p>
<p><strong>Containers:</strong><br />
I'm going to have three 10 gallon stainless steel containers fabricated. These will serve as the sparg tank, the mash tun, and the boil kettle. I could really get away with two, but then I couldn't run two batches at once.</p>
<p>Fermenters will be 10 gallon glass carboys, or stainless tanks. I'm hoping I will be able to get some air tight stainless tanks, but as far as cost and speed I can buy the glass carboys locally minus the cost of materials, fabrication, and design time.</p>
<p>Chiller will be a stainless tank holding approximately 12 gallons capacity to compensate for copper cooling plumbing and a pelter cooler.</p>
<p>All inter-container plumbing will use copper pipe.</p>
<p><strong>Heating:</strong></p>
<p>I will heating the sparg tank, mash tun, and boil kettle using propane heat. I'm planning on using a 21 or 32 tip propane heating element beneath each unit.  Propane makes things simple as I won't need to run a natural gas line because I can reuse propane canisters from the grill.</p>
<p><strong>Controls:</strong><br />
Right now I'm planning on using an<a href="http://www.ab.com/programmablecontrol/plc/slcsystem/index.html"> Allen-Bradley SLC-500 PLC</a> for all the grunt work. The SLC-500 is an industrial grade programmable logic controller. Allen-Bradley says they had 1.6 million of these little dandies installed worldwide, but they are now considered obsolete. Obsolete is relative. You can pick these units up for a song on ebay and they have more than enough capability to control my approximately 40 I/O points.</p>
<p>For controlling my SLC-500 I'm going to write some nifty code for an <a href="http://www.arduino.cc/">Arduino</a>. The Arduino is going to provide a 'supervisor' mode to the SLC-500.  Basically I want to abstract an web-based interface on top of the SLC-500 that can be used to program recipes and monitor the rig.</p>
]]></content:encoded>
			<wfw:commentRss>http://entens.net/2009/09/initial-brew-rig-planning/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Probably going to start homebrewing with an arduino</title>
		<link>http://entens.net/2009/09/probably-going-to-start-homebrewing-with-an-arduino/</link>
		<comments>http://entens.net/2009/09/probably-going-to-start-homebrewing-with-an-arduino/#comments</comments>
		<pubDate>Fri, 25 Sep 2009 04:00:55 +0000</pubDate>
		<dc:creator>entens</dc:creator>
				<category><![CDATA[Beer!]]></category>
		<category><![CDATA[WhatCouldPossiblyGoWrong]]></category>

		<guid isPermaLink="false">http://entens.net/?p=150</guid>
		<description><![CDATA[After attending a GE Fanuc workshop today and designing a rough an automated brewing system on the way home, I figure I can put the arduino I'm receiving on Friday to good use. I'll post my overview and notes tomorrow.
]]></description>
			<content:encoded><![CDATA[<p>After attending a GE Fanuc workshop today and designing a rough an automated brewing system on the way home, I figure I can put the arduino I'm receiving on Friday to good use. I'll post my overview and notes tomorrow.</p>
]]></content:encoded>
			<wfw:commentRss>http://entens.net/2009/09/probably-going-to-start-homebrewing-with-an-arduino/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pwnsauce Program: Microsoft Small Basic</title>
		<link>http://entens.net/2009/09/pwnsauce-program-microsoft-small-basic/</link>
		<comments>http://entens.net/2009/09/pwnsauce-program-microsoft-small-basic/#comments</comments>
		<pubDate>Mon, 21 Sep 2009 16:46:37 +0000</pubDate>
		<dc:creator>entens</dc:creator>
				<category><![CDATA[IDE]]></category>
		<category><![CDATA[Progamming]]></category>
		<category><![CDATA[n00bs]]></category>

		<guid isPermaLink="false">http://entens.net/?p=63</guid>
		<description><![CDATA[
Ever wanted to teach someone how to program? Did they lose you at the first mention of a pointer value?  Microsoft released a scaled down IDE and programming platform called Small Basic for the beginning programmers out there. Everything from fuctions to variables to arrays are explined n the accompanying 70ish page document.  Everything feels almost drag [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-64" title="smallbasic" src="http://entens.net/wp-content/uploads/2009/09/smallbasic.jpg" alt="smallbasic" width="550" height="387" /></p>
<p>Ever wanted to teach someone how to program? Did they lose you at the first mention of a pointer value?  Microsoft released a scaled down IDE and programming platform called Small Basic for the beginning programmers out there. Everything from fuctions to variables to arrays are explined n the accompanying 70ish page document.  Everything feels almost drag and drop. Perfect for programming noobs.</p>
<p><a href="http://msdn.microsoft.com/en-us/devlabs/cc950524.aspx">Goto software's site</a></p>
]]></content:encoded>
			<wfw:commentRss>http://entens.net/2009/09/pwnsauce-program-microsoft-small-basic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

