<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Micro Software Development &#187; Uncategorized</title>
	<atom:link href="http://nebtech.wordpress.com/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://nebtech.wordpress.com</link>
	<description>Delving into software development and marketing lifecycles</description>
	<lastBuildDate>Thu, 25 Jun 2009 19:08:02 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='nebtech.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/7be920d7fed7249b0e29b7362f1b9fd6?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Micro Software Development &#187; Uncategorized</title>
		<link>http://nebtech.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://nebtech.wordpress.com/osd.xml" title="Micro Software Development" />
		<item>
		<title>Converting *nix files to Win text files</title>
		<link>http://nebtech.wordpress.com/2009/06/25/converting-nix-files-to-win-text-files/</link>
		<comments>http://nebtech.wordpress.com/2009/06/25/converting-nix-files-to-win-text-files/#comments</comments>
		<pubDate>Thu, 25 Jun 2009 19:08:02 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://nebtech.wordpress.com/?p=51</guid>
		<description><![CDATA[I don&#8217;t know why it took me so long to do this.  I regularly download files, only to open them up to see that they were created on a *nix computer.  That means it uses CR to symbolize the end of a line rather than CRLF, which is the common end of line on a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nebtech.wordpress.com&blog=467687&post=51&subd=nebtech&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I don&#8217;t know why it took me so long to do this.  I regularly download files, only to open them up to see that they were created on a *nix computer.  That means it uses CR to symbolize the end of a line rather than CRLF, which is the common end of line on a Windows system.  As part of another project that I am working on, I downloaded a huge archive of spam and regular email.  The only problem was all of the files used CR instead of CRLF.  That, and they didn&#8217;t have an extension, so I had to choose each time to open it with Notepad.</p>
<p>So I went into VB.Net, and made a quick and dirty form that recursively looked at each subfolder and converted each file.  As part of the conversion, it was changed to a .txt file, and the original was deleted.</p>
<p>Here is the code to do that:<br />
<code><br />
Private Sub ConvertFile(ByVal fi As FileInfo)<br />
  If fi.Extension = ".txt" Then Return</code></p>
<p><code>  Dim r As New FileStream(fi.FullName, FileMode.Open)<br />
  Dim d As New StreamReader(r)<br />
  Dim s As New FileStream(fi.FullName &amp; ".txt", FileMode.Create)<br />
  Dim w As New StreamWriter(s)<br />
  Dim str As String = ""<br />
  Do While Not d.EndOfStream<br />
    w.WriteLine(d.ReadLine)<br />
  Loop<br />
  d.Close()<br />
  r.Close()<br />
  fi.Delete()<br />
  w.Flush()<br />
  w.Close()<br />
  s.Close()<br />
  _fileCount += 1<br />
  lblOutput.Text = "Converted " &amp; _fileCount &amp; " files."<br />
  Application.DoEvents()<br />
End Sub</code></p>
<p>Hopefully this will help anyone having the same type of frustrations.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nebtech.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nebtech.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nebtech.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nebtech.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nebtech.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nebtech.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nebtech.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nebtech.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nebtech.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nebtech.wordpress.com/51/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nebtech.wordpress.com&blog=467687&post=51&subd=nebtech&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://nebtech.wordpress.com/2009/06/25/converting-nix-files-to-win-text-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4011e21eec6a65688aaaeee259e14b79?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Michael</media:title>
		</media:content>
	</item>
		<item>
		<title>Hair pulling</title>
		<link>http://nebtech.wordpress.com/2007/10/30/hair-pulling/</link>
		<comments>http://nebtech.wordpress.com/2007/10/30/hair-pulling/#comments</comments>
		<pubDate>Wed, 31 Oct 2007 01:43:39 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[sql server express]]></category>
		<category><![CDATA[vb.net]]></category>

		<guid isPermaLink="false">http://nebtech.wordpress.com/2007/10/30/hair-pulling/</guid>
		<description><![CDATA[I finally just figured out why my database wasn&#8217;t updating.  Such a simple matter really, but it wasn&#8217;t easy to find through Google so I am posting here, mainly as a future reminder.
I am writing a small app to use as a podcast listener.  Since I don&#8217;t own an iPod, I listen to podcasts throughout [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nebtech.wordpress.com&blog=467687&post=48&subd=nebtech&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I finally just figured out why my database wasn&#8217;t updating.  Such a simple matter really, but it wasn&#8217;t easy to find through Google so I am posting here, mainly as a future reminder.</p>
<p>I am writing a small app to use as a podcast listener.  Since I don&#8217;t own an iPod, I listen to podcasts throughout the day.  Well I was at the point that I wanted to start adding data to the database.  But no matter what I tried, the data wasn&#8217;t updated.  It was getting very frustrating.  What I finally figured out was VB was copying the database to the debug directory each time.  A simple setting on the SQL Server Express properties, changing the <strong>Copy to output</strong> from Always to Copy if newer fixed it.</p>
<p>Hopefully this will save you some time in the future.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/nebtech.wordpress.com/48/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/nebtech.wordpress.com/48/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nebtech.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nebtech.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nebtech.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nebtech.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nebtech.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nebtech.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nebtech.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nebtech.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nebtech.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nebtech.wordpress.com/48/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nebtech.wordpress.com&blog=467687&post=48&subd=nebtech&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://nebtech.wordpress.com/2007/10/30/hair-pulling/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4011e21eec6a65688aaaeee259e14b79?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Michael</media:title>
		</media:content>
	</item>
		<item>
		<title>Vista Sidebar Gadget Updated</title>
		<link>http://nebtech.wordpress.com/2007/07/09/vista-sidebar-gadget-updated/</link>
		<comments>http://nebtech.wordpress.com/2007/07/09/vista-sidebar-gadget-updated/#comments</comments>
		<pubDate>Tue, 10 Jul 2007 01:46:14 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://nebtech.wordpress.com/2007/07/09/vista-sidebar-gadget-updated/</guid>
		<description><![CDATA[I just finished posting the v1.1 of my IP Status gadget.  But you can&#8217;t get it yet.  Why?  Because it is &#8220;Pending approval.&#8221;  When it gets approved, you will notice a couple differences.  One, it now has a shiny blue background.  Two, it no longer requires you to load an asp page on a public [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nebtech.wordpress.com&blog=467687&post=46&subd=nebtech&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I just finished posting the v1.1 of my IP Status gadget.  But you can&#8217;t get it yet.  Why?  Because it is &#8220;Pending approval.&#8221;  When it gets approved, you will notice a couple differences.  One, it now has a shiny blue background.  Two, it no longer requires you to load an asp page on a public website in order to get your public ip address.  It uses a web service from whatismyip.com.  Three, there is no longer a settings page, as it didn&#8217;t make sense to have one.  The only thing that I could put into a settings page is maybe the refresh interval, but I am not worried about that at this time.</p>
<p>As soon as it gets approved, I will post the link here.  Maybe now it will get more than 2 stars <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Here is a picture of it:<br />
<a href="http://nebtech.files.wordpress.com/2007/07/thumbnail.jpg" title="thumbnail.jpg"><img src="http://nebtech.files.wordpress.com/2007/07/thumbnail.thumbnail.jpg" alt="thumbnail.jpg" /></a></p>
<p><strong>EDIT:</strong> It just got approved.  Here is the link: <a target="_blank" href="http://gallery.live.com/LiveItemDetail.aspx?li=44a5ddd7-daa1-46cc-a9fa-7204b734f074">http://gallery.live.com/LiveItemDetail.aspx?li=44a5ddd7-daa1-46cc-a9fa-7204b734f074</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/nebtech.wordpress.com/46/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/nebtech.wordpress.com/46/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nebtech.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nebtech.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nebtech.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nebtech.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nebtech.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nebtech.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nebtech.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nebtech.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nebtech.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nebtech.wordpress.com/46/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nebtech.wordpress.com&blog=467687&post=46&subd=nebtech&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://nebtech.wordpress.com/2007/07/09/vista-sidebar-gadget-updated/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4011e21eec6a65688aaaeee259e14b79?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Michael</media:title>
		</media:content>

		<media:content url="http://nebtech.files.wordpress.com/2007/07/thumbnail.thumbnail.jpg" medium="image">
			<media:title type="html">thumbnail.jpg</media:title>
		</media:content>
	</item>
		<item>
		<title>Sample ASP script for getting your public IP address</title>
		<link>http://nebtech.wordpress.com/2007/05/21/sample-asp-script-for-getting-your-public-ip-address/</link>
		<comments>http://nebtech.wordpress.com/2007/05/21/sample-asp-script-for-getting-your-public-ip-address/#comments</comments>
		<pubDate>Mon, 21 May 2007 20:45:21 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://nebtech.wordpress.com/2007/05/21/sample-asp-script-for-getting-your-public-ip-address/</guid>
		<description><![CDATA[Wrap this in HTML, BODY and % tags

Dim UserIPAddress
UserIPAddress = Request.ServerVariables(”HTTP_X_FORWARDED_FOR”)
If UserIPAddress = “” Then
UserIPAddress = Request.ServerVariables(”REMOTE_ADDR”)
End If
response.write(UserIPAddress)

Post this on a webserver that you have access to as something.asp, and use that address in the gadget.
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nebtech.wordpress.com&blog=467687&post=42&subd=nebtech&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Wrap this in HTML, BODY and % tags<br />
<code><br />
Dim UserIPAddress<br />
UserIPAddress = Request.ServerVariables(”HTTP_X_FORWARDED_FOR”)<br />
If UserIPAddress = “” Then<br />
UserIPAddress = Request.ServerVariables(”REMOTE_ADDR”)<br />
End If<br />
response.write(UserIPAddress)<br />
</code></p>
<p>Post this on a webserver that you have access to as something.asp, and use that address in the gadget.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/nebtech.wordpress.com/42/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/nebtech.wordpress.com/42/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nebtech.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nebtech.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nebtech.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nebtech.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nebtech.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nebtech.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nebtech.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nebtech.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nebtech.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nebtech.wordpress.com/42/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nebtech.wordpress.com&blog=467687&post=42&subd=nebtech&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://nebtech.wordpress.com/2007/05/21/sample-asp-script-for-getting-your-public-ip-address/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4011e21eec6a65688aaaeee259e14b79?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Michael</media:title>
		</media:content>
	</item>
		<item>
		<title>SourceGear Vault</title>
		<link>http://nebtech.wordpress.com/2007/01/23/sourcegear-vault/</link>
		<comments>http://nebtech.wordpress.com/2007/01/23/sourcegear-vault/#comments</comments>
		<pubDate>Wed, 24 Jan 2007 03:10:02 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://nebtech.wordpress.com/2007/01/23/sourcegear-vault/</guid>
		<description><![CDATA[After finally getting it installed (so much for actually reading the documentation), and using it this evening, I have to say I really love Vault.  And really it isn&#8217;t specifically Vault, but source control entirely.  I have been experimenting with have a collection that held another collection of a class.  And serializing it out to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nebtech.wordpress.com&blog=467687&post=30&subd=nebtech&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>After finally getting it installed (so much for actually reading the documentation), and using it this evening, I have to say I really love Vault.  And really it isn&#8217;t specifically Vault, but source control entirely.  I have been experimenting with have a collection that held another collection of a class.  And serializing it out to an XML file.  It was basically MasterCollection, that inherits CollectionBase, and held GroupCollection, which also inherits from CollectionBase.  GroupCollection held Accounts.  The idea was there would only be one MasterCollection, there can be more than one GroupCollection which holds many Accounts.  No problem so far.  Until I tried to add a variable Name to the GroupCollection.  The name never got serialized.  What I got was &lt;ArrayOfArrayOfAccounts&gt;&lt;/&gt;. </p>
<p>I ended up trying many different ways to fix this.  I would check the code out of Vault, make changes to it, see if it worked, and if it didn&#8217;t, I&#8217;d just revert the check out and check it out again.  Sometimes I would check in the code so that I could look at it later.  This allowed me to experiment without having to copy the folder to another place on the hard drive.  I already have multiple copies of previous projects laying around and can&#8217;t tell which is the latest/greatest.  With Vault, I put in comments what I changed/modified.  So I can look back at it later.</p>
<p>And something else that I noticed for the first time today.  I use the personalized Google page for my homepage.  I have a tab set up just for the different blogs I look at.  Sometime Google snuck in a new feature.  It now shows me the date and/or time of the posts.  So I can tell by looking at the date (if the date posted is not today) or the time (if the date posted is today) and know if I read it or not.  Each post also has a + that you can click to expand to read the whole post.</p>
<p>I just hope that it shows up correctly for stats when I look at a post using the Google site.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/nebtech.wordpress.com/30/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/nebtech.wordpress.com/30/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nebtech.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nebtech.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nebtech.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nebtech.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nebtech.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nebtech.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nebtech.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nebtech.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nebtech.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nebtech.wordpress.com/30/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nebtech.wordpress.com&blog=467687&post=30&subd=nebtech&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://nebtech.wordpress.com/2007/01/23/sourcegear-vault/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4011e21eec6a65688aaaeee259e14b79?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Michael</media:title>
		</media:content>
	</item>
		<item>
		<title>Progress, sortof</title>
		<link>http://nebtech.wordpress.com/2007/01/22/progress-sortof/</link>
		<comments>http://nebtech.wordpress.com/2007/01/22/progress-sortof/#comments</comments>
		<pubDate>Tue, 23 Jan 2007 00:12:27 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://nebtech.wordpress.com/2007/01/22/progress-sortof/</guid>
		<description><![CDATA[I have mostly finished with the gui portion of the project.  There are a few details to finish up with, namely coming up with the registration code format.  Also, tying it to the website, which isn&#8217;t completed yet either.
In the process of testing, I determined that my way that I was going to store data [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nebtech.wordpress.com&blog=467687&post=29&subd=nebtech&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I have mostly finished with the gui portion of the project.  There are a few details to finish up with, namely coming up with the registration code format.  Also, tying it to the website, which isn&#8217;t completed yet either.</p>
<p>In the process of testing, I determined that my way that I was going to store data will not work.  So I deleted that section and started over.  But after I deleted the section and saved it, I thought it would be nice to be able to see how I did it before.  This led again to getting Vault set up and running.  Well, I am working through the dependencies now.  First, I had to install IIS (I am using WinXP in a Virtual PC to run Vault).  Once that was done, it then told me that I needed to install the .Net 1.1 framework.  So I go to Windows Update, which lists 67 critical updates.  This is essentially a clean OS install.  Adding .Net 1.1 framework made it 68 updates.  Right now it is on #8.</p>
<p>And on it goes&#8230;</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/nebtech.wordpress.com/29/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/nebtech.wordpress.com/29/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nebtech.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nebtech.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nebtech.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nebtech.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nebtech.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nebtech.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nebtech.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nebtech.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nebtech.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nebtech.wordpress.com/29/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nebtech.wordpress.com&blog=467687&post=29&subd=nebtech&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://nebtech.wordpress.com/2007/01/22/progress-sortof/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4011e21eec6a65688aaaeee259e14b79?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Michael</media:title>
		</media:content>
	</item>
		<item>
		<title>Off topic rant</title>
		<link>http://nebtech.wordpress.com/2007/01/17/off-topic-rant/</link>
		<comments>http://nebtech.wordpress.com/2007/01/17/off-topic-rant/#comments</comments>
		<pubDate>Wed, 17 Jan 2007 14:25:26 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://nebtech.wordpress.com/2007/01/17/off-topic-rant/</guid>
		<description><![CDATA[My older son (who is 8 years old) has recently begun to like country music.  Or specifically one band, Rascal Flatts.  This started because they did a song on the Cars movie soundtrack.  He received their new CD for Christmas this year.
Now I don&#8217;t mind him listening to country music.  I like country music myself.  [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nebtech.wordpress.com&blog=467687&post=28&subd=nebtech&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>My older son (who is 8 years old) has recently begun to like country music.  Or specifically one band, Rascal Flatts.  This started because they did a song on the Cars movie soundtrack.  He received their new CD for Christmas this year.</p>
<p>Now I don&#8217;t mind him listening to country music.  I like country music myself.  And he could be listening to a lot worse!</p>
<p>But now that he is starting to pay attention to music and radio stations, I learned about the sorry state of affairs in FM programming.  I usually only listen to XM radio.  I have the boom box in my office at work and the car kit in my vehicle.  The only time that I listen to anything else is I turn on the local AM news/talk station to hear traffic reports, usually only after I am in a traffic jam.</p>
<p>There used to be one station that I listened to on FM.  It&#8217;s format was 80&#8217;s music.  But they changed a while ago to 80&#8217;s &#8211; today, and I don&#8217;t particularly care for today&#8217;s pop music.</p>
<p>Now the local stations have done a format dance again.  The oldies station is now country music (making it two country stations in the area), and the former 80&#8217;s station is now oldies (which is now defined as 60s-80s).</p>
<p>It has been tried in the past to have two country stations in the area.  It hasn&#8217;t worked in the past, but that doesn&#8217;t keep radio stations from trying.  I just wish the established country station would be the one to change format and dump their morning show.  And this is mainly because their morning show has a guy pretending to be an old woman.  That just drives me nuts.</p>
<p>As far as I know there are only two FM stations in the area that have kept the same format for years.  One is the aforementioned country station, the other is the classic rock station.  The one-time 80&#8217;s station was a gospel station when I moved to this area.</p>
<p>Enough ranting.  Back to regularly scheduled programming <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/nebtech.wordpress.com/28/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/nebtech.wordpress.com/28/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nebtech.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nebtech.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nebtech.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nebtech.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nebtech.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nebtech.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nebtech.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nebtech.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nebtech.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nebtech.wordpress.com/28/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nebtech.wordpress.com&blog=467687&post=28&subd=nebtech&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://nebtech.wordpress.com/2007/01/17/off-topic-rant/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4011e21eec6a65688aaaeee259e14b79?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Michael</media:title>
		</media:content>
	</item>
		<item>
		<title>Argh, I am sooo fed up with crappy UI</title>
		<link>http://nebtech.wordpress.com/2006/10/25/argh-i-am-sooo-fed-up-with-crappy-ui/</link>
		<comments>http://nebtech.wordpress.com/2006/10/25/argh-i-am-sooo-fed-up-with-crappy-ui/#comments</comments>
		<pubDate>Wed, 25 Oct 2006 07:55:47 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://nebtech.wordpress.com/2006/10/25/argh-i-am-sooo-fed-up-with-crappy-ui/</guid>
		<description><![CDATA[Or how I spent this evening.
My one goal for this evening was recovering files from a hard drive.  The hard drive had lost its partition information.  The program that I regularly use for this purpose (RecoverMyFiles) was not working well.  It gave me a divide by zero error when trying to do a Fast Format [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nebtech.wordpress.com&blog=467687&post=21&subd=nebtech&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Or how I spent this evening.</p>
<p>My one goal for this evening was recovering files from a hard drive.  The hard drive had lost its partition information.  The program that I regularly use for this purpose (RecoverMyFiles) was not working well.  It gave me a divide by zero error when trying to do a Fast Format Recover.  The Long Format Recover took hours (around 12 hours if I remember right) and was not able to recover much of the files.  It could not rebuild the folder structure and a lot of the filenames had @s in the names.</p>
<p>So I go searching google for lost partition hard drive or something like that.  I downloaded a couple programs to try out.  One had a nice looking UI, but the button images did not make any sense at all.  And that one wanted to phone home when exiting.  ZoneAlarm caught it doing that, so all it guaranteed was that I was going to uninstall it.  Somehow the clueless wonders that wrote the program didn&#8217;t manage to get it listed in Add/Remove programs.  Luckily they had a uninstall link in the start menu programs folder.  Both of the programs that I downloaded had big readability problems.  Poor english, using custom boxes for &#8220;tips&#8221; that did not have scroll bars, so you could only read about half of the tip.</p>
<p>Another program thought it was so good, that there wasn&#8217;t any reason to offer a trial version.  I paid for that, realized it would not work, and then had to open a support ticket to get a refund.  If I do not get a reply back by tomorrow evening, I will have to charge it back, which means instead of a $25 sale, they get $0 in sales and $25-30 in bank charges.  Maybe that will make them rethink not having a trial version.</p>
<p>Well I finally got the files recovered.  I used a DOS program called SpinRite to fix the hard drive, then a program called GetDataBack for FAT to recover the files.  A whole evening wasted!</p>
<p>And I still don&#8217;t know why I get that divide by zero error in RecoverMyFiles.  I am waiting for a response from support about the bug I sent them.  They did give me a debug version so they could capture more information.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/nebtech.wordpress.com/21/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/nebtech.wordpress.com/21/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nebtech.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nebtech.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nebtech.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nebtech.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nebtech.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nebtech.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nebtech.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nebtech.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nebtech.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nebtech.wordpress.com/21/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nebtech.wordpress.com&blog=467687&post=21&subd=nebtech&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://nebtech.wordpress.com/2006/10/25/argh-i-am-sooo-fed-up-with-crappy-ui/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4011e21eec6a65688aaaeee259e14b79?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Michael</media:title>
		</media:content>
	</item>
		<item>
		<title>First post</title>
		<link>http://nebtech.wordpress.com/2006/10/10/hello-world/</link>
		<comments>http://nebtech.wordpress.com/2006/10/10/hello-world/#comments</comments>
		<pubDate>Tue, 10 Oct 2006 22:12:19 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[This is the first post in this blog.
I plan on using this blog to flesh out ideas that I have regarding development, sales, and marketing my software product.
Right now I think that I will begin working on a database application that I will be able to use at my day job.  It would have entries [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nebtech.wordpress.com&blog=467687&post=1&subd=nebtech&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>This is the first post in this blog.</p>
<p>I plan on using this blog to flesh out ideas that I have regarding development, sales, and marketing my software product.</p>
<p>Right now I think that I will begin working on a database application that I will be able to use at my day job.  It would have entries for each piece of equipment in my office, and allow me to trace paths from one piece of equipment to another.  Sortof like if you had a room of servers, switches, cat5 patch panels, etc.  My app will have an entry for a switch, and then each port on the switch will be traced to where it plugs into. </p>
<p>I believe that this will help a lot in untangling the web of wiring, panels, and equipment that I have to deal with.  Yes, my current employer has a huge database that has all this information in it.  The problem with that database is it is huge (containing every panel in 70+ offices), and hard to find the information that I am looking for.  The other problem is that each time my office was purchased by another company (2 times in the last 2 years), the migration from one database platform to another is difficult.  As a result, most of the information that I can put my hands on is in Excel spreadsheets.</p>
<p>For one office, the huge database platforms are too much.  I want something that is easily updatable and searchable.  I will be able to put a customer name on a path, along with what the ID is now, what it was last year, and the original order that installed it.</p>
<p>Anyway, that is where I am at now.  More info to come.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/nebtech.wordpress.com/1/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/nebtech.wordpress.com/1/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nebtech.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nebtech.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nebtech.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nebtech.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nebtech.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nebtech.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nebtech.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nebtech.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nebtech.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nebtech.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nebtech.wordpress.com&blog=467687&post=1&subd=nebtech&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://nebtech.wordpress.com/2006/10/10/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4011e21eec6a65688aaaeee259e14b79?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Michael</media:title>
		</media:content>
	</item>
	</channel>
</rss>