<?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>HuberBlog ::Jason Huber &#187; Tools</title>
	<atom:link href="http://huberblog.com/category/technology/tools-technology/feed/" rel="self" type="application/rss+xml" />
	<link>http://huberblog.com</link>
	<description>This is where Jason puts his stuff of personal interest.</description>
	<lastBuildDate>Thu, 17 May 2012 17:03:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Add an Archive button to outlook 2010</title>
		<link>http://huberblog.com/2012/01/25/add-an-archive-button-to-outlook-2010/</link>
		<comments>http://huberblog.com/2012/01/25/add-an-archive-button-to-outlook-2010/#comments</comments>
		<pubDate>Wed, 25 Jan 2012 21:11:20 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://huberblog.com/?p=515</guid>
		<description><![CDATA[I recently moved to a more concise Outlook folder structure: So then I started spending a lot of time simply moving messages from the inbox to the archived folder. Also when I read a message and move it, it was not marked as read. I hated wasting those precious 2 seconds So I googled something [...]]]></description>
			<content:encoded><![CDATA[<p>I recently moved to a more concise Outlook folder structure:<br />
<a href="http://huberblog.com/wp-content/uploads/2012/01/outlookfolders.png"><img src="http://huberblog.com/wp-content/uploads/2012/01/outlookfolders.png" alt="" title="outlookfolders" width="221" height="539" class="alignleft size-full wp-image-516" /></a></p>
<p>So then I started spending a lot of time simply moving messages from the inbox to the archived folder. Also when I read a message and move it, it was not marked as read. I hated wasting those precious 2 seconds <img src='http://huberblog.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>So I googled something like &#8220;outlook 2010 archive plugin&#8221; and ended up at lifehacker:<br />
<a href="http://lifehacker.com/5175347/add-a-gmail+like-archive-button-to-microsoft-outlook">http://lifehacker.com/5175347/add-a-gmail+like-archive-button-to-microsoft-outlook</a></p>
<p>The lifehacker example was for outlook 2007 and for an inbox with a single folder (one email address).</p>
<p>I created the certificate, I added the developer tools using this link:<br />
<a href="http://msdn.microsoft.com/en-us/library/ee814736.aspx">http://msdn.microsoft.com/en-us/library/ee814736.aspx</a></p>
<p>I enabled Macros using this information:</p>
<p>http://answers.microsoft.com/en-us/office/forum/office_2010-outlook/how-to-enable-macros-in-outlook-2010/791d5b21-c3e9-4e09-89f9-ea53341d7cb0</p>
<p>and I used the following code (worked fine for one folder):<br />
<code><br />
Sub Archive()<br />
Set ArchiveFolder = Application.GetNamespace("MAPI").GetDefaultFolder(olFolderInbox).Folders("Archived")<br />
For Each Msg In ActiveExplorer.Selection<br />
Msg.Move ArchiveFolder<br />
Next Msg<br />
End Sub<br />
</code></p>
<p>Make sure you folder is named &#8220;Archived&#8221; or change the code.</p>
<p>Now what happened to me was, if I archived an email from my devry folder, it went into the sage/archived. That would not do.<br />
Also the messages were still UnRead = true unless I clicked off of them and back on.</p>
<p>So I used this code for my situation:</p>
<p><code><br />
Sub Archive()</p>
<p>           Set Folders = Application.GetNamespace("MAPI").Folders</p>
<p>           For j = 1 To Folders.Count<br />
                If Folders(j).Name = "Jason.Huber@sage.com" Or Folders(j).Name = "jhuber@devry.edu" Then<br />
                    If Folders(j).Name = ActiveExplorer.CurrentFolder.Parent Then<br />
                        Set ArchiveFolder = Folders(j).Folders(2).Folders(1)<br />
                         For Each Msg In ActiveExplorer.Selection<br />
                            Msg.UnRead = False<br />
                            Msg.Move ArchiveFolder<br />
                        Next Msg<br />
                    End If<br />
                End If<br />
           Next j<br />
End Sub<br />
</code></p>
<p>Let me know if it works for you.</p>
]]></content:encoded>
			<wfw:commentRss>http://huberblog.com/2012/01/25/add-an-archive-button-to-outlook-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQLLite resources</title>
		<link>http://huberblog.com/2011/09/27/sqllite-resources/</link>
		<comments>http://huberblog.com/2011/09/27/sqllite-resources/#comments</comments>
		<pubDate>Tue, 27 Sep 2011 20:45:45 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Educational]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Teaching]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://huberblog.com/?p=514</guid>
		<description><![CDATA[I had a request from a student to show how to connect to a SQLLite db from C#. It turns out it is pretty straight forward. You just need a few tools. I will list what I find here: .NET ADO SQLLite components: http://sourceforge.net/projects/sqlite-dotnet2/ Great tutorial: http://adodotnetsqlite.sourceforge.net/ SQLLite Browser: http://sourceforge.net/projects/sqlitebrowser/]]></description>
			<content:encoded><![CDATA[<p>I had a request from a student to show how to connect to a SQLLite db from C#. It turns out it is pretty straight forward. You just need a few tools. I will list what I find here:</p>
<p>.NET ADO SQLLite components: http://sourceforge.net/projects/sqlite-dotnet2/<br />
Great tutorial: http://adodotnetsqlite.sourceforge.net/<br />
SQLLite Browser: http://sourceforge.net/projects/sqlitebrowser/</p>
]]></content:encoded>
			<wfw:commentRss>http://huberblog.com/2011/09/27/sqllite-resources/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Mikogo.com is the new dimdim but better</title>
		<link>http://huberblog.com/2011/01/19/mikogo-com-is-the-new-dimdim-but-better/</link>
		<comments>http://huberblog.com/2011/01/19/mikogo-com-is-the-new-dimdim-but-better/#comments</comments>
		<pubDate>Wed, 19 Jan 2011 17:48:06 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Educational]]></category>
		<category><![CDATA[Teaching]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[teaching sharing screen]]></category>

		<guid isPermaLink="false">http://huberblog.com/2011/01/19/mikogo-com-is-the-new-dimdim-but-better/</guid>
		<description><![CDATA[So I was contacted by a Mikogo.com rep after my dimdim post and I gave it a shot. Mikogo is awesome. It not only allows me to share my screen and give control but also let students share their screens and I take control. Just great. It was fast and clear. I recorded using camtasia [...]]]></description>
			<content:encoded><![CDATA[<p>So I was contacted by a Mikogo.com rep after my dimdim post and I gave it a shot. Mikogo is awesome. </p>
<p>It not only allows me to share my screen and give control but also let students share their screens and I take control. Just great. It was fast and clear. </p>
<p>I recorded using camtasia since the mikogo recording was in a proprietary format, but I did that anyway. </p>
<p>The only drawback and it is MINOR is a lack of built in audio. I had skype, so we used that.  No problem. Thanks Mikogo!</p>
]]></content:encoded>
			<wfw:commentRss>http://huberblog.com/2011/01/19/mikogo-com-is-the-new-dimdim-but-better/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>dimdim.com is dead? Long live join.me</title>
		<link>http://huberblog.com/2011/01/09/dimdim-com-is-dead-long-live-join-me/</link>
		<comments>http://huberblog.com/2011/01/09/dimdim-com-is-dead-long-live-join-me/#comments</comments>
		<pubDate>Sun, 09 Jan 2011 14:48:37 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Educational]]></category>
		<category><![CDATA[Teaching]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://huberblog.com/?p=506</guid>
		<description><![CDATA[I was shocked and dismayed to see salesforce had furchased dimdim and killed it (of course). I was told that my account would be active until 3/11/11. Whatever. I had been using join.me for some time now. Jane wrote about this today and her list fails to mention join.me which I find to be an [...]]]></description>
			<content:encoded><![CDATA[<p>I was shocked and dismayed to see salesforce had furchased dimdim and killed it (of course). I was told that my account would be active until 3/11/11. Whatever. I had been using join.me for some time now.</p>
<p><a href="http://janeknight.typepad.com/pick/2011/01/alternatives-for-dimdim.html">Jane wrote about this today </a>and her list fails to mention join.me which I find to be an easy and outstanding service.</p>
<p>I use this for face-to-face class meetings! I have students in the classroom that I give the link to so that they can better see the screen. The projectors at my school are top of the line, but cannot adequately display a 1440X900 resolution so that a students 20 feet away can see my code. Their physical machine can easily. Also they can screenshot or record from their local machine if they want (and they do!).</p>
<p>I say get join.me. I might even pay for an account I use it so much.</p>
<p>Jane &#8211; add join.me to the TOP of your list. Most of the other services you have alphabetically listed are worthless.</p>
]]></content:encoded>
			<wfw:commentRss>http://huberblog.com/2011/01/09/dimdim-com-is-dead-long-live-join-me/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Why upgrade to a newer browser?</title>
		<link>http://huberblog.com/2010/11/19/why-upgrade-to-a-newer-browser/</link>
		<comments>http://huberblog.com/2010/11/19/why-upgrade-to-a-newer-browser/#comments</comments>
		<pubDate>Fri, 19 Nov 2010 18:25:36 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Educational]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://huberblog.com/?p=505</guid>
		<description><![CDATA[Read this. Well if you cannot read it, then upgrade to a newer browser then read it. http://www.20thingsilearned.com/#/browser-protection/1]]></description>
			<content:encoded><![CDATA[<p>Read this. Well if you cannot read it, then upgrade to a newer browser then read it.</p>
<p>http://www.20thingsilearned.com/#/browser-protection/1</p>
]]></content:encoded>
			<wfw:commentRss>http://huberblog.com/2010/11/19/why-upgrade-to-a-newer-browser/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>My Security system (cameras)</title>
		<link>http://huberblog.com/2010/08/23/my-security-system-cameras/</link>
		<comments>http://huberblog.com/2010/08/23/my-security-system-cameras/#comments</comments>
		<pubDate>Mon, 23 Aug 2010 14:55:02 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://huberblog.com/?p=493</guid>
		<description><![CDATA[So I have iCam and some dlink cameras around my house. I have actually had them a very long time and finally got them working with the iPhone. It is a pretty neat setup and here are the results. I will tell you how I did it after the break. So I needed some iPhone [...]]]></description>
			<content:encoded><![CDATA[<p>So I have iCam and some dlink cameras around my house. I have actually had them a very long time and finally got them working with the iPhone. It is a pretty neat setup and here are the results. I will tell you how I did it after the break.<br />
<a href="http://huberblog.com/wp-content/uploads/2010/08/20100804_iphone-019.png"><img src="http://huberblog.com/wp-content/uploads/2010/08/20100804_iphone-019-e1280955460210.png" alt="" title="20100804_iphone 019" width="960" height="640" class="aligncenter size-full wp-image-494" /></a></p>
<p>So I needed some iPhone software. For that I went to <a href="http://skjm.com/icam/support.php">iCam. </a>I was able to check to see if my cameras were supported before I picked up the app. It works great. </p>
<p>There is a piece of software you need to have running on a pc to publish the feed though, so I have that running on my home server. I actually have one instance per camera running as a service to autostart with the server. I just realized I rebooted it &#8220;the hard way&#8221; and the cameras are up, so cool!</p>
<p>So some iPhone software, an app running on the server and a server. So far so good. I used the same process to run these apps as services as I have for dropbox.</p>
<p>So when we went to vegas I had the cameras wirelessly watching the dog and now I have wired them (it is much faster) directly to the router. It was hot in the attic. </p>
<p>The iCam software can actually turn on and off motion sensing from the iPhones, so you can not only see the motion events that are captured along with a real time video, but also turn off the feature which can also send you push notifications if you want. It is pretty full featured. I only have 2 cameras and have room for 2 more. I will need a new router at that point! The motion events it captures are in jpg, so I have those saved to my dropbox on the homeserver that way my laptop and iPhone get the new pics when there is motion. So I can view the pics that way too. </p>
]]></content:encoded>
			<wfw:commentRss>http://huberblog.com/2010/08/23/my-security-system-cameras/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>G1 root with Android 2.1</title>
		<link>http://huberblog.com/2010/08/09/g1-root-with-android-2-1/</link>
		<comments>http://huberblog.com/2010/08/09/g1-root-with-android-2-1/#comments</comments>
		<pubDate>Mon, 09 Aug 2010 14:05:29 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://huberblog.com/?p=481</guid>
		<description><![CDATA[I traded my iPhone 3G for $150 and a well used G1. I only have AT&#038;T so I had to unlock the G1 first here: http://www.unlock-tmobileg1.com/. Within an hour I had my unlock code. I tried to call TMobile and although I was able to give them some story about the phone the email came [...]]]></description>
			<content:encoded><![CDATA[<p>I traded my iPhone 3G for $150 and a well used G1.</p>
<p>I only have AT&#038;T so I had to unlock the G1 first here: <a href="http://www.unlock-tmobileg1.com/">http://www.unlock-tmobileg1.com/</a>. Within an hour I had my unlock code. I tried to call TMobile and although I was able to give them some story about the phone the email came back in the morning telling me I had to have my service for 60 days.</p>
<p>Then I have a problem with the speaker on the phone. I will probably end up replacing the earpiece, but for now I thought I could root it and patch the speaker volume settings. I needed root and I figured I would installed 2.1 at the same time since I was on 1.6. </p>
<p>I followed this: <a href="http://wiki.cyanogenmod.com/index.php?title=Full_Update_Guide_-_HTC_Dream">http://wiki.cyanogenmod.com/index.php?title=Full_Update_Guide_-_HTC_Dream</a> which also includes this: <a href="http://wiki.cyanogenmod.com/index.php?title=DangerSPL_%26_CyanogenMod_5/6">http://wiki.cyanogenmod.com/index.php?title=DangerSPL_%26_CyanogenMod_5/6</a>.</p>
<p>So I can tell you it was a bit scary compared with jailbreaking, but if you follow the directions and be careful to check the antenna version you will be ok. I hope to upgrade to 2.2, but 2.1 is much better than 1.6 for sure.</p>
]]></content:encoded>
			<wfw:commentRss>http://huberblog.com/2010/08/09/g1-root-with-android-2-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Use DropBox to back up your server?</title>
		<link>http://huberblog.com/2010/07/08/use-dropbox-to-back-up-your-server/</link>
		<comments>http://huberblog.com/2010/07/08/use-dropbox-to-back-up-your-server/#comments</comments>
		<pubDate>Thu, 08 Jul 2010 14:19:49 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[dropbox]]></category>

		<guid isPermaLink="false">http://huberblog.com/?p=472</guid>
		<description><![CDATA[Yet another use of dropbox I use it to back up my server&#8230; First I installed dropbox on my server. Free account using an email from one of the domains on that server. I could not use my primary account since everything on that account would also end up on my server. That is not [...]]]></description>
			<content:encoded><![CDATA[<p>Yet another use of dropbox I use it to back up my server&#8230; </p>
<p>First I installed dropbox on my server. Free account using an email from one of the domains on that server. I could not use my primary account since everything on that account would also end up on my server. That is not something I want or need.</p>
<p>So then I wrote my backup scripts to backup the databases and copy them into my dropbox on the server. Easy. At least everything is in the cloud. The problem is dropbox does not run as a service. So I had to adjust that.  I found the instructions here:<br />
<a href="http://superuser.com/questions/41992/how-to-configure-dropbox-as-a-service">http://superuser.com/questions/41992/how-to-configure-dropbox-as-a-service</a>.</p>
<p>I then removed it from my local user account. </p>
<p>The server I have has severely restricted RAM so running dropbox all the time was not ideal.</p>
<p>So I decided to get a little more creative. At night I run my backups and copy the files to my dropbox folder. I do not have dropbox running at this point. I let the copy take place and all that then an hour later start dropbox. Then 2 hours later kill dropbox. The only real risk there is that dropbox might not have the time to sync the files. I can always check this locally though. How?</p>
<p>I want to get the database down to my harddrive as well. This way I can take monthly backups too. </p>
<p>So on the server within my dropbox folder I right clicked the folder containing the backups. Went to dropbox and share. Then I entered my primary accounts email. </p>
<p>On my laptop I needed to accept the share. So now when the server updates a file at night my primary account gets the file. When I start up my laptop in the morning &#8212; every morning &#8212; I should have some updated databases. Also I have a machine running at home &#8212; call it my home server (rather than my bittorrent server where I host all the linux distros) and it gets the file immediately at night. When I start my laptop up at home my laptop actually gets the files from that server over the lan. Fast!</p>
<p>I upgraded my primary account to 50 Gigs too so that I have plenty of space. </p>
<p><a href="http://huberblog.com/wp-content/uploads/2010/07/Dropbox50.jpg"><img src="http://huberblog.com/wp-content/uploads/2010/07/Dropbox50.jpg" alt="" title="Dropbox50" width="343" height="109" class="alignright size-full wp-image-473" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://huberblog.com/2010/07/08/use-dropbox-to-back-up-your-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Another reason to use DropBox</title>
		<link>http://huberblog.com/2010/02/22/another-reason-to-use-dropbox/</link>
		<comments>http://huberblog.com/2010/02/22/another-reason-to-use-dropbox/#comments</comments>
		<pubDate>Mon, 22 Feb 2010 14:50:24 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Educational]]></category>
		<category><![CDATA[Teaching]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[dropbox]]></category>
		<category><![CDATA[online storage]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://huberblog.com/?p=461</guid>
		<description><![CDATA[Today I had a student call me on my google voice number and tell me that his laptop would not start up with video. Nothing on the screen. He even tried to hook it to a TV and there was nothing coming out. Video card seemed to be toast. No big deal? Normally this would [...]]]></description>
			<content:encoded><![CDATA[<p>Today I had a student call me on my google voice number and tell me that his laptop would not start up with video. Nothing on the screen. He even tried to hook it to a TV and there was nothing coming out. Video card seemed to be toast. </p>
<h3>No big deal?</h3>
<p>Normally this would be a bummer because you would need a new laptop or at least an expensive repair, but in his case it is 3 days before senior project. I know these students had placed most of their code into github.com and that this student has already delivered much of the code to the client (he logs into the client server regularly while I am assisting him). So yeah pretty big deal just before senior project.</p>
<h3>How does Dropbox help?</h3>
<p>Any computer with Office 2007, Visual Studio and Remote Desktop Connection would allow this student to keep working and finish anything he needed for his project. He can just log into dropbox.com and manually upload and download the files he needs. Piece of cake. </p>
<p>I sent him the signup code: <a href="https://www.dropbox.com/referrals/NTgxNTA3OQ">https://www.dropbox.com/referrals/NTgxNTA3OQ</a>. I was notified within minutes that my storage was increased because he has signed up.</p>
<p>Good job Jake. Move everything you want saved into your dropbox folder inside of my documents and just let it do the uploading. 2 gigs for free and when you refer friends you get a bit more: <a href="http://huberblog.com/wp-content/uploads/2010/02/spaceincreased.png"><img src="http://huberblog.com/wp-content/uploads/2010/02/spaceincreased-300x112.png" alt="" title="spaceincreased" width="300" height="112" class="alignright size-medium wp-image-462" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://huberblog.com/2010/02/22/another-reason-to-use-dropbox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Vanity Remover &#8211; a simple tool</title>
		<link>http://huberblog.com/2010/02/03/vanity-remover-a-simple-tool/</link>
		<comments>http://huberblog.com/2010/02/03/vanity-remover-a-simple-tool/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 14:11:42 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://huberblog.com/?p=446</guid>
		<description><![CDATA[I found something like 1400 folders that had no content. I ran the vanity remover yesterday and haven&#8217;t missed anything yet. Does it really matter that you remove empty folders from your HDD? I cannot imagine why, but I am sure someone somewhere will tell you. Check Google. The funny thing about this app is [...]]]></description>
			<content:encoded><![CDATA[<p>I found something like 1400 folders that had no content. I ran the <a href="http://vanityremover.codeplex.com/">vanity remover </a>yesterday and haven&#8217;t missed anything yet.</p>
<p><a href="http://huberblog.com/wp-content/uploads/2010/01/VanityRemover.png"><img src="http://huberblog.com/wp-content/uploads/2010/01/VanityRemover.png" alt="" title="VanityRemover" width="235" height="175" class="alignright size-full wp-image-447" /></a></p>
<p>Does it really matter that you remove empty folders from your HDD? I cannot imagine why, but I am sure someone somewhere will tell you. Check Google. The funny thing about this app is the name. I think it is vain to actually care about the cleanliness of your hdd in this detail. Like checking your breath with your own hand. Not sure if it even works.</p>
<p>by the way I found this via <a href="http://www.downloadsquad.com/2010/01/25/vanity-remover-quickly-find-and-remove-delete-empty-folders/">DLS</a></p>
]]></content:encoded>
			<wfw:commentRss>http://huberblog.com/2010/02/03/vanity-remover-a-simple-tool/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

