<?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"
	>

<channel>
	<title>notamused.org</title>
	<atom:link href="http://notamused.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://notamused.org</link>
	<description>A personal site featuring popular links, tech tips, music, photography and more.</description>
	<pubDate>Fri, 22 Aug 2008 01:07:02 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5</generator>
	<language>en</language>
			<item>
		<title>Solution for spam mail not being moved to Junk folder automatically</title>
		<link>http://notamused.org/2008/08/21/solution-for-spam-mail-not-being-moved-to-junk-folder-automatically/</link>
		<comments>http://notamused.org/2008/08/21/solution-for-spam-mail-not-being-moved-to-junk-folder-automatically/#comments</comments>
		<pubDate>Fri, 22 Aug 2008 01:05:32 +0000</pubDate>
		<dc:creator>sean</dc:creator>
		
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://notamused.org/?p=62</guid>
		<description><![CDATA[My junk mail used to be automatically moved to my junk mail folder. Lately it just gets marked as junk and sits in my inbox, even though I still had the option enabled. If you find that your email client (Thunderbird, Mail.app, etc) no longer automatically moves your junk mail, try this out. The directions [...]]]></description>
			<content:encoded><![CDATA[<p>My junk mail used to be automatically moved to my junk mail folder. Lately it just gets marked as junk and sits in my inbox, even though I still had the option enabled. If you find that your email client (Thunderbird, Mail.app, etc) no longer automatically moves your junk mail, try this out. The directions are for Thunderbird but its easy enough for any client.</p>
<li>Open your junk mail folder</li>
<li>Delete everything</li>
<li>Go to File | Compact Folders</li>
<li>Done!</li>
]]></content:encoded>
			<wfw:commentRss>http://notamused.org/2008/08/21/solution-for-spam-mail-not-being-moved-to-junk-folder-automatically/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Album Cover Art Downloader crashes when using Amazon</title>
		<link>http://notamused.org/2008/03/04/album-cover-art-downloader-crashes-when-using-amazon/</link>
		<comments>http://notamused.org/2008/03/04/album-cover-art-downloader-crashes-when-using-amazon/#comments</comments>
		<pubDate>Tue, 04 Mar 2008 22:48:07 +0000</pubDate>
		<dc:creator>sean</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://notamused.org/2008/03/04/album-cover-art-downloader-crashes-when-using-amazon/</guid>
		<description><![CDATA[Earlier this month (Feb 08) my Album Cover Art Downloader kept spitting out errors when using Amazon to find artwork.  Here is a copy of the error:
Traceback (most recent call last):
  File &#8220;/usr/lib/albumart/process.py&#8221;, line 130, in run
    for cover in albumart.getAvailableCovers(artist, album, requireExactMatch = self.requireExactMatch):
  File &#8220;/usr/lib/albumart/albumart.py&#8221;, line 115, [...]]]></description>
			<content:encoded><![CDATA[<p>Earlier this month (Feb 08) my <a href="http://www.unrealvoodoo.org/hiteck/projects/albumart/">Album Cover Art Downloader</a> kept spitting out errors when using Amazon to find artwork.  Here is a copy of the error:</p>
<blockquote><p>Traceback (most recent call last):</p>
<p>  File &#8220;/usr/lib/albumart/process.py&#8221;, line 130, in run<br />
    for cover in albumart.getAvailableCovers(artist, album, requireExactMatch = self.requireExactMatch):</p>
<p>  File &#8220;/usr/lib/albumart/albumart.py&#8221;, line 115, in getAvailableCovers<br />
    results += s.findAlbum(&#8221;%s %s&#8221; % (artist, album))</p>
<p>  File &#8220;/usr/lib/albumart/albumart_source_amazon.py&#8221;, line 49, in findAlbum<br />
    return amazon.searchByKeyword(name,type=&#8221;lite&#8221;,product_line=&#8221;music&#8221;)</p>
<p>  File &#8220;/usr/lib/albumart/amazon.py&#8221;, line 315, in searchByKeyword<br />
    return search(&#8221;KeywordSearch&#8221;, keyword, product_line, type, page, license_key, http_proxy, locale, associate)</p>
<p>  File &#8220;/usr/lib/albumart/amazon.py&#8221;, line 293, in search<br />
    xmldoc = minidom.parse(usock)</p>
<p>  File &#8220;/usr/lib/python2.5/xml/dom/minidom.py&#8221;, line 1913, in parse<br />
    return expatbuilder.parse(file)</p>
<p>  File &#8220;/usr/lib/python2.5/xml/dom/expatbuilder.py&#8221;, line 928, in parse<br />
    result = builder.parseFile(file)</p>
<p>  File &#8220;/usr/lib/python2.5/xml/dom/expatbuilder.py&#8221;, line 207, in parseFile<br />
    parser.Parse(buffer, 0)</p>
<p>ExpatError: not well-formed (invalid token): line 24, column 19</p></blockquote>
<p>Googling lines from the error led me to this blog written by <a href="http://blogs.sun.com/richb/">Rich Burridge</a>:  <a href="http://blogs.sun.com/richb/entry/updated_be_informed_when_used">http://blogs.sun.com/richb/entry/updated_be_informed_when_used</a>.  Seems Amazon changed their system around slightly which was causing errors in a python library.  Since the error was so similar, I asked him for help and he kindly told me how to fix it.</p>
<p>In the file &#8220;albumart_source_amazon.py&#8221; add a &#8220;time.sleep(2)&#8221; right before line 48 so it reads:</p>
<blockquote><p>	time.sleep(2)<br />
	return amazon.searchByKeyword(name,type=&#8221;lite&#8221;,product_line=&#8221;music&#8221;)</p></blockquote>
<p>That is actually only two lines, sorry for the column width wrap-around.  <strong>Please note its very important for the tab spaces to line up evenly</strong>.  The script will run slower, but with no errors.  Thank you Rich for this temporary fix until someone releases a new version of Album Cover Art Downloader.</p>
]]></content:encoded>
			<wfw:commentRss>http://notamused.org/2008/03/04/album-cover-art-downloader-crashes-when-using-amazon/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Fix for when Palm Desktop crashes immediately after opening</title>
		<link>http://notamused.org/2008/03/04/fix-for-when-palm-desktop-crashes-immediately-after-opening/</link>
		<comments>http://notamused.org/2008/03/04/fix-for-when-palm-desktop-crashes-immediately-after-opening/#comments</comments>
		<pubDate>Tue, 04 Mar 2008 22:37:37 +0000</pubDate>
		<dc:creator>sean</dc:creator>
		
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://notamused.org/2008/03/04/fix-for-when-palm-desktop-crashes-immediately-after-opening/</guid>
		<description><![CDATA[My Palm Desktop suddenly started crashing immediately after opening.  I did some googling and found this weird fix.  No idea how this guy figured it out but it works.
Step 1) Set properties to low res mode
Right click on &#8220;Palm Desktop&#8221; icon &#8211;> Select &#8220;Compatibility&#8221; tab
Select &#8220;Run in 640 x 480 screen resolution&#8221; flag
*This [...]]]></description>
			<content:encoded><![CDATA[<p>My Palm Desktop suddenly started crashing immediately after opening.  I did some googling and found this weird fix.  No idea how this guy figured it out but it works.</p>
<blockquote><p>Step 1) Set properties to low res mode<br />
Right click on &#8220;Palm Desktop&#8221; icon &#8211;> Select &#8220;Compatibility&#8221; tab<br />
Select &#8220;Run in 640 x 480 screen resolution&#8221; flag<br />
*This allows Palm Desktop to open. Wow!</p>
<p>Step 2) Open Palm Desktop (The Ironic part)<br />
Open &#8220;Palm Desktop&#8221;<br />
*Yes, I actually opened the program, in order to fix the problem<br />
of the program not opening. Ironic, but hey, it works.<br />
*If you are not able open the program, then find another way to<br />
find and fix corrupt files.</p>
<p>Step 3) Repair the files<br />
Select &#8220;Tools&#8221; menu &#8211;> &#8220;Options&#8230;&#8221; menu item<br />
Select &#8220;Tools&#8221; tab &#8211;> &#8220;Check Now&#8221; Command button<br />
*This should find and correct any corrupted files.</p>
<p>Step 4) Restore screen resolution for program<br />
Right click on &#8220;Palm Desktop&#8221; icon &#8211;> Select &#8220;Compatibility&#8221; tab<br />
De-select &#8220;Run in 640 x 480 screen resolution&#8221; flag<br />
*This should let you view the program in your native resolution.</p></blockquote>
<p>Credit goes to rocketman002, whoever you are: <a href="http://discussion.treocentral.com/showthread.php?t=109727">http://discussion.treocentral.com/showthread.php?t=109727</a></p>
]]></content:encoded>
			<wfw:commentRss>http://notamused.org/2008/03/04/fix-for-when-palm-desktop-crashes-immediately-after-opening/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to fix an SD card with a broken read-only lock</title>
		<link>http://notamused.org/2008/03/03/how-to-fix-an-sd-card-with-a-broken-read-only-lock/</link>
		<comments>http://notamused.org/2008/03/03/how-to-fix-an-sd-card-with-a-broken-read-only-lock/#comments</comments>
		<pubDate>Tue, 04 Mar 2008 03:53:39 +0000</pubDate>
		<dc:creator>sean</dc:creator>
		
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://notamused.org/2008/03/03/how-to-fix-an-sd-card-with-a-broken-read-only-lock/</guid>
		<description><![CDATA[I bought this SD card from a Chinese eBayer for half the retail price.  It took about a week for the plastic read-only lock to break off.  Damn thing just fell out.  Last time I EVER buy a media card with a read-only lock (its optional per SD card specifications).  This, [...]]]></description>
			<content:encoded><![CDATA[<p>I bought this SD card from a Chinese eBayer for half the retail price.  It took about a week for the plastic read-only lock to break off.  Damn thing just fell out.  Last time I EVER buy a media card with a read-only lock (its optional per SD card specifications).  This, as you may know, renders the card unwriteable since a media card reader thinks that the card is write-protected if the notch isn&#8217;t filled.  Now, how do I convince the card reader the notch is filled?  I give it a little band-aid.</p>
<p>The supplies:
<ol>
<li>SD card with a broken read-only lock</li>
<li>Cutting plier or wire cutter</li>
<li>Medium size paper clip</li>
<li>Krazyglue</li>
</ol>
<p>All the medium size paper clips around the office that day were the same exact height as the plastic lock that broke off, lucky me.  I cut it to length using a cutting plier for a clean edge and put a dab (a DAB!!) of superglue on there.     I let it dry and gave it a test run.   Yay, it works.  Permanently set to read/write and works flawlessly.</p>
<p><img src='http://farm4.static.flickr.com/3002/2309463134_3d69a303d2.jpg' alt='IMG_3887'/></p>
<p><img src='http://farm4.static.flickr.com/3210/2309463158_670553c6d4.jpg' alt='IMG_3888'/></p>
<p><img src='http://farm4.static.flickr.com/3266/2309463196_19c4f0b83a.jpg' alt='IMG_3890'/></p>
]]></content:encoded>
			<wfw:commentRss>http://notamused.org/2008/03/03/how-to-fix-an-sd-card-with-a-broken-read-only-lock/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to force extensions to be enabled in Firefox beta</title>
		<link>http://notamused.org/2008/02/17/how-to-force-extensions-to-be-enabled-in-firefox-beta/</link>
		<comments>http://notamused.org/2008/02/17/how-to-force-extensions-to-be-enabled-in-firefox-beta/#comments</comments>
		<pubDate>Mon, 18 Feb 2008 04:57:24 +0000</pubDate>
		<dc:creator>sean</dc:creator>
		
		<category><![CDATA[Tech]]></category>

		<category><![CDATA[firefox]]></category>

		<guid isPermaLink="false">http://notamused.org/2008/02/17/how-to-force-extensions-to-be-enabled-in-firefox-beta/</guid>
		<description><![CDATA[Many Firefox add-ons are not yet updated to support Firefox3, even though they probably work fine anyway.  You could try bypassing the extension compatibility check by following this guide.  This is not recommended as it may break your installation of Firefox, but it worked fine for me.

Start at Firefox&#8217;s address bar and type [...]]]></description>
			<content:encoded><![CDATA[<p>Many Firefox add-ons are not yet updated to support Firefox3, even though they probably work fine anyway.  You could try bypassing the extension compatibility check by following this guide.  This is not recommended as it may break your installation of Firefox, but it worked fine for me.</p>
<ol>
<li>Start at Firefox&#8217;s address bar and type this in:<br />
<strong>about:config</strong></li>
<li>Right click anywhere in the list and select <strong>New</strong> then <strong>Boolean</strong></li>
<li>Enter <strong>extensions.checkCompatibility</strong> when it prompts you for a preference name.</li>
<li>
Select <strong>False</strong> for the boolean value.</li>
</ol>
<p>You have just told Firefox not to check extension compatibility.  Now cross your fingers, restart Firefox, and hope for the best!</p>
]]></content:encoded>
			<wfw:commentRss>http://notamused.org/2008/02/17/how-to-force-extensions-to-be-enabled-in-firefox-beta/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to install Flash for Firefox 3 beta in Ubuntu</title>
		<link>http://notamused.org/2008/02/17/how-to-install-flash-for-firefox-3-betas-in-ubuntu/</link>
		<comments>http://notamused.org/2008/02/17/how-to-install-flash-for-firefox-3-betas-in-ubuntu/#comments</comments>
		<pubDate>Mon, 18 Feb 2008 04:27:09 +0000</pubDate>
		<dc:creator>sean</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<category><![CDATA[firefox]]></category>

		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://notamused.org/2008/02/17/how-to-install-flash-for-firefox-3-betas-in-ubuntu/</guid>
		<description><![CDATA[First make sure you have the Adobe Flash plugin installed.  It is not packaged with any version of Firefox.
$ sudo update-flashplugin
$ sudo apt-get install flashplugin-nonfree
This package of flashplugin-nonfree was made before the Firefox3 pre-releases, so we have to add it to the libraries manually.  This method will &#8220;link&#8221; it from the default install [...]]]></description>
			<content:encoded><![CDATA[<p>First make sure you have the Adobe Flash plugin installed.  It is not packaged with any version of Firefox.</p>
<blockquote><p>$ sudo update-flashplugin<br />
$ sudo apt-get install flashplugin-nonfree</p></blockquote>
<p>This package of flashplugin-nonfree was made before the Firefox3 pre-releases, so we have to add it to the libraries manually.  This method will &#8220;link&#8221; it from the default install location (not just copy it) so in case you upgrade flashplugin-nonfree in the future, it will be updated for Firefox3 as well.</p>
<blockquote><p>$ sudo ln -s /usr/lib/firefox/plugins/flashplugin-alternative.so /usr/lib/firefox-3.0b3/plugins/flashplugin-alternative.so</p></blockquote>
<p>If you are using a different version of Firefox3 than I am (firefox3.0b3) you&#8217;ll need to modify that line.  To test if it worked go to a flash site such as <a href="http://www.youtube.com">YouTube.com</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://notamused.org/2008/02/17/how-to-install-flash-for-firefox-3-betas-in-ubuntu/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Spreadsheet: Best RAID5 array for your dollar</title>
		<link>http://notamused.org/2008/02/13/best-value-hard-drive-for-raid5-spreadsheet/</link>
		<comments>http://notamused.org/2008/02/13/best-value-hard-drive-for-raid5-spreadsheet/#comments</comments>
		<pubDate>Thu, 14 Feb 2008 03:37:37 +0000</pubDate>
		<dc:creator>sean</dc:creator>
		
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://notamused.org/2008/02/13/best-value-hard-drive-for-raid5-spreadsheet/</guid>
		<description><![CDATA[I see many people come here to read this post about choosing the best size hard drives for your RAID5 array: The best value hard drive for a RAID5 setup
The prices I gave as examples are already out-of-date.  Here is a link to the spreadsheet so you can put your own prices in and [...]]]></description>
			<content:encoded><![CDATA[<p>I see many people come here to read this post about choosing the best size hard drives for your RAID5 array: <a href="http://notamused.org/2007/06/13/the-best-value-hard-drive-for-a-raid5-setup/">The best value hard drive for a RAID5 setup</a></p>
<p>The prices I gave as examples are already out-of-date.  Here is a link to the spreadsheet so you can put your own prices in and make your own determination on what size is your best option.</p>
<p>By the way, these enterprise class hard drives are perfect for RAID arrays:<br />
<a href="http://www.wdc.com/en/products/Products.asp?DriveID=335">Western Digital RE2</a> or <a href="http://www.seagate.com/www/en-us/products/servers/barracuda_es/">Seagate Barracuda ES</a></p>
<p>Spreadsheet available here: <a href="http://spreadsheets.google.com/ccc?key=phbUYRaw89d-KbXtUM6usGw">link</a></p>
<p><iframe width='500' height='200' frameborder='0' src='//spreadsheets.google.com/pub?key=phbUYRaw89d-KbXtUM6usGw&#038;output=html&#038;widget=true'></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://notamused.org/2008/02/13/best-value-hard-drive-for-raid5-spreadsheet/feed/</wfw:commentRss>
		</item>
		<item>
		<title>All aboard the failboat</title>
		<link>http://notamused.org/2008/02/11/all-aboard-the-failboat/</link>
		<comments>http://notamused.org/2008/02/11/all-aboard-the-failboat/#comments</comments>
		<pubDate>Tue, 12 Feb 2008 04:54:43 +0000</pubDate>
		<dc:creator>sean</dc:creator>
		
		<category><![CDATA[Humor]]></category>

		<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://notamused.org/blog/2008/02/11/all-aboard-the-failboats/</guid>
		<description><![CDATA[
Nice shots of a ship ran aground.  Courtesy of chromasia.com
]]></description>
			<content:encoded><![CDATA[<p><img src='http://farm3.static.flickr.com/2187/2259876646_44ac2113e2.jpg' alt='riverdance_1_b'/><img src='http://farm3.static.flickr.com/2217/2259079601_5c65585583.jpg' alt='riverdance_2_b'/><img src='http://farm3.static.flickr.com/2373/2259079495_7ef5a7a955.jpg' alt='riverdance_3_b'/><img src='http://farm3.static.flickr.com/2145/2259079425_28b0842a81.jpg' alt='riverdance_4_b'/><img src='http://farm3.static.flickr.com/2003/2259876244_8a8b8a2a21.jpg' alt='riverdance_5_b'/><img src='http://farm3.static.flickr.com/2043/2259079207_d8894c863b.jpg' alt='riverdance_6_b'/><img src='http://farm3.static.flickr.com/2189/2259079141_3d5d3f3322.jpg' alt='riverdance_7_b'/></p>
<p>Nice shots of a ship ran aground.  Courtesy of <a href="http://www.chromasia.com/">chromasia.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://notamused.org/2008/02/11/all-aboard-the-failboat/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Tamrac 5513 Adventure Zoom 3 Holster Bag and Sony DSLR-A100H</title>
		<link>http://notamused.org/2008/02/07/tamrac-5513-adventure-zoom-3-holster-bag-and-sony-dslr-a100h/</link>
		<comments>http://notamused.org/2008/02/07/tamrac-5513-adventure-zoom-3-holster-bag-and-sony-dslr-a100h/#comments</comments>
		<pubDate>Thu, 07 Feb 2008 05:38:58 +0000</pubDate>
		<dc:creator>sean</dc:creator>
		
		<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://notamused.org/blog/2008/02/07/tamrac-5513-adventure-zoom-3-holster-bag-and-sony-dslr-a100h/</guid>
		<description><![CDATA[I needed a simple bag for my A100H.  It happens to have an 18-200mm lens that is 3.4&#8243; long itself so it wasn&#8217;t that easy.  I took a shot with the fairly priced Tamrac 5513 even though the manufacturer claimed it was only good for a body plus 3&#8243; lens.  Its a [...]]]></description>
			<content:encoded><![CDATA[<p>I needed a simple bag for my A100H.  It happens to have an 18-200mm lens that is 3.4&#8243; long itself so it wasn&#8217;t that easy.  I took a shot with the fairly priced Tamrac 5513 even though the manufacturer claimed it was only good for a body plus 3&#8243; lens.  Its a tight fit, especially with the camera&#8217;s strap, but it will do just fine for my purposes.  The small outside pocket holds an extra battery and memory card.</p>
]]></content:encoded>
			<wfw:commentRss>http://notamused.org/2008/02/07/tamrac-5513-adventure-zoom-3-holster-bag-and-sony-dslr-a100h/feed/</wfw:commentRss>
		</item>
		<item>
		<title>0&#215;80070052 Error when using USB drive on Windows</title>
		<link>http://notamused.org/2007/10/14/0x80070052-error-when-using-usb-drive-on-windows/</link>
		<comments>http://notamused.org/2007/10/14/0x80070052-error-when-using-usb-drive-on-windows/#comments</comments>
		<pubDate>Sun, 14 Oct 2007 16:08:12 +0000</pubDate>
		<dc:creator>sean</dc:creator>
		
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://notamused.org/blog/2007/10/14/0x80070052-error-when-using-usb-drive-on-windows/</guid>
		<description><![CDATA[I couldn&#8217;t do anything with a customer&#8217;s USB disk, Windows kept spitting out error 0&#215;80070052.  Checkdisk showed no errors.  Plenty of space left.  I played around with it and discovered the error was caused by too many files in the root directory.  Seems the girl didn&#8217;t even know how to make [...]]]></description>
			<content:encoded><![CDATA[<p>I couldn&#8217;t do anything with a customer&#8217;s USB disk, Windows kept spitting out error 0&#215;80070052.  Checkdisk showed no errors.  Plenty of space left.  I played around with it and discovered the error was caused by too many files in the root directory.  Seems the girl didn&#8217;t even know how to make a folder.  I made subdirs and organized most of her most files for her and the error went away.</p>
]]></content:encoded>
			<wfw:commentRss>http://notamused.org/2007/10/14/0x80070052-error-when-using-usb-drive-on-windows/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
