<?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>botsko &#187; Tech-Tidbit</title>
	<atom:link href="http://www.botsko.net/blog/category/tech-tidbit/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.botsko.net/blog</link>
	<description>continuing education</description>
	<lastBuildDate>Sat, 24 Jul 2010 21:42:29 +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>Creating a Remote Git Repository</title>
		<link>http://www.botsko.net/blog/2009/08/13/creating-remote-git-repository/</link>
		<comments>http://www.botsko.net/blog/2009/08/13/creating-remote-git-repository/#comments</comments>
		<pubDate>Thu, 13 Aug 2009 21:54:10 +0000</pubDate>
		<dc:creator>Michael Botsko</dc:creator>
				<category><![CDATA[Git]]></category>
		<category><![CDATA[Systems]]></category>
		<category><![CDATA[Tech-Tidbit]]></category>

		<guid isPermaLink="false">http://www.botsko.net/blog/?p=412</guid>
		<description><![CDATA[Here is a quick and dirty guide to create your own remote repository. Access is controlled through standard ssh so it&#8217;s as secure as your ssh access is. $ mkdir /git/repos/myapp.git $ cd /git/repos/myapp.git $ git --bare init $ exit On your local machine, find the local git repository that you want to push to [...]]]></description>
			<content:encoded><![CDATA[<p>Here is a quick and dirty guide to create your own remote repository. Access is controlled through standard ssh so it&#8217;s as secure as your ssh access is.<br />
<span id="more-412"></span><br />
<code>$ mkdir /git/repos/myapp.git<br />
$ cd /git/repos/myapp.git<br />
$ git --bare init<br />
$ exit</code></p>
<p>On your local machine, find the local git repository that you want to push to the remote location.</p>
<p><code>$ git remote add origin ssh://yourdomain.com/git/repos/myapp.git<br />
$ git push origin master</code></p>
<p>Now your local repo will be tracking the remote repository and you may continue pushing/pulling it from anywhere. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.botsko.net/blog/2009/08/13/creating-remote-git-repository/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing Git on Cent OS 5</title>
		<link>http://www.botsko.net/blog/2009/08/13/installing-git-on-cent-os-5-mediatemple-dv3-0/</link>
		<comments>http://www.botsko.net/blog/2009/08/13/installing-git-on-cent-os-5-mediatemple-dv3-0/#comments</comments>
		<pubDate>Thu, 13 Aug 2009 21:50:30 +0000</pubDate>
		<dc:creator>Michael Botsko</dc:creator>
				<category><![CDATA[Git]]></category>
		<category><![CDATA[Systems]]></category>
		<category><![CDATA[Tech-Tidbit]]></category>

		<guid isPermaLink="false">http://www.botsko.net/blog/?p=415</guid>
		<description><![CDATA[It&#8217;s pretty straightforward to install Git on a mediatemple DV 3.0 server. If you have later versions of their servers with Yum installed, you may be able to simply install it through yum. To begin you need to download the latest version and run through the standard extraction and configure/make/make install. $ wget http://kernel.org/pub/software/scm/git/git-1.6.4.tar.gz $ [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s pretty straightforward to install Git on a mediatemple DV 3.0 server. If you have later versions of their servers with Yum installed, you may be able to simply install it through yum.</p>
<p>To begin you need to download the latest version and run through the standard extraction and configure/make/make install.</p>
<p><span id="more-415"></span></p>
<p><code>$ wget http://kernel.org/pub/software/scm/git/git-1.6.4.tar.gz<br />
$ tar -zxvf *.gz<br />
$ cd git*<br />
$ ./configure --prefix=/usr/local<br />
$ make<br />
$ make install</code></p>
<p>Try entering <code>git</code> into the command line to ensure that everything installed properly.</p>
<p>Turn on command line coloring, very helpful:<br />
<code><br />
$ git config --global color.branch "auto"<br />
$ git config --global color.status "auto"<br />
$ git config --global color.diff "auto"<br />
</code></p>
<p>That&#8217;s it!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.botsko.net/blog/2009/08/13/installing-git-on-cent-os-5-mediatemple-dv3-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Duplicate Line/Selection in Komodo 5</title>
		<link>http://www.botsko.net/blog/2009/02/19/duplicate-lineselection-in-komodo-5/</link>
		<comments>http://www.botsko.net/blog/2009/02/19/duplicate-lineselection-in-komodo-5/#comments</comments>
		<pubDate>Fri, 20 Feb 2009 07:20:05 +0000</pubDate>
		<dc:creator>Michael Botsko</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Tech-Tidbit]]></category>

		<guid isPermaLink="false">http://www.botsko.net/blog/?p=275</guid>
		<description><![CDATA[Update: Trent from ActiveState (developers of Komodo) notified me that they&#8217;ve actually just completed this feature within the latest nightly builds. More information here. Exploring the ability to create macros and bind them to key commands in Komodo IDE. I&#8217;m reposting the below macro that duplicates the lines or the current selection. Thus functionality was [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Update:</strong> Trent from ActiveState (developers of Komodo) notified me that they&#8217;ve actually just completed this feature within the latest nightly builds. <a href="http://trentm.com/blog/archives/2009/02/20/duplicate-line-or-selection-in-komodo/">More information here</a>.</p>
<p>Exploring the ability to create macros and bind them to key commands in Komodo IDE. I&#8217;m reposting the below macro that duplicates the lines or the current selection. Thus functionality was previously is Zend Studio 5, went missing from 6, and thanks to the macro, is available in Komodo. Enjoy!</p>
<pre class="brush: jscript;">
// Duplicate Line or Duplicate Selection
komodo.assertMacroVersion(2);
if (komodo.view) { komodo.view.setFocus() };

var ke = komodo.editor;

if (ko.views.manager.currentView.scimoz.selText){
    // Copy the current selection
    new_selection = komodo.interpolate('%s');
    var pos = ke.currentPos;
    ke.insertText(pos,new_selection);
}else {
    ke.lineDuplicate();
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.botsko.net/blog/2009/02/19/duplicate-lineselection-in-komodo-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install Apache, MySQL, and PHP on OS X (10.5)</title>
		<link>http://www.botsko.net/blog/2007/11/19/install-apache-mysql-and-php-on-os-x-105/</link>
		<comments>http://www.botsko.net/blog/2007/11/19/install-apache-mysql-and-php-on-os-x-105/#comments</comments>
		<pubDate>Mon, 19 Nov 2007 23:53:09 +0000</pubDate>
		<dc:creator>Michael Botsko</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tech-Tidbit]]></category>

		<guid isPermaLink="false">http://www.botsko.net/blog/2007/11/19/install-apache-mysql-and-php-on-os-x-105/</guid>
		<description><![CDATA[While I was at zendcon I needed to setup my macbook with a typical apache/php/mysql server, but I was unsatisfied with both the default server that apple included and with the install system provided by XAMPP. I&#8217;ve since setup a server on both my MacBook and my iMac. In order to get support for mysql [...]]]></description>
			<content:encoded><![CDATA[<p>While I was at zendcon I needed to setup my macbook with a typical apache/php/mysql server, but I was unsatisfied with both the default server that apple included and with the install system provided by XAMPP. I&#8217;ve since setup a server on both my MacBook and my iMac.</p>
<p>In order to get support for mysql as well as tools necessary for compiling, you need to install the <a href="http://developer.apple.com/tools/download/">apple developer tools</a>. Check your original mac disc as you may already have a copy.</p>
<p>Anyway, on with our install:</p>
<p><strong>Apache</strong></p>
<p>First, download the latest version of the <a href="http://httpd.apache.org/download.cgi">apache httpd web server</a>.</p>
<p><code>./configure --prefix=/usr/local/apache --enable-module=so --enable-module=rewrite</code></p>
<p>Then, run the standard <code>make, sudo make install.</code></p>
<p><strong>MySQL</strong></p>
<p>Then download the <a href="http://dev.mysql.com/downloads/mysql/5.0.html#source">latest mysql source file</a>. Make sure you download the source &#8220;Compressed GNU TAR archive (tar.gz)&#8221; as we&#8217;ll need to custom compile it.</p>
<p>However, PHP5 no longer includes mysql shared libraries needed during the configure process. To get these, download the source file for the mysql version you just installed. Once downloaded, decompress it and run the following:</p>
<p><code>./configure --prefix=/usr/local/mysql --with-unix-socket-path=/usr/local/mysql/run/mysql_socket  --with-mysqld-user=mysql --with-comment --with-debug</code></p>
<p><code>make</code></p>
<p><code>sudo make install</code></p>
<p><code>sudo /usr/local/mysql/bin/mysql_install_db --force</code></p>
<p><code>sudo mkdir /usr/local/mysql/run</code><br />
<code>sudo mkdir /usr/local/mysql/data</code></p>
<p><code>sudo chgrp -R mysql /usr/local/mysql</code></p>
<p><code>sudo chown -R mysql /usr/local/mysql/run /usr/local/mysql/var /usr/local/mysql/data</code></p>
<p>Then start the server with:</p>
<p><code>sudo /usr/local/mysql/bin/mysqld_safe --user=mysql &#038;</code></p>
<p><strong>zlib</strong></p>
<p>Then, <a href="http://www.zlib.net/">install zlib</a> if it&#8217;s not already installed on your system. Download zlib, and it should be a basic <code>./configure, make, sudo make install</code> process. </p>
<p>Once zlib is installed, make sure you know the path as we&#8217;ll need it during the php configure process.</p>
<p><strong>PHP</strong></p>
<p>Next, download the <a href="http://www.php.net/downloads.php">latest php package</a>. Decompress it, and now we&#8217;re ready to configure.</p>
<p><code>./configure --prefix=/usr/local/apache --enable-cli --with-mysql=/usr/local/mysql --with-zlib-dir=/usr/local --with-apxs2=/usr/local/apache/bin/apxs</code></p>
<p>Then, run <code>make</code> and<code> sudo make install</code> to complete the process.</p>
<p>Restart apache and test everything out. If php didn&#8217;t do it automatically, add in <code>AddType application/x-httpd-php .php</code> to your httpd.conf file &#8211; commonly located in <code>/usr/local/apache/conf/httpd.conf</code>.</p>
<p>Then, start your webserver.</p>
<p><code>sudo /usr/local/apache/bin/apachectl start</code></p>
<p>And finally, once everything is done you&#8217;ll want to setup your account to properly allow access to mysql and apache commands. Just run the following to add their paths to your bash profile:</p>
<p><code>echo 'export PATH=/usr/local/mysql/bin:$PATH' >> ~/.bash_profile<br />
echo 'export PATH=/usr/local/apache/bin:$PATH' >> ~/.bash_profile</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.botsko.net/blog/2007/11/19/install-apache-mysql-and-php-on-os-x-105/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>JAR/XPI Firefox Extension Build Shell Script</title>
		<link>http://www.botsko.net/blog/2007/11/14/jarxpi-firefox-extension-build-shell-script/</link>
		<comments>http://www.botsko.net/blog/2007/11/14/jarxpi-firefox-extension-build-shell-script/#comments</comments>
		<pubDate>Wed, 14 Nov 2007 23:50:48 +0000</pubDate>
		<dc:creator>Michael Botsko</dc:creator>
				<category><![CDATA[FormSaver]]></category>
		<category><![CDATA[Tech-Tidbit]]></category>

		<guid isPermaLink="false">http://www.botsko.net/blog/2007/11/14/jarxpi-firefox-extension-build-shell-script/</guid>
		<description><![CDATA[I recently started work on a firefox extension, but this time I&#8217;m working on a mac rather than a pc. Below is a sample shell script for automatically building the JAR and XPI files.: #!/bin/bash mkdir build mkdir build/chrome cd chrome zip -r formsaver.jar . cd .. cp chrome/formsaver.jar build/chrome/formsaver.jar rm chrome/formsaver.jar cp -R defaults [...]]]></description>
			<content:encoded><![CDATA[<p>I recently started work on a firefox extension, but this time I&#8217;m working on a mac rather than a pc. Below is a sample shell script for automatically building the JAR and XPI files.:</p>
<p><code>#!/bin/bash<br />
mkdir build<br />
mkdir build/chrome<br />
cd chrome<br />
zip -r formsaver.jar .<br />
cd ..<br />
cp chrome/formsaver.jar build/chrome/formsaver.jar<br />
rm chrome/formsaver.jar<br />
cp -R defaults build/<br />
cp install.rdf build/install.rdf<br />
cd build<br />
zip -r formsaver.xpi .<br />
mv formsaver.xpi ../formsaver.xpi<br />
cd ..<br />
rm -rf build<br />
echo -n extension build successful</code></p>
<p>Here is a sample file for automatically building on windows (batch script): </p>
<p>Note: This requires that you have 7zip installed.</p>
<p><code>set x=%cd%<br />
md build\chrome<br />
md build\defaults\preferences<br />
cd chrome<br />
"C:\Program Files\7-Zip\7z.exe" a -tzip "%x%.jar" * -r -mx=0<br />
move "%x%.jar" ..\build\chrome<br />
cd ..<br />
copy defaults\preferences\formsaver.js build\defaults\preferences<br />
copy install.* build<br />
cd build<br />
"C:\Program Files\7-Zip\7z.exe" a -tzip "%x%.xpi" * -r -mx=9<br />
move "%x%.xpi" ..\<br />
cd ..<br />
rd build /s/q<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.botsko.net/blog/2007/11/14/jarxpi-firefox-extension-build-shell-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Moving Subversion Repository Across Machines</title>
		<link>http://www.botsko.net/blog/2007/11/14/moving-subversion-repository-across-machines/</link>
		<comments>http://www.botsko.net/blog/2007/11/14/moving-subversion-repository-across-machines/#comments</comments>
		<pubDate>Wed, 14 Nov 2007 18:31:55 +0000</pubDate>
		<dc:creator>Michael Botsko</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[Subversion/CVS]]></category>
		<category><![CDATA[Tech-Tidbit]]></category>

		<guid isPermaLink="false">http://www.botsko.net/blog/2007/11/14/moving-subversion-repository-across-machines/</guid>
		<description><![CDATA[I recently moved my development server from a linux box to my primary machine, an iMac. I wanted to move my subversion repository while maintaining the file histories for everything inside. Worrying that it was going to be a huge issue, I was happy to discover it was completely simple: On the existing repository machine, [...]]]></description>
			<content:encoded><![CDATA[<p>I recently moved my development server from a linux box to my primary machine, an iMac. I wanted to move my subversion repository while maintaining the file histories for everything inside. Worrying that it was going to be a huge issue, I was happy to discover it was completely simple:</p>
<p>On the existing repository machine, run:</p>
<p><code>svnadmin dump /path/to/repository > repository-name.dmp</code></p>
<p>Transfer your dump file to the new machine and then, create a repository. Once subversion is running and you have your repository created, import the dump file:</p>
<p><code>svnadmin load /path/to/repository-name< /path/to/repository-name.dmp</code></p>
<p>You're done!</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.botsko.net/blog/2007/11/14/moving-subversion-repository-across-machines/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting up Subversion on Mac OS X 10.5</title>
		<link>http://www.botsko.net/blog/2007/11/14/setting-up-subversion-on-mac-os-x-105/</link>
		<comments>http://www.botsko.net/blog/2007/11/14/setting-up-subversion-on-mac-os-x-105/#comments</comments>
		<pubDate>Wed, 14 Nov 2007 18:26:51 +0000</pubDate>
		<dc:creator>Michael Botsko</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[Subversion/CVS]]></category>
		<category><![CDATA[Tech-Tidbit]]></category>

		<guid isPermaLink="false">http://www.botsko.net/blog/2007/11/14/setting-up-subversion-on-mac-os-x-105/</guid>
		<description><![CDATA[I recently began working exclusively on an iMac so I decided to setup a subversion server locally and as my new machine would simply replace my local development machine, which is a Fedora Core 6 pc. You&#8217;ll need to setup at least one repository. I&#8217;m going to need multiple repositories that I can use for [...]]]></description>
			<content:encoded><![CDATA[<p>I recently began working exclusively on an iMac so I decided to setup a subversion server locally and as my new machine would simply replace my local development machine, which is a Fedora Core 6 pc.</p>
<p>You&#8217;ll need to setup at least one repository. I&#8217;m going to need multiple repositories that I can use for different clients so I have a bit of extra admin work ahead of me. You can setup as many repositories as you need, but no matter what you&#8217;ll need at least one. Here create the folders&#8230;</p>
<p><code># mkdir /svn<br />
# mkdir /svn/repos</code></p>
<p>Then we need to tell subversion to make our first repository.<br />
<code><br />
# svnadmin create /svn/repos/myproject</code></p>
<p>First, I need to setup a config file for svnserve.</p>
<p><code># vi /svn/repos/conf/svnserve.conf</code></p>
<p>Then, look for variations of the following code and edit it as necessary. By default any anonymous user can access the code so to disable that you <strong>must</strong> include anon-access = none, just commenting the value out will not prevent anonymous access.</p>
<p><code>anon-access = none<br />
password-db = passwdfile<br />
realm = My SVN Repository<br />
auth-access = write</code></p>
<p>The password-db is just a path to a file containing usernames and passwords. You&#8217;ll create this file especially for SVN. I create each file inside of the repository conf directory. So, save your changes and then we&#8217;ll create said user file.</p>
<p><code># vi passwdfile</code></p>
<p>Enter in something like:</p>
<p><code>[users]<br />
username = password</code></p>
<p>Anyway, you&#8217;ll need to start the svn server.</p>
<p><code># svnserve -d --listen-port=3690</code></p>
<p><em>One side note &#8211; svnserve just runs and doesn&#8217;t have a way to stop besides killing the process. If you make changes to the svnserve.conf or user file you&#8217;ll need to restart svnserve.</em></p>
<p><code># killall svnserve</code></p>
<p>Then, go ahead and test (best to do so on a different machine).<br />
<code><br />
# svn co --username=myusername svn://mydomain/svn/repos/myproject<br />
</code></p>
<p>The system should then ask you for your password. Go ahead and run some tests. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.botsko.net/blog/2007/11/14/setting-up-subversion-on-mac-os-x-105/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MediaTemple E-mail Logs&#8230;</title>
		<link>http://www.botsko.net/blog/2007/11/06/mediatemple-e-mail-logs/</link>
		<comments>http://www.botsko.net/blog/2007/11/06/mediatemple-e-mail-logs/#comments</comments>
		<pubDate>Tue, 06 Nov 2007 19:36:49 +0000</pubDate>
		<dc:creator>Michael Botsko</dc:creator>
				<category><![CDATA[Hosting]]></category>
		<category><![CDATA[Tech-Tidbit]]></category>

		<guid isPermaLink="false">http://www.botsko.net/blog/2007/11/06/mediatemple-e-mail-logs/</guid>
		<description><![CDATA[I&#8217;m always forgetting this command so I&#8217;m posting it here. This is the location of the mail log on mediatemple dv servers. tail -f /usr/local/psa/var/log/maillog]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m always forgetting this command so I&#8217;m posting it here. This is the location of the mail log on mediatemple dv servers.</p>
<p>tail -f /usr/local/psa/var/log/maillog</p>
]]></content:encoded>
			<wfw:commentRss>http://www.botsko.net/blog/2007/11/06/mediatemple-e-mail-logs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySQL Backup Shell Script</title>
		<link>http://www.botsko.net/blog/2007/10/30/mysql-backup-shell-script/</link>
		<comments>http://www.botsko.net/blog/2007/10/30/mysql-backup-shell-script/#comments</comments>
		<pubDate>Tue, 30 Oct 2007 23:44:25 +0000</pubDate>
		<dc:creator>Michael Botsko</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Scripts]]></category>
		<category><![CDATA[Tech-Tidbit]]></category>

		<guid isPermaLink="false">http://www.botsko.net/blog/2007/10/30/mysql-backup-shell-script/</guid>
		<description><![CDATA[Many of my clients need a quick backup solution before we implement anything on a larger more permanent scale. I wrote this simple script that simply make a copy of a database and then created a timestamped tarball of the file. #!bin/sh date=`date +%Y-%m-%d_%Hh%M` cd /my/path/for/backups/ mysqldump -umy_user -p"mypass" my_database > $date.sql tar -zcvf $date.tgz [...]]]></description>
			<content:encoded><![CDATA[<p>Many of my clients need a quick backup solution before we implement anything on a larger more permanent scale. I wrote this simple script that simply make a copy of a database and then created a timestamped tarball of the file.</p>
<p><code>#!bin/sh</p>
<p></code><code>date=`date +%Y-%m-%d_%Hh%M`</code></p>
<p><code>cd <strong>/my/path/for/backups/</strong></code></p>
<p><code>mysqldump -u<strong>my_user</strong> -p"<strong>mypass</strong>" <strong>my_database</strong> > $date.sql</code></p>
<p><code>tar -zcvf $date.tgz *.sql</code></p>
<p><code># uncomment this line to import the sql into another database, for example as a mirror</code><br />
<code>#mysql -u<strong>my_user</strong> -p"<strong>mypass</strong>" <strong>mirror_database</strong> < $date.sql</code></p>
<p></code><code>rm *.sql</code></p>
<p>Then, just setup a cron job to run this at whichever interval you want this to run.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.botsko.net/blog/2007/10/30/mysql-backup-shell-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Uninstall U3 System from USB Thumbdrives</title>
		<link>http://www.botsko.net/blog/2007/10/23/uninstall-u3-system-from-usb-thumbdrives/</link>
		<comments>http://www.botsko.net/blog/2007/10/23/uninstall-u3-system-from-usb-thumbdrives/#comments</comments>
		<pubDate>Tue, 23 Oct 2007 21:07:46 +0000</pubDate>
		<dc:creator>Michael Botsko</dc:creator>
				<category><![CDATA[Tech-Tidbit]]></category>

		<guid isPermaLink="false">http://www.botsko.net/blog/2007/10/23/uninstall-u3-system-from-usb-thumbdrives/</guid>
		<description><![CDATA[I recently bought a new thumb drive that came with the infamous U3 System software. I hate this software to no end and I wanted it gone, but the typical system formatting process and the manual deletion process didn&#8217;t work. After doing some research, I found that U3 provides an uninstaller which is a pain. [...]]]></description>
			<content:encoded><![CDATA[<p>I recently bought a new thumb drive that came with the infamous U3 System software. I hate this software to no end and I wanted it gone, but the typical system formatting process and the manual deletion process didn&#8217;t work. After doing some research, I found that U3 provides an uninstaller which is a pain.</p>
<p>Just google &#8220;u3 uninstall.exe&#8221; or visit u3.com/uninstall and follow their stupid download process.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.botsko.net/blog/2007/10/23/uninstall-u3-system-from-usb-thumbdrives/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
