<?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>nothing2fancy</title>
	<atom:link href="http://nothing2fancy.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://nothing2fancy.com</link>
	<description>pew-pew</description>
	<lastBuildDate>Tue, 09 Mar 2010 01:02:48 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Do you have way too many flagged items in Google Reader?</title>
		<link>http://nothing2fancy.com/2010/03/08/do-you-have-way-too-many-flagged-items-in-google-reader/</link>
		<comments>http://nothing2fancy.com/2010/03/08/do-you-have-way-too-many-flagged-items-in-google-reader/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 01:02:47 +0000</pubDate>
		<dc:creator>Jim</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[applescript]]></category>
		<category><![CDATA[netnewswire]]></category>

		<guid isPermaLink="false">http://nothing2fancy.com/?p=354</guid>
		<description><![CDATA[Do you use NetNewsWire?
If so, maybe you can use this script. It finds all the items you&#8217;ve flagged that are older than 6 months old and unflags them. Seriously dude&#8230; you aren&#8217;t going to ever go back and read that shit.
set dateLimit to (current date) - (180 * days)
tell application "NetNewsWire"
	set flaggedItemList to item 1 [...]]]></description>
			<content:encoded><![CDATA[<p>Do you use <a href="http://www.newsgator.com/INDIVIDUALS/NETNEWSWIRE/">NetNewsWire</a>?</p>
<p>If so, maybe you can use this script. It finds all the items you&#8217;ve flagged that are older than 6 months old and unflags them. Seriously dude&#8230; you aren&#8217;t going to ever go back and read that shit.</p>
<pre>set dateLimit to (current date) - (180 * days)
tell application "NetNewsWire"
	set flaggedItemList to item 1 of (subscriptions where display name is "Flagged Items")
	--get date published of headlines of flaggedItemList
	set oldFlaggedArticles to (headlines of flaggedItemList) where date published < dateLimit
	repeat with article in oldFlaggedArticles
		set isFlagged of article to no
	end repeat
	set theMessage to "Marked " &#038; (count of oldFlaggedArticles) &#038; " flagged items as read. They were all from before " &#038; dateLimit &#038; "."
	display alert "Marked as read" message theMessage
end tell</pre>
<p><a href="http://nothing2fancy.com/wp-content/uploads/2010/03/Unflag-old-Flagged-Items.zip" title="Unflag old Flagged Items.zip">Unflag old Flagged Items.zip</a></p>
]]></content:encoded>
			<wfw:commentRss>http://nothing2fancy.com/2010/03/08/do-you-have-way-too-many-flagged-items-in-google-reader/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I&#8217;ve got a solo exhibit</title>
		<link>http://nothing2fancy.com/2010/02/01/ive-got-a-solo-exhibit/</link>
		<comments>http://nothing2fancy.com/2010/02/01/ive-got-a-solo-exhibit/#comments</comments>
		<pubDate>Mon, 01 Feb 2010 11:25:46 +0000</pubDate>
		<dc:creator>Jim</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://nothing2fancy.com/?p=351</guid>
		<description><![CDATA[
I didn&#8217;t think I was actually going to get it, but I was selected for a solo exhibit at the Richmond Main Library.
The first month available is in November, 2010, so i&#8217;ve got the better part of a year to prepare. You can check out the images I submitted at jimkubicek.com.
]]></description>
			<content:encoded><![CDATA[<div style="text-align:center;"><img src="http://nothing2fancy.com/wp-content/uploads/2010/02/Into-Darkness.png" alt="Into Darkness.png" border="0" width="454" height="487" /></div>
<p>I didn&#8217;t think I was actually going to get it, but I was selected for a solo exhibit at the <a href="http://nothing2fancy.com/2009/12/03/come-see-my-exhibit-friday/">Richmond Main Library</a>.</p>
<p>The first month available is in November, 2010, so i&#8217;ve got the better part of a year to prepare. You can check out the images I submitted at <a href="http://jimkubicek.com/projects/Into-Darkness/">jimkubicek.com</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://nothing2fancy.com/2010/02/01/ive-got-a-solo-exhibit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My .bash_profile</title>
		<link>http://nothing2fancy.com/2010/02/01/my-bash_profile/</link>
		<comments>http://nothing2fancy.com/2010/02/01/my-bash_profile/#comments</comments>
		<pubDate>Mon, 01 Feb 2010 11:20:03 +0000</pubDate>
		<dc:creator>Jim</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://nothing2fancy.com/?p=348</guid>
		<description><![CDATA[In case anyone is interested. The meat of it is a bunch of two-letter aliases for common Git commands. My favorite part, though, is the shortcut to SSH into the iMac. My iMac has an equivalent alias to SSH into my MacBook. Makes it super easy to login and push whatever I was working on [...]]]></description>
			<content:encoded><![CDATA[<p>In case anyone is interested. The meat of it is a bunch of two-letter aliases for common Git commands. My favorite part, though, is the shortcut to SSH into the iMac. My iMac has an equivalent alias to SSH into my MacBook. Makes it super easy to login and push whatever I was working on back to the server, if I&#8217;d forgotten to after switching computers.</p>
<p>Oh, and this isn&#8217;t in my profile, but just learned this trick last week and which I had known about it years ago. In OS X, &#8216;open ./&#8217; opens the current directory in Finder.</p>
<pre>echo
echo "######################################"
echo "#                                    #"
echo "#     Welcome to Jim's Macbook       #"
echo "#                                    #"
echo "######################################"
echo

PATH=$PATH:/Users/jkubicek/bin
export PATH

PS1="\[\e[1;36m\]$PS1\[\e[m\] "
export PS1

alias ls='ls -G'
alias imac='ssh jimkubicek@imac.local'
alias gc='git commit -m'
alias ga='git add .'
alias gs='git status'
alias gl='git log --oneline --graph'
</pre>
]]></content:encoded>
			<wfw:commentRss>http://nothing2fancy.com/2010/02/01/my-bash_profile/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Headphone Review</title>
		<link>http://nothing2fancy.com/2010/01/22/headphone-review/</link>
		<comments>http://nothing2fancy.com/2010/01/22/headphone-review/#comments</comments>
		<pubDate>Fri, 22 Jan 2010 23:34:23 +0000</pubDate>
		<dc:creator>Jim</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[headphones]]></category>
		<category><![CDATA[music]]></category>

		<guid isPermaLink="false">http://nothing2fancy.com/?p=346</guid>
		<description><![CDATA[I&#8217;ve currently got three pairs of headphones, and fortunately they are all different enough that each one serves a pretty specific purpose.
Just got a pair of Grado S60s for a 2nd generation iPod Shuffle.

Love them. Crystal clear sound, but, like other reviewers have said, almost no sound isolation. Everyone can hear your music and you [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve currently got three pairs of headphones, and fortunately they are all different enough that each one serves a pretty specific purpose.</p>
<p>Just got a pair of <a href="http://www.gradolabs.com/product_pages/sr60.htm">Grado S60s</a> for a 2nd generation iPod Shuffle.</p>
<p><a href=http://www.gradolabs.com/product_images/sr60.gif><img src=http://www.gradolabs.com/product_images/sr60.gif></a></p>
<p>Love them. Crystal clear sound, but, like other reviewers have said, almost no sound isolation. Everyone can hear your music and you can hear everyone else. Best for listening at home.</p>
<p>Of course, I probably wouldn&#8217;t have gotten them at all if it wasn&#8217;t a trade since I&#8217;ve also got a pair of <a href="http://www.amazon.com/Sennheiser-HD-280-Pro-Professional/dp/B000065BPB">Sennheiser 280s</a>.</p>
<p><a href=http://www.luc.edu/digitalmedialab/images/sennheiserhd280.jpg><img src=http://www.luc.edu/digitalmedialab/images/sennheiserhd280.jpg width=400></a></p>
<p>Much more isolation, but the sound isn&#8217;t as full or clear. Also, they are a little tight, so if you&#8217;ve got a huge pumpkin-head, you&#8217;ll have to stretch these bad-boys out.</p>
<p>Oh, and if you&#8217;ve got a new Apple product, you can&#8217;t go wrong with <a href="http://www.apple.com/ipod/in-ear-headphones/">these</a>:</p>
<p><a href=http://nothing2fancy.com/images/forum_images/Apple_In-Ear_Headphones_with_Remote_and_Mic_-_Apple_Store_%28U.S.%29-20100122-182334.png><img src=http://nothing2fancy.com/images/forum_images/Apple_In-Ear_Headphones_with_Remote_and_Mic_-_Apple_Store_%28U.S.%29-20100122-182334.png width=400></a></p>
<p>Yeah, they let you play/pause on any iPhone and let you adjust the volume on an iPhone 3GS&#8230; but did you know you can also play/pause/volume on newer MacBooks and iMacs? Yeah&#8230; they are also super isolating and sound pretty darn good. Don&#8217;t try to use them for long conversations, though. The isolation makes talking on them kind of weird.</p>
]]></content:encoded>
			<wfw:commentRss>http://nothing2fancy.com/2010/01/22/headphone-review/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jimkubicek.com has been updated</title>
		<link>http://nothing2fancy.com/2010/01/22/jimkubicek-com-has-been-updated/</link>
		<comments>http://nothing2fancy.com/2010/01/22/jimkubicek-com-has-been-updated/#comments</comments>
		<pubDate>Fri, 22 Jan 2010 23:21:00 +0000</pubDate>
		<dc:creator>Jim</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://nothing2fancy.com/?p=344</guid>
		<description><![CDATA[I probably won&#8217;t be updating nothing2fancy.com every time I update jimkubicek.com, but I thought I&#8217;d make an exception this time.
Check it out!

I&#8217;ve got my first real portfolio hosted now, it was my submission to a solo art exhibit at the Richmond Public Library. I find out next weekend if I&#8217;ve been selected, so wish me [...]]]></description>
			<content:encoded><![CDATA[<p>I probably won&#8217;t be updating <a href="http://www.nothing2fancy.com">nothing2fancy.com</a> every time I update <a href="http://jimkubicek.com">jimkubicek.com</a>, but I thought I&#8217;d make an exception this time.</p>
<p>Check it out!</p>
<p><a href=http://jimkubicek.com/content/4.projects/2.Into-Darkness/15.jpg><img src=http://jimkubicek.com/content/4.projects/2.Into-Darkness/15.jpg width=400></a></p>
<p>I&#8217;ve got my <a href="http://jimkubicek.com/projects/Into-Darkness/">first real portfolio</a> hosted now, it was my submission to a solo art exhibit at the <a href="http://www.richmondpubliclibrary.org/">Richmond Public Library</a>. I find out next weekend if I&#8217;ve been selected, so wish me luck. I&#8217;m not to worried about it. If I don&#8217;t make the cut, I just saved about $500 in printing and mounting&#8230; so you know, I&#8217;ve got that going for me.</p>
]]></content:encoded>
			<wfw:commentRss>http://nothing2fancy.com/2010/01/22/jimkubicek-com-has-been-updated/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#8220;Error establishing a database connection&#8221; when installing Wordpress on OS X</title>
		<link>http://nothing2fancy.com/2009/12/15/error-establishing-a-database-connection-when-installing-wordpress-on-os-x/</link>
		<comments>http://nothing2fancy.com/2009/12/15/error-establishing-a-database-connection-when-installing-wordpress-on-os-x/#comments</comments>
		<pubDate>Tue, 15 Dec 2009 23:08:55 +0000</pubDate>
		<dc:creator>Jim</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[os x]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://nothing2fancy.com/?p=342</guid>
		<description><![CDATA[This drove me nuts for a few days. I&#8217;ve been trying to set up a test environment on my desktop so that I can work through website iterations without fouling up this site. I walked through all the tutorials out there, but just could not get my Wordpress install to work.

Username, password, hostname were double [...]]]></description>
			<content:encoded><![CDATA[<p>This drove me nuts for a few days. I&#8217;ve been trying to set up a test environment on my desktop so that I can work through website iterations without fouling up this site. I walked through all the tutorials out there, but just could not get my Wordpress install to work.</p>
<div style="text-align:center;"><img src="http://nothing2fancy.com/wp-content/uploads/2009/12/WordPress-›-Error.png" alt="WordPress › Error.png" border="0" width="530" height="280" /></div>
<p>Username, password, hostname were double and triple checked.</p>
<p>It turns out, that when I was installing MySQL on my computer (following the <a href="http://dev.mysql.com/doc/refman/5.0/en/mac-os-x-installation.html">official instructions</a>, which are just fine), I set up a UNIX socket. When I was setting up <a href="http://www.phpmyadmin.net/home_page/index.php">phpMyAdmin</a> it explicitly asked for the socket&#8230; but Wordpress doesn&#8217;t, so it had never occurred to me to enter it.</p>
<p>You should enter it.</p>
<div style="text-align:center;"><img src="http://nothing2fancy.com/wp-content/uploads/2009/12/wp-config.php-Focus-Group-Camera-Club.png" alt="wp-config.php - Focus Group Camera Club.png" border="0" width="396" height="56" /></div>
<p>It&#8217;s for my <a href="http://www.focusgroupcc.com/">local camera club</a>, btw. Look for a new page some time into the new year.</p>
<div style="text-align:center;"><img src="http://nothing2fancy.com/wp-content/uploads/2009/12/Focus-Group-Camera-Club.png" alt="Focus Group Camera Club.png" border="0" width="530" height="512" /></div>
]]></content:encoded>
			<wfw:commentRss>http://nothing2fancy.com/2009/12/15/error-establishing-a-database-connection-when-installing-wordpress-on-os-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Thanks to everyone who came out Friday night</title>
		<link>http://nothing2fancy.com/2009/12/10/thanks-to-everyone-who-came-out-friday-night/</link>
		<comments>http://nothing2fancy.com/2009/12/10/thanks-to-everyone-who-came-out-friday-night/#comments</comments>
		<pubDate>Thu, 10 Dec 2009 11:45:35 +0000</pubDate>
		<dc:creator>Jim</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[photography]]></category>

		<guid isPermaLink="false">http://nothing2fancy.com/?p=337</guid>
		<description><![CDATA[My little part of the the show was a great success. I think roughly 1/3 of the guests who visited were with me, so good job guys! I know Stephanie had a great time, too.

In other news, I was approached by the library curator. She liked my work and suggested that I submit my portfolio [...]]]></description>
			<content:encoded><![CDATA[<p>My little part of the the show was a great success. I think roughly 1/3 of the guests who visited were with me, so good job guys! I know Stephanie had a great time, too.</p>
<div style="text-align:center;"><img src="http://nothing2fancy.com/wp-content/uploads/2009/12/web-1-of-1.jpg" alt="web (1 of 1).jpg" border="0" width="353" height="530" /></div>
<p>In other news, I was approached by the library curator. She liked my work and suggested that I submit my portfolio for a solo show. I&#8217;ve got a little over 1 month to prepare, so I&#8217;m going to get right on that.</p>
]]></content:encoded>
			<wfw:commentRss>http://nothing2fancy.com/2009/12/10/thanks-to-everyone-who-came-out-friday-night/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Come see my exhibit Friday!</title>
		<link>http://nothing2fancy.com/2009/12/03/come-see-my-exhibit-friday/</link>
		<comments>http://nothing2fancy.com/2009/12/03/come-see-my-exhibit-friday/#comments</comments>
		<pubDate>Thu, 03 Dec 2009 17:56:02 +0000</pubDate>
		<dc:creator>Jim</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Pictures]]></category>
		<category><![CDATA[art]]></category>
		<category><![CDATA[photography]]></category>

		<guid isPermaLink="false">http://nothing2fancy.com/?p=330</guid>
		<description><![CDATA[I&#8217;m showing three images with the Richmond Focus Camera Club tomorrow night (Friday, December 3) at the Richmond Main Library, Gelman Room. First Friday is going on that night, so I figure most of you will be out and about. The reception lasts from 7-9PM. I hope some folks can make it out to say [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m showing three images with the Richmond Focus Camera Club tomorrow night (Friday, December 3) at the Richmond Main Library, Gelman Room. <a href="http://www.firstfridaysrichmond.com/">First Friday</a> is going on that night, so I figure most of you will be out and about. The reception lasts from 7-9PM. I hope some folks can make it out to say hi to me!</p>
<div style="text-align:center;"><img src="http://nothing2fancy.com/wp-content/uploads/2009/12/Exhibit.png" border="0" alt="Exhibit.png" width="320" height="491" /></div>
<p><strong>Location: </strong><br />
Richmond Main Library<br />
Gelman Room<br />
<a href="http://maps.google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=101+E+Franklin+St,+Richmond,+VA&amp;sll=37.545649,-77.44076&amp;sspn=0.012045,0.022745&amp;ie=UTF8&amp;hq=&amp;hnear=101+E+Franklin+St,+Richmond,+Virginia+23219&amp;ll=37.542672,-77.442563&amp;spn=0.01162,0.022745&amp;z=16">101 East Franklin Street<br />
Richmond, VA</a></p>
<p><strong>Time:</strong><br />
7-9PM</p>
<p><strong>Map:</strong></p>
<div style="text-align:center;"><a href="http://maps.google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=101+E+Franklin+St,+Richmond,+VA&amp;sll=37.545649,-77.44076&amp;sspn=0.012045,0.022745&amp;ie=UTF8&amp;hq=&amp;hnear=101+E+Franklin+St,+Richmond,+Virginia+23219&amp;ll=37.542672,-77.442563&amp;spn=0.01162,0.022745&amp;z=16"><img src="http://nothing2fancy.com/wp-content/uploads/2009/12/main-library-Google-Maps.png" border="0" alt="main library - Google Maps.png" width="493" height="444" /></a></div>
]]></content:encoded>
			<wfw:commentRss>http://nothing2fancy.com/2009/12/03/come-see-my-exhibit-friday/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>In Other News&#8230;</title>
		<link>http://nothing2fancy.com/2009/11/20/in-other-news/</link>
		<comments>http://nothing2fancy.com/2009/11/20/in-other-news/#comments</comments>
		<pubDate>Sat, 21 Nov 2009 02:01:33 +0000</pubDate>
		<dc:creator>Jim</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://nothing2fancy.com/?p=325</guid>
		<description><![CDATA[I&#8217;m going to try and blog once a day. We&#8217;ll see how it goes.
]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m going to try and blog once a day. We&#8217;ll see how it goes.</p>
]]></content:encoded>
			<wfw:commentRss>http://nothing2fancy.com/2009/11/20/in-other-news/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sure Fire Investment Tip</title>
		<link>http://nothing2fancy.com/2009/11/20/sure-fire-investment-tip/</link>
		<comments>http://nothing2fancy.com/2009/11/20/sure-fire-investment-tip/#comments</comments>
		<pubDate>Sat, 21 Nov 2009 02:01:07 +0000</pubDate>
		<dc:creator>Jim</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[computers]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[gruber]]></category>

		<guid isPermaLink="false">http://nothing2fancy.com/?p=323</guid>
		<description><![CDATA[I&#8217;m closely watching Google&#8217;s Chrome OS. Whichever computer company who throws all their eggs into that basket will be the ones that come out ahead of all other manufactures (with the exception of Apple, I&#8217;d say).
Here&#8217;s a demo of the OS:

The key here is that this OS is a differentiator in a pretty homogenous market. [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m closely watching Google&#8217;s Chrome OS. Whichever computer company who throws all their eggs into that basket will be the ones that come out ahead of all other manufactures (with the exception of Apple, I&#8217;d say).</p>
<p>Here&#8217;s a demo of the OS:</p>
<p><object width="560" height="340"><param name="movie" value="http://www.youtube.com/v/ANMrzw7JFzA&#038;hl=en_US&#038;fs=1&#038;rel=0"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/ANMrzw7JFzA&#038;hl=en_US&#038;fs=1&#038;rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="340"></embed></object></p>
<p>The key here is that this OS is a differentiator in a pretty homogenous market. Pop Quiz: Who makes the best laptops, Sony, HP or Dell? Trick question, nobody gives a fuck because they all run the same shitty operating system. </p>
<p>To quote <a href="http://daringfireball.net/2009/10/herd_mentality">Gruber</a> (emphasis mine):</p>
<blockquote><p>Apple’s ability to produce innovative hardware is inextricably intertwined with its ability to produce innovative software. The iPhone is an even better example than the Mac.</p>
<p>It’s not just that Apple is different among computer makers. <em>It’s that Apple is the only one that even can be different</em>, because it’s the only one that has its own OS. Part of the industry-wide herd mentality is an assumption that no one else can make a computer OS — that anyone can make a computer but only Microsoft can make an OS. It should be embarrassing to companies like Dell and Sony, with deep pockets and strong brand names, that they’re stuck selling computers with the same copy of Windows installed as the no-name brands.</p></blockquote>
<p>There is the key. As much as folks talk about Apple&#8217;s sexy packaging, ask most Mac users and they would almost entirely rather use OS X on a cheap laptop than Windows XP on a fancy laptop. Google OS is offering manufacturers the opportunity to differentiate themselves, stand out from the crowd.</p>
<p><strong>One caveat</strong>. Chrome OS is open source, which means that computer manufacturers can (and will) put their own special brand of turd cream on this OS. Just because HP releases a Chrome netbook does not mean that they didn&#8217;t foul up the OS so much that it&#8217;s borderline unusable.</p>
]]></content:encoded>
			<wfw:commentRss>http://nothing2fancy.com/2009/11/20/sure-fire-investment-tip/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
