<?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>Digital(Analog)</title>
	<atom:link href="http://digitalanalog.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://digitalanalog.net</link>
	<description>Occasional Thoughts on Social Computing, Visualization and User Interface</description>
	<lastBuildDate>Wed, 04 Feb 2009 13:40:08 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Script v. Program</title>
		<link>http://digitalanalog.net/2009/02/04/script-v-program/</link>
		<comments>http://digitalanalog.net/2009/02/04/script-v-program/#comments</comments>
		<pubDate>Wed, 04 Feb 2009 13:40:08 +0000</pubDate>
		<dc:creator>fjania</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://digitalanalog.net/?p=95</guid>
		<description><![CDATA[Here is how wikipedia describes a scripting language:
&#8230; &#8220;Scripts&#8221; are often treated as distinct from &#8220;programs&#8221;, which execute independently from any other application. At the same time they are distinct from the core code of the application, which is usually written in a different language, and by being accessible to the end-user they enable the [...]]]></description>
			<content:encoded><![CDATA[<p>Here is how wikipedia describes a scripting language:</p>
<blockquote><p>&#8230; &#8220;Scripts&#8221; are often treated as distinct from &#8220;programs&#8221;, which execute independently from any other application. At the same time they are distinct from the core code of the application, which is usually written in a different language, and by being accessible to the end-user they enable the behavior of the application to be adapted to the user&#8217;s needs. Scripts are often, but not always, interpreted from the source code or &#8220;semi-compiled&#8221; to bytecode which is interpreted, unlike the applications they are associated with, which are traditionally compiled to native machine code for the system on which they run. Scripting languages are nearly always embedded in the application with which they are associated.</p></blockquote>
<p>They do go on to make a concession:</p>
<blockquote><p>Historically, there was a clear distinction between &#8220;real&#8221; high speed programs written in languages such as C, and simple, slow scripts written in languages such as Bourne Shell or Awk. But as technology improved, the performance differences shrank and interpreted languages like Java, Lisp, Perl and Python emerged and gained in popularity to the point where they are considered general-purpose programming languages and not just languages that &#8220;drive&#8221; an interpreter.</p></blockquote>
<p>I don&#8217;t like it. I think that this is one of those cases where language has evolved in a way that hasn&#8217;t been captured completely.</p>
<p>So tell me&#8230; when you hear (or use) the word &#8217;script&#8217;, what connotation comes along with it for you?</p>
]]></content:encoded>
			<wfw:commentRss>http://digitalanalog.net/2009/02/04/script-v-program/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>IE6, Sprites and Transparency (a follow on)</title>
		<link>http://digitalanalog.net/2009/01/19/ie6-sprites-and-transparency-a-follow-on/</link>
		<comments>http://digitalanalog.net/2009/01/19/ie6-sprites-and-transparency-a-follow-on/#comments</comments>
		<pubDate>Tue, 20 Jan 2009 04:59:57 +0000</pubDate>
		<dc:creator>fjania</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://digitalanalog.net/?p=66</guid>
		<description><![CDATA[Long story short, IE 6 is a nightmare. Slightly longer story. If you want to use a sprite technique to reduce the number of roundtrips the browser makes to generate your page, it&#8217;s fairly straight forward&#8230; unless you use IE6.
If you&#8217;re making large sprites, with varied images that might be transparent, you might get away [...]]]></description>
			<content:encoded><![CDATA[<p>Long story short, IE 6 is a nightmare. Slightly longer story. If you want to use a <a href="http://www.alistapart.com/articles/sprites" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.alistapart.com/articles/sprites');">sprite technique</a> to reduce the number of roundtrips the browser makes to generate your page, it&#8217;s fairly straight forward&#8230; unless you use IE6.</p>
<p>If you&#8217;re making large sprites, with varied images that might be transparent, you might get away with using an 8 bit gif or png, but depending on how many colors the individual images contain you could easily fill up your color table. So, you&#8217;d be best off using all 32 bits of the RGBA <a href="http://en.wikipedia.org/wiki/Portable_Network_Graphics" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://en.wikipedia.org/wiki/Portable_Network_Graphics');">PNG</a>.</p>
<p>That works fine on IE7, FF2 and FF3. But we all know that way too many people still use IE6. There are <a href="http://support.microsoft.com/kb/294714" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://support.microsoft.com/kb/294714');">some hacks</a> to get transparent pngs to show up, but they don&#8217;t work for images in the background which is, of course, what you need for sprites.</p>
<p>In the midst of my preperations for hari-kari, I found <a href="http://www.julienlecomte.net/blog/2007/07/4/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.julienlecomte.net/blog/2007/07/4/');">this post</a> on Julien Lecomte&#8217;s blog. It was a great step in the right direction, so I started hacking and got some stuff working. Here are some things that weren&#8217;t in Julien&#8217;s post worth sharing&#8230;</p>
<p>A simple example. Here is the markup that Julien showed, with an additional wrapper. Note one other difference, the <code>clip:rect(...)</code> statement doesn&#8217;t use commas between the dimensions. (More on this later)</p>

<div class="wp_codebox"><table width="100%" ><tr id="p664"><td class="line_numbers"><pre>1
2
3
4
5
6
7
</pre></td><td class="code" id="p66code4"><pre class="html" style="font-family:monospace;">&lt;html&gt;
&lt;span class='ie_sprite_wrapper' style='width: 66px; height: 71px;'&gt;
&lt;span class='sprite_image'
	style='clip:rect(233px 71px 304px 5px);
	top: 233px; left: -5px;' &gt;&lt;/span&gt;
&lt;/span&gt;
&lt;/html&gt;</pre></td></tr></table></div>

<p>Before you try this, you should read how to <a href="http://www.w3schools.com/htmldom/prop_style_clip.asp" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.w3schools.com/htmldom/prop_style_clip.asp');">arrange the dimensions</a> in the <code>clip:rect(...)</code> statement. It&#8217;s not terribly intuitive.</p>
<p>Here is the corresponding CSS. We use the filter hack to get the transparency to show, and we style the wrapper.</p>

<div class="wp_codebox"><table width="100%" ><tr id="p665"><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
</pre></td><td class="code" id="p66code5"><pre class="css" style="font-family:monospace;">&lt;!--<span style="color: #00AA00;">&#91;</span>if lte IE <span style="color: #cc66cc;">6</span><span style="color: #00AA00;">&#93;</span><span style="color: #00AA00;">&gt;</span>
&lt;style<span style="color: #00AA00;">&gt;</span>
<span style="color: #6666ff;">.sprite_image</span><span style="color: #00AA00;">&#123;</span> 
	<span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span><span style="color: #933;">66px</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">height</span><span style="color: #00AA00;">:</span> <span style="color: #933;">2361px</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">position</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">absolute</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">background-image</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">none</span><span style="color: #00AA00;">;</span>
	filter<span style="color: #3333ff;">:progid</span><span style="color: #3333ff;">:DXImageTransform</span><span style="color: #6666ff;">.Microsoft</span>.AlphaImageLoader<span style="color: #00AA00;">&#40;</span>
		src<span style="color: #00AA00;">=</span><span style="color: #ff0000;">'/images/sprite.png'</span><span style="color: #00AA00;">,</span> sizingMethod<span style="color: #00AA00;">=</span><span style="color: #ff0000;">'crop'</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
&nbsp;
.ie_sprite_wrapper<span style="color: #00AA00;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">position</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">relative</span><span style="color: #00AA00;">;</span> 
	<span style="color: #000000; font-weight: bold;">overflow</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">hidden</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
&lt;/style<span style="color: #00AA00;">&gt;</span>
&lt;!<span style="color: #00AA00;">&#91;</span>endif<span style="color: #00AA00;">&#93;</span>--<span style="color: #00AA00;">&gt;</span></pre></td></tr></table></div>

<p>A couple of notes. We position the wrapper <code>relative</code> so that it flows naturally in the layout, but also acts as the reference coordinate system for the span inside (which has been positioned absolutely). If we didn&#8217;t do this, the inner span would be positioned with reference to the first positioned parent element. If there were none, the browser frame would become the reference.</p>
<p>We&#8217;ve also set the overflow to <code>hidden</code>. Since this hack just clips out the part of the sprite image that we want to see, IE6 still considers it as occupying part of the page. If you don&#8217;t hide the overflow, and your sprite strip is longer than the page, you&#8217;ll see scroll bars.</p>
<p>So what about those commas in the <code>clip:rect(...)</code> statement? Well thank the flying spaghetti monster for Google. I played with this code isolation, got it working, then brought it over to a page I that I was going to use it in and FAIL. After some hunting and reading on google I found out that when you set your browser&#8217;s <a href="http://www.alistapart.com/stories/doctype/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.alistapart.com/stories/doctype/');">compliance mode</a>, e.g.</p>

<div class="wp_codebox"><table width="100%" ><tr id="p666"><td class="line_numbers"><pre>1
2
</pre></td><td class="code" id="p66code6"><pre class="html" style="font-family:monospace;">&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD HTML 4.01 
	Transitional//EN&quot; &quot;http://www.w3.org/TR/html4/loose.dtd&quot;&gt;</pre></td></tr></table></div>

<p>IE6 has a cow and doesn&#8217;t like the way your <code>clip:rect(...)</code> statement is formed with commas. The <a href="http://www.webmasterworld.com/forum83/6478.htm" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.webmasterworld.com/forum83/6478.htm');">only solution</a> is to get rid of the DOCTYPE statement, or get rid of the commas in the <code>clip:rect(...)</code> statement. I&#8217;ve also noticed some funky treatment of how this final sprite image get&#8217;s floated by IE6 when the compliance mode is set. More on that some other time when I can take a proper look at it. For now I&#8217;m just really glad to have this (mostly) sorted out.</p>
]]></content:encoded>
			<wfw:commentRss>http://digitalanalog.net/2009/01/19/ie6-sprites-and-transparency-a-follow-on/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The tip of the long tail</title>
		<link>http://digitalanalog.net/2009/01/03/the-tip-of-the-long-tail/</link>
		<comments>http://digitalanalog.net/2009/01/03/the-tip-of-the-long-tail/#comments</comments>
		<pubDate>Sat, 03 Jan 2009 14:39:47 +0000</pubDate>
		<dc:creator>fjania</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://digitalanalog.net/?p=60</guid>
		<description><![CDATA[I just got this in the mail&#8230;

When I was a kid, I remember going into one of those giant &#8220;Hudson News&#8221; stores in Manhattan &#8211; the one with thousands of magazines. I thought to myself &#8220;wow! There is a magazine for EVERYTHING!&#8221;.
Of course, the web opens up the space even more so that there is [...]]]></description>
			<content:encoded><![CDATA[<p>I just got this in the mail&#8230;</p>
<p><img class="alignnone size-full wp-image-61" title="Toesocks" src="http://digitalanalog.net/wp-content/uploads/2009/01/toesocks.png" alt="Toesocks" width="556" height="252" /></p>
<p>When I was a kid, I remember going into one of those giant &#8220;Hudson News&#8221; stores in Manhattan &#8211; the one with thousands of magazines. I thought to myself &#8220;wow! There is a magazine for EVERYTHING!&#8221;.</p>
<p>Of course, the web opens up the space even more so that there is a site for EVERYTHING. (I like exotic soaps, so a year ago I thought about starting a site all about soap. I was a <a href="http://thesoapbar.blogspot.com/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://thesoapbar.blogspot.com/');">bit</a> <a href="http://handmadesoapblog.blogspot.com/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://handmadesoapblog.blogspot.com/');">too</a> late)</p>
<p>So I&#8217;m not surprised that this email landed in my inbox. There is an entire group on flickr, with over 1,000 photos, that are just of toe socks. (Those socks that have little pockets for each toe).</p>
<p>Who could have known that there was a community of people that reveled in the glory of the toe sock? No one perhaps <img src='http://digitalanalog.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  But all they seemed to need to congregate was a space, and it looks like flickr has provided that space for them.</p>
<p>I &lt;3 the web.</p>
]]></content:encoded>
			<wfw:commentRss>http://digitalanalog.net/2009/01/03/the-tip-of-the-long-tail/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The new iPhone is here</title>
		<link>http://digitalanalog.net/2008/07/23/the-new-iphone-is-here/</link>
		<comments>http://digitalanalog.net/2008/07/23/the-new-iphone-is-here/#comments</comments>
		<pubDate>Wed, 23 Jul 2008 11:51:10 +0000</pubDate>
		<dc:creator>fjania</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://digitalanalog.net/2008/07/23/the-new-iphone-is-here/</guid>
		<description><![CDATA[I got my new iPhone 3G yesterday. I just found out about the wordpress application, so I figured I&#8217;d give it a try.
Here is a picture from outside my window: 

]]></description>
			<content:encoded><![CDATA[<p>I got my new iPhone 3G yesterday. I just found out about the wordpress application, so I figured I&#8217;d give it a try.</p>
<p>Here is a picture from outside my window: </p>
<p><a href="http://digitalanalog.net/wp-content/uploads/2008/07/p-640-480-9d478de6-5690-41ad-9c35-199b97c6fcd3.jpeg" ><img src="http://digitalanalog.net/wp-content/uploads/2008/07/p-640-480-9d478de6-5690-41ad-9c35-199b97c6fcd3.jpeg" alt="photo" width="225" height="300" class="alignnone size-full wp-image-364" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://digitalanalog.net/2008/07/23/the-new-iphone-is-here/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The Resume-as-Tag-Cloud Meme</title>
		<link>http://digitalanalog.net/2008/06/28/the-resume-as-tag-cloud-meme/</link>
		<comments>http://digitalanalog.net/2008/06/28/the-resume-as-tag-cloud-meme/#comments</comments>
		<pubDate>Sat, 28 Jun 2008 14:19:57 +0000</pubDate>
		<dc:creator>fjania</dc:creator>
				<category><![CDATA[stuff]]></category>
		<category><![CDATA[resume]]></category>
		<category><![CDATA[tag-cloud]]></category>

		<guid isPermaLink="false">http://digitalanalog.net/?p=56</guid>
		<description><![CDATA[I&#8217;ll follow the crowd here as well&#8230; Thanks for the fun app Johnathan!

]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ll follow the <a href="http://rooreynolds.com/2008/06/18/my-cv-as-a-wordle-tag-cloud/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://rooreynolds.com/2008/06/18/my-cv-as-a-wordle-tag-cloud/');">crowd </a>here as well&#8230; Thanks for the fun app <a href="http://wordle.net/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://wordle.net/');">Johnathan</a>!</p>
<p><a href="http://www.flickr.com/photos/triplezero/2617657041/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.flickr.com/photos/triplezero/2617657041/');" title="Resume Tag Cloud by triplezero, on Flickr"><img src="http://farm4.static.flickr.com/3054/2617657041_1af3e484a2_o.png" width="537" height="789" alt="Resume Tag Cloud" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://digitalanalog.net/2008/06/28/the-resume-as-tag-cloud-meme/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>IBM GLBT Event in Second Life</title>
		<link>http://digitalanalog.net/2008/06/20/ibm-glbt-event-in-second-life/</link>
		<comments>http://digitalanalog.net/2008/06/20/ibm-glbt-event-in-second-life/#comments</comments>
		<pubDate>Fri, 20 Jun 2008 16:25:35 +0000</pubDate>
		<dc:creator>fjania</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://digitalanalog.net/?p=55</guid>
		<description><![CDATA[The IBM GLBT group (Eagle at IBM) had our first event in the new dedicated Second Life space. It was a great time seeing some new people turn up, and exploring all of ThomThom&#8217;s creative building. We had some conversation in the clubhouse lobby:

Then we did a little dancing at the disco. (I played DJ [...]]]></description>
			<content:encoded><![CDATA[<p>The IBM GLBT group (Eagle at IBM) had our first event in the new dedicated Second Life space. It was a great time seeing some new people turn up, and exploring all of ThomThom&#8217;s creative building. We had some conversation in the clubhouse lobby:<br/><br/></p>
<p><a href="http://www.flickr.com/photos/triplezero/2595669064/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.flickr.com/photos/triplezero/2595669064/');" title="Eagle in Second Life by triplezero, on Flickr"><img src="http://farm4.static.flickr.com/3180/2595669064_5eb3e3cfa7.jpg" width="500" height="290" alt="Eagle in Second Life" /></a></p>
<p>Then we did a little dancing at the disco. (I played DJ for a bit &#8211; thats me with the blue spiky hair)<br/><br/></p>
<p><a href="http://www.flickr.com/photos/triplezero/2595669234/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.flickr.com/photos/triplezero/2595669234/');" title="Eagle in Second Life by triplezero, on Flickr"><img src="http://farm4.static.flickr.com/3174/2595669234_64ebc68d1f.jpg" width="500" height="290" alt="Eagle in Second Life" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://digitalanalog.net/2008/06/20/ibm-glbt-event-in-second-life/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>50 Ways to Leave Your Bookmark</title>
		<link>http://digitalanalog.net/2008/04/10/50-ways-to-leave-your-bookmark/</link>
		<comments>http://digitalanalog.net/2008/04/10/50-ways-to-leave-your-bookmark/#comments</comments>
		<pubDate>Thu, 10 Apr 2008 13:49:18 +0000</pubDate>
		<dc:creator>fjania</dc:creator>
				<category><![CDATA[article]]></category>
		<category><![CDATA[bookmarks]]></category>
		<category><![CDATA[developerWorks]]></category>
		<category><![CDATA[dogear]]></category>
		<category><![CDATA[social-authoring]]></category>

		<guid isPermaLink="false">http://digitalanalog.net/2008/04/10/50-ways-to-leave-your-bookmark/</guid>
		<description><![CDATA[Thanks to Andy and Suz for blogging (and blogging) about the 50 Ways To Leave Your Bookmark article that we co-wrote for developerWorks.
Andy&#8217;s got a great description of the premise, so I&#8217;ll lift his shamelessly  
A little while ago my colleague Frank Jania posted a crazy thought on his internal IBM blog. The idea [...]]]></description>
			<content:encoded><![CDATA[<p>Thanks to <a href="http://andypiper.wordpress.com/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://andypiper.wordpress.com/');">Andy</a> and <a href="http://tekmoda.com/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://tekmoda.com/');">Suz</a> for <a href="http://andypiper.wordpress.com/2008/04/09/an-experiment-in-social-authoring/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://andypiper.wordpress.com/2008/04/09/an-experiment-in-social-authoring/');">blogging </a>(and <a href="http://synch.rono.us/social/blog.nsf/dx/04082008040303PMSOMRHZ.htm" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://synch.rono.us/social/blog.nsf/dx/04082008040303PMSOMRHZ.htm');">blogging</a>) about the 50 Ways To Leave Your Bookmark article that we co-wrote for developerWorks.</p>
<p>Andy&#8217;s got a great description of the premise, so I&#8217;ll lift his shamelessly <img src='http://digitalanalog.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<blockquote><p>A little while ago my colleague Frank Jania posted a crazy thought on his internal IBM blog. The idea was that since Dogear (our internal social bookmarking system, and also part of Lotus Connections) has an API based on the Atom Publishing Protocol, and that just uses HTTP POST, it should be pretty simple to come up with a range of different ways to add bookmarks to Dogear using different technologies.</p>
<p>The gauntlet was thrown down, so a number of us started to contribute to Franks wiki page, coming up with our own code examples.</p></blockquote>
<p>Thanks to everyone who participated!</p>
]]></content:encoded>
			<wfw:commentRss>http://digitalanalog.net/2008/04/10/50-ways-to-leave-your-bookmark/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why solitary workers can be faster workers</title>
		<link>http://digitalanalog.net/2008/03/27/why-solitary-workers-can-be-faster-workers/</link>
		<comments>http://digitalanalog.net/2008/03/27/why-solitary-workers-can-be-faster-workers/#comments</comments>
		<pubDate>Thu, 27 Mar 2008 17:27:00 +0000</pubDate>
		<dc:creator>fjania</dc:creator>
				<category><![CDATA[stuff]]></category>

		<guid isPermaLink="false">http://digitalanalog.net/2008/03/27/why-solitary-workers-can-be-faster-workers/</guid>
		<description><![CDATA[collision detection: Why solitary workers can be faster workers
From the article:
&#8220;For years, I&#8217;ve worked in isolation &#8212; either sitting alone in my office, or, recently, sitting in a rented cubicle in New York. I haven&#8217;t had a job that required me to work physically alongside coworkers since 1998.
And maybe that&#8217;s been a good thing for [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.collisiondetection.net/mt/archives/2008/02/_for_years_ive.html" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.collisiondetection.net/mt/archives/2008/02/_for_years_ive.html');">collision detection: Why solitary workers can be faster workers</a></p>
<p>From the article:</p>
<blockquote><p>&#8220;For years, I&#8217;ve worked in isolation &#8212; either sitting alone in my office, or, recently, sitting in a rented cubicle in New York. I haven&#8217;t had a job that required me to work physically alongside coworkers since 1998.</p>
<p>And maybe that&#8217;s been a good thing for my productivity &#8212; because according to a new study, <a href="http://www.eurekalert.org/pub_releases/2008-02/uoc-wsy022008.php" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.eurekalert.org/pub_releases/2008-02/uoc-wsy022008.php');">when you can see other workers performing different tasks out the corner of your eye, it slows you down. </a>Tim Welsh, a kinesiologist at the University of Calgary, organized a nifty experiment in which he asked a subject to perform a task on a computer, alongside a partner performing a different computer task. Then he&#8217;d get<br />
the subject to perform the task while his partner went off to another room&#8230;&#8221;</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://digitalanalog.net/2008/03/27/why-solitary-workers-can-be-faster-workers/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Done with: MySpace/Friendster</title>
		<link>http://digitalanalog.net/2008/03/25/done-with-myspacefriendster/</link>
		<comments>http://digitalanalog.net/2008/03/25/done-with-myspacefriendster/#comments</comments>
		<pubDate>Tue, 25 Mar 2008 20:16:48 +0000</pubDate>
		<dc:creator>fjania</dc:creator>
				<category><![CDATA[stuff]]></category>

		<guid isPermaLink="false">http://digitalanalog.net/2008/03/25/done-with-myspacefriendster/</guid>
		<description><![CDATA[I&#8217;ve made the cut. Along with unsubscribing to a shockingly large
number of newsletters in my personal email account, I&#8217;ve canceled both
my MySpace and Friendster accounts. I&#8217;ve had them for some number of
years and they&#8217;ve lied fallow in comparison to my activity on Facebook.
I have some friends that are primarily active on MySpace or Friendster,
but maintaining [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve made the cut. Along with unsubscribing to a shockingly large<br />
number of newsletters in my personal email account, I&#8217;ve canceled both<br />
my MySpace and Friendster accounts. I&#8217;ve had them for some number of<br />
years and they&#8217;ve lied fallow in comparison to my activity on Facebook.</p>
<p>I have some friends that are primarily active on MySpace or Friendster,<br />
but maintaining updates on both of them was just really more than I<br />
wanted to do. So we&#8217;ll see how all this works out. I&#8217;m still on<br />
last.fm, Facebook (of course), flickr, dopplr, fireeagle, etc etc, but<br />
the sites that were primarily a personal profile have been<br />
consolidated. Ahhh.</p>
]]></content:encoded>
			<wfw:commentRss>http://digitalanalog.net/2008/03/25/done-with-myspacefriendster/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#8220;Sort Of&#8221;</title>
		<link>http://digitalanalog.net/2008/03/17/sort-of/</link>
		<comments>http://digitalanalog.net/2008/03/17/sort-of/#comments</comments>
		<pubDate>Mon, 17 Mar 2008 19:31:54 +0000</pubDate>
		<dc:creator>fjania</dc:creator>
				<category><![CDATA[stuff]]></category>

		<guid isPermaLink="false">http://digitalanalog.net/2008/03/17/sort-of/</guid>
		<description><![CDATA[&#8220;Sort of&#8221; is the new &#8220;like&#8221;.
Listen for it.
]]></description>
			<content:encoded><![CDATA[<p>&#8220;Sort of&#8221; is the new &#8220;like&#8221;.</p>
<p>Listen for it.</p>
]]></content:encoded>
			<wfw:commentRss>http://digitalanalog.net/2008/03/17/sort-of/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
