<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>The Unix Geek</title>
	<atom:link href="http://theunixgeek.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://theunixgeek.wordpress.com</link>
	<description>Unix: It's What Matters</description>
	<lastBuildDate>Sat, 02 Jan 2010 15:14:20 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='theunixgeek.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>The Unix Geek</title>
		<link>http://theunixgeek.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://theunixgeek.wordpress.com/osd.xml" title="The Unix Geek" />
	<atom:link rel='hub' href='http://theunixgeek.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Find Standard Deviation with C++</title>
		<link>http://theunixgeek.wordpress.com/2010/01/02/find-standard-deviation-with-c/</link>
		<comments>http://theunixgeek.wordpress.com/2010/01/02/find-standard-deviation-with-c/#comments</comments>
		<pubDate>Sat, 02 Jan 2010 15:14:20 +0000</pubDate>
		<dc:creator>theunixgeek</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://theunixgeek.wordpress.com/?p=350</guid>
		<description><![CDATA[Here is a small C++ program that calculates the mean and standard deviation of a given data set.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=theunixgeek.wordpress.com&amp;blog=3915329&amp;post=350&amp;subd=theunixgeek&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I wrote a small C++ program to calculate the mean and standard deviation of a given data set. Here it is:</p>
<pre>#include &lt;iostream&gt;
#include &lt;cmath&gt;
using namespace std;

int main (int argc, char* argv[])
{
	int number_of_items;
	cout &lt;&lt; "How many pieces of data are in the list? ";
        cin &gt;&gt; number_of_items;
	float list[number_of_items];

	// get all the data items
	cout &lt;&lt; "Please enter the data:" &lt;&lt; endl;
	int i;
	for (i = 1; i &lt;= number_of_items; i++)
	{
		cout &lt;&lt; i &lt;&lt; ". "; 		cin &gt;&gt; list[i];
	}

	// find the mean (average) of the data
	float xbar = 0;
	for (i = 0; i &lt;= number_of_items; i++)
		xbar = xbar + list[i];

	xbar = xbar / number_of_items;
	cout &lt;&lt; "The mean (average) is " &lt;&lt; xbar &lt;&lt; "." &lt;&lt; endl;

	// find the standard deviation
	float numerator = 0;
	float denominator = number_of_items;

	for (i = 1; i &lt;= number_of_items; i++)
		numerator = numerator + pow((list[i] - xbar), 2);

	float standard_deviation = sqrt (numerator/denominator);
	cout &lt;&lt; "The standard deviation for the given data is "
		 &lt;&lt; standard_deviation &lt;&lt; "." &lt;&lt; endl;

	return 0;
}</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/theunixgeek.wordpress.com/350/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/theunixgeek.wordpress.com/350/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/theunixgeek.wordpress.com/350/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/theunixgeek.wordpress.com/350/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/theunixgeek.wordpress.com/350/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/theunixgeek.wordpress.com/350/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/theunixgeek.wordpress.com/350/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/theunixgeek.wordpress.com/350/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/theunixgeek.wordpress.com/350/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/theunixgeek.wordpress.com/350/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/theunixgeek.wordpress.com/350/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/theunixgeek.wordpress.com/350/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/theunixgeek.wordpress.com/350/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/theunixgeek.wordpress.com/350/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=theunixgeek.wordpress.com&amp;blog=3915329&amp;post=350&amp;subd=theunixgeek&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://theunixgeek.wordpress.com/2010/01/02/find-standard-deviation-with-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ebb8d69e7f40c06768593cb00d982843?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">theunixgeek</media:title>
		</media:content>
	</item>
		<item>
		<title>The Web Invaded the Desktop</title>
		<link>http://theunixgeek.wordpress.com/2009/09/30/the-web-invaded-the-desktop/</link>
		<comments>http://theunixgeek.wordpress.com/2009/09/30/the-web-invaded-the-desktop/#comments</comments>
		<pubDate>Thu, 01 Oct 2009 00:30:30 +0000</pubDate>
		<dc:creator>theunixgeek</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://theunixgeek.wordpress.com/?p=348</guid>
		<description><![CDATA[I can officially say that the web has infiltrated itself into my desktop operating system. On my dock, eight out of the fourteen applications are directly web-related: Safari, my web browser; Mail, my mail client; Adium, my messaging client; Colloquy, my IRC client; Hulu Desktop, a desktop version of the online TV website; iTunes, especially [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=theunixgeek.wordpress.com&amp;blog=3915329&amp;post=348&amp;subd=theunixgeek&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I can officially say that the web has infiltrated itself into my desktop operating system. On my dock, eight out of the fourteen applications are directly web-related: Safari, my web browser; Mail, my mail client; Adium, my messaging client; Colloquy, my IRC client; Hulu Desktop, a desktop version of the online TV website; iTunes, especially in regards to the iTunes store; Songbird, for finding music online; and Times, for viewing news online.</p>
<p><a href="http://imgur.com/WDDiH.png"><img src="http://imgur.com/WDDiH.png" alt="" width="350" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/theunixgeek.wordpress.com/348/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/theunixgeek.wordpress.com/348/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/theunixgeek.wordpress.com/348/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/theunixgeek.wordpress.com/348/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/theunixgeek.wordpress.com/348/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/theunixgeek.wordpress.com/348/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/theunixgeek.wordpress.com/348/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/theunixgeek.wordpress.com/348/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/theunixgeek.wordpress.com/348/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/theunixgeek.wordpress.com/348/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/theunixgeek.wordpress.com/348/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/theunixgeek.wordpress.com/348/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/theunixgeek.wordpress.com/348/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/theunixgeek.wordpress.com/348/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=theunixgeek.wordpress.com&amp;blog=3915329&amp;post=348&amp;subd=theunixgeek&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://theunixgeek.wordpress.com/2009/09/30/the-web-invaded-the-desktop/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ebb8d69e7f40c06768593cb00d982843?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">theunixgeek</media:title>
		</media:content>

		<media:content url="http://imgur.com/WDDiH.png" medium="image" />
	</item>
		<item>
		<title>Slowing Down</title>
		<link>http://theunixgeek.wordpress.com/2009/08/27/slowing-down/</link>
		<comments>http://theunixgeek.wordpress.com/2009/08/27/slowing-down/#comments</comments>
		<pubDate>Thu, 27 Aug 2009 23:42:26 +0000</pubDate>
		<dc:creator>theunixgeek</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://theunixgeek.wordpress.com/?p=346</guid>
		<description><![CDATA[Due to other things that have come up, I haven&#8217;t been able to write too many blog posts recently. To any followers, I apologize. I will try to set some time apart to write something else soon.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=theunixgeek.wordpress.com&amp;blog=3915329&amp;post=346&amp;subd=theunixgeek&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Due to other things that have come up, I haven&#8217;t been able to write too many blog posts recently. To any followers, I apologize. I will try to set some time apart to write something else soon.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/theunixgeek.wordpress.com/346/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/theunixgeek.wordpress.com/346/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/theunixgeek.wordpress.com/346/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/theunixgeek.wordpress.com/346/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/theunixgeek.wordpress.com/346/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/theunixgeek.wordpress.com/346/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/theunixgeek.wordpress.com/346/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/theunixgeek.wordpress.com/346/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/theunixgeek.wordpress.com/346/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/theunixgeek.wordpress.com/346/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/theunixgeek.wordpress.com/346/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/theunixgeek.wordpress.com/346/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/theunixgeek.wordpress.com/346/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/theunixgeek.wordpress.com/346/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=theunixgeek.wordpress.com&amp;blog=3915329&amp;post=346&amp;subd=theunixgeek&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://theunixgeek.wordpress.com/2009/08/27/slowing-down/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ebb8d69e7f40c06768593cb00d982843?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">theunixgeek</media:title>
		</media:content>
	</item>
		<item>
		<title>Keynote Thumbnails in Quick Look</title>
		<link>http://theunixgeek.wordpress.com/2009/07/31/keynote-thumbnails-in-quick-look/</link>
		<comments>http://theunixgeek.wordpress.com/2009/07/31/keynote-thumbnails-in-quick-look/#comments</comments>
		<pubDate>Fri, 31 Jul 2009 14:41:34 +0000</pubDate>
		<dc:creator>theunixgeek</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://theunixgeek.wordpress.com/?p=343</guid>
		<description><![CDATA[As can be seen from Apple&#8217;s Leopard presentations before release, as well as on page 22 of the Leopard manual, opening a Keynote presentation using Quick Look should allow you to see slide thumbnails on the side, as in 0:28 in this video. However, this is not set as the default behavior. Achieving this is [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=theunixgeek.wordpress.com&amp;blog=3915329&amp;post=343&amp;subd=theunixgeek&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>As can be seen from Apple&#8217;s Leopard presentations before release, as well as on page 22 of the Leopard manual, opening a Keynote presentation using Quick Look should allow you to see slide thumbnails on the side, as in 0:28 in <a href="http://www.youtube.com/watch?v=ti9NehCxhDQ">this video</a>. However, this is not set as the default behavior. Achieving this is very simple, though. In Keynote&#8217;s preferences, under General, simply check off &#8220;Include preview in document by default.&#8221; There you have it!</p>
<p><a onclick="return mugicPopWin(this,event);" oncontextmenu="mugicRightClick(this);" href="http://support.apple.com/kb/HT1034">via Apple&#8217;s Support page</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/theunixgeek.wordpress.com/343/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/theunixgeek.wordpress.com/343/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/theunixgeek.wordpress.com/343/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/theunixgeek.wordpress.com/343/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/theunixgeek.wordpress.com/343/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/theunixgeek.wordpress.com/343/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/theunixgeek.wordpress.com/343/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/theunixgeek.wordpress.com/343/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/theunixgeek.wordpress.com/343/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/theunixgeek.wordpress.com/343/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/theunixgeek.wordpress.com/343/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/theunixgeek.wordpress.com/343/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/theunixgeek.wordpress.com/343/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/theunixgeek.wordpress.com/343/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=theunixgeek.wordpress.com&amp;blog=3915329&amp;post=343&amp;subd=theunixgeek&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://theunixgeek.wordpress.com/2009/07/31/keynote-thumbnails-in-quick-look/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ebb8d69e7f40c06768593cb00d982843?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">theunixgeek</media:title>
		</media:content>
	</item>
		<item>
		<title>Snow Leopard is Darker</title>
		<link>http://theunixgeek.wordpress.com/2009/07/26/snow-leopard-is-darker/</link>
		<comments>http://theunixgeek.wordpress.com/2009/07/26/snow-leopard-is-darker/#comments</comments>
		<pubDate>Sun, 26 Jul 2009 10:44:29 +0000</pubDate>
		<dc:creator>theunixgeek</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://theunixgeek.wordpress.com/?p=340</guid>
		<description><![CDATA[It seems that my predictions, which were one of the first on the internet regarding the subject, that Snow Leopard would be darker have come true.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=theunixgeek.wordpress.com&amp;blog=3915329&amp;post=340&amp;subd=theunixgeek&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>It seems that my predictions, which were one of the first on the internet regarding the subject, <a href="http://theunixgeek.wordpress.com/2009/03/07/snow-leopard-obviously-will-be-darker/">that Snow Leopard would be darker</a> have come true! Here&#8217;s a quick timeline of how I came about the idea and all the steps that Apple took to make it glaringly obvious that Snow Leopard&#8217;s UI would be even the slightest bit darker than Leopard&#8217;s:</p>
<ol>
<li>Someone on IRC (nick JHKKHJK or similar, I can&#8217;t quite recall it)  in a WWDC discussion channel <a href="http://theunixgeek.wordpress.com/2008/06/09/os-x-106-pre-wwdc-secrets/">told me</a> that Snow Leopard&#8217;s UI would be darker. That started originally what seemed like a wild goose chase, but ended up being a lot more meaningful than that.</li>
<li>First up was <a href="http://theunixgeek.wordpress.com/2008/06/09/confirmed-os-x-snow-leopard-will-be-darker/">MobileMe</a>, which sported a dark toolbar. Knowing how Apple feels about design and a look of integration across all its products, I found it obvious that it was only a matter of time before other applications started going dark as well.</li>
<li>Next, interfaces began to merge with <a href="http://theunixgeek.wordpress.com/2008/09/09/snow-leopard-will-be-darker-more-hints/">iTunes 8</a>, which  in Grid View has a dark &#8220;sub-toolbar&#8221; and even darker scrollbars.</li>
<li>When QuickTime X&#8217;s <a href="http://theunixgeek.wordpress.com/2009/03/07/snow-leopard-obviously-will-be-darker/">new interface</a> was announced I was sure that my ideas were no longer simply speculation and that Apple was giving way too many clus that they were going to give us a darker interfaces.</li>
<li>Now, Dock context menus are dark. Having five interface items be dark is interesting enough; I wonder what else will be darker in future Snow Leopard releases. Besides, all the iLife apps have dark scrollbars.</li>
</ol>
<p>Oh, and there are <a href="http://uneasysilence.com/archive/2009/07/14293/">new wallpapers</a> available for Snow Leopard; I&#8217;m already using some of them.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/theunixgeek.wordpress.com/340/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/theunixgeek.wordpress.com/340/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/theunixgeek.wordpress.com/340/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/theunixgeek.wordpress.com/340/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/theunixgeek.wordpress.com/340/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/theunixgeek.wordpress.com/340/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/theunixgeek.wordpress.com/340/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/theunixgeek.wordpress.com/340/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/theunixgeek.wordpress.com/340/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/theunixgeek.wordpress.com/340/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/theunixgeek.wordpress.com/340/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/theunixgeek.wordpress.com/340/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/theunixgeek.wordpress.com/340/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/theunixgeek.wordpress.com/340/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=theunixgeek.wordpress.com&amp;blog=3915329&amp;post=340&amp;subd=theunixgeek&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://theunixgeek.wordpress.com/2009/07/26/snow-leopard-is-darker/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ebb8d69e7f40c06768593cb00d982843?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">theunixgeek</media:title>
		</media:content>
	</item>
		<item>
		<title>What Happened to Project Looking Glass?</title>
		<link>http://theunixgeek.wordpress.com/2009/07/09/what-happened-to-project-looking-glass/</link>
		<comments>http://theunixgeek.wordpress.com/2009/07/09/what-happened-to-project-looking-glass/#comments</comments>
		<pubDate>Thu, 09 Jul 2009 23:47:51 +0000</pubDate>
		<dc:creator>theunixgeek</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://theunixgeek.wordpress.com/?p=337</guid>
		<description><![CDATA[Project Looking Glass is a dying desktop environment developed by Sun Microsystems. This article examines what  possibly brought about the stagnation of  its development.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=theunixgeek.wordpress.com&amp;blog=3915329&amp;post=337&amp;subd=theunixgeek&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.sun.com/software/looking_glass/">Project Looking Glass</a> is a cross-platform (compatible with many Unix-based operating systems) three-dimensional desktop environment based on Java technology made by Sun Microsystems. The technology started with the vision of recreating the way the desktop environment works, taking it from the plain 2D and 2.5D we are used to to something rather different.</p>
<p>The project originally went beyond a simple conception into a full-fledged stable desktop environment. Its last stable release (1.0.1), however, was in 2007. Its development seems to have virtually stopped, though. It&#8217;s plainly obvious, especially since its website hasn&#8217;t been updated in two years or so and we hardly hear anything about it. So what ever happened to Project Looking Glass? Why did the project stagnate?</p>
<p>After giving it some thought and research, here are a few reasons I came up with:</p>
<ul>
<li>There is a lack of user base. Sure, it&#8217;s interesting, but not many people felt the compulsion to switch from their two-dimensional desktop environment, one to which they had gotten completely accustomed, to something completely new. Besides, how many common users besides &#8220;techies&#8221; have heard of Looking Glass at all?</li>
<li>There is a lack of interest. This builds up on the previous point. It seems Sun simply got tired of the project and promoting it. Besides, Sun has already accepted GNOME as the de facto standard desktop environment for its OS releases, such as OpenSolaris.</li>
<li>It&#8217;s another platform. Modern developers, despite being relatively welcoming to new technologies, seem to have already found their niche and divided themselves into what they find suitable. Further more, Looking Glass and its APIs, as far as it seems, has a lot unique features that are not easily or readily deployable to other platforms, so it&#8217;s not a WORA (write-once-run-anywhere) situation.</li>
</ul>
<p>Given these, and other reasons, such as the easier availability of other 3D desktop environments, such as Compiz, it&#8217;s relatively easy to see why Looking Glass died out. The project&#8217;s latency is still a loss for the world of development.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/theunixgeek.wordpress.com/337/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/theunixgeek.wordpress.com/337/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/theunixgeek.wordpress.com/337/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/theunixgeek.wordpress.com/337/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/theunixgeek.wordpress.com/337/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/theunixgeek.wordpress.com/337/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/theunixgeek.wordpress.com/337/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/theunixgeek.wordpress.com/337/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/theunixgeek.wordpress.com/337/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/theunixgeek.wordpress.com/337/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/theunixgeek.wordpress.com/337/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/theunixgeek.wordpress.com/337/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/theunixgeek.wordpress.com/337/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/theunixgeek.wordpress.com/337/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=theunixgeek.wordpress.com&amp;blog=3915329&amp;post=337&amp;subd=theunixgeek&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://theunixgeek.wordpress.com/2009/07/09/what-happened-to-project-looking-glass/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ebb8d69e7f40c06768593cb00d982843?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">theunixgeek</media:title>
		</media:content>
	</item>
		<item>
		<title>Project Euler 5 by Exhaustion in Python</title>
		<link>http://theunixgeek.wordpress.com/2009/06/30/project-euler-5-by-exhaustion-in-python/</link>
		<comments>http://theunixgeek.wordpress.com/2009/06/30/project-euler-5-by-exhaustion-in-python/#comments</comments>
		<pubDate>Tue, 30 Jun 2009 14:45:02 +0000</pubDate>
		<dc:creator>theunixgeek</dc:creator>
				<category><![CDATA[programming]]></category>
		<category><![CDATA[Python]]></category>

		<guid isPermaLink="false">http://theunixgeek.wordpress.com/?p=334</guid>
		<description><![CDATA[Here is my solution to the 5th problem of Project Euler, solved via exhaustion in Python. Please note that I am aware that this problem is more preferably solved by factoring, but programatic exhaustion can be &#8220;fun.&#8221; With a few added print statements, a file around 3 GB large could be outputted from this 4 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=theunixgeek.wordpress.com&amp;blog=3915329&amp;post=334&amp;subd=theunixgeek&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Here is my solution to the 5th problem of Project Euler, solved via exhaustion in Python. Please note that I am aware that this problem is more preferably solved by factoring, but programatic exhaustion can be &#8220;fun.&#8221; With a few added print statements, a file around 3 GB large could be outputted from this 4 kilobyte program.</p>
<p><strong>This program is Python 3-compatible. </strong>To make it compatible with earlier versions, remove the parentheses from the final print statement. It is released under the CC BY-SA (Creative Commons Attribution-ShareAlike license).</p>
<p><em>5. What is the smallest number that is evenly divisible by all of the numbers from 1 to 20?</em></p>
<p><code><span style="color:#008000;">divisors</span> = <span style="color:#800080;">range</span>(1, 21)<br />
<span style="color:#008000;"> i</span> = 1</code></p>
<p><code> </code></p>
<p><code><span style="color:#ff6600;">while</span> <span style="color:#008000;">i</span>:<br />
\t for <span style="color:#008000;">x</span> in <span style="color:#008000;">divisors</span>:<br />
<span style="color:#ff6600;"><span style="color:#000000;">\t\t </span>if</span> <span style="color:#008000;">i</span> % <span style="color:#008000;">x</span> != 0:<br />
<span style="color:#ff6600;"><span style="color:#000000;">\t\t\t </span>break</span></code></p>
<p><code> </code></p>
<p><code><span style="color:#ff6600;"><span style="color:#000000;">\t </span>if</span> <span style="color:#008000;">i</span> % <span style="color:#008000;">x</span> == 0 and <span style="color:#008000;">x</span> == 20:<br />
\t\t answer = <span style="color:#008000;">i<br />
<span style="color:#000000;"><span style="color:#008000;"><span style="color:#000000;">\t\t </span>i</span> = -1</span></span></code></p>
<p><code> </code></p>
<p><code><span style="color:#008000;"><span style="color:#000000;">\t </span>i</span> = i + 1</p>
<p></code></p>
<p><code><span style="color:#800080;">print</span>(answer)</code></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/theunixgeek.wordpress.com/334/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/theunixgeek.wordpress.com/334/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/theunixgeek.wordpress.com/334/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/theunixgeek.wordpress.com/334/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/theunixgeek.wordpress.com/334/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/theunixgeek.wordpress.com/334/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/theunixgeek.wordpress.com/334/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/theunixgeek.wordpress.com/334/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/theunixgeek.wordpress.com/334/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/theunixgeek.wordpress.com/334/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/theunixgeek.wordpress.com/334/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/theunixgeek.wordpress.com/334/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/theunixgeek.wordpress.com/334/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/theunixgeek.wordpress.com/334/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=theunixgeek.wordpress.com&amp;blog=3915329&amp;post=334&amp;subd=theunixgeek&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://theunixgeek.wordpress.com/2009/06/30/project-euler-5-by-exhaustion-in-python/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ebb8d69e7f40c06768593cb00d982843?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">theunixgeek</media:title>
		</media:content>
	</item>
		<item>
		<title>Opera 10 Beta Review</title>
		<link>http://theunixgeek.wordpress.com/2009/06/12/opera-10-beta-review/</link>
		<comments>http://theunixgeek.wordpress.com/2009/06/12/opera-10-beta-review/#comments</comments>
		<pubDate>Fri, 12 Jun 2009 12:11:05 +0000</pubDate>
		<dc:creator>theunixgeek</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://theunixgeek.wordpress.com/2009/06/12/opera-10-beta-review/</guid>
		<description><![CDATA[I bet Opera has recently been getting a lot of attention after this article was put on Digg, and while I myself have already tried out Opera, I decided to take another look at it and to see all the good things Opera 10 Beta has to offer. There are a lot cool new features, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=theunixgeek.wordpress.com&amp;blog=3915329&amp;post=329&amp;subd=theunixgeek&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I bet Opera has recently been getting a lot of attention after <a href="http://digg.com/d1tY2a">this article was put on Digg</a>, and while I myself have already tried out Opera, I decided to take another look at it and to see all the good things Opera 10 Beta has to offer. There are a lot cool new features, such graphical tabs (including a Windows Vista-like preview where hovering over a tab let&#8217;s you see a preview of the page), 100% on the Acid3 test (although I still find it doesn&#8217;t render some pages as well as Safari or Firefox), and better speed, but I&#8217;m going to take a look at some of the sidebar features: what I would consider to be separate applications built into the browser.</p>
<p>Before starting, though, I&#8217;d just like to mention what&#8217;s one of very few cons with this (pre-)release: a few preferences are scattered around other menus when they really should be in Opera &gt; Preferences, namely Appearance and Mail and Chat Accounts.</p>
<p>I&#8217;ve never really liked built-in support for e-mail and chat, but Opera implemented it well. When I open up mail in the sidebar, the current page being viewed is still intact. From this sidebar, I can check if I have any new mail. If I do, I can open it in another tab. Once I&#8217;m done, I just close the tab and am back to browsing. No more switching between applications. Now, while I&#8217;m still a big Colloquy fan, I find that IRC chatting has been implemented quite well. Your favorite (or rather, recently-connected) rooms are listed in the sidebar and all you need is one click to connect to them.</p>
<p><a href="http://img269.imageshack.us/img269/7623/opera10betachat.png" target="_blank"><img src="http://img269.imageshack.us/img269/7623/opera10betachat.png" width="350" border="0" alt="Screenshot of Opera 10 Beta" /></a></p>
<p>For jotting down links you want to go back to later but don&#8217;t exactly want to bookmark, the notes tab on the side allows you to jot those down, as well as other notes or reminders. There&#8217;s also a built-in address book, which makes keeping contacts less cumbersome than it tends to be on Windows and Linux distros (I still prefer OS X&#8217;s Address Book.app, though).</p>
<p>Overall, Opera 10 Beta a very nice and stable release whose final build I would certainly recommend, especially to Windows and Linux users. Don&#8217;t get me wrong; it runs very well on OS X, and is about sixty megabytes smaller than Safari, but I just find that user interface doesn&#8217;t fit in very well with the rest of the system. Other than that, it&#8217;s great and the features are wonderful.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/theunixgeek.wordpress.com/329/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/theunixgeek.wordpress.com/329/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/theunixgeek.wordpress.com/329/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/theunixgeek.wordpress.com/329/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/theunixgeek.wordpress.com/329/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/theunixgeek.wordpress.com/329/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/theunixgeek.wordpress.com/329/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/theunixgeek.wordpress.com/329/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/theunixgeek.wordpress.com/329/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/theunixgeek.wordpress.com/329/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/theunixgeek.wordpress.com/329/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/theunixgeek.wordpress.com/329/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/theunixgeek.wordpress.com/329/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/theunixgeek.wordpress.com/329/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=theunixgeek.wordpress.com&amp;blog=3915329&amp;post=329&amp;subd=theunixgeek&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://theunixgeek.wordpress.com/2009/06/12/opera-10-beta-review/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ebb8d69e7f40c06768593cb00d982843?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">theunixgeek</media:title>
		</media:content>

		<media:content url="http://img269.imageshack.us/img269/7623/opera10betachat.png" medium="image">
			<media:title type="html">Screenshot of Opera 10 Beta</media:title>
		</media:content>
	</item>
		<item>
		<title>&#8220;My&#8221; Snow Leopard Feature</title>
		<link>http://theunixgeek.wordpress.com/2009/05/30/my-snow-leopard-feature/</link>
		<comments>http://theunixgeek.wordpress.com/2009/05/30/my-snow-leopard-feature/#comments</comments>
		<pubDate>Sat, 30 May 2009 11:22:58 +0000</pubDate>
		<dc:creator>theunixgeek</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://theunixgeek.wordpress.com/2009/05/30/my-snow-leopard-feature</guid>
		<description><![CDATA[While I doubt that I was the only one to recommend this, one of my submissions to Apple (see &#8220;Spotlight and the Finder&#8220;) seems to have been heard. If I’m in my Documents folder and I start typing in the Spotlight toolbar item, I’ll want Spotlight to start searching within my Documents folder, not throughout [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=theunixgeek.wordpress.com&amp;blog=3915329&amp;post=325&amp;subd=theunixgeek&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>While I doubt that I was the only one to recommend this, one of my submissions to Apple (see &#8220;<a href="http://theunixgeek.wordpress.com/2009/03/22/spotlight-and-the-finder/">Spotlight and the Finder</a>&#8220;) seems to have been heard.</p>
<blockquote><p>If I’m in my Documents folder and I start typing in the Spotlight toolbar item, I’ll want Spotlight to start searching within my Documents folder, not throughout my whole Mac. If I want to do that, I’ll either go into the root directory or search from the menu bar.</p></blockquote>
<p>The following screenshot is taken from a now-removed YouTube video depicting Snow Leopard&#8217;s Finder preferences:</p>
<p><img src="http://img81.imageshack.us/img81/2671/betterfindersearchsl.png" alt="0" width="296" height="240" /></p>
<p>Thanks for the new feature, Apple!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/theunixgeek.wordpress.com/325/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/theunixgeek.wordpress.com/325/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/theunixgeek.wordpress.com/325/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/theunixgeek.wordpress.com/325/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/theunixgeek.wordpress.com/325/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/theunixgeek.wordpress.com/325/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/theunixgeek.wordpress.com/325/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/theunixgeek.wordpress.com/325/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/theunixgeek.wordpress.com/325/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/theunixgeek.wordpress.com/325/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/theunixgeek.wordpress.com/325/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/theunixgeek.wordpress.com/325/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/theunixgeek.wordpress.com/325/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/theunixgeek.wordpress.com/325/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=theunixgeek.wordpress.com&amp;blog=3915329&amp;post=325&amp;subd=theunixgeek&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://theunixgeek.wordpress.com/2009/05/30/my-snow-leopard-feature/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ebb8d69e7f40c06768593cb00d982843?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">theunixgeek</media:title>
		</media:content>

		<media:content url="http://img81.imageshack.us/img81/2671/betterfindersearchsl.png" medium="image" />
	</item>
		<item>
		<title>Reflections on GNOME&#8217;s Sociological Research</title>
		<link>http://theunixgeek.wordpress.com/2009/05/20/reflections-on-gnomes-sociological-research/</link>
		<comments>http://theunixgeek.wordpress.com/2009/05/20/reflections-on-gnomes-sociological-research/#comments</comments>
		<pubDate>Wed, 20 May 2009 22:29:29 +0000</pubDate>
		<dc:creator>theunixgeek</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://theunixgeek.wordpress.com/?p=322</guid>
		<description><![CDATA[I took a look at GNOME&#8217;s recent sociological research, which set out to organize information about worldwide GNOME users and to get some ideas about who uses GNOME, what they use it for, and so on. To start off, I found the relations between countries and languages to be extremely interesting. From a developer&#8217;s point [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=theunixgeek.wordpress.com&amp;blog=3915329&amp;post=322&amp;subd=theunixgeek&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I took a look at GNOME&#8217;s <a href="http://live.gnome.org/UsabilityProject/UsabilityTests/GnomeGeneralResearch">recent sociological research</a>, which set out to organize information about worldwide GNOME users and to get some ideas about who uses GNOME, what they use it for, and so on.</p>
<p>To start off, I found the relations between countries and languages to be extremely interesting. From a developer&#8217;s point a view, this is great for knowing which language localizations should be more of a priority than others, what languages the project development or support team should have a basic hang of, and of the general future of the GNOME-using community. The number of Chinese users is almost the same as the number of American and European users combined.</p>
<p>It&#8217;s also easy to see that the GNOME community is being led by students and learners worldwide that want to know more, distribute more information, and have access to more information. The vast majority of users are currently attending a university or college, wish to learn more, and use GNOME not only as a work environment, but also for pleasure. This shows that it&#8217;s nice that GNOME is succeeding at reaching out to both sides of the spectrum.</p>
<p>Most of the users are connected to the internet, mostly with high-speed DSL or better. A lot use Windows as well and, by a small margin, tend to prefer desktop computers to laptops for working with GNOME and Linux. Many however, answered they&#8217;d like GNOME to follow in some of the steps of OS X: most notably, they want to be able to search for menu items within each program.</p>
<p>The GNOME team itself summarized a few important points, such as (just to name a few): more &#8220;professional&#8221; applications need to be written for the Linux desktop, GNOME should head for the cloud (integrating internet activities more prominently into the daily use of the desktop), the panels should be redesigned, and finding things (be it files, applications, etc) needs to be easier.</p>
<p>I hope GNOME 3.0 turns out to be an awesome release when it comes by, and that all the information gathered can be put into good use.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/theunixgeek.wordpress.com/322/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/theunixgeek.wordpress.com/322/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/theunixgeek.wordpress.com/322/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/theunixgeek.wordpress.com/322/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/theunixgeek.wordpress.com/322/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/theunixgeek.wordpress.com/322/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/theunixgeek.wordpress.com/322/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/theunixgeek.wordpress.com/322/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/theunixgeek.wordpress.com/322/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/theunixgeek.wordpress.com/322/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/theunixgeek.wordpress.com/322/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/theunixgeek.wordpress.com/322/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/theunixgeek.wordpress.com/322/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/theunixgeek.wordpress.com/322/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=theunixgeek.wordpress.com&amp;blog=3915329&amp;post=322&amp;subd=theunixgeek&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://theunixgeek.wordpress.com/2009/05/20/reflections-on-gnomes-sociological-research/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ebb8d69e7f40c06768593cb00d982843?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">theunixgeek</media:title>
		</media:content>
	</item>
	</channel>
</rss>
