<?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:series="http://unfoldingneurons.com/"
	>

<channel>
	<title>Stephen Foskett, Pack Rat &#187; LinkedIn Archives  &#8211; Stephen Foskett, Pack Rat</title>
	<atom:link href="http://blog.fosketts.net/tag/linkedin/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.fosketts.net</link>
	<description>Understanding the accumulation of data</description>
	<lastBuildDate>Fri, 10 Feb 2012 17:40:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
<atom:link rel="hub" href="http://pubsubhubbub.appspot.com" />
	<atom:link rel="hub" href="http://superfeedr.com/hubbub" />
			<item>
		<title>Cool Google Spreadsheet XML/XPath Mojo</title>
		<link>http://blog.fosketts.net/2010/07/02/cool-google-spreadsheet-importxml-xpath/</link>
		<comments>http://blog.fosketts.net/2010/07/02/cool-google-spreadsheet-importxml-xpath/#comments</comments>
		<pubDate>Fri, 02 Jul 2010 20:41:12 +0000</pubDate>
		<dc:creator>Stephen</dc:creator>
				<category><![CDATA[Everything]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Alexa]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Apps]]></category>
		<category><![CDATA[Google Spreadsheet]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[importXML]]></category>
		<category><![CDATA[Klout]]></category>
		<category><![CDATA[LinkedIn]]></category>
		<category><![CDATA[social media]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[XML]]></category>
		<category><![CDATA[XPath]]></category>

		<guid isPermaLink="false">http://blog.fosketts.net/?p=3320</guid>
		<description><![CDATA[Google Spreadsheet sure isn't as responsive for a power user like me, but I love the ability to share information with others and cooperatively edit a workbook. It's become our main tool for planning the Gestalt IT Tech Field Day events. I was thrilled to discover that Google's spreadsheet supports the importXML tag, which allows it to automatically gather information from other web sites. Let's take a look at how it works!]]></description>
			<content:encoded><![CDATA[<p>Google Spreadsheet sure isn&#8217;t as responsive for a power user like me, but I love the ability to share information with others and cooperatively edit a workbook. It&#8217;s become our main tool for planning the <a href="http://gestaltit.com/field-day/"  target="_blank">Gestalt IT Tech Field Day</a> events. I was thrilled to discover that Google&#8217;s spreadsheet supports the <a rel="nofollow" href="http://docs.google.com/support/bin/answer.py?hl=en&amp;answer=75507"  target="_blank">importXML</a> tag, which allows it to automatically gather information from other web sites. Let&#8217;s take a look at how it works!</p>
<h3>HTML == XML?</h3>
<p>Most web users have heard of HTML, but XML is a much geekier thing. Like HTML, XML is a way of &#8220;marking up&#8221; a text document to provide hidden clues about the content and how to display it. In fact, modern HTML is (sort of) a subset or category of XML, and HTML documents (the kind you access with your web browser) can be accessed by many XML tools.</p>
<p>Both HTML and XML enclose text in tags. For example, a paragraph would be surrounded by &lt;p&gt; and &lt;/p&gt; tags, while a table starts and ends with &lt;table&gt; and &lt;/table&gt;. These can be nested within each other, and are commonly deeply nested indeed. Web and XML documents typically have many layers of &lt;div&gt; and &lt;span&gt; tags, for example, and include lists within lists as well.</p>
<p>This somewhat-organized mess creates a &#8220;path&#8221; through the document leading to pieces of information. This concept is called <a href="http://www.w3.org/TR/xpath/"  target="_blank">XPath</a>. For example, a twitter profile page embeds your name deep in the &lt;html&gt;&lt;body&gt; path under &lt;div id=&#8221;side&#8221;&gt;, &lt;div id=&#8221;profile&#8221; class=&#8221;section profile-side&#8221;&gt;, &lt;address&gt;, &lt;ul class=&#8221;about vcard entry-author&#8221;&gt;, &lt;li&gt;, and &lt;span class=&#8221;fn&#8221;&gt;.</p>
<p>Raw HTML is often organized like this, and this can work to our advantage. If a computer program wanted to pull the full name of a Twitter user out of their profile page, it could look for a &lt;span&gt; element with the class property set to &#8220;fn&#8221;. It could also look for the &lt;address&gt; tag and pull out some information about the user in the <a href="http://microformats.org/wiki/rfc-2426"  target="_blank">vcard microformat</a>.</p>
<h3>importXML</h3>
<p>All this becomes very interesting indeed when considering the importXML function in Google Spreadsheet. It will parse a URL as an XML file automatically, and you can tell it to look in an XPath for data. This is very powerful indeed!</p>
<h4>Twitter Followers</h4>
<p>I think an example will make it clearer. Let&#8217;s look up the Twitter follower count of a user. We create a spreadsheet and enter a twitter username in cell A1. Then we put the following formula in cells B1 and C1 and the count magically appears!</p>
<p>B1:<br />
<code><br />
=if(C1&lt;&gt;"",right(C1,len(C1)-10),"")<br />
</code></p>
<p>C1:<br />
<code><br />
=if(A1&lt;&gt;"",importXML("http://mobile.twitter.com/"&amp;A1,"//a[@ href='http://mobile.twitter.com/"&amp;lower(A1)&amp;"/followers']"),0)<br />
</code></p>
<p>This formula looks for a &lt;a href&gt; with the URL including the user and twitter followers, which is a unique HTML element in every mobile Twitter profile. This returns a string like &#8220;Followers:1234&#8243;, so we use another formula to strip that part out.</p>
<p><em>Updated 1/22/12 after Twitter screwed up the main page. Good thing the mobile site still works!</em></p>
<h4>LinkedIn Connections</h4>
<p>Let&#8217;s try something else. How would we pull the number of connections a person has in LinkedIn using importXML? Here&#8217;s a function!</p>
<p><code>=value(substitute(importXML(A3,"//dd[@class='overview-connections']/p/strong"),"500+","500"))</code></p>
<p>This is a little more complicated. We&#8217;re doing the same thing, taking a url from cell A3 that corresponds to the person&#8217;s public LinkedIn page, and outputting the content of the &lt;dd class=&#8221;overview-connections&#8221;&gt; tag. But we&#8217;re also using the SUBSTITUTE() function to take the plus sign off a &#8220;500+&#8221; response and converting it into a value for calculation.</p>
<p><em>Updated 1/22/12 for new LinkedIn Format</em></p>
<h4>Alexa and Klout</h4>
<p>Here are a few more examples. I bet you can follow along now.</p>
<p>Alexa traffic rank:</p>
<p><code>=value(importXML("http://www.alexa.com/search?q="&amp;E3,"//div[@class='row']/span/a[@href][1]"))</code></p>
<p>Klout score:</p>
<p><code>=value(substitute(importXML("http://klout.com/"&amp;C3,"//span[@class='value']"),"klout score",""))</code></p>
<h3>Limitations in Google Spreadsheets</h3>
<p>Before you go thinking you can run off and create awesome web applications like this, know that there are some serious limitations. First, Google limits the use of importXML to 50 per workbook. This means you can&#8217;t import from hundreds of sources in the same spreadsheet, or even in multiple sheets in the same workbook. Next, importXML is pretty opaque in everyday use. You have to do a lot of trial and error to get the XPath right, and it fails often with #N/A, breaking calculations.</p>
<p>But it&#8217;s still pretty useful when creating a spreadsheet that needs to pull in information from outside sources. You can grab all sorts of data this way, from current stock quotes to weather or sports metrics. You have the whole Internet at your disposal &#8211; let&#8217;s get creative!</p>
<div id="crp_related"><h3>You might also want to read these other posts...</h3><ul><li><a href="http://blog.fosketts.net/2010/01/20/vendor-twitter/"  rel="bookmark" class="crp_title">Vendor Non-Blogs</a></li><li><a href="http://blog.fosketts.net/2009/01/15/googles-analytics-measuring-page-seo/"  rel="bookmark" class="crp_title">Measuring the Importance of Google&#8217;s First Page</a></li><li><a href="http://blog.fosketts.net/2012/02/09/twitter-zen-tips-newbies/"  rel="bookmark" class="crp_title">Twitter Zen: My Tips For Newbies</a></li><li><a href="http://blog.fosketts.net/2009/05/22/google-nofollow/"  rel="bookmark" class="crp_title">Google Is Heading For A Cliff; What Will They Do?</a></li><li><a href="http://blog.fosketts.net/2009/05/13/twitter-loses-control-twitter/"  rel="bookmark" class="crp_title">Twitter Loses Control Of Twitter</a></li></ul></div><script src="http://feeds.feedburner.com/~s/sfoskett?i=http://blog.fosketts.net/2010/07/02/cool-google-spreadsheet-importxml-xpath/" type="text/javascript" charset="utf-8"></script><hr />
<p><small>© sfoskett for <a href="http://blog.fosketts.net">Stephen Foskett, Pack Rat</a>, 2010. |
<a href="http://blog.fosketts.net/2010/07/02/cool-google-spreadsheet-importxml-xpath/">Cool Google Spreadsheet XML/XPath Mojo</a>
<br/>
This post was categorized as <a href="http://blog.fosketts.net/category/everything/" title="View all posts in Everything" rel="category tag">Everything</a>, <a href="http://blog.fosketts.net/category/everything/personal/" title="View all posts in Personal" rel="category tag">Personal</a>. Each of my categories has its own feed if you'd like to filter out or focus on posts like this.<br/>
</small></p>]]></content:encoded>
			<wfw:commentRss>http://blog.fosketts.net/2010/07/02/cool-google-spreadsheet-importxml-xpath/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Vendor Non-Blogs</title>
		<link>http://blog.fosketts.net/2010/01/20/vendor-twitter/</link>
		<comments>http://blog.fosketts.net/2010/01/20/vendor-twitter/#comments</comments>
		<pubDate>Wed, 20 Jan 2010 18:00:33 +0000</pubDate>
		<dc:creator>Stephen</dc:creator>
				<category><![CDATA[Enterprise storage]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Virtual Storage]]></category>
		<category><![CDATA[astroturfing]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[Disqus]]></category>
		<category><![CDATA[Friendfeed]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Intense Debate]]></category>
		<category><![CDATA[LinkedIn]]></category>
		<category><![CDATA[social media]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[Typepad]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://blog.fosketts.net/?p=2638</guid>
		<description><![CDATA[Biased content isn't just found on blogs - it's much more likely to be found in other areas like Twitter and discussion forums. When does discussion become Astroturf?]]></description>
			<content:encoded><![CDATA[<p>As previously-independent bloggers are being hired in droves by the major IT infrastructure hardware and software vendors, attention is turning to their independence and credibility. But this extends far beyond blogs: <strong>Today&#8217;s social media influencers are everywhere!</strong></p>
<div id="attachment_2652" class="wp-caption aligncenter" style="width: 310px;  border: 1px solid #dddddd; background-color: #f3f3f3; padding-top: 4px; margin: 10px; text-align:center; display: block; margin-right: auto; margin-left: auto;"><a href="http://blog.fosketts.net/wp-content/uploads/2010/01/Astroturf_Found_Growing_On_Your_Car.jpg" ><img class="size-medium wp-image-2652" title="Astroturf_Found_Growing_On_Your_Car" src="http://blog.fosketts.net/wp-content/uploads/2010/01/Astroturf_Found_Growing_On_Your_Car-300x225.jpg" alt="" width="300" height="225" /></a><p style=' padding: 0 4px 5px; margin: 0;'  class="wp-caption-text">Biased content isn&#39;t just found on blogs - it&#39;s much more likely to be found in other areas like Twitter and discussion forums. When does discussion become Astroturf?</p></div>
<h3>Discussions Are On The Move</h3>
<p>The new Internet isn&#8217;t just about blogs. In fact, the majority of social media discussion and linkage probably happens on Twitter, LinkedIn, discussion forums, and other sites. But <strong>non-blog content raises even thornier bias issues than blogs</strong>:</p>
<ol>
<li>Discussions are less formal than blog posts, so <strong>off-the-cuff comments are common</strong>. The rapid turnaround of Twitter comments encourages &#8220;post-before-you-think&#8221; thinking, and knee-jerk comments can be damning. Even if one did not intend to but another vendor down, it&#8217;s easy to say something inappropriate.</li>
<li>The length of a comment is limited, so <strong>subtle nuances get lost</strong>. I&#8217;ve often had trouble saying what I want in 140 characters, and even blog and forum comment conventions restrict verbosity. Again, sometimes your meaty tweet will really cut a competitor to the bone.</li>
<li><strong>Biographical information is limited</strong>. Twitter profiles include just a few words and a single URL, restricting the disclosure of relevant information. Many profiles don&#8217;t include the name of an employer or disclosure of other vendor ties. Forum profiles and signatures are similarly restricted.</li>
<li><strong>The Internet scatters content</strong>. Even if one is careful to disclose one&#8217;s business relationships on a blog, Twitter profile, or LinkedIn page, interactions go far beyond these.</li>
</ol>
<p>Conferences are even worse. Many attendees switch badges or intentionally list a different company just to get in the door, obscuring their identity. And <strong>no one knows who the guy in row 12 is</strong> or why he is asking such pointed questions of the panel. The same thing happens with webinars and Internet polls.</p>
<p>All these limits obscure the good folks out there and conspire to allow the bad ones to act with impunity. This makes everyone suspect. Actively comment on a number of industry blogs and <strong>you could be accused of astroturfing</strong>! Whether it&#8217;s fair or not, employees of hardware and software vendors are being held to a higher standard than so-called independents.</p>
<h3>Personal Defensive SEO</h3>
<p>I&#8217;m going to assume you&#8217;re a good egg and want everyone to know where you&#8217;re coming from when you interact on the Internet. Many businesses actively engage in search engine optimization (SEO) to help them rise to the top of Internet search results. <strong>Individuals need to start doing some SEO, too</strong>, but the reason is different: Make yourself easy to find and disclose your connections and you won&#8217;t look like a bad egg.</p>
<ol>
<li>Get a <strong>LinkedIn profile</strong>, keep it up to date, and set your name and company information to public. Go to Settings -&gt; Public Profile, and turn on Basics, Summary, Current Positions, and Websites at a minimum. And make sure Websites includes your current employer and blog(s).</li>
<li>Create a <a rel="nofollow" href="http://www.google.com/profiles"  target="_blank"><strong>Google profile</strong></a> with links to your LinkedIn profile, blog, Twitter, and other profiles. This helps Google and other search engines disambiguate you from the rest of the crowd. <a href="http://friendfeed.com"  target="_blank">FriendFeed</a> is another great place to set up a profile. I only use Facebook for personal/private connections, so I don&#8217;t bother with corporate links there.</li>
<li>Make sure <strong>your blog</strong> includes links to your Twitter and LinkedIn profiles, too. And pepper your blog with your own full name so it shows up in Google searches.</li>
<li>Include your employer&#8217;s name in your <strong>Twitter &#8220;one line bio&#8221;</strong> and use your blog as your <strong>Twitter profile URL</strong>.</li>
<li>Set up <a href="http://disqus.com"  target="_blank"><strong>Disqus</strong></a><strong>, </strong><a href="http://intensedebate.com/"  target="_blank"><strong>Intense Debate</strong></a><strong>, </strong><a rel="nofollow" href="http://wordpress.com"  target="_blank"><strong>WordPress</strong></a><strong>, and </strong><a rel="nofollow" href="http://www.typepad.com"  target="_blank"><strong>Typepad</strong></a><strong> profiles</strong> and use them whenever possible.</li>
</ol>
<p>All this effort won&#8217;t directly help you, though it might save a few minutes when you try to comment on a blog. But they will make you easier to find, and <strong>reduce the likelihood that someone will accuse you of not disclosing your corporate affiliations</strong>.</p>
<p><em>Astroturf car, public domain image by </em><a rel="nofollow" href="http://commons.wikimedia.org/wiki/User:Ingolfson"  target="_blank"><em>Ingolfson</em></a></p>
<div id="crp_related"><h3>You might also want to read these other posts...</h3><ul><li><a href="http://blog.fosketts.net/2009/07/15/google-reader-social/"  rel="bookmark" class="crp_title">Google Reader Gets More Social</a></li><li><a href="http://blog.fosketts.net/2010/01/18/vendor-bloggers/"  rel="bookmark" class="crp_title">Vendor Bloggers 1: Why Does It Matter?</a></li><li><a href="http://blog.fosketts.net/2010/01/19/vendor-blogger-spectrum/"  rel="bookmark" class="crp_title">The Spectrum of Vendor Blogs</a></li><li><a href="http://blog.fosketts.net/2010/07/02/cool-google-spreadsheet-importxml-xpath/"  rel="bookmark" class="crp_title">Cool Google Spreadsheet XML/XPath Mojo</a></li><li><a href="http://blog.fosketts.net/2009/01/15/googles-analytics-measuring-page-seo/"  rel="bookmark" class="crp_title">Measuring the Importance of Google&#8217;s First Page</a></li></ul></div><script src="http://feeds.feedburner.com/~s/sfoskett?i=http://blog.fosketts.net/2010/01/20/vendor-twitter/" type="text/javascript" charset="utf-8"></script><hr />
<p><small>© sfoskett for <a href="http://blog.fosketts.net">Stephen Foskett, Pack Rat</a>, 2010. |
<a href="http://blog.fosketts.net/2010/01/20/vendor-twitter/">Vendor Non-Blogs</a>
<br/>
This post was categorized as <a href="http://blog.fosketts.net/category/everything/enterprisestorage/" title="View all posts in Enterprise storage" rel="category tag">Enterprise storage</a>, <a href="http://blog.fosketts.net/category/everything/personal/" title="View all posts in Personal" rel="category tag">Personal</a>, <a href="http://blog.fosketts.net/category/everything/virtualstorage/" title="View all posts in Virtual Storage" rel="category tag">Virtual Storage</a>. Each of my categories has its own feed if you'd like to filter out or focus on posts like this.<br/>
</small></p>]]></content:encoded>
			<wfw:commentRss>http://blog.fosketts.net/2010/01/20/vendor-twitter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<series:name><![CDATA[Vendor Bloggers]]></series:name>
	</item>
		<item>
		<title>Back From The Pile: Interesting Links From Mid-May</title>
		<link>http://blog.fosketts.net/2009/05/26/pile-interesting-links-midmay/</link>
		<comments>http://blog.fosketts.net/2009/05/26/pile-interesting-links-midmay/#comments</comments>
		<pubDate>Tue, 26 May 2009 18:59:41 +0000</pubDate>
		<dc:creator>Stephen</dc:creator>
				<category><![CDATA[Enterprise storage]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Virtual Storage]]></category>
		<category><![CDATA[Brent Ozar]]></category>
		<category><![CDATA[Cloud Expo]]></category>
		<category><![CDATA[cost]]></category>
		<category><![CDATA[Donavon West]]></category>
		<category><![CDATA[donor]]></category>
		<category><![CDATA[EMC]]></category>
		<category><![CDATA[Frank Lloyd Wright]]></category>
		<category><![CDATA[Gestalt IT]]></category>
		<category><![CDATA[Guy Bunker]]></category>
		<category><![CDATA[Lego]]></category>
		<category><![CDATA[LinkedIn]]></category>
		<category><![CDATA[MBA]]></category>
		<category><![CDATA[multipathing]]></category>
		<category><![CDATA[Nick Glasgow]]></category>
		<category><![CDATA[Prague]]></category>
		<category><![CDATA[Roman Stanek]]></category>
		<category><![CDATA[Sam Johnston]]></category>
		<category><![CDATA[Sys-Con]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[VHD]]></category>
		<category><![CDATA[VMFS]]></category>
		<category><![CDATA[VMware]]></category>
		<category><![CDATA[vSphere]]></category>
		<category><![CDATA[Wilco]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Windows Home Server]]></category>
		<category><![CDATA[Windows Server 2008 R2]]></category>

		<guid isPermaLink="false">http://blog.fosketts.net/?p=1897</guid>
		<description><![CDATA[My travels last week kept me from posting my weekly round-up of interesting web content. So this week&#8217;s is a little heavy (and heavily edited!) Most important: Please register to be a marrow donor, especially if you might be a match for Nick Glasgow of EMC! Misc The week of May 16 will forever be [...]]]></description>
			<content:encoded><![CDATA[<p>My travels last week kept me from posting my weekly round-up of interesting web content. So this week&#8217;s is a little heavy (and heavily edited!)</p>
<p>Most important: Please register to be a marrow donor, especially if you might be a match for <a rel="nofollow" href="http://jamiepappas.typepad.com/socialmediamusings/2009/05/the-search-to-find-a-matching-donor-for-nick-glasgow-continues-please-use-the-twitter-tag-of-helpnick-when-posting-on.html"  target="_blank">Nick Glasgow of EMC</a>!<span id="more-1897"></span></p>
<h3 class="post-subhead">Misc</h3>
<ul>
<li>The week of May 16 will forever be known as the week <a href="http://blog.fosketts.net/2009/05/13/twitter-loses-control-twitter/"  target="_blank">Twitter lost control of their eponymous service</a>. There were some great posts, many of which went beyond whining and offered context on why Twitter is so important, but the one that sticks in my head most was a simple statement: &#8220;<a href="http://www.readwriteweb.com/archives/twitter_puts_a_muzzle_on_your_friends_goodbye_peop.php#" >Goodbye People I Never Knew</a>&#8220;</li>
<li>But it wasn&#8217;t all bad news related to Twitter. Witness this awesome idea: <a rel="nofollow" href="http://feedproxy.google.com/~r/stoweboyd/wpeL/~3/5xXop_-j8Cs/a-modest-proposal-for-more-microstructure-location.html" >A Modest Proposal For More Microstructure: Twitter /Locations</a></li>
<li>My friend Donavon was <a href="http://feeds.homeserverhacks.com/~r/HomeServerHacks/~3/VbSCF5R7iYA/microsoft-mvp-featured-in-baltimore.html" >featured in Baltimore Business Journal</a> talking about his nifty home servers, and pictured with his humidor!<a rel="nofollow" href="http://feedproxy.google.com/~r/typepad/sethsmainblog/~3/LVVyKwAQxSg/ignore-sunk-costs.html" ></a></li>
<li>A simple pearl of MBA wisdom: <a rel="nofollow" href="http://feedproxy.google.com/~r/typepad/sethsmainblog/~3/LVVyKwAQxSg/ignore-sunk-costs.html" >Ignore sunk costs</a></li>
<li>And if you&#8217;re using LinkedIn, here are <a rel="nofollow" href="http://www.cio.com/article/468067/LinkedIn_Etiquette_Five_Dos_and_Don_ts" >Five Dos and Don&#8217;ts</a></li>
<li>The best new product of May? Easily it&#8217;s Lego&#8217;s new <a href="http://feeds.wired.com/~r/wiredgeekdad/~3/g3g4tTAZ-r4/" >Frank Lloyd Wright</a> models!</li>
<li><a href="http://bit.ly/16273F"  target="_blank">Wilco&#8217;s new album</a> was leaked, but rather than freak out they put up a free streaming version. It&#8217;s Grrrrrrreat!</li>
</ul>
<h3 class="post-subhead">Enterprise Computing</h3>
<ul>
<li>vSphere finally hit, and lots of in-depth information appeared. I loved learning more about <a href="http://www.boche.net/blog/index.php/2009/05/10/vsphere-memorycpu-hotplug-hot-add/" >vSphere Memory/CPU Hotplug</a>, a topic I knew nothing about! Also, see my <a href="http://gestaltit.com" >Gestalt IT</a> post answering <a href="http://gestaltit.com/tech/virtualization/stephen/vsphere-4-upgrade-vmfs-update/" >Will the vSphere 4 Upgrade Require Another VMFS Update?</a><a href="http://blogs.hds.com/hu/2009/05/doeswijk-data-model.html" ></a></li>
<li><a href="http://blogs.hds.com/hu/2009/05/doeswijk-data-model.html" >The Doeswijk Data Model</a> presents a wonderful way of thinking about storage capacity and growth.</li>
<li>One of my favorite Windows 7/Server 2008 R2 features is the way that VHDs are handled: Learn more in <a href="http://blogs.technet.com/virtualization/archive/2009/05/14/native-vhd-support-in-windows-7.aspx" >Native VHD Support in Windows 7</a> and <a rel="nofollow" href="http://feedproxy.google.com/~r/ScottHanselman/~3/Vsg7q4RkHs0/LessVirtualMoreMachineWindows7AndTheMagicOfBootToVHD.aspx" >Less Virtual, More Machine &#8211; Windows 7 and the magic of Boot to VHD</a></li>
<li>New to storage? Brent Ozar (aka The Man) wrote a series on SAN Multipathing. See <a rel="nofollow" href="http://feedproxy.google.com/~r/BrentOzar-SqlServerDba/~3/LPtFLalFTs0/" >Part 1: What are Paths?</a> and <a rel="nofollow" href="http://feedproxy.google.com/~r/BrentOzar-SqlServerDba/~3/NNFyxpkpHVk/" >Part 2: What Multipathing Does</a></li>
<li>As everyone following my <a href="http://twitter.com/sfoskett"  target="_blank">Twitter</a> or <a rel="nofollow" href="http://www.flickr.com/photos/sfoskett/"  target="_blank">Flickr</a> feed knows, I was in Prague last week at the <a href="http://blog.fosketts.net/2009/05/19/lessons-cloud-computing-conference-expo-prague-2009/"  target="_blank">Sys-Con Cloud Expo</a>. While there, I met up with a few others, including <a href="http://viewfromthebunker.com/2009/05/22/back-from-prague/#" >Guy Bunker</a>, <a href="http://samj.net/"  target="_blank">Sam Johnston</a>, <a href="http://roman.stanek.org/"  target="_blank">Roman Stanek</a>, and others. See <a href="http://businessintelligence.me/blog_en/cloud-computing-expo-time-debrief/" >Time for a debrief!</a>, <a href="http://www.sys-con.com/node/974131" >Review of the Reviews</a>, and the <a href="http://cloudcomputing.sys-con.com/node/966989?page=0,0" >Photo Album</a></li>
</ul>
<div id="crp_related"><h3>You might also want to read these other posts...</h3><ul><li><a href="http://blog.fosketts.net/2009/06/01/pile-30-2009/"  rel="bookmark" class="crp_title">Back From The Pile: May 30, 2009</a></li><li><a href="http://blog.fosketts.net/2010/10/26/pile-interesting-links-october-26-2010/"  rel="bookmark" class="crp_title">Back From the Pile: Interesting Links,  October 26, 2010</a></li><li><a href="http://blog.fosketts.net/2011/03/25/pile-interesting-links-march-25-2011/"  rel="bookmark" class="crp_title">Back From the Pile: Interesting Links, March 25, 2011</a></li><li><a href="http://blog.fosketts.net/2011/03/18/pile-interesting-links-march-18-2011/"  rel="bookmark" class="crp_title">Back From the Pile: Interesting Links, March 18, 2011</a></li><li><a href="http://blog.fosketts.net/2009/05/19/lessons-cloud-computing-conference-expo-prague-2009/"  rel="bookmark" class="crp_title">Lessons From the Cloud Computing Conference and Expo Prague 2009</a></li></ul></div><script src="http://feeds.feedburner.com/~s/sfoskett?i=http://blog.fosketts.net/2009/05/26/pile-interesting-links-midmay/" type="text/javascript" charset="utf-8"></script><hr />
<p><small>© sfoskett for <a href="http://blog.fosketts.net">Stephen Foskett, Pack Rat</a>, 2009. |
<a href="http://blog.fosketts.net/2009/05/26/pile-interesting-links-midmay/">Back From The Pile: Interesting Links From Mid-May</a>
<br/>
This post was categorized as <a href="http://blog.fosketts.net/category/everything/enterprisestorage/" title="View all posts in Enterprise storage" rel="category tag">Enterprise storage</a>, <a href="http://blog.fosketts.net/category/everything/personal/" title="View all posts in Personal" rel="category tag">Personal</a>, <a href="http://blog.fosketts.net/category/everything/virtualstorage/" title="View all posts in Virtual Storage" rel="category tag">Virtual Storage</a>. Each of my categories has its own feed if you'd like to filter out or focus on posts like this.<br/>
</small></p>]]></content:encoded>
			<wfw:commentRss>http://blog.fosketts.net/2009/05/26/pile-interesting-links-midmay/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Google Is Heading For A Cliff; What Will They Do?</title>
		<link>http://blog.fosketts.net/2009/05/22/google-nofollow/</link>
		<comments>http://blog.fosketts.net/2009/05/22/google-nofollow/#comments</comments>
		<pubDate>Fri, 22 May 2009 14:02:26 +0000</pubDate>
		<dc:creator>Stephen</dc:creator>
				<category><![CDATA[Computer History]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Baidu]]></category>
		<category><![CDATA[Bit.ly]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[Cuil]]></category>
		<category><![CDATA[Digg]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Friendfeed]]></category>
		<category><![CDATA[Gmail]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Apps]]></category>
		<category><![CDATA[Google Reader]]></category>
		<category><![CDATA[IRC]]></category>
		<category><![CDATA[LAMP]]></category>
		<category><![CDATA[LinkedIn]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Nofollow]]></category>
		<category><![CDATA[PageRank]]></category>
		<category><![CDATA[Picasa]]></category>
		<category><![CDATA[Reader]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Slashdot]]></category>
		<category><![CDATA[social networks]]></category>
		<category><![CDATA[spam]]></category>
		<category><![CDATA[spider]]></category>
		<category><![CDATA[StimbleUpon]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[USENET]]></category>
		<category><![CDATA[wiki]]></category>
		<category><![CDATA[Wikipedia]]></category>
		<category><![CDATA[Yahoo]]></category>

		<guid isPermaLink="false">http://blog.fosketts.net/?p=1892</guid>
		<description><![CDATA[Google is the most important company to the Internet. Hyberbole? I think not! Without Google, the Internet that we all know and love would be a very different place, as would the business of IT. Along with Microsoft and the supporting community around LAMP, Google is the very foundation of modern computing. But the foundation of Google itself, its ability to rank Internet content and present relevant information to its users, is at risk. What will they do to fix it?
]]></description>
			<content:encoded><![CDATA[<p>Google is the most important company to the Internet. Hyberbole? I think not! <strong>Without Google, the Internet that we all know and love would be a very different place</strong>, as would the business of IT. Along with Microsoft and the supporting community around LAMP, Google is the very foundation of modern computing. But the foundation of Google itself, its ability to rank Internet content and present relevant information to its users, is at risk. What will they do to fix it?</p>
<blockquote><p>Note: This post is about Google, because it is by far the dominant search engine, advertiser, and &#8220;portal&#8221; in the English-speaking world. Nearly everything mentioned here applies equally to other search engines and advertising providers.</p></blockquote>
<h3 class="post-subhead">Ranking Pages</h3>
<p>Google&#8217;s relevance comes from their historical ability to present a quality searchable portal to the entire Internet. The majority of <a href="http://www.thestandard.com/news/2009/01/22/picture-guess-where-google-gets-97-its-revenue"  target="_blank">Google&#8217;s revenue</a> is also derived from quality information, giving them the ability to present more-compelling advertising to web users.</p>
<p><strong>Google&#8217;s core success is based on its ability to discover and rank the quality of Internet content</strong>. Gmail, Reader, Picasa, Apps, and the rest of the Google properties are surely excellent sources of information on the preferences of individual users, but they contribute only slightly to the other side of the coin: Information about Internet content. For that, they still rely on the core technology invented at Stanford a decade ago: <a rel="nofollow" href="http://en.wikipedia.org/wiki/PageRank"  target="_blank">PageRank</a>.</p>
<p>Every time it encounters a link, Google&#8217;s software &#8220;spider&#8221; follows it, adding the content of the linked web page to an index. Google, like other early search engines, counts each link as a vote for the quality of the page. The genius of PageRank is that Google weights each vote based on the quality of the page it comes from. Although PageRank is not the entirety of Google, it is a singular key element.</p>
<p>Put simply, <strong>Google&#8217;s success depends on its ability to gather and rank the links we all make and match them to the data we provide about ourselves</strong>. Without this, Google will fail.</p>
<h3 class="post-subhead">The Changing Web</h3>
<p><strong>The graphical Web is not the Internet</strong>. My first experiences online came well before graphical hypertext clients (what we now call browsers) dominated the user experience and became the web. Although the network we call the Internet now supports a very wide variety of traffic, <strong>Google&#8217;s preeminence comes only from the Web</strong>. They have little or no reach into the massive streams of corporate data, multimedia, and other non-hypertext content streaming across the &#8216;net.</p>
<p>When it was first developed, <strong>the web was manual and links were hand-selected and carefully put into context</strong>. It was difficult to put together a web page, and those pages that were developed were were static. The social networks of the time (USENET, IRC, and email mostly) were not integrated into the web, did not generally include links. So the first search engines, and later ones like Google, focused on this relatively small pool of pages and links.</p>
<p>But <strong>the web soon became automated</strong>, subsuming most other interactive services. Social (user-generated) interaction moved into the web in a big way, with blogs, wikis, and discussion forums enabling rapid content creation and reference by users. Sharing links in the social web, and through social bookmarking services, generally replaced the manual pages of old.</p>
<p>At first, this explosion of user-generated content was a dream scenario for Google. They could harvest the collective intelligence of us all to identify and rank content. But as the number of pages and links exploded, <strong>the notion of a &#8220;web page&#8221; was radically shifted from a stable and predictable set of data to a dynamic portal into a vast store of content</strong>. Where everyone once saw the same content at a given URL, now each of us has his own experience.</p>
<p>Spammers and scammers realized the value of Google placement and <strong>flooded this dynamic social web with links</strong>. This threatened not only to undermine the relevance that supports Google&#8217;s search (and advertising) business, but it also threatened these new social services themselves. Each honest, relevant link added to a Wikipedia article, included in a Slashdot comment, or shared on a service like Digg was dwarfed by the thousands or millions of spam links injected to boost the PageRank of &#8220;client&#8221; sites.</p>
<h3 class="post-subhead">I Don&#8217;t Follow</h3>
<p>Google and the social net fought valiantly against this wave of link spam, but it became clear that something more radical was needed. <strong>The only way to fight spam was to make it useless to the spammers</strong>. Thus was born a simple but highly-effective tool: <a rel="nofollow" href="http://en.wikipedia.org/wiki/Nofollow"  target="_blank">Nofollow</a>.</p>
<p>Webmasters long had the ability to tell the Google spider to ignore a certain set of hosted pages through the use of a server-side list called robots.txt. But spammers wanted the exact opposite. What was needed was a client-side way to specify that a link was not worthy of being spidered and ranked by the search engines. This would eliminate the primary benefit of link spam.</p>
<p>Implementing client-side spider blocking was trivial: <strong>A simple tag, &#8220;rel=nofollow&#8221;, was added alongside the url in a web link</strong>. This way, Google&#8217;s spider would simply ignore every &#8220;nofollow&#8221; link it encountered, and they would never be searched or ranked in the index.</p>
<p>But spammers would never put the nofollow tag in their own links. So sites quickly began implementing <a href="http://www.seomoz.org/blog/nofollow-is-dying-the-impact-of-microblogging-and-nofollow-on-seo"  target="_blank">blanket nofollow policies</a>: Every link submitted by users in any form would receive the tag by default. The idea would be that links that had not yet been vetted by users would get the nofollow tag and those that were deemed acceptable would not. But most sites never figured out the right process to allow the nofollow tag to be removed. Today, <strong>nearly every social service, from FaceBook to Twitter to Digg to StumbleUpon, permanently marks nearly every link this way</strong>. Even Wikipedia, a long-time holdout, finally switched to a <a rel="nofollow" href="http://meta.wikimedia.org/wiki/Nofollow"  target="_blank">default nofollow on all but the English site</a>.</p>
<h3 class="post-subhead">The Nofollow War</h3>
<p>What does this mean for Google? If the vast majority of user-generated links are tossed into the spam category as far as the search engine is concerned, it means <strong>that their entire system of discovering and ranking links is in jeopardy</strong>. The major social services, most of which attract the majority of end-user traffic, content, and links, are rendered useless in generating relevancy.</p>
<p>But these are the exact sources that Google ought to be focusing on the most. Many have noted that they hear about news more rapidly through real-time sources like Twitter than through less-dynamic traditional news sites and blogs. <strong>Even if Google had the ability to spider a service like Twitter in real time, </strong><a href="http://news.digitaltrends.com/news-article/19978/twitter-beating-google-on-real-time-information"  target="_blank"><strong>which is doubtful</strong></a><strong>, they would gain no insight from the links included in these sources</strong>. Social bookmarking sites like Digg are chock full of user-vetted links and should be gold mines for Google, but the nofollow tag makes them invisible.</p>
<p>This scarcity of user-generated links has <strong>made the links that are followable even more valuable</strong>. Scammers constantly create fake blogs of scraped (read &#8220;stolen&#8221;) content and users are paid to include followable links anywhere they can. Sites with a high PageRank value are constantly inundated with offers and attacked by hackers to siphon off high-value &#8220;votes&#8221;.</p>
<p><strong>High-profile content providers are circling their wagons</strong>, drastically cutting down on <a href="http://louisgray.com/live/2007/09/internal-linking-on-some-tech-blogs-is.html"  target="_blank">outside links</a> in order to focus PageRank on their own properties. <strong>Smaller publishers and blogs are striking back at the big guys</strong>, decrying their dearth of external links. Some even go so far as to initiate <a href="http://www.inverudio.com/programs/WordPressBlog/NofollowReciprocity.php"  target="_blank">blanket nofollow policies against these big, respected, but non-linking sites</a>.</p>
<p>This leaves Google with even fewer useful links with which to examine the Web. It also leaves the biggest content providers and networks and the savviest search engine optimization (SEO) pros with a bigger slice of the <a href="http://blog.fosketts.net/2009/01/15/googles-analytics-measuring-page-seo/"  target="_blank">valuable top-of-Google result real estate</a>.</p>
<h3 class="post-subhead">The Fix Is In</h3>
<p>Google is left with a looming nightmare scenario: <strong>As smaller, alternative, social, and real-time content providers disappear from the search engine, its overall relevance and value declines</strong>. Soon, a tipping point will be reached when users would rather rely on Twitter, FaceBook, and the rest for their Internet interactions than the old-fashioned search engine, email, and RSS readers that Google currently dominates. <strong>This house-of-cards collapse can only be avoided by including user-generated content in the Google index</strong>.</p>
<p><strong>Search engines could simply ignore the nofollow tag</strong>, wading into the social stream and combatting spam in other ways. But this would lead to another rapid upswing of link spam, shifting the burden to content providers once again. And it might also expose links that actually should not be followed, leading to technical and even legal trouble.</p>
<p>The best solution would see the <strong>social networks designing in some method of removing the nofollow attribute</strong> once links are verified to be relevant and correct. But there is no incentive for them to help drive Google traffic to other sites. Indeed, Twitter recently took the next step, <a href="http://www.techcrunch.com/2009/03/24/twitter-tweaks-its-title-tags-for-better-google-juice/"  target="_blank">arranging the titles of user pages</a> in an attempt to SEO their way to the top page of Google searches for user&#8217;s names. Only altruistic systems like Wikipedia are likely to design in this type of response.</p>
<p>Another possible scenario (to be explored another day) is <strong>the usurpation of today&#8217;s social web and its content by a new next-generation service</strong>. A web-based social client like <a href="http://www.louisgray.com/live/2009/05/friendfeed-simplifies-joining-process.html"  target="_blank">FriendFeed could rapidly siphon away</a> both existing and net-new content and users in the guise of openness and interoperability. Although new web spiders like Cuil have failed, perhaps old-fashioned crawling capability is no longer all that valuable in the social web.</p>
<p>The most likely fix is both predictable and pragmatic: <strong>Google must buy all successful source of social links</strong> (like Twitter, Bit.ly, StumbleUpon, and even FaceBook) and integrate them into their search system. Owning Twitter would enable Google to decide which links to follow and which to ignore. The reward of improving search results would be the incentive needed to add &#8220;re-follow&#8221; capability. <strong>Buying these services would also give Google an open pipe of the real-time traffic flowing through these services</strong>, a critical resource that they currently lack.</p>
<p><strong>Google simply can not afford not owning the real-time web</strong>, and they must continue to buy up similar sources of content as they appear. Yahoo was unable to extract value from StumbleUpon, but Google&#8217;s other competitors will certainly try to undermine the search giant. Frankly, I&#8217;m shocked that Microsoft, FaceBook, or even Baidu have not yet snapped up services like Twitter, LinkedIn, and Digg even if only to keep them and the information they contain out of Google&#8217;s hands.</p>
<blockquote><p>If you enjoyed reading this, you&#8217;ll probably also like <a href="http://foskettservices.com"  target="_blank">my Foskett Services blog</a>!</p></blockquote>
<div id="crp_related"><h3>You might also want to read these other posts...</h3><ul><li><a href="http://blog.fosketts.net/2009/05/27/google-recalculated-pagerank/"  rel="bookmark" class="crp_title">Google Just Recalculated PageRank!</a></li><li><a href="http://blog.fosketts.net/2009/01/15/googles-analytics-measuring-page-seo/"  rel="bookmark" class="crp_title">Measuring the Importance of Google&#8217;s First Page</a></li><li><a href="http://blog.fosketts.net/2010/01/20/vendor-twitter/"  rel="bookmark" class="crp_title">Vendor Non-Blogs</a></li><li><a href="http://blog.fosketts.net/2009/07/15/google-reader-social/"  rel="bookmark" class="crp_title">Google Reader Gets More Social</a></li><li><a href="http://blog.fosketts.net/2010/02/12/googles-evil-buzz-building/"  rel="bookmark" class="crp_title">Google&#8217;s Evil Buzz Is Building</a></li></ul></div><script src="http://feeds.feedburner.com/~s/sfoskett?i=http://blog.fosketts.net/2009/05/22/google-nofollow/" type="text/javascript" charset="utf-8"></script><hr />
<p><small>© sfoskett for <a href="http://blog.fosketts.net">Stephen Foskett, Pack Rat</a>, 2009. |
<a href="http://blog.fosketts.net/2009/05/22/google-nofollow/">Google Is Heading For A Cliff; What Will They Do?</a>
<br/>
This post was categorized as <a href="http://blog.fosketts.net/category/everything/computerhistory/" title="View all posts in Computer History" rel="category tag">Computer History</a>, <a href="http://blog.fosketts.net/category/everything/personal/" title="View all posts in Personal" rel="category tag">Personal</a>. Each of my categories has its own feed if you'd like to filter out or focus on posts like this.<br/>
</small></p>]]></content:encoded>
			<wfw:commentRss>http://blog.fosketts.net/2009/05/22/google-nofollow/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Ten-Year Trend: Mobility</title>
		<link>http://blog.fosketts.net/2009/03/11/ten-year-trend-mobility/</link>
		<comments>http://blog.fosketts.net/2009/03/11/ten-year-trend-mobility/#comments</comments>
		<pubDate>Thu, 12 Mar 2009 01:00:41 +0000</pubDate>
		<dc:creator>Stephen</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Computer History]]></category>
		<category><![CDATA[Enterprise storage]]></category>
		<category><![CDATA[Everything]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Terabyte home]]></category>
		<category><![CDATA[Virtual Storage]]></category>
		<category><![CDATA[3G]]></category>
		<category><![CDATA[802.11a]]></category>
		<category><![CDATA[Amazon]]></category>
		<category><![CDATA[archiving]]></category>
		<category><![CDATA[AvantGo]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[cloud]]></category>
		<category><![CDATA[data archive]]></category>
		<category><![CDATA[Dave Hitz]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[featured]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[GPS]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iPod]]></category>
		<category><![CDATA[LinkedIn]]></category>
		<category><![CDATA[mobility]]></category>
		<category><![CDATA[NetApp]]></category>
		<category><![CDATA[Palm]]></category>
		<category><![CDATA[PR]]></category>
		<category><![CDATA[Privacy]]></category>
		<category><![CDATA[Salesforce]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[Sling]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[TiVo]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[virtualization]]></category>
		<category><![CDATA[Wikipedia]]></category>
		<category><![CDATA[wireless]]></category>
		<category><![CDATA[work]]></category>
		<category><![CDATA[Yahoo]]></category>
		<category><![CDATA[Zimbra]]></category>

		<guid isPermaLink="false">http://blog.fosketts.net/?p=1527</guid>
		<description><![CDATA[What is the megatrend of this decade? I suggest that we are witnessing a wholesale shift from information tied to place/device to information mobility. Cloud computing, server virtualization, and even flash memory are all contributors to this massive trend, along with the user-side trends of the post-PDA mobile phone, 3G data, social web services, and connected home.]]></description>
			<content:encoded><![CDATA[<div id="attachment_1533" class="wp-caption alignright" style="width: 279px;  border: 1px solid #dddddd; background-color: #f3f3f3; padding-top: 4px; margin: 10px; text-align:center; float: right;"><a href="http://blog.fosketts.net/wp-content/uploads/2009/03/glass-and-grass.jpg" ><img class="size-medium wp-image-1533     " title="glass-and-grass" src="http://blog.fosketts.net/wp-content/uploads/2009/03/glass-and-grass-299x300.jpg" alt="IT infrastructure is following consumer technology out of the glass house and into the wide world" width="269" height="270" /></a><p style=' padding: 0 4px 5px; margin: 0;'  class="wp-caption-text">IT infrastructure is following consumer technology out of the data center glass house and into the wide world</p></div>
<p>Dave Hitz over at NetApp poses a very interesting question: <a href="http://blogs.netapp.com/dave/2009/03/three-ten-year.html"  target="_blank">What is the ten-year trend in information technology that we are currently building to?</a> He supplies these historical examples:</p>
<ul>
<li>1982-1992: A computer on every (business) desk</li>
<li>1990s: Networking all those computers</li>
</ul>
<p>He then goes on to suggest three ten-year trends that we might currently be living through:</p>
<ol>
<li> Cloud/Outsourced Computing</li>
<li>Server Virtualization</li>
<li>Flash Memory</li>
</ol>
<p>Although I agree on the importance of these three to enterprise IT, I don&#8217;t think they&#8217;ll be seen as the megatrends of this decade in hindsight. I suggest that, more than anything, we are witnessing a wholesale shift <strong>from information tied to place/device to information mobility</strong>. Cloud computing, server virtualization, and even flash memory are all <a rel="nofollow" href="http://esgblogs.typepad.com/marks_blog/2009/03/cloud-virtualization-is-a-key-ingredient.html"  target="_blank">contributors to</a> this massive trend, along with the user-side trends of the post-PDA mobile phone, 3G data, social web services, and connected home.</p>
<p><span id="more-1527"></span></p>
<h3 class="post-subhead">What Is Mobility?</h3>
<p>The meaning of mobility, to me, is expansive. It doesn&#8217;t just refer to taking a copy of your data with you, ubiquitous connectivity, or portable devices. <strong>Mobility is a new paradigm of computing</strong>.</p>
<ul>
<li>Your data no longer &#8220;sits&#8221; in one place &#8211; <strong>your data lives out there in the network</strong>!</li>
<li>Your applications no longer &#8220;live&#8221; on this device or that &#8211; <strong>your applications live out there in the network</strong>!</li>
<li>Your productivity environment no longer requires a particular piece of hardware &#8211; you expect to be <strong>productive everywhere on every device</strong>!</li>
</ul>
<p>This doesn&#8217;t sound strange to the modern Internet user. We have completely accepted the role of Google, Facebook, Yahoo, Wikipedia and the rest in our personal lives. Just as they did in the early days of the PC, business people have transitioned these concepts into the professional world &#8211; witness Salesforce and LinkedIn! In all cases, we have endorsed the idea that <strong>certain types of information <em>want </em>to live in the cloud because it makes them better!</strong></p>
<p><strong> </strong>Once you&#8217;ve used these services, old-fashioned email, contact management, encyclopedias, maps, and the rest seem incredibly limiting. A GPS system that can&#8217;t update its maps seems antiquated, and we want it to have real-time traffic data, too. An iPod that needs to be physically connected to a PC to add music or applications is simply unacceptable. Time- and place-shifting technologies like TiVo To Go, over-the-air podcast downloads, and Slingboxes reset our expectations about availability and choice of entertainment, but they are mere symptoms of our changing perceptions. <strong>We want mobility of data, applications, and platforms, and we are getting it.</strong></p>
<p>Consider two truly revolutionary platforms: the iPhone and the netbook. In both cases, we knowingly accept limitations in the name of portability, knowing that the cloud will give us what we can&#8217;t hold in our hands. These devices are limited in ways that would seem inconceivable just a few years ago: Apple has locked their platform up tighter than any in history, and netbooks are too small, underpowered, and cheap in all senses of the word. But we love them because they get us where we want to go, which is <strong>up and out</strong>!</p>
<h3 class="post-subhead">Mobility and Enterprise IT</h3>
<p>The concept of mobile data, applications, and devices is just as applicable to enterprise IT infrastructure as it is to personal technology. Some enterprise data must be kept close to the vest, especially where privacy laws and litigation concerns are applicable. But there is certainly <strong>a vast pool of corporate data that <em>wants </em>to be out working in the field!</strong> Setting this data free is the enterprise equivalent of the mobility megatrend!</p>
<p>Cloud computing is hype. Server virtualization is hype. Flash storage is hype. XaaS is hype. Web 2.0 is hype. But once the cloud of hype passes, we will be left with solid technologies to enable mobility and <strong>transform corporate computing</strong>. Why should corporate email have to punch through your firewall? Why should the intranet be limited to internal or VPN users? Why can&#8217;t customers interact with a (limited/controlled) set of your corporate records? Salesforce showed us that roaming users (sales teams) need greater access than most IT staff were ready to build. What if we applied the same ideas to other data types?</p>
<p>Many companies are already doing this. Microsoft offers a variety of internal/external services for their customers through Live (see Connect, for example). Many companies are using mail and productivity applications in the cloud from Google, MessageOne, and Zimbra. Backup and archiving as a service to mobile users is widespread (see Iron Mountain Connected and Mozy). And more and more corporate PR relies on blogs, twitter, and social networking sites. Corporate security and legal types are worried about data &#8220;escaping&#8221; from the eggshell of control they exert, but this cat is out of the bag. Enterprise IT will never be the same!</p>
<p>It comes down to a single core question that IT folks ought to have been asking themselves all along: <strong>What should be held internally and what should be let loose?</strong> We already &#8220;outsource&#8221; many non-core corporate functions. Sometimes we do this for cost reasons. But the most effective outsourcing decision is when <strong>a third party will do a better job</strong>, offering levels of expertise or service that an internal group could never realistically reach. We already buy enterprise software to leverage outside development (remember, this was not always the case!), so why not also buy enterprise services? Corporate-grade outsourced email, groupware, sales automation, and the like is not only more robust and less expensive than internal systems, <strong>they enable a disconnected, mobile workforce</strong>.</p>
<h3 class="post-subhead">Today, I Was Angry</h3>
<p>I bought a new album from Amazon, but I forgot to sync my iPhone with my laptop, so it was sitting at home when I wanted to listen to it in the car. Then I couldn&#8217;t find a colleague&#8217;s phone number because he moved to a new company and my address book didn&#8217;t automatically update. And I couldn&#8217;t review a presentation because I needed a special account to access a corporate document system behind a firewall.</p>
<p>These little accomplishments would have seemed like miracles just a few years ago: I remember the joy I felt ten years ago when I could read a web page offline on my Palm Pilot using AvantGo; I was amazed when I first fired up 802.11a wireless networking and could work anywhere in the office; I was gleeful to be able to take 5 GB of music with me on the train. But all this is past. Today, I want to access my portable data and work anywhere. <strong>We are in the midst of a revolution in the mobility and ubiquity of computing</strong>.</p>
<blockquote><p>See my posts on <a href="http://gestaltit.com/author/stephen/"  target="_blank">Gestalt IT</a> for similar <a href="http://gestaltit.com"  target="_blank">enterprise IT infrastructure commentary</a></p>
</blockquote>
<div id="crp_related"><h3>You might also want to read these other posts...</h3><ul><li><a href="http://blog.fosketts.net/2009/05/19/lessons-cloud-computing-conference-expo-prague-2009/"  rel="bookmark" class="crp_title">Lessons From the Cloud Computing Conference and Expo Prague 2009</a></li><li><a href="http://blog.fosketts.net/2011/04/26/5292/"  rel="bookmark" class="crp_title"></a></li><li><a href="http://blog.fosketts.net/2009/03/19/sun-cloud/"  rel="bookmark" class="crp_title">Sun Launches Their Own Cloud, But For Which Market?</a></li><li><a href="http://blog.fosketts.net/about/services/"  rel="bookmark" class="crp_title">Services</a></li><li><a href="http://blog.fosketts.net/2009/09/16/cloud-services-standards/"  rel="bookmark" class="crp_title">We Don&#8217;t Need Cloud Standards (Yet)</a></li></ul></div><script src="http://feeds.feedburner.com/~s/sfoskett?i=http://blog.fosketts.net/2009/03/11/ten-year-trend-mobility/" type="text/javascript" charset="utf-8"></script><hr />
<p><small>© sfoskett for <a href="http://blog.fosketts.net">Stephen Foskett, Pack Rat</a>, 2009. |
<a href="http://blog.fosketts.net/2009/03/11/ten-year-trend-mobility/">Ten-Year Trend: Mobility</a>
<br/>
This post was categorized as <a href="http://blog.fosketts.net/category/everything/apple/" title="View all posts in Apple" rel="category tag">Apple</a>, <a href="http://blog.fosketts.net/category/everything/computerhistory/" title="View all posts in Computer History" rel="category tag">Computer History</a>, <a href="http://blog.fosketts.net/category/everything/enterprisestorage/" title="View all posts in Enterprise storage" rel="category tag">Enterprise storage</a>, <a href="http://blog.fosketts.net/category/everything/" title="View all posts in Everything" rel="category tag">Everything</a>, <a href="http://blog.fosketts.net/category/everything/personal/" title="View all posts in Personal" rel="category tag">Personal</a>, <a href="http://blog.fosketts.net/category/everything/terabytehome/" title="View all posts in Terabyte home" rel="category tag">Terabyte home</a>, <a href="http://blog.fosketts.net/category/everything/virtualstorage/" title="View all posts in Virtual Storage" rel="category tag">Virtual Storage</a>. Each of my categories has its own feed if you'd like to filter out or focus on posts like this.<br/>
</small></p>]]></content:encoded>
			<wfw:commentRss>http://blog.fosketts.net/2009/03/11/ten-year-trend-mobility/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Nine Blog Suggestions from a Grumpy Reader</title>
		<link>http://blog.fosketts.net/2009/02/20/improve-your-blog/</link>
		<comments>http://blog.fosketts.net/2009/02/20/improve-your-blog/#comments</comments>
		<pubDate>Fri, 20 Feb 2009 16:33:51 +0000</pubDate>
		<dc:creator>Stephen</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[AdSense]]></category>
		<category><![CDATA[BackType]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[Disqus]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Friendfeed]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[LinkedIn]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[social networks]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[writing]]></category>

		<guid isPermaLink="false">http://blog.fosketts.net/?p=1452</guid>
		<description><![CDATA[I subscribe to hundreds of RSS feeds, and read them religiously. According to Google Reader's statistics, I read about 200 items per day out of over 700 posted to all of those feeds. As you might expect, I've got some strong feelings about blogs and news sites after reading that much. So this message is aimed at all of you content providers out there: Fix your darn blogs and feeds so I won't be so grumpy anymore!]]></description>
			<content:encoded><![CDATA[<div id="attachment_1456" class="wp-caption alignright" style="width: 198px;  border: 1px solid #dddddd; background-color: #f3f3f3; padding-top: 4px; margin: 10px; text-align:center; float: right;"><a href="http://blog.fosketts.net/wp-content/uploads/2009/02/beware-my-disk.jpg" ><img class="size-medium wp-image-1456   " title="beware-my-disk" src="http://blog.fosketts.net/wp-content/uploads/2009/02/beware-my-disk-299x300.jpg" alt="Attention bloggers! I've got a whole disk of whoopass aimed at your head!" width="188" height="189" /></a><p style=' padding: 0 4px 5px; margin: 0;'  class="wp-caption-text">Attention bloggers! I&#39;ve got a whole disk of whoopass aimed at your head!</p></div>
<p>I subscribe to hundreds of RSS feeds, and read them religiously. According to Google Reader&#8217;s statistics, I read about 200 items per day out of over 700 posted to all of those feeds. As you might expect, I&#8217;ve got some strong feelings about blogs and news sites after reading that much.</p>
<p>So this message is aimed at all of you content providers out there: <strong>Fix your darn blogs and feeds so I won&#8217;t be so grumpy anymore!</strong></p>
<blockquote><p>If you enjoyed reading this, you&#8217;ll probably also like <a href="http://foskettservices.com"  target="_blank">my Foskett Services blog</a>!</p></blockquote>
<ol>
<li><strong>Use full-text RSS feeds!</strong> If you&#8217;re still cutting off your posts after a few sentences, <a rel="nofollow" href="http://labnol.blogspot.com/2006/12/do-you-publish-full-text-feeds-or.html"  target="_blank">you&#8217;re losing my readership</a>. I hardly ever click through on two-line feed items, and I feel burned when I even bother to subscribe to these. Half the time the heading and excerpt promise more than the article delivers anyway. Switch to a full-text feed so I can read your content right there in Google Reader without clicking through to see your interstitial ads for every post. I promise I will visit and comment if you have valuable things to say. What&#8217;s that? I hear you boo-hooing that you will lose readership, visitors, and AdSense revenue? You&#8217;re wrong. The best audience is an engaged audience, and readers of your feed are the most engaged folks you will find. They&#8217;re also a tiny TINY minority of readers (<a href="http://www.micropersuasion.com/2008/10/rss-adoption-at.html"  target="_blank">about 11% last I heard</a>) compared to real search engine and referral-driven traffic. You&#8217;re only going to increase loyalty by switching to full-text feeds, whereas your refusal to syndicate more than 11 words is likely to drive people like me away.</li>
<li><strong>No more me-too posts!</strong> Here&#8217;s a hint: If one of your peers already posted pretty much all you have to say on a topic, then <a href="http://www.louisgray.com/live/2008/12/best-solution-to-embargo-angst-write.html"  target="_blank">don&#8217;t post at all</a>. If you&#8217;re a worthwhile writer, there has to be a unique angle you can use for any story. Get your own voice! Bonus hint: Make sure you are reading your peers&#8217; blogs so you know what they are saying, too! And <a href="http://www.louisgray.com/live/2008/10/making-your-blogging-much-more-than.html"  target="_blank">a link back</a> to them wouldn&#8217;t hurt either!</li>
<li><strong>Don&#8217;t write about your stats!</strong> I don&#8217;t care about your monthly readership stats or AdSense revenues. Unless your blog happens to be about AdSense or search engine optimization, that is&#8230;</li>
<li><strong>Kill the ads!</strong> Face it: You&#8217;re not getting rich with banner ads on your blog. Yes, I admit that I do run a few AdSense ads on my blog pages. Although the payout is tiny, it&#8217;s enough to keep the lights on. But I don&#8217;t force ads on everyone all the time &#8211; I use Ozh&#8217; excellent <a href="http://planetozh.com/blog/my-projects/wordpress-plugin-who-sees-ads-control-adsense-display/"  target="_blank">Who Sees Ads</a> plugin for WordPress so only search engine visitors see my banners. And I will never pollute my feeds with ads: Treat your (very few) subscribers like the loyal friends they are instead of trying to make a dime from their clicks. And yeah, a dime is about all you are making from your blog anyway, right?</li>
<li><strong>Trim the fat!</strong> Are you illustrating your articles with 300k high-definition PNG images? Unless you&#8217;re a photographer or graphic designer, do us all a favor and limit your inline images to about 300 pixels wide. I know it&#8217;s non-free and all, but JPEG speeds up load times! And do you really need to embed flash animations, auto-playing YouTube clips, and other such junk? I&#8217;ll happily click through if I care. Keep the number of illustrations down, too. If the vertical space of your post is more than half graphics (especially cheesy Excel charts) you need to refocus it before you lose your readers.</li>
<li><strong>Edit and format your writing!</strong> If I can&#8217;t read your post, I won&#8217;t read your post. Start by turning on spell check. Then learn the basic rules of grammar. You may be a computer genius, but I&#8217;m not going to put up with <a href="http://wsuonline.weber.edu/wrh/words.htm"  target="_blank">incorrect homonyms</a> and <a rel="nofollow" href="http://en.wikipedia.org/wiki/Eggcorn"  target="_blank">eggcorns</a> forever! Perhaps consider learning what a paragraph is, and even create some yourself. You can still use bulleted and numbered lists, but how about some context and headings to assist the reader?</li>
<li><strong>Quit moving around!</strong> If you&#8217;re blogging, you should <a href="http://www.brentozar.com/archive/2008/12/how-to-start-a-technical-blog-part-2-wordpress/"  target="_blank">control your own destiny</a>: Have your own domain name, your own install of WordPress, and your own feed URL. It&#8217;s hard for me to take &#8220;whoever.typepad.com&#8221; seriously, especially when, three months after I subscribe, he moves his feed to &#8220;whoever.blogger.com&#8221; and makes me re-subscribe. Often, I&#8217;ll just unsubscribe and forget him. Don&#8217;t want this to happen? Register your own domain name for your blog, set up a hosting account and install WordPress (it&#8217;s the best, hands down), and don&#8217;t bother me. While you&#8217;re at it, <a href="http://searchengineland.com/stay-master-of-your-feed-domain-10234"  target="_blank">private-label your feedburner feed</a> so you can take that with you when you move around, too.</li>
<li><strong>Make commenting easier!</strong> Comment spam is a fact of life. Despite using Akismet, <a href="http://www.bad-behavior.ioerror.us/"  target="_blank">Bad Behavior</a>, and <a href="http://www.wprecipes.com/how-to-deny-comment-posting-to-no-referrer-requests"  target="_blank">clever tricks</a>, I got more comments from spammers than actual readers on my blog. Then I heard that, although I added OpenID, commenting was still too hard. So I switched to Disqus for blog comments to try to make life easier, and have had a much better time of it since. If you&#8217;re still using native commenting, you&#8217;re missing out on a lot of readers who would like to comment but won&#8217;t jump through hoops to do it. Bonus hint: Use <a href="http://blog.fosketts.net/2008/11/13/backtype-blog-comments/"  target="_blank">BackType</a> to follow comments on other blogs, too!</li>
<li><strong>Let me contact you!</strong> Everyone should have their real name and contact information prominently available on their blog. If you&#8217;re covering topics that intersect with work, you should disclose your employer, too. If you want to engage your readers, add in a link to your LinkedIn, Twitter, or Facebook account, too. But don&#8217;t go crazy &#8211; no one needs to connect to you in 800 places. That&#8217;s what <a href="http://friendfeed.com"  target="_blank">FriendFeed</a> is for!</li>
</ol>
<p>Finally, here&#8217;s a bonus tip: <strong>No more top-ten lists!</strong> You&#8217;ll probably get to number nine and run out of things to say anyway!</p>
<div id="crp_related"><h3>You might also want to read these other posts...</h3><ul><li><a href="http://blog.fosketts.net/2008/02/19/i-want-a-real-blog-aggregator/"  rel="bookmark" class="crp_title">I Want a Real Blog Aggregator</a></li><li><a href="http://blog.fosketts.net/2008/11/13/backtype-blog-comments/"  rel="bookmark" class="crp_title">BackType Is Closing The Blog Comment Hole</a></li><li><a href="http://blog.fosketts.net/thanks-for-commenting/"  rel="bookmark" class="crp_title">Thank You For Commenting!</a></li><li><a href="http://blog.fosketts.net/2008/07/22/my-new-all-apple-feed/"  rel="bookmark" class="crp_title">My New All-Apple Feed</a></li><li><a href="http://blog.fosketts.net/2011/10/31/google-reader-unfriends-internet/"  rel="bookmark" class="crp_title">Google Reader&#8217;s Roach Motel &#8220;Un-Friends&#8221; the Internet</a></li></ul></div><script src="http://feeds.feedburner.com/~s/sfoskett?i=http://blog.fosketts.net/2009/02/20/improve-your-blog/" type="text/javascript" charset="utf-8"></script><hr />
<p><small>© sfoskett for <a href="http://blog.fosketts.net">Stephen Foskett, Pack Rat</a>, 2009. |
<a href="http://blog.fosketts.net/2009/02/20/improve-your-blog/">Nine Blog Suggestions from a Grumpy Reader</a>
<br/>
This post was categorized as <a href="http://blog.fosketts.net/category/everything/personal/" title="View all posts in Personal" rel="category tag">Personal</a>. Each of my categories has its own feed if you'd like to filter out or focus on posts like this.<br/>
</small></p>]]></content:encoded>
			<wfw:commentRss>http://blog.fosketts.net/2009/02/20/improve-your-blog/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>&#8220;Social&#8221; Sites: Quit It or I Quit!</title>
		<link>http://blog.fosketts.net/2007/12/06/social-sites-quit-it-or-i-quit/</link>
		<comments>http://blog.fosketts.net/2007/12/06/social-sites-quit-it-or-i-quit/#comments</comments>
		<pubDate>Thu, 06 Dec 2007 14:42:56 +0000</pubDate>
		<dc:creator>Stephen</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[LinkedIn]]></category>
		<category><![CDATA[MySpace]]></category>
		<category><![CDATA[Plaxo]]></category>
		<category><![CDATA[social networks]]></category>
		<category><![CDATA[Spock]]></category>

		<guid isPermaLink="false">http://blog.fosketts.net/2007/12/06/social-sites-quit-it-or-i-quit/</guid>
		<description><![CDATA[I am so sick of social networking sites that send spam, pollute my address book, pry into my life, and otherwise screw up the very social sphere they are supposed to serve.  Since these things are popping up like plastic moles at an arcade, it&#8217;s hard to avoid getting sucked into one or two.  And [...]]]></description>
			<content:encoded><![CDATA[<p>I am so sick of social networking sites that send spam, pollute my address book, pry into my life, and otherwise screw up the very social sphere they are supposed to serve.  Since these things are <a rel="nofollow" href="http://powrightbetweentheeyes.typepad.com/pow_right_between_the_eye/2007/12/i-was-at-one-of.html"  target="_blank">popping up</a> like <a rel="nofollow" href="http://en.wikipedia.org/wiki/Whac-A-Mole"  target="_blank">plastic moles at an arcade</a>, it&#8217;s hard to avoid getting sucked into one or two.  And just when you think you&#8217;re safe, suddenly another site is impersonating you in an email.  &#8220;Since you&#8217;re someone I trust&#8230;&#8221;</p>
<p>I avoided all of these things for years before finally succumbing to <a rel="nofollow" href="http://www.linkedin.com/"  target="_blank">LinkedIn</a>.  It seemed like everyone in my (professional, over-30) &#8220;network&#8221; was on it, and was sending me invites all the time, so I decided to jump in and join just that one network.  LinkedIn was, and remains, just &#8220;ok&#8221;.  I like that it is focused professionally and that many of my colleagues are in it.  I really don&#8217;t like that it&#8217;s not really integrated with anything &#8211; your network lives on LinkedIn and never gets out much.  And I hate the spammy messages and <a rel="nofollow" href="http://en.wikipedia.org/wiki/Ponzi_scheme"  target="_blank">Ponzi scheme</a> aspect of collecting contacts and luring others in.  But it remains ok.</p>
<p>Then there was <a href="http://plaxo.com"  target="_blank">Plaxo</a>.  If you disliked the messages from LinkedIn, you hated the ones from Plaxo, especially their embedded &#8220;business card&#8221; signatures with JavaScript, images, and god knows what else&#8230;  I finally joined Plaxo because it purports to keep your Outlook address book in shape for you.  But I&#8217;m furious that what it really does is &#8220;re-duplicate&#8221; all of your contacts, messing up your address book until you <em>have</em> to sign up for their premium service just to get the de-duplication feature.  And don&#8217;t get me started about when I switched jobs and it spammed everyone in my address book without my consent!  And <a href="http://www.itsbeach.com/blog/2007/12/whats-up-with-p.html"  target="_blank">Plaxo just re-launched</a> with a more Facebook-y interface called Pulse, which is pretty but mostly empty and highly useless.  I&#8217;m considering quitting Plaxo&#8230;</p>
<p>Then there are the <em>social</em> social sites.  I &#8220;joined&#8221; <a rel="nofollow" href="http://myspace.com"  target="_blank">MySpace</a> so I could keep up with one of my favorite bands, but I&#8217;ve never really used it.  It&#8217;s just so creepy and ugly &#8211; a race to see who can come up with the worst home page reminiscent of the way-back days of the world wide web.  I refuse to use it, except to delete the continual spam mail from would-be women friends in Russia&#8230;  Come on, <a rel="nofollow" href="http://www.myspace.com/tom"  target="_blank">Tom</a>, can&#8217;t MySpace do something about that?</p>
<p>Next up?  <a rel="nofollow" href="http://facebook.com"  target="_blank">Facebook</a>!  Aah yes, home of <a href="http://www.readwriteweb.com/archives/facebook_apps_hit_10k_in_numbe.php"  target="_blank">10,000 useless ways to &#8220;poke&#8221; someone</a> you already know.  And home to exactly 38 people that I kinda know. It was interesting playing with the customization features, and seeing the crowded but much less ugly home pages.  But <a rel="nofollow" href="http://avc.blogs.com/a_vc/2007/07/the-facebook-ag.html"  target="_blank">it&#8217;s not for old folks like me</a>, I guess.</p>
<p>So why am I writing this today?  Well, if you&#8217;re my friend (and if you&#8217;re reading this, you probably are) then you might have just received some more social-spam from me this morning.  And I wanted to apologize.  See, I just tried out <a href="http://www.spock.com/"  target="_blank">Spock</a>, a people search engine that looked kind of keen.  It mines other sites to try to come up with uniform information about people from all those other social networks &#8211; a network of networks.  It asked me to add in my connections, so I let it search my address book (which, thanks to Plaxo, is about as crufty and full of surprises as my kids&#8217; toy box) and then told me that 135 contacts were &#8220;already on Spock&#8221;, so I could &#8220;add them to my trust network&#8221;.  Sure, I stupidly, thought adding them to my trust network sounds OK!  After clicking &#8220;Add to trust network&#8221;, it asked if I wanted to email everyone else, and I said no.  Now I am not sure <em>what</em> Spock did to request trust, and I have no way to take it back.</p>
<p>But there was something nagging me at the end of this little interaction with Spock, making me think I <em>might</em> just have spammed everyone yet again.  Maybe I&#8217;m just mistrustful or jaded, but I guess I&#8217;ve just gotten to the point of assuming that all social networking sites are Ponzi schemes to <a href="http://gigaom.com/2007/11/06/facebook-beacon-privacy-issues/"  target="_blank">bring eyeballs to ads</a> by sending out email &#8220;on my behalf&#8221;.</p>
<p>I&#8217;m sick of it.  I&#8217;m opting out of the next social network I get invited to, and I suggest you do the same.  I&#8217;m thinking of pulling out of Plaxo, Facebook, and MySpace.  And the next site I trust that spams my friends will get the boot, too.  Hear me, social networks?  Quit it or I quit.</p>
<div id="crp_related"><h3>You might also want to read these other posts...</h3><ul><li><a href="http://blog.fosketts.net/2007/12/06/spock-spam-is-not-logical/"  rel="bookmark" class="crp_title">Spock: Spam is Not Logical!</a></li><li><a href="http://blog.fosketts.net/2007/12/07/post-iii-the-search-for-spock/"  rel="bookmark" class="crp_title">Post III: The Search for Spock</a></li><li><a href="http://blog.fosketts.net/2008/01/14/liv-greene-and-mclovin12four-my-new-friends/"  rel="bookmark" class="crp_title">Liv Greene and McLovin12Four &#8211; My New Friends?</a></li><li><a href="http://blog.fosketts.net/2008/02/19/i-want-a-real-blog-aggregator/"  rel="bookmark" class="crp_title">I Want a Real Blog Aggregator</a></li><li><a href="http://blog.fosketts.net/2009/05/22/google-nofollow/"  rel="bookmark" class="crp_title">Google Is Heading For A Cliff; What Will They Do?</a></li></ul></div><script src="http://feeds.feedburner.com/~s/sfoskett?i=http://blog.fosketts.net/2007/12/06/social-sites-quit-it-or-i-quit/" type="text/javascript" charset="utf-8"></script><hr />
<p><small>© sfoskett for <a href="http://blog.fosketts.net">Stephen Foskett, Pack Rat</a>, 2007. |
<a href="http://blog.fosketts.net/2007/12/06/social-sites-quit-it-or-i-quit/">&#8220;Social&#8221; Sites: Quit It or I Quit!</a>
<br/>
This post was categorized as <a href="http://blog.fosketts.net/category/everything/personal/" title="View all posts in Personal" rel="category tag">Personal</a>. Each of my categories has its own feed if you'd like to filter out or focus on posts like this.<br/>
</small></p>]]></content:encoded>
			<wfw:commentRss>http://blog.fosketts.net/2007/12/06/social-sites-quit-it-or-i-quit/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

