<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" 

	xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" 

	xmlns:content="http://purl.org/rss/1.0/modules/content/"

	xmlns:wfw="http://wellformedweb.org/CommentAPI/">
   <channel>
      <title>register | Kris Smith has read these articles about "register" | www.croncast.com</title>
	  <itunes:author>Kris Smith</itunes:author>
      <link>http://www.croncast.com/keyg/register</link>
      <description>This is the keyword feed for "register" from my read items in Google Reader. If you would like to search or subscribe to category/keyword rss feeds for items that I have shared with Google Reader visit http://www.croncast.com/c4_reading.php</description>
      <language>en-us</language>
	  <copyright>Copyright for these items belong to their original publishers.</copyright>
	  		<itunes:explicit>No</itunes:explicit>

		<itunes:keywords>Croncast, Kris, Betsy, Comedy, Parenting, Funny, Palegroove, Croncast, eBay, Goodwill</itunes:keywords>

		<itunes:subtitle>This is the keyword feed for "register" from my read items in Google Reader.</itunes:subtitle>

 	<itunes:summary>This is the keyword feed for "register" from my read items in Google Reader.</itunes:summary>

 	<image> 

		<url>http://www.croncast.com/images/croncast_itunes.jpg</url>
 		<title>register | Kris Smith has read these articles about "register" | www.croncast.com</title>
 		<link>http://www.croncast.com/keyg/register</link>
 		<description>This is the keyword feed for "register" from my read items in Google Reader. If you would like to search or subscribe to category/keyword rss feeds for items that I have shared with Google Reader visit http://www.croncast.com/c4_reading.php</description>
 	</image> 	
	<itunes:image href="http://www.croncast.com/images/croncast_itunes.jpg" />
<itunes:category text="Comedy"/>
<itunes:category text="Society &amp; Culture">
</itunes:category>
<itunes:owner> 
			<itunes:name>Croncast - Kris and Betsy Smith</itunes:name>
	        <itunes:email>info@palegroove.com</itunes:email>
 </itunes:owner>
      <docs>http://www.croncast.com</docs>
      <generator>Palegroove</generator>
      <item>
         <title>Twitter-OAuth-PHP</title>
         <link>https://docs.google.com/View?docID=dcf2dzzs_2339fzbfsf4#Process_4555055271827706_12118</link>
		 <category>Shared item</category>
			<description><![CDATA[<div><font color="#ff0000"><font size="4">This documentation is for TwitterOAuth library verision 0.1.x</font></font>.<br>If you are using trunk (0.2.x) these instructions will be wrong!</div><div><br>Try it out live: <a href="http://twitter.abrah.am" title="http://twitter.abrah.am">http://twitter.abrah.am</a><br> <br>Twitter OAuth is in beta and could change at any time. Feel free to contact me with bug/questions. A full TwitterOAuth lib will be released soon. Currently the code is hacked together and should not be used in production without proper testing.<br><h4><a name="Index_01788989463956403_390724"></a>Index</h4><div><ol><li><a href="https://docs.google.com/View?docID=dcf2dzzs_2339fzbfsf4#Index_01788989463956403_390724">Index</a></li><li><a href="https://docs.google.com/View?docID=dcf2dzzs_2339fzbfsf4#Definitions_9186197191046558_0_5683746400430577">Definitions</a></li><li><a href="https://docs.google.com/View?docID=dcf2dzzs_2339fzbfsf4#Get_the_code_0643188256037267__3852701616602482">Get the code</a></li><li><a href="https://docs.google.com/View?docID=dcf2dzzs_2339fzbfsf4#Process_overview_7986091704167">Process overview</a></li><li><a href="https://docs.google.com/View?docID=dcf2dzzs_2339fzbfsf4#Process_4555055271827706_12118">Process</a></li><li><a href="https://docs.google.com/View?docID=dcf2dzzs_2339fzbfsf4#Links_2049452824312611">Links</a></li></ol></div></div><h4><a name="Definitions_9186197191046558_0_5683746400430577"></a>Definitions</h4>Consumer: the application you are building. registered with twitter. Sometimes referred to as application<br><div><div>User: the user using your application.<br>Token: there are several different sets of tokens usually in key/secret  pairs.<br>Consumer token: the token pair Twitter gives you when you register an application.<br>Request token: the first token pair Twitter returns. used to build an authorize URL used to request the access token.<br>Access token: unique to user. Used to access users data.<br><h4><a name="Get_the_code_0643188256037267__3852701616602482"></a>Get the code</h4>Pull code from <a href="http://github.com/abraham/twitteroauth" title="http://github.com/abraham/twitteroauth">http://github.com/abraham/twitteroauth</a><br><div style="margin-left:40px;color:rgb(255, 0, 0)"><i>git clone git://github.com/</i>abraham<i>/twitteroauth.git </i></div><h4><a name="Process_overview_7986091704167"></a>Process overview</h4>This is a very simplistic overview of authenticating with Twitter's OAuth.<br><ol><li>Build TwitterOAuth object.<br></li><li>Request tokens from twitter.</li><li>Build authorize URL.</li><li>Send user to Twitter's authorize URL.</li><li>Get access tokens from twitter.</li><li>Rebuild TwitterOAuth object.<br></li><li>Query Twitter API with new access tokens.<br></li></ol><h4><a name="Process_4555055271827706_12118"></a>Process</h4>For this example we will be using the the index.php from the example folder and it will be located in the web root.<br><div style="margin-left:40px">public/index.php<br>public/twitteroauth/<br></div><br>Go to <a href="https://twitter.com/oauth_clients" title="https://twitter.com/oauth_clients">https://twitter.com/oauth_clients</a> and register a new application. Fill out what the form. For a callback URL we will be using http://example.com/index.php. Once registered you will get a consumer key and a consumer secret. Those go in index.php<br><br>Now we create a TwitterOAuth object. The class constructor chooses HMAC-SHA1 as the signature method, and builds a OAuthConsumer object with the app consumer key/secret. <br><div style="margin-left:40px;color:rgb(255, 0, 0)"><i>$to = new TwitterOAuth($consumer_key, $consumer_secret);</i></div><br>With that object we use curl to request a token from twitter. The API URL we hit is https://twitter.com/oauth/request_token. getRequestToken() pulls the tokens from twitter, parses it into an array, and creates a new OAuthConsumer object. <br><div style="margin-left:40px"><i style="color:rgb(255, 0, 0)">$tok = $to-&gt;getRequestToken();</i><br></div><br>Save the tokens for when the user returns from Twitter. <br><br>Set up the authorization URL. This is the URL the user will visit to tell twitter the application can access their data. https://twitter.com/oauth/authorize is used.<br><div style="margin-left:40px;color:rgb(255, 0, 0)"><i>$request_link = $to-&gt;getAuthorizeURL($token);</i></div><br>Once the user tells twitter yes and returns we request the access tokens. The access tokens can be thought of the users passwords and will be used to authenticate as them for future API calls. https://twitter.com/oauth/access_token is used. <br><div style="margin-left:40px"><i style="color:rgb(255, 0, 0)">$tok = $to-&gt;getAccessToken();</i><br></div><br>At this point you can check <a href="https://twitter.com/account/connections" title="https://twitter.com/account/connections">https://twitter.com/account/connections</a> and the application should be listed.<br><br>Build a new TwitterOAuth object using consumer key/secret and access key/secret.<br><div style="margin-left:40px"><i style="color:rgb(255, 0, 0)">$to = new TwitterOAuth($consumer_key, $consumer_secret, $user_access_key, $user_access_secret);</i><br></div><br>Now to interact with the API as the user to verify their credentials. This should return their profile. You can now save the access key/secret as being associated with the returned user info.<br><div style="margin-left:40px"><i style="background-color:rgb(255, 255, 255);color:rgb(255, 0, 0)">$content = $to-&gt;OAuthRequest(&#39;https://twitter.com/account/verify_credentials.xml&#39;, array(), &#39;GET&#39;);</i><br></div><br>To send a status update change the API URL and add a key/value array.<br><div style="margin-left:40px;color:rgb(255, 0, 0)"><i>$content = $to-&gt;OAuthRequest(&#39;https://twitter.com/statuses/update.xml&#39;, array(&#39;status&#39; =&gt; &#39;Test OAuth update. #testoauth&#39;), &#39;POST&#39;);</i></div><br>There you have it. Basic interaction with Twitter's OAuth beta. To run other commands just change the API URL and array() keys/values in the last call.<br><h4><a name="Links_2049452824312611"></a>Links</h4>My website: <a href="http://abrah.am" title="http://abrah.am">http://abrah.am</a><br>Twitter: <a href="http://twitter.com/" title="http://twitter.com">http://twitter.com</a><br>OAuth: <a href="http://oauth.net/">http://oauth.net</a><br>Twitter API docs: <a href="http://apiwiki.twitter.com" title="http://apiwiki.twitter.com">http://apiwiki.twitter.com</a><br>Twitter API discussion: <a href="http://groups.google.com/group/twitter-development-talk" title="http://groups.google.com/group/twitter-development-talk">http://groups.google.com/group/twitter-development-talk</a><br>Fire Eagle OAuth docs: <a href="http://fireeagle.yahoo.net/developer/documentation/php_walkthru">http://fireeagle.yahoo.net/developer/documentation/php_walkthru</a><br></div></div><br><br>Tags: <a href="http://www.croncast.com/keyg/twitter">twitter</a> <a href="http://www.technorati.com/tag/twitter"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/twitter.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/access">access</a> <a href="http://www.technorati.com/tag/access"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/access.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/token">token</a> <a href="http://www.technorati.com/tag/token"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/token.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/oauth">oauth</a> <a href="http://www.technorati.com/tag/oauth"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/oauth.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/key">key</a> <a href="http://www.technorati.com/tag/key"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/key.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></description><content:encoded><![CDATA[<div><font color="#ff0000"><font size="4">This documentation is for TwitterOAuth library verision 0.1.x</font></font>.<br>If you are using trunk (0.2.x) these instructions will be wrong!</div><div><br>Try it out live: <a href="http://twitter.abrah.am" title="http://twitter.abrah.am">http://twitter.abrah.am</a><br> <br>Twitter OAuth is in beta and could change at any time. Feel free to contact me with bug/questions. A full TwitterOAuth lib will be released soon. Currently the code is hacked together and should not be used in production without proper testing.<br><h4><a name="Index_01788989463956403_390724"></a>Index</h4><div><ol><li><a href="https://docs.google.com/View?docID=dcf2dzzs_2339fzbfsf4#Index_01788989463956403_390724">Index</a></li><li><a href="https://docs.google.com/View?docID=dcf2dzzs_2339fzbfsf4#Definitions_9186197191046558_0_5683746400430577">Definitions</a></li><li><a href="https://docs.google.com/View?docID=dcf2dzzs_2339fzbfsf4#Get_the_code_0643188256037267__3852701616602482">Get the code</a></li><li><a href="https://docs.google.com/View?docID=dcf2dzzs_2339fzbfsf4#Process_overview_7986091704167">Process overview</a></li><li><a href="https://docs.google.com/View?docID=dcf2dzzs_2339fzbfsf4#Process_4555055271827706_12118">Process</a></li><li><a href="https://docs.google.com/View?docID=dcf2dzzs_2339fzbfsf4#Links_2049452824312611">Links</a></li></ol></div></div><h4><a name="Definitions_9186197191046558_0_5683746400430577"></a>Definitions</h4>Consumer: the application you are building. registered with twitter. Sometimes referred to as application<br><div><div>User: the user using your application.<br>Token: there are several different sets of tokens usually in key/secret  pairs.<br>Consumer token: the token pair Twitter gives you when you register an application.<br>Request token: the first token pair Twitter returns. used to build an authorize URL used to request the access token.<br>Access token: unique to user. Used to access users data.<br><h4><a name="Get_the_code_0643188256037267__3852701616602482"></a>Get the code</h4>Pull code from <a href="http://github.com/abraham/twitteroauth" title="http://github.com/abraham/twitteroauth">http://github.com/abraham/twitteroauth</a><br><div style="margin-left:40px;color:rgb(255, 0, 0)"><i>git clone git://github.com/</i>abraham<i>/twitteroauth.git </i></div><h4><a name="Process_overview_7986091704167"></a>Process overview</h4>This is a very simplistic overview of authenticating with Twitter's OAuth.<br><ol><li>Build TwitterOAuth object.<br></li><li>Request tokens from twitter.</li><li>Build authorize URL.</li><li>Send user to Twitter's authorize URL.</li><li>Get access tokens from twitter.</li><li>Rebuild TwitterOAuth object.<br></li><li>Query Twitter API with new access tokens.<br></li></ol><h4><a name="Process_4555055271827706_12118"></a>Process</h4>For this example we will be using the the index.php from the example folder and it will be located in the web root.<br><div style="margin-left:40px">public/index.php<br>public/twitteroauth/<br></div><br>Go to <a href="https://twitter.com/oauth_clients" title="https://twitter.com/oauth_clients">https://twitter.com/oauth_clients</a> and register a new application. Fill out what the form. For a callback URL we will be using http://example.com/index.php. Once registered you will get a consumer key and a consumer secret. Those go in index.php<br><br>Now we create a TwitterOAuth object. The class constructor chooses HMAC-SHA1 as the signature method, and builds a OAuthConsumer object with the app consumer key/secret. <br><div style="margin-left:40px;color:rgb(255, 0, 0)"><i>$to = new TwitterOAuth($consumer_key, $consumer_secret);</i></div><br>With that object we use curl to request a token from twitter. The API URL we hit is https://twitter.com/oauth/request_token. getRequestToken() pulls the tokens from twitter, parses it into an array, and creates a new OAuthConsumer object. <br><div style="margin-left:40px"><i style="color:rgb(255, 0, 0)">$tok = $to-&gt;getRequestToken();</i><br></div><br>Save the tokens for when the user returns from Twitter. <br><br>Set up the authorization URL. This is the URL the user will visit to tell twitter the application can access their data. https://twitter.com/oauth/authorize is used.<br><div style="margin-left:40px;color:rgb(255, 0, 0)"><i>$request_link = $to-&gt;getAuthorizeURL($token);</i></div><br>Once the user tells twitter yes and returns we request the access tokens. The access tokens can be thought of the users passwords and will be used to authenticate as them for future API calls. https://twitter.com/oauth/access_token is used. <br><div style="margin-left:40px"><i style="color:rgb(255, 0, 0)">$tok = $to-&gt;getAccessToken();</i><br></div><br>At this point you can check <a href="https://twitter.com/account/connections" title="https://twitter.com/account/connections">https://twitter.com/account/connections</a> and the application should be listed.<br><br>Build a new TwitterOAuth object using consumer key/secret and access key/secret.<br><div style="margin-left:40px"><i style="color:rgb(255, 0, 0)">$to = new TwitterOAuth($consumer_key, $consumer_secret, $user_access_key, $user_access_secret);</i><br></div><br>Now to interact with the API as the user to verify their credentials. This should return their profile. You can now save the access key/secret as being associated with the returned user info.<br><div style="margin-left:40px"><i style="background-color:rgb(255, 255, 255);color:rgb(255, 0, 0)">$content = $to-&gt;OAuthRequest(&#39;https://twitter.com/account/verify_credentials.xml&#39;, array(), &#39;GET&#39;);</i><br></div><br>To send a status update change the API URL and add a key/value array.<br><div style="margin-left:40px;color:rgb(255, 0, 0)"><i>$content = $to-&gt;OAuthRequest(&#39;https://twitter.com/statuses/update.xml&#39;, array(&#39;status&#39; =&gt; &#39;Test OAuth update. #testoauth&#39;), &#39;POST&#39;);</i></div><br>There you have it. Basic interaction with Twitter's OAuth beta. To run other commands just change the API URL and array() keys/values in the last call.<br><h4><a name="Links_2049452824312611"></a>Links</h4>My website: <a href="http://abrah.am" title="http://abrah.am">http://abrah.am</a><br>Twitter: <a href="http://twitter.com/" title="http://twitter.com">http://twitter.com</a><br>OAuth: <a href="http://oauth.net/">http://oauth.net</a><br>Twitter API docs: <a href="http://apiwiki.twitter.com" title="http://apiwiki.twitter.com">http://apiwiki.twitter.com</a><br>Twitter API discussion: <a href="http://groups.google.com/group/twitter-development-talk" title="http://groups.google.com/group/twitter-development-talk">http://groups.google.com/group/twitter-development-talk</a><br>Fire Eagle OAuth docs: <a href="http://fireeagle.yahoo.net/developer/documentation/php_walkthru">http://fireeagle.yahoo.net/developer/documentation/php_walkthru</a><br></div></div><br><br>Tags: <a href="http://www.croncast.com/keyg/twitter">twitter</a> <a href="http://www.technorati.com/tag/twitter"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/twitter.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/access">access</a> <a href="http://www.technorati.com/tag/access"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/access.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/token">token</a> <a href="http://www.technorati.com/tag/token"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/token.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/oauth">oauth</a> <a href="http://www.technorati.com/tag/oauth"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/oauth.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/key">key</a> <a href="http://www.technorati.com/tag/key"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/key.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></content:encoded>

         <pubDate>Mon, 08 Mar 2010 01:56:12 -0500</pubDate>         <guid isPermaLink="false">tag:croncast.com,6112</guid>

			<itunes:subtitle/>
      </item>
      <item>
         <title>Landmark Open Source Lawsuit Ends with Settlement</title>
         <link>http://newmedialaw.proskauer.com/2010/02/articles/open-source/landmark-open-source-lawsuit-ends-with-settlement/</link>
		 <category>Shared item</category>
			<description><![CDATA[<p>A dispute between a proprietary software company and the Java Model Railroad Interface (JMRI) open source project has ended with a settlement, the JRMI project <a href="http://jmri.sourceforge.net/k/Recent.shtml#2010-02-17">announced</a> on February 17. The dispute yielded a ruling in the United States Court of Appeals for the Federal Circuit (<a href="http://www.cafc.uscourts.gov/opinions/08-1001.pdf">Jacobsen v. Katzer</a>) that warmly endorsed the open source approach to software development. We <a href="http://newmedialaw.proskauer.com/2008/08/articles/copyright/federal-circuit-says-open-source-license-conditions-are-enforceable-as-copyright-condition/">blogged about that ruling </a>when it was issued in August 2008, referring to it as &quot;a highly significant opinion that will greatly bolster the efforts of  the open source community to control the use of open source software  according to the terms set out in open source licenses.&quot;</p>
<p>The matter was remanded by the Federal Circuit to the District Court, and, as we <a href="http://newmedialaw.proskauer.com/2009/12/articles/open-source/jacobsen-v-katzer-open-source-software-project-gains-key-rulings-in-copyright-infringement-litigation/">blogged in December</a>, several additional pre-trial rulings again favored the JMRI project, including a <a href="http://www.scribd.com/doc/24132830/Jacobsen-v-Katzer-12-10-09?secret_password=zgeizdk8h6phvqhwb4i">ruling </a>on the eligibility of software code that is distributed for free for copyright  infringement damages. The settlement was reached with a trial date on the not-too-distant horizon.</p>
<p>With the settlement, the Federal Circuit and District Court rulings will not be subject to direct appeal. Given the rarity of litigation over open source software, it seems unlikely that the reasoning of these two rulings will be questioned judicially in any other open source litigation for some time.</p>
<p>The settlement agreement is <a href="http://jmri.org/k/docket/402-1.pdf">here</a>, and the permanent injunction is <a href="http://jmri.org/k/docket/402-2.pdf">here</a>.</p>
<p>The <a href="http://jmri.sourceforge.net/k/Recent.shtml#2010-02-17">explanation of the settlement</a> on the JMRI site indicates that the proprietary software company has agreed, among other things, not to misuse the JMRI software at issue, or to register any domain names incorporating certain terms attributable to the JMRI project, and will make a payment of $100,000. Future disputes will be settled by mediation or arbitration.</p><br><br>Tags: <a href="http://www.croncast.com/keyg/open">open</a> <a href="http://www.technorati.com/tag/open"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/open.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/source">source</a> <a href="http://www.technorati.com/tag/source"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/source.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/software">software</a> <a href="http://www.technorati.com/tag/software"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/software.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/settlement">settlement</a> <a href="http://www.technorati.com/tag/settlement"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/settlement.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/jmri">jmri</a> <a href="http://www.technorati.com/tag/jmri"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/jmri.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></description><content:encoded><![CDATA[<p>A dispute between a proprietary software company and the Java Model Railroad Interface (JMRI) open source project has ended with a settlement, the JRMI project <a href="http://jmri.sourceforge.net/k/Recent.shtml#2010-02-17">announced</a> on February 17. The dispute yielded a ruling in the United States Court of Appeals for the Federal Circuit (<a href="http://www.cafc.uscourts.gov/opinions/08-1001.pdf">Jacobsen v. Katzer</a>) that warmly endorsed the open source approach to software development. We <a href="http://newmedialaw.proskauer.com/2008/08/articles/copyright/federal-circuit-says-open-source-license-conditions-are-enforceable-as-copyright-condition/">blogged about that ruling </a>when it was issued in August 2008, referring to it as &quot;a highly significant opinion that will greatly bolster the efforts of  the open source community to control the use of open source software  according to the terms set out in open source licenses.&quot;</p>
<p>The matter was remanded by the Federal Circuit to the District Court, and, as we <a href="http://newmedialaw.proskauer.com/2009/12/articles/open-source/jacobsen-v-katzer-open-source-software-project-gains-key-rulings-in-copyright-infringement-litigation/">blogged in December</a>, several additional pre-trial rulings again favored the JMRI project, including a <a href="http://www.scribd.com/doc/24132830/Jacobsen-v-Katzer-12-10-09?secret_password=zgeizdk8h6phvqhwb4i">ruling </a>on the eligibility of software code that is distributed for free for copyright  infringement damages. The settlement was reached with a trial date on the not-too-distant horizon.</p>
<p>With the settlement, the Federal Circuit and District Court rulings will not be subject to direct appeal. Given the rarity of litigation over open source software, it seems unlikely that the reasoning of these two rulings will be questioned judicially in any other open source litigation for some time.</p>
<p>The settlement agreement is <a href="http://jmri.org/k/docket/402-1.pdf">here</a>, and the permanent injunction is <a href="http://jmri.org/k/docket/402-2.pdf">here</a>.</p>
<p>The <a href="http://jmri.sourceforge.net/k/Recent.shtml#2010-02-17">explanation of the settlement</a> on the JMRI site indicates that the proprietary software company has agreed, among other things, not to misuse the JMRI software at issue, or to register any domain names incorporating certain terms attributable to the JMRI project, and will make a payment of $100,000. Future disputes will be settled by mediation or arbitration.</p><br><br>Tags: <a href="http://www.croncast.com/keyg/open">open</a> <a href="http://www.technorati.com/tag/open"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/open.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/source">source</a> <a href="http://www.technorati.com/tag/source"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/source.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/software">software</a> <a href="http://www.technorati.com/tag/software"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/software.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/settlement">settlement</a> <a href="http://www.technorati.com/tag/settlement"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/settlement.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/jmri">jmri</a> <a href="http://www.technorati.com/tag/jmri"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/jmri.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></content:encoded>

         <pubDate>Wed, 24 Feb 2010 21:04:38 -0500</pubDate>         <guid isPermaLink="false">tag:croncast.com,6098</guid>

			<itunes:subtitle/>
      </item>
      <item>
         <title>Clickthrough Agreement With Acknowledgement Checkbox Enforced--Scherillo v. Dun &amp;amp; Bradstreet</title>
         <link>http://blog.ericgoldman.org/archives/2010/02/clickthrough_ag_1.htm</link>
		 <category>Shared item</category>
			<description><![CDATA[<p>By Eric Goldman</p>

<p>Scherillo v. Dun &amp; Bradstreet, Inc., 2010 WL 537805 (E.D.N.Y. Feb. 17, 2010) </p>

<p>I teach my Cyberspace Law students that the most effective online contract formation process is a "mandatory non-leaky clickthrough agreement":</p>

<p>* mandatory = the user cannot proceed to the destination without going through a screen soliciting their consent to the user agreement.<br>
* non-leaky = there are no alternative ways the user can reach the destination.  I realize this is redundant with "mandatory," but I remind students that a seemingly mandatory process can have leaks.  For example, if customer support representatives will manually set up user accounts occasionally, the mandatory online process has become leaky because now a few users reached the destination without consenting to the agreement.<br>
* clickthrough = the user manifests assent to the contract by clicking, and the user is told that the click signifies assent.</p>

<p>There are other ways to form online contracts (e.g., email exchanges), but if executed properly, the mandatory non-leaky clickthrough process should do very well against contract formation challenges.  But even this description leaves open a number of user interaction judgments.  Does likelihood of contract formation vary if:</p>

<p>* the agreement terms are presented on the clickthrough page itself or are only available for review by hyperlink?<br>
* the agreement terms are presented in a scrollbox?  If a scrollbox is used, must the user be forced to scroll through the scrollbox?<br>
* the user is asked to check an additional box, such as a certification that the user has read the agreement?</p>

<p>In all of these cases, I believe the contract should be properly formed whether the answer to these questions is yes or no.  However, I'm now a fan of adding a bonus mandatory checkbox as part of the formation process after reading today's opinion.  A user mounts a sophisticated challenge to a mandatory non-leaky clickthrough process, and the bonus mandatory checkbox helps squelch the challenge.  I think the court would have enforced it without the checkbox, but it sure put the user in an awkward/untenable position.</p>

<p>Scherillo bought a financial report about a company from Dun &amp; Bradstreet&#39;s Small Business Solutions website.  Scherillo alleges that the report painted an overly rosy picture of the company, leading him to make bad investment decisions that cost him money when the company tanked.  Scherillo wants D&amp;B to cover his investment losses.</p>

<p>Scherillo is almost certain to lose on the merits.  Indeed, this case brought to mind one of the earliest cyberlaw cases, <a href="http://www.djblaw.com/cases/dowjones.php">Daniel v. Dow Jones</a>, 520 N.Y.S. 2d 334 (N.Y.C. Civ. Ct. Spec. Term 1987).  (This case is a fun read--see how the court discusses electronic networked communications almost a quarter-century ago).  That case involved Dow Jones' publication of an ambiguous report via a dial-up online service that led the plaintiff to make a bad investment decision.  The court said that any tort claim for publishing inaccurate information required the plaintiff to show that it had a "special relationship" (analogous to a fiduciary relationship) with the information vendor, and an ordinary customer-vendor relationship did not qualify as a special relationship.  </p>

<p>Interestingly, D&amp;B would rather hear the case in NJ rather than keep it in NY and hope to benefit from substantive NY law that surely would doom Scherillo&#39;s case.  (Perhaps NJ has a similar law).  To move the case to NJ, D&amp;B invoked the venue selection clause in its user agreement.  Let&#39;s look at the online contract formation process.  The court says:</p>

<p>"since 2007, the SBS website has included a page that requires users to register before purchasing a Dun and Bradstreet product ("the registration page"). On the registration page, users input information, including their e-mail address and name. The bottom quarter to third of the page contains a scrollable text box with the title "Terms and Conditions" [which contained a mandatory venue selection clause designating NJ].  Directly below this text box there is more text that reads: "I have read and AGREE to the terms and conditions shown above." Immediately adjacent to this text is a much smaller, empty box ("the terms and conditions check box"). Also at the bottom of the page is another box containing the phrase "Complete Registration" ("the Complete Registration box"). Clicking on this box completes the user's registration. McDonald testified that if a user clicks on the Complete Registration box without checking the terms and conditions check box, the user is unable to complete registration and is returned to the registration page."</p>

<p><a href="http://www.scribd.com/doc/27088683/Dun-Bradstreet-Registration-Screen-Shot">Check out the page yourself</a> as I saw it in Google Chrome on Feb. 18 (with cropping).  The formation process looks pretty standard to me.</p>

<p>Scherillo attacked the formation process by saying he never consented to the agreement because "it was possible for him to unknowingly and involuntarily 'check' the terms and conditions check box."  Not only that, he lined up Sean Chumura, "a cyberwarfare and computer forensics expert" who is also [LINK NSFW] <a href="http://docs.justia.com/cases/federal/district-courts/california/cacdce/2:2004cv09484/167815/479/0.pdf">helping Perfect 10 in its lawsuit against Google</a>, to testify that "it was possible for plaintiff, while 'tabbing' through the registration page, to inadvertently hit the space bar and thereby 'check' the terms and conditions box."</p>

<p>[Snarky paragraph alert] First, this may prove the adage that you can find an expert to testify about ANYTHING.  Second, Scherillo alleged $75k of investment losses.  For a low-value lawsuit like that, he needs a cyberwarfare expert???  Third, I believe Chumura has a <i><a href="http://www.myspace.com/500042741">MySpace page</a>.</i>  Really...?  I wonder if he uses an AOL.com email address too.  The MySpace page also reveals that its author appeared to attend <a href="http://www.nytimes.com/2004/08/29/nyregion/politics-how-do-you-spell-regret-one-man-s-take-on-it.html">the Dan Quayle school of spelling</a>.</p>

<p>OK, back to the case.  The judge was no more tolerant of this nonsense than I am.  He resolves the factual dispute by saying:</p>

<blockquote>even under plaintiff's theory--that, while "tabbing" through the fields on the registration page, he accidentally hit the space bar key and thereby "checked" the terms and conditions box--plaintiff would have seen the check mark appear in the box and then still would have had to hit the "return" key (or clicked the "complete registration" box with the mouse) to complete the registration and advance to the next screen. Plaintiff would have had an opportunity to see that he checked the box inadvertently before he then hit the return key on the "complete registration" box. Thus, to accept plaintiff's theory, the Court would have to find that plaintiff hit two keys accidentally-the space bar and the return key-and that he was then involuntarily and unexpectedly sent to the next screen where he nonetheless proceeded to enter his credit card information and complete the purchase of the report. This alleged chain of events is simply not credible.</blockquote>

<p>Therefore, Scherillo&#39;s click on the &quot;Complete Registration&quot; box manifested Scherillo&#39;s assent to the terms, even if Scherillo chose not to review them.  The court says that the fact that the terms were in a scrollbox is immaterial, and the fact that some sites require the user to scroll through the scrollbox before proceeding doesn&#39;t affect the effectiveness of D&amp;B&#39;s implementation.</p>

<p>I believe this court would have upheld the formation process even without the bonus checkbox, but you can see how the checkbox defused the withering assault of a cyberwarfare expert.  Thus, you might consider implementing the bonus checkbox to discourage similar silly attacks against your contract formation process in the future.</p><br><br>Tags: <a href="http://www.croncast.com/keyg/box">box</a> <a href="http://www.technorati.com/tag/box"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/box.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/user">user</a> <a href="http://www.technorati.com/tag/user"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/user.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/registration">registration</a> <a href="http://www.technorati.com/tag/registration"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/registration.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/page">page</a> <a href="http://www.technorati.com/tag/page"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/page.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/scherillo">scherillo</a> <a href="http://www.technorati.com/tag/scherillo"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/scherillo.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></description><content:encoded><![CDATA[<p>By Eric Goldman</p>

<p>Scherillo v. Dun &amp; Bradstreet, Inc., 2010 WL 537805 (E.D.N.Y. Feb. 17, 2010) </p>

<p>I teach my Cyberspace Law students that the most effective online contract formation process is a "mandatory non-leaky clickthrough agreement":</p>

<p>* mandatory = the user cannot proceed to the destination without going through a screen soliciting their consent to the user agreement.<br>
* non-leaky = there are no alternative ways the user can reach the destination.  I realize this is redundant with "mandatory," but I remind students that a seemingly mandatory process can have leaks.  For example, if customer support representatives will manually set up user accounts occasionally, the mandatory online process has become leaky because now a few users reached the destination without consenting to the agreement.<br>
* clickthrough = the user manifests assent to the contract by clicking, and the user is told that the click signifies assent.</p>

<p>There are other ways to form online contracts (e.g., email exchanges), but if executed properly, the mandatory non-leaky clickthrough process should do very well against contract formation challenges.  But even this description leaves open a number of user interaction judgments.  Does likelihood of contract formation vary if:</p>

<p>* the agreement terms are presented on the clickthrough page itself or are only available for review by hyperlink?<br>
* the agreement terms are presented in a scrollbox?  If a scrollbox is used, must the user be forced to scroll through the scrollbox?<br>
* the user is asked to check an additional box, such as a certification that the user has read the agreement?</p>

<p>In all of these cases, I believe the contract should be properly formed whether the answer to these questions is yes or no.  However, I'm now a fan of adding a bonus mandatory checkbox as part of the formation process after reading today's opinion.  A user mounts a sophisticated challenge to a mandatory non-leaky clickthrough process, and the bonus mandatory checkbox helps squelch the challenge.  I think the court would have enforced it without the checkbox, but it sure put the user in an awkward/untenable position.</p>

<p>Scherillo bought a financial report about a company from Dun &amp; Bradstreet&#39;s Small Business Solutions website.  Scherillo alleges that the report painted an overly rosy picture of the company, leading him to make bad investment decisions that cost him money when the company tanked.  Scherillo wants D&amp;B to cover his investment losses.</p>

<p>Scherillo is almost certain to lose on the merits.  Indeed, this case brought to mind one of the earliest cyberlaw cases, <a href="http://www.djblaw.com/cases/dowjones.php">Daniel v. Dow Jones</a>, 520 N.Y.S. 2d 334 (N.Y.C. Civ. Ct. Spec. Term 1987).  (This case is a fun read--see how the court discusses electronic networked communications almost a quarter-century ago).  That case involved Dow Jones' publication of an ambiguous report via a dial-up online service that led the plaintiff to make a bad investment decision.  The court said that any tort claim for publishing inaccurate information required the plaintiff to show that it had a "special relationship" (analogous to a fiduciary relationship) with the information vendor, and an ordinary customer-vendor relationship did not qualify as a special relationship.  </p>

<p>Interestingly, D&amp;B would rather hear the case in NJ rather than keep it in NY and hope to benefit from substantive NY law that surely would doom Scherillo&#39;s case.  (Perhaps NJ has a similar law).  To move the case to NJ, D&amp;B invoked the venue selection clause in its user agreement.  Let&#39;s look at the online contract formation process.  The court says:</p>

<p>"since 2007, the SBS website has included a page that requires users to register before purchasing a Dun and Bradstreet product ("the registration page"). On the registration page, users input information, including their e-mail address and name. The bottom quarter to third of the page contains a scrollable text box with the title "Terms and Conditions" [which contained a mandatory venue selection clause designating NJ].  Directly below this text box there is more text that reads: "I have read and AGREE to the terms and conditions shown above." Immediately adjacent to this text is a much smaller, empty box ("the terms and conditions check box"). Also at the bottom of the page is another box containing the phrase "Complete Registration" ("the Complete Registration box"). Clicking on this box completes the user's registration. McDonald testified that if a user clicks on the Complete Registration box without checking the terms and conditions check box, the user is unable to complete registration and is returned to the registration page."</p>

<p><a href="http://www.scribd.com/doc/27088683/Dun-Bradstreet-Registration-Screen-Shot">Check out the page yourself</a> as I saw it in Google Chrome on Feb. 18 (with cropping).  The formation process looks pretty standard to me.</p>

<p>Scherillo attacked the formation process by saying he never consented to the agreement because "it was possible for him to unknowingly and involuntarily 'check' the terms and conditions check box."  Not only that, he lined up Sean Chumura, "a cyberwarfare and computer forensics expert" who is also [LINK NSFW] <a href="http://docs.justia.com/cases/federal/district-courts/california/cacdce/2:2004cv09484/167815/479/0.pdf">helping Perfect 10 in its lawsuit against Google</a>, to testify that "it was possible for plaintiff, while 'tabbing' through the registration page, to inadvertently hit the space bar and thereby 'check' the terms and conditions box."</p>

<p>[Snarky paragraph alert] First, this may prove the adage that you can find an expert to testify about ANYTHING.  Second, Scherillo alleged $75k of investment losses.  For a low-value lawsuit like that, he needs a cyberwarfare expert???  Third, I believe Chumura has a <i><a href="http://www.myspace.com/500042741">MySpace page</a>.</i>  Really...?  I wonder if he uses an AOL.com email address too.  The MySpace page also reveals that its author appeared to attend <a href="http://www.nytimes.com/2004/08/29/nyregion/politics-how-do-you-spell-regret-one-man-s-take-on-it.html">the Dan Quayle school of spelling</a>.</p>

<p>OK, back to the case.  The judge was no more tolerant of this nonsense than I am.  He resolves the factual dispute by saying:</p>

<blockquote>even under plaintiff's theory--that, while "tabbing" through the fields on the registration page, he accidentally hit the space bar key and thereby "checked" the terms and conditions box--plaintiff would have seen the check mark appear in the box and then still would have had to hit the "return" key (or clicked the "complete registration" box with the mouse) to complete the registration and advance to the next screen. Plaintiff would have had an opportunity to see that he checked the box inadvertently before he then hit the return key on the "complete registration" box. Thus, to accept plaintiff's theory, the Court would have to find that plaintiff hit two keys accidentally-the space bar and the return key-and that he was then involuntarily and unexpectedly sent to the next screen where he nonetheless proceeded to enter his credit card information and complete the purchase of the report. This alleged chain of events is simply not credible.</blockquote>

<p>Therefore, Scherillo&#39;s click on the &quot;Complete Registration&quot; box manifested Scherillo&#39;s assent to the terms, even if Scherillo chose not to review them.  The court says that the fact that the terms were in a scrollbox is immaterial, and the fact that some sites require the user to scroll through the scrollbox before proceeding doesn&#39;t affect the effectiveness of D&amp;B&#39;s implementation.</p>

<p>I believe this court would have upheld the formation process even without the bonus checkbox, but you can see how the checkbox defused the withering assault of a cyberwarfare expert.  Thus, you might consider implementing the bonus checkbox to discourage similar silly attacks against your contract formation process in the future.</p><br><br>Tags: <a href="http://www.croncast.com/keyg/box">box</a> <a href="http://www.technorati.com/tag/box"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/box.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/user">user</a> <a href="http://www.technorati.com/tag/user"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/user.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/registration">registration</a> <a href="http://www.technorati.com/tag/registration"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/registration.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/page">page</a> <a href="http://www.technorati.com/tag/page"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/page.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/scherillo">scherillo</a> <a href="http://www.technorati.com/tag/scherillo"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/scherillo.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></content:encoded>

         <pubDate>Fri, 19 Feb 2010 19:28:41 -0500</pubDate>         <guid isPermaLink="false">tag:croncast.com,6076</guid>

			<itunes:subtitle/>
      </item>
      <item>
         <title>FBI calls for two year retention for ISP data</title>
         <link>http://go.theregister.com/feed/www.theregister.co.uk/2010/02/08/fbi_wiretap/</link>
		 <category>Shared item</category>
			<description><![CDATA[<h4>Origin and destination if you please sir</h4> <p>FBI director Robert Mueller is still keen to get US internet service providers to keep their customers' web logs for up to two years.</p><br><br>Tags: <a href="http://www.croncast.com/keyg/fbi">fbi</a> <a href="http://www.technorati.com/tag/fbi"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/fbi.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/service">service</a> <a href="http://www.technorati.com/tag/service"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/service.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/internet">internet</a> <a href="http://www.technorati.com/tag/internet"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/internet.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/keen">keen</a> <a href="http://www.technorati.com/tag/keen"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/keen.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/providers">providers</a> <a href="http://www.technorati.com/tag/providers"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/providers.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></description><content:encoded><![CDATA[<h4>Origin and destination if you please sir</h4> <p>FBI director Robert Mueller is still keen to get US internet service providers to keep their customers' web logs for up to two years.</p><br><br>Tags: <a href="http://www.croncast.com/keyg/fbi">fbi</a> <a href="http://www.technorati.com/tag/fbi"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/fbi.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/service">service</a> <a href="http://www.technorati.com/tag/service"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/service.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/internet">internet</a> <a href="http://www.technorati.com/tag/internet"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/internet.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/keen">keen</a> <a href="http://www.technorati.com/tag/keen"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/keen.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/providers">providers</a> <a href="http://www.technorati.com/tag/providers"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/providers.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></content:encoded>

         <pubDate>Mon, 08 Feb 2010 12:37:13 -0500</pubDate>         <guid isPermaLink="false">tag:croncast.com,6004</guid>

			<itunes:subtitle/>
      </item>
      <item>
         <title>Android Market VoIP by Fring</title>
         <link>http://www.techstartups.com/2009/11/24/android-market-voip-by-fring/</link>
		 <category>Shared item</category>
			<description><![CDATA[<p><em>By Senior Editor  Kris Smith (<a href="http://twitter.com/croncast">@croncast</a>)</em></p>
<p><a title="fring" rel="homepage" href="http://fring.com"><a rel="attachment wp-att-4654" href="http://www.techstartups.com/2009/11/24/android-market-voip-by-fring/picture-77/"><img style="margin-left:10px;margin-right:10px" title="Picture 77" src="http://www.techstartups.com/blog/wp-content/uploads/2009/11/Picture-77.png" alt="Picture 77" width="247" height="102"></a>Fring</a> is an Israel based startup that has been offering its signature <a title="Voice over Internet Protocol" rel="wikipedia" href="http://en.wikipedia.org/wiki/Voice_over_Internet_Protocol">VoIP</a> application for mobile devices is now available for <a title="Google" rel="homepage" href="http://google.com">Android</a> phones in the Android Market. Fring is an app that allows users to connect via popular chast and VoIP tools like <a title="Skype" rel="homepage" href="http://skype.com">Skype</a> and <a title="Google Talk" rel="homepage" href="http://www.google.com/talk/">Google Talk</a>.</p>
<p><strong><span></span></strong></p>
<p>It was first introduced a little over three years ago in beta for handsets that were running <a title="Symbian OS" rel="homepage" href="http://www.symbian.com">Symbian OS</a>. Since that time it has spread across the <a href="http://www.fring.com/versions/">other popular platforms</a> to gain a foothold in the instant messaging space on mobiles. Not to mention cornering VoIP though API development with some of the most popular internet based messaging software.</p>
<p>Fring allows users to aggregate their connections across networks and easily send text, photos, files and now video. And yes, like anything else being released today, Fring will allow you to tweet. Happy?</p>
<p>The two most robust platforms for using Fring are on Symbian 9 or higher and Windows Mobile phones.  The newest, Android, has a few features for now like text chat, mobile calling and personalization settings.</p>
<p>Using the application is fairly straight forward as you need to download and install for your phone, register and then wait for Fring to connect the together your networks and contacts. Once this step is done you can begin getting in touch with your posse(s) via your mobile.</p>
<p>I've had good luck with Fring when I needed to get in touch with a contact that I didn't have handy in my phone contacts and for Skype text based chats. Now that it is ready for the new kid, Android, I would suspect that more features like those for the iPhone will make their way into the app.</p>
<p>DISCLOSURE OF MATERIAL CONNECTION: <a href="http://cmp.ly/0">http://cmp.ly/0</a></p>
<div style="margin-top:10px;height:15px"><a title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/1693d07e-5476-466c-aba5-448b679aa4ba/"><img style="border:medium none;float:right" src="http://img.zemanta.com/reblog_e.png?x-id=1693d07e-5476-466c-aba5-448b679aa4ba" alt="Reblog this post [with Zemanta]"></a><span></span></div>
<p><a href="http://www.techstartups.com/2009/11/24/android-market-voip-by-fring/">Android Market VoIP by Fring</a> is a post from: <a href="http://www.techstartups.com">TechStartups.com</a></p>
<br><br>Tags: <a style="display:inline" href="http://www.techstartups.com/tag/android/" rel="tag">Android</a> <a style="display:inline" href="http://www.techstartups.com/tag/android/feed" rel="tag"><img style="display:inline" src="http://lokwat.com/wp-content/themes/blue-dream/images/rss.gif" border="0"></a>, <a style="display:inline" href="http://www.techstartups.com/tag/droid-voip/" rel="tag">Droid VoIP</a> <a style="display:inline" href="http://www.techstartups.com/tag/droid-voip/feed" rel="tag"><img style="display:inline" src="http://lokwat.com/wp-content/themes/blue-dream/images/rss.gif" border="0"></a>, <a style="display:inline" href="http://www.techstartups.com/tag/fring/" rel="tag">Fring</a> <a style="display:inline" href="http://www.techstartups.com/tag/fring/feed" rel="tag"><img style="display:inline" src="http://lokwat.com/wp-content/themes/blue-dream/images/rss.gif" border="0"></a>, <a style="display:inline" href="http://www.techstartups.com/tag/google-talk-iphone/" rel="tag">Google Talk iPhone</a> <a style="display:inline" href="http://www.techstartups.com/tag/google-talk-iphone/feed" rel="tag"><img style="display:inline" src="http://lokwat.com/wp-content/themes/blue-dream/images/rss.gif" border="0"></a>, <a style="display:inline" href="http://www.techstartups.com/tag/iphone/" rel="tag">iPhone</a> <a style="display:inline" href="http://www.techstartups.com/tag/iphone/feed" rel="tag"><img style="display:inline" src="http://lokwat.com/wp-content/themes/blue-dream/images/rss.gif" border="0"></a>, <a style="display:inline" href="http://www.techstartups.com/tag/israeli-startup/" rel="tag">Israeli startup</a> <a style="display:inline" href="http://www.techstartups.com/tag/israeli-startup/feed" rel="tag"><img style="display:inline" src="http://lokwat.com/wp-content/themes/blue-dream/images/rss.gif" border="0"></a>, <a style="display:inline" href="http://www.techstartups.com/tag/symbian-os/" rel="tag">symbian OS</a> <a style="display:inline" href="http://www.techstartups.com/tag/symbian-os/feed" rel="tag"><img style="display:inline" src="http://lokwat.com/wp-content/themes/blue-dream/images/rss.gif" border="0"></a>, <a style="display:inline" href="http://www.techstartups.com/tag/windows-mobile/" rel="tag">Windows Mobile</a> <a style="display:inline" href="http://www.techstartups.com/tag/windows-mobile/feed" rel="tag"><img style="display:inline" src="http://lokwat.com/wp-content/themes/blue-dream/images/rss.gif" border="0"></a><br><br><br><br>Tags: <a href="http://www.croncast.com/keyg/fring">fring</a> <a href="http://www.technorati.com/tag/fring"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/fring.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/android">android</a> <a href="http://www.technorati.com/tag/android"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/android.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/voip">voip</a> <a href="http://www.technorati.com/tag/voip"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/voip.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/mobile">mobile</a> <a href="http://www.technorati.com/tag/mobile"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/mobile.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/text">text</a> <a href="http://www.technorati.com/tag/text"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/text.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></description><content:encoded><![CDATA[<p><em>By Senior Editor  Kris Smith (<a href="http://twitter.com/croncast">@croncast</a>)</em></p>
<p><a title="fring" rel="homepage" href="http://fring.com"><a rel="attachment wp-att-4654" href="http://www.techstartups.com/2009/11/24/android-market-voip-by-fring/picture-77/"><img style="margin-left:10px;margin-right:10px" title="Picture 77" src="http://www.techstartups.com/blog/wp-content/uploads/2009/11/Picture-77.png" alt="Picture 77" width="247" height="102"></a>Fring</a> is an Israel based startup that has been offering its signature <a title="Voice over Internet Protocol" rel="wikipedia" href="http://en.wikipedia.org/wiki/Voice_over_Internet_Protocol">VoIP</a> application for mobile devices is now available for <a title="Google" rel="homepage" href="http://google.com">Android</a> phones in the Android Market. Fring is an app that allows users to connect via popular chast and VoIP tools like <a title="Skype" rel="homepage" href="http://skype.com">Skype</a> and <a title="Google Talk" rel="homepage" href="http://www.google.com/talk/">Google Talk</a>.</p>
<p><strong><span></span></strong></p>
<p>It was first introduced a little over three years ago in beta for handsets that were running <a title="Symbian OS" rel="homepage" href="http://www.symbian.com">Symbian OS</a>. Since that time it has spread across the <a href="http://www.fring.com/versions/">other popular platforms</a> to gain a foothold in the instant messaging space on mobiles. Not to mention cornering VoIP though API development with some of the most popular internet based messaging software.</p>
<p>Fring allows users to aggregate their connections across networks and easily send text, photos, files and now video. And yes, like anything else being released today, Fring will allow you to tweet. Happy?</p>
<p>The two most robust platforms for using Fring are on Symbian 9 or higher and Windows Mobile phones.  The newest, Android, has a few features for now like text chat, mobile calling and personalization settings.</p>
<p>Using the application is fairly straight forward as you need to download and install for your phone, register and then wait for Fring to connect the together your networks and contacts. Once this step is done you can begin getting in touch with your posse(s) via your mobile.</p>
<p>I've had good luck with Fring when I needed to get in touch with a contact that I didn't have handy in my phone contacts and for Skype text based chats. Now that it is ready for the new kid, Android, I would suspect that more features like those for the iPhone will make their way into the app.</p>
<p>DISCLOSURE OF MATERIAL CONNECTION: <a href="http://cmp.ly/0">http://cmp.ly/0</a></p>
<div style="margin-top:10px;height:15px"><a title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/1693d07e-5476-466c-aba5-448b679aa4ba/"><img style="border:medium none;float:right" src="http://img.zemanta.com/reblog_e.png?x-id=1693d07e-5476-466c-aba5-448b679aa4ba" alt="Reblog this post [with Zemanta]"></a><span></span></div>
<p><a href="http://www.techstartups.com/2009/11/24/android-market-voip-by-fring/">Android Market VoIP by Fring</a> is a post from: <a href="http://www.techstartups.com">TechStartups.com</a></p>
<br><br>Tags: <a style="display:inline" href="http://www.techstartups.com/tag/android/" rel="tag">Android</a> <a style="display:inline" href="http://www.techstartups.com/tag/android/feed" rel="tag"><img style="display:inline" src="http://lokwat.com/wp-content/themes/blue-dream/images/rss.gif" border="0"></a>, <a style="display:inline" href="http://www.techstartups.com/tag/droid-voip/" rel="tag">Droid VoIP</a> <a style="display:inline" href="http://www.techstartups.com/tag/droid-voip/feed" rel="tag"><img style="display:inline" src="http://lokwat.com/wp-content/themes/blue-dream/images/rss.gif" border="0"></a>, <a style="display:inline" href="http://www.techstartups.com/tag/fring/" rel="tag">Fring</a> <a style="display:inline" href="http://www.techstartups.com/tag/fring/feed" rel="tag"><img style="display:inline" src="http://lokwat.com/wp-content/themes/blue-dream/images/rss.gif" border="0"></a>, <a style="display:inline" href="http://www.techstartups.com/tag/google-talk-iphone/" rel="tag">Google Talk iPhone</a> <a style="display:inline" href="http://www.techstartups.com/tag/google-talk-iphone/feed" rel="tag"><img style="display:inline" src="http://lokwat.com/wp-content/themes/blue-dream/images/rss.gif" border="0"></a>, <a style="display:inline" href="http://www.techstartups.com/tag/iphone/" rel="tag">iPhone</a> <a style="display:inline" href="http://www.techstartups.com/tag/iphone/feed" rel="tag"><img style="display:inline" src="http://lokwat.com/wp-content/themes/blue-dream/images/rss.gif" border="0"></a>, <a style="display:inline" href="http://www.techstartups.com/tag/israeli-startup/" rel="tag">Israeli startup</a> <a style="display:inline" href="http://www.techstartups.com/tag/israeli-startup/feed" rel="tag"><img style="display:inline" src="http://lokwat.com/wp-content/themes/blue-dream/images/rss.gif" border="0"></a>, <a style="display:inline" href="http://www.techstartups.com/tag/symbian-os/" rel="tag">symbian OS</a> <a style="display:inline" href="http://www.techstartups.com/tag/symbian-os/feed" rel="tag"><img style="display:inline" src="http://lokwat.com/wp-content/themes/blue-dream/images/rss.gif" border="0"></a>, <a style="display:inline" href="http://www.techstartups.com/tag/windows-mobile/" rel="tag">Windows Mobile</a> <a style="display:inline" href="http://www.techstartups.com/tag/windows-mobile/feed" rel="tag"><img style="display:inline" src="http://lokwat.com/wp-content/themes/blue-dream/images/rss.gif" border="0"></a><br><br><br><br>Tags: <a href="http://www.croncast.com/keyg/fring">fring</a> <a href="http://www.technorati.com/tag/fring"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/fring.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/android">android</a> <a href="http://www.technorati.com/tag/android"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/android.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/voip">voip</a> <a href="http://www.technorati.com/tag/voip"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/voip.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/mobile">mobile</a> <a href="http://www.technorati.com/tag/mobile"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/mobile.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/text">text</a> <a href="http://www.technorati.com/tag/text"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/text.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></content:encoded>

         <pubDate>Tue, 24 Nov 2009 16:51:41 -0500</pubDate>         <guid isPermaLink="false">tag:croncast.com,5777</guid>

			<itunes:subtitle/>
      </item>
      <item>
         <title>If Newspapers Were Stores, Would Visitors Be Worthless Then?</title>
         <link>http://feeds.daggle.com/~r/daggle/~3/NyxV-1cj8ok/newspapers-stores-visitors-worthless-1519</link>
		 <category>Shared item</category>
			<description><![CDATA[<p></p><div style="float:right"><table border="0" bgcolor="#ffffff"> <td></td> <td></td></table></div><p>As the <a href="http://searchengineland.com/more-papers-join-murdochs-google-block-party-30464">war of words ramps up</a> between Google and some news publishers, the latest spin seems to be how worthless the traffic is that Google sends. In reality, the traffic probably does have value, but the newspapers are likely doing a terrible job of monetizing it.</p>
<p>I'll give some examples in a minute, but how about an imaginary story to illustrate the problem?</p>
<p>Let's say a newspaper executive opens a store. They put some story headlines up in their shop window.</p>
<p>Now one of those old fashioned newskids comes along. You know, the type that you'd see in movies selling papers on the street. Let's call the kid Google.</p>
<p>Google reads the headlines and then scampers off down the street, shouting out to people things like Senate's debating health care! or 1 out of 4 homeowners are in the red!</p>
<p>Some of these people are interested. They ask this Google kid for more information, and Google sends them back to the news store.</p>
<p>At the store, the news exec owner greets visitors by asking them what the hell they want. Perplexed, they visitors say they heard about these stories and wanted to know more. The exec shouts at them. Get the hell out of my store, you freeloader! This is for members-only. We don't need riff-raff like you in here.</p>
<p>That's a hell of a way to run a business, don't you think? But it's pretty much how News Corporation execs seem to view the world. Consider what News Corp digital chief Jonathan Miller <a href="http://www.telegraph.co.uk/finance/newsbysector/mediatechnologyandtelecoms/digital-media/6559694/Rupert-Murdoch-to-remove-News-Corps-content-from-Google-in-months.html">said</a> earlier this month:</p>
<blockquote><p>The traffic which comes in from Google brings a consumer who more often than not read one article and then leaves the site. That is the least valuable of traffic to us the economic impact [of not having content indexed by Google] is not as great as you might think. You can survive without it.</p>
</blockquote>
<p>Today, we got similar remarks from James Moroney, executive vice president of A.H. Belo, which publishes the Dallas Morning News and <a href="http://www.ahbelo.com/companies/">other</a> papers:</p>
<blockquote><p>This is traffic that's not being monetized to any great degree, Moroney said. It's akin to a person who drops into town, buys one copy of your newspaper and leaves town again and yet you spend a whole bunch of time building your business around that type of customer.</p>
</blockquote>
<p>Let's be clear about one reason why these statements are coming out. This is round two against Google. In round one, some publishers said Google steals our content. Google's response was that it sends them millions of visitors for free. So in round two, it's time to make out like those visitors aren't worth much. That's especially important if you're an executive who, after floating the idea of dropping Google, comes under attack as stupidly cutting your own throat.</p>
<p>Me, I see visitors as opportunities. This is the internet, where you can tell far more about a visitor to your web site than you can in print. You can tell:</p>
<ul>
<li>They're visiting for the first time or on a repeat basis</li>
<li>They came from Google</li>
<li>They came from a specific page, or using specific search terms</li>
<li>The geographic area they're located in</li>
</ul>
<p>And the visitor who buys your paper printed on a dead tree out of a newsstand? You can tell you sold a copy. And that's it. That regular subscriber? You know they live in a particular area, maybe some demographic info, but you can't custom your dead tree version in any way to target for that.</p>
<p>Can you imagine what would happen if the Wall Street Journal did a one time promotion where for a day, they gave away 1 million copies of their paper? Since there's a real cost to doing so, don't you think they'd figure out a way to make that promotion count? They'd sell special ads? They'd have a super attractive subscription offer?</p>
<p>But on the internet, where they're not paying anything for all that traffic flowing from Google, there just doesn't seem to be any effort. Millions of people are just written off as worthless. If they're watching The Simpsons on Murdoch's Fox TV network, they're valuable (see <a title="Permanent link to Free Isn't A Four-Letter Word Offline, So Why Does The Media Hate It Online?" rel="bookmark" href="http://daggle.com/free-fourletter-word-offline-media-hate-online-1247">Free Isn't A Four-Letter Word Offline, So Why Does The Media Hate It Online?</a>). Put the exact same people on the internet, and suddenly they're <a href="http://daggle.com/dear-wsj-avoid-google-disease-put-condom-content-1451">net neaderthals</a>.</p>
<p>The problem isn't with the people. They didn't suddenly change when sitting in front of a computer keyboard. They don't suddenly have less money. They aren't suddenly less attractive marketing prospects. The problem is with how you're targeting them.</p>
<p>Remember what Miller said? That most of these visitors read a story once and then leave? Well, clearly the WSJ has some analytics running to understand that. Someone, somewhere has churned a report to arm Miller with that information. But that same data can be used to target those visitors better.</p>
<p>Time for a real life example. Today, at lunch, in the hard copy of the Wall Street Journal that I pay $100 per year for, I read a <a href="http://news.google.com/news/url?sa=t&amp;ct2=us%2F8_0_s_4_0_t&amp;usg=AFQjCNGMZW5LBeJazPrOUF_xAWrglSIIuQ&amp;cid=1476563015&amp;ei=FXIMS4DwLoTqlQS06t-dAg&amp;rt=HOMEPAGE&amp;vm=STANDARD&amp;url=http%3A%2F%2Feurope.wsj.com%2Farticle%2FSB125903489722661849.html%3Fmod%3Drss_Today%2527s_Most_Popular">story</a> bout how 1 in 4 US homeowners are underwater or owing more than their homes are worth.</p>
<p>I guess I have at least $100 per year in value to the Wall Street Journal, since I'm a subscriber. But that's gross revenue. Someone's being paid to deliver the hard copy to my door. There are print costs involved with producing it. I doubt the $100 I pay per year covers all that. But the WSJ also convinces advertisers that I'm somehow valuable to them, which is why they pay to place quality ads in the WSJ like this in front of me:</p>
<p><a title="WSJ Ad by dannysullivan, on Flickr" href="http://www.flickr.com/photos/dannysullivan/4131680073/"><img src="http://farm3.static.flickr.com/2579/4131680073_777deeace0.jpg" alt="WSJ Ad" width="375" height="500"></a></p>
<p>Now that same story is currently being featured on Google. The minute I click from Google to read it, I'm transformed. My $100 per year value is lost. Instead, I become one of those people who Miller says that he doesn't make any money from.</p>
<p>Well, let's see what I get:</p>
<p><a title="WSJ &amp; Monetization by dannysullivan, on Flickr" href="http://www.flickr.com/photos/dannysullivan/4132443442/"><img src="http://farm3.static.flickr.com/2513/4132443442_fc9bbce2f4.jpg" alt="WSJ &amp; Monetization" width="500" height="456"></a></p>
<p>That's the beginning of the story. It is EXACTLY the same thing I see if I read this story by clicking through to it from a link on the WSJ's home page (they've made it free to anyone from there). It's also the same thing I see when I'm logged in using my paid account.</p>
<p>Why is the WSJ treating the one-time / first-time visitor the same way as a regular reader? See those two big arrows I've drawn pointing into the story? I'm pointing out that one of the top goals the WSJ would have for  first time visitors is to get them to take that 2 week free offer to subscribe or to take one of the free stay connected via email or RSS options. And yet, these things are shoved off to the top and side of the page.</p>
<p>Place them in front of the reader! At worst, you lose nothing. But more likely, you've slightly interrupted one of those freeloaders in the same way you interrupt them when they watch News Corp TV shows and get commercials. And more of them will convert. They may buy more subscriptions, or they may register so you can do outreach marketing to them.</p>
<p>Meanwhile, money IS being made, even off the supposed freeloaders. There's a big ad sitting there off to the site, plus another one right above. Oh, there's too much ad inventory? Then find a way to convince your advertisers to buy more ads or pay more for them, which probably means showing that your ads perform well. And if they're not performing well, fix your problem. Why aren't they?</p>
<p>This is an article about mortgage owners being underwater. Can we assume some of the readers are attracted to it because they may want help with their mortgages? Are there no companies that offer this to type of service? Are there no ad execs who could figure out how to reach them?</p>
<p>Instead, I get served with an ad from Zurich about how to buy the right insurance for my business. Seriously? That's the ad you show me? This is targeting? Roll out one of those Get a mortgage for below 5% ads that I see offline everywhere.</p>
<p>Even better, here's another ad that also shows for this article:</p>
<p><a title="Buy A Dream, If You Can Afford It by dannysullivan, on Flickr" href="http://www.flickr.com/photos/dannysullivan/4132443516/"><img src="http://farm3.static.flickr.com/2504/4132443516_a40211ff86_o.png" alt="Buy A Dream, If You Can Afford It" width="337" height="289"></a></p>
<p>Yeah, in an article about how people can't afford their homes, you show me an ad about buying an iconic residential masterpiece in Boca Raton. And when I don't click on that, because it has nothing to do with my interests, you call me a freeloader.</p>
<p>Your loss, I think. I've got money to spend. Plenty of your visitors do. You're just not figuring out how to get it from me.</p>
<p>That visitor from Google? Show them a completely different experience, if you want. Article and ad, perhaps embedded within the content (labeled as ads, but inline, rather than off to the side). Please, go hire someone like <a href="http://www.shoemoney.com/">Jeremy Shoemaker</a> or <a href="http://www.jensense.com/">Jennifer Slegg</a>, both of whom live and breathe how to make as much money out of visitors as possible.</p>
<p>Do something. Anything. Please. Survive. But there's one thing you shouldn't do. Blame others for sending you visitors and not figuring out how to make money off of them.</p>
<p><iframe src="http://feedads.g.doubleclick.net/~ah/f/8c5s7n1lu0vjtbdukkpvujv1m4/300/250?ca=1&amp;fh=280#http%3A%2F%2Fdaggle.com%2Fnewspapers-stores-visitors-worthless-1519" width="100%" height="280" frameborder="0" scrolling="no" marginwidth="0" marginheight="0"></iframe></p><div>
<a href="http://feeds.daggle.com/~ff/daggle?a=NyxV-1cj8ok:m9wcCSNfFpo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/daggle?d=yIl2AUoC8zA" border="0"></a> <a href="http://feeds.daggle.com/~ff/daggle?a=NyxV-1cj8ok:m9wcCSNfFpo:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/daggle?i=NyxV-1cj8ok:m9wcCSNfFpo:F7zBnMyn0Lo" border="0"></a> <a href="http://feeds.daggle.com/~ff/daggle?a=NyxV-1cj8ok:m9wcCSNfFpo:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/daggle?i=NyxV-1cj8ok:m9wcCSNfFpo:V_sGLiPBpWU" border="0"></a> <a href="http://feeds.daggle.com/~ff/daggle?a=NyxV-1cj8ok:m9wcCSNfFpo:Gu391qSwH_A"><img src="http://feeds.feedburner.com/~ff/daggle?d=Gu391qSwH_A" border="0"></a>
</div><img src="http://feeds.feedburner.com/~r/daggle/~4/NyxV-1cj8ok" height="1" width="1"><br><br>Tags: <a href="http://www.croncast.com/keyg/google">google</a> <a href="http://www.technorati.com/tag/google"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/google.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/visitors">visitors</a> <a href="http://www.technorati.com/tag/visitors"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/visitors.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/story">story</a> <a href="http://www.technorati.com/tag/story"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/story.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/ad">ad</a> <a href="http://www.technorati.com/tag/ad"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/ad.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/news">news</a> <a href="http://www.technorati.com/tag/news"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/news.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></description><content:encoded><![CDATA[<p></p><div style="float:right"><table border="0" bgcolor="#ffffff"> <td></td> <td></td></table></div><p>As the <a href="http://searchengineland.com/more-papers-join-murdochs-google-block-party-30464">war of words ramps up</a> between Google and some news publishers, the latest spin seems to be how worthless the traffic is that Google sends. In reality, the traffic probably does have value, but the newspapers are likely doing a terrible job of monetizing it.</p>
<p>I'll give some examples in a minute, but how about an imaginary story to illustrate the problem?</p>
<p>Let's say a newspaper executive opens a store. They put some story headlines up in their shop window.</p>
<p>Now one of those old fashioned newskids comes along. You know, the type that you'd see in movies selling papers on the street. Let's call the kid Google.</p>
<p>Google reads the headlines and then scampers off down the street, shouting out to people things like Senate's debating health care! or 1 out of 4 homeowners are in the red!</p>
<p>Some of these people are interested. They ask this Google kid for more information, and Google sends them back to the news store.</p>
<p>At the store, the news exec owner greets visitors by asking them what the hell they want. Perplexed, they visitors say they heard about these stories and wanted to know more. The exec shouts at them. Get the hell out of my store, you freeloader! This is for members-only. We don't need riff-raff like you in here.</p>
<p>That's a hell of a way to run a business, don't you think? But it's pretty much how News Corporation execs seem to view the world. Consider what News Corp digital chief Jonathan Miller <a href="http://www.telegraph.co.uk/finance/newsbysector/mediatechnologyandtelecoms/digital-media/6559694/Rupert-Murdoch-to-remove-News-Corps-content-from-Google-in-months.html">said</a> earlier this month:</p>
<blockquote><p>The traffic which comes in from Google brings a consumer who more often than not read one article and then leaves the site. That is the least valuable of traffic to us the economic impact [of not having content indexed by Google] is not as great as you might think. You can survive without it.</p>
</blockquote>
<p>Today, we got similar remarks from James Moroney, executive vice president of A.H. Belo, which publishes the Dallas Morning News and <a href="http://www.ahbelo.com/companies/">other</a> papers:</p>
<blockquote><p>This is traffic that's not being monetized to any great degree, Moroney said. It's akin to a person who drops into town, buys one copy of your newspaper and leaves town again and yet you spend a whole bunch of time building your business around that type of customer.</p>
</blockquote>
<p>Let's be clear about one reason why these statements are coming out. This is round two against Google. In round one, some publishers said Google steals our content. Google's response was that it sends them millions of visitors for free. So in round two, it's time to make out like those visitors aren't worth much. That's especially important if you're an executive who, after floating the idea of dropping Google, comes under attack as stupidly cutting your own throat.</p>
<p>Me, I see visitors as opportunities. This is the internet, where you can tell far more about a visitor to your web site than you can in print. You can tell:</p>
<ul>
<li>They're visiting for the first time or on a repeat basis</li>
<li>They came from Google</li>
<li>They came from a specific page, or using specific search terms</li>
<li>The geographic area they're located in</li>
</ul>
<p>And the visitor who buys your paper printed on a dead tree out of a newsstand? You can tell you sold a copy. And that's it. That regular subscriber? You know they live in a particular area, maybe some demographic info, but you can't custom your dead tree version in any way to target for that.</p>
<p>Can you imagine what would happen if the Wall Street Journal did a one time promotion where for a day, they gave away 1 million copies of their paper? Since there's a real cost to doing so, don't you think they'd figure out a way to make that promotion count? They'd sell special ads? They'd have a super attractive subscription offer?</p>
<p>But on the internet, where they're not paying anything for all that traffic flowing from Google, there just doesn't seem to be any effort. Millions of people are just written off as worthless. If they're watching The Simpsons on Murdoch's Fox TV network, they're valuable (see <a title="Permanent link to Free Isn't A Four-Letter Word Offline, So Why Does The Media Hate It Online?" rel="bookmark" href="http://daggle.com/free-fourletter-word-offline-media-hate-online-1247">Free Isn't A Four-Letter Word Offline, So Why Does The Media Hate It Online?</a>). Put the exact same people on the internet, and suddenly they're <a href="http://daggle.com/dear-wsj-avoid-google-disease-put-condom-content-1451">net neaderthals</a>.</p>
<p>The problem isn't with the people. They didn't suddenly change when sitting in front of a computer keyboard. They don't suddenly have less money. They aren't suddenly less attractive marketing prospects. The problem is with how you're targeting them.</p>
<p>Remember what Miller said? That most of these visitors read a story once and then leave? Well, clearly the WSJ has some analytics running to understand that. Someone, somewhere has churned a report to arm Miller with that information. But that same data can be used to target those visitors better.</p>
<p>Time for a real life example. Today, at lunch, in the hard copy of the Wall Street Journal that I pay $100 per year for, I read a <a href="http://news.google.com/news/url?sa=t&amp;ct2=us%2F8_0_s_4_0_t&amp;usg=AFQjCNGMZW5LBeJazPrOUF_xAWrglSIIuQ&amp;cid=1476563015&amp;ei=FXIMS4DwLoTqlQS06t-dAg&amp;rt=HOMEPAGE&amp;vm=STANDARD&amp;url=http%3A%2F%2Feurope.wsj.com%2Farticle%2FSB125903489722661849.html%3Fmod%3Drss_Today%2527s_Most_Popular">story</a> bout how 1 in 4 US homeowners are underwater or owing more than their homes are worth.</p>
<p>I guess I have at least $100 per year in value to the Wall Street Journal, since I'm a subscriber. But that's gross revenue. Someone's being paid to deliver the hard copy to my door. There are print costs involved with producing it. I doubt the $100 I pay per year covers all that. But the WSJ also convinces advertisers that I'm somehow valuable to them, which is why they pay to place quality ads in the WSJ like this in front of me:</p>
<p><a title="WSJ Ad by dannysullivan, on Flickr" href="http://www.flickr.com/photos/dannysullivan/4131680073/"><img src="http://farm3.static.flickr.com/2579/4131680073_777deeace0.jpg" alt="WSJ Ad" width="375" height="500"></a></p>
<p>Now that same story is currently being featured on Google. The minute I click from Google to read it, I'm transformed. My $100 per year value is lost. Instead, I become one of those people who Miller says that he doesn't make any money from.</p>
<p>Well, let's see what I get:</p>
<p><a title="WSJ &amp; Monetization by dannysullivan, on Flickr" href="http://www.flickr.com/photos/dannysullivan/4132443442/"><img src="http://farm3.static.flickr.com/2513/4132443442_fc9bbce2f4.jpg" alt="WSJ &amp; Monetization" width="500" height="456"></a></p>
<p>That's the beginning of the story. It is EXACTLY the same thing I see if I read this story by clicking through to it from a link on the WSJ's home page (they've made it free to anyone from there). It's also the same thing I see when I'm logged in using my paid account.</p>
<p>Why is the WSJ treating the one-time / first-time visitor the same way as a regular reader? See those two big arrows I've drawn pointing into the story? I'm pointing out that one of the top goals the WSJ would have for  first time visitors is to get them to take that 2 week free offer to subscribe or to take one of the free stay connected via email or RSS options. And yet, these things are shoved off to the top and side of the page.</p>
<p>Place them in front of the reader! At worst, you lose nothing. But more likely, you've slightly interrupted one of those freeloaders in the same way you interrupt them when they watch News Corp TV shows and get commercials. And more of them will convert. They may buy more subscriptions, or they may register so you can do outreach marketing to them.</p>
<p>Meanwhile, money IS being made, even off the supposed freeloaders. There's a big ad sitting there off to the site, plus another one right above. Oh, there's too much ad inventory? Then find a way to convince your advertisers to buy more ads or pay more for them, which probably means showing that your ads perform well. And if they're not performing well, fix your problem. Why aren't they?</p>
<p>This is an article about mortgage owners being underwater. Can we assume some of the readers are attracted to it because they may want help with their mortgages? Are there no companies that offer this to type of service? Are there no ad execs who could figure out how to reach them?</p>
<p>Instead, I get served with an ad from Zurich about how to buy the right insurance for my business. Seriously? That's the ad you show me? This is targeting? Roll out one of those Get a mortgage for below 5% ads that I see offline everywhere.</p>
<p>Even better, here's another ad that also shows for this article:</p>
<p><a title="Buy A Dream, If You Can Afford It by dannysullivan, on Flickr" href="http://www.flickr.com/photos/dannysullivan/4132443516/"><img src="http://farm3.static.flickr.com/2504/4132443516_a40211ff86_o.png" alt="Buy A Dream, If You Can Afford It" width="337" height="289"></a></p>
<p>Yeah, in an article about how people can't afford their homes, you show me an ad about buying an iconic residential masterpiece in Boca Raton. And when I don't click on that, because it has nothing to do with my interests, you call me a freeloader.</p>
<p>Your loss, I think. I've got money to spend. Plenty of your visitors do. You're just not figuring out how to get it from me.</p>
<p>That visitor from Google? Show them a completely different experience, if you want. Article and ad, perhaps embedded within the content (labeled as ads, but inline, rather than off to the side). Please, go hire someone like <a href="http://www.shoemoney.com/">Jeremy Shoemaker</a> or <a href="http://www.jensense.com/">Jennifer Slegg</a>, both of whom live and breathe how to make as much money out of visitors as possible.</p>
<p>Do something. Anything. Please. Survive. But there's one thing you shouldn't do. Blame others for sending you visitors and not figuring out how to make money off of them.</p>
<p><iframe src="http://feedads.g.doubleclick.net/~ah/f/8c5s7n1lu0vjtbdukkpvujv1m4/300/250?ca=1&amp;fh=280#http%3A%2F%2Fdaggle.com%2Fnewspapers-stores-visitors-worthless-1519" width="100%" height="280" frameborder="0" scrolling="no" marginwidth="0" marginheight="0"></iframe></p><div>
<a href="http://feeds.daggle.com/~ff/daggle?a=NyxV-1cj8ok:m9wcCSNfFpo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/daggle?d=yIl2AUoC8zA" border="0"></a> <a href="http://feeds.daggle.com/~ff/daggle?a=NyxV-1cj8ok:m9wcCSNfFpo:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/daggle?i=NyxV-1cj8ok:m9wcCSNfFpo:F7zBnMyn0Lo" border="0"></a> <a href="http://feeds.daggle.com/~ff/daggle?a=NyxV-1cj8ok:m9wcCSNfFpo:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/daggle?i=NyxV-1cj8ok:m9wcCSNfFpo:V_sGLiPBpWU" border="0"></a> <a href="http://feeds.daggle.com/~ff/daggle?a=NyxV-1cj8ok:m9wcCSNfFpo:Gu391qSwH_A"><img src="http://feeds.feedburner.com/~ff/daggle?d=Gu391qSwH_A" border="0"></a>
</div><img src="http://feeds.feedburner.com/~r/daggle/~4/NyxV-1cj8ok" height="1" width="1"><br><br>Tags: <a href="http://www.croncast.com/keyg/google">google</a> <a href="http://www.technorati.com/tag/google"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/google.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/visitors">visitors</a> <a href="http://www.technorati.com/tag/visitors"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/visitors.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/story">story</a> <a href="http://www.technorati.com/tag/story"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/story.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/ad">ad</a> <a href="http://www.technorati.com/tag/ad"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/ad.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/news">news</a> <a href="http://www.technorati.com/tag/news"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/news.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></content:encoded>

         <pubDate>Thu, 26 Nov 2009 02:14:15 -0500</pubDate>         <guid isPermaLink="false">tag:croncast.com,5772</guid>

			<itunes:subtitle/>
      </item>
      <item>
         <title>How to Win Mind Share in Online Battles</title>
         <link>http://www.techstartups.com/2009/11/05/how-to-win-mind-share-in-online-battles/</link>
		 <category>Shared item</category>
			<description><![CDATA[<p><em>By Senior Editor  Kris Smith (<a href="http://twitter.com/croncast">@croncast</a>)</em></p>
<p><a rel="attachment wp-att-2863" href="http://www.techstartups.com/2009/11/05/how-to-win-mind-share-in-online-battles/fightres/"><img style="margin-left:10px;margin-right:10px" title="fightres" src="http://www.techstartups.com/blog/wp-content/uploads/2009/11/fightres.jpg" alt="fightres" width="240" height="160"></a>I was asked to review a scenario for a friend this morning that deals with competition for mind share in an ongoing row between disparate entities. Ahem, feuding like <a title="Hatfield-McCoy feud" rel="wikipedia" href="http://en.wikipedia.org/wiki/Hatfield-McCoy_feud">Hatfields and McCoys</a> as Waylon Jennings would say, and they're doing it primarily online.</p>
<p>Most of us choose to go about our business online without causing confrontation. You might not choose to be involved in a situation like this.</p>
<p>However, if you are put in this position tactics for a remedy are below:</p>
<ol>
<li>Make sure all of your sites where <a title="Dynamic web page" rel="wikipedia" href="http://en.wikipedia.org/wiki/Dynamic_web_page">dynamic content</a> is being created on have <a title="RSS" rel="wikipedia" href="http://en.wikipedia.org/wiki/RSS">RSS feeds</a></li>
<li>Make sure the sites are being indexed by Google . . . and recently cached by going to Google and typing in site:blogdomain.com blogdomain.com being the site URL</li>
<li>Most of the sites below (I was furnished with list including <a title="Topix" rel="homepage" href="http://topix.com">Topix</a> and Blog Catalog to mention a couple) require registration and some code editing to claim the sites. Register with them and follow their protocol for submission into their directories for partner programs and additional synidcation</li>
<li>Create a press release(s) that contains links, not just copy, but links to the RSS feeds from clients site(s). Example, For more information on this ongoing issue subscribe to: http://www.blogdomain.com/rssfeed. The popular outlets have wide syndication</li>
<li>Use this tool from Google  <a href="http://www.google.com/sktool/#">http://www.google.com/sktool/#</a> and enter your sites and the sites of the competitor into it. Disregard the pricing listed on the page for AdWords and focus on the keywords. Compare the the keywords of your competitor with those of your sites and adjust accordingly in all digital communications. <a title="Organic search" rel="wikipedia" href="http://en.wikipedia.org/wiki/Organic_search">Organic search</a> is king.</li>
<li>Next use this too from Google  <a href="https://adwords.google.com/select/KeywordToolExternal">https://adwords.google.com/select/KeywordToolExternal</a> once your keywords are set to see how you are doing</li>
<li>Depending on the blog or site platform you should have the ability to create keyword RSS feeds. Do this. Robots like <a title="Data model" rel="wikipedia" href="http://en.wikipedia.org/wiki/Data_model">structured data</a> and favor feeds. Most, if not all, Google real-time alerts come from RSS feed links back to the source site.</li>
<li>Commenting on local (this is a regional battle for mind share) blogs with links to client site(s) and feeds is another way to increase chances of indexing and more favorable search results</li>
</ol>
<p>If I were fighting this battle or one like it these are exact steps that I would take. So dear reader, if we ever lock horns, we may duel to a draw since you have my playbook.</p>
<p> <img src="http://www.techstartups.com/blog/wp-includes/images/smilies/icon_wink.gif" alt=";-)"> </p>
<p>DISCLOSURE OF MATERIAL CONNECTION: <a href="http://cmp.ly/4">http://cmp.ly/4</a></p>
<div style="margin-top:10px;height:15px"><a title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/ef15d872-da91-46b2-9a2c-80bcdd8e009e/"><img style="border:medium none;float:right" src="http://img.zemanta.com/reblog_e.png?x-id=ef15d872-da91-46b2-9a2c-80bcdd8e009e" alt="Reblog this post [with Zemanta]"></a><span></span></div>
<p><a href="http://www.techstartups.com/2009/11/05/how-to-win-mind-share-in-online-battles/">How to Win Mind Share in Online Battles</a> is a post from: <a href="http://www.techstartups.com">TechStartups.com</a></p>
<br><br>Tags: <a style="display:inline" href="http://www.techstartups.com/tag/google-keyword-tools/" rel="tag">google keyword tools</a> <a style="display:inline" href="http://www.techstartups.com/tag/google-keyword-tools/feed" rel="tag"><img style="display:inline" src="http://lokwat.com/wp-content/themes/blue-dream/images/rss.gif" border="0"></a>, <a style="display:inline" href="http://www.techstartups.com/tag/hatfields-and-mccoys/" rel="tag">Hatfields and McCoys</a> <a style="display:inline" href="http://www.techstartups.com/tag/hatfields-and-mccoys/feed" rel="tag"><img style="display:inline" src="http://lokwat.com/wp-content/themes/blue-dream/images/rss.gif" border="0"></a>, <a style="display:inline" href="http://www.techstartups.com/tag/mind-share/" rel="tag">mind share</a> <a style="display:inline" href="http://www.techstartups.com/tag/mind-share/feed" rel="tag"><img style="display:inline" src="http://lokwat.com/wp-content/themes/blue-dream/images/rss.gif" border="0"></a>, <a style="display:inline" href="http://www.techstartups.com/tag/mindshare/" rel="tag">mindshare</a> <a style="display:inline" href="http://www.techstartups.com/tag/mindshare/feed" rel="tag"><img style="display:inline" src="http://lokwat.com/wp-content/themes/blue-dream/images/rss.gif" border="0"></a>, <a style="display:inline" href="http://www.techstartups.com/tag/organic-search-robot/" rel="tag">organic search robot</a> <a style="display:inline" href="http://www.techstartups.com/tag/organic-search-robot/feed" rel="tag"><img style="display:inline" src="http://lokwat.com/wp-content/themes/blue-dream/images/rss.gif" border="0"></a>, <a style="display:inline" href="http://www.techstartups.com/tag/structured-data/" rel="tag">structured data</a> <a style="display:inline" href="http://www.techstartups.com/tag/structured-data/feed" rel="tag"><img style="display:inline" src="http://lokwat.com/wp-content/themes/blue-dream/images/rss.gif" border="0"></a><br><br><br><br>Tags: <a href="http://www.croncast.com/keyg/google">google</a> <a href="http://www.technorati.com/tag/google"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/google.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/sites">sites</a> <a href="http://www.technorati.com/tag/sites"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/sites.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/site">site</a> <a href="http://www.technorati.com/tag/site"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/site.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/mind">mind</a> <a href="http://www.technorati.com/tag/mind"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/mind.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/share">share</a> <a href="http://www.technorati.com/tag/share"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/share.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></description><content:encoded><![CDATA[<p><em>By Senior Editor  Kris Smith (<a href="http://twitter.com/croncast">@croncast</a>)</em></p>
<p><a rel="attachment wp-att-2863" href="http://www.techstartups.com/2009/11/05/how-to-win-mind-share-in-online-battles/fightres/"><img style="margin-left:10px;margin-right:10px" title="fightres" src="http://www.techstartups.com/blog/wp-content/uploads/2009/11/fightres.jpg" alt="fightres" width="240" height="160"></a>I was asked to review a scenario for a friend this morning that deals with competition for mind share in an ongoing row between disparate entities. Ahem, feuding like <a title="Hatfield-McCoy feud" rel="wikipedia" href="http://en.wikipedia.org/wiki/Hatfield-McCoy_feud">Hatfields and McCoys</a> as Waylon Jennings would say, and they're doing it primarily online.</p>
<p>Most of us choose to go about our business online without causing confrontation. You might not choose to be involved in a situation like this.</p>
<p>However, if you are put in this position tactics for a remedy are below:</p>
<ol>
<li>Make sure all of your sites where <a title="Dynamic web page" rel="wikipedia" href="http://en.wikipedia.org/wiki/Dynamic_web_page">dynamic content</a> is being created on have <a title="RSS" rel="wikipedia" href="http://en.wikipedia.org/wiki/RSS">RSS feeds</a></li>
<li>Make sure the sites are being indexed by Google . . . and recently cached by going to Google and typing in site:blogdomain.com blogdomain.com being the site URL</li>
<li>Most of the sites below (I was furnished with list including <a title="Topix" rel="homepage" href="http://topix.com">Topix</a> and Blog Catalog to mention a couple) require registration and some code editing to claim the sites. Register with them and follow their protocol for submission into their directories for partner programs and additional synidcation</li>
<li>Create a press release(s) that contains links, not just copy, but links to the RSS feeds from clients site(s). Example, For more information on this ongoing issue subscribe to: http://www.blogdomain.com/rssfeed. The popular outlets have wide syndication</li>
<li>Use this tool from Google  <a href="http://www.google.com/sktool/#">http://www.google.com/sktool/#</a> and enter your sites and the sites of the competitor into it. Disregard the pricing listed on the page for AdWords and focus on the keywords. Compare the the keywords of your competitor with those of your sites and adjust accordingly in all digital communications. <a title="Organic search" rel="wikipedia" href="http://en.wikipedia.org/wiki/Organic_search">Organic search</a> is king.</li>
<li>Next use this too from Google  <a href="https://adwords.google.com/select/KeywordToolExternal">https://adwords.google.com/select/KeywordToolExternal</a> once your keywords are set to see how you are doing</li>
<li>Depending on the blog or site platform you should have the ability to create keyword RSS feeds. Do this. Robots like <a title="Data model" rel="wikipedia" href="http://en.wikipedia.org/wiki/Data_model">structured data</a> and favor feeds. Most, if not all, Google real-time alerts come from RSS feed links back to the source site.</li>
<li>Commenting on local (this is a regional battle for mind share) blogs with links to client site(s) and feeds is another way to increase chances of indexing and more favorable search results</li>
</ol>
<p>If I were fighting this battle or one like it these are exact steps that I would take. So dear reader, if we ever lock horns, we may duel to a draw since you have my playbook.</p>
<p> <img src="http://www.techstartups.com/blog/wp-includes/images/smilies/icon_wink.gif" alt=";-)"> </p>
<p>DISCLOSURE OF MATERIAL CONNECTION: <a href="http://cmp.ly/4">http://cmp.ly/4</a></p>
<div style="margin-top:10px;height:15px"><a title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/ef15d872-da91-46b2-9a2c-80bcdd8e009e/"><img style="border:medium none;float:right" src="http://img.zemanta.com/reblog_e.png?x-id=ef15d872-da91-46b2-9a2c-80bcdd8e009e" alt="Reblog this post [with Zemanta]"></a><span></span></div>
<p><a href="http://www.techstartups.com/2009/11/05/how-to-win-mind-share-in-online-battles/">How to Win Mind Share in Online Battles</a> is a post from: <a href="http://www.techstartups.com">TechStartups.com</a></p>
<br><br>Tags: <a style="display:inline" href="http://www.techstartups.com/tag/google-keyword-tools/" rel="tag">google keyword tools</a> <a style="display:inline" href="http://www.techstartups.com/tag/google-keyword-tools/feed" rel="tag"><img style="display:inline" src="http://lokwat.com/wp-content/themes/blue-dream/images/rss.gif" border="0"></a>, <a style="display:inline" href="http://www.techstartups.com/tag/hatfields-and-mccoys/" rel="tag">Hatfields and McCoys</a> <a style="display:inline" href="http://www.techstartups.com/tag/hatfields-and-mccoys/feed" rel="tag"><img style="display:inline" src="http://lokwat.com/wp-content/themes/blue-dream/images/rss.gif" border="0"></a>, <a style="display:inline" href="http://www.techstartups.com/tag/mind-share/" rel="tag">mind share</a> <a style="display:inline" href="http://www.techstartups.com/tag/mind-share/feed" rel="tag"><img style="display:inline" src="http://lokwat.com/wp-content/themes/blue-dream/images/rss.gif" border="0"></a>, <a style="display:inline" href="http://www.techstartups.com/tag/mindshare/" rel="tag">mindshare</a> <a style="display:inline" href="http://www.techstartups.com/tag/mindshare/feed" rel="tag"><img style="display:inline" src="http://lokwat.com/wp-content/themes/blue-dream/images/rss.gif" border="0"></a>, <a style="display:inline" href="http://www.techstartups.com/tag/organic-search-robot/" rel="tag">organic search robot</a> <a style="display:inline" href="http://www.techstartups.com/tag/organic-search-robot/feed" rel="tag"><img style="display:inline" src="http://lokwat.com/wp-content/themes/blue-dream/images/rss.gif" border="0"></a>, <a style="display:inline" href="http://www.techstartups.com/tag/structured-data/" rel="tag">structured data</a> <a style="display:inline" href="http://www.techstartups.com/tag/structured-data/feed" rel="tag"><img style="display:inline" src="http://lokwat.com/wp-content/themes/blue-dream/images/rss.gif" border="0"></a><br><br><br><br>Tags: <a href="http://www.croncast.com/keyg/google">google</a> <a href="http://www.technorati.com/tag/google"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/google.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/sites">sites</a> <a href="http://www.technorati.com/tag/sites"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/sites.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/site">site</a> <a href="http://www.technorati.com/tag/site"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/site.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/mind">mind</a> <a href="http://www.technorati.com/tag/mind"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/mind.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/share">share</a> <a href="http://www.technorati.com/tag/share"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/share.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></content:encoded>

         <pubDate>Thu, 05 Nov 2009 17:14:37 -0500</pubDate>         <guid isPermaLink="false">tag:croncast.com,5701</guid>

			<itunes:subtitle/>
      </item>
      <item>
         <title>Sex Offenders Banned from Social Media Sites</title>
         <link>http://mashable.com/2009/08/13/sex-offenders-banned/</link>
		 <category>Shared item</category>
			<description><![CDATA[<a href="http://api.tweetmeme.com/share?url=http://mashable.com/2009/08/13/sex-offenders-banned/"><img width="51" height="61" src="http://api.tweetmeme.com/imagebutton.gif?url=http://mashable.com/2009/08/13/sex-offenders-banned/" align="right"></a><p><img src="http://ec.mashable.com/wp-content/uploads/2009/08/patquinn.jpg" alt="patquinn" title="patquinn" width="114" height="155">Should sex offenders be allowed to use Twitter, Facebook, LinkedIn, MySpace and other social networking sites?  Illinois Governor Pat Quinn (pictured) thinks not, and this week signed into law <a href="http://www.ilga.gov/legislation/96/HB/09600HB1314enr.htm">a bill</a> that bans all registered sex offenders in his state from using social networks.</p>
<p>This sounds satisfying on first listen  after all, why <em>wouldn't</em> we want to take every possible measure to prevent the horrendous crimes of sex offenders?  But many legal blogs are pointing out that the legislation is overzealous and possibly unconstitutional. <span></span>  </p>
<hr>
<h3>Peeing in Public?  You Might be a Sex Offender</h3>
<hr>
<p><a href="http://open.salon.com/blog/mad_typist/2009/08/12/your_scarlet_letter_now_applies_to_facebook">Salon points out</a> that in 13 states you'll be added to the sex offenders register for urinating in public (in two of which, only if a child was present), while 29 states required registration for teenagers who had consensual sex with another teenager.  In other words: it's not just child molesters and rapists who would be banned if such laws became accepted.</p>
<p>Then there's the problem of implementation: who is going to keep an eye on the thousands of registered sex offenders to see if they're using <a href="http://mashable.com/category/facebook/">Facebook</a> and <a href="http://mashable.com/tag/twitter/">Twitter</a>?  Surely there are better ways to spend police time than tracking the web habits of someone who had sex in high school?</p>
<p><center><img src="http://ec.mashable.com/wp-content/uploads/2008/03/socnetlogos.gif"></center></p>
<hr>
<h3>NYTimes.com is Banned, Too</h3>
<hr>
<p><img src="http://ec.mashable.com/wp-content/uploads/2008/02/newyorktimes.PNG" align="right">Other blogs, like <a href="http://techliberation.com/2009/08/12/illinois-bans-sex-predators-from-social-networking-sites/">Technology Liberation</a> and <a href="http://hackerjournalist.net/2009/08/12/sex-offenders-your-tweets-and-linkedin-and-timespeople-are-now-a-felony/">Hacker Journalist</a>, point out that the broad definition of social networking websites essentially bans these people from the web as a whole  banned from posting a resume on LinkedIn, banned from reading the New York Times (or any major newspaper) online because it lets you set up a profile.  The description reads:</p>
<blockquote><p>Social networking website means an Internet website containing profile web pages of the members of the website that include the names or nicknames of such members, photographs placed on the profile web pages by such members, or any other personal or personally identifying information about such members and links to other profile web pages on social networking websites of friends or associates of such members that can be accessed by other members or visitors to the website. A social networking website provides members of or visitors to such website the ability to leave messages or comments on the profile web page that are visible to all or some visitors to the profile web page and may also include a form of electronic mail for members of the social networking website. </p></blockquote>
<p><strong>In short, punishing rapists and sex offenders may feel satisfying, but this isn't what the bill does:</strong> it'll likely affect those who committed far lesser crimes, prove unenforceable, and may even be unconstitutional.  </p>
<p><iframe src="http://feedads.g.doubleclick.net/~ah/f/9m6h8omben53fuj7ghgrctkjc8/300/250?ca=1&amp;fh=280#http%3A%2F%2Fmashable.com%2F2009%2F08%2F13%2Fsex-offenders-banned%2F" width="100%" height="280" frameborder="0" scrolling="no" marginwidth="0" marginheight="0"></iframe></p><div>
<a href="http://feeds.feedburner.com/~ff/Mashable?a=ssPf-B246aQ:jQKi2pYocWE:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/Mashable?i=ssPf-B246aQ:jQKi2pYocWE:D7DqB2pKExk" border="0"></a> <a href="http://feeds.feedburner.com/~ff/Mashable?a=ssPf-B246aQ:jQKi2pYocWE:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Mashable?i=ssPf-B246aQ:jQKi2pYocWE:V_sGLiPBpWU" border="0"></a> <a href="http://feeds.feedburner.com/~ff/Mashable?a=ssPf-B246aQ:jQKi2pYocWE:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Mashable?i=ssPf-B246aQ:jQKi2pYocWE:F7zBnMyn0Lo" border="0"></a> <a href="http://feeds.feedburner.com/~ff/Mashable?a=ssPf-B246aQ:jQKi2pYocWE:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Mashable?d=qj6IDK7rITs" border="0"></a> <a href="http://feeds.feedburner.com/~ff/Mashable?a=ssPf-B246aQ:jQKi2pYocWE:_e0tkf89iUM"><img src="http://feeds.feedburner.com/~ff/Mashable?d=_e0tkf89iUM" border="0"></a> <a href="http://feeds.feedburner.com/~ff/Mashable?a=ssPf-B246aQ:jQKi2pYocWE:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Mashable?i=ssPf-B246aQ:jQKi2pYocWE:gIN9vFwOqvQ" border="0"></a> <a href="http://feeds.feedburner.com/~ff/Mashable?a=ssPf-B246aQ:jQKi2pYocWE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Mashable?d=yIl2AUoC8zA" border="0"></a> <a href="http://feeds.feedburner.com/~ff/Mashable?a=ssPf-B246aQ:jQKi2pYocWE:P0ZAIrC63Ok"><img src="http://feeds.feedburner.com/~ff/Mashable?d=P0ZAIrC63Ok" border="0"></a> <a href="http://feeds.feedburner.com/~ff/Mashable?a=ssPf-B246aQ:jQKi2pYocWE:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/Mashable?d=I9og5sOYxJI" border="0"></a> <a href="http://feeds.feedburner.com/~ff/Mashable?a=ssPf-B246aQ:jQKi2pYocWE:CC-BsrAYo0A"><img src="http://feeds.feedburner.com/~ff/Mashable?d=CC-BsrAYo0A" border="0"></a>
</div><br><br>Tags: <a href="http://www.croncast.com/keyg/sex">sex</a> <a href="http://www.technorati.com/tag/sex"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/sex.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/members">members</a> <a href="http://www.technorati.com/tag/members"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/members.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/social">social</a> <a href="http://www.technorati.com/tag/social"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/social.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/web">web</a> <a href="http://www.technorati.com/tag/web"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/web.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/website">website</a> <a href="http://www.technorati.com/tag/website"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/website.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></description><content:encoded><![CDATA[<a href="http://api.tweetmeme.com/share?url=http://mashable.com/2009/08/13/sex-offenders-banned/"><img width="51" height="61" src="http://api.tweetmeme.com/imagebutton.gif?url=http://mashable.com/2009/08/13/sex-offenders-banned/" align="right"></a><p><img src="http://ec.mashable.com/wp-content/uploads/2009/08/patquinn.jpg" alt="patquinn" title="patquinn" width="114" height="155">Should sex offenders be allowed to use Twitter, Facebook, LinkedIn, MySpace and other social networking sites?  Illinois Governor Pat Quinn (pictured) thinks not, and this week signed into law <a href="http://www.ilga.gov/legislation/96/HB/09600HB1314enr.htm">a bill</a> that bans all registered sex offenders in his state from using social networks.</p>
<p>This sounds satisfying on first listen  after all, why <em>wouldn't</em> we want to take every possible measure to prevent the horrendous crimes of sex offenders?  But many legal blogs are pointing out that the legislation is overzealous and possibly unconstitutional. <span></span>  </p>
<hr>
<h3>Peeing in Public?  You Might be a Sex Offender</h3>
<hr>
<p><a href="http://open.salon.com/blog/mad_typist/2009/08/12/your_scarlet_letter_now_applies_to_facebook">Salon points out</a> that in 13 states you'll be added to the sex offenders register for urinating in public (in two of which, only if a child was present), while 29 states required registration for teenagers who had consensual sex with another teenager.  In other words: it's not just child molesters and rapists who would be banned if such laws became accepted.</p>
<p>Then there's the problem of implementation: who is going to keep an eye on the thousands of registered sex offenders to see if they're using <a href="http://mashable.com/category/facebook/">Facebook</a> and <a href="http://mashable.com/tag/twitter/">Twitter</a>?  Surely there are better ways to spend police time than tracking the web habits of someone who had sex in high school?</p>
<p><center><img src="http://ec.mashable.com/wp-content/uploads/2008/03/socnetlogos.gif"></center></p>
<hr>
<h3>NYTimes.com is Banned, Too</h3>
<hr>
<p><img src="http://ec.mashable.com/wp-content/uploads/2008/02/newyorktimes.PNG" align="right">Other blogs, like <a href="http://techliberation.com/2009/08/12/illinois-bans-sex-predators-from-social-networking-sites/">Technology Liberation</a> and <a href="http://hackerjournalist.net/2009/08/12/sex-offenders-your-tweets-and-linkedin-and-timespeople-are-now-a-felony/">Hacker Journalist</a>, point out that the broad definition of social networking websites essentially bans these people from the web as a whole  banned from posting a resume on LinkedIn, banned from reading the New York Times (or any major newspaper) online because it lets you set up a profile.  The description reads:</p>
<blockquote><p>Social networking website means an Internet website containing profile web pages of the members of the website that include the names or nicknames of such members, photographs placed on the profile web pages by such members, or any other personal or personally identifying information about such members and links to other profile web pages on social networking websites of friends or associates of such members that can be accessed by other members or visitors to the website. A social networking website provides members of or visitors to such website the ability to leave messages or comments on the profile web page that are visible to all or some visitors to the profile web page and may also include a form of electronic mail for members of the social networking website. </p></blockquote>
<p><strong>In short, punishing rapists and sex offenders may feel satisfying, but this isn't what the bill does:</strong> it'll likely affect those who committed far lesser crimes, prove unenforceable, and may even be unconstitutional.  </p>
<p><iframe src="http://feedads.g.doubleclick.net/~ah/f/9m6h8omben53fuj7ghgrctkjc8/300/250?ca=1&amp;fh=280#http%3A%2F%2Fmashable.com%2F2009%2F08%2F13%2Fsex-offenders-banned%2F" width="100%" height="280" frameborder="0" scrolling="no" marginwidth="0" marginheight="0"></iframe></p><div>
<a href="http://feeds.feedburner.com/~ff/Mashable?a=ssPf-B246aQ:jQKi2pYocWE:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/Mashable?i=ssPf-B246aQ:jQKi2pYocWE:D7DqB2pKExk" border="0"></a> <a href="http://feeds.feedburner.com/~ff/Mashable?a=ssPf-B246aQ:jQKi2pYocWE:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Mashable?i=ssPf-B246aQ:jQKi2pYocWE:V_sGLiPBpWU" border="0"></a> <a href="http://feeds.feedburner.com/~ff/Mashable?a=ssPf-B246aQ:jQKi2pYocWE:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Mashable?i=ssPf-B246aQ:jQKi2pYocWE:F7zBnMyn0Lo" border="0"></a> <a href="http://feeds.feedburner.com/~ff/Mashable?a=ssPf-B246aQ:jQKi2pYocWE:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Mashable?d=qj6IDK7rITs" border="0"></a> <a href="http://feeds.feedburner.com/~ff/Mashable?a=ssPf-B246aQ:jQKi2pYocWE:_e0tkf89iUM"><img src="http://feeds.feedburner.com/~ff/Mashable?d=_e0tkf89iUM" border="0"></a> <a href="http://feeds.feedburner.com/~ff/Mashable?a=ssPf-B246aQ:jQKi2pYocWE:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Mashable?i=ssPf-B246aQ:jQKi2pYocWE:gIN9vFwOqvQ" border="0"></a> <a href="http://feeds.feedburner.com/~ff/Mashable?a=ssPf-B246aQ:jQKi2pYocWE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Mashable?d=yIl2AUoC8zA" border="0"></a> <a href="http://feeds.feedburner.com/~ff/Mashable?a=ssPf-B246aQ:jQKi2pYocWE:P0ZAIrC63Ok"><img src="http://feeds.feedburner.com/~ff/Mashable?d=P0ZAIrC63Ok" border="0"></a> <a href="http://feeds.feedburner.com/~ff/Mashable?a=ssPf-B246aQ:jQKi2pYocWE:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/Mashable?d=I9og5sOYxJI" border="0"></a> <a href="http://feeds.feedburner.com/~ff/Mashable?a=ssPf-B246aQ:jQKi2pYocWE:CC-BsrAYo0A"><img src="http://feeds.feedburner.com/~ff/Mashable?d=CC-BsrAYo0A" border="0"></a>
</div><br><br>Tags: <a href="http://www.croncast.com/keyg/sex">sex</a> <a href="http://www.technorati.com/tag/sex"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/sex.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/members">members</a> <a href="http://www.technorati.com/tag/members"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/members.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/social">social</a> <a href="http://www.technorati.com/tag/social"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/social.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/web">web</a> <a href="http://www.technorati.com/tag/web"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/web.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/website">website</a> <a href="http://www.technorati.com/tag/website"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/website.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></content:encoded>

         <pubDate>Thu, 13 Aug 2009 11:46:41 -0400</pubDate>         <guid isPermaLink="false">tag:croncast.com,5459</guid>

			<itunes:subtitle/>
      </item>
      <item>
         <title>$1 Trillion Copyright Infringement Lawsuit Against Oprah Dismissed</title>
         <link>http://techdirt.com/articles/20090811/0130495836.shtml</link>
		 <category>Shared item</category>
			<description><![CDATA[We've seen all sorts of bizarre copyright claims over the years, but I can't recall anything quite like this.  Apparently, Oprah Winfrey was sued by some poet <a href="http://www.thresq.com/2009/08/oprah-trillion-dollar-lawsuit-poet.html">for <i>$1 trillion</i></a>, claiming that the TV talkshow star had ripped off a poem.  One would hope that his poetry is better than his legal skills, as the lawsuit was quickly dismissed, noting that the poet failed to register a copyright on his poems, and a prerequisite before a copyright infringement lawsuit is to have the works registered.  While it's never good to support bogus litigation, it's difficult not to wonder how this guy planned to substantiate the <i>$1 trillion</i> number.  Even the big shots in the RIAA and MPAA don't go that far...<br><br><a href="http://techdirt.com/articles/20090811/0130495836.shtml">Permalink</a> | <a href="http://techdirt.com/articles/20090811/0130495836.shtml#comments">Comments</a> | <a href="http://techdirt.com/article.php?sid=20090811/0130495836&amp;op=sharethis">Email This Story</a><br>
 <br style="clear:both">
<br style="clear:both">
<a href="http://ads.pheedo.com/click.phdo?s=0784ac31fb08ac8d081a86e6e5b7aaae&amp;p=1"><img alt="" style="border:0" border="0" src="http://ads.pheedo.com/img.phdo?s=0784ac31fb08ac8d081a86e6e5b7aaae&amp;p=1"></a><div>
<a href="http://feeds.techdirt.com/~ff/techdirt/feed?a=rVhKhMfDzVo:pk8_RJntexs:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techdirt/feed?i=rVhKhMfDzVo:pk8_RJntexs:D7DqB2pKExk" border="0"></a> <a href="http://feeds.techdirt.com/~ff/techdirt/feed?a=rVhKhMfDzVo:pk8_RJntexs:c-S6u7MTCTE"><img src="http://feeds.feedburner.com/~ff/techdirt/feed?d=c-S6u7MTCTE" border="0"></a>
</div><img src="http://feeds.feedburner.com/~r/techdirt/feed/~4/rVhKhMfDzVo" height="1" width="1"><br><br>Tags: <a href="http://www.croncast.com/keyg/copyright">copyright</a> <a href="http://www.technorati.com/tag/copyright"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/copyright.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/lawsuit">lawsuit</a> <a href="http://www.technorati.com/tag/lawsuit"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/lawsuit.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/trillion">trillion</a> <a href="http://www.technorati.com/tag/trillion"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/trillion.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/poet">poet</a> <a href="http://www.technorati.com/tag/poet"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/poet.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/dismissed">dismissed</a> <a href="http://www.technorati.com/tag/dismissed"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/dismissed.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></description><content:encoded><![CDATA[We've seen all sorts of bizarre copyright claims over the years, but I can't recall anything quite like this.  Apparently, Oprah Winfrey was sued by some poet <a href="http://www.thresq.com/2009/08/oprah-trillion-dollar-lawsuit-poet.html">for <i>$1 trillion</i></a>, claiming that the TV talkshow star had ripped off a poem.  One would hope that his poetry is better than his legal skills, as the lawsuit was quickly dismissed, noting that the poet failed to register a copyright on his poems, and a prerequisite before a copyright infringement lawsuit is to have the works registered.  While it's never good to support bogus litigation, it's difficult not to wonder how this guy planned to substantiate the <i>$1 trillion</i> number.  Even the big shots in the RIAA and MPAA don't go that far...<br><br><a href="http://techdirt.com/articles/20090811/0130495836.shtml">Permalink</a> | <a href="http://techdirt.com/articles/20090811/0130495836.shtml#comments">Comments</a> | <a href="http://techdirt.com/article.php?sid=20090811/0130495836&amp;op=sharethis">Email This Story</a><br>
 <br style="clear:both">
<br style="clear:both">
<a href="http://ads.pheedo.com/click.phdo?s=0784ac31fb08ac8d081a86e6e5b7aaae&amp;p=1"><img alt="" style="border:0" border="0" src="http://ads.pheedo.com/img.phdo?s=0784ac31fb08ac8d081a86e6e5b7aaae&amp;p=1"></a><div>
<a href="http://feeds.techdirt.com/~ff/techdirt/feed?a=rVhKhMfDzVo:pk8_RJntexs:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techdirt/feed?i=rVhKhMfDzVo:pk8_RJntexs:D7DqB2pKExk" border="0"></a> <a href="http://feeds.techdirt.com/~ff/techdirt/feed?a=rVhKhMfDzVo:pk8_RJntexs:c-S6u7MTCTE"><img src="http://feeds.feedburner.com/~ff/techdirt/feed?d=c-S6u7MTCTE" border="0"></a>
</div><img src="http://feeds.feedburner.com/~r/techdirt/feed/~4/rVhKhMfDzVo" height="1" width="1"><br><br>Tags: <a href="http://www.croncast.com/keyg/copyright">copyright</a> <a href="http://www.technorati.com/tag/copyright"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/copyright.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/lawsuit">lawsuit</a> <a href="http://www.technorati.com/tag/lawsuit"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/lawsuit.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/trillion">trillion</a> <a href="http://www.technorati.com/tag/trillion"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/trillion.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/poet">poet</a> <a href="http://www.technorati.com/tag/poet"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/poet.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/dismissed">dismissed</a> <a href="http://www.technorati.com/tag/dismissed"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/dismissed.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></content:encoded>

         <pubDate>Tue, 11 Aug 2009 14:14:00 -0400</pubDate>         <guid isPermaLink="false">tag:croncast.com,5445</guid>

			<itunes:subtitle/>
      </item>
      <item>
         <title>Are Legal Briefs Filed With A Court Covered By Copyright?</title>
         <link>http://techdirt.com/articles/20090726/1536245664.shtml</link>
		 <category>Shared item</category>
			<description><![CDATA[Federal court rulings, since they're produced by the federal government are public domain materials, but a few months ago, when I was writing about a court filing, I wondered if the same applied to briefs filed by private parties with the court.  As with so many things, I sent a quick email to <a href="http://blog.ericgoldman.org/">Eric Goldman</a> to get his take on it.  He pointed out that, technically, the brief probably was covered by copyright, but there could be a strong public interest/fair use claim in being able to post it online.  However, it was not entirely clear.  I guess it should come as no surprise that this is now becoming a specific legal issue itself.  <a href="http://twitter.com/CopyrightLaw/statuses/2821956571">Michael Scott</a> points us to a story about a lawyer claiming that legal publishing services LexisNexis and Westlaw, which both publish legal filings and rulings, <a href="http://legalresearchplus.com/2009/07/23/lexisnexis-and-westlaw-violating-copyright/">were violating his copyright on a brief he had filed</a>, in redistributing it (for profit).
<br><br>
As you know, unique content is automatically covered by copyright as soon as it's expressed in some permanent form.  And considering that most filings are unique works (not boilerplate stuff), there's a pretty strong argument that they should be covered by copyright (and, in theory, a lawyer could register the works, though I would doubt that's common).  This isn't necessarily a good thing and doesn't make much real sense -- but it's the sort of bizarre situation you end up in when you automatically put copyright on any form of expression.  While some are arguing that since the document has been filed publicly in court, it's now public material and can be reposted, it's <a href="http://volokh.com/posts/1248389303.shtml">not at all clear</a> the law supports that position.  Of course, the law probably should make this clear.  Allowing copyright on legal filings would create quite a mess.  It would seem like there's a very strong public interest/fair use claim on why it should be fair for anyone to redistribute such documents (whether for profit or not), but we may soon find out what a court has to say about that.<br><br><a href="http://techdirt.com/articles/20090726/1536245664.shtml">Permalink</a> | <a href="http://techdirt.com/articles/20090726/1536245664.shtml#comments">Comments</a> | <a href="http://techdirt.com/article.php?sid=20090726/1536245664&amp;op=sharethis">Email This Story</a><br>
 <br style="clear:both">
<br style="clear:both">
<a href="http://ads.pheedo.com/click.phdo?s=4164e6bd35c73559aea2aba3d194727a&amp;p=1"><img alt="" style="border:0" border="0" src="http://ads.pheedo.com/img.phdo?s=4164e6bd35c73559aea2aba3d194727a&amp;p=1"></a><div>
<a href="http://feeds.techdirt.com/~ff/techdirt/feed?a=d117ycuYCrU:rwiWXOBYvL0:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techdirt/feed?i=d117ycuYCrU:rwiWXOBYvL0:D7DqB2pKExk" border="0"></a> <a href="http://feeds.techdirt.com/~ff/techdirt/feed?a=d117ycuYCrU:rwiWXOBYvL0:c-S6u7MTCTE"><img src="http://feeds.feedburner.com/~ff/techdirt/feed?d=c-S6u7MTCTE" border="0"></a>
</div><img src="http://feeds.feedburner.com/~r/techdirt/feed/~4/d117ycuYCrU" height="1" width="1"><br><br>Tags: <a href="http://www.croncast.com/keyg/copyright">copyright</a> <a href="http://www.technorati.com/tag/copyright"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/copyright.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/court">court</a> <a href="http://www.technorati.com/tag/court"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/court.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/legal">legal</a> <a href="http://www.technorati.com/tag/legal"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/legal.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/covered">covered</a> <a href="http://www.technorati.com/tag/covered"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/covered.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/public">public</a> <a href="http://www.technorati.com/tag/public"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/public.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></description><content:encoded><![CDATA[Federal court rulings, since they're produced by the federal government are public domain materials, but a few months ago, when I was writing about a court filing, I wondered if the same applied to briefs filed by private parties with the court.  As with so many things, I sent a quick email to <a href="http://blog.ericgoldman.org/">Eric Goldman</a> to get his take on it.  He pointed out that, technically, the brief probably was covered by copyright, but there could be a strong public interest/fair use claim in being able to post it online.  However, it was not entirely clear.  I guess it should come as no surprise that this is now becoming a specific legal issue itself.  <a href="http://twitter.com/CopyrightLaw/statuses/2821956571">Michael Scott</a> points us to a story about a lawyer claiming that legal publishing services LexisNexis and Westlaw, which both publish legal filings and rulings, <a href="http://legalresearchplus.com/2009/07/23/lexisnexis-and-westlaw-violating-copyright/">were violating his copyright on a brief he had filed</a>, in redistributing it (for profit).
<br><br>
As you know, unique content is automatically covered by copyright as soon as it's expressed in some permanent form.  And considering that most filings are unique works (not boilerplate stuff), there's a pretty strong argument that they should be covered by copyright (and, in theory, a lawyer could register the works, though I would doubt that's common).  This isn't necessarily a good thing and doesn't make much real sense -- but it's the sort of bizarre situation you end up in when you automatically put copyright on any form of expression.  While some are arguing that since the document has been filed publicly in court, it's now public material and can be reposted, it's <a href="http://volokh.com/posts/1248389303.shtml">not at all clear</a> the law supports that position.  Of course, the law probably should make this clear.  Allowing copyright on legal filings would create quite a mess.  It would seem like there's a very strong public interest/fair use claim on why it should be fair for anyone to redistribute such documents (whether for profit or not), but we may soon find out what a court has to say about that.<br><br><a href="http://techdirt.com/articles/20090726/1536245664.shtml">Permalink</a> | <a href="http://techdirt.com/articles/20090726/1536245664.shtml#comments">Comments</a> | <a href="http://techdirt.com/article.php?sid=20090726/1536245664&amp;op=sharethis">Email This Story</a><br>
 <br style="clear:both">
<br style="clear:both">
<a href="http://ads.pheedo.com/click.phdo?s=4164e6bd35c73559aea2aba3d194727a&amp;p=1"><img alt="" style="border:0" border="0" src="http://ads.pheedo.com/img.phdo?s=4164e6bd35c73559aea2aba3d194727a&amp;p=1"></a><div>
<a href="http://feeds.techdirt.com/~ff/techdirt/feed?a=d117ycuYCrU:rwiWXOBYvL0:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/techdirt/feed?i=d117ycuYCrU:rwiWXOBYvL0:D7DqB2pKExk" border="0"></a> <a href="http://feeds.techdirt.com/~ff/techdirt/feed?a=d117ycuYCrU:rwiWXOBYvL0:c-S6u7MTCTE"><img src="http://feeds.feedburner.com/~ff/techdirt/feed?d=c-S6u7MTCTE" border="0"></a>
</div><img src="http://feeds.feedburner.com/~r/techdirt/feed/~4/d117ycuYCrU" height="1" width="1"><br><br>Tags: <a href="http://www.croncast.com/keyg/copyright">copyright</a> <a href="http://www.technorati.com/tag/copyright"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/copyright.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/court">court</a> <a href="http://www.technorati.com/tag/court"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/court.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/legal">legal</a> <a href="http://www.technorati.com/tag/legal"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/legal.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/covered">covered</a> <a href="http://www.technorati.com/tag/covered"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/covered.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/public">public</a> <a href="http://www.technorati.com/tag/public"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/public.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></content:encoded>

         <pubDate>Thu, 06 Aug 2009 12:44:00 -0400</pubDate>         <guid isPermaLink="false">tag:croncast.com,5432</guid>

			<itunes:subtitle/>
      </item>
      <item>
         <title>Twitter Finds And Friends</title>
         <link>http://www.ncnblog.com/2009/07/26/twitter-finds-and-friends/</link>
		 <category>Shared item</category>
			<description><![CDATA[<p>I am a big fan of <a href="http://www.twitter.com/NCN">Twitter</a>.  It's amazing how quickly information can flow, from tweet to tweet, and person to person.</p>
<p>If you haven't done so, feel <a href="http://www.twitter.com/NCN">free to follow my tweets</a>, and say <em>Hello</em>.</p>
<p><strong>Today's Twitter Finds And Friends -</strong></p>
<p><strong>Finds -</strong></p>
<p>Do you like bean bag chairs?  Do you like personal finance forums?  Then, you'll love Moolanomy's current giveaway.  Register for the new <a href="http://answers.moolanomy.com/giveaway">Moolanomy Answers and you could win a Sumo Bean Bag Chair</a>.  (<a href="http://twitter.com/moolanomy/status/2841531367">Tweeted</a> by <a href="http://twitter.com/moolanomy">@moolanomy</a>)</p>
<p>We recently spent an entire week removing clutter from our home and organizing our stuff.  I'm totally digging Being Frugal's post - <a href="http://beingfrugal.net/2007/09/25/why-the-minimalist-lifestyle-appeals-to-me/">Why The Minimalist Lifestyle Appeals To Me</a>.  (<a href="http://twitter.com/zen_habits/status/2842355221">Tweeted</a> by <a href="http://twitter.com/zen_habits">@Zen_Habits</a>)</p>
<p><strong>Friends -</strong></p>
<p>I am a big fan of <a href="http://twitter.com/flexo">@flexo</a> from <a href="http://www.consumerismcommentary.com/">Consumerism Commentary</a>.</p>
<p>I really enjoy <a href="http://twitter.com/SunFinancial">@SunFinancia</a>l from <a href="http://www.thesunsfinancialdiary.com/">The Sun's Financial Diary</a>.</p>
<p>I learn a lot from <a href="http://twitter.com/mymoneyblog">@mymoneyblog</a> from <a href="http://mymoneyblog.com/">My Money Blog</a>.</p>
<p>Follow me via <a href="http://twitter.com/NCN">Twitter</a></p>
<p><a href="http://www.ncnblog.com/2009/07/26/twitter-finds-and-friends/">Twitter Finds And Friends</a></p>
<p><iframe src="http://feedads.g.doubleclick.net/~ah/f/n25phni82dstaqkqd18nhveu3g/300/250?ca=1&amp;fh=280#http%3A%2F%2Fwww.ncnblog.com%2F2009%2F07%2F26%2Ftwitter-finds-and-friends%2F" width="100%" height="280" frameborder="0" scrolling="no" marginwidth="0" marginheight="0"></iframe></p><img src="http://feeds.feedburner.com/~r/ncnblog/~4/NYKz2Oi1-dM" height="1" width="1"><br><br>Tags: <a href="http://www.croncast.com/keyg/twitter">twitter</a> <a href="http://www.technorati.com/tag/twitter"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/twitter.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/friends">friends</a> <a href="http://www.technorati.com/tag/friends"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/friends.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/finds">finds</a> <a href="http://www.technorati.com/tag/finds"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/finds.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/moolanomy">moolanomy</a> <a href="http://www.technorati.com/tag/moolanomy"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/moolanomy.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/follow">follow</a> <a href="http://www.technorati.com/tag/follow"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/follow.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></description><content:encoded><![CDATA[<p>I am a big fan of <a href="http://www.twitter.com/NCN">Twitter</a>.  It's amazing how quickly information can flow, from tweet to tweet, and person to person.</p>
<p>If you haven't done so, feel <a href="http://www.twitter.com/NCN">free to follow my tweets</a>, and say <em>Hello</em>.</p>
<p><strong>Today's Twitter Finds And Friends -</strong></p>
<p><strong>Finds -</strong></p>
<p>Do you like bean bag chairs?  Do you like personal finance forums?  Then, you'll love Moolanomy's current giveaway.  Register for the new <a href="http://answers.moolanomy.com/giveaway">Moolanomy Answers and you could win a Sumo Bean Bag Chair</a>.  (<a href="http://twitter.com/moolanomy/status/2841531367">Tweeted</a> by <a href="http://twitter.com/moolanomy">@moolanomy</a>)</p>
<p>We recently spent an entire week removing clutter from our home and organizing our stuff.  I'm totally digging Being Frugal's post - <a href="http://beingfrugal.net/2007/09/25/why-the-minimalist-lifestyle-appeals-to-me/">Why The Minimalist Lifestyle Appeals To Me</a>.  (<a href="http://twitter.com/zen_habits/status/2842355221">Tweeted</a> by <a href="http://twitter.com/zen_habits">@Zen_Habits</a>)</p>
<p><strong>Friends -</strong></p>
<p>I am a big fan of <a href="http://twitter.com/flexo">@flexo</a> from <a href="http://www.consumerismcommentary.com/">Consumerism Commentary</a>.</p>
<p>I really enjoy <a href="http://twitter.com/SunFinancial">@SunFinancia</a>l from <a href="http://www.thesunsfinancialdiary.com/">The Sun's Financial Diary</a>.</p>
<p>I learn a lot from <a href="http://twitter.com/mymoneyblog">@mymoneyblog</a> from <a href="http://mymoneyblog.com/">My Money Blog</a>.</p>
<p>Follow me via <a href="http://twitter.com/NCN">Twitter</a></p>
<p><a href="http://www.ncnblog.com/2009/07/26/twitter-finds-and-friends/">Twitter Finds And Friends</a></p>
<p><iframe src="http://feedads.g.doubleclick.net/~ah/f/n25phni82dstaqkqd18nhveu3g/300/250?ca=1&amp;fh=280#http%3A%2F%2Fwww.ncnblog.com%2F2009%2F07%2F26%2Ftwitter-finds-and-friends%2F" width="100%" height="280" frameborder="0" scrolling="no" marginwidth="0" marginheight="0"></iframe></p><img src="http://feeds.feedburner.com/~r/ncnblog/~4/NYKz2Oi1-dM" height="1" width="1"><br><br>Tags: <a href="http://www.croncast.com/keyg/twitter">twitter</a> <a href="http://www.technorati.com/tag/twitter"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/twitter.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/friends">friends</a> <a href="http://www.technorati.com/tag/friends"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/friends.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/finds">finds</a> <a href="http://www.technorati.com/tag/finds"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/finds.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/moolanomy">moolanomy</a> <a href="http://www.technorati.com/tag/moolanomy"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/moolanomy.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/follow">follow</a> <a href="http://www.technorati.com/tag/follow"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/follow.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></content:encoded>

         <pubDate>Sun, 26 Jul 2009 14:00:42 -0400</pubDate>         <guid isPermaLink="false">tag:croncast.com,5383</guid>

			<itunes:subtitle/>
      </item>
      <item>
         <title>Douglas Rushkoff's Open Source Economy: A ReadWriteWeb Interview</title>
         <link>http://feedproxy.google.com/~r/readwriteweb/~3/UXqV37107LA/douglas-rushkoffs-open-source-economy.php</link>
		 <category>Shared item</category>
			<description><![CDATA[<p><img alt="rushkoffbiopicmed.jpg" src="http://www.readwriteweb.com/enterprise/assets_c/2009/07/rushkoffbiopicmed-thumb-150x100-6718.jpg">Douglas Rushkoff  author, speaker, and teacher  is a man on a mission. As a step towards getting &quot;people to see the software-like code lying underneath how they interact,&quot; his latest book, <em><a href="http://lifeincorporated.net/">Life, Inc.</a></em>, explores the nature of money, our economic system, and how a corporate mindset has shaped who we are as people in modern society. </p>

<p>As a media theorist who's written about some of the most influential ideas of the digital age, Rushkoff is second to none. In <em>Life Inc.</em>, he describes not just corporations, but how we all can change to an "open source economy" that favors decentralized value creation over banking and central currency. We spoke with to ask more about what this new economy would look like and how the Web is involved. <br>
</p>
<p align="right"><em>Sponsor</em><br><a href="http://d1.openx.org/ck.php?n=15741&amp;cb=15741"><img src="http://d1.openx.org/avw.php?zoneid=11205&amp;cb=15741&amp;n=15741" border="0" alt="" align="right"></a></p>

<h2>How The Web Broke The Economy</h2>

<p><em>ReadWriteWeb:  I was particularly struck by how you position the Web as a way for individuals to create things of value for each other, as the door to an open source economy. Can you describe what exactly an open source economy would look like, and what role software and the Web have to play in that?</em></p>

<p>Douglas Rushkoff: This program written central banking and corporatist monopolies was created to favor people who had money and wanted to make money without creating value. Technology broke the monopoly centralized banking had on centralized value creation by allowing people to develop things at low cost. The gift economy that really the real Internet was built on is anathema to the GNP.</p>

<p><em>RWW: Will enterprise software the same trend? What role is there for business-to-business transactions in the decentralized economy you've laid out?</em></p>

<p>R: When I'm at the supermarket, every once in a while the cash register crashes and they restart it and they see Windows. I get the feeling that the manager and the cashier and everyone in there thinks that this shouldn't be running Windows. They're thinking, oh my god, they're using amateur-level software. You want to think that these are proprietary perfect registers. <br>
<img alt="RUSHKOFF_LifeIncCOVER.jpg" src="http://www.readwriteweb.com/enterprise/assets_c/2009/07/RUSHKOFF_LifeIncCOVER-thumb-200x304-6719.jpg" style="float:right;margin:0 0 20px 20px"><br>
My feeling is that businesses and the IT of business are going to want a higher order of quality. They are going to proprietary super-pro enterprise OS's. I feel business is going to want something like the business-only IBM computer, and I think that's not a bad thing.  </p>

<h2>Localized Currencies &amp; Technology</h2>
<em>RWW: You tell a fascinating story about investing in a local restaurant called Comfort, where you created "comfort dollars" that gave him cheaper capital and your community more food. Do you see that kind of special currencies as being viable for technology investment? Can the Internet be used for localized currency?</em>

<p>R: I certainly hope so. The great thing about software is that you don't need a bank because that's where all kind of bizarreness and corruption happen. But you do see every transaction; software is just really really good for that. You can see how money if flowing, how transactions are flowing. The problem with our economy is that when speculators ore extracting currency, money comes first. In a distributed system money is the result of transactions. </p>

<p>The main thing standing in the way of it is that people don't believe its possible. It's not they cant do it its that they can;t see it. It's like when you show someone Linux for the first time. </p>

<h2>A New, Collaborative Mindset</h2>
<em>RWW: In the book, you make a connection between the Renaissance, with both social change and the art and science that focused on the ideal of a single master painter or scientist, and the individualistic mindset that allows modern capitalism to function. Do you see social networks and collaborative software has having a comparable effect on our mindset?</em>

<p>R: Renaissances tend to reverse whatever the last one created. This one is towards decent partner collaboration and the sharing of value. So for sure, and we're going to get different kinds of discoveries. I think that the computer may be the most central thing to making all of this happen.</p>

<h2>A Word for Developers &amp; Entrepreneurs</h2>
<em>RWW: What message would you give to people who are going to be building the software to run this open source economy?</em>

<p>Rushkoff: My biggest message to them is this...There's this prevalent notion is that the reason you get involved is that you create a business that you then sell. I would argue that is not the path to greatest fulfillment, I would contend that it's not the path to the great technology. The less you borrow, the less you will be required to grow, and the closer you can stay you can stay to those growth metrics that are more appropriately scaled. </p>

<p><em>Life, Inc. is in bookstores now. If you're seeking a primer on the book and Rushkoff's conception of what corporatism means, be sure to watch the short Life, Inc. The Movie below</em></p>

<center><embed src="http://vimeo.com/moogaloop.swf?clip_id=4655092&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" allowFullScreen="true" allowScriptAccess="never" width="400" height="300" wmode="transparent" type="application/x-shockwave-flash"></embed></center>

<strong><a href="http://www.readwriteweb.com/enterprise/2009/07/douglas-rushkoffs-open-source-economy.php#comments-open">Discuss</a></strong><p><iframe src="http://feedads.g.doubleclick.net/~ah/f/bh8m03d07dnj95a0qa1ma5k32c/300/250?ca=1&amp;fh=280#http%3A%2F%2Fwww.readwriteweb.com%2Fenterprise%2F2009%2F07%2Fdouglas-rushkoffs-open-source-economy.php" width="100%" height="280" frameborder="0" scrolling="no" marginwidth="0" marginheight="0"></iframe></p><div>
<a href="http://feeds.feedburner.com/~ff/readwriteweb?a=UXqV37107LA:W10fD2H7fTY:Ij26kaj3iuU"><img src="http://feeds.feedburner.com/~ff/readwriteweb?d=Ij26kaj3iuU" border="0"></a> <a href="http://feeds.feedburner.com/~ff/readwriteweb?a=UXqV37107LA:W10fD2H7fTY:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/readwriteweb?d=yIl2AUoC8zA" border="0"></a> <a href="http://feeds.feedburner.com/~ff/readwriteweb?a=UXqV37107LA:W10fD2H7fTY:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/readwriteweb?i=UXqV37107LA:W10fD2H7fTY:V_sGLiPBpWU" border="0"></a> <a href="http://feeds.feedburner.com/~ff/readwriteweb?a=UXqV37107LA:W10fD2H7fTY:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/readwriteweb?i=UXqV37107LA:W10fD2H7fTY:gIN9vFwOqvQ" border="0"></a> <a href="http://feeds.feedburner.com/~ff/readwriteweb?a=UXqV37107LA:W10fD2H7fTY:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/readwriteweb?i=UXqV37107LA:W10fD2H7fTY:F7zBnMyn0Lo" border="0"></a> <a href="http://feeds.feedburner.com/~ff/readwriteweb?a=UXqV37107LA:W10fD2H7fTY:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/readwriteweb?d=qj6IDK7rITs" border="0"></a> <a href="http://feeds.feedburner.com/~ff/readwriteweb?a=UXqV37107LA:W10fD2H7fTY:OqabYuBsmOY"><img src="http://feeds.feedburner.com/~ff/readwriteweb?d=OqabYuBsmOY" border="0"></a>
</div><img src="http://feeds.feedburner.com/~r/readwriteweb/~4/UXqV37107LA" height="1" width="1"><br><br>Tags: <a href="http://www.croncast.com/keyg/economy">economy</a> <a href="http://www.technorati.com/tag/economy"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/economy.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/software">software</a> <a href="http://www.technorati.com/tag/software"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/software.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/money">money</a> <a href="http://www.technorati.com/tag/money"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/money.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/business">business</a> <a href="http://www.technorati.com/tag/business"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/business.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/rushkoff">rushkoff</a> <a href="http://www.technorati.com/tag/rushkoff"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/rushkoff.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></description><content:encoded><![CDATA[<p><img alt="rushkoffbiopicmed.jpg" src="http://www.readwriteweb.com/enterprise/assets_c/2009/07/rushkoffbiopicmed-thumb-150x100-6718.jpg">Douglas Rushkoff  author, speaker, and teacher  is a man on a mission. As a step towards getting &quot;people to see the software-like code lying underneath how they interact,&quot; his latest book, <em><a href="http://lifeincorporated.net/">Life, Inc.</a></em>, explores the nature of money, our economic system, and how a corporate mindset has shaped who we are as people in modern society. </p>

<p>As a media theorist who's written about some of the most influential ideas of the digital age, Rushkoff is second to none. In <em>Life Inc.</em>, he describes not just corporations, but how we all can change to an "open source economy" that favors decentralized value creation over banking and central currency. We spoke with to ask more about what this new economy would look like and how the Web is involved. <br>
</p>
<p align="right"><em>Sponsor</em><br><a href="http://d1.openx.org/ck.php?n=15741&amp;cb=15741"><img src="http://d1.openx.org/avw.php?zoneid=11205&amp;cb=15741&amp;n=15741" border="0" alt="" align="right"></a></p>

<h2>How The Web Broke The Economy</h2>

<p><em>ReadWriteWeb:  I was particularly struck by how you position the Web as a way for individuals to create things of value for each other, as the door to an open source economy. Can you describe what exactly an open source economy would look like, and what role software and the Web have to play in that?</em></p>

<p>Douglas Rushkoff: This program written central banking and corporatist monopolies was created to favor people who had money and wanted to make money without creating value. Technology broke the monopoly centralized banking had on centralized value creation by allowing people to develop things at low cost. The gift economy that really the real Internet was built on is anathema to the GNP.</p>

<p><em>RWW: Will enterprise software the same trend? What role is there for business-to-business transactions in the decentralized economy you've laid out?</em></p>

<p>R: When I'm at the supermarket, every once in a while the cash register crashes and they restart it and they see Windows. I get the feeling that the manager and the cashier and everyone in there thinks that this shouldn't be running Windows. They're thinking, oh my god, they're using amateur-level software. You want to think that these are proprietary perfect registers. <br>
<img alt="RUSHKOFF_LifeIncCOVER.jpg" src="http://www.readwriteweb.com/enterprise/assets_c/2009/07/RUSHKOFF_LifeIncCOVER-thumb-200x304-6719.jpg" style="float:right;margin:0 0 20px 20px"><br>
My feeling is that businesses and the IT of business are going to want a higher order of quality. They are going to proprietary super-pro enterprise OS's. I feel business is going to want something like the business-only IBM computer, and I think that's not a bad thing.  </p>

<h2>Localized Currencies &amp; Technology</h2>
<em>RWW: You tell a fascinating story about investing in a local restaurant called Comfort, where you created "comfort dollars" that gave him cheaper capital and your community more food. Do you see that kind of special currencies as being viable for technology investment? Can the Internet be used for localized currency?</em>

<p>R: I certainly hope so. The great thing about software is that you don't need a bank because that's where all kind of bizarreness and corruption happen. But you do see every transaction; software is just really really good for that. You can see how money if flowing, how transactions are flowing. The problem with our economy is that when speculators ore extracting currency, money comes first. In a distributed system money is the result of transactions. </p>

<p>The main thing standing in the way of it is that people don't believe its possible. It's not they cant do it its that they can;t see it. It's like when you show someone Linux for the first time. </p>

<h2>A New, Collaborative Mindset</h2>
<em>RWW: In the book, you make a connection between the Renaissance, with both social change and the art and science that focused on the ideal of a single master painter or scientist, and the individualistic mindset that allows modern capitalism to function. Do you see social networks and collaborative software has having a comparable effect on our mindset?</em>

<p>R: Renaissances tend to reverse whatever the last one created. This one is towards decent partner collaboration and the sharing of value. So for sure, and we're going to get different kinds of discoveries. I think that the computer may be the most central thing to making all of this happen.</p>

<h2>A Word for Developers &amp; Entrepreneurs</h2>
<em>RWW: What message would you give to people who are going to be building the software to run this open source economy?</em>

<p>Rushkoff: My biggest message to them is this...There's this prevalent notion is that the reason you get involved is that you create a business that you then sell. I would argue that is not the path to greatest fulfillment, I would contend that it's not the path to the great technology. The less you borrow, the less you will be required to grow, and the closer you can stay you can stay to those growth metrics that are more appropriately scaled. </p>

<p><em>Life, Inc. is in bookstores now. If you're seeking a primer on the book and Rushkoff's conception of what corporatism means, be sure to watch the short Life, Inc. The Movie below</em></p>

<center><embed src="http://vimeo.com/moogaloop.swf?clip_id=4655092&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" allowFullScreen="true" allowScriptAccess="never" width="400" height="300" wmode="transparent" type="application/x-shockwave-flash"></embed></center>

<strong><a href="http://www.readwriteweb.com/enterprise/2009/07/douglas-rushkoffs-open-source-economy.php#comments-open">Discuss</a></strong><p><iframe src="http://feedads.g.doubleclick.net/~ah/f/bh8m03d07dnj95a0qa1ma5k32c/300/250?ca=1&amp;fh=280#http%3A%2F%2Fwww.readwriteweb.com%2Fenterprise%2F2009%2F07%2Fdouglas-rushkoffs-open-source-economy.php" width="100%" height="280" frameborder="0" scrolling="no" marginwidth="0" marginheight="0"></iframe></p><div>
<a href="http://feeds.feedburner.com/~ff/readwriteweb?a=UXqV37107LA:W10fD2H7fTY:Ij26kaj3iuU"><img src="http://feeds.feedburner.com/~ff/readwriteweb?d=Ij26kaj3iuU" border="0"></a> <a href="http://feeds.feedburner.com/~ff/readwriteweb?a=UXqV37107LA:W10fD2H7fTY:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/readwriteweb?d=yIl2AUoC8zA" border="0"></a> <a href="http://feeds.feedburner.com/~ff/readwriteweb?a=UXqV37107LA:W10fD2H7fTY:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/readwriteweb?i=UXqV37107LA:W10fD2H7fTY:V_sGLiPBpWU" border="0"></a> <a href="http://feeds.feedburner.com/~ff/readwriteweb?a=UXqV37107LA:W10fD2H7fTY:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/readwriteweb?i=UXqV37107LA:W10fD2H7fTY:gIN9vFwOqvQ" border="0"></a> <a href="http://feeds.feedburner.com/~ff/readwriteweb?a=UXqV37107LA:W10fD2H7fTY:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/readwriteweb?i=UXqV37107LA:W10fD2H7fTY:F7zBnMyn0Lo" border="0"></a> <a href="http://feeds.feedburner.com/~ff/readwriteweb?a=UXqV37107LA:W10fD2H7fTY:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/readwriteweb?d=qj6IDK7rITs" border="0"></a> <a href="http://feeds.feedburner.com/~ff/readwriteweb?a=UXqV37107LA:W10fD2H7fTY:OqabYuBsmOY"><img src="http://feeds.feedburner.com/~ff/readwriteweb?d=OqabYuBsmOY" border="0"></a>
</div><img src="http://feeds.feedburner.com/~r/readwriteweb/~4/UXqV37107LA" height="1" width="1"><br><br>Tags: <a href="http://www.croncast.com/keyg/economy">economy</a> <a href="http://www.technorati.com/tag/economy"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/economy.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/software">software</a> <a href="http://www.technorati.com/tag/software"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/software.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/money">money</a> <a href="http://www.technorati.com/tag/money"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/money.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/business">business</a> <a href="http://www.technorati.com/tag/business"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/business.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/rushkoff">rushkoff</a> <a href="http://www.technorati.com/tag/rushkoff"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/rushkoff.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></content:encoded>

         <pubDate>Thu, 16 Jul 2009 19:15:00 -0400</pubDate>         <guid isPermaLink="false">tag:croncast.com,5210</guid>

			<itunes:subtitle/>
      </item>
      <item>
         <title>Will Facebook username squatting be a problem?</title>
         <link>http://feedproxy.google.com/~r/CyberlawCentral/~3/DJkFtvlzQjE/</link>
		 <category>Shared item</category>
			<description><![CDATA[<p>On June 13th, at Midnight eastern time, the social networking site Facebook will allow users, and administrators of fan pages with more than 1000 fans, to register vanity URLS.  Here are links <a href="http://blog.facebook.com/blog.php?post=90316352130">to the announcement</a> and to the <a href="http://www.facebook.com/note.php?note_id=91106469821&amp;ref=blog">FAQ for page administrators</a> about the process.</p>
<p>Trademark owners with registrations can register their trademarks with Facebook in order to block potentially infringing URLs from being created.  <a href="http://www.facebook.com/help/contact.php?show_form=username_rights">Here is a link to the submission page</a>. </p>
<p>We shall see if this actually becomes an issue similar to cybersquatting in domain names, but due to the shortness of time between now and the 13th I'm posting the information here to help get the word out.  Please let me know in the comments below what you think of this process and how Facebook has handled it.  Personally, it would have been nice for there to have been more notice.</p>
<div>
<a href="http://feeds2.feedburner.com/~ff/CyberlawCentral?a=DJkFtvlzQjE:xo5h7ovlQPQ:yIl2AUoC8zA"><img src="http://feeds2.feedburner.com/~ff/CyberlawCentral?d=yIl2AUoC8zA" border="0"></a> <a href="http://feeds2.feedburner.com/~ff/CyberlawCentral?a=DJkFtvlzQjE:xo5h7ovlQPQ:dnMXMwOfBR0"><img src="http://feeds2.feedburner.com/~ff/CyberlawCentral?d=dnMXMwOfBR0" border="0"></a> <a href="http://feeds2.feedburner.com/~ff/CyberlawCentral?a=DJkFtvlzQjE:xo5h7ovlQPQ:aKCwKftKxY0"><img src="http://feeds2.feedburner.com/~ff/CyberlawCentral?i=DJkFtvlzQjE:xo5h7ovlQPQ:aKCwKftKxY0" border="0"></a> <a href="http://feeds2.feedburner.com/~ff/CyberlawCentral?a=DJkFtvlzQjE:xo5h7ovlQPQ:7Q72WNTAKBA"><img src="http://feeds2.feedburner.com/~ff/CyberlawCentral?d=7Q72WNTAKBA" border="0"></a> <a href="http://feeds2.feedburner.com/~ff/CyberlawCentral?a=DJkFtvlzQjE:xo5h7ovlQPQ:YwkR-u9nhCs"><img src="http://feeds2.feedburner.com/~ff/CyberlawCentral?d=YwkR-u9nhCs" border="0"></a>
</div><br><br>Tags: <a href="http://www.croncast.com/keyg/facebook">facebook</a> <a href="http://www.technorati.com/tag/facebook"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/facebook.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/urls">urls</a> <a href="http://www.technorati.com/tag/urls"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/urls.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/administrators">administrators</a> <a href="http://www.technorati.com/tag/administrators"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/administrators.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/register">register</a> <a href="http://www.technorati.com/tag/register"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/register.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/process">process</a> <a href="http://www.technorati.com/tag/process"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/process.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></description><content:encoded><![CDATA[<p>On June 13th, at Midnight eastern time, the social networking site Facebook will allow users, and administrators of fan pages with more than 1000 fans, to register vanity URLS.  Here are links <a href="http://blog.facebook.com/blog.php?post=90316352130">to the announcement</a> and to the <a href="http://www.facebook.com/note.php?note_id=91106469821&amp;ref=blog">FAQ for page administrators</a> about the process.</p>
<p>Trademark owners with registrations can register their trademarks with Facebook in order to block potentially infringing URLs from being created.  <a href="http://www.facebook.com/help/contact.php?show_form=username_rights">Here is a link to the submission page</a>. </p>
<p>We shall see if this actually becomes an issue similar to cybersquatting in domain names, but due to the shortness of time between now and the 13th I'm posting the information here to help get the word out.  Please let me know in the comments below what you think of this process and how Facebook has handled it.  Personally, it would have been nice for there to have been more notice.</p>
<div>
<a href="http://feeds2.feedburner.com/~ff/CyberlawCentral?a=DJkFtvlzQjE:xo5h7ovlQPQ:yIl2AUoC8zA"><img src="http://feeds2.feedburner.com/~ff/CyberlawCentral?d=yIl2AUoC8zA" border="0"></a> <a href="http://feeds2.feedburner.com/~ff/CyberlawCentral?a=DJkFtvlzQjE:xo5h7ovlQPQ:dnMXMwOfBR0"><img src="http://feeds2.feedburner.com/~ff/CyberlawCentral?d=dnMXMwOfBR0" border="0"></a> <a href="http://feeds2.feedburner.com/~ff/CyberlawCentral?a=DJkFtvlzQjE:xo5h7ovlQPQ:aKCwKftKxY0"><img src="http://feeds2.feedburner.com/~ff/CyberlawCentral?i=DJkFtvlzQjE:xo5h7ovlQPQ:aKCwKftKxY0" border="0"></a> <a href="http://feeds2.feedburner.com/~ff/CyberlawCentral?a=DJkFtvlzQjE:xo5h7ovlQPQ:7Q72WNTAKBA"><img src="http://feeds2.feedburner.com/~ff/CyberlawCentral?d=7Q72WNTAKBA" border="0"></a> <a href="http://feeds2.feedburner.com/~ff/CyberlawCentral?a=DJkFtvlzQjE:xo5h7ovlQPQ:YwkR-u9nhCs"><img src="http://feeds2.feedburner.com/~ff/CyberlawCentral?d=YwkR-u9nhCs" border="0"></a>
</div><br><br>Tags: <a href="http://www.croncast.com/keyg/facebook">facebook</a> <a href="http://www.technorati.com/tag/facebook"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/facebook.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/urls">urls</a> <a href="http://www.technorati.com/tag/urls"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/urls.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/administrators">administrators</a> <a href="http://www.technorati.com/tag/administrators"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/administrators.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/register">register</a> <a href="http://www.technorati.com/tag/register"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/register.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/process">process</a> <a href="http://www.technorati.com/tag/process"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/process.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></content:encoded>

         <pubDate>Thu, 11 Jun 2009 14:05:15 -0400</pubDate>         <guid isPermaLink="false">tag:croncast.com,5031</guid>

			<itunes:subtitle/>
      </item>
      <item>
         <title>Contributory Cybersquatting and the Impending Demise of Domain Name Proxy Services?--Solid Host v. NameCheap</title>
         <link>http://blog.ericgoldman.org/archives/2009/05/contributory_cy.htm</link>
		 <category>Shared item</category>
			<description><![CDATA[<p>By Eric Goldman</p>

<p><a href="http://claranet.scu.edu/eres/documentview.aspx?associd=33329">Solid Host, NL v. NameCheap, Inc.</a>, 2:08-cv-05414-MMM-E (C.D. Cal. May 19, 2009)</p>

<p><strong>Facts</strong></p>

<p>This case involves an alleged domain name theft.  Solid Host is a web host and initial owner of the domain name solidhost.com, which it registered through eNom in 2004.  Solid Host claims that in 2008, a security breach at eNom allowed an unknown interloper (Doe) to steal the domain name and move the registration to NameCheap.  Doe also acquired NameCheap's "WhoisGuard" service, a domain name proxy service that masked Doe's contact information in the Whois database.  Solid Host contacted Doe and sought the domain name; Doe asked for $12,000, and Solid Host took a pass.  Instead, Solid Host demanded that NameCheap hand back the domain name and identify Doe, but Doe claimed that he had bought the domain name legitimately.  NameCheap, apparently feeling like the cheese in a sandwich, demurred to Solid Host's requests.  Solid Host then got a TRO ordering NameCheap to transfer the name and reveal Doe's identity, both of which occurred.  For unclear reasons, Solid Host hasn't amended the complaint to name the Doe, but it is proceeding against NameCheap on various claims, including an Anti-Cybersquatting Consumer Protection Act (ACPA) claim.</p>

<p><strong>The Opinion</strong></p>

<p><em>Who is the Registrant?</em></p>

<p>My understanding of domain name proxy services is that the service acts as the legal registrant, thus supplying its contact information, but it registers the domain name for the benefit of its customer, making the customer the beneficial registrant.  An analogy: a bank may take legal title of a property as part of securing a loan on the property, but the borrower retains beneficial title to the property.</p>

<p>So, for purposes of the ACPA, is the proxy service the registrant of the domain name?  ICANN's agreement with registrars seemingly contemplates this characterization in Section 3.7.7.3 of its <a href="http://www.icann.org/en/registrars/ra-agreement-17may01.htm">Registrar Agreement</a>, which says A Registered Name Holder licensing use of a Registered Name according to this provision shall accept liability for harm caused by wrongful use of the Registered Name, unless it promptly discloses the identity of the licensee to a party providing the Registered Name Holder reasonable evidence of actionable harm.  However, it's not clear to me that a proxy service licenses the domain name, especially if you accept my lender-borrower analogy above.  Alternatively, if the proxy service is the agent of the customer, the licensing analogy also breaks down.</p>

<p>Whether the proxy service is the registrant matters a great deal to the legal outcome, and unfortunately, the court's analysis of this important question was cursory, muddled, and possibly internally inconsistent.  </p>

<p>In this case, the court's inquiry is made more difficult by the fact that NameCheap acted as both the registrar and the proxy service provider.  As a registrar, an ACPA claim against NameCheap should be squarely preempted by the domain name registry/registrar safe harbor enacted as part of the ACPA (15 U.S.C.  1114(2)(D)).  For example, 1114(2)(D)(iii) says:</p>

<blockquote>A domain name registrar, a domain name registry, or other domain name registration authority shall not be liable for damages under this section for the registration or maintenance of a domain name for another absent a showing of bad faith intent to profit from such registration or maintenance of the domain name</blockquote>

<p>(This provision only moots damages, not an injunction, but since Solid Host has the domain name back in its possession, damages seem like the only remaining issue).</p>

<p>The court concludes that NameCheap is not eligible for the domain name registrar safe harbor because NameCheap is the domain name <em>registrant</em>.  It says, "NameCheap is, by virtue of the anonymity service it provides, the registrant of a domain name that allegedly infringes Sold [sic] Host's trademark."  Thus, NameCheap is ineligible for the registrar safe harbor, which applies only when the registrar acts as a registrar.</p>

<p>But, having rejected the domain name registrar safe harbor because NameCheap was the domain name registrant, the court then inconsistently says that NameCheap is not the registrant for purposes of the prima facie ACPA claim.  Instead, for ACPA purposes the court treats Doe as the registrant, leaving NameCheap exposed to a possible secondary ACPA liability claim.  (The court acknowledges that NameCheap would defeat a direct ACPA claim because NameCheap did not have any bad faith intent to profit from the domain name.  Offering the proxy service wasn't enough to qualify as a bad faith intent to profit).  </p>

<p>Wait a minutehow can NameCheap simultaneously be both the registrant (no safe harbor) but not the registrant (thus, subjected to a secondary claim)?  The court does not acknowledge or explain this apparent inconsistency.</p>

<p><em>Contributory Cybersquatting</em></p>

<p>Courts have rarely discussed a contributory ACPA claim.  The only one cited by the court was a 2001 case (the <a href="http://w2.eff.org/legal/cases/Ford_v_GreatDomains/">Ford Motors vs. Greatdomains.com</a> case) and I can't think of any others.  Perhaps this isn't surprising because (1) as the Greatdomains.com case indicated, a contributory ACPA claim is available "in only exceptional circumstances," and (2) registrars are the most likely targets of a contributory ACPA claim, and the domain name registrar safe harbor effectively eliminates their contributory ACPA liability.</p>

<p>Adopting the analysis in the Greatdomains.com case, this court equates contributory ACPA liabilty with the Ninth Circuit's 1999 Lockheed standard for online contributory trademark infringement (as opposed to ACPA liability), which requires that "a plaintiff must prove that the defendant had knowledge and [d]irect control and monitoring of the instrumentality used by the third party to infringe the plaintiff's mark.'"</p>

<p>So how did NameCheap have the requisite control over Doe's instrumentalities?  Good question.  The court tosses out this gem: NameCheap was "the cyber-landlord of the internet real estate stolen by Doe."  WHAT???  The court continues:</p>

<blockquote>NameCheap's anonymity service was central to Doe's cybersquatting scheme. If NameCheap had returned the domain name to Solid Host, Doe's illegal activity would have ceased.</blockquote>

<p>The second sentence is true with respect to NameCheap, but it is also true of every registrar for every domain name they register--and we know from the 1999 Lockheed case that registrars lack control over the instrumentalities of their registrants.  So the proxy service seems to make a legal difference, but how does the proxy service evidence NameCheap's greater control over the registrant's instrumentalities?  I think something is amiss here.</p>

<p>To complete the prima facie contributory ACPA claim, in addition to control, Solid Host must show that NameCheap has the requisite knowledge of Doe's ACPA violation.  The court sets a high scienter bar--mere notice from an aggrieved party isn't enough--but the court conclusorily says that the complaint alleged enough knowledge to survive the motion to dismiss.</p>

<p><strong>Why This is a Troubling Ruling</strong></p>

<p>As I trust is clear, I think the court's analysis is questionable at best.  I'm also troubled about the normative implications.  Most obviously, this case could portend the deminse of domain name proxy services.  Read literally, every proxy service is exposed to potential contributory ACPA liability for every domain name it services.  I can't imagine proxy service providers will be excited about that liability exposure, and some may choose to exit the business.<br>
 <br>
If proxy services evaporate, domain name registrants will have a tougher time maintaining their privacy.  This could affect at least two groups.  First, businesses seeking to register domain names for unlaunched new brands often want to procure the new brand's domain names without publicly announcing their intentions through the Whois database.  (Of course, some businesses register such domain name through agents or shell companies, but at a much greater expense than a proxy service).  Second, gripers, whistleblowers, critics and others may want to use proxy services to make it harder for their targets to unmask their identities.  This ruling jeopardizes the potential privacy options available to both groups.</p>

<p>I'm also troubled by this ruling's narrow reading of the domain name registrar safe harbors.  There haven't been many cases interpreting those safe harbors, and this case might influence other courts to read them narrowly.</p>

<p><strong>A Mini-Trend of Lawsuits Against Registrars</strong></p>

<p>I've noticed a small but troubling increase in lawsuits against domain name registrars in the past few months.  In addition to this case, see the <a href="http://blog.ericgoldman.org/archives/2007/06/google_sued_in.htm">Vulcan Golf v. Google lawsuit</a> (which named some registrars as defendants), <a href="http://blog.ericgoldman.org/archives/2009/01/onlinenic_loses.htm">OnlineNIC cases</a>, <a href="http://blog.ericgoldman.org/archives/2009/02/domaining_regis.htm">Philbrick v. eNom</a> and <a href="http://blog.ericgoldman.org/archives/2009/04/godaddy_sued_fo.htm">uBid v. GoDaddy</a>.  Personally, I believe this litigation trend mirrors the expansion of new and legally untested non-registration services offered by registrars.  I explored this issue with <a href="http://www.tucowsinc.com/aboutus/management.php">Elliot Noss of Tucows</a> in the most recent installment of <a href="http://twit.tv/twil24">TWiL</a> (worth listening to, IMO).  Discussing the uBid lawsuit, Elliott explained how registrars monetize dropped domain names before being returned to the available pool of unregistered domain names.  The delay is putatively for the benefit of customers who mistakenly let a registration lapse; but this also has the happy (?) by-product of letting registrars create new ad inventory that they are monetizing.</p>

<p>In the past, a lot of the legal attention regarding domain names has focused on trademark owners vs. registrants.  From my perspective, those lawsuits are becoming pass.  The real litigation growth industry appears to be trademark owner vs. registrar lawsuits over new registrar service offerings that trademark owners don't like.  Rulings like this one, with a broad reading of contributory ACPA liability and a narrow reading of the domain name registrar safe harbor, raise the specter that registrars may find more legal trouble than they anticipated.</p><br><br>Tags: <a href="http://www.croncast.com/keyg/name">name</a> <a href="http://www.technorati.com/tag/name"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/name.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/domain">domain</a> <a href="http://www.technorati.com/tag/domain"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/domain.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/namecheap">namecheap</a> <a href="http://www.technorati.com/tag/namecheap"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/namecheap.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/acpa">acpa</a> <a href="http://www.technorati.com/tag/acpa"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/acpa.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/proxy">proxy</a> <a href="http://www.technorati.com/tag/proxy"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/proxy.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></description><content:encoded><![CDATA[<p>By Eric Goldman</p>

<p><a href="http://claranet.scu.edu/eres/documentview.aspx?associd=33329">Solid Host, NL v. NameCheap, Inc.</a>, 2:08-cv-05414-MMM-E (C.D. Cal. May 19, 2009)</p>

<p><strong>Facts</strong></p>

<p>This case involves an alleged domain name theft.  Solid Host is a web host and initial owner of the domain name solidhost.com, which it registered through eNom in 2004.  Solid Host claims that in 2008, a security breach at eNom allowed an unknown interloper (Doe) to steal the domain name and move the registration to NameCheap.  Doe also acquired NameCheap's "WhoisGuard" service, a domain name proxy service that masked Doe's contact information in the Whois database.  Solid Host contacted Doe and sought the domain name; Doe asked for $12,000, and Solid Host took a pass.  Instead, Solid Host demanded that NameCheap hand back the domain name and identify Doe, but Doe claimed that he had bought the domain name legitimately.  NameCheap, apparently feeling like the cheese in a sandwich, demurred to Solid Host's requests.  Solid Host then got a TRO ordering NameCheap to transfer the name and reveal Doe's identity, both of which occurred.  For unclear reasons, Solid Host hasn't amended the complaint to name the Doe, but it is proceeding against NameCheap on various claims, including an Anti-Cybersquatting Consumer Protection Act (ACPA) claim.</p>

<p><strong>The Opinion</strong></p>

<p><em>Who is the Registrant?</em></p>

<p>My understanding of domain name proxy services is that the service acts as the legal registrant, thus supplying its contact information, but it registers the domain name for the benefit of its customer, making the customer the beneficial registrant.  An analogy: a bank may take legal title of a property as part of securing a loan on the property, but the borrower retains beneficial title to the property.</p>

<p>So, for purposes of the ACPA, is the proxy service the registrant of the domain name?  ICANN's agreement with registrars seemingly contemplates this characterization in Section 3.7.7.3 of its <a href="http://www.icann.org/en/registrars/ra-agreement-17may01.htm">Registrar Agreement</a>, which says A Registered Name Holder licensing use of a Registered Name according to this provision shall accept liability for harm caused by wrongful use of the Registered Name, unless it promptly discloses the identity of the licensee to a party providing the Registered Name Holder reasonable evidence of actionable harm.  However, it's not clear to me that a proxy service licenses the domain name, especially if you accept my lender-borrower analogy above.  Alternatively, if the proxy service is the agent of the customer, the licensing analogy also breaks down.</p>

<p>Whether the proxy service is the registrant matters a great deal to the legal outcome, and unfortunately, the court's analysis of this important question was cursory, muddled, and possibly internally inconsistent.  </p>

<p>In this case, the court's inquiry is made more difficult by the fact that NameCheap acted as both the registrar and the proxy service provider.  As a registrar, an ACPA claim against NameCheap should be squarely preempted by the domain name registry/registrar safe harbor enacted as part of the ACPA (15 U.S.C.  1114(2)(D)).  For example, 1114(2)(D)(iii) says:</p>

<blockquote>A domain name registrar, a domain name registry, or other domain name registration authority shall not be liable for damages under this section for the registration or maintenance of a domain name for another absent a showing of bad faith intent to profit from such registration or maintenance of the domain name</blockquote>

<p>(This provision only moots damages, not an injunction, but since Solid Host has the domain name back in its possession, damages seem like the only remaining issue).</p>

<p>The court concludes that NameCheap is not eligible for the domain name registrar safe harbor because NameCheap is the domain name <em>registrant</em>.  It says, "NameCheap is, by virtue of the anonymity service it provides, the registrant of a domain name that allegedly infringes Sold [sic] Host's trademark."  Thus, NameCheap is ineligible for the registrar safe harbor, which applies only when the registrar acts as a registrar.</p>

<p>But, having rejected the domain name registrar safe harbor because NameCheap was the domain name registrant, the court then inconsistently says that NameCheap is not the registrant for purposes of the prima facie ACPA claim.  Instead, for ACPA purposes the court treats Doe as the registrant, leaving NameCheap exposed to a possible secondary ACPA liability claim.  (The court acknowledges that NameCheap would defeat a direct ACPA claim because NameCheap did not have any bad faith intent to profit from the domain name.  Offering the proxy service wasn't enough to qualify as a bad faith intent to profit).  </p>

<p>Wait a minutehow can NameCheap simultaneously be both the registrant (no safe harbor) but not the registrant (thus, subjected to a secondary claim)?  The court does not acknowledge or explain this apparent inconsistency.</p>

<p><em>Contributory Cybersquatting</em></p>

<p>Courts have rarely discussed a contributory ACPA claim.  The only one cited by the court was a 2001 case (the <a href="http://w2.eff.org/legal/cases/Ford_v_GreatDomains/">Ford Motors vs. Greatdomains.com</a> case) and I can't think of any others.  Perhaps this isn't surprising because (1) as the Greatdomains.com case indicated, a contributory ACPA claim is available "in only exceptional circumstances," and (2) registrars are the most likely targets of a contributory ACPA claim, and the domain name registrar safe harbor effectively eliminates their contributory ACPA liability.</p>

<p>Adopting the analysis in the Greatdomains.com case, this court equates contributory ACPA liabilty with the Ninth Circuit's 1999 Lockheed standard for online contributory trademark infringement (as opposed to ACPA liability), which requires that "a plaintiff must prove that the defendant had knowledge and [d]irect control and monitoring of the instrumentality used by the third party to infringe the plaintiff's mark.'"</p>

<p>So how did NameCheap have the requisite control over Doe's instrumentalities?  Good question.  The court tosses out this gem: NameCheap was "the cyber-landlord of the internet real estate stolen by Doe."  WHAT???  The court continues:</p>

<blockquote>NameCheap's anonymity service was central to Doe's cybersquatting scheme. If NameCheap had returned the domain name to Solid Host, Doe's illegal activity would have ceased.</blockquote>

<p>The second sentence is true with respect to NameCheap, but it is also true of every registrar for every domain name they register--and we know from the 1999 Lockheed case that registrars lack control over the instrumentalities of their registrants.  So the proxy service seems to make a legal difference, but how does the proxy service evidence NameCheap's greater control over the registrant's instrumentalities?  I think something is amiss here.</p>

<p>To complete the prima facie contributory ACPA claim, in addition to control, Solid Host must show that NameCheap has the requisite knowledge of Doe's ACPA violation.  The court sets a high scienter bar--mere notice from an aggrieved party isn't enough--but the court conclusorily says that the complaint alleged enough knowledge to survive the motion to dismiss.</p>

<p><strong>Why This is a Troubling Ruling</strong></p>

<p>As I trust is clear, I think the court's analysis is questionable at best.  I'm also troubled about the normative implications.  Most obviously, this case could portend the deminse of domain name proxy services.  Read literally, every proxy service is exposed to potential contributory ACPA liability for every domain name it services.  I can't imagine proxy service providers will be excited about that liability exposure, and some may choose to exit the business.<br>
 <br>
If proxy services evaporate, domain name registrants will have a tougher time maintaining their privacy.  This could affect at least two groups.  First, businesses seeking to register domain names for unlaunched new brands often want to procure the new brand's domain names without publicly announcing their intentions through the Whois database.  (Of course, some businesses register such domain name through agents or shell companies, but at a much greater expense than a proxy service).  Second, gripers, whistleblowers, critics and others may want to use proxy services to make it harder for their targets to unmask their identities.  This ruling jeopardizes the potential privacy options available to both groups.</p>

<p>I'm also troubled by this ruling's narrow reading of the domain name registrar safe harbors.  There haven't been many cases interpreting those safe harbors, and this case might influence other courts to read them narrowly.</p>

<p><strong>A Mini-Trend of Lawsuits Against Registrars</strong></p>

<p>I've noticed a small but troubling increase in lawsuits against domain name registrars in the past few months.  In addition to this case, see the <a href="http://blog.ericgoldman.org/archives/2007/06/google_sued_in.htm">Vulcan Golf v. Google lawsuit</a> (which named some registrars as defendants), <a href="http://blog.ericgoldman.org/archives/2009/01/onlinenic_loses.htm">OnlineNIC cases</a>, <a href="http://blog.ericgoldman.org/archives/2009/02/domaining_regis.htm">Philbrick v. eNom</a> and <a href="http://blog.ericgoldman.org/archives/2009/04/godaddy_sued_fo.htm">uBid v. GoDaddy</a>.  Personally, I believe this litigation trend mirrors the expansion of new and legally untested non-registration services offered by registrars.  I explored this issue with <a href="http://www.tucowsinc.com/aboutus/management.php">Elliot Noss of Tucows</a> in the most recent installment of <a href="http://twit.tv/twil24">TWiL</a> (worth listening to, IMO).  Discussing the uBid lawsuit, Elliott explained how registrars monetize dropped domain names before being returned to the available pool of unregistered domain names.  The delay is putatively for the benefit of customers who mistakenly let a registration lapse; but this also has the happy (?) by-product of letting registrars create new ad inventory that they are monetizing.</p>

<p>In the past, a lot of the legal attention regarding domain names has focused on trademark owners vs. registrants.  From my perspective, those lawsuits are becoming pass.  The real litigation growth industry appears to be trademark owner vs. registrar lawsuits over new registrar service offerings that trademark owners don't like.  Rulings like this one, with a broad reading of contributory ACPA liability and a narrow reading of the domain name registrar safe harbor, raise the specter that registrars may find more legal trouble than they anticipated.</p><br><br>Tags: <a href="http://www.croncast.com/keyg/name">name</a> <a href="http://www.technorati.com/tag/name"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/name.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/domain">domain</a> <a href="http://www.technorati.com/tag/domain"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/domain.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/namecheap">namecheap</a> <a href="http://www.technorati.com/tag/namecheap"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/namecheap.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/acpa">acpa</a> <a href="http://www.technorati.com/tag/acpa"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/acpa.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/proxy">proxy</a> <a href="http://www.technorati.com/tag/proxy"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/proxy.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></content:encoded>

         <pubDate>Thu, 28 May 2009 23:27:15 -0400</pubDate>         <guid isPermaLink="false">tag:croncast.com,5000</guid>

			<itunes:subtitle/>
      </item>
      <item>
         <title>Clickwrapped and Browsewrapped - Court Rejects Attorney Plaintiff's Challenge to Travel Site Terms and Conditions</title>
         <link>http://feeds.lexblog.com/~r/NewMediaAndTechnologyLaw/~3/1Clt6yX4mW4/</link>
		 <category>Shared item</category>
			<description><![CDATA[<p>Case law has developed over the years with respect to enforceability of Web site terms and conditions, and the general parameters are now pretty well understood. Courts will, in general, enforce online terms and conditions against consumer users, provided they are given adequate notice and an opportunity for review. <br>
<br>
There are numerous exceptions to the general rule, however. Courts often refuse to enforce specific terms in Web site terms and conditions against consumers, particularly where those terms involve class action waivers, arbitration requirements, inconvenient forum choices, and like provisions. <br>
<br>
The case of <a href="http://www.scribd.com/doc/13857293/BurchamvExpedia030609">Burcham v. Expedia</a>, involving a <em>pro se</em> attorney's challenge to the enforceability of the Expedia travel site terms and conditions, is not one of those exceptions.</p><p>The pro se attorney plaintiff in Burcham v. Expedia brought suit against the travel site under Missouri consumer law, claiming that Expedia knowingly misrepresented the hotel amenities for a room that he booked on the site. He sought $5 million in damages and class certification. <br>
<br>
It didn't help the court's view of the case that the room was booked for a hotel in Missouri in November, and one of the amenities that Burcham claimed was absent when he and his children arrived at the hotel was an outdoor swimming pool. Fair enough, Burcham also claimed that the hotel lacked an indoor swimming pool, conference room, restaurant and bar/lounge. But the court pointed out that Burcham's complaint did not allege that he or his children wished to use any of the absent amenities. <br>
<br>
Burcham was off to a bad start.<br>
<br>
Expedia moved to dismiss Burcham's complaint, relying on the forum selection provision that specified Kings County, Washington as the proper venue. Expedia submitted evidence showing multiple versions of its terms of use, including the current and past versions, which the court concluded contained the same material terms. <br>
<br>
Expedia also established by affidavit that Burcham&#39;s booking had been made by a process under which the user was presented with a legend stating: &quot;By continuing on you agree to the following terms and conditions.&quot; Beneath the legend, the full text of the terms and conditions was displayed. In order to book a room, the user was required to click on the &quot;continue&quot; button.<br>
<br>
Confronted with this evidence, Burcham argued that he simply did not remember seeing the terms and conditions when he used the Expedia site. He suggested that he may have used the site from a shared computer at his law office without checking to see if the prior user of the computer was already logged onto the site. Thus, he argued, the prior user may have clicked past the terms and conditions, but they were never presented to him. <br>
<br>
The court briefly reviewed the relevant case law (e.g., <a href="http://www.scribd.com/doc/13857574/SpechtvNetscape100102">Specht v. Netscape</a>, <a href="http://www.icann.org/en/registrars/register.com-verio/decision-23jan04.pdf">Register.com v. Verio</a>, <a href="http://www.scribd.com/doc/282328/ProCD-v-Zeidenberg-7th-1996-86-f3d-1447">ProCD v. Zeidenberg</a>) and the distinctions between clickwrap, shrinkwrap and browsewrap agreements, and quickly concluded that Expedia had an &quot;enforceable online clickwrap agreement&quot; with Burcham. Burcham&#39;s argument that he never saw the terms and conditions was dismissed both on the facts and the law. <br>
<br>
On the facts, the court found, Burcham offered no evidence to support his &quot;clever theory&quot; that someone else clicked past the terms and conditions, and the undisputed facts showed that the user account created at the time the terms and conditions were assented to was associated with Burcham&#39;s own e-mail address. On the law, the court concluded that if Burcham in fact had accessed the Web site under someone else&#39;s account, he was still bound by the terms and conditions to which that user had assented, citing, e.g., <a href="http://www.scribd.com/doc/13857572/Motise-v-America-Online-113004">Motise v. America Online, Inc.</a>, 346 F.Supp. 2d 563 (S.D.N.Y. 2004) (individual using the online account of another user bound by the same terms and conditions as the account owner).<br>
<br>
Burcham also tripped over the evidence he himself submitted to the court along with his brief. The court noted that the Expedia Web pages Burcham submitted as exhibits contained a hyperlink at the bottom to the full text of the Expedia terms and conditions. The court noted that the terms and conditions stated that users of the site consent to be bound by those terms and conditions by accessing and using the Web site. Thus, the court concluded, even if Burcham wasn't clickwrapped, he was browsewrapped.<br>
<br>
Finally, the court quickly dismissed Burcham's arguments that the forum selection provision was unreasonable and in contravention of Missouri public policy and that the contract as a whole was one of adhesion.<br>
<br>
The ruling in Burcham v. Expedia is a win for the enforceability of online agreements, and another loss for pro se attorney plaintiffs for whom courts seem to have little sympathy. See, e.g., <a href="http://www.scribd.com/doc/13857571/Field-v-Google-011906">Field v. Google</a>, 412 F.Supp. 2d 1106 (D. Nev. 2006) (rejecting pro se attorney plaintiff&#39;s &quot;manufactured&quot; copyright infringement claim based on Google Web crawling and caching).</p>
<p><a href="http://www.scribd.com/doc/13857293/BurchamvExpedia030609">Burcham v. Expedia, Inc.</a>, 2009 U.S. Dist. LEXIS 17104 (E.D. Mo. Mar. 6, 2009)</p><img src="http://feeds2.feedburner.com/~r/NewMediaAndTechnologyLaw/~4/1Clt6yX4mW4" height="1" width="1"><br><br>Tags: <a href="http://www.croncast.com/keyg/terms">terms</a> <a href="http://www.technorati.com/tag/terms"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/terms.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/burcham">burcham</a> <a href="http://www.technorati.com/tag/burcham"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/burcham.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/conditions">conditions</a> <a href="http://www.technorati.com/tag/conditions"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/conditions.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/expedia">expedia</a> <a href="http://www.technorati.com/tag/expedia"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/expedia.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/court">court</a> <a href="http://www.technorati.com/tag/court"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/court.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></description><content:encoded><![CDATA[<p>Case law has developed over the years with respect to enforceability of Web site terms and conditions, and the general parameters are now pretty well understood. Courts will, in general, enforce online terms and conditions against consumer users, provided they are given adequate notice and an opportunity for review. <br>
<br>
There are numerous exceptions to the general rule, however. Courts often refuse to enforce specific terms in Web site terms and conditions against consumers, particularly where those terms involve class action waivers, arbitration requirements, inconvenient forum choices, and like provisions. <br>
<br>
The case of <a href="http://www.scribd.com/doc/13857293/BurchamvExpedia030609">Burcham v. Expedia</a>, involving a <em>pro se</em> attorney's challenge to the enforceability of the Expedia travel site terms and conditions, is not one of those exceptions.</p><p>The pro se attorney plaintiff in Burcham v. Expedia brought suit against the travel site under Missouri consumer law, claiming that Expedia knowingly misrepresented the hotel amenities for a room that he booked on the site. He sought $5 million in damages and class certification. <br>
<br>
It didn't help the court's view of the case that the room was booked for a hotel in Missouri in November, and one of the amenities that Burcham claimed was absent when he and his children arrived at the hotel was an outdoor swimming pool. Fair enough, Burcham also claimed that the hotel lacked an indoor swimming pool, conference room, restaurant and bar/lounge. But the court pointed out that Burcham's complaint did not allege that he or his children wished to use any of the absent amenities. <br>
<br>
Burcham was off to a bad start.<br>
<br>
Expedia moved to dismiss Burcham's complaint, relying on the forum selection provision that specified Kings County, Washington as the proper venue. Expedia submitted evidence showing multiple versions of its terms of use, including the current and past versions, which the court concluded contained the same material terms. <br>
<br>
Expedia also established by affidavit that Burcham&#39;s booking had been made by a process under which the user was presented with a legend stating: &quot;By continuing on you agree to the following terms and conditions.&quot; Beneath the legend, the full text of the terms and conditions was displayed. In order to book a room, the user was required to click on the &quot;continue&quot; button.<br>
<br>
Confronted with this evidence, Burcham argued that he simply did not remember seeing the terms and conditions when he used the Expedia site. He suggested that he may have used the site from a shared computer at his law office without checking to see if the prior user of the computer was already logged onto the site. Thus, he argued, the prior user may have clicked past the terms and conditions, but they were never presented to him. <br>
<br>
The court briefly reviewed the relevant case law (e.g., <a href="http://www.scribd.com/doc/13857574/SpechtvNetscape100102">Specht v. Netscape</a>, <a href="http://www.icann.org/en/registrars/register.com-verio/decision-23jan04.pdf">Register.com v. Verio</a>, <a href="http://www.scribd.com/doc/282328/ProCD-v-Zeidenberg-7th-1996-86-f3d-1447">ProCD v. Zeidenberg</a>) and the distinctions between clickwrap, shrinkwrap and browsewrap agreements, and quickly concluded that Expedia had an &quot;enforceable online clickwrap agreement&quot; with Burcham. Burcham&#39;s argument that he never saw the terms and conditions was dismissed both on the facts and the law. <br>
<br>
On the facts, the court found, Burcham offered no evidence to support his &quot;clever theory&quot; that someone else clicked past the terms and conditions, and the undisputed facts showed that the user account created at the time the terms and conditions were assented to was associated with Burcham&#39;s own e-mail address. On the law, the court concluded that if Burcham in fact had accessed the Web site under someone else&#39;s account, he was still bound by the terms and conditions to which that user had assented, citing, e.g., <a href="http://www.scribd.com/doc/13857572/Motise-v-America-Online-113004">Motise v. America Online, Inc.</a>, 346 F.Supp. 2d 563 (S.D.N.Y. 2004) (individual using the online account of another user bound by the same terms and conditions as the account owner).<br>
<br>
Burcham also tripped over the evidence he himself submitted to the court along with his brief. The court noted that the Expedia Web pages Burcham submitted as exhibits contained a hyperlink at the bottom to the full text of the Expedia terms and conditions. The court noted that the terms and conditions stated that users of the site consent to be bound by those terms and conditions by accessing and using the Web site. Thus, the court concluded, even if Burcham wasn't clickwrapped, he was browsewrapped.<br>
<br>
Finally, the court quickly dismissed Burcham's arguments that the forum selection provision was unreasonable and in contravention of Missouri public policy and that the contract as a whole was one of adhesion.<br>
<br>
The ruling in Burcham v. Expedia is a win for the enforceability of online agreements, and another loss for pro se attorney plaintiffs for whom courts seem to have little sympathy. See, e.g., <a href="http://www.scribd.com/doc/13857571/Field-v-Google-011906">Field v. Google</a>, 412 F.Supp. 2d 1106 (D. Nev. 2006) (rejecting pro se attorney plaintiff&#39;s &quot;manufactured&quot; copyright infringement claim based on Google Web crawling and caching).</p>
<p><a href="http://www.scribd.com/doc/13857293/BurchamvExpedia030609">Burcham v. Expedia, Inc.</a>, 2009 U.S. Dist. LEXIS 17104 (E.D. Mo. Mar. 6, 2009)</p><img src="http://feeds2.feedburner.com/~r/NewMediaAndTechnologyLaw/~4/1Clt6yX4mW4" height="1" width="1"><br><br>Tags: <a href="http://www.croncast.com/keyg/terms">terms</a> <a href="http://www.technorati.com/tag/terms"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/terms.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/burcham">burcham</a> <a href="http://www.technorati.com/tag/burcham"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/burcham.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/conditions">conditions</a> <a href="http://www.technorati.com/tag/conditions"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/conditions.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/expedia">expedia</a> <a href="http://www.technorati.com/tag/expedia"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/expedia.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/court">court</a> <a href="http://www.technorati.com/tag/court"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/court.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></content:encoded>

         <pubDate>Wed, 01 Apr 2009 16:50:33 -0400</pubDate>         <guid isPermaLink="false">tag:croncast.com,4949</guid>

			<itunes:subtitle/>
      </item>
      <item>
         <title>What Should Be The Legal Recourse In Cases Of Privacy Policy Breaches?</title>
         <link>http://techdirt.com/articles/20090125/1815333528.shtml</link>
		 <category>Shared item</category>
			<description><![CDATA[Privacy is an interesting issue -- where a lot of people have opinions on it that don't match up with either how they act or with what the law actually says.  People say privacy is important to them, but then are <a href="http://www.techdirt.com/articles/20080814/0137311971.shtml">very open</a> about private things, even to the point of giving out all sorts of private info if someone gives them anything (<a href="http://www.techdirt.com/articles/20040419/1634238_F.shtml">chocolate</a>, a <a href="http://www.techdirt.com/articles/20030418/154233.shtml">pen</a>, <a href="http://www.techdirt.com/articles/20051107/1721251.shtml">nothing at all</a>).  Yet, at the same time, if you talk to people about privacy, they talk about how important it is, and make <a href="http://www.techdirt.com/articles/20080527/1433241232.shtml">silly demands</a> about privacy policies, even though <a href="http://www.techdirt.com/articles/20040203/191241.shtml">no one</a> actually reads the policies, and assume (incorrectly) that if a site has <i>any</i> privacy policy, it <a href="http://www.techdirt.com/articles/20030625/0158245.shtml">means</a> they'll keep the data completely private.
<br><br>
And, of course, we see <a href="http://www.techdirt.com/articles/20090120/1450363464.shtml">privacy breaches</a> on an all too regular basis.  They've become a lot more noticeable over the last few years, as new rules required disclosure, but there are still questions about what it means if a company breaches its privacy policy.  The traditional recourse has been <a href="http://www.techdirt.com/articles/20080131/005730136.shtml">one free year</a> of credit monitoring service (if the breach included info that could be used for identity fraud).  However, there have been some lawsuits over the matter, and as Ethan Ackerman and Eric Goldman discuss, the courts have been <a href="http://blog.ericgoldman.org/archives/2009/01/the_nonenforcea.htm">very reluctant to reward any damages</a> to those who were "victims" of privacy breaches if there's no clear monetary loss.
<br><br>
This leads to a series of interesting questions.  Congress has considered at times creating privacy legislation that could potentially include statutory damages for privacy breaches (and there are a few ideas for such legislation floating around with lobbyists).  The problem with this, though, is that in some cases breaches really are inevitable -- and including a monetary reward could clearly (as Goldman notes) "overcompensate the victim or overdeter the defendant."  That could have pretty significant unintended consequences, including significantly limiting the availability of certain services as companies don't want to take on the potential liability.  At the same time, without any chance of monetary damages, there's a question about leaving little in the way of incentives for companies to actually take privacy seriously.
<br><br>
There's something to be said for the fact that a privacy breach does have a negative <i>reputational</i> impact on the companies who violate people's privacy, but it's reaching a point of saturation, where so many people's private info has been breached so often, that many people don't even register who's involved each time the latest breach comes along.  So, it's not clear that there's a really good answer here -- though, I'm sure some folks in the comments will have some strong opinions.  Should there be monetary awards for privacy breaches?  Should Congress create a privacy law?<br><br><a href="http://techdirt.com/articles/20090125/1815333528.shtml">Permalink</a> | <a href="http://techdirt.com/articles/20090125/1815333528.shtml#comments">Comments</a> | <a href="http://techdirt.com/article.php?sid=20090125/1815333528&amp;op=sharethis">Email This Story</a><br>
 <br style="clear:both">
<br style="clear:both">
<a href="http://www.pheedo.com/click.phdo?s=a65e0d1c53aaff5eda6cc67e81709619&amp;p=1"><img alt="" style="border:0" border="0" src="http://www.pheedo.com/img.phdo?s=a65e0d1c53aaff5eda6cc67e81709619&amp;p=1"></a>
<img src="http://www.pheedo.com/feeds/tracker.php?i=a65e0d1c53aaff5eda6cc67e81709619" border="0" height="1" width="1" alt=""><div>
<a href="http://feeds.techdirt.com/~f/techdirt/feed?a=NlZmfIfq"><img src="http://feeds2.feedburner.com/~f/techdirt/feed?i=NlZmfIfq" border="0"></a>
</div><img src="http://feeds2.feedburner.com/~r/techdirt/feed/~4/QP0W9OUgXVE" height="1" width="1"><br><br>Tags: <a href="http://www.croncast.com/keyg/privacy">privacy</a> <a href="http://www.technorati.com/tag/privacy"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/privacy.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/breaches">breaches</a> <a href="http://www.technorati.com/tag/breaches"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/breaches.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/private">private</a> <a href="http://www.technorati.com/tag/private"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/private.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/monetary">monetary</a> <a href="http://www.technorati.com/tag/monetary"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/monetary.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/even">even</a> <a href="http://www.technorati.com/tag/even"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/even.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></description><content:encoded><![CDATA[Privacy is an interesting issue -- where a lot of people have opinions on it that don't match up with either how they act or with what the law actually says.  People say privacy is important to them, but then are <a href="http://www.techdirt.com/articles/20080814/0137311971.shtml">very open</a> about private things, even to the point of giving out all sorts of private info if someone gives them anything (<a href="http://www.techdirt.com/articles/20040419/1634238_F.shtml">chocolate</a>, a <a href="http://www.techdirt.com/articles/20030418/154233.shtml">pen</a>, <a href="http://www.techdirt.com/articles/20051107/1721251.shtml">nothing at all</a>).  Yet, at the same time, if you talk to people about privacy, they talk about how important it is, and make <a href="http://www.techdirt.com/articles/20080527/1433241232.shtml">silly demands</a> about privacy policies, even though <a href="http://www.techdirt.com/articles/20040203/191241.shtml">no one</a> actually reads the policies, and assume (incorrectly) that if a site has <i>any</i> privacy policy, it <a href="http://www.techdirt.com/articles/20030625/0158245.shtml">means</a> they'll keep the data completely private.
<br><br>
And, of course, we see <a href="http://www.techdirt.com/articles/20090120/1450363464.shtml">privacy breaches</a> on an all too regular basis.  They've become a lot more noticeable over the last few years, as new rules required disclosure, but there are still questions about what it means if a company breaches its privacy policy.  The traditional recourse has been <a href="http://www.techdirt.com/articles/20080131/005730136.shtml">one free year</a> of credit monitoring service (if the breach included info that could be used for identity fraud).  However, there have been some lawsuits over the matter, and as Ethan Ackerman and Eric Goldman discuss, the courts have been <a href="http://blog.ericgoldman.org/archives/2009/01/the_nonenforcea.htm">very reluctant to reward any damages</a> to those who were "victims" of privacy breaches if there's no clear monetary loss.
<br><br>
This leads to a series of interesting questions.  Congress has considered at times creating privacy legislation that could potentially include statutory damages for privacy breaches (and there are a few ideas for such legislation floating around with lobbyists).  The problem with this, though, is that in some cases breaches really are inevitable -- and including a monetary reward could clearly (as Goldman notes) "overcompensate the victim or overdeter the defendant."  That could have pretty significant unintended consequences, including significantly limiting the availability of certain services as companies don't want to take on the potential liability.  At the same time, without any chance of monetary damages, there's a question about leaving little in the way of incentives for companies to actually take privacy seriously.
<br><br>
There's something to be said for the fact that a privacy breach does have a negative <i>reputational</i> impact on the companies who violate people's privacy, but it's reaching a point of saturation, where so many people's private info has been breached so often, that many people don't even register who's involved each time the latest breach comes along.  So, it's not clear that there's a really good answer here -- though, I'm sure some folks in the comments will have some strong opinions.  Should there be monetary awards for privacy breaches?  Should Congress create a privacy law?<br><br><a href="http://techdirt.com/articles/20090125/1815333528.shtml">Permalink</a> | <a href="http://techdirt.com/articles/20090125/1815333528.shtml#comments">Comments</a> | <a href="http://techdirt.com/article.php?sid=20090125/1815333528&amp;op=sharethis">Email This Story</a><br>
 <br style="clear:both">
<br style="clear:both">
<a href="http://www.pheedo.com/click.phdo?s=a65e0d1c53aaff5eda6cc67e81709619&amp;p=1"><img alt="" style="border:0" border="0" src="http://www.pheedo.com/img.phdo?s=a65e0d1c53aaff5eda6cc67e81709619&amp;p=1"></a>
<img src="http://www.pheedo.com/feeds/tracker.php?i=a65e0d1c53aaff5eda6cc67e81709619" border="0" height="1" width="1" alt=""><div>
<a href="http://feeds.techdirt.com/~f/techdirt/feed?a=NlZmfIfq"><img src="http://feeds2.feedburner.com/~f/techdirt/feed?i=NlZmfIfq" border="0"></a>
</div><img src="http://feeds2.feedburner.com/~r/techdirt/feed/~4/QP0W9OUgXVE" height="1" width="1"><br><br>Tags: <a href="http://www.croncast.com/keyg/privacy">privacy</a> <a href="http://www.technorati.com/tag/privacy"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/privacy.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/breaches">breaches</a> <a href="http://www.technorati.com/tag/breaches"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/breaches.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/private">private</a> <a href="http://www.technorati.com/tag/private"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/private.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/monetary">monetary</a> <a href="http://www.technorati.com/tag/monetary"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/monetary.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/even">even</a> <a href="http://www.technorati.com/tag/even"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/even.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></content:encoded>

         <pubDate>Wed, 04 Feb 2009 23:06:38 -0500</pubDate>         <guid isPermaLink="false">tag:croncast.com,4821</guid>

			<itunes:subtitle/>
      </item>
      <item>
         <title>First They Came for the Political Bloggers</title>
         <link>http://feedproxy.google.com/~r/Usefulartsus/~3/t8YUygGWJME/</link>
		 <category>Shared item</category>
			<description><![CDATA[<p><img style="border:1px solid black;margin:6px 4px" title="invoke_first_amendment" src="http://usefularts.us/wp-content/uploads/2009/02/first_amendment.jpg" alt="" width="250" height="163">Two weeks ago, the Senate considered a <a title="PR Newswire release" href="http://www.prnewswire.com/cgi-bin/stories.pl?ACCT=ind_focus.story&amp;STORY=/www/story/01-16-2007/0004507242&amp;EDATE=TUE+Jan+16+2007,+06:34+PM">lobbying reform bill</a> which would reportedly have required bloggers who communicate to more than 500 members of the public on public policy matters to register and report quarterly to Congress, in much the same way as K Street lobbyists.</p>
<p>The blog <a title="Wonkette notes who fixed the bill" href="http://wonkette.com/230117/political-bloggers-no-longer-required-to-wear-blue-hats">Wonkette reports</a> that this over-reaching requirement was removed from the final bill by Senate Republicans. All but six of our freedom-loving Democratic majority voted to keep the registration requirement in the bill, but these votes allowed the Republican minority to remove the requirement.</p>
<p><a href="http://sharethis.com/item?publisher=2a794737-317c-48c1-9eaa-e97e99cac964&amp;title=First+They+Came+for+the+Political+Bloggers&amp;url=http%3A%2F%2Fusefularts.us%2F2009%2F02%2F03%2Fregister-bloggers%2F">ShareThis</a></p><img src="http://feeds2.feedburner.com/~r/Usefulartsus/~4/t8YUygGWJME" height="1" width="1"><br><br>Tags: <a href="http://www.croncast.com/keyg/bill">bill</a> <a href="http://www.technorati.com/tag/bill"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/bill.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/requirement">requirement</a> <a href="http://www.technorati.com/tag/requirement"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/requirement.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/senate">senate</a> <a href="http://www.technorati.com/tag/senate"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/senate.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/bloggers">bloggers</a> <a href="http://www.technorati.com/tag/bloggers"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/bloggers.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/public">public</a> <a href="http://www.technorati.com/tag/public"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/public.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></description><content:encoded><![CDATA[<p><img style="border:1px solid black;margin:6px 4px" title="invoke_first_amendment" src="http://usefularts.us/wp-content/uploads/2009/02/first_amendment.jpg" alt="" width="250" height="163">Two weeks ago, the Senate considered a <a title="PR Newswire release" href="http://www.prnewswire.com/cgi-bin/stories.pl?ACCT=ind_focus.story&amp;STORY=/www/story/01-16-2007/0004507242&amp;EDATE=TUE+Jan+16+2007,+06:34+PM">lobbying reform bill</a> which would reportedly have required bloggers who communicate to more than 500 members of the public on public policy matters to register and report quarterly to Congress, in much the same way as K Street lobbyists.</p>
<p>The blog <a title="Wonkette notes who fixed the bill" href="http://wonkette.com/230117/political-bloggers-no-longer-required-to-wear-blue-hats">Wonkette reports</a> that this over-reaching requirement was removed from the final bill by Senate Republicans. All but six of our freedom-loving Democratic majority voted to keep the registration requirement in the bill, but these votes allowed the Republican minority to remove the requirement.</p>
<p><a href="http://sharethis.com/item?publisher=2a794737-317c-48c1-9eaa-e97e99cac964&amp;title=First+They+Came+for+the+Political+Bloggers&amp;url=http%3A%2F%2Fusefularts.us%2F2009%2F02%2F03%2Fregister-bloggers%2F">ShareThis</a></p><img src="http://feeds2.feedburner.com/~r/Usefulartsus/~4/t8YUygGWJME" height="1" width="1"><br><br>Tags: <a href="http://www.croncast.com/keyg/bill">bill</a> <a href="http://www.technorati.com/tag/bill"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/bill.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/requirement">requirement</a> <a href="http://www.technorati.com/tag/requirement"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/requirement.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/senate">senate</a> <a href="http://www.technorati.com/tag/senate"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/senate.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/bloggers">bloggers</a> <a href="http://www.technorati.com/tag/bloggers"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/bloggers.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/public">public</a> <a href="http://www.technorati.com/tag/public"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/public.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></content:encoded>

         <pubDate>Tue, 03 Feb 2009 11:53:31 -0500</pubDate>         <guid isPermaLink="false">tag:croncast.com,4812</guid>

			<itunes:subtitle/>
      </item>
      <item>
         <title>Spiegel v. Spiegel: internet coexistence is possible</title>
         <link>http://tushnet.blogspot.com/2008/12/spiegel-v-spiegel-internet-coexistence.html</link>
		 <category>Shared item</category>
			<description><![CDATA[H. Jay Spiegel &amp; Associates, P.C. v. Spiegel, 2008 WL 5211784 (E.D. Va.)<p></p>  <p> </p>  <p>This local case caught my eye because of the unusual result: preliminary relief denied despite the court's conclusion that consumer confusion was fairly likely.</p>  <p> </p>  <p>Plaintiff, a law firm specializing in patents and trademarks, registered spiegelaw.com in 1999.<span>  </span>The domain name was registered on the Supplemental Register in 2000, and plaintiff applied for registration on the Principal Register after five consecutive years of use; that registration issued in 2006.</p>  <p> </p>  <p>In 2008, defendant, an attorney with a sole practice focusing on employment law, created a website at spiegellaw.com.<span>  </span>Plaintiff sued and asked for a preliminary injunction shutting down the website.</p>  <p> </p>  <p>You know the plaintiff has an uphill climb when the court starts out with a reminder that preliminary injunctions are extraordinary remedies, to be granted only sparingly and in limited circumstances.<span>  </span>In trademark infringement cases, a presumption of irreparable injury is generally used when a plaintiff shows likely confusion.<span>  </span>However, the balance of harms here favored the defendant, and the other elements of the preliminary injunction standard were uncertain.<span>  </span>Even with irreparable injury, a court must still balance the harm to the defendant.<span>  </span>An irreparable harm may be small.</p>  <p> </p>  <p>The court assumed a likelihood of confusion, triggering a presumption of irreparable harm.<span>  </span>Plaintiff argued that the harm was significant here because many people, including foreign clients, seek to reach it through its website, and defendant's use threatened its goodwill.<span>  </span>The court agreed that there was some threat to plaintiff's goodwill, given that the names are nearly identical and that people searching for plaintiff could be misled or diverted to defendant's site, especially if they were working from oral instructions to visit the site.<span>  </span>There was evidence that at least one person was confused by defendant's site, though that person was a fellow lawyer and not a potential client (apparently the lawyer cc'd defendant and plaintiff both, suggesting at least one typo).</p>  <p> </p>  <p>However, the court determined that harm during the pendency of the litigation was not likely to be significant.<span>  </span>Plaintiff's practice is specialized; a search for a <i>patent lawyer</i> named Spiegel would not end with defendant's site.<span>  </span>And someone who heard the address given orally might just as easily visit spiegel-law.com, another website in use by a solo practitioner named Spiegel. In other words, the online presence of Defendant does not pose a wholly novel threat to the ability of potential clients to locate Plaintiff's Website.<span>  </span>There may well be a likelihood of confusion, but not of serious harm.<span>  </span>There was no evidence of any attempt to poach clients, which would be counterproductive for an employment lawyer.<span>  </span>The single misdirected email was an isolated instance, not large-scale confusion among clients.</p>  <p> </p>  <p>On the other side, enjoining spiegellaw.com would significantly harm defendant, who uses the site primarily in his capacity as class counsel in a civil rights class action lawsuit.<span>  </span>Shutting the site down would disrupt defendant's law practice and harm the interests of his clients. The nature of a class action lawsuit puts a premium on the ability of counsel to communicate with individuals who may be geographically diverse and, indeed, may never meet their attorney in person. Disrupting a major line of communication and information sharing between class counsel and a class of plaintiffs poses a real threat to the ability of counsel to advocate in an effective and efficient manner.<span>  </span>Thus, the balance of harms favored defendant, requiring a stronger showing of likely success on the merits before a preliminary injunction could issue.<span>  </span></p>  <p> </p>  <p>The court was uncertain whether plaintiff's mark was protectable, making overall likelihood of success uncertain.<span>  </span>Plaintiff argued that its mark was stronger than merely descriptive and more likely than not suggestive, given that spiegelaw.com could connote the provision of a variety of legal services via the internet.<span>  </span>You know, I wouldn't give a student much credit for making that argument on an exam: the mark, describing the provision of legal services by somebody named Spiegel, is descriptive.<span>  </span>Deal with it.<span>  </span></p>  <p> </p>  <p>The real argument here is acquired distinctiveness.<span>  </span>The registration was prima facie evidence of validity, but defendant could challenge this.<span>  </span>The evidence of secondary meaning was unclear at this stage.<span>  </span>(Defendant also argued that any secondary meaning wouldn't extend beyond IP lawyering, but that's not an argument for unprotectability; that's just an infringement consideration.)<span>  </span>It's not clear from the opinion what evidence, if any, defendant submitted here: it doesn't seem likely that he could have overcome the prima facie validity of the registration from argument alone, but I'd have pointed to that spiegel-law.com site at least as evidence that plaintiff's use wasn't exclusive.</p>  <p> </p>  <p>The public interest favors protecting valid trademarks, but also communication between lawyers and clients.<span>  </span>It wasn't any help here.<span>  </span>On balance, plaintiff wasn't entitled to a preliminary injunction.</p>  <p> </p>  <p>I found it interesting how this issue was resolved without any overt reference to something that the common law would have considered quite important: defendant's name really is Spiegel.<span>  </span>Of course that factors into the mark's descriptiveness, its protectability, and probably the likelihood of confusion, but that just shows that the law of personal names has been basically submerged into broader trademark doctrines.</p>  <span></span><br><br>Tags: <a href="http://www.croncast.com/keyg/defendant">defendant</a> <a href="http://www.technorati.com/tag/defendant"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/defendant.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/plaintiff">plaintiff</a> <a href="http://www.technorati.com/tag/plaintiff"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/plaintiff.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/spiegel">spiegel</a> <a href="http://www.technorati.com/tag/spiegel"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/spiegel.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/harm">harm</a> <a href="http://www.technorati.com/tag/harm"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/harm.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/court">court</a> <a href="http://www.technorati.com/tag/court"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/court.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></description><content:encoded><![CDATA[H. Jay Spiegel &amp; Associates, P.C. v. Spiegel, 2008 WL 5211784 (E.D. Va.)<p></p>  <p> </p>  <p>This local case caught my eye because of the unusual result: preliminary relief denied despite the court's conclusion that consumer confusion was fairly likely.</p>  <p> </p>  <p>Plaintiff, a law firm specializing in patents and trademarks, registered spiegelaw.com in 1999.<span>  </span>The domain name was registered on the Supplemental Register in 2000, and plaintiff applied for registration on the Principal Register after five consecutive years of use; that registration issued in 2006.</p>  <p> </p>  <p>In 2008, defendant, an attorney with a sole practice focusing on employment law, created a website at spiegellaw.com.<span>  </span>Plaintiff sued and asked for a preliminary injunction shutting down the website.</p>  <p> </p>  <p>You know the plaintiff has an uphill climb when the court starts out with a reminder that preliminary injunctions are extraordinary remedies, to be granted only sparingly and in limited circumstances.<span>  </span>In trademark infringement cases, a presumption of irreparable injury is generally used when a plaintiff shows likely confusion.<span>  </span>However, the balance of harms here favored the defendant, and the other elements of the preliminary injunction standard were uncertain.<span>  </span>Even with irreparable injury, a court must still balance the harm to the defendant.<span>  </span>An irreparable harm may be small.</p>  <p> </p>  <p>The court assumed a likelihood of confusion, triggering a presumption of irreparable harm.<span>  </span>Plaintiff argued that the harm was significant here because many people, including foreign clients, seek to reach it through its website, and defendant's use threatened its goodwill.<span>  </span>The court agreed that there was some threat to plaintiff's goodwill, given that the names are nearly identical and that people searching for plaintiff could be misled or diverted to defendant's site, especially if they were working from oral instructions to visit the site.<span>  </span>There was evidence that at least one person was confused by defendant's site, though that person was a fellow lawyer and not a potential client (apparently the lawyer cc'd defendant and plaintiff both, suggesting at least one typo).</p>  <p> </p>  <p>However, the court determined that harm during the pendency of the litigation was not likely to be significant.<span>  </span>Plaintiff's practice is specialized; a search for a <i>patent lawyer</i> named Spiegel would not end with defendant's site.<span>  </span>And someone who heard the address given orally might just as easily visit spiegel-law.com, another website in use by a solo practitioner named Spiegel. In other words, the online presence of Defendant does not pose a wholly novel threat to the ability of potential clients to locate Plaintiff's Website.<span>  </span>There may well be a likelihood of confusion, but not of serious harm.<span>  </span>There was no evidence of any attempt to poach clients, which would be counterproductive for an employment lawyer.<span>  </span>The single misdirected email was an isolated instance, not large-scale confusion among clients.</p>  <p> </p>  <p>On the other side, enjoining spiegellaw.com would significantly harm defendant, who uses the site primarily in his capacity as class counsel in a civil rights class action lawsuit.<span>  </span>Shutting the site down would disrupt defendant's law practice and harm the interests of his clients. The nature of a class action lawsuit puts a premium on the ability of counsel to communicate with individuals who may be geographically diverse and, indeed, may never meet their attorney in person. Disrupting a major line of communication and information sharing between class counsel and a class of plaintiffs poses a real threat to the ability of counsel to advocate in an effective and efficient manner.<span>  </span>Thus, the balance of harms favored defendant, requiring a stronger showing of likely success on the merits before a preliminary injunction could issue.<span>  </span></p>  <p> </p>  <p>The court was uncertain whether plaintiff's mark was protectable, making overall likelihood of success uncertain.<span>  </span>Plaintiff argued that its mark was stronger than merely descriptive and more likely than not suggestive, given that spiegelaw.com could connote the provision of a variety of legal services via the internet.<span>  </span>You know, I wouldn't give a student much credit for making that argument on an exam: the mark, describing the provision of legal services by somebody named Spiegel, is descriptive.<span>  </span>Deal with it.<span>  </span></p>  <p> </p>  <p>The real argument here is acquired distinctiveness.<span>  </span>The registration was prima facie evidence of validity, but defendant could challenge this.<span>  </span>The evidence of secondary meaning was unclear at this stage.<span>  </span>(Defendant also argued that any secondary meaning wouldn't extend beyond IP lawyering, but that's not an argument for unprotectability; that's just an infringement consideration.)<span>  </span>It's not clear from the opinion what evidence, if any, defendant submitted here: it doesn't seem likely that he could have overcome the prima facie validity of the registration from argument alone, but I'd have pointed to that spiegel-law.com site at least as evidence that plaintiff's use wasn't exclusive.</p>  <p> </p>  <p>The public interest favors protecting valid trademarks, but also communication between lawyers and clients.<span>  </span>It wasn't any help here.<span>  </span>On balance, plaintiff wasn't entitled to a preliminary injunction.</p>  <p> </p>  <p>I found it interesting how this issue was resolved without any overt reference to something that the common law would have considered quite important: defendant's name really is Spiegel.<span>  </span>Of course that factors into the mark's descriptiveness, its protectability, and probably the likelihood of confusion, but that just shows that the law of personal names has been basically submerged into broader trademark doctrines.</p>  <span></span><br><br>Tags: <a href="http://www.croncast.com/keyg/defendant">defendant</a> <a href="http://www.technorati.com/tag/defendant"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/defendant.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/plaintiff">plaintiff</a> <a href="http://www.technorati.com/tag/plaintiff"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/plaintiff.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/spiegel">spiegel</a> <a href="http://www.technorati.com/tag/spiegel"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/spiegel.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/harm">harm</a> <a href="http://www.technorati.com/tag/harm"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/harm.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/court">court</a> <a href="http://www.technorati.com/tag/court"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/court.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></content:encoded>

         <pubDate>Thu, 18 Dec 2008 19:07:00 -0500</pubDate>         <guid isPermaLink="false">tag:croncast.com,4749</guid>

			<itunes:subtitle/>
      </item>
      <item>
         <title>The CodeWeavers Crunch</title>
         <link>http://feeds.wsjonline.com/~r/wsj/biztech/feed/~3/tablQCBk3LU/</link>
		 <category>Shared item</category>
			<description><![CDATA[<p>CodeWeavers is learning what happens when you scream Free Software in a crowded Internet.</p>
<p>The St. Paul, Minn., firm, which makes software letting Mac and Linux users run Windows on their machines, launched the Great American Lame Duck Presidential Challenge this summer. The idea, as CodeWeavers put it, was to encourage President Bush to make the most of his remaining days in office by accomplishing a major economic or political goal by January 20, 2009.</p>
<p>One of those six goals was to reduce gas prices in the Twin Cities to $2.79 a gallon. Two weeks ago, that happened, and as the prize, CodeWeavers said it would let users  on Oct. 28 only  download its software for free.</p>
<p>Then techie sites <a href="http://digg.com/apple/All_Codeweaver_Products_Free_10_28_08_Due_to_Price_of_Gas">Digg</a> and <a href="http://news.slashdot.org/news/08/10/28/0354203.shtml">Slashdot</a>, both of which have a rapid following, linked to CodeWeavers or <a href="http://www.tuaw.com/2008/10/27/codeweavers-says-cheap-gas-free-software-tomorrow/">posts about the offer</a>, and the volume of traffic took the site down.</p>
<p>As of this afternoon, Codeweavers.com displays a <a href="http://down.codeweavers.com/">placeholder page</a> where visitors can register to get a serial number in a few days. We apologize for any inconvenience. We still love Digg, even if our server disagrees. ;-) the site says.</p>
<p>And if another goal gets fulfilled during President Bush's waning days, the offer will restart. They are:</p>
<ul>
<li>Return the stock market to its 2008 high</li>
<li>Reduce the average price of a gallon of milk to $3.50 </li>
<li>Create at least one net job in the U.S. this calendar year </li>
<li>Return the median home price to its Jan. 1, 2008 level </li>
<li>Bring Osama Bin-Laden to justice </li>
</ul>
<p><strong>- Andrew LaVallee</strong></p>

<p><a href="http://feedads.googleadservices.com/~a/eFF8XRmB7HK6MBrb6CsYobbTtCo/a"><img src="http://feedads.googleadservices.com/~a/eFF8XRmB7HK6MBrb6CsYobbTtCo/i" border="0" ismap></a></p><div>
<a href="http://feeds.wsjonline.com/~f/wsj/biztech/feed?a=WH8sSnIi"><img src="http://feedproxy.google.com/~f/wsj/biztech/feed?d=41" border="0"></a> <a href="http://feeds.wsjonline.com/~f/wsj/biztech/feed?a=nhLBbhWv"><img src="http://feedproxy.google.com/~f/wsj/biztech/feed?i=nhLBbhWv" border="0"></a> <a href="http://feeds.wsjonline.com/~f/wsj/biztech/feed?a=EZvadmUM"><img src="http://feedproxy.google.com/~f/wsj/biztech/feed?i=EZvadmUM" border="0"></a> <a href="http://feeds.wsjonline.com/~f/wsj/biztech/feed?a=jheuvNeZ"><img src="http://feedproxy.google.com/~f/wsj/biztech/feed?d=52" border="0"></a>
</div><img src="http://feedproxy.google.com/~r/wsj/biztech/feed/~4/tablQCBk3LU" height="1" width="1"><br><br>Tags: <a href="http://www.croncast.com/keyg/codeweavers">codeweavers</a> <a href="http://www.technorati.com/tag/codeweavers"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/codeweavers.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/software">software</a> <a href="http://www.technorati.com/tag/software"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/software.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/days">days</a> <a href="http://www.technorati.com/tag/days"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/days.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/reduce">reduce</a> <a href="http://www.technorati.com/tag/reduce"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/reduce.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/goal">goal</a> <a href="http://www.technorati.com/tag/goal"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/goal.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></description><content:encoded><![CDATA[<p>CodeWeavers is learning what happens when you scream Free Software in a crowded Internet.</p>
<p>The St. Paul, Minn., firm, which makes software letting Mac and Linux users run Windows on their machines, launched the Great American Lame Duck Presidential Challenge this summer. The idea, as CodeWeavers put it, was to encourage President Bush to make the most of his remaining days in office by accomplishing a major economic or political goal by January 20, 2009.</p>
<p>One of those six goals was to reduce gas prices in the Twin Cities to $2.79 a gallon. Two weeks ago, that happened, and as the prize, CodeWeavers said it would let users  on Oct. 28 only  download its software for free.</p>
<p>Then techie sites <a href="http://digg.com/apple/All_Codeweaver_Products_Free_10_28_08_Due_to_Price_of_Gas">Digg</a> and <a href="http://news.slashdot.org/news/08/10/28/0354203.shtml">Slashdot</a>, both of which have a rapid following, linked to CodeWeavers or <a href="http://www.tuaw.com/2008/10/27/codeweavers-says-cheap-gas-free-software-tomorrow/">posts about the offer</a>, and the volume of traffic took the site down.</p>
<p>As of this afternoon, Codeweavers.com displays a <a href="http://down.codeweavers.com/">placeholder page</a> where visitors can register to get a serial number in a few days. We apologize for any inconvenience. We still love Digg, even if our server disagrees. ;-) the site says.</p>
<p>And if another goal gets fulfilled during President Bush's waning days, the offer will restart. They are:</p>
<ul>
<li>Return the stock market to its 2008 high</li>
<li>Reduce the average price of a gallon of milk to $3.50 </li>
<li>Create at least one net job in the U.S. this calendar year </li>
<li>Return the median home price to its Jan. 1, 2008 level </li>
<li>Bring Osama Bin-Laden to justice </li>
</ul>
<p><strong>- Andrew LaVallee</strong></p>

<p><a href="http://feedads.googleadservices.com/~a/eFF8XRmB7HK6MBrb6CsYobbTtCo/a"><img src="http://feedads.googleadservices.com/~a/eFF8XRmB7HK6MBrb6CsYobbTtCo/i" border="0" ismap></a></p><div>
<a href="http://feeds.wsjonline.com/~f/wsj/biztech/feed?a=WH8sSnIi"><img src="http://feedproxy.google.com/~f/wsj/biztech/feed?d=41" border="0"></a> <a href="http://feeds.wsjonline.com/~f/wsj/biztech/feed?a=nhLBbhWv"><img src="http://feedproxy.google.com/~f/wsj/biztech/feed?i=nhLBbhWv" border="0"></a> <a href="http://feeds.wsjonline.com/~f/wsj/biztech/feed?a=EZvadmUM"><img src="http://feedproxy.google.com/~f/wsj/biztech/feed?i=EZvadmUM" border="0"></a> <a href="http://feeds.wsjonline.com/~f/wsj/biztech/feed?a=jheuvNeZ"><img src="http://feedproxy.google.com/~f/wsj/biztech/feed?d=52" border="0"></a>
</div><img src="http://feedproxy.google.com/~r/wsj/biztech/feed/~4/tablQCBk3LU" height="1" width="1"><br><br>Tags: <a href="http://www.croncast.com/keyg/codeweavers">codeweavers</a> <a href="http://www.technorati.com/tag/codeweavers"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/codeweavers.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/software">software</a> <a href="http://www.technorati.com/tag/software"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/software.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/days">days</a> <a href="http://www.technorati.com/tag/days"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/days.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/reduce">reduce</a> <a href="http://www.technorati.com/tag/reduce"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/reduce.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/goal">goal</a> <a href="http://www.technorati.com/tag/goal"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/goal.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></content:encoded>

         <pubDate>Tue, 28 Oct 2008 09:22:00 -0400</pubDate>         <guid isPermaLink="false">tag:croncast.com,4583</guid>

			<itunes:subtitle/>
      </item>
      <item>
         <title>GoDaddy Unveils Mainstream Social Web Aggregator</title>
         <link>http://feedproxy.google.com/~r/readwriteweb/~3/XXI5KIu8aEo/godaddy_unveils_mainstream_social_web_aggregator.php</link>
		 <category>Shared item</category>
			<description><![CDATA[<p><img src="http://www.readwriteweb.com/images/smartspace.png">GoDaddy has just unveiled an amazing new service called <a href="https://godaddy.com/gdshop/domains/landing.asp?app_hdr=0&amp;ci=12906">SmartSpace</a> which lets anyone register a domain name and then instantly turn it into a social web site which aggregates any of the following components onto one page: a blog, a photo album, a chat application, email, RSS feeds, and even components from social networking applications like <a href="http://www.myspace.com">MySpace</a>, <a href="http://www.facebook.com">Facebook</a>, or <a href="http://www.linkedin.com">LinkedIn</a>. All you have to do is register the domain name you want and all the technical work is done for you - the site builds itself automatically. </p>
<p align="right"><em>Sponsor</em><br><a href="http://d.openx.org/ck.php?n=12151&amp;cb=12151"><img src="http://d.openx.org/avw.php?zoneid=861&amp;cb=12151&amp;n=12151" border="0" alt="" align="right"></a></p>



<h2>Dynamic, Social Content</h2>

<p>With the new <a href="https://godaddy.com/gdshop/domains/landing.asp?app_hdr=0&amp;ci=12906">SmartSpace</a> service from GoDaddy, anyone can create a personal web site which aggregates your activity from across the social web, combine that with other sources of news and information, and then create a personalized start page containing everything of interest to them. The service can also be used as a blogging platform with social elements like chat already built in. The idea is that you can use the SmartSpace platform to create the kind of site that's right for you,  whether that's a social network of sorts, a traditional web site with social elements, a place to host your podcasts, or whatever else you want.  </p>

<p>SmartSpace is designed to be easy to use, even for non-technical users. With a click of a button, you can grab content from sites like <a href="http://www.flickr.com">flickr</a>, <a href="http://www.youtube.com">YouTube</a>, <a href="http://news.google.com">Google News</a>, <a href="http://facebook.com">Facebook</a>, <a href="http://www.myspace.com">MySpace</a>, or any other web site that offers an RSS feed.</p>

<p><img src="http://www.readwriteweb.com/images/smartspace_page.png"></p>

<p>You can even customize this content to your own personal preferences. For example, if you only want to see Flickr photos of lolcats, you can just type in "lolcat" in the tag field provided. Alternatively, you could select the RSS feed of a particular person's photos. </p>

<p><img src="http://www.readwriteweb.com/images/smartspace_flickr.png"></p>


<p>In addition to this dynamic content form across the social web, GoDaddy also makes available various pre-selected news feeds which you can add if desired. This content is categorized by subject, and is similar to the types of selections that many of today's personalized homepages offer.</p>

<h2>Chat &amp; Email</h2>

<p>The Chat application lets you have online text conversations right on the site. With the included administrative controls, you can launch a room, invite users, ban users, and participate in both public and private chat sessions. Again, there's nothing technical involved in adding this to your page - the app is already set up and ready to use. All you have to do is make a few choices about how it's displayed and whether it's loaded by default when you log in. </p>

<p><img src="http://www.readwriteweb.com/images/smartspace_chat.png"></p>

<p>Also, because SocialSpace users have purchased a domain name via GoDaddy,  there's an option to set up email addresses using that name. The interface for doing so  is much easier to manage than GoDaddy's usual UI for creating email addresses (an ugly and geeky interface). Here, you're basically able to push a button and set up multiple email addresses associated with your domain. The inboxes for these can then be added as widgets to your homepage. </p>

<p><img src="http://www.readwriteweb.com/images/smartspace_email.png"></p>

<h2>Photo Albums</h2>

<p>If you don't keep your images online with a web service like Flickr, you also have the option to make your SmartSpace an online photo album using the SmartSpace photo application. With this, you can upload photos from your computer and then share those photos both publicly and privately in albums that are added to your page. </p>

<h2>Web Site and Blogs</h2>

<p>For text-based content, you can choose to either add a web site or blog to your homepage. With these options, you can select from a number of pre-built templates to configure the site. Although not as robust a platform as <a href="http://www.wordpress.org">WordPress</a>, the blog will probably work fine for casual users who want to take advantage of the other elements of the SmartSpace service. </p>

<p><img src="http://www.readwriteweb.com/images/smartspace_blog.png"></p>

<h2>Just Another Personalized Homepage Or A New Type Of Social Network?</h2>

<p>SocialSpace could be linked to <a href="http://domainnamewire.com/2008/06/04/godaddy-looks-to-social-networking-for-growth/">some patent filings</a> the company filed earlier this year which describe a web portal that functions as a social network aggregator. According to those filings, the aggregation could be done using login systems like OpenID. Although there's no mention of OpenID integration in the SmartSpace support documents yet, we hope that integration is something they plan to add in the future.</p>

<p>Still, even without OpenID, what GoDaddy has launched today is a viable competitor to the other personalized homepages out there like iGoogle, My Yahoo, Netvibes, etc. But <a href="https://godaddy.com/gdshop/domains/landing.asp?app_hdr=0&amp;ci=12906">GoDaddy's SocialSpace</a> goes beyond what those sites offer in a number of ways. Although widgetized content like photos and RSS feeds can be added to nearly any start page today, GoDaddy actually lets you own a domain name, set up a blog or website and then easily, instantly turn it into a personalized social network that aggregates content from the social web and includes chat functionality for instant interactions with your friends. </p>

<p>Will SocialSpace kill MySpace and Facebook? That's highly doubtful, but it could be a nice aggregator for those looking to establish a web presence with minimal work. And because it's from GoDaddy, a household name thanks to their high profile TV commercials and ad campaigns, this move also represents what may be the final leap where "social media" fully crosses over to the mainstream use and acceptance.</p>

<h2>More Info</h2>

<p>Prices for SmartSpace start at $4.99/month for 2 months. From there, the prices are as follows: 12 mo: $4.74/month, 24 mo: $4.49/month, or 36 mo: $4.24/month. <strong>You can watch a short introductory video <a href="http://godaddy.com/gdshop/domains/show_me_popup.asp?app_hdr=0">here</a>.  </strong>
<strong><a href="http://www.readwriteweb.com/archives/godaddy_unveils_mainstream_social_web_aggregator.php#comments-open">Discuss</a></strong>
<p><a href="http://feedads.googleadservices.com/~a/CDUUoA73dxrle9QVvZ_fYuS5tfo/a"><img src="http://feedads.googleadservices.com/~a/CDUUoA73dxrle9QVvZ_fYuS5tfo/i" border="0" ismap></a></p><div>
<a href="http://feedproxy.google.com/~f/readwriteweb?a=BHpcsb0H"><img src="http://feedproxy.google.com/~f/readwriteweb?i=BHpcsb0H" border="0"></a> <a href="http://feedproxy.google.com/~f/readwriteweb?a=SkCDD4Tu"><img src="http://feedproxy.google.com/~f/readwriteweb?d=41" border="0"></a> <a href="http://feedproxy.google.com/~f/readwriteweb?a=9Ele0Sci"><img src="http://feedproxy.google.com/~f/readwriteweb?i=9Ele0Sci" border="0"></a> <a href="http://feedproxy.google.com/~f/readwriteweb?a=jq1DkiaT"><img src="http://feedproxy.google.com/~f/readwriteweb?i=jq1DkiaT" border="0"></a> <a href="http://feedproxy.google.com/~f/readwriteweb?a=p5dtQS9a"><img src="http://feedproxy.google.com/~f/readwriteweb?i=p5dtQS9a" border="0"></a>
</div><img src="http://feedproxy.google.com/~r/readwriteweb/~4/XXI5KIu8aEo" height="1" width="1"></p><br><br>Tags: <a href="http://www.croncast.com/keyg/social">social</a> <a href="http://www.technorati.com/tag/social"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/social.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/web">web</a> <a href="http://www.technorati.com/tag/web"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/web.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/godaddy">godaddy</a> <a href="http://www.technorati.com/tag/godaddy"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/godaddy.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/site">site</a> <a href="http://www.technorati.com/tag/site"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/site.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/smartspace">smartspace</a> <a href="http://www.technorati.com/tag/smartspace"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/smartspace.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></description><content:encoded><![CDATA[<p><img src="http://www.readwriteweb.com/images/smartspace.png">GoDaddy has just unveiled an amazing new service called <a href="https://godaddy.com/gdshop/domains/landing.asp?app_hdr=0&amp;ci=12906">SmartSpace</a> which lets anyone register a domain name and then instantly turn it into a social web site which aggregates any of the following components onto one page: a blog, a photo album, a chat application, email, RSS feeds, and even components from social networking applications like <a href="http://www.myspace.com">MySpace</a>, <a href="http://www.facebook.com">Facebook</a>, or <a href="http://www.linkedin.com">LinkedIn</a>. All you have to do is register the domain name you want and all the technical work is done for you - the site builds itself automatically. </p>
<p align="right"><em>Sponsor</em><br><a href="http://d.openx.org/ck.php?n=12151&amp;cb=12151"><img src="http://d.openx.org/avw.php?zoneid=861&amp;cb=12151&amp;n=12151" border="0" alt="" align="right"></a></p>



<h2>Dynamic, Social Content</h2>

<p>With the new <a href="https://godaddy.com/gdshop/domains/landing.asp?app_hdr=0&amp;ci=12906">SmartSpace</a> service from GoDaddy, anyone can create a personal web site which aggregates your activity from across the social web, combine that with other sources of news and information, and then create a personalized start page containing everything of interest to them. The service can also be used as a blogging platform with social elements like chat already built in. The idea is that you can use the SmartSpace platform to create the kind of site that's right for you,  whether that's a social network of sorts, a traditional web site with social elements, a place to host your podcasts, or whatever else you want.  </p>

<p>SmartSpace is designed to be easy to use, even for non-technical users. With a click of a button, you can grab content from sites like <a href="http://www.flickr.com">flickr</a>, <a href="http://www.youtube.com">YouTube</a>, <a href="http://news.google.com">Google News</a>, <a href="http://facebook.com">Facebook</a>, <a href="http://www.myspace.com">MySpace</a>, or any other web site that offers an RSS feed.</p>

<p><img src="http://www.readwriteweb.com/images/smartspace_page.png"></p>

<p>You can even customize this content to your own personal preferences. For example, if you only want to see Flickr photos of lolcats, you can just type in "lolcat" in the tag field provided. Alternatively, you could select the RSS feed of a particular person's photos. </p>

<p><img src="http://www.readwriteweb.com/images/smartspace_flickr.png"></p>


<p>In addition to this dynamic content form across the social web, GoDaddy also makes available various pre-selected news feeds which you can add if desired. This content is categorized by subject, and is similar to the types of selections that many of today's personalized homepages offer.</p>

<h2>Chat &amp; Email</h2>

<p>The Chat application lets you have online text conversations right on the site. With the included administrative controls, you can launch a room, invite users, ban users, and participate in both public and private chat sessions. Again, there's nothing technical involved in adding this to your page - the app is already set up and ready to use. All you have to do is make a few choices about how it's displayed and whether it's loaded by default when you log in. </p>

<p><img src="http://www.readwriteweb.com/images/smartspace_chat.png"></p>

<p>Also, because SocialSpace users have purchased a domain name via GoDaddy,  there's an option to set up email addresses using that name. The interface for doing so  is much easier to manage than GoDaddy's usual UI for creating email addresses (an ugly and geeky interface). Here, you're basically able to push a button and set up multiple email addresses associated with your domain. The inboxes for these can then be added as widgets to your homepage. </p>

<p><img src="http://www.readwriteweb.com/images/smartspace_email.png"></p>

<h2>Photo Albums</h2>

<p>If you don't keep your images online with a web service like Flickr, you also have the option to make your SmartSpace an online photo album using the SmartSpace photo application. With this, you can upload photos from your computer and then share those photos both publicly and privately in albums that are added to your page. </p>

<h2>Web Site and Blogs</h2>

<p>For text-based content, you can choose to either add a web site or blog to your homepage. With these options, you can select from a number of pre-built templates to configure the site. Although not as robust a platform as <a href="http://www.wordpress.org">WordPress</a>, the blog will probably work fine for casual users who want to take advantage of the other elements of the SmartSpace service. </p>

<p><img src="http://www.readwriteweb.com/images/smartspace_blog.png"></p>

<h2>Just Another Personalized Homepage Or A New Type Of Social Network?</h2>

<p>SocialSpace could be linked to <a href="http://domainnamewire.com/2008/06/04/godaddy-looks-to-social-networking-for-growth/">some patent filings</a> the company filed earlier this year which describe a web portal that functions as a social network aggregator. According to those filings, the aggregation could be done using login systems like OpenID. Although there's no mention of OpenID integration in the SmartSpace support documents yet, we hope that integration is something they plan to add in the future.</p>

<p>Still, even without OpenID, what GoDaddy has launched today is a viable competitor to the other personalized homepages out there like iGoogle, My Yahoo, Netvibes, etc. But <a href="https://godaddy.com/gdshop/domains/landing.asp?app_hdr=0&amp;ci=12906">GoDaddy's SocialSpace</a> goes beyond what those sites offer in a number of ways. Although widgetized content like photos and RSS feeds can be added to nearly any start page today, GoDaddy actually lets you own a domain name, set up a blog or website and then easily, instantly turn it into a personalized social network that aggregates content from the social web and includes chat functionality for instant interactions with your friends. </p>

<p>Will SocialSpace kill MySpace and Facebook? That's highly doubtful, but it could be a nice aggregator for those looking to establish a web presence with minimal work. And because it's from GoDaddy, a household name thanks to their high profile TV commercials and ad campaigns, this move also represents what may be the final leap where "social media" fully crosses over to the mainstream use and acceptance.</p>

<h2>More Info</h2>

<p>Prices for SmartSpace start at $4.99/month for 2 months. From there, the prices are as follows: 12 mo: $4.74/month, 24 mo: $4.49/month, or 36 mo: $4.24/month. <strong>You can watch a short introductory video <a href="http://godaddy.com/gdshop/domains/show_me_popup.asp?app_hdr=0">here</a>.  </strong>
<strong><a href="http://www.readwriteweb.com/archives/godaddy_unveils_mainstream_social_web_aggregator.php#comments-open">Discuss</a></strong>
<p><a href="http://feedads.googleadservices.com/~a/CDUUoA73dxrle9QVvZ_fYuS5tfo/a"><img src="http://feedads.googleadservices.com/~a/CDUUoA73dxrle9QVvZ_fYuS5tfo/i" border="0" ismap></a></p><div>
<a href="http://feedproxy.google.com/~f/readwriteweb?a=BHpcsb0H"><img src="http://feedproxy.google.com/~f/readwriteweb?i=BHpcsb0H" border="0"></a> <a href="http://feedproxy.google.com/~f/readwriteweb?a=SkCDD4Tu"><img src="http://feedproxy.google.com/~f/readwriteweb?d=41" border="0"></a> <a href="http://feedproxy.google.com/~f/readwriteweb?a=9Ele0Sci"><img src="http://feedproxy.google.com/~f/readwriteweb?i=9Ele0Sci" border="0"></a> <a href="http://feedproxy.google.com/~f/readwriteweb?a=jq1DkiaT"><img src="http://feedproxy.google.com/~f/readwriteweb?i=jq1DkiaT" border="0"></a> <a href="http://feedproxy.google.com/~f/readwriteweb?a=p5dtQS9a"><img src="http://feedproxy.google.com/~f/readwriteweb?i=p5dtQS9a" border="0"></a>
</div><img src="http://feedproxy.google.com/~r/readwriteweb/~4/XXI5KIu8aEo" height="1" width="1"></p><br><br>Tags: <a href="http://www.croncast.com/keyg/social">social</a> <a href="http://www.technorati.com/tag/social"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/social.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/web">web</a> <a href="http://www.technorati.com/tag/web"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/web.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/godaddy">godaddy</a> <a href="http://www.technorati.com/tag/godaddy"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/godaddy.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/site">site</a> <a href="http://www.technorati.com/tag/site"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/site.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/smartspace">smartspace</a> <a href="http://www.technorati.com/tag/smartspace"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/smartspace.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></content:encoded>

         <pubDate>Mon, 13 Oct 2008 18:45:00 -0400</pubDate>         <guid isPermaLink="false">tag:croncast.com,4527</guid>

			<itunes:subtitle/>
      </item>
      <item>
         <title>Announcing the Social Media Face to face with Jeff Pulver Seminar Series</title>
         <link>http://pulverblog.pulver.com/archives/008563.html</link>
		 <category>Shared item</category>
			<description><![CDATA[<p>On October 28, 2008 I will be hosting the first of a series of seminars where I will be sharing my perspective on the state of Social Media and it's impact on the future of Business Communication.</p>

<p>Back in 1995 I was one of the first people who as a hobbyist and a user of Internet Telephony saw the future impact of the technology on the future of communications. For me it was the thought of telephony as a software rather than a service that caught my attention. Thirteen years later as a person who uses social media in his everyday life, I believe that social media will have a huge impact in the way we communicate in the months and years ahead.</p>

<p>In this seminar I will be sharing some of my social media experiences and connecting some of the dots in terms of how I see various social media platforms having an impact on the future of business communication. Back in the late 1980s through the mid 1990s we all dealt with the introduction and dependence of email on our corporate and personal life. I believe that social media will have an even stronger impact in our immediate future.</p>

<p>The first seminar will be held on Long Island in Melville, New York at the pulver.com offices on October 28th. The morning will be an interactive lecture followed by lunch and an afternoon questions and answers session. </p>

<p>Seating will be limited to keep this as a intimate experience with the people attending.</p>

<p>The cost to register is $995 if you register by October 17th, $1195 afterwards. If you would like to attend, please <a href="mailto:jeffp@pulver.com">contact me</a> and I will follow up with you.</p>

<p><font size="1">Tags: <a href="http://technorati.com/tag/social+media" rel="tag">Social Media</a>, <a href="http://technorati.com/tag/social+communications" rel="tag">Social Communications</a>, <a href="http://technorati.com/tag/Facebook">Facebook</a>,  <a href="http://technorati.com/tag/LinkedIn">LinkedIn</a>, <a href="http://technorati.com/tag/twitter">twitter</a>, <a href="http://technorati.com/tag/Jeff+Pulver">Jeff Pulver</a></font></p><br><br>Tags: <a href="http://www.croncast.com/keyg/social">social</a> <a href="http://www.technorati.com/tag/social"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/social.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/media">media</a> <a href="http://www.technorati.com/tag/media"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/media.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/impact">impact</a> <a href="http://www.technorati.com/tag/impact"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/impact.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/future">future</a> <a href="http://www.technorati.com/tag/future"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/future.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/first">first</a> <a href="http://www.technorati.com/tag/first"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/first.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></description><content:encoded><![CDATA[<p>On October 28, 2008 I will be hosting the first of a series of seminars where I will be sharing my perspective on the state of Social Media and it's impact on the future of Business Communication.</p>

<p>Back in 1995 I was one of the first people who as a hobbyist and a user of Internet Telephony saw the future impact of the technology on the future of communications. For me it was the thought of telephony as a software rather than a service that caught my attention. Thirteen years later as a person who uses social media in his everyday life, I believe that social media will have a huge impact in the way we communicate in the months and years ahead.</p>

<p>In this seminar I will be sharing some of my social media experiences and connecting some of the dots in terms of how I see various social media platforms having an impact on the future of business communication. Back in the late 1980s through the mid 1990s we all dealt with the introduction and dependence of email on our corporate and personal life. I believe that social media will have an even stronger impact in our immediate future.</p>

<p>The first seminar will be held on Long Island in Melville, New York at the pulver.com offices on October 28th. The morning will be an interactive lecture followed by lunch and an afternoon questions and answers session. </p>

<p>Seating will be limited to keep this as a intimate experience with the people attending.</p>

<p>The cost to register is $995 if you register by October 17th, $1195 afterwards. If you would like to attend, please <a href="mailto:jeffp@pulver.com">contact me</a> and I will follow up with you.</p>

<p><font size="1">Tags: <a href="http://technorati.com/tag/social+media" rel="tag">Social Media</a>, <a href="http://technorati.com/tag/social+communications" rel="tag">Social Communications</a>, <a href="http://technorati.com/tag/Facebook">Facebook</a>,  <a href="http://technorati.com/tag/LinkedIn">LinkedIn</a>, <a href="http://technorati.com/tag/twitter">twitter</a>, <a href="http://technorati.com/tag/Jeff+Pulver">Jeff Pulver</a></font></p><br><br>Tags: <a href="http://www.croncast.com/keyg/social">social</a> <a href="http://www.technorati.com/tag/social"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/social.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/media">media</a> <a href="http://www.technorati.com/tag/media"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/media.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/impact">impact</a> <a href="http://www.technorati.com/tag/impact"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/impact.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/future">future</a> <a href="http://www.technorati.com/tag/future"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/future.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/first">first</a> <a href="http://www.technorati.com/tag/first"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/first.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></content:encoded>

         <pubDate>Thu, 25 Sep 2008 13:37:08 -0400</pubDate>         <guid isPermaLink="false">tag:croncast.com,4446</guid>

			<itunes:subtitle/>
      </item>
      <item>
         <title>Free Webinar on Cloud Computing, Data Integration, and RIAs Next Week, July 9th at 1PM EST from PeopleOverProcess.com</title>
         <link>http://feeds.feedburner.com/~r/cote/~3/325201387/</link>
		 <category>Shared item</category>
			<description><![CDATA[<p>
<a href="http://www.flickr.com/photos/cote/2555490997/" title="Orlando Airport Shuttle Monorail by cote, on Flickr"><img src="http://farm4.static.flickr.com/3049/2555490997_2f8e547494.jpg" width="500" height="375" alt="Orlando Airport Shuttle Monorail"></a></p>
<p>Next week I'll be participating in <a href="https://www2.gotomeeting.com/register/728680863">a webinar</a> with one of our clients, SnapLogic, on data integration in the cloud and with RIAs. Originally, we'd billed this as being about RIA's and data integration, but there's been so much interest in getting data integration in the cloud that we've expanded the scope a tad, which suits me just fine.</p>
<h2>Adding Data-Meat to the RIA Skeleton</h2>
<p>I've been fond of pointing out that content (a consumer friendly word for data) is still king in the land of RIAs, and the same holds for cloud computing. Being able to pull in data to RIA is key: you've got to have some reason to use them other than watching videos.</p>
<p>More importantly, from the business side of the house, there are piles and piles of dark data out there in business systems waiting to be used in new and exciting ways: think of how much use we get out of maps now that all that geo-data is wired up, or how sites like Zillow that finally pulled together mounds of public data to do something useful and delightful. Businesses have similar reams of data that are just looking for a simple and pleasing interface.</p>
<h2>Middleware for the Cloud</h2>
<p>In my view, RIAs (along with plain old web applications) are part of the thin layer of frosting on-top of most cloud computing: they provide the application layer where people actually do things. Running around right below them is the layer of cloud middleware where components like SnapLogic's <a href="http://www.redmonk.com/cote/2008/04/23/snaplogic-20-and-really-simple-integration/">really simple integration</a> open source stack helps wire things up.</p>
<p>This idea of using cloud computing for applications isn't an exclusive claim to how the cloud can be used, of course: clearly, there are headless, batch-jobs (more akin to grid-think of old) that cloud computing can be used for as well. There's the <a href="http://open.blogs.nytimes.com/2007/11/01/self-service-prorated-super-computing-fun/">now canonical <i>NYTimes</i>/EC2 example</a>.</p>
<h2>Sign up!</h2>
<p>Most of the webinar will simply be a conversation on this topic - laced in with some slides - along with a small demo from SnapLogic and Q&amp;A at the end. If this general topic seems interesting, <a href="javascript:void(0);"><a href="javascript:void(0);"><a href="https://www2.gotomeeting.com/register/728680863">you can sign up for it for free</a> and come join the fun next Wednesday, July 9th at 1PM Eastern/12PM Central/10PM Pacific.</a></a></p>
<p><b>Disclaimer:</b> SnapLogic is a client and is paying for my participation in this webinar.</p>
<p><a href="http://www.redmonk.com/cote/?p=1445&amp;akst_action=share-this" title="E-mail this, post to del.icio.us, etc.">Share This</a>
</p><div>
<a href="http://feeds.feedburner.com/~f/cote?a=2eTClJ"><img src="http://feeds.feedburner.com/~f/cote?i=2eTClJ" border="0"></a> <a href="http://feeds.feedburner.com/~f/cote?a=lu3wnJ"><img src="http://feeds.feedburner.com/~f/cote?i=lu3wnJ" border="0"></a> <a href="http://feeds.feedburner.com/~f/cote?a=tjJZVJ"><img src="http://feeds.feedburner.com/~f/cote?i=tjJZVJ" border="0"></a> <a href="http://feeds.feedburner.com/~f/cote?a=Ftc9KJ"><img src="http://feeds.feedburner.com/~f/cote?i=Ftc9KJ" border="0"></a>
</div><br><br>Tags: <a href="http://www.croncast.com/keyg/data">data</a> <a href="http://www.technorati.com/tag/data"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/data.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/cloud">cloud</a> <a href="http://www.technorati.com/tag/cloud"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/cloud.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/computing">computing</a> <a href="http://www.technorati.com/tag/computing"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/computing.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/integration">integration</a> <a href="http://www.technorati.com/tag/integration"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/integration.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/snaplogic">snaplogic</a> <a href="http://www.technorati.com/tag/snaplogic"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/snaplogic.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></description><content:encoded><![CDATA[<p>
<a href="http://www.flickr.com/photos/cote/2555490997/" title="Orlando Airport Shuttle Monorail by cote, on Flickr"><img src="http://farm4.static.flickr.com/3049/2555490997_2f8e547494.jpg" width="500" height="375" alt="Orlando Airport Shuttle Monorail"></a></p>
<p>Next week I'll be participating in <a href="https://www2.gotomeeting.com/register/728680863">a webinar</a> with one of our clients, SnapLogic, on data integration in the cloud and with RIAs. Originally, we'd billed this as being about RIA's and data integration, but there's been so much interest in getting data integration in the cloud that we've expanded the scope a tad, which suits me just fine.</p>
<h2>Adding Data-Meat to the RIA Skeleton</h2>
<p>I've been fond of pointing out that content (a consumer friendly word for data) is still king in the land of RIAs, and the same holds for cloud computing. Being able to pull in data to RIA is key: you've got to have some reason to use them other than watching videos.</p>
<p>More importantly, from the business side of the house, there are piles and piles of dark data out there in business systems waiting to be used in new and exciting ways: think of how much use we get out of maps now that all that geo-data is wired up, or how sites like Zillow that finally pulled together mounds of public data to do something useful and delightful. Businesses have similar reams of data that are just looking for a simple and pleasing interface.</p>
<h2>Middleware for the Cloud</h2>
<p>In my view, RIAs (along with plain old web applications) are part of the thin layer of frosting on-top of most cloud computing: they provide the application layer where people actually do things. Running around right below them is the layer of cloud middleware where components like SnapLogic's <a href="http://www.redmonk.com/cote/2008/04/23/snaplogic-20-and-really-simple-integration/">really simple integration</a> open source stack helps wire things up.</p>
<p>This idea of using cloud computing for applications isn't an exclusive claim to how the cloud can be used, of course: clearly, there are headless, batch-jobs (more akin to grid-think of old) that cloud computing can be used for as well. There's the <a href="http://open.blogs.nytimes.com/2007/11/01/self-service-prorated-super-computing-fun/">now canonical <i>NYTimes</i>/EC2 example</a>.</p>
<h2>Sign up!</h2>
<p>Most of the webinar will simply be a conversation on this topic - laced in with some slides - along with a small demo from SnapLogic and Q&amp;A at the end. If this general topic seems interesting, <a href="javascript:void(0);"><a href="javascript:void(0);"><a href="https://www2.gotomeeting.com/register/728680863">you can sign up for it for free</a> and come join the fun next Wednesday, July 9th at 1PM Eastern/12PM Central/10PM Pacific.</a></a></p>
<p><b>Disclaimer:</b> SnapLogic is a client and is paying for my participation in this webinar.</p>
<p><a href="http://www.redmonk.com/cote/?p=1445&amp;akst_action=share-this" title="E-mail this, post to del.icio.us, etc.">Share This</a>
</p><div>
<a href="http://feeds.feedburner.com/~f/cote?a=2eTClJ"><img src="http://feeds.feedburner.com/~f/cote?i=2eTClJ" border="0"></a> <a href="http://feeds.feedburner.com/~f/cote?a=lu3wnJ"><img src="http://feeds.feedburner.com/~f/cote?i=lu3wnJ" border="0"></a> <a href="http://feeds.feedburner.com/~f/cote?a=tjJZVJ"><img src="http://feeds.feedburner.com/~f/cote?i=tjJZVJ" border="0"></a> <a href="http://feeds.feedburner.com/~f/cote?a=Ftc9KJ"><img src="http://feeds.feedburner.com/~f/cote?i=Ftc9KJ" border="0"></a>
</div><br><br>Tags: <a href="http://www.croncast.com/keyg/data">data</a> <a href="http://www.technorati.com/tag/data"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/data.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/cloud">cloud</a> <a href="http://www.technorati.com/tag/cloud"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/cloud.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/computing">computing</a> <a href="http://www.technorati.com/tag/computing"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/computing.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/integration">integration</a> <a href="http://www.technorati.com/tag/integration"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/integration.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/snaplogic">snaplogic</a> <a href="http://www.technorati.com/tag/snaplogic"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/snaplogic.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></content:encoded>

         <pubDate>Wed, 02 Jul 2008 20:46:05 -0400</pubDate>         <guid isPermaLink="false">tag:croncast.com,4213</guid>

			<itunes:subtitle/>
      </item>
      <item>
         <title>Meerkat: simplified SSH tunneling</title>
         <link>http://feeds.tuaw.com/~r/weblogsinc/tuaw/~3/303368838/</link>
		 <category>Shared item</category>
			<description><![CDATA[<p>Filed under: <a href="http://www.tuaw.com/category/software/" rel="tag">Software</a>, <a href="http://www.tuaw.com/category/security/" rel="tag">Security</a></p><p><img vspace="8" hspace="8" border="0" align="right" alt="" src="http://www.blogsmithmedia.com/www.tuaw.com/media/2008/06/meerkat.jpg">I would wager that most of the people who know they need an <a href="http://www.tuaw.com/2006/03/22/ssh-tunneling-for-fun-and-profit/">SSH tunnel</a> also know the Terminal commands to make it happen. But if those people happen to be Mac users, it's quite likely they wouldn't be averse to having menu bar access, Growl integration, Bonjour capability and a nice GUI to handle their tunnels. And to those who just know they want secure browsing, email and other network activities but aren't SSH ninjas, such things might be even more attractive.</p>
<p>Code Sorcery Workshop's <a href="http://codesorcery.net/meerkat">Meerkat</a> is a handy application that provides all of the above tools and offers setup wizards to provide the right settings for the particular tunnel you need. It turns setting up a quick SOCKS proxy for web browsing into a 2 minute task. Setting up a tunnel for Mail is just as simple. Whether you're already using tunnels or looking to get some protection while browsing at the coffeehouse, Meerkat may be able to help out.</p>
<p>You can <a href="http://codesorcery.net/meerkat">try Meerkat</a> out for free with a time-limited demo. If it should become something you can't (or don't want to) live without, you can register it for $19.95.</p>
<p><em>Thanks, Mark!</em></p><h6 style="clear:both;padding:8px 0 0 0;height:2px;font-size:1px;border:0;margin:0;padding:0"></h6><a href="http://codesorcery.net/meerkat">Read</a> | <a href="http://www.tuaw.com/2008/06/02/meerkat-simplified-ssh-tunneling/" rel="bookmark" title="Permanent link to this entry">Permalink</a> | <a href="http://www.tuaw.com/forward/1209216/" title="Send this entry to a friend via email">Email this</a> | <a href="http://www.tuaw.com/2008/06/02/meerkat-simplified-ssh-tunneling/#comments" title="View reader comments on this entry">Comments</a><br><br><p><map name="google_ad_map_16-1209216"><area shape="rect" href="http://imageads.googleadservices.com/pagead/imgclick/16-1209216?pos=0" coords="1,2,367,28"><area shape="rect" href="http://services.google.com/feedback/abg" coords="384,10,453,23"></map><img usemap="http://www.tuaw.com/#google_ad_map_16-1209216" border="0" src="http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=ca-pub-3546992251556849&amp;channel=21&amp;output=png&amp;cuid=16-1209216&amp;url=http://www.tuaw.com/2008/06/02/meerkat-simplified-ssh-tunneling/"></p>
<p><a href="http://feeds.tuaw.com/~a/weblogsinc/tuaw?a=M5COfu"><img src="http://feeds.tuaw.com/~a/weblogsinc/tuaw?i=M5COfu" border="0"></a></p><div>
<a href="http://feeds.tuaw.com/~f/weblogsinc/tuaw?a=IYE7Zi"><img src="http://feeds.tuaw.com/~f/weblogsinc/tuaw?i=IYE7Zi" border="0"></a> <a href="http://feeds.tuaw.com/~f/weblogsinc/tuaw?a=ZRZHxi"><img src="http://feeds.tuaw.com/~f/weblogsinc/tuaw?i=ZRZHxi" border="0"></a>
</div><img src="http://feeds.tuaw.com/~r/weblogsinc/tuaw/~4/303368838" height="1" width="1"><br><br>Tags: <a href="http://www.croncast.com/keyg/meerkat">meerkat</a> <a href="http://www.technorati.com/tag/meerkat"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/meerkat.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/tunnel">tunnel</a> <a href="http://www.technorati.com/tag/tunnel"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/tunnel.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/browsing">browsing</a> <a href="http://www.technorati.com/tag/browsing"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/browsing.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/ssh">ssh</a> <a href="http://www.technorati.com/tag/ssh"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/ssh.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/need">need</a> <a href="http://www.technorati.com/tag/need"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/need.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></description><content:encoded><![CDATA[<p>Filed under: <a href="http://www.tuaw.com/category/software/" rel="tag">Software</a>, <a href="http://www.tuaw.com/category/security/" rel="tag">Security</a></p><p><img vspace="8" hspace="8" border="0" align="right" alt="" src="http://www.blogsmithmedia.com/www.tuaw.com/media/2008/06/meerkat.jpg">I would wager that most of the people who know they need an <a href="http://www.tuaw.com/2006/03/22/ssh-tunneling-for-fun-and-profit/">SSH tunnel</a> also know the Terminal commands to make it happen. But if those people happen to be Mac users, it's quite likely they wouldn't be averse to having menu bar access, Growl integration, Bonjour capability and a nice GUI to handle their tunnels. And to those who just know they want secure browsing, email and other network activities but aren't SSH ninjas, such things might be even more attractive.</p>
<p>Code Sorcery Workshop's <a href="http://codesorcery.net/meerkat">Meerkat</a> is a handy application that provides all of the above tools and offers setup wizards to provide the right settings for the particular tunnel you need. It turns setting up a quick SOCKS proxy for web browsing into a 2 minute task. Setting up a tunnel for Mail is just as simple. Whether you're already using tunnels or looking to get some protection while browsing at the coffeehouse, Meerkat may be able to help out.</p>
<p>You can <a href="http://codesorcery.net/meerkat">try Meerkat</a> out for free with a time-limited demo. If it should become something you can't (or don't want to) live without, you can register it for $19.95.</p>
<p><em>Thanks, Mark!</em></p><h6 style="clear:both;padding:8px 0 0 0;height:2px;font-size:1px;border:0;margin:0;padding:0"></h6><a href="http://codesorcery.net/meerkat">Read</a> | <a href="http://www.tuaw.com/2008/06/02/meerkat-simplified-ssh-tunneling/" rel="bookmark" title="Permanent link to this entry">Permalink</a> | <a href="http://www.tuaw.com/forward/1209216/" title="Send this entry to a friend via email">Email this</a> | <a href="http://www.tuaw.com/2008/06/02/meerkat-simplified-ssh-tunneling/#comments" title="View reader comments on this entry">Comments</a><br><br><p><map name="google_ad_map_16-1209216"><area shape="rect" href="http://imageads.googleadservices.com/pagead/imgclick/16-1209216?pos=0" coords="1,2,367,28"><area shape="rect" href="http://services.google.com/feedback/abg" coords="384,10,453,23"></map><img usemap="http://www.tuaw.com/#google_ad_map_16-1209216" border="0" src="http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=ca-pub-3546992251556849&amp;channel=21&amp;output=png&amp;cuid=16-1209216&amp;url=http://www.tuaw.com/2008/06/02/meerkat-simplified-ssh-tunneling/"></p>
<p><a href="http://feeds.tuaw.com/~a/weblogsinc/tuaw?a=M5COfu"><img src="http://feeds.tuaw.com/~a/weblogsinc/tuaw?i=M5COfu" border="0"></a></p><div>
<a href="http://feeds.tuaw.com/~f/weblogsinc/tuaw?a=IYE7Zi"><img src="http://feeds.tuaw.com/~f/weblogsinc/tuaw?i=IYE7Zi" border="0"></a> <a href="http://feeds.tuaw.com/~f/weblogsinc/tuaw?a=ZRZHxi"><img src="http://feeds.tuaw.com/~f/weblogsinc/tuaw?i=ZRZHxi" border="0"></a>
</div><img src="http://feeds.tuaw.com/~r/weblogsinc/tuaw/~4/303368838" height="1" width="1"><br><br>Tags: <a href="http://www.croncast.com/keyg/meerkat">meerkat</a> <a href="http://www.technorati.com/tag/meerkat"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/meerkat.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/tunnel">tunnel</a> <a href="http://www.technorati.com/tag/tunnel"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/tunnel.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/browsing">browsing</a> <a href="http://www.technorati.com/tag/browsing"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/browsing.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/ssh">ssh</a> <a href="http://www.technorati.com/tag/ssh"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/ssh.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/need">need</a> <a href="http://www.technorati.com/tag/need"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/need.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></content:encoded>

         <pubDate>Tue, 03 Jun 2008 02:30:00 -0400</pubDate>         <guid isPermaLink="false">tag:croncast.com,4103</guid>

			<itunes:subtitle/>
      </item>
      <item>
         <title>Blogging 2.0 Misses The Point</title>
         <link>http://www.podcastingnews.com/2008/05/19/blogging-20-misses-point/</link>
		 <category>Shared item</category>
			<description><![CDATA[<p><img title="long-tail-love" src="http://www.podcastingnews.com/content/wp-content/uploads/2008/05/long-tail-love.jpg" alt=""></p>
<p>There's been some discussion in the last few days about so-called blogging 2.0. Here are a couple of quotes that explain the new paradigm of blogging 2.0.</p>
<p>via <a href="http://www.inquisitr.com/blogging-20-its-all-about-the-user">The Inquisitr</a>:</p>
<blockquote><p>If blogging 1.0 was about enabling the conversation on each blog, blogging 2.0 is about enabling the conversation across many blogs and supporting sites and services. The conversation has matured and no longer is it acceptable to believe that as a content owner you hold exclusive domain over conversations you have started. Users/ readers today demand more than a conversation on one site, and blogging 2.0 facilitates this.</p></blockquote>
<p>via <a href="http://www.louisgray.com/live/2008/05/blogging-20-causing-friction-with-10.html">Louis Gray</a>:</p>
<blockquote><p>Blogging 1.0 centered around who could:</p>
<ul>
<li>Amass the most page views</li>
<li>Display the most ads</li>
<li>Get the most comments</li>
<li>Attract the most RSS subscribers</li>
</ul>
<p>But then came along some inconvenient wrinkles to the mix:</p>
<ul>
<li>Full RSS feeds took page views away from the blog</li>
<li>Readers installed ad filters, and didn't click</li>
<li>Comments started to live elsewhere</li>
<li>Every blogger in an industry covered the exact same stories</li>
</ul>
<p>The world of blogging has changed. Those bloggers who accept the changes will have a natural advantage over those who do not. The additional time it takes to engage on FriendFeed, Twitter and other social media sites will absolutely pay off in the end, even if it's hard to understand for those who've always accepted things for what they are.</p></blockquote>
<p>Call me blogtarded, but this blogging 2.0 idea seems to be missing the most basic thing that has made the growth of blogging and Internet media interesting: the Internet is unrelentingly lowering the barriers to content publishing, to the point that it is becoming trivial to publish content.</p>
<p><strong>You Can Do It</strong></p>
<p>The fundamental idea of blogging is that <strong>You</strong> can do it.</p>
<p><strong>You</strong> can go to a website, register and be blogging 5 minute later. <strong>You</strong> can install Wordpress on a cheap Web hosting service and create your own site.</p>
<p>The same idea is central to podcasting. <strong>You</strong> can use a microphone and Garageband and podcast to the world.  <strong>You</strong> can use your video camera, or even the camera built into your computer, to create a vlog or video podcast.</p>
<p>When people talk about blogging being about getting the most page views, getting the most comments or displaying the most ads, they are missing the point. Worrying about page views and ad views are traditional media concerns, and are not things that differentiate blogging.</p>
<p>And you have to wonder if we should be navel-gazing about blogging 2.0, when 55 million people in the US alone <a href="http://www.podcastingnews.com/2008/05/19/homes-twitter-podcast-anytime/">haven't even caught up with email 1.0</a>.</p>
<p>Blogging, vlogging and podcasting are still too hard for most people, and that makes the Internet a lot less interesting than it could be.</p>
<p>What makes blogging and podcasting interesting is that <strong>you</strong> can do it. You can make the long tail longer.</p>
<p>And when you make the long tail longer, that means there's more tail for everybody. (Or something like that!)</p>
<p>Image: <a href="http://flickr.com/photos/mcdemoura/2058816314/sizes/o/">Mrcio Cabral de Moura</a></p><br><br>Tags: <a href="http://www.croncast.com/keyg/blogging">blogging</a> <a href="http://www.technorati.com/tag/blogging"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/blogging.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/views">views</a> <a href="http://www.technorati.com/tag/views"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/views.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/conversation">conversation</a> <a href="http://www.technorati.com/tag/conversation"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/conversation.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/page">page</a> <a href="http://www.technorati.com/tag/page"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/page.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/idea">idea</a> <a href="http://www.technorati.com/tag/idea"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/idea.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></description><content:encoded><![CDATA[<p><img title="long-tail-love" src="http://www.podcastingnews.com/content/wp-content/uploads/2008/05/long-tail-love.jpg" alt=""></p>
<p>There's been some discussion in the last few days about so-called blogging 2.0. Here are a couple of quotes that explain the new paradigm of blogging 2.0.</p>
<p>via <a href="http://www.inquisitr.com/blogging-20-its-all-about-the-user">The Inquisitr</a>:</p>
<blockquote><p>If blogging 1.0 was about enabling the conversation on each blog, blogging 2.0 is about enabling the conversation across many blogs and supporting sites and services. The conversation has matured and no longer is it acceptable to believe that as a content owner you hold exclusive domain over conversations you have started. Users/ readers today demand more than a conversation on one site, and blogging 2.0 facilitates this.</p></blockquote>
<p>via <a href="http://www.louisgray.com/live/2008/05/blogging-20-causing-friction-with-10.html">Louis Gray</a>:</p>
<blockquote><p>Blogging 1.0 centered around who could:</p>
<ul>
<li>Amass the most page views</li>
<li>Display the most ads</li>
<li>Get the most comments</li>
<li>Attract the most RSS subscribers</li>
</ul>
<p>But then came along some inconvenient wrinkles to the mix:</p>
<ul>
<li>Full RSS feeds took page views away from the blog</li>
<li>Readers installed ad filters, and didn't click</li>
<li>Comments started to live elsewhere</li>
<li>Every blogger in an industry covered the exact same stories</li>
</ul>
<p>The world of blogging has changed. Those bloggers who accept the changes will have a natural advantage over those who do not. The additional time it takes to engage on FriendFeed, Twitter and other social media sites will absolutely pay off in the end, even if it's hard to understand for those who've always accepted things for what they are.</p></blockquote>
<p>Call me blogtarded, but this blogging 2.0 idea seems to be missing the most basic thing that has made the growth of blogging and Internet media interesting: the Internet is unrelentingly lowering the barriers to content publishing, to the point that it is becoming trivial to publish content.</p>
<p><strong>You Can Do It</strong></p>
<p>The fundamental idea of blogging is that <strong>You</strong> can do it.</p>
<p><strong>You</strong> can go to a website, register and be blogging 5 minute later. <strong>You</strong> can install Wordpress on a cheap Web hosting service and create your own site.</p>
<p>The same idea is central to podcasting. <strong>You</strong> can use a microphone and Garageband and podcast to the world.  <strong>You</strong> can use your video camera, or even the camera built into your computer, to create a vlog or video podcast.</p>
<p>When people talk about blogging being about getting the most page views, getting the most comments or displaying the most ads, they are missing the point. Worrying about page views and ad views are traditional media concerns, and are not things that differentiate blogging.</p>
<p>And you have to wonder if we should be navel-gazing about blogging 2.0, when 55 million people in the US alone <a href="http://www.podcastingnews.com/2008/05/19/homes-twitter-podcast-anytime/">haven't even caught up with email 1.0</a>.</p>
<p>Blogging, vlogging and podcasting are still too hard for most people, and that makes the Internet a lot less interesting than it could be.</p>
<p>What makes blogging and podcasting interesting is that <strong>you</strong> can do it. You can make the long tail longer.</p>
<p>And when you make the long tail longer, that means there's more tail for everybody. (Or something like that!)</p>
<p>Image: <a href="http://flickr.com/photos/mcdemoura/2058816314/sizes/o/">Mrcio Cabral de Moura</a></p><br><br>Tags: <a href="http://www.croncast.com/keyg/blogging">blogging</a> <a href="http://www.technorati.com/tag/blogging"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/blogging.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/views">views</a> <a href="http://www.technorati.com/tag/views"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/views.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/conversation">conversation</a> <a href="http://www.technorati.com/tag/conversation"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/conversation.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/page">page</a> <a href="http://www.technorati.com/tag/page"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/page.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/idea">idea</a> <a href="http://www.technorati.com/tag/idea"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/idea.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></content:encoded>

         <pubDate>Mon, 19 May 2008 13:41:19 -0400</pubDate>         <guid isPermaLink="false">tag:croncast.com,4019</guid>

			<itunes:subtitle/>
      </item>
      <item>
         <title>The Declining Value Of Redundant News Content On The Web</title>
         <link>http://feeds.feedburner.com/~r/Media20Workgroup/~3/284477305/</link>
		 <category>Shared item</category>
			<description><![CDATA[<p>Microsoft withdrawing its offer to buy Yahoo is a sufficiently large story to demonstrate the problem of redundant news content on the web. <a href="http://news.google.com/?ncl=1154376246&amp;hl=en&amp;topic=b&amp;scoring=n">Google News</a> is currently tracking about 2,000 versions of this story. To get a better sense of why it's a problem to have 2,000 stories about the SAME THING, I've reproduced about ten percent of them below  just the headlines and ledes. If you have the stomach to scroll through them all to see what else I have to say about it, check out the sources as you scroll:</p>
<p><strong>UPDATE:</strong> The Google News example is <a href="http://publishing2.com/google-news-microsoft-yahoo-example/">reproduced here</a> instead. You're reading this in RSS or email a day after I posted it because this post was so large it broke my Feedburner feed. Too much content breaks the web  there you have it. Keep reading for my original argument.</p>
<p>If you've made it this far, you may have noticed the absence of blogs from the sources. So this is far from a representative sample of all of the websites that published a version of this news story.</p>
<p>Let's check out <a href="http://www.techmeme.com/080504/h1140">Techmeme</a>, again reproduced in its entirety, because seeing is disbelieving:</p>
<blockquote>
<div><a title="Permalink" href="http://www.techmeme.com/080503/p45#a080503p45"><img src="http://www.techmeme.com/img/pml.png" alt=""></a> <cite><a href="http://yhoo.client.shareholder.com/press/releases.cfm">Yahoo!</a>:</cite>
<div><strong><a href="http://yhoo.client.shareholder.com/press/releasedetail.cfm?ReleaseID=308131">Yahoo! Issues Statement in Response to Microsoft</a></strong>   SUNNYVALE, Calif., May 03, 2008 (BUSINESS WIRE)  Roy Bostock, Chairman of Yahoo! Inc. (Nasdaq:YHOO), a leading global Internet company issued the following statement today in response to Microsoft Corporation's announcement that it has withdrawn its proposal to acquire Yahoo!:</div>
<p></p>
<div><span>Link Search:</span> <a href="http://www.ask.com/blogsearch?q=http://yhoo.client.shareholder.com/press/releasedetail.cfm?ReleaseID=308131">Ask</a>, <a href="http://www.technorati.com/search/http://yhoo.client.shareholder.com/press/releasedetail.cfm?ReleaseID=308131">Technorati</a>, <a href="http://www.sphere.com/search?q=sphereit:http://yhoo.client.shareholder.com/press/releasedetail.cfm?ReleaseID=308131">Sphere</a>, <a href="http://blogsearch.google.com/blogsearch?q=http://yhoo.client.shareholder.com/press/releasedetail.cfm?ReleaseID=308131">Google</a>, and <a href="http://blogs.icerocket.com/search?q=http://yhoo.client.shareholder.com/press/releasedetail.cfm?ReleaseID=308131">IceRocket</a></div>
<div style="display:block">
<div>
<div><a href="javascript:void(0);">+</a></div>
<p><span>Discussion:</span> <a href="http://www.techcrunch.com/2008/05/03/yahoo-responds/">TechCrunch</a>, <a href="http://news.stepforth.com/blog/2008/05/microsoft-backs-down-from-yahoo.php">StepForth SEO News Blog</a>, <a href="http://www.bbc.co.uk/blogs/technology/2008/05/walking_away.html">BBC NEWS</a>, <a href="http://www.forbes.com/2008/05/03/microsoft-yahoo-deal-tech-enter-cx_ec_0503end.html">Forbes</a>, <a href="http://www.i4u.com/article16940.html">I4U News</a>, <a href="http://blog.tmcnet.com/blog/rich-tehrani/microsoft/microsoft-withdraws-yahoo-proposal.html">VoIP Blog</a>, <a href="http://www.geeknewscentral.com/archives/007899.html">Geek News Central</a>, <a href="http://furrier.org/2008/05/04/victory-for-silicon-valley-the-silicon-valley-poison-pill-worked-as-predicted/">Furrier.org</a>, <a href="http://blogs.barrons.com/techtraderdaily/2008/05/03/ballmer-calls-yangs-bluff-microsoft-walks/">Tech Trader Daily</a>, <a href="http://www.liveside.net/blogs/main/archive/2008/05/04/yahoo-responds-to-withdrawal-issues-statement.aspx">LiveSide</a>, <a href="http://paul.kedrosky.com/archives/2008/05/03/yahoos_response.html">Paul Kedrosky's </a> and <a href="http://geekspeaker.spaces.live.com/blog/cns%21588D139CAFEFE462%211258.entry">Geek Speaker</a></p>
</div>
</div>
<div>
<div>
<div style="display:block"><a href="javascript:void(0);"></a></div>
<p><span>Discussion:</span></p>
<div><cite>Michael Arrington / <a href="http://www.techcrunch.com/">TechCrunch</a>:</cite> <a href="http://www.techcrunch.com/2008/05/03/yahoo-responds/">Yahoo Responds: The distraction of Microsoft's unsolicited proposal now behind us</a></div>
<div><cite>Ross Dunn / <a href="http://news.stepforth.com/blog/index.php">StepForth SEO News Blog</a>:</cite> <a href="http://news.stepforth.com/blog/2008/05/microsoft-backs-down-from-yahoo.php">Microsoft Backs Down from Yahoo</a></div>
<div><cite>Darren Waters / <a href="http://www.bbc.co.uk/blogs/technology/">BBC NEWS | dot.life</a>:</cite> <a href="http://www.bbc.co.uk/blogs/technology/2008/05/walking_away.html">Walking away</a></div>
<div><cite>Elizabeth Corcoran / <a href="http://www.forbes.com/">Forbes</a>:</cite> <a href="http://www.forbes.com/2008/05/03/microsoft-yahoo-deal-tech-enter-cx_ec_0503end.html">What Microsoft Will Buy Now    Expect to hear more from Steve Ballmer.</a></div>
<div><cite>Luigi Lugmayr / <a href="http://www.i4u.com/">I4U News</a>:</cite> <a href="http://www.i4u.com/article16940.html">Yahoo's Response to Microsoft's Bid Withdrawal</a></div>
<div><cite><a href="http://blog.tmcnet.com/blog/rich-tehrani/">VoIP Blog</a>:</cite> <a href="http://blog.tmcnet.com/blog/rich-tehrani/microsoft/microsoft-withdraws-yahoo-proposal.html">Microsoft Withdraws Yahoo Proposal</a></div>
<div><cite>Todd Cochrane / <a href="http://www.geeknewscentral.com/">Geek News Central</a>:</cite> <a href="http://www.geeknewscentral.com/archives/007899.html">Yahoo is Toast and Yang needs to be Fired</a></div>
<div><cite>John Furrier / <a href="http://furrier.org/">Furrier.org</a>:</cite> <a href="http://furrier.org/2008/05/04/victory-for-silicon-valley-the-silicon-valley-poison-pill-worked-as-predicted/">Victory for Silicon Valley; The Silicon Valley Poison Pill Worked - As Predicted</a></div>
<div><cite>Eric Savitz / <a href="http://blogs.barrons.com/techtraderdaily">Tech Trader Daily</a>:</cite> <a href="http://blogs.barrons.com/techtraderdaily/2008/05/03/ballmer-calls-yangs-bluff-microsoft-walks/">Ballmer Calls Yang's Bluff: Microsoft Walks</a></div>
<div><cite>Kip Kniskern / <a href="http://www.liveside.net/blogs/">LiveSide</a>:</cite> <a href="http://www.liveside.net/blogs/main/archive/2008/05/04/yahoo-responds-to-withdrawal-issues-statement.aspx">Yahoo! responds to withdrawal - issues statement</a></div>
<div><cite><a href="http://paul.kedrosky.com/">Paul Kedrosky's Infectious Greed</a>:</cite> <a href="http://paul.kedrosky.com/archives/2008/05/03/yahoos_response.html">Yahoo's Response to Microsoft's Response to Yahoo</a></div>
<div><cite><a href="http://geekspeaker.spaces.live.com/blog/">Geek Speaker</a>:</cite> <a href="http://geekspeaker.spaces.live.com/blog/cns%21588D139CAFEFE462%211258.entry">Why Yahoo is worth more than 50 billion &amp; why Yahoo! For Good  </a></div>
<div style="display:block"><a href="javascript:void(0);">  All Related Discussion</a></div>
<div><a href="javascript:void(0);">  Hide All Related Discussion</a></div>
</div>
</div>
</div>
<div><span>RELATED:</span></div>
<p><a name="a080504p7"></a></p>
<div><a title="Permalink" href="http://www.techmeme.com/080503/p34#a080503p34"><img src="http://www.techmeme.com/img/pml.png" alt=""></a> <cite><a href="http://www.microsoft.com/presspass/default.mspx">Microsoft</a>:</cite>
<div><strong><a href="http://www.microsoft.com/presspass/press/2008/may08/05-03letter.mspx">Microsoft Withdraws Proposal to Acquire Yahoo!</a></strong>   Microsoft Corp. today announced that it has withdrawn its proposal to acquire Yahoo! Inc.    Microsoft Corp. (NASDAQ: MSFT) today announced that it has withdrawn its proposal to acquire Yahoo! Inc. (NASDAQ: YHOO).</div>
<p></p>
<div><span>Link Search:</span> <a href="http://www.ask.com/blogsearch?q=http://www.microsoft.com/presspass/press/2008/may08/05-03letter.mspx">Ask</a>, <a href="http://www.technorati.com/search/http://www.microsoft.com/presspass/press/2008/may08/05-03letter.mspx">Technorati</a>, <a href="http://www.sphere.com/search?q=sphereit:http://www.microsoft.com/presspass/press/2008/may08/05-03letter.mspx">Sphere</a>, <a href="http://blogsearch.google.com/blogsearch?q=http://www.microsoft.com/presspass/press/2008/may08/05-03letter.mspx">Google</a>, and <a href="http://blogs.icerocket.com/search?q=http://www.microsoft.com/presspass/press/2008/may08/05-03letter.mspx">IceRocket</a></div>
<div style="display:block">
<div>
<div><a href="javascript:void(0);">+</a></div>
<p><span>Discussion:</span> <a href="http://searchengineland.com/080504-104940.php">Search Engine Land</a>, <a href="http://blogs.zdnet.com/Google/?p=1029">Googling Google</a>, <a href="http://blogs.zdnet.com/BTL/?p=8714">Between the Lines</a>, <a href="http://www.news.com/8301-10784_3-9935249-7.html">CNET News.com</a>, <a href="http://webworkerdaily.com/2008/05/04/microsoft-yahoo-web-workers/">Web Worker Daily</a>, <a href="http://www.techcrunch.com/2008/05/03/microsoftyahoo-summary-of-news-bonus-gillmor-gang/">TechCrunch</a>, <a href="http://blog.webreakstuff.com/2008/05/msft-and-yhoo-its-finally-over/">WeBreakStuff</a>, <a href="http://www.psynixis.com/blog/2008/05/04/yahoo-blows-it-how-low-will-they-go/">Simon's Blog</a>, <a href="http://www.i4u.com/article16939.html">I4U News</a>, <a href="http://www.hunterstrat.com/news/2008/05/04/microsoft-withdraws-offer-for-yahoo/">Microsoft News Tracker</a>, <a href="http://blogs.chron.com/techblog/archives/2008/05/microsoft_to_yahoo_never_mind_1.html">TechBlog</a>, <a href="http://dealbook.blogs.nytimes.com/2008/05/03/will-microsoft-really-walk/">DealBook</a>, <a href="http://dotnetjunkies.com/WebLog/paul/archive/2008/05/04/467031.aspx">Paul Mooney</a>, <a href="http://www.pocketpcthoughts.com/news/show/88917/microsoft-walks-away-from-yahoo.html">Pocket PC Thoughts.com</a>, <a href="http://www.techspot.com/news/29921-Weekend-tech-reading-504.html">TechSpot</a>, <a href="http://joeduck.com/2008/05/03/ballmer-has-left-the-building/">Joe Duck</a>, <a href="http://techbays.com/2008/05/03/microsoft-yahoo-deal-the-no-votes-win/">TechBays</a>, <a href="http://blog.wired.com/business/2008/05/microsoft-walks.html">Epicenter</a>, <a href="http://blogs.zdnet.com/microsoft/?p=1376">All about Microsoft</a>, <a href="http://news.digitaltrends.com/news/story/16582/microsoft_abandons_yahoo_takeover">Digital Trends</a>, <a href="http://anzman.blogspot.com/2008/05/microsoft-pulls-plug-on-yahoo.html">SEO and Tech Daily</a>, <a href="http://www.realtechnews.com/posts/5646">Alice Hill's Real Tech News</a>, <a href="http://www.markevanstech.com/2008/05/03/lets-get-the-yahoo-microsoft-blogging-party-started/">Mark Evans</a>, <a href="http://www.latimes.com/technology/la-na-microsoft4-2008may04,0,1142949.story">Los Angeles Times</a>, <a href="http://www.webguild.org/2008/05/ballmers-letter-to-jerry-yang.php">WebGuild</a>, <a href="http://mashable.com/2008/05/03/breaking-microsoft-corporation-rescinds-offer-for-yahoo-inc/">Mashable!</a>, <a href="http://blog.seattlepi.nwsource.com/microsoft/archives/138070.asp">Todd Bishop's Microsoft Blog</a>, <a href="http://valleywag.com/386898/ballmer-to-yang-how-stupid-are-you">Valleywag</a>, <a href="http://www.quickonlinetips.com/archives/2008/05/microsoft-unable-to-buy-yahoo/">Quick Online Tips</a>, <a href="http://gigaom.com/2008/05/03/microsoft-yahoo-bid-over/">GigaOM</a>, <a href="http://www.profy.com/2008/05/03/microsot-withdraws-yahoo-bid/">Profy.Com</a>, <a href="http://www.appscout.com/2008/05/microsoft_withdraws_yahoo_bid.php">AppScout</a>, <a href="http://blog.clickz.com/080503-213942.html">ClickZ News Blog</a>, <a href="http://www.theregister.co.uk/2008/05/04/microsoft_withdraws_yahoo_offer/">The Register</a> and <a href="http://scobleizer.com/2008/05/03/the-first-friendfeed-event-msft-and-yhoo/">Scobleizer</a></p>
</div>
</div>
<div>
<div>
<div style="display:block"><a href="javascript:void(0);"></a></div>
<p><span>Discussion:</span></p>
<div><cite>Danny Sullivan / <a href="http://searchengineland.com/">Search Engine Land</a>:</cite> <a href="http://searchengineland.com/080504-104940.php">Leaving Las Yahoo: Microsoft's $5 Billion Mistake?</a></div>
<div><cite>Garett Rogers / <a href="http://blogs.zdnet.com/Google">Googling Google</a>:</cite> <a href="http://blogs.zdnet.com/Google/?p=1029">Microsoft withrawls bid for Yahoo, Google wins</a></div>
<div><cite>Larry Dignan / <a href="http://blogs.zdnet.com/BTL">Between the Lines</a>:</cite> <a href="http://blogs.zdnet.com/BTL/?p=8714">Microsoft walks away from Yahoo: Assessing winners, losers and Plan Bs</a></div>
<div><cite>Stephen Shankland / <a href="http://www.news.com/">CNET News.com</a>:</cite> <a href="http://www.news.com/8301-10784_3-9935249-7.html">Yahoo-Google ad deal could be announced next week</a></div>
<div><cite>Mike Gunderloy / <a href="http://webworkerdaily.com/">Web Worker Daily</a>:</cite> <a href="http://webworkerdaily.com/2008/05/04/microsoft-yahoo-web-workers/">Microsoft, Yahoo, and Web Workers</a></div>
<div><cite>Michael Arrington / <a href="http://www.techcrunch.com/">TechCrunch</a>:</cite> <a href="http://www.techcrunch.com/2008/05/03/microsoftyahoo-summary-of-news-bonus-gillmor-gang/">Microsoft/Yahoo: Summary Of Today's News &amp; Bonus Gillmor Gang</a></div>
<div><cite>Fred Oliveira / <a href="http://blog.webreakstuff.com/">WeBreakStuff</a>:</cite> <a href="http://blog.webreakstuff.com/2008/05/msft-and-yhoo-its-finally-over/">MSFT and YHOO: It's finally over</a></div>
<div><cite>Simon Brocklehurst / <a href="http://www.psynixis.com/blog">Simon's Blog</a>:</cite> <a href="http://www.psynixis.com/blog/2008/05/04/yahoo-blows-it-how-low-will-they-go/">YAHOO! BLOWS IT - HOW LOW WILL THEY GO?</a></div>
<div><cite>Luigi Lugmayr / <a href="http://www.i4u.com/">I4U News</a>:</cite> <a href="http://www.i4u.com/article16939.html">Microsoft officially withdraws Yahoo Bid</a></div>
<div><cite>David Hunter / <a href="http://www.hunterstrat.com/news">Microsoft News Tracker</a>:</cite> <a href="http://www.hunterstrat.com/news/2008/05/04/microsoft-withdraws-offer-for-yahoo/">Microsoft withdraws offer for Yahoo</a></div>
<div><cite>Dwight / <a href="http://blogs.chron.com/techblog/">TechBlog</a>:</cite> <a href="http://blogs.chron.com/techblog/archives/2008/05/microsoft_to_yahoo_never_mind_1.html">Microsoft to Yahoo: Never mind</a></div>
<div><cite><a href="http://dealbook.blogs.nytimes.com/">DealBook</a>:</cite> <a href="http://dealbook.blogs.nytimes.com/2008/05/03/will-microsoft-really-walk/">Will Microsoft Really Walk?</a></div>
<div><cite><a href="http://dotnetjunkies.com/WebLog/paul/default.aspx">Paul Mooney</a>:</cite> <a href="http://dotnetjunkies.com/WebLog/paul/archive/2008/05/04/467031.aspx">Yahoo Prevails    Microsoft Withdraws Proposal to Acquire Yahoo!</a></div>
<div><cite>Darius Wey / <a href="http://www.pocketpcthoughts.com/">Pocket PC Thoughts.com</a>:</cite> <a href="http://www.pocketpcthoughts.com/news/show/88917/microsoft-walks-away-from-yahoo.html">Microsoft Walks Away From Yahoo!</a></div>
<div><cite>Julio Franco / <a href="http://www.techspot.com/">TechSpot</a>:</cite> <a href="http://www.techspot.com/news/29921-Weekend-tech-reading-504.html">Weekend tech reading (5.04)</a></div>
<div><cite><a href="http://joeduck.com/">Joe Duck</a>:</cite> <a href="http://joeduck.com/2008/05/03/ballmer-has-left-the-building/">Ballmer has left the Building</a></div>
<div><cite>Carlo Maglinao / <a href="http://techbays.com/">TechBays</a>:</cite> <a href="http://techbays.com/2008/05/03/microsoft-yahoo-deal-the-no-votes-win/">Microsoft Yahoo! Deal: the NO votes win</a></div>
<div><cite>Betsy Schiffman / <a href="http://blog.wired.com/business/">Epicenter</a>:</cite> <a href="http://blog.wired.com/business/2008/05/microsoft-walks.html">Microsoft Walks! Says Yahoo Demands Don't Make Sense</a></div>
<div><cite>Mary Jo Foley / <a href="http://blogs.zdnet.com/microsoft">All about Microsoft</a>:</cite> <a href="http://blogs.zdnet.com/microsoft/?p=1376">Microsoft takes its ball and leaves Yahoo on the Web 2.0 playground</a></div>
<div><cite>Geoff Duncan / <a href="http://news.digitaltrends.com/">Digital Trends</a>:</cite> <a href="http://news.digitaltrends.com/news/story/16582/microsoft_abandons_yahoo_takeover">Microsoft Abandons Yahoo Takeover</a></div>
<div><cite>Charlie Anzman / <a href="http://anzman.blogspot.com/">SEO and Tech Daily</a>:</cite> <a href="http://anzman.blogspot.com/2008/05/microsoft-pulls-plug-on-yahoo.html">Microsoft pulls the plug on Yahoo!</a></div>
<div><cite>Michael Santo / <a href="http://www.realtechnews.com/">Alice Hill's Real Tech News</a>:</cite> <a href="http://www.realtechnews.com/posts/5646">No Microhoo: Microsoft Walks Away from Yahoo! Deal</a></div>
<div><cite><a href="http://www.markevanstech.com/">Mark Evans</a>:</cite> <a href="http://www.markevanstech.com/2008/05/03/lets-get-the-yahoo-microsoft-blogging-party-started/">Let's Get the (Yahoo-Microsoft Blogging Party) Started</a></div>
<div><cite><a href="http://www.latimes.com/">Los Angeles Times</a>:</cite> <a href="http://www.latimes.com/technology/la-na-microsoft4-2008may04,0,1142949.story">Microsoft drops bid to acquire Yahoo</a></div>
<div><cite>Joseph Hunkins / <a href="http://www.webguild.org/index.php">WebGuild</a>:</cite> <a href="http://www.webguild.org/2008/05/ballmers-letter-to-jerry-yang.php">Ballmer's Letter to Jerry Yang Withdrawing Microsoft's Offer</a></div>
<div><cite>Paul Glazowski / <a href="http://mashable.com/">Mashable!</a>:</cite> <a href="http://mashable.com/2008/05/03/breaking-microsoft-corporation-rescinds-offer-for-yahoo-inc/">Breaking: Microsoft Corporation Rescinds Offer For Yahoo Inc</a></div>
<div><cite>Todd Bishop / <a href="http://blog.seattlepi.nwsource.com/microsoft">Todd Bishop's Microsoft Blog</a>:</cite> <a href="http://blog.seattlepi.nwsource.com/microsoft/archives/138070.asp">Ballmer's internal e-mail on Yahoo decision</a></div>
<div><cite>Owen Thomas / <a href="http://valleywag.com/">Valleywag</a>:</cite> <a href="http://valleywag.com/386898/ballmer-to-yang-how-stupid-are-you">Ballmer to Yang: How stupid are you?</a></div>
<div><cite><a href="http://www.quickonlinetips.com/">Quick Online Tips</a>:</cite> <a href="http://www.quickonlinetips.com/archives/2008/05/microsoft-unable-to-buy-yahoo/">Microsoft Unable to Buy Yahoo!</a></div>
<div><cite>Om Malik / <a href="http://gigaom.com/">GigaOM</a>:</cite> <a href="http://gigaom.com/2008/05/03/microsoft-yahoo-bid-over/">Microsoft To Yahoo: Take a Hike!</a></div>
<div><cite>Cyndy Aleo-Carreira / <a href="http://www.profy.com/">Profy.Com</a>:</cite> <a href="http://www.profy.com/2008/05/03/microsot-withdraws-yahoo-bid/">Steve Stands Jerry Up for the Internet Prom</a></div>
<div><cite>Brian Heater / <a href="http://www.appscout.com/">AppScout</a>:</cite> <a href="http://www.appscout.com/2008/05/microsoft_withdraws_yahoo_bid.php">Microsoft Withdraws Yahoo! Bid</a></div>
<div><cite>Anna Maria Virzi / <a href="http://blog.clickz.com/">ClickZ News Blog</a>:</cite> <a href="http://blog.clickz.com/080503-213942.html">Microsoft Withdraws Bid for Yahoo</a></div>
<div><cite>Drew Cullen / <a href="http://www.theregister.co.uk/">The Register</a>:</cite> <a href="http://www.theregister.co.uk/2008/05/04/microsoft_withdraws_yahoo_offer/">Microsoft walks away from Yahoo!</a></div>
<div><cite>Robert Scoble / <a href="http://scobleizer.com/">Scobleizer</a>:</cite> <a href="http://scobleizer.com/2008/05/03/the-first-friendfeed-event-msft-and-yhoo/">The First FriendFeed Event: MSFT and YHOO</a></div>
</div>
</div>
</div>
<p><a name="a080504p5"></a></p>
<div><a href="http://kara.allthingsd.com/20080503/microhoo-the-odd-couple-meetings-led-nowhere/"><img src="http://www.techmeme.com/080503/i48.jpg" alt=""></a> <a title="Permalink" href="http://www.techmeme.com/080503/p48#a080503p48"><img src="http://www.techmeme.com/img/pml.png" alt=""></a> <cite>Kara Swisher / <a href="http://kara.allthingsd.com/">BoomTown</a>:</cite>
<div><strong><a href="http://kara.allthingsd.com/20080503/microhoo-the-odd-couple-meetings-led-nowhere/">MicroHoo: The Odd Couple Meetings Led Nowhere</a></strong>   After today's events, I guess you could say Yahoo and Microsoft tried, holding a series of meetings about a possible takeover that ended up proving exactly how incompatible the companies were.    Kind of like Oscar Madison and Felix Unger, but not funny in any way at all.</div>
<p></p>
<div><span>Link Search:</span> <a href="http://www.ask.com/blogsearch?q=http://kara.allthingsd.com/20080503/microhoo-the-odd-couple-meetings-led-nowhere/">Ask</a>, <a href="http://www.technorati.com/search/http://kara.allthingsd.com/20080503/microhoo-the-odd-couple-meetings-led-nowhere/">Technorati</a>, <a href="http://www.sphere.com/search?q=sphereit:http://kara.allthingsd.com/20080503/microhoo-the-odd-couple-meetings-led-nowhere/">Sphere</a>, <a href="http://blogsearch.google.com/blogsearch?q=http://kara.allthingsd.com/20080503/microhoo-the-odd-couple-meetings-led-nowhere/">Google</a>, and <a href="http://blogs.icerocket.com/search?q=http://kara.allthingsd.com/20080503/microhoo-the-odd-couple-meetings-led-nowhere/">IceRocket</a></div>
<div style="display:block">
<div>
<div><a href="javascript:void(0);">+</a></div>
<p><span>Discussion:</span> <a href="http://blogs.zdnet.com/BTL/?p=8708">Between the Lines</a>, <a href="http://valleywag.com/386890/yahoos-37-demand-talks-microsofts-33-offer-walks">Valleywag</a> and <a href="http://paul.kedrosky.com/archives/2008/05/03/first_ticktock.html">Paul Kedrosky's </a></p>
</div>
</div>
<div>
<div>
<div style="display:block"><a href="javascript:void(0);"></a></div>
<p><span>Discussion:</span></p>
<div><cite>Larry Dignan / <a href="http://blogs.zdnet.com/BTL">Between the Lines</a>:</cite> <a href="http://blogs.zdnet.com/BTL/?p=8708">Microsoft walks: Five reasons why it's a good move</a></div>
<div><cite>Jackson West / <a href="http://valleywag.com/">Valleywag</a>:</cite> <a href="http://valleywag.com/386890/yahoos-37-demand-talks-microsofts-33-offer-walks">YAHOO'S $37 DEMAND TALKS, MICROSOFT'S $33 OFFER WALKS   Microsoft  </a></div>
<div><cite><a href="http://paul.kedrosky.com/">Paul Kedrosky's Infectious Greed</a>:</cite> <a href="http://paul.kedrosky.com/archives/2008/05/03/first_ticktock.html">First Tick-Tock of Da Deal Gone Dead</a></div>
</div>
</div>
</div>
<p><a name="a080504p8"></a></p>
<div><a title="Permalink" href="http://www.techmeme.com/080504/p7#a080504p7"><img src="http://www.techmeme.com/img/pml.png" alt=""></a> <cite>Ina Fried / <a href="http://www.news.com/beyond-binary/">Beyond Binary</a>:</cite>
<div><strong><a href="http://www.news.com/8301-13860_3-9935120-56.html">OK, so what's Microsoft's plan B?</a></strong>   With Yahoo apparently off the table, it's time to see what Microsoft's back-up plan looks like.    Microsoft has said for some time that it has a strategy with or without Yahoo, but it's a strategy clearly in need of a jump-start.</div>
<p></p>
<div><span>Link Search:</span> <a href="http://www.ask.com/blogsearch?q=http://www.news.com/8301-13860_3-9935120-56.html">Ask</a>, <a href="http://www.technorati.com/search/http://www.news.com/8301-13860_3-9935120-56.html">Technorati</a>, <a href="http://www.sphere.com/search?q=sphereit:http://www.news.com/8301-13860_3-9935120-56.html">Sphere</a>, <a href="http://blogsearch.google.com/blogsearch?q=http://www.news.com/8301-13860_3-9935120-56.html">Google</a>, and <a href="http://blogs.icerocket.com/search?q=http://www.news.com/8301-13860_3-9935120-56.html">IceRocket</a></div>
<div style="display:block">
<div>
<div><a href="javascript:void(0);">+</a></div>
<p><span>Discussion:</span> <a href="http://fakesteve.blogspot.com/2008/05/ballmer-now-looking-for-other-companies.html">The Secret Diary of Steve Jobs</a> and <a href="http://weblog.cenriqueortiz.com/general/2008/05/04/steve-ballmer-as-the-creature/">About Mobility Weblog</a></p>
</div>
</div>
<div>
<div>
<div style="display:block"><a href="javascript:void(0);"></a></div>
<p><span>Discussion:</span></p>
<div><cite>Steve / <a href="http://fakesteve.blogspot.com/">The Secret Diary of Steve Jobs</a>:</cite> <a href="http://fakesteve.blogspot.com/2008/05/ballmer-now-looking-for-other-companies.html">Ballmer now looking for other companies to not buy</a></div>
<div><cite>Ceo / <a href="http://weblog.cenriqueortiz.com/">About Mobility Weblog</a>:</cite> <a href="http://weblog.cenriqueortiz.com/general/2008/05/04/steve-ballmer-as-the-creature/">Steve Ballmer as The Creature</a></div>
</div>
</div>
</div>
<p><a name="a080504p3"></a></p>
<div><a title="Permalink" href="http://www.techmeme.com/080504/p5#a080504p5"><img src="http://www.techmeme.com/img/pml.png" alt=""></a> <cite><a href="http://dealbook.blogs.nytimes.com/">DealBook</a>:</cite>
<div><strong><a href="http://dealbook.blogs.nytimes.com/2008/05/03/guessing-yahoos-opening-stock-price/">Guessing Yahoo's Opening Stock Price</a></strong>   Well, Yahoo seems to have gotten what it wanted.    The company managed to fend off Microsoft's unwanted advances, even after the software giant sweetened its bid by $5 billion  an amount Yahoo felt still wasn't enough.</div>
<p></p>
<div><span>Link Search:</span> <a href="http://www.ask.com/blogsearch?q=http://dealbook.blogs.nytimes.com/2008/05/03/guessing-yahoos-opening-stock-price/">Ask</a>, <a href="http://www.technorati.com/search/http://dealbook.blogs.nytimes.com/2008/05/03/guessing-yahoos-opening-stock-price/">Technorati</a>, <a href="http://www.sphere.com/search?q=sphereit:http://dealbook.blogs.nytimes.com/2008/05/03/guessing-yahoos-opening-stock-price/">Sphere</a>, <a href="http://blogsearch.google.com/blogsearch?q=http://dealbook.blogs.nytimes.com/2008/05/03/guessing-yahoos-opening-stock-price/">Google</a>, and <a href="http://blogs.icerocket.com/search?q=http://dealbook.blogs.nytimes.com/2008/05/03/guessing-yahoos-opening-stock-price/">IceRocket</a></div>
<div style="display:block">
<div>
<div><a href="javascript:void(0);">+</a></div>
<p><span>Discussion:</span> <a href="http://www.alleyinsider.com/2008/5/why_yahoo_yhoo_should_go_ahead_with_google_outsourcing_deal_goog_">Silicon Alley Insider</a> and <a href="http://www.thepomoblog.com/archive/ack-microsoft-walks-away-winner-google/">Terry Heaton's PoMo Blog</a></p>
</div>
</div>
<div>
<div>
<div style="display:block"><a href="javascript:void(0);"></a></div>
<p><span>Discussion:</span></p>
<div><cite>Henry Blodget / <a href="http://www.alleyinsider.com/">Silicon Alley Insider</a>:</cite> <a href="http://www.alleyinsider.com/2008/5/why_yahoo_yhoo_should_go_ahead_with_google_outsourcing_deal_goog_">Why Yahoo (YHOO) Should Go Ahead With Google Outsourcing Deal (GOOG)</a></div>
<div><cite>Terry Heaton / <a href="http://www.thepomoblog.com/">Terry Heaton's PoMo Blog</a>:</cite> <a href="http://www.thepomoblog.com/archive/ack-microsoft-walks-away-winner-google/">Ack!  Microsoft walks away.  Winner?  Google.</a></div>
</div>
</div>
</div>
<p><a name="a080504p2"></a></p>
<div><a href="http://online.wsj.com/article/SB120986002095265343.html"><img src="http://www.techmeme.com/080504/i8.jpg" alt=""></a> <a title="Permalink" href="http://www.techmeme.com/080504/p8#a080504p8"><img src="http://www.techmeme.com/img/pml.png" alt=""></a> <cite><a href="http://online.wsj.com/public/us">Wall Street Journal</a>:</cite>
<div><strong><a href="http://online.wsj.com/article/SB120986002095265343.html">Microsoft Withdraws Yahoo Offer After Attempt to Bridge Gap in Price</a></strong>   Microsoft Corp. said it abandoned its offer for Yahoo Inc., as the two companies failed to bridge a gap between them on price.    Microsoft Saturday released a letter from Chief Executive Steve Ballmer </div>
<p></p>
<div><span>Link Search:</span> <a href="http://www.ask.com/blogsearch?q=http://online.wsj.com/article/SB120986002095265343.html">Ask</a>, <a href="http://www.technorati.com/search/http://online.wsj.com/article/SB120986002095265343.html">Technorati</a>, <a href="http://www.sphere.com/search?q=sphereit:http://online.wsj.com/article/SB120986002095265343.html">Sphere</a>, <a href="http://blogsearch.google.com/blogsearch?q=http://online.wsj.com/article/SB120986002095265343.html">Google</a>, and <a href="http://blogs.icerocket.com/search?q=http://online.wsj.com/article/SB120986002095265343.html">IceRocket</a></div>
<div style="display:block">
<div>
<div><a href="javascript:void(0);">+</a></div>
<p><span>Discussion:</span> <a href="http://pbokelly.blogspot.com/2008/05/microsoft-withdraws-yahoo-offer-after.html">Peter O'Kelly's Reality Check</a> and <a href="http://www.businessweek.com/the_thread/techbeat/archives/2008/05/microsoft_drops.html">Tech Beat</a></p>
</div>
</div>
<div>
<div>
<div style="display:block"><a href="javascript:void(0);"></a></div>
<p><span>Discussion:</span></p>
<div><cite>Peter / <a href="http://pbokelly.blogspot.com/">Peter O'Kelly's Reality Check</a>:</cite> <a href="http://pbokelly.blogspot.com/2008/05/microsoft-withdraws-yahoo-offer-after.html">Microsoft Withdraws Yahoo Offer After Attempt to Bridge Gap in Price - WSJ.com</a></div>
<div><cite>Rob Hof / <a href="http://www.businessweek.com/the_thread/techbeat/">Tech Beat</a>:</cite> <a href="http://www.businessweek.com/the_thread/techbeat/archives/2008/05/microsoft_drops.html">Microsoft Drops Yahoo BidAt Least For Now</a></div>
</div>
</div>
</div>
<p><a name="a080503p49"></a></p>
<div><a title="Permalink" href="http://www.techmeme.com/080504/p3#a080504p3"><img src="http://www.techmeme.com/img/pml.png" alt=""></a> <cite>Dawn Kawamoto / <a href="http://www.news.com/">CNET News.com</a>:</cite>
<div><strong><a href="http://www.news.com/8301-10784_3-9935250-7.html">Report: A peek behind the Yahoo-Microsoft meltdown</a></strong>   Curious how Microsoft's multi-multi-multi-billion dollar buyout bid for Yahoo sputtered, then crashed?    Kara Swisher's BoomTown column in All Things Digital has an interesting account of the missteps, sidesteps </div>
<p></p>
<div><span>Link Search:</span> <a href="http://www.ask.com/blogsearch?q=http://www.news.com/8301-10784_3-9935250-7.html">Ask</a>, <a href="http://www.technorati.com/search/http://www.news.com/8301-10784_3-9935250-7.html">Technorati</a>, <a href="http://www.sphere.com/search?q=sphereit:http://www.news.com/8301-10784_3-9935250-7.html">Sphere</a>, <a href="http://blogsearch.google.com/blogsearch?q=http://www.news.com/8301-10784_3-9935250-7.html">Google</a>, and <a href="http://blogs.icerocket.com/search?q=http://www.news.com/8301-10784_3-9935250-7.html">IceRocket</a></div>
</div>
<p><a name="a080504p1"></a></p>
<div><a href="http://kara.allthingsd.com/20080503/yahoos-nightmare-scenario-im-from-google-and-im-here-to-help/"><img src="http://www.techmeme.com/080504/i2.jpg" alt=""></a> <a title="Permalink" href="http://www.techmeme.com/080504/p2#a080504p2"><img src="http://www.techmeme.com/img/pml.png" alt=""></a> <cite>Kara Swisher / <a href="http://kara.allthingsd.com/">BoomTown</a>:</cite>
<div><strong><a href="http://kara.allthingsd.com/20080503/yahoos-nightmare-scenario-im-from-google-and-im-here-to-help/">Yahoo's Nightmare Scenario: I'm From Google and I'm Here to Help!</a></strong>   Here's what a top-notch source at Yahoo joked to me tonight, after Microsoft walked away from its unsolicited takeover bid to acquire the long-troubled Internet giant.    Google is now officially our best friend.    Oh no.</div>
<p></p>
<div><span>Link Search:</span> <a href="http://www.ask.com/blogsearch?q=http://kara.allthingsd.com/20080503/yahoos-nightmare-scenario-im-from-google-and-im-here-to-help/">Ask</a>, <a href="http://www.technorati.com/search/http://kara.allthingsd.com/20080503/yahoos-nightmare-scenario-im-from-google-and-im-here-to-help/">Technorati</a>, <a href="http://www.sphere.com/search?q=sphereit:http://kara.allthingsd.com/20080503/yahoos-nightmare-scenario-im-from-google-and-im-here-to-help/">Sphere</a>, <a href="http://blogsearch.google.com/blogsearch?q=http://kara.allthingsd.com/20080503/yahoos-nightmare-scenario-im-from-google-and-im-here-to-help/">Google</a>, and <a href="http://blogs.icerocket.com/search?q=http://kara.allthingsd.com/20080503/yahoos-nightmare-scenario-im-from-google-and-im-here-to-help/">IceRocket</a></div>
<div style="display:block">
<div>
<div><a href="javascript:void(0);">+</a></div>
<p><span>Discussion:</span> <a href="http://blogs.forrester.com/charleneli/2008/05/with-the-micros.html">Groundswell</a></p>
</div>
</div>
<div>
<div>
<div style="display:block"><a href="javascript:void(0);"></a></div>
<p><span>Discussion:</span></p>
<div><cite>Charlene Li / <a href="http://blogs.forrester.com/charleneli/">Groundswell</a>:</cite> <a href="http://blogs.forrester.com/charleneli/2008/05/with-the-micros.html">What's next for Microsoft and Yahoo!</a></div>
</div>
</div>
</div>
<p><a name="a080503p38"></a></p>
<div><a href="http://www.techcrunch.com/2008/05/03/yahoos-tough-week-ahead/"><img src="http://www.techmeme.com/080503/i49.jpg" alt=""></a> <a title="Permalink" href="http://www.techmeme.com/080503/p49#a080503p49"><img src="http://www.techmeme.com/img/pml.png" alt=""></a> <cite>Michael Arrington / <a href="http://www.techcrunch.com/">TechCrunch</a>:</cite>
<div><strong><a href="http://www.techcrunch.com/2008/05/03/yahoos-tough-week-ahead/">Yahoo's Tough Week Ahead</a></strong>   At around 4:30 California time today news broke that Microsoft has formally withdrawn its offer to acquire Yahoo (see Ballmer's email to Microsoft employees here).    Among other things, that ends a three month stock party where the market value of Yahoo jumped </div>
<p></p>
<div><span>Link Search:</span> <a href="http://www.ask.com/blogsearch?q=http://www.techcrunch.com/2008/05/03/yahoos-tough-week-ahead/">Ask</a>, <a href="http://www.technorati.com/search/http://www.techcrunch.com/2008/05/03/yahoos-tough-week-ahead/">Technorati</a>, <a href="http://www.sphere.com/search?q=sphereit:http://www.techcrunch.com/2008/05/03/yahoos-tough-week-ahead/">Sphere</a>, <a href="http://blogsearch.google.com/blogsearch?q=http://www.techcrunch.com/2008/05/03/yahoos-tough-week-ahead/">Google</a>, and <a href="http://blogs.icerocket.com/search?q=http://www.techcrunch.com/2008/05/03/yahoos-tough-week-ahead/">IceRocket</a></div>
<div style="display:block">
<div>
<div><a href="javascript:void(0);">+</a></div>
<p><span>Discussion:</span> <a href="http://blogs.guardian.co.uk/technology/2008/05/04/microsoft_walks_out_of_yahoo_deal_updated.html">Guardian Unlimited</a>, <a href="http://www.microsoft-watch.com/content/advertising_search/the_microsoftyahoo_blame_game.html">Microsoft Watch</a>, <a href="http://www.pbs.org/mediashift/2008/05/yahoomicrosoft_dramatakeover_t.html">MediaShift</a> and <a href="http://dotnetjunkies.com/WebLog/paul/archive/2008/05/04/467040.aspx">Paul Mooney</a></p>
</div>
</div>
<div>
<div>
<div style="display:block"><a href="javascript:void(0);"></a></div>
<p><span>Discussion:</span></p>
<div><cite>Jack Schofield / <a href="http://blogs.guardian.co.uk/technology/">Guardian Unlimited</a>:</cite> <a href="http://blogs.guardian.co.uk/technology/2008/05/04/microsoft_walks_out_of_yahoo_deal_updated.html">Microsoft walks out of Yahoo deal (updated)</a></div>
<div><cite>Joe Wilcox / <a href="http://www.microsoft-watch.com/">Microsoft Watch</a>:</cite> <a href="http://www.microsoft-watch.com/content/advertising_search/the_microsoftyahoo_blame_game.html">The Microsoft-Yahoo Blame Game</a></div>
<div><cite>Mark Glaser / <a href="http://www.pbs.org/mediashift/">MediaShift</a>:</cite> <a href="http://www.pbs.org/mediashift/2008/05/yahoomicrosoft_dramatakeover_t.html">Yahoo-Microsoft Drama::Takeover Tiff Best Thing to Happen to Yahoo</a></div>
<div><cite><a href="http://dotnetjunkies.com/WebLog/paul/default.aspx">Paul Mooney</a>:</cite> <a href="http://dotnetjunkies.com/WebLog/paul/archive/2008/05/04/467040.aspx">A YAHOO RUN, OR A RUN ON YHOO?</a></div>
</div>
</div>
</div>
<p><a name="a080503p42"></a></p>
<div><a title="Permalink" href="http://www.techmeme.com/080504/p1#a080504p1"><img src="http://www.techmeme.com/img/pml.png" alt=""></a> <cite>Yi-Wyn Yen / <a href="http://www.fortune.com/">Fortune</a>:</cite>
<div><strong><a href="http://money.cnn.com/2008/05/03/news/companies/google.msft.fortune/">Blame it on Google</a></strong>   Microsoft CEO Ballmer said the software giant decided to walk away from a bid because Yahoo would become undesirable' if it formed an alliance with Google.    (Fortune)  Google proved to be the final straw that broke Microsoft CEO Steve Ballmer's back.</div>
<p></p>
<div><span>Link Search:</span> <a href="http://www.ask.com/blogsearch?q=http://money.cnn.com/2008/05/03/news/companies/google.msft.fortune/">Ask</a>, <a href="http://www.technorati.com/search/http://money.cnn.com/2008/05/03/news/companies/google.msft.fortune/">Technorati</a>, <a href="http://www.sphere.com/search?q=sphereit:http://money.cnn.com/2008/05/03/news/companies/google.msft.fortune/">Sphere</a>, <a href="http://blogsearch.google.com/blogsearch?q=http://money.cnn.com/2008/05/03/news/companies/google.msft.fortune/">Google</a>, and <a href="http://blogs.icerocket.com/search?q=http://money.cnn.com/2008/05/03/news/companies/google.msft.fortune/">IceRocket</a></div>
<div style="display:block">
<div>
<div><a href="javascript:void(0);">+</a></div>
<p><span>Discussion:</span> <a href="http://www.macdailynews.com/index.php/weblog/comments/ballmers_folly_ends_microsoft_abandons_yahoo_bid_because_of_google/">MacDailyNews</a> and <a href="http://money.cnn.com/2008/05/03/technology/microsoft_yahoo/">CNNMoney.com</a></p>
</div>
</div>
<div>
<div>
<div style="display:block"><a href="javascript:void(0);"></a></div>
<p><span>Discussion:</span></p>
<div><cite><a href="http://www.macdailynews.com/">MacDailyNews</a>:</cite> <a href="http://www.macdailynews.com/index.php/weblog/comments/ballmers_folly_ends_microsoft_abandons_yahoo_bid_because_of_google/">Ballmer's Folly ends: Microsoft abandons Yahoo bid because of Google</a></div>
<div><cite>Mark M. Meinero / <a href="http://money.cnn.com/">CNNMoney.com</a>:</cite> <a href="http://money.cnn.com/2008/05/03/technology/microsoft_yahoo/">Microsoft withdraws bid for Yahoo</a></div>
</div>
</div>
</div>
<p><a name="a080503p33"></a></p>
<div><a title="Permalink" href="http://www.techmeme.com/080503/p38#a080503p38"><img src="http://www.techmeme.com/img/pml.png" alt=""></a> <cite><a href="http://paul.kedrosky.com/">Paul Kedrosky's Infectious Greed</a>:</cite>
<div><strong><a href="http://paul.kedrosky.com/archives/2008/05/03/analysis_of_the.html">Analysis of the Microsoft Decision, Plus Yahoo's Hari-Kari</a></strong>   Here is my first-cut analysis of what has happened here:   On the friendly front, Yahoo drew a hard line at $37 per share, well above the $33 that Microsoft now says it told Yahoo this week it was willing to go</div>
<p></p>
<div><span>Link Search:</span> <a href="http://www.ask.com/blogsearch?q=http://paul.kedrosky.com/archives/2008/05/03/analysis_of_the.html">Ask</a>, <a href="http://www.technorati.com/search/http://paul.kedrosky.com/archives/2008/05/03/analysis_of_the.html">Technorati</a>, <a href="http://www.sphere.com/search?q=sphereit:http://paul.kedrosky.com/archives/2008/05/03/analysis_of_the.html">Sphere</a>, <a href="http://blogsearch.google.com/blogsearch?q=http://paul.kedrosky.com/archives/2008/05/03/analysis_of_the.html">Google</a>, and <a href="http://blogs.icerocket.com/search?q=http://paul.kedrosky.com/archives/2008/05/03/analysis_of_the.html">IceRocket</a></div>
<div style="display:block">
<div>
<div><a href="javascript:void(0);">+</a></div>
<p><span>Discussion:</span> <a href="http://broadstuff.com/archives/905-Microhoo-no-more......html">broadstuff</a></p>
</div>
</div>
<div>
<div>
<div style="display:block"><a href="javascript:void(0);"></a></div>
<p><span>Discussion:</span></p>
<div><cite>Alan Patrick / <a href="http://broadstuff.com/">broadstuff</a>:</cite> <a href="http://broadstuff.com/archives/905-Microhoo-no-more......html">MICROHOO NO MORE..  So the deal is off - though whether  </a></div>
</div>
</div>
</div>
<p><a name="a080503p39"></a> <a name="a080503p29"></a></p>
<div><a title="Permalink" href="http://www.techmeme.com/080503/p42#a080503p42"><img src="http://www.techmeme.com/img/pml.png" alt=""></a> <cite>Michael Arrington / <a href="http://www.techcrunch.com/">TechCrunch</a>:</cite>
<div><strong><a href="http://www.techcrunch.com/2008/05/03/email-from-steve-ballmer-to-all-microsoft-employees/">Email From Steve Ballmer To All Microsoft Employees</a></strong>   The following email was sent to all Microsoft employees from CEO Steve Ballmer at 5:17 pm PDT (see Breaking: Microsoft Withdraws Yahoo Bid; Walks Away From Deal):    To: Microsoft - All Employees (QBDG)</div>
<p></p>
<div><span>Link Search:</span> <a href="http://www.ask.com/blogsearch?q=http://www.techcrunch.com/2008/05/03/email-from-steve-ballmer-to-all-microsoft-employees/">Ask</a>, <a href="http://www.technorati.com/search/http://www.techcrunch.com/2008/05/03/email-from-steve-ballmer-to-all-microsoft-employees/">Technorati</a>, <a href="http://www.sphere.com/search?q=sphereit:http://www.techcrunch.com/2008/05/03/email-from-steve-ballmer-to-all-microsoft-employees/">Sphere</a>, <a href="http://blogsearch.google.com/blogsearch?q=http://www.techcrunch.com/2008/05/03/email-from-steve-ballmer-to-all-microsoft-employees/">Google</a>, and <a href="http://blogs.icerocket.com/search?q=http://www.techcrunch.com/2008/05/03/email-from-steve-ballmer-to-all-microsoft-employees/">IceRocket</a></div>
<div style="display:block">
<div>
<div><a href="javascript:void(0);">+</a></div>
<p><span>Discussion:</span> <a href="http://microsoft.blognewschannel.com/archives/2008/05/04/microsoft-drops-plans-to-buy-yahoo/">InsideMicrosoft</a>, <a href="http://www.webpronews.com/topnews/2008/05/04/microsoft-is-done-pursuing-yahoo">WebProNews</a>, <a href="http://venturebeat.com/2008/05/03/microsoft-now-has-50-billion-burning-a-hole-in-its-pocket/">VentureBeat</a> and <a href="http://www.marketingpilgrim.com/2008/05/steve-ballmers-email-to-microsoft-employees.html">Andy Beal's Marketing Pilgrim</a></p>
</div>
</div>
<div>
<div>
<div style="display:block"><a href="javascript:void(0);"></a></div>
<p><span>Discussion:</span></p>
<div><cite>Nathan Weinberg / <a href="http://microsoft.blognewschannel.com/">InsideMicrosoft</a>:</cite> <a href="http://microsoft.blognewschannel.com/archives/2008/05/04/microsoft-drops-plans-to-buy-yahoo/">Microsoft Drops Plans To Buy Yahoo</a></div>
<div><cite>Nathan Weinberg / <a href="http://www.webpronews.com/">WebProNews</a>:</cite> <a href="http://www.webpronews.com/topnews/2008/05/04/microsoft-is-done-pursuing-yahoo">Microsoft Is Done Pursuing Yahoo!</a></div>
<div><cite>MG Siegler / <a href="http://venturebeat.com/">VentureBeat</a>:</cite> <a href="http://venturebeat.com/2008/05/03/microsoft-now-has-50-billion-burning-a-hole-in-its-pocket/">Microsoft now has $50 billion burning a hole in its pocket</a></div>
<div><cite>David Snyder / <a href="http://www.marketingpilgrim.com/">Andy Beal's Marketing Pilgrim</a>:</cite> <a href="http://www.marketingpilgrim.com/2008/05/steve-ballmers-email-to-microsoft-employees.html">Steve Ballmer's Email to Microsoft Employees</a></div>
</div>
</div>
</div>
<p><a name="a080503p35"></a></p>
<div><a href="http://www.techcrunch.com/2008/05/03/breaking-microsoft-walks/"><img src="http://www.techmeme.com/080503/i33.jpg" alt=""></a> <a title="Permalink" href="http://www.techmeme.com/080503/p33#a080503p33"><img src="http://www.techmeme.com/img/pml.png" alt=""></a> <cite>Michael Arrington / <a href="http://www.techcrunch.com/">TechCrunch</a>:</cite><br>
<strong><a href="http://www.techcrunch.com/2008/05/03/breaking-microsoft-walks/">Breaking: Microsoft Withdraws Yahoo Bid; Walks Away From Deal (Updated)</a></strong> 
<div><span>Link Search:</span> <a href="http://www.ask.com/blogsearch?q=http://www.techcrunch.com/2008/05/03/breaking-microsoft-walks/">Ask</a>, <a href="http://www.technorati.com/search/http://www.techcrunch.com/2008/05/03/breaking-microsoft-walks/">Technorati</a>, <a href="http://www.sphere.com/search?q=sphereit:http://www.techcrunch.com/2008/05/03/breaking-microsoft-walks/">Sphere</a>, <a href="http://blogsearch.google.com/blogsearch?q=http://www.techcrunch.com/2008/05/03/breaking-microsoft-walks/">Google</a>, and <a href="http://blogs.icerocket.com/search?q=http://www.techcrunch.com/2008/05/03/breaking-microsoft-walks/">IceRocket</a></div>
<div style="display:block">
<div>
<div><a href="javascript:void(0);">+</a></div>
<p><span>Discussion:</span> <a href="http://kara.allthingsd.com/20080504/boomtown-decodes-microsofts-steve-ballmers-letter-to-yahoo-the-kiss-off-edition/">BoomTown</a>, <a href="http://www.news.com/8301-13860_3-9935169-56.html">Beyond Binary</a>, <a href="http://news.yahoo.com/s/nm/20080504/ts_nm/microsoft_yahoo_dc">Reuters</a>, <a href="http://thenextweb.org/2008/05/04/microsoft-walks-away-from-yahoo-deal/">The Next Web</a>, <a href="http://www.bbc.co.uk/blogs/technology/2008/05/microsoft_v_yahoo_postmatch_an.html">BBC NEWS</a>, <a href="http://www.news.com/8301-10787_3-9935123-60.html">Coop's Corner</a>, <a href="http://voices.allthingsd.com/20080504/microsofts-move-is-it-just-a-feint/">Voices</a>, <a href="http://www.liveside.net/blogs/opinion/archive/2008/05/04/no-msft-yhoo-deal-now-what.aspx">LiveSide</a>, <a href="http://www.electronista.com/articles/08/05/03/microsoft.nixes.yahoo.bid/">Electronista</a>, <a href="http://valleywag.com/386896/is-ballmer-on-his-way-out-++-and-if-so-whos-the-next-ceo">Valleywag</a>, <a href="http://www.mathewingram.com/work/2008/05/03/yhoo-and-msft-jerry-yang-should-be-fired/">mathewingram.com/work</a>, <a href="http://blogs.wsj.com/biztech/2008/05/03/the-most-famous-non-deal-in-tech-history/">Business Technology</a>, <a href="http://sarahlacy.typepad.com/sarahlacy/2008/05/or-maybe-i-wont.html">SarahLacy.com</a>, <a href="http://500hats.typepad.com/500blogs/2008/05/memo-to-jerry-p.html">Master of 500 Hats</a>, <a href="http://thomashawk.com/2008/05/remember-when-thomas-hawk-said-if-he.html">Thomas Hawk's Digital </a>, <a href="http://www.searchenginejournal.com/microsoft-walks-off-the-deal-finally/6839/">Search Engine Journal</a> and <a href="http://www.winextra.com/2008/05/03/please-tell-me-its-so/">WinExtra</a></p>
</div>
</div>
<div>
<div>
<div style="display:block"><a href="javascript:void(0);"></a></div>
<p><span>Discussion:</span></p>
<div><cite>Kara Swisher / <a href="http://kara.allthingsd.com/">BoomTown</a>:</cite> <a href="http://kara.allthingsd.com/20080504/boomtown-decodes-microsofts-steve-ballmers-letter-to-yahoo-the-kiss-off-edition/">BoomTown Decodes Microsoft's Steve Ballmer's Letter to Yahoo (The Kiss-Off Edition)</a></div>
<div><cite>Ina Fried / <a href="http://www.news.com/beyond-binary/">Beyond Binary</a>:</cite> <a href="http://www.news.com/8301-13860_3-9935169-56.html">Ballmer's e-mail to staff on Yahoo</a></div>
<div><cite><a href="http://news.yahoo.com/i/578">Reuters</a>:</cite> <a href="http://news.yahoo.com/s/nm/20080504/ts_nm/microsoft_yahoo_dc">Microsoft says it withdraws offer for Yahoo</a></div>
<div><cite>Boris Veldhuijzen van Zanten / <a href="http://thenextweb.org/">The Next Web</a>:</cite> <a href="http://thenextweb.org/2008/05/04/microsoft-walks-away-from-yahoo-deal/">Microsoft walks away from Yahoo deal</a></div>
<div><cite>Rory Cellan-Jones / <a href="http://www.bbc.co.uk/blogs/technology/">BBC NEWS | dot.life</a>:</cite> <a href="http://www.bbc.co.uk/blogs/technology/2008/05/microsoft_v_yahoo_postmatch_an.html">Microsoft v Yahoo - post-match analysis</a></div>
<div><cite>Charles Cooper / <a href="http://www.news.com/coops-corner/">Coop's Corner</a>:</cite> <a href="http://www.news.com/8301-10787_3-9935123-60.html">Post-Microhoo: Winners and losers</a></div>
<div><cite>Ina Fried / <a href="http://voices.allthingsd.com/">Voices</a>:</cite> <a href="http://voices.allthingsd.com/20080504/microsofts-move-is-it-just-a-feint/">Microsoft's Move: Is It Just a Feint?</a></div>
<div><cite>Kip Kniskern / <a href="http://www.liveside.net/blogs/">LiveSide</a>:</cite> <a href="http://www.liveside.net/blogs/opinion/archive/2008/05/04/no-msft-yhoo-deal-now-what.aspx">No MSFT-YHOO deal; now what?    Microsoft just walked away  </a></div>
<div><cite><a href="http://www.electronista.com/">Electronista</a>:</cite> <a href="http://www.electronista.com/articles/08/05/03/microsoft.nixes.yahoo.bid/">Microsoft backs out of Yahoo bid</a></div>
<div><cite>Owen Thomas / <a href="http://valleywag.com/">Valleywag</a>:</cite> <a href="http://valleywag.com/386896/is-ballmer-on-his-way-out-++-and-if-so-whos-the-next-ceo">Is Ballmer on his way out  and if so, who's the next CEO?</a></div>
<div><cite>Mathew / <a href="http://www.mathewingram.com/work">mathewingram.com/work</a>:</cite> <a href="http://www.mathewingram.com/work/2008/05/03/yhoo-and-msft-jerry-yang-should-be-fired/">YHOO and MSFT: Jerry Yang should be fired</a></div>
<div><cite>Ben Worthen / <a href="http://blogs.wsj.com/biztech">Business Technology</a>:</cite> <a href="http://blogs.wsj.com/biztech/2008/05/03/the-most-famous-non-deal-in-tech-history/">The Most Famous Non-Deal in Tech History</a></div>
<div><cite><a href="http://sarahlacy.typepad.com/sarahlacy/">Sarah Lacy</a>:</cite> <a href="http://sarahlacy.typepad.com/sarahlacy/2008/05/or-maybe-i-wont.html">Or Maybe I Won't Be Working for the Evil Empire</a></div>
<div><cite>Dave McClure / <a href="http://500hats.typepad.com/500blogs/">Master of 500 Hats</a>:</cite> <a href="http://500hats.typepad.com/500blogs/2008/05/memo-to-jerry-p.html">MicroHooFreude!  (Memo to Jerry: Prepare to be Sued)</a></div>
<div><cite>Thomas Hawk / <a href="http://thomashawk.com/">Thomas Hawk's Digital Connection</a>:</cite> <a href="http://thomashawk.com/2008/05/remember-when-thomas-hawk-said-if-he.html">Remember When Thomas Hawk Said If He Were Microsoft He'd Lower His Bid for Yahoo?</a></div>
<div><cite>Arnold Zafra / <a href="http://www.searchenginejournal.com/">Search Engine Journal</a>:</cite> <a href="http://www.searchenginejournal.com/microsoft-walks-off-the-deal-finally/6839/">Microsoft Cancels the Yahoo Acquisition Deal, Finally!</a></div>
<div><cite>Steven Hodson / <a href="http://www.winextra.com/">WinExtra</a>:</cite> <a href="http://www.winextra.com/2008/05/03/please-tell-me-its-so/">Please tell me it's so</a></div>
</div>
</div>
</div>
<p><a name="a080504p4"></a></p>
<div><a title="Permalink" href="http://www.techmeme.com/080503/p39#a080503p39"><img src="http://www.techmeme.com/img/pml.png" alt=""></a> <cite><a href="http://www.nytimes.com/pages/technology/">New York Times</a>:</cite><br>
<strong><a href="http://www.nytimes.com/2008/05/04/technology/04soft.html?partner=rssnyt&amp;emc=rss">Microsoft Withdraws Its Bid for Yahoo</a></strong> 
<div><span>Link Search:</span> <a href="http://www.ask.com/blogsearch?q=http://www.nytimes.com/2008/05/04/technology/04soft.html">Ask</a>, <a href="http://www.technorati.com/search/http://www.nytimes.com/2008/05/04/technology/04soft.html">Technorati</a>, <a href="http://www.sphere.com/search?q=sphereit:http://www.nytimes.com/2008/05/04/technology/04soft.html">Sphere</a>, <a href="http://blogsearch.google.com/blogsearch?q=http://www.nytimes.com/2008/05/04/technology/04soft.html">Google</a>, and <a href="http://blogs.icerocket.com/search?q=http://www.nytimes.com/2008/05/04/technology/04soft.html">IceRocket</a></div>
<div style="display:block">
<div>
<div><a href="javascript:void(0);">+</a></div>
<p><span>Discussion:</span> <a href="http://www.news.com/8301-10784_3-9935209-7.html">CNET News.com</a>, <a href="http://bigpicture.typepad.com/comments/2008/05/ballmer-yang-ag.html">The Big Picture</a>, <a href="http://dealarchitect.typepad.com/deal_architect/2008/05/back-to-custome.html">deal architect</a>, <a href="http://news.slashdot.org/news/08/05/04/0045248.shtml">Slashdot</a>, <a href="http://watchmojo.com/web/blog/index.php/2008/05/03/should-investors-sue-or-back-yang/">HipMojo.com</a> and <a href="http://digg.com/tech_news/Microsoft_Withdraws_Its_Bid_for_Yahoo_2">Digg</a></p>
</div>
</div>
<div>
<div>
<div style="display:block"><a href="javascript:void(0);"></a></div>
<p><span>Discussion:</span></p>
<div><cite>Stephen Shankland / <a href="http://www.news.com/">CNET News.com</a>:</cite> <a href="http://www.news.com/8301-10784_3-9935209-7.html">Yahoo: Microsoft's price just wasn't right</a></div>
<div><cite>Ritholtz / <a href="http://bigpicture.typepad.com/comments/">The Big Picture</a>:</cite> <a href="http://bigpicture.typepad.com/comments/2008/05/ballmer-yang-ag.html">Ballmer, Yang Agree to See Other People</a></div>
<div><cite><a href="http://dealarchitect.typepad.com/deal_architect/">deal architect</a>:</cite> <a href="http://dealarchitect.typepad.com/deal_architect/2008/05/back-to-custome.html">Back to customer focus    So the Microsoft/Yahoo! deal appears finally off.</a></div>
<div><cite>Timothy / <a href="http://slashdot.org/">Slashdot</a>:</cite> <a href="http://news.slashdot.org/news/08/05/04/0045248.shtml">Microsoft Withdraws Yahoo Takeover Offer</a></div>
<div><cite>Ashkan Karbasfrooshan / <a href="http://watchmojo.com/web/blog">HipMojo.com</a>:</cite> <a href="http://watchmojo.com/web/blog/index.php/2008/05/03/should-investors-sue-or-back-yang/">Should Investors Sue or Back Yang?</a></div>
<div><cite><a href="http://digg.com/">Digg</a>:</cite> <a href="http://digg.com/tech_news/Microsoft_Withdraws_Its_Bid_for_Yahoo_2">Microsoft Withdraws Its Bid for Yahoo</a></div>
</div>
</div>
</div>
<p><a name="a080503p31"></a></p>
<div><a title="Permalink" href="http://www.techmeme.com/080503/p29#a080503p29"><img src="http://www.techmeme.com/img/pml.png" alt=""></a> <cite>Ina Fried / <a href="http://www.news.com/beyond-binary/">Beyond Binary</a>:</cite><br>
<strong><a href="http://www.news.com/8301-13860_3-9935099-56.html">Microsoft pulls its Yahoo offer</a></strong> 
<div><span>Link Search:</span> <a href="http://www.ask.com/blogsearch?q=http://www.news.com/8301-13860_3-9935099-56.html">Ask</a>, <a href="http://www.technorati.com/search/http://www.news.com/8301-13860_3-9935099-56.html">Technorati</a>, <a href="http://www.sphere.com/search?q=sphereit:http://www.news.com/8301-13860_3-9935099-56.html">Sphere</a>, <a href="http://blogsearch.google.com/blogsearch?q=http://www.news.com/8301-13860_3-9935099-56.html">Google</a>, and <a href="http://blogs.icerocket.com/search?q=http://www.news.com/8301-13860_3-9935099-56.html">IceRocket</a></div>
<div style="display:block">
<div>
<div><a href="javascript:void(0);">+</a></div>
<p><span>Discussion:</span> <a href="http://www.dslreports.com/shownews/Microsoft-Rescinds-Yahoo-Offer-94128">DSLreports</a>, <a href="http://www.forbes.com/2008/05/03/microsoft-yahoo-deal-tech-enter-cx_ec_0503yahoo.html">Forbes</a>, <a href="http://www.news.com/8301-10784_3-9935208-7.html">CNET News.com</a>, <a href="http://www.businessweek.com/technology/content/may2008/tc2008053_759938.htm">Business Week</a>, <a href="http://www.cincomsmalltalk.com/blog/blogView?showComments=true&amp;printTitle=Reality_1,_Scoble_0&amp;entry=3387315126">Smalltalk Tidbits </a>, <a href="http://scobleizer.com/2008/05/03/how-will-yahoo-heal-after-microsoft-walked-away/">Scobleizer</a>, <a href="http://blogs.pcworld.com/techlog/archives/006885.html">Techlog</a>, <a href="http://www.marketingpilgrim.com/2008/05/microsoft-retreats-or-withdrawls-depends-on-your-view.html">Andy Beal's Marketing Pilgrim</a>, <a href="http://www.informationweek.com/news/windows/operatingsystems/showArticle.jhtml?articleID=207500797">InformationWeek</a>, <a href="http://watchmojo.com/web/blog/index.php/2008/05/03/latest-chess-move-msft-withdraws-offer/">HipMojo.com</a>, <a href="http://blog.searchenginewatch.com/blog/080503-215913">Search Engine Watch Blog</a>, <a href="http://www.paidcontent.org/entry/419-microsoft-yahoo-yang/">paidContent.org</a>, <a href="http://www.centernetworks.com/microsoft-yahoo-aol">CenterNetworks</a>, <a href="http://searchengineland.com/080503-200422.php">Search Engine Land</a>, <a href="http://battellemedia.com/archives/004417.php">John Battelle's Searchblog</a>, <a href="http://www.webguild.org/2008/05/microsoft-walks-away-from-yahoo.php">WebGuild</a>, <a href="http://www.macrumors.com/2008/05/03/microsoft-walking-away-from-yahoo-acquisition/">MacRumors</a>, <a href="http://www.engadget.com/2008/05/03/microsoft-pulls-bid-for-yahoo/">Engadget</a>, <a href="http://venturebeat.com/2008/05/03/yahoo-breaks-the-wrist-microsoft-walks-away/">VentureBeat</a> and <a href="http://digitaldaily.allthingsd.com/20080503/ballmer-to-yang-dear-jerry-drop-dead/">Digital Daily</a></p>
</div>
</div>
<div>
<div>
<div style="display:block"><a href="javascript:void(0);"></a></div>
<p><span>Discussion:</span></p>
<div><cite>KathrynV / <a href="http://www.dslreports.com/">DSLreports</a>:</cite> <a href="http://www.dslreports.com/shownews/Microsoft-Rescinds-Yahoo-Offer-94128">Microsoft Rescinds Yahoo Offer - No agreement could be reached in talks yesterday</a></div>
<div><cite>Elizabeth Corcoran / <a href="http://www.forbes.com/">Forbes</a>:</cite> <a href="http://www.forbes.com/2008/05/03/microsoft-yahoo-deal-tech-enter-cx_ec_0503yahoo.html">Forget It, Ballmer Says To Yahoo!</a></div>
<div><cite>Stephen Shankland / <a href="http://www.news.com/">CNET News.com</a>:</cite> <a href="http://www.news.com/8301-10784_3-9935208-7.html">Is Google ad deal really Yahoo's best option?</a></div>
<div><cite>Robert Hof / <a href="http://www.businessweek.com/technology/">Business Week</a>:</cite> <a href="http://www.businessweek.com/technology/content/may2008/tc2008053_759938.htm">Microsoft Drops Bid for Yahoo</a></div>
<div><cite>James A. Robertson / <a href="http://www.cincomsmalltalk.com/blog/blogView">Smalltalk Tidbits, Industry Rants</a>:</cite> <a href="http://www.cincomsmalltalk.com/blog/blogView?showComments=true&amp;printTitle=Reality_1,_Scoble_0&amp;entry=3387315126">Reality 1, Scoble 0</a></div>
<div><cite>Robert Scoble / <a href="http://scobleizer.com/">Scobleizer</a>:</cite> <a href="http://scobleizer.com/2008/05/03/how-will-yahoo-heal-after-microsoft-walked-away/">How will Yahoo heal after Microsoft walked away?</a></div>
<div><cite>Harry McCracken / <a href="http://blogs.pcworld.com/techlog/">Techlog</a>:</cite> <a href="http://blogs.pcworld.com/techlog/archives/006885.html">No MicroHoo?  Hallelujah!</a></div>
<div><cite>David Snyder / <a href="http://www.marketingpilgrim.com/">Andy Beal's Marketing Pilgrim</a>:</cite> <a href="http://www.marketingpilgrim.com/2008/05/microsoft-retreats-or-withdrawls-depends-on-your-view.html">Microsoft Retreats or Withdrawls, Depends on Your View</a></div>
<div><cite>Alexander Wolfe / <a href="http://www.informationweek.com/">InformationWeek</a>:</cite> <a href="http://www.informationweek.com/news/windows/operatingsystems/showArticle.jhtml?articleID=207500797">Microsoft Yanks Yahoo Bid</a></div>
<div><cite>Ashkan Karbasfrooshan / <a href="http://watchmojo.com/web/blog">HipMojo.com</a>:</cite> <a href="http://watchmojo.com/web/blog/index.php/2008/05/03/latest-chess-move-msft-withdraws-offer/">Latest Chess Move: MSFT Withdraws Offer</a></div>
<div><cite>Kevin Heisler / <a href="http://blog.searchenginewatch.com/blog/">Search Engine Watch Blog</a>:</cite> <a href="http://blog.searchenginewatch.com/blog/080503-215913">Breaking: Microsoft Withdraws Yahoo Offer; Yahoo Responds</a></div>
<div><cite>Staci D. Kramer / <a href="http://www.paidcontent.org/">paidContent.org</a>:</cite> <a href="http://www.paidcontent.org/entry/419-microsoft-yahoo-yang/">Microsoft-Yahoo: Yang's Response: With Distraction Behind Us  </a></div>
<div><cite>Allen Stern / <a href="http://www.centernetworks.com/">CenterNetworks</a>:</cite> <a href="http://www.centernetworks.com/microsoft-yahoo-aol">What's Next for Yahoo?  Merging With AOL Still My Pick</a></div>
<div><cite>Greg Sterling / <a href="http://searchengineland.com/">Search Engine Land</a>:</cite> <a href="http://searchengineland.com/080503-200422.php">Microsoft Yanks Its Offer For Yahoo</a></div>
<div><cite>John Battelle / <a href="http://battellemedia.com/">John Battelle's Searchblog</a>:</cite> <a href="http://battellemedia.com/archives/004417.php">MICROSOFT BAILS, YAHOO'S GOOGLE THREAT APPEARS TO HAVE WORKED</a></div>
<div><cite>Joseph Hunkins / <a href="http://www.webguild.org/index.php">WebGuild</a>:</cite> <a href="http://www.webguild.org/2008/05/microsoft-walks-away-from-yahoo.php">Microsoft Walks Away From Yahoo</a></div>
<div><cite>Arn / <a href="http://www.macrumors.com/">MacRumors</a>:</cite> <a href="http://www.macrumors.com/2008/05/03/microsoft-walking-away-from-yahoo-acquisition/">Microsoft Walking Away from Yahoo Acquisition</a></div>
<div><cite>Ryan Block / <a href="http://www.engadget.com/">Engadget</a>:</cite> <a href="http://www.engadget.com/2008/05/03/microsoft-pulls-bid-for-yahoo/">Microsoft pulls bid for Yahoo!, Microhoo will never be</a></div>
<div><cite>MG Siegler / <a href="http://venturebeat.com/">VentureBeat</a>:</cite> <a href="http://venturebeat.com/2008/05/03/yahoo-breaks-the-wrist-microsoft-walks-away/">Yahoo breaks the wrist, Microsoft walks away</a></div>
<div><cite>John Paczkowski / <a href="http://digitaldaily.allthingsd.com/">Digital Daily</a>:</cite> <a href="http://digitaldaily.allthingsd.com/20080503/ballmer-to-yang-dear-jerry-drop-dead/">Ballmer to Yang: Dear Jerry, Drop Dead</a></div>
</div>
</div>
</div>
<div><a title="Permalink" href="http://www.techmeme.com/080503/p35#a080503p35"><img src="http://www.techmeme.com/img/pml.png" alt=""></a> <cite>Ina Fried / <a href="http://www.news.com/beyond-binary/">Beyond Binary</a>:</cite><br>
<strong><a href="http://www.news.com/8301-13860_3-9935100-56.html">Microsoft says proxy battle not worth it</a></strong> 
<div><span>Link Search:</span> <a href="http://www.ask.com/blogsearch?q=http://www.news.com/8301-13860_3-9935100-56.html">Ask</a>, <a href="http://www.technorati.com/search/http://www.news.com/8301-13860_3-9935100-56.html">Technorati</a>, <a href="http://www.sphere.com/search?q=sphereit:http://www.news.com/8301-13860_3-9935100-56.html">Sphere</a>, <a href="http://blogsearch.google.com/blogsearch?q=http://www.news.com/8301-13860_3-9935100-56.html">Google</a>, and <a href="http://blogs.icerocket.com/search?q=http://www.news.com/8301-13860_3-9935100-56.html">IceRocket</a></div>
<div style="display:block">
<div>
<div><a href="javascript:void(0);">+</a></div>
<p><span>Discussion:</span> <a href="http://www.bloggingstocks.com/2008/05/03/its-off-microsoft-withdraws-its-offer-for-yahoo-for-now/">BloggingStocks</a></p>
</div>
</div>
<div>
<div>
<div style="display:block"><a href="javascript:void(0);"></a></div>
<p><span>Discussion:</span></p>
<div><cite>Peter Cohan / <a href="http://www.bloggingstocks.com/">BloggingStocks</a>:</cite> <a href="http://www.bloggingstocks.com/2008/05/03/its-off-microsoft-withdraws-its-offer-for-yahoo-for-now/">It's off. Microsoft withdraws its offer for Yahoo  for now</a></div>
</div>
</div>
</div>
<div><a title="Permalink" href="http://www.techmeme.com/080504/p4#a080504p4"><img src="http://www.techmeme.com/img/pml.png" alt=""></a> <cite><a href="http://news.bbc.co.uk/">BBC</a>:</cite><br>
<strong><a href="http://news.bbc.co.uk/1/hi/business/7382572.stm">Microsoft walks away from Yahoo</a></strong> 
<div><span>Link Search:</span> <a href="http://www.ask.com/blogsearch?q=http://news.bbc.co.uk/1/hi/business/7382572.stm">Ask</a>, <a href="http://www.technorati.com/search/http://news.bbc.co.uk/1/hi/business/7382572.stm">Technorati</a>, <a href="http://www.sphere.com/search?q=sphereit:http://news.bbc.co.uk/1/hi/business/7382572.stm">Sphere</a>, <a href="http://blogsearch.google.com/blogsearch?q=http://news.bbc.co.uk/1/hi/business/7382572.stm">Google</a>, and <a href="http://blogs.icerocket.com/search?q=http://news.bbc.co.uk/1/hi/business/7382572.stm">IceRocket</a></div>
<div style="display:block">
<div>
<div><a href="javascript:void(0);">+</a></div>
<p><span>Discussion:</span> <a href="http://gizmodo.com/386912/microsoft-retires-yahoo-offer-wont-try-hostile-takeover">Gizmodo</a> and <a href="http://tech.blorge.com/Structure:%20/2008/05/04/no-microhoo-microsoft-terminates-bid-on-yahoo/">TECH.BLORGE.com</a></p>
</div>
</div>
<div>
<div>
<div style="display:block"><a href="javascript:void(0);"></a></div>
<p><span>Discussion:</span></p>
<div><cite>Jesus Diaz / <a href="http://gizmodo.com/">Gizmodo</a>:</cite> <a href="http://gizmodo.com/386912/microsoft-retires-yahoo-offer-wont-try-hostile-takeover">Microsoft Retires Yahoo Offer, Won't Try Hostile Takeover</a></div>
<div><cite>Erna Mahyuni / <a href="http://tech.blorge.com/">TECH.BLORGE.com</a>:</cite> <a href="http://tech.blorge.com/Structure:%20/2008/05/04/no-microhoo-microsoft-terminates-bid-on-yahoo/">No Microhoo - Microsoft terminates bid on Yahoo</a></div>
</div>
</div>
</div>
<p><a title="Permalink" href="http://www.techmeme.com/080503/p31#a080503p31"><img src="http://www.techmeme.com/img/pml.png" alt=""></a> <cite>Kara Swisher / <a href="http://kara.allthingsd.com/">BoomTo<br><br>Tags: <a href="http://www.croncast.com/keyg/microsoft">microsoft</a> <a href="http://www.technorati.com/tag/microsoft"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/microsoft.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/yahoo">yahoo</a> <a href="http://www.technorati.com/tag/yahoo"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/yahoo.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/news">news</a> <a href="http://www.technorati.com/tag/news"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/news.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/google">google</a> <a href="http://www.technorati.com/tag/google"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/google.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/discussion">discussion</a> <a href="http://www.technorati.com/tag/discussion"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/discussion.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></description><content:encoded><![CDATA[<p>Microsoft withdrawing its offer to buy Yahoo is a sufficiently large story to demonstrate the problem of redundant news content on the web. <a href="http://news.google.com/?ncl=1154376246&amp;hl=en&amp;topic=b&amp;scoring=n">Google News</a> is currently tracking about 2,000 versions of this story. To get a better sense of why it's a problem to have 2,000 stories about the SAME THING, I've reproduced about ten percent of them below  just the headlines and ledes. If you have the stomach to scroll through them all to see what else I have to say about it, check out the sources as you scroll:</p>
<p><strong>UPDATE:</strong> The Google News example is <a href="http://publishing2.com/google-news-microsoft-yahoo-example/">reproduced here</a> instead. You're reading this in RSS or email a day after I posted it because this post was so large it broke my Feedburner feed. Too much content breaks the web  there you have it. Keep reading for my original argument.</p>
<p>If you've made it this far, you may have noticed the absence of blogs from the sources. So this is far from a representative sample of all of the websites that published a version of this news story.</p>
<p>Let's check out <a href="http://www.techmeme.com/080504/h1140">Techmeme</a>, again reproduced in its entirety, because seeing is disbelieving:</p>
<blockquote>
<div><a title="Permalink" href="http://www.techmeme.com/080503/p45#a080503p45"><img src="http://www.techmeme.com/img/pml.png" alt=""></a> <cite><a href="http://yhoo.client.shareholder.com/press/releases.cfm">Yahoo!</a>:</cite>
<div><strong><a href="http://yhoo.client.shareholder.com/press/releasedetail.cfm?ReleaseID=308131">Yahoo! Issues Statement in Response to Microsoft</a></strong>   SUNNYVALE, Calif., May 03, 2008 (BUSINESS WIRE)  Roy Bostock, Chairman of Yahoo! Inc. (Nasdaq:YHOO), a leading global Internet company issued the following statement today in response to Microsoft Corporation's announcement that it has withdrawn its proposal to acquire Yahoo!:</div>
<p></p>
<div><span>Link Search:</span> <a href="http://www.ask.com/blogsearch?q=http://yhoo.client.shareholder.com/press/releasedetail.cfm?ReleaseID=308131">Ask</a>, <a href="http://www.technorati.com/search/http://yhoo.client.shareholder.com/press/releasedetail.cfm?ReleaseID=308131">Technorati</a>, <a href="http://www.sphere.com/search?q=sphereit:http://yhoo.client.shareholder.com/press/releasedetail.cfm?ReleaseID=308131">Sphere</a>, <a href="http://blogsearch.google.com/blogsearch?q=http://yhoo.client.shareholder.com/press/releasedetail.cfm?ReleaseID=308131">Google</a>, and <a href="http://blogs.icerocket.com/search?q=http://yhoo.client.shareholder.com/press/releasedetail.cfm?ReleaseID=308131">IceRocket</a></div>
<div style="display:block">
<div>
<div><a href="javascript:void(0);">+</a></div>
<p><span>Discussion:</span> <a href="http://www.techcrunch.com/2008/05/03/yahoo-responds/">TechCrunch</a>, <a href="http://news.stepforth.com/blog/2008/05/microsoft-backs-down-from-yahoo.php">StepForth SEO News Blog</a>, <a href="http://www.bbc.co.uk/blogs/technology/2008/05/walking_away.html">BBC NEWS</a>, <a href="http://www.forbes.com/2008/05/03/microsoft-yahoo-deal-tech-enter-cx_ec_0503end.html">Forbes</a>, <a href="http://www.i4u.com/article16940.html">I4U News</a>, <a href="http://blog.tmcnet.com/blog/rich-tehrani/microsoft/microsoft-withdraws-yahoo-proposal.html">VoIP Blog</a>, <a href="http://www.geeknewscentral.com/archives/007899.html">Geek News Central</a>, <a href="http://furrier.org/2008/05/04/victory-for-silicon-valley-the-silicon-valley-poison-pill-worked-as-predicted/">Furrier.org</a>, <a href="http://blogs.barrons.com/techtraderdaily/2008/05/03/ballmer-calls-yangs-bluff-microsoft-walks/">Tech Trader Daily</a>, <a href="http://www.liveside.net/blogs/main/archive/2008/05/04/yahoo-responds-to-withdrawal-issues-statement.aspx">LiveSide</a>, <a href="http://paul.kedrosky.com/archives/2008/05/03/yahoos_response.html">Paul Kedrosky's </a> and <a href="http://geekspeaker.spaces.live.com/blog/cns%21588D139CAFEFE462%211258.entry">Geek Speaker</a></p>
</div>
</div>
<div>
<div>
<div style="display:block"><a href="javascript:void(0);"></a></div>
<p><span>Discussion:</span></p>
<div><cite>Michael Arrington / <a href="http://www.techcrunch.com/">TechCrunch</a>:</cite> <a href="http://www.techcrunch.com/2008/05/03/yahoo-responds/">Yahoo Responds: The distraction of Microsoft's unsolicited proposal now behind us</a></div>
<div><cite>Ross Dunn / <a href="http://news.stepforth.com/blog/index.php">StepForth SEO News Blog</a>:</cite> <a href="http://news.stepforth.com/blog/2008/05/microsoft-backs-down-from-yahoo.php">Microsoft Backs Down from Yahoo</a></div>
<div><cite>Darren Waters / <a href="http://www.bbc.co.uk/blogs/technology/">BBC NEWS | dot.life</a>:</cite> <a href="http://www.bbc.co.uk/blogs/technology/2008/05/walking_away.html">Walking away</a></div>
<div><cite>Elizabeth Corcoran / <a href="http://www.forbes.com/">Forbes</a>:</cite> <a href="http://www.forbes.com/2008/05/03/microsoft-yahoo-deal-tech-enter-cx_ec_0503end.html">What Microsoft Will Buy Now    Expect to hear more from Steve Ballmer.</a></div>
<div><cite>Luigi Lugmayr / <a href="http://www.i4u.com/">I4U News</a>:</cite> <a href="http://www.i4u.com/article16940.html">Yahoo's Response to Microsoft's Bid Withdrawal</a></div>
<div><cite><a href="http://blog.tmcnet.com/blog/rich-tehrani/">VoIP Blog</a>:</cite> <a href="http://blog.tmcnet.com/blog/rich-tehrani/microsoft/microsoft-withdraws-yahoo-proposal.html">Microsoft Withdraws Yahoo Proposal</a></div>
<div><cite>Todd Cochrane / <a href="http://www.geeknewscentral.com/">Geek News Central</a>:</cite> <a href="http://www.geeknewscentral.com/archives/007899.html">Yahoo is Toast and Yang needs to be Fired</a></div>
<div><cite>John Furrier / <a href="http://furrier.org/">Furrier.org</a>:</cite> <a href="http://furrier.org/2008/05/04/victory-for-silicon-valley-the-silicon-valley-poison-pill-worked-as-predicted/">Victory for Silicon Valley; The Silicon Valley Poison Pill Worked - As Predicted</a></div>
<div><cite>Eric Savitz / <a href="http://blogs.barrons.com/techtraderdaily">Tech Trader Daily</a>:</cite> <a href="http://blogs.barrons.com/techtraderdaily/2008/05/03/ballmer-calls-yangs-bluff-microsoft-walks/">Ballmer Calls Yang's Bluff: Microsoft Walks</a></div>
<div><cite>Kip Kniskern / <a href="http://www.liveside.net/blogs/">LiveSide</a>:</cite> <a href="http://www.liveside.net/blogs/main/archive/2008/05/04/yahoo-responds-to-withdrawal-issues-statement.aspx">Yahoo! responds to withdrawal - issues statement</a></div>
<div><cite><a href="http://paul.kedrosky.com/">Paul Kedrosky's Infectious Greed</a>:</cite> <a href="http://paul.kedrosky.com/archives/2008/05/03/yahoos_response.html">Yahoo's Response to Microsoft's Response to Yahoo</a></div>
<div><cite><a href="http://geekspeaker.spaces.live.com/blog/">Geek Speaker</a>:</cite> <a href="http://geekspeaker.spaces.live.com/blog/cns%21588D139CAFEFE462%211258.entry">Why Yahoo is worth more than 50 billion &amp; why Yahoo! For Good  </a></div>
<div style="display:block"><a href="javascript:void(0);">  All Related Discussion</a></div>
<div><a href="javascript:void(0);">  Hide All Related Discussion</a></div>
</div>
</div>
</div>
<div><span>RELATED:</span></div>
<p><a name="a080504p7"></a></p>
<div><a title="Permalink" href="http://www.techmeme.com/080503/p34#a080503p34"><img src="http://www.techmeme.com/img/pml.png" alt=""></a> <cite><a href="http://www.microsoft.com/presspass/default.mspx">Microsoft</a>:</cite>
<div><strong><a href="http://www.microsoft.com/presspass/press/2008/may08/05-03letter.mspx">Microsoft Withdraws Proposal to Acquire Yahoo!</a></strong>   Microsoft Corp. today announced that it has withdrawn its proposal to acquire Yahoo! Inc.    Microsoft Corp. (NASDAQ: MSFT) today announced that it has withdrawn its proposal to acquire Yahoo! Inc. (NASDAQ: YHOO).</div>
<p></p>
<div><span>Link Search:</span> <a href="http://www.ask.com/blogsearch?q=http://www.microsoft.com/presspass/press/2008/may08/05-03letter.mspx">Ask</a>, <a href="http://www.technorati.com/search/http://www.microsoft.com/presspass/press/2008/may08/05-03letter.mspx">Technorati</a>, <a href="http://www.sphere.com/search?q=sphereit:http://www.microsoft.com/presspass/press/2008/may08/05-03letter.mspx">Sphere</a>, <a href="http://blogsearch.google.com/blogsearch?q=http://www.microsoft.com/presspass/press/2008/may08/05-03letter.mspx">Google</a>, and <a href="http://blogs.icerocket.com/search?q=http://www.microsoft.com/presspass/press/2008/may08/05-03letter.mspx">IceRocket</a></div>
<div style="display:block">
<div>
<div><a href="javascript:void(0);">+</a></div>
<p><span>Discussion:</span> <a href="http://searchengineland.com/080504-104940.php">Search Engine Land</a>, <a href="http://blogs.zdnet.com/Google/?p=1029">Googling Google</a>, <a href="http://blogs.zdnet.com/BTL/?p=8714">Between the Lines</a>, <a href="http://www.news.com/8301-10784_3-9935249-7.html">CNET News.com</a>, <a href="http://webworkerdaily.com/2008/05/04/microsoft-yahoo-web-workers/">Web Worker Daily</a>, <a href="http://www.techcrunch.com/2008/05/03/microsoftyahoo-summary-of-news-bonus-gillmor-gang/">TechCrunch</a>, <a href="http://blog.webreakstuff.com/2008/05/msft-and-yhoo-its-finally-over/">WeBreakStuff</a>, <a href="http://www.psynixis.com/blog/2008/05/04/yahoo-blows-it-how-low-will-they-go/">Simon's Blog</a>, <a href="http://www.i4u.com/article16939.html">I4U News</a>, <a href="http://www.hunterstrat.com/news/2008/05/04/microsoft-withdraws-offer-for-yahoo/">Microsoft News Tracker</a>, <a href="http://blogs.chron.com/techblog/archives/2008/05/microsoft_to_yahoo_never_mind_1.html">TechBlog</a>, <a href="http://dealbook.blogs.nytimes.com/2008/05/03/will-microsoft-really-walk/">DealBook</a>, <a href="http://dotnetjunkies.com/WebLog/paul/archive/2008/05/04/467031.aspx">Paul Mooney</a>, <a href="http://www.pocketpcthoughts.com/news/show/88917/microsoft-walks-away-from-yahoo.html">Pocket PC Thoughts.com</a>, <a href="http://www.techspot.com/news/29921-Weekend-tech-reading-504.html">TechSpot</a>, <a href="http://joeduck.com/2008/05/03/ballmer-has-left-the-building/">Joe Duck</a>, <a href="http://techbays.com/2008/05/03/microsoft-yahoo-deal-the-no-votes-win/">TechBays</a>, <a href="http://blog.wired.com/business/2008/05/microsoft-walks.html">Epicenter</a>, <a href="http://blogs.zdnet.com/microsoft/?p=1376">All about Microsoft</a>, <a href="http://news.digitaltrends.com/news/story/16582/microsoft_abandons_yahoo_takeover">Digital Trends</a>, <a href="http://anzman.blogspot.com/2008/05/microsoft-pulls-plug-on-yahoo.html">SEO and Tech Daily</a>, <a href="http://www.realtechnews.com/posts/5646">Alice Hill's Real Tech News</a>, <a href="http://www.markevanstech.com/2008/05/03/lets-get-the-yahoo-microsoft-blogging-party-started/">Mark Evans</a>, <a href="http://www.latimes.com/technology/la-na-microsoft4-2008may04,0,1142949.story">Los Angeles Times</a>, <a href="http://www.webguild.org/2008/05/ballmers-letter-to-jerry-yang.php">WebGuild</a>, <a href="http://mashable.com/2008/05/03/breaking-microsoft-corporation-rescinds-offer-for-yahoo-inc/">Mashable!</a>, <a href="http://blog.seattlepi.nwsource.com/microsoft/archives/138070.asp">Todd Bishop's Microsoft Blog</a>, <a href="http://valleywag.com/386898/ballmer-to-yang-how-stupid-are-you">Valleywag</a>, <a href="http://www.quickonlinetips.com/archives/2008/05/microsoft-unable-to-buy-yahoo/">Quick Online Tips</a>, <a href="http://gigaom.com/2008/05/03/microsoft-yahoo-bid-over/">GigaOM</a>, <a href="http://www.profy.com/2008/05/03/microsot-withdraws-yahoo-bid/">Profy.Com</a>, <a href="http://www.appscout.com/2008/05/microsoft_withdraws_yahoo_bid.php">AppScout</a>, <a href="http://blog.clickz.com/080503-213942.html">ClickZ News Blog</a>, <a href="http://www.theregister.co.uk/2008/05/04/microsoft_withdraws_yahoo_offer/">The Register</a> and <a href="http://scobleizer.com/2008/05/03/the-first-friendfeed-event-msft-and-yhoo/">Scobleizer</a></p>
</div>
</div>
<div>
<div>
<div style="display:block"><a href="javascript:void(0);"></a></div>
<p><span>Discussion:</span></p>
<div><cite>Danny Sullivan / <a href="http://searchengineland.com/">Search Engine Land</a>:</cite> <a href="http://searchengineland.com/080504-104940.php">Leaving Las Yahoo: Microsoft's $5 Billion Mistake?</a></div>
<div><cite>Garett Rogers / <a href="http://blogs.zdnet.com/Google">Googling Google</a>:</cite> <a href="http://blogs.zdnet.com/Google/?p=1029">Microsoft withrawls bid for Yahoo, Google wins</a></div>
<div><cite>Larry Dignan / <a href="http://blogs.zdnet.com/BTL">Between the Lines</a>:</cite> <a href="http://blogs.zdnet.com/BTL/?p=8714">Microsoft walks away from Yahoo: Assessing winners, losers and Plan Bs</a></div>
<div><cite>Stephen Shankland / <a href="http://www.news.com/">CNET News.com</a>:</cite> <a href="http://www.news.com/8301-10784_3-9935249-7.html">Yahoo-Google ad deal could be announced next week</a></div>
<div><cite>Mike Gunderloy / <a href="http://webworkerdaily.com/">Web Worker Daily</a>:</cite> <a href="http://webworkerdaily.com/2008/05/04/microsoft-yahoo-web-workers/">Microsoft, Yahoo, and Web Workers</a></div>
<div><cite>Michael Arrington / <a href="http://www.techcrunch.com/">TechCrunch</a>:</cite> <a href="http://www.techcrunch.com/2008/05/03/microsoftyahoo-summary-of-news-bonus-gillmor-gang/">Microsoft/Yahoo: Summary Of Today's News &amp; Bonus Gillmor Gang</a></div>
<div><cite>Fred Oliveira / <a href="http://blog.webreakstuff.com/">WeBreakStuff</a>:</cite> <a href="http://blog.webreakstuff.com/2008/05/msft-and-yhoo-its-finally-over/">MSFT and YHOO: It's finally over</a></div>
<div><cite>Simon Brocklehurst / <a href="http://www.psynixis.com/blog">Simon's Blog</a>:</cite> <a href="http://www.psynixis.com/blog/2008/05/04/yahoo-blows-it-how-low-will-they-go/">YAHOO! BLOWS IT - HOW LOW WILL THEY GO?</a></div>
<div><cite>Luigi Lugmayr / <a href="http://www.i4u.com/">I4U News</a>:</cite> <a href="http://www.i4u.com/article16939.html">Microsoft officially withdraws Yahoo Bid</a></div>
<div><cite>David Hunter / <a href="http://www.hunterstrat.com/news">Microsoft News Tracker</a>:</cite> <a href="http://www.hunterstrat.com/news/2008/05/04/microsoft-withdraws-offer-for-yahoo/">Microsoft withdraws offer for Yahoo</a></div>
<div><cite>Dwight / <a href="http://blogs.chron.com/techblog/">TechBlog</a>:</cite> <a href="http://blogs.chron.com/techblog/archives/2008/05/microsoft_to_yahoo_never_mind_1.html">Microsoft to Yahoo: Never mind</a></div>
<div><cite><a href="http://dealbook.blogs.nytimes.com/">DealBook</a>:</cite> <a href="http://dealbook.blogs.nytimes.com/2008/05/03/will-microsoft-really-walk/">Will Microsoft Really Walk?</a></div>
<div><cite><a href="http://dotnetjunkies.com/WebLog/paul/default.aspx">Paul Mooney</a>:</cite> <a href="http://dotnetjunkies.com/WebLog/paul/archive/2008/05/04/467031.aspx">Yahoo Prevails    Microsoft Withdraws Proposal to Acquire Yahoo!</a></div>
<div><cite>Darius Wey / <a href="http://www.pocketpcthoughts.com/">Pocket PC Thoughts.com</a>:</cite> <a href="http://www.pocketpcthoughts.com/news/show/88917/microsoft-walks-away-from-yahoo.html">Microsoft Walks Away From Yahoo!</a></div>
<div><cite>Julio Franco / <a href="http://www.techspot.com/">TechSpot</a>:</cite> <a href="http://www.techspot.com/news/29921-Weekend-tech-reading-504.html">Weekend tech reading (5.04)</a></div>
<div><cite><a href="http://joeduck.com/">Joe Duck</a>:</cite> <a href="http://joeduck.com/2008/05/03/ballmer-has-left-the-building/">Ballmer has left the Building</a></div>
<div><cite>Carlo Maglinao / <a href="http://techbays.com/">TechBays</a>:</cite> <a href="http://techbays.com/2008/05/03/microsoft-yahoo-deal-the-no-votes-win/">Microsoft Yahoo! Deal: the NO votes win</a></div>
<div><cite>Betsy Schiffman / <a href="http://blog.wired.com/business/">Epicenter</a>:</cite> <a href="http://blog.wired.com/business/2008/05/microsoft-walks.html">Microsoft Walks! Says Yahoo Demands Don't Make Sense</a></div>
<div><cite>Mary Jo Foley / <a href="http://blogs.zdnet.com/microsoft">All about Microsoft</a>:</cite> <a href="http://blogs.zdnet.com/microsoft/?p=1376">Microsoft takes its ball and leaves Yahoo on the Web 2.0 playground</a></div>
<div><cite>Geoff Duncan / <a href="http://news.digitaltrends.com/">Digital Trends</a>:</cite> <a href="http://news.digitaltrends.com/news/story/16582/microsoft_abandons_yahoo_takeover">Microsoft Abandons Yahoo Takeover</a></div>
<div><cite>Charlie Anzman / <a href="http://anzman.blogspot.com/">SEO and Tech Daily</a>:</cite> <a href="http://anzman.blogspot.com/2008/05/microsoft-pulls-plug-on-yahoo.html">Microsoft pulls the plug on Yahoo!</a></div>
<div><cite>Michael Santo / <a href="http://www.realtechnews.com/">Alice Hill's Real Tech News</a>:</cite> <a href="http://www.realtechnews.com/posts/5646">No Microhoo: Microsoft Walks Away from Yahoo! Deal</a></div>
<div><cite><a href="http://www.markevanstech.com/">Mark Evans</a>:</cite> <a href="http://www.markevanstech.com/2008/05/03/lets-get-the-yahoo-microsoft-blogging-party-started/">Let's Get the (Yahoo-Microsoft Blogging Party) Started</a></div>
<div><cite><a href="http://www.latimes.com/">Los Angeles Times</a>:</cite> <a href="http://www.latimes.com/technology/la-na-microsoft4-2008may04,0,1142949.story">Microsoft drops bid to acquire Yahoo</a></div>
<div><cite>Joseph Hunkins / <a href="http://www.webguild.org/index.php">WebGuild</a>:</cite> <a href="http://www.webguild.org/2008/05/ballmers-letter-to-jerry-yang.php">Ballmer's Letter to Jerry Yang Withdrawing Microsoft's Offer</a></div>
<div><cite>Paul Glazowski / <a href="http://mashable.com/">Mashable!</a>:</cite> <a href="http://mashable.com/2008/05/03/breaking-microsoft-corporation-rescinds-offer-for-yahoo-inc/">Breaking: Microsoft Corporation Rescinds Offer For Yahoo Inc</a></div>
<div><cite>Todd Bishop / <a href="http://blog.seattlepi.nwsource.com/microsoft">Todd Bishop's Microsoft Blog</a>:</cite> <a href="http://blog.seattlepi.nwsource.com/microsoft/archives/138070.asp">Ballmer's internal e-mail on Yahoo decision</a></div>
<div><cite>Owen Thomas / <a href="http://valleywag.com/">Valleywag</a>:</cite> <a href="http://valleywag.com/386898/ballmer-to-yang-how-stupid-are-you">Ballmer to Yang: How stupid are you?</a></div>
<div><cite><a href="http://www.quickonlinetips.com/">Quick Online Tips</a>:</cite> <a href="http://www.quickonlinetips.com/archives/2008/05/microsoft-unable-to-buy-yahoo/">Microsoft Unable to Buy Yahoo!</a></div>
<div><cite>Om Malik / <a href="http://gigaom.com/">GigaOM</a>:</cite> <a href="http://gigaom.com/2008/05/03/microsoft-yahoo-bid-over/">Microsoft To Yahoo: Take a Hike!</a></div>
<div><cite>Cyndy Aleo-Carreira / <a href="http://www.profy.com/">Profy.Com</a>:</cite> <a href="http://www.profy.com/2008/05/03/microsot-withdraws-yahoo-bid/">Steve Stands Jerry Up for the Internet Prom</a></div>
<div><cite>Brian Heater / <a href="http://www.appscout.com/">AppScout</a>:</cite> <a href="http://www.appscout.com/2008/05/microsoft_withdraws_yahoo_bid.php">Microsoft Withdraws Yahoo! Bid</a></div>
<div><cite>Anna Maria Virzi / <a href="http://blog.clickz.com/">ClickZ News Blog</a>:</cite> <a href="http://blog.clickz.com/080503-213942.html">Microsoft Withdraws Bid for Yahoo</a></div>
<div><cite>Drew Cullen / <a href="http://www.theregister.co.uk/">The Register</a>:</cite> <a href="http://www.theregister.co.uk/2008/05/04/microsoft_withdraws_yahoo_offer/">Microsoft walks away from Yahoo!</a></div>
<div><cite>Robert Scoble / <a href="http://scobleizer.com/">Scobleizer</a>:</cite> <a href="http://scobleizer.com/2008/05/03/the-first-friendfeed-event-msft-and-yhoo/">The First FriendFeed Event: MSFT and YHOO</a></div>
</div>
</div>
</div>
<p><a name="a080504p5"></a></p>
<div><a href="http://kara.allthingsd.com/20080503/microhoo-the-odd-couple-meetings-led-nowhere/"><img src="http://www.techmeme.com/080503/i48.jpg" alt=""></a> <a title="Permalink" href="http://www.techmeme.com/080503/p48#a080503p48"><img src="http://www.techmeme.com/img/pml.png" alt=""></a> <cite>Kara Swisher / <a href="http://kara.allthingsd.com/">BoomTown</a>:</cite>
<div><strong><a href="http://kara.allthingsd.com/20080503/microhoo-the-odd-couple-meetings-led-nowhere/">MicroHoo: The Odd Couple Meetings Led Nowhere</a></strong>   After today's events, I guess you could say Yahoo and Microsoft tried, holding a series of meetings about a possible takeover that ended up proving exactly how incompatible the companies were.    Kind of like Oscar Madison and Felix Unger, but not funny in any way at all.</div>
<p></p>
<div><span>Link Search:</span> <a href="http://www.ask.com/blogsearch?q=http://kara.allthingsd.com/20080503/microhoo-the-odd-couple-meetings-led-nowhere/">Ask</a>, <a href="http://www.technorati.com/search/http://kara.allthingsd.com/20080503/microhoo-the-odd-couple-meetings-led-nowhere/">Technorati</a>, <a href="http://www.sphere.com/search?q=sphereit:http://kara.allthingsd.com/20080503/microhoo-the-odd-couple-meetings-led-nowhere/">Sphere</a>, <a href="http://blogsearch.google.com/blogsearch?q=http://kara.allthingsd.com/20080503/microhoo-the-odd-couple-meetings-led-nowhere/">Google</a>, and <a href="http://blogs.icerocket.com/search?q=http://kara.allthingsd.com/20080503/microhoo-the-odd-couple-meetings-led-nowhere/">IceRocket</a></div>
<div style="display:block">
<div>
<div><a href="javascript:void(0);">+</a></div>
<p><span>Discussion:</span> <a href="http://blogs.zdnet.com/BTL/?p=8708">Between the Lines</a>, <a href="http://valleywag.com/386890/yahoos-37-demand-talks-microsofts-33-offer-walks">Valleywag</a> and <a href="http://paul.kedrosky.com/archives/2008/05/03/first_ticktock.html">Paul Kedrosky's </a></p>
</div>
</div>
<div>
<div>
<div style="display:block"><a href="javascript:void(0);"></a></div>
<p><span>Discussion:</span></p>
<div><cite>Larry Dignan / <a href="http://blogs.zdnet.com/BTL">Between the Lines</a>:</cite> <a href="http://blogs.zdnet.com/BTL/?p=8708">Microsoft walks: Five reasons why it's a good move</a></div>
<div><cite>Jackson West / <a href="http://valleywag.com/">Valleywag</a>:</cite> <a href="http://valleywag.com/386890/yahoos-37-demand-talks-microsofts-33-offer-walks">YAHOO'S $37 DEMAND TALKS, MICROSOFT'S $33 OFFER WALKS   Microsoft  </a></div>
<div><cite><a href="http://paul.kedrosky.com/">Paul Kedrosky's Infectious Greed</a>:</cite> <a href="http://paul.kedrosky.com/archives/2008/05/03/first_ticktock.html">First Tick-Tock of Da Deal Gone Dead</a></div>
</div>
</div>
</div>
<p><a name="a080504p8"></a></p>
<div><a title="Permalink" href="http://www.techmeme.com/080504/p7#a080504p7"><img src="http://www.techmeme.com/img/pml.png" alt=""></a> <cite>Ina Fried / <a href="http://www.news.com/beyond-binary/">Beyond Binary</a>:</cite>
<div><strong><a href="http://www.news.com/8301-13860_3-9935120-56.html">OK, so what's Microsoft's plan B?</a></strong>   With Yahoo apparently off the table, it's time to see what Microsoft's back-up plan looks like.    Microsoft has said for some time that it has a strategy with or without Yahoo, but it's a strategy clearly in need of a jump-start.</div>
<p></p>
<div><span>Link Search:</span> <a href="http://www.ask.com/blogsearch?q=http://www.news.com/8301-13860_3-9935120-56.html">Ask</a>, <a href="http://www.technorati.com/search/http://www.news.com/8301-13860_3-9935120-56.html">Technorati</a>, <a href="http://www.sphere.com/search?q=sphereit:http://www.news.com/8301-13860_3-9935120-56.html">Sphere</a>, <a href="http://blogsearch.google.com/blogsearch?q=http://www.news.com/8301-13860_3-9935120-56.html">Google</a>, and <a href="http://blogs.icerocket.com/search?q=http://www.news.com/8301-13860_3-9935120-56.html">IceRocket</a></div>
<div style="display:block">
<div>
<div><a href="javascript:void(0);">+</a></div>
<p><span>Discussion:</span> <a href="http://fakesteve.blogspot.com/2008/05/ballmer-now-looking-for-other-companies.html">The Secret Diary of Steve Jobs</a> and <a href="http://weblog.cenriqueortiz.com/general/2008/05/04/steve-ballmer-as-the-creature/">About Mobility Weblog</a></p>
</div>
</div>
<div>
<div>
<div style="display:block"><a href="javascript:void(0);"></a></div>
<p><span>Discussion:</span></p>
<div><cite>Steve / <a href="http://fakesteve.blogspot.com/">The Secret Diary of Steve Jobs</a>:</cite> <a href="http://fakesteve.blogspot.com/2008/05/ballmer-now-looking-for-other-companies.html">Ballmer now looking for other companies to not buy</a></div>
<div><cite>Ceo / <a href="http://weblog.cenriqueortiz.com/">About Mobility Weblog</a>:</cite> <a href="http://weblog.cenriqueortiz.com/general/2008/05/04/steve-ballmer-as-the-creature/">Steve Ballmer as The Creature</a></div>
</div>
</div>
</div>
<p><a name="a080504p3"></a></p>
<div><a title="Permalink" href="http://www.techmeme.com/080504/p5#a080504p5"><img src="http://www.techmeme.com/img/pml.png" alt=""></a> <cite><a href="http://dealbook.blogs.nytimes.com/">DealBook</a>:</cite>
<div><strong><a href="http://dealbook.blogs.nytimes.com/2008/05/03/guessing-yahoos-opening-stock-price/">Guessing Yahoo's Opening Stock Price</a></strong>   Well, Yahoo seems to have gotten what it wanted.    The company managed to fend off Microsoft's unwanted advances, even after the software giant sweetened its bid by $5 billion  an amount Yahoo felt still wasn't enough.</div>
<p></p>
<div><span>Link Search:</span> <a href="http://www.ask.com/blogsearch?q=http://dealbook.blogs.nytimes.com/2008/05/03/guessing-yahoos-opening-stock-price/">Ask</a>, <a href="http://www.technorati.com/search/http://dealbook.blogs.nytimes.com/2008/05/03/guessing-yahoos-opening-stock-price/">Technorati</a>, <a href="http://www.sphere.com/search?q=sphereit:http://dealbook.blogs.nytimes.com/2008/05/03/guessing-yahoos-opening-stock-price/">Sphere</a>, <a href="http://blogsearch.google.com/blogsearch?q=http://dealbook.blogs.nytimes.com/2008/05/03/guessing-yahoos-opening-stock-price/">Google</a>, and <a href="http://blogs.icerocket.com/search?q=http://dealbook.blogs.nytimes.com/2008/05/03/guessing-yahoos-opening-stock-price/">IceRocket</a></div>
<div style="display:block">
<div>
<div><a href="javascript:void(0);">+</a></div>
<p><span>Discussion:</span> <a href="http://www.alleyinsider.com/2008/5/why_yahoo_yhoo_should_go_ahead_with_google_outsourcing_deal_goog_">Silicon Alley Insider</a> and <a href="http://www.thepomoblog.com/archive/ack-microsoft-walks-away-winner-google/">Terry Heaton's PoMo Blog</a></p>
</div>
</div>
<div>
<div>
<div style="display:block"><a href="javascript:void(0);"></a></div>
<p><span>Discussion:</span></p>
<div><cite>Henry Blodget / <a href="http://www.alleyinsider.com/">Silicon Alley Insider</a>:</cite> <a href="http://www.alleyinsider.com/2008/5/why_yahoo_yhoo_should_go_ahead_with_google_outsourcing_deal_goog_">Why Yahoo (YHOO) Should Go Ahead With Google Outsourcing Deal (GOOG)</a></div>
<div><cite>Terry Heaton / <a href="http://www.thepomoblog.com/">Terry Heaton's PoMo Blog</a>:</cite> <a href="http://www.thepomoblog.com/archive/ack-microsoft-walks-away-winner-google/">Ack!  Microsoft walks away.  Winner?  Google.</a></div>
</div>
</div>
</div>
<p><a name="a080504p2"></a></p>
<div><a href="http://online.wsj.com/article/SB120986002095265343.html"><img src="http://www.techmeme.com/080504/i8.jpg" alt=""></a> <a title="Permalink" href="http://www.techmeme.com/080504/p8#a080504p8"><img src="http://www.techmeme.com/img/pml.png" alt=""></a> <cite><a href="http://online.wsj.com/public/us">Wall Street Journal</a>:</cite>
<div><strong><a href="http://online.wsj.com/article/SB120986002095265343.html">Microsoft Withdraws Yahoo Offer After Attempt to Bridge Gap in Price</a></strong>   Microsoft Corp. said it abandoned its offer for Yahoo Inc., as the two companies failed to bridge a gap between them on price.    Microsoft Saturday released a letter from Chief Executive Steve Ballmer </div>
<p></p>
<div><span>Link Search:</span> <a href="http://www.ask.com/blogsearch?q=http://online.wsj.com/article/SB120986002095265343.html">Ask</a>, <a href="http://www.technorati.com/search/http://online.wsj.com/article/SB120986002095265343.html">Technorati</a>, <a href="http://www.sphere.com/search?q=sphereit:http://online.wsj.com/article/SB120986002095265343.html">Sphere</a>, <a href="http://blogsearch.google.com/blogsearch?q=http://online.wsj.com/article/SB120986002095265343.html">Google</a>, and <a href="http://blogs.icerocket.com/search?q=http://online.wsj.com/article/SB120986002095265343.html">IceRocket</a></div>
<div style="display:block">
<div>
<div><a href="javascript:void(0);">+</a></div>
<p><span>Discussion:</span> <a href="http://pbokelly.blogspot.com/2008/05/microsoft-withdraws-yahoo-offer-after.html">Peter O'Kelly's Reality Check</a> and <a href="http://www.businessweek.com/the_thread/techbeat/archives/2008/05/microsoft_drops.html">Tech Beat</a></p>
</div>
</div>
<div>
<div>
<div style="display:block"><a href="javascript:void(0);"></a></div>
<p><span>Discussion:</span></p>
<div><cite>Peter / <a href="http://pbokelly.blogspot.com/">Peter O'Kelly's Reality Check</a>:</cite> <a href="http://pbokelly.blogspot.com/2008/05/microsoft-withdraws-yahoo-offer-after.html">Microsoft Withdraws Yahoo Offer After Attempt to Bridge Gap in Price - WSJ.com</a></div>
<div><cite>Rob Hof / <a href="http://www.businessweek.com/the_thread/techbeat/">Tech Beat</a>:</cite> <a href="http://www.businessweek.com/the_thread/techbeat/archives/2008/05/microsoft_drops.html">Microsoft Drops Yahoo BidAt Least For Now</a></div>
</div>
</div>
</div>
<p><a name="a080503p49"></a></p>
<div><a title="Permalink" href="http://www.techmeme.com/080504/p3#a080504p3"><img src="http://www.techmeme.com/img/pml.png" alt=""></a> <cite>Dawn Kawamoto / <a href="http://www.news.com/">CNET News.com</a>:</cite>
<div><strong><a href="http://www.news.com/8301-10784_3-9935250-7.html">Report: A peek behind the Yahoo-Microsoft meltdown</a></strong>   Curious how Microsoft's multi-multi-multi-billion dollar buyout bid for Yahoo sputtered, then crashed?    Kara Swisher's BoomTown column in All Things Digital has an interesting account of the missteps, sidesteps </div>
<p></p>
<div><span>Link Search:</span> <a href="http://www.ask.com/blogsearch?q=http://www.news.com/8301-10784_3-9935250-7.html">Ask</a>, <a href="http://www.technorati.com/search/http://www.news.com/8301-10784_3-9935250-7.html">Technorati</a>, <a href="http://www.sphere.com/search?q=sphereit:http://www.news.com/8301-10784_3-9935250-7.html">Sphere</a>, <a href="http://blogsearch.google.com/blogsearch?q=http://www.news.com/8301-10784_3-9935250-7.html">Google</a>, and <a href="http://blogs.icerocket.com/search?q=http://www.news.com/8301-10784_3-9935250-7.html">IceRocket</a></div>
</div>
<p><a name="a080504p1"></a></p>
<div><a href="http://kara.allthingsd.com/20080503/yahoos-nightmare-scenario-im-from-google-and-im-here-to-help/"><img src="http://www.techmeme.com/080504/i2.jpg" alt=""></a> <a title="Permalink" href="http://www.techmeme.com/080504/p2#a080504p2"><img src="http://www.techmeme.com/img/pml.png" alt=""></a> <cite>Kara Swisher / <a href="http://kara.allthingsd.com/">BoomTown</a>:</cite>
<div><strong><a href="http://kara.allthingsd.com/20080503/yahoos-nightmare-scenario-im-from-google-and-im-here-to-help/">Yahoo's Nightmare Scenario: I'm From Google and I'm Here to Help!</a></strong>   Here's what a top-notch source at Yahoo joked to me tonight, after Microsoft walked away from its unsolicited takeover bid to acquire the long-troubled Internet giant.    Google is now officially our best friend.    Oh no.</div>
<p></p>
<div><span>Link Search:</span> <a href="http://www.ask.com/blogsearch?q=http://kara.allthingsd.com/20080503/yahoos-nightmare-scenario-im-from-google-and-im-here-to-help/">Ask</a>, <a href="http://www.technorati.com/search/http://kara.allthingsd.com/20080503/yahoos-nightmare-scenario-im-from-google-and-im-here-to-help/">Technorati</a>, <a href="http://www.sphere.com/search?q=sphereit:http://kara.allthingsd.com/20080503/yahoos-nightmare-scenario-im-from-google-and-im-here-to-help/">Sphere</a>, <a href="http://blogsearch.google.com/blogsearch?q=http://kara.allthingsd.com/20080503/yahoos-nightmare-scenario-im-from-google-and-im-here-to-help/">Google</a>, and <a href="http://blogs.icerocket.com/search?q=http://kara.allthingsd.com/20080503/yahoos-nightmare-scenario-im-from-google-and-im-here-to-help/">IceRocket</a></div>
<div style="display:block">
<div>
<div><a href="javascript:void(0);">+</a></div>
<p><span>Discussion:</span> <a href="http://blogs.forrester.com/charleneli/2008/05/with-the-micros.html">Groundswell</a></p>
</div>
</div>
<div>
<div>
<div style="display:block"><a href="javascript:void(0);"></a></div>
<p><span>Discussion:</span></p>
<div><cite>Charlene Li / <a href="http://blogs.forrester.com/charleneli/">Groundswell</a>:</cite> <a href="http://blogs.forrester.com/charleneli/2008/05/with-the-micros.html">What's next for Microsoft and Yahoo!</a></div>
</div>
</div>
</div>
<p><a name="a080503p38"></a></p>
<div><a href="http://www.techcrunch.com/2008/05/03/yahoos-tough-week-ahead/"><img src="http://www.techmeme.com/080503/i49.jpg" alt=""></a> <a title="Permalink" href="http://www.techmeme.com/080503/p49#a080503p49"><img src="http://www.techmeme.com/img/pml.png" alt=""></a> <cite>Michael Arrington / <a href="http://www.techcrunch.com/">TechCrunch</a>:</cite>
<div><strong><a href="http://www.techcrunch.com/2008/05/03/yahoos-tough-week-ahead/">Yahoo's Tough Week Ahead</a></strong>   At around 4:30 California time today news broke that Microsoft has formally withdrawn its offer to acquire Yahoo (see Ballmer's email to Microsoft employees here).    Among other things, that ends a three month stock party where the market value of Yahoo jumped </div>
<p></p>
<div><span>Link Search:</span> <a href="http://www.ask.com/blogsearch?q=http://www.techcrunch.com/2008/05/03/yahoos-tough-week-ahead/">Ask</a>, <a href="http://www.technorati.com/search/http://www.techcrunch.com/2008/05/03/yahoos-tough-week-ahead/">Technorati</a>, <a href="http://www.sphere.com/search?q=sphereit:http://www.techcrunch.com/2008/05/03/yahoos-tough-week-ahead/">Sphere</a>, <a href="http://blogsearch.google.com/blogsearch?q=http://www.techcrunch.com/2008/05/03/yahoos-tough-week-ahead/">Google</a>, and <a href="http://blogs.icerocket.com/search?q=http://www.techcrunch.com/2008/05/03/yahoos-tough-week-ahead/">IceRocket</a></div>
<div style="display:block">
<div>
<div><a href="javascript:void(0);">+</a></div>
<p><span>Discussion:</span> <a href="http://blogs.guardian.co.uk/technology/2008/05/04/microsoft_walks_out_of_yahoo_deal_updated.html">Guardian Unlimited</a>, <a href="http://www.microsoft-watch.com/content/advertising_search/the_microsoftyahoo_blame_game.html">Microsoft Watch</a>, <a href="http://www.pbs.org/mediashift/2008/05/yahoomicrosoft_dramatakeover_t.html">MediaShift</a> and <a href="http://dotnetjunkies.com/WebLog/paul/archive/2008/05/04/467040.aspx">Paul Mooney</a></p>
</div>
</div>
<div>
<div>
<div style="display:block"><a href="javascript:void(0);"></a></div>
<p><span>Discussion:</span></p>
<div><cite>Jack Schofield / <a href="http://blogs.guardian.co.uk/technology/">Guardian Unlimited</a>:</cite> <a href="http://blogs.guardian.co.uk/technology/2008/05/04/microsoft_walks_out_of_yahoo_deal_updated.html">Microsoft walks out of Yahoo deal (updated)</a></div>
<div><cite>Joe Wilcox / <a href="http://www.microsoft-watch.com/">Microsoft Watch</a>:</cite> <a href="http://www.microsoft-watch.com/content/advertising_search/the_microsoftyahoo_blame_game.html">The Microsoft-Yahoo Blame Game</a></div>
<div><cite>Mark Glaser / <a href="http://www.pbs.org/mediashift/">MediaShift</a>:</cite> <a href="http://www.pbs.org/mediashift/2008/05/yahoomicrosoft_dramatakeover_t.html">Yahoo-Microsoft Drama::Takeover Tiff Best Thing to Happen to Yahoo</a></div>
<div><cite><a href="http://dotnetjunkies.com/WebLog/paul/default.aspx">Paul Mooney</a>:</cite> <a href="http://dotnetjunkies.com/WebLog/paul/archive/2008/05/04/467040.aspx">A YAHOO RUN, OR A RUN ON YHOO?</a></div>
</div>
</div>
</div>
<p><a name="a080503p42"></a></p>
<div><a title="Permalink" href="http://www.techmeme.com/080504/p1#a080504p1"><img src="http://www.techmeme.com/img/pml.png" alt=""></a> <cite>Yi-Wyn Yen / <a href="http://www.fortune.com/">Fortune</a>:</cite>
<div><strong><a href="http://money.cnn.com/2008/05/03/news/companies/google.msft.fortune/">Blame it on Google</a></strong>   Microsoft CEO Ballmer said the software giant decided to walk away from a bid because Yahoo would become undesirable' if it formed an alliance with Google.    (Fortune)  Google proved to be the final straw that broke Microsoft CEO Steve Ballmer's back.</div>
<p></p>
<div><span>Link Search:</span> <a href="http://www.ask.com/blogsearch?q=http://money.cnn.com/2008/05/03/news/companies/google.msft.fortune/">Ask</a>, <a href="http://www.technorati.com/search/http://money.cnn.com/2008/05/03/news/companies/google.msft.fortune/">Technorati</a>, <a href="http://www.sphere.com/search?q=sphereit:http://money.cnn.com/2008/05/03/news/companies/google.msft.fortune/">Sphere</a>, <a href="http://blogsearch.google.com/blogsearch?q=http://money.cnn.com/2008/05/03/news/companies/google.msft.fortune/">Google</a>, and <a href="http://blogs.icerocket.com/search?q=http://money.cnn.com/2008/05/03/news/companies/google.msft.fortune/">IceRocket</a></div>
<div style="display:block">
<div>
<div><a href="javascript:void(0);">+</a></div>
<p><span>Discussion:</span> <a href="http://www.macdailynews.com/index.php/weblog/comments/ballmers_folly_ends_microsoft_abandons_yahoo_bid_because_of_google/">MacDailyNews</a> and <a href="http://money.cnn.com/2008/05/03/technology/microsoft_yahoo/">CNNMoney.com</a></p>
</div>
</div>
<div>
<div>
<div style="display:block"><a href="javascript:void(0);"></a></div>
<p><span>Discussion:</span></p>
<div><cite><a href="http://www.macdailynews.com/">MacDailyNews</a>:</cite> <a href="http://www.macdailynews.com/index.php/weblog/comments/ballmers_folly_ends_microsoft_abandons_yahoo_bid_because_of_google/">Ballmer's Folly ends: Microsoft abandons Yahoo bid because of Google</a></div>
<div><cite>Mark M. Meinero / <a href="http://money.cnn.com/">CNNMoney.com</a>:</cite> <a href="http://money.cnn.com/2008/05/03/technology/microsoft_yahoo/">Microsoft withdraws bid for Yahoo</a></div>
</div>
</div>
</div>
<p><a name="a080503p33"></a></p>
<div><a title="Permalink" href="http://www.techmeme.com/080503/p38#a080503p38"><img src="http://www.techmeme.com/img/pml.png" alt=""></a> <cite><a href="http://paul.kedrosky.com/">Paul Kedrosky's Infectious Greed</a>:</cite>
<div><strong><a href="http://paul.kedrosky.com/archives/2008/05/03/analysis_of_the.html">Analysis of the Microsoft Decision, Plus Yahoo's Hari-Kari</a></strong>   Here is my first-cut analysis of what has happened here:   On the friendly front, Yahoo drew a hard line at $37 per share, well above the $33 that Microsoft now says it told Yahoo this week it was willing to go</div>
<p></p>
<div><span>Link Search:</span> <a href="http://www.ask.com/blogsearch?q=http://paul.kedrosky.com/archives/2008/05/03/analysis_of_the.html">Ask</a>, <a href="http://www.technorati.com/search/http://paul.kedrosky.com/archives/2008/05/03/analysis_of_the.html">Technorati</a>, <a href="http://www.sphere.com/search?q=sphereit:http://paul.kedrosky.com/archives/2008/05/03/analysis_of_the.html">Sphere</a>, <a href="http://blogsearch.google.com/blogsearch?q=http://paul.kedrosky.com/archives/2008/05/03/analysis_of_the.html">Google</a>, and <a href="http://blogs.icerocket.com/search?q=http://paul.kedrosky.com/archives/2008/05/03/analysis_of_the.html">IceRocket</a></div>
<div style="display:block">
<div>
<div><a href="javascript:void(0);">+</a></div>
<p><span>Discussion:</span> <a href="http://broadstuff.com/archives/905-Microhoo-no-more......html">broadstuff</a></p>
</div>
</div>
<div>
<div>
<div style="display:block"><a href="javascript:void(0);"></a></div>
<p><span>Discussion:</span></p>
<div><cite>Alan Patrick / <a href="http://broadstuff.com/">broadstuff</a>:</cite> <a href="http://broadstuff.com/archives/905-Microhoo-no-more......html">MICROHOO NO MORE..  So the deal is off - though whether  </a></div>
</div>
</div>
</div>
<p><a name="a080503p39"></a> <a name="a080503p29"></a></p>
<div><a title="Permalink" href="http://www.techmeme.com/080503/p42#a080503p42"><img src="http://www.techmeme.com/img/pml.png" alt=""></a> <cite>Michael Arrington / <a href="http://www.techcrunch.com/">TechCrunch</a>:</cite>
<div><strong><a href="http://www.techcrunch.com/2008/05/03/email-from-steve-ballmer-to-all-microsoft-employees/">Email From Steve Ballmer To All Microsoft Employees</a></strong>   The following email was sent to all Microsoft employees from CEO Steve Ballmer at 5:17 pm PDT (see Breaking: Microsoft Withdraws Yahoo Bid; Walks Away From Deal):    To: Microsoft - All Employees (QBDG)</div>
<p></p>
<div><span>Link Search:</span> <a href="http://www.ask.com/blogsearch?q=http://www.techcrunch.com/2008/05/03/email-from-steve-ballmer-to-all-microsoft-employees/">Ask</a>, <a href="http://www.technorati.com/search/http://www.techcrunch.com/2008/05/03/email-from-steve-ballmer-to-all-microsoft-employees/">Technorati</a>, <a href="http://www.sphere.com/search?q=sphereit:http://www.techcrunch.com/2008/05/03/email-from-steve-ballmer-to-all-microsoft-employees/">Sphere</a>, <a href="http://blogsearch.google.com/blogsearch?q=http://www.techcrunch.com/2008/05/03/email-from-steve-ballmer-to-all-microsoft-employees/">Google</a>, and <a href="http://blogs.icerocket.com/search?q=http://www.techcrunch.com/2008/05/03/email-from-steve-ballmer-to-all-microsoft-employees/">IceRocket</a></div>
<div style="display:block">
<div>
<div><a href="javascript:void(0);">+</a></div>
<p><span>Discussion:</span> <a href="http://microsoft.blognewschannel.com/archives/2008/05/04/microsoft-drops-plans-to-buy-yahoo/">InsideMicrosoft</a>, <a href="http://www.webpronews.com/topnews/2008/05/04/microsoft-is-done-pursuing-yahoo">WebProNews</a>, <a href="http://venturebeat.com/2008/05/03/microsoft-now-has-50-billion-burning-a-hole-in-its-pocket/">VentureBeat</a> and <a href="http://www.marketingpilgrim.com/2008/05/steve-ballmers-email-to-microsoft-employees.html">Andy Beal's Marketing Pilgrim</a></p>
</div>
</div>
<div>
<div>
<div style="display:block"><a href="javascript:void(0);"></a></div>
<p><span>Discussion:</span></p>
<div><cite>Nathan Weinberg / <a href="http://microsoft.blognewschannel.com/">InsideMicrosoft</a>:</cite> <a href="http://microsoft.blognewschannel.com/archives/2008/05/04/microsoft-drops-plans-to-buy-yahoo/">Microsoft Drops Plans To Buy Yahoo</a></div>
<div><cite>Nathan Weinberg / <a href="http://www.webpronews.com/">WebProNews</a>:</cite> <a href="http://www.webpronews.com/topnews/2008/05/04/microsoft-is-done-pursuing-yahoo">Microsoft Is Done Pursuing Yahoo!</a></div>
<div><cite>MG Siegler / <a href="http://venturebeat.com/">VentureBeat</a>:</cite> <a href="http://venturebeat.com/2008/05/03/microsoft-now-has-50-billion-burning-a-hole-in-its-pocket/">Microsoft now has $50 billion burning a hole in its pocket</a></div>
<div><cite>David Snyder / <a href="http://www.marketingpilgrim.com/">Andy Beal's Marketing Pilgrim</a>:</cite> <a href="http://www.marketingpilgrim.com/2008/05/steve-ballmers-email-to-microsoft-employees.html">Steve Ballmer's Email to Microsoft Employees</a></div>
</div>
</div>
</div>
<p><a name="a080503p35"></a></p>
<div><a href="http://www.techcrunch.com/2008/05/03/breaking-microsoft-walks/"><img src="http://www.techmeme.com/080503/i33.jpg" alt=""></a> <a title="Permalink" href="http://www.techmeme.com/080503/p33#a080503p33"><img src="http://www.techmeme.com/img/pml.png" alt=""></a> <cite>Michael Arrington / <a href="http://www.techcrunch.com/">TechCrunch</a>:</cite><br>
<strong><a href="http://www.techcrunch.com/2008/05/03/breaking-microsoft-walks/">Breaking: Microsoft Withdraws Yahoo Bid; Walks Away From Deal (Updated)</a></strong> 
<div><span>Link Search:</span> <a href="http://www.ask.com/blogsearch?q=http://www.techcrunch.com/2008/05/03/breaking-microsoft-walks/">Ask</a>, <a href="http://www.technorati.com/search/http://www.techcrunch.com/2008/05/03/breaking-microsoft-walks/">Technorati</a>, <a href="http://www.sphere.com/search?q=sphereit:http://www.techcrunch.com/2008/05/03/breaking-microsoft-walks/">Sphere</a>, <a href="http://blogsearch.google.com/blogsearch?q=http://www.techcrunch.com/2008/05/03/breaking-microsoft-walks/">Google</a>, and <a href="http://blogs.icerocket.com/search?q=http://www.techcrunch.com/2008/05/03/breaking-microsoft-walks/">IceRocket</a></div>
<div style="display:block">
<div>
<div><a href="javascript:void(0);">+</a></div>
<p><span>Discussion:</span> <a href="http://kara.allthingsd.com/20080504/boomtown-decodes-microsofts-steve-ballmers-letter-to-yahoo-the-kiss-off-edition/">BoomTown</a>, <a href="http://www.news.com/8301-13860_3-9935169-56.html">Beyond Binary</a>, <a href="http://news.yahoo.com/s/nm/20080504/ts_nm/microsoft_yahoo_dc">Reuters</a>, <a href="http://thenextweb.org/2008/05/04/microsoft-walks-away-from-yahoo-deal/">The Next Web</a>, <a href="http://www.bbc.co.uk/blogs/technology/2008/05/microsoft_v_yahoo_postmatch_an.html">BBC NEWS</a>, <a href="http://www.news.com/8301-10787_3-9935123-60.html">Coop's Corner</a>, <a href="http://voices.allthingsd.com/20080504/microsofts-move-is-it-just-a-feint/">Voices</a>, <a href="http://www.liveside.net/blogs/opinion/archive/2008/05/04/no-msft-yhoo-deal-now-what.aspx">LiveSide</a>, <a href="http://www.electronista.com/articles/08/05/03/microsoft.nixes.yahoo.bid/">Electronista</a>, <a href="http://valleywag.com/386896/is-ballmer-on-his-way-out-++-and-if-so-whos-the-next-ceo">Valleywag</a>, <a href="http://www.mathewingram.com/work/2008/05/03/yhoo-and-msft-jerry-yang-should-be-fired/">mathewingram.com/work</a>, <a href="http://blogs.wsj.com/biztech/2008/05/03/the-most-famous-non-deal-in-tech-history/">Business Technology</a>, <a href="http://sarahlacy.typepad.com/sarahlacy/2008/05/or-maybe-i-wont.html">SarahLacy.com</a>, <a href="http://500hats.typepad.com/500blogs/2008/05/memo-to-jerry-p.html">Master of 500 Hats</a>, <a href="http://thomashawk.com/2008/05/remember-when-thomas-hawk-said-if-he.html">Thomas Hawk's Digital </a>, <a href="http://www.searchenginejournal.com/microsoft-walks-off-the-deal-finally/6839/">Search Engine Journal</a> and <a href="http://www.winextra.com/2008/05/03/please-tell-me-its-so/">WinExtra</a></p>
</div>
</div>
<div>
<div>
<div style="display:block"><a href="javascript:void(0);"></a></div>
<p><span>Discussion:</span></p>
<div><cite>Kara Swisher / <a href="http://kara.allthingsd.com/">BoomTown</a>:</cite> <a href="http://kara.allthingsd.com/20080504/boomtown-decodes-microsofts-steve-ballmers-letter-to-yahoo-the-kiss-off-edition/">BoomTown Decodes Microsoft's Steve Ballmer's Letter to Yahoo (The Kiss-Off Edition)</a></div>
<div><cite>Ina Fried / <a href="http://www.news.com/beyond-binary/">Beyond Binary</a>:</cite> <a href="http://www.news.com/8301-13860_3-9935169-56.html">Ballmer's e-mail to staff on Yahoo</a></div>
<div><cite><a href="http://news.yahoo.com/i/578">Reuters</a>:</cite> <a href="http://news.yahoo.com/s/nm/20080504/ts_nm/microsoft_yahoo_dc">Microsoft says it withdraws offer for Yahoo</a></div>
<div><cite>Boris Veldhuijzen van Zanten / <a href="http://thenextweb.org/">The Next Web</a>:</cite> <a href="http://thenextweb.org/2008/05/04/microsoft-walks-away-from-yahoo-deal/">Microsoft walks away from Yahoo deal</a></div>
<div><cite>Rory Cellan-Jones / <a href="http://www.bbc.co.uk/blogs/technology/">BBC NEWS | dot.life</a>:</cite> <a href="http://www.bbc.co.uk/blogs/technology/2008/05/microsoft_v_yahoo_postmatch_an.html">Microsoft v Yahoo - post-match analysis</a></div>
<div><cite>Charles Cooper / <a href="http://www.news.com/coops-corner/">Coop's Corner</a>:</cite> <a href="http://www.news.com/8301-10787_3-9935123-60.html">Post-Microhoo: Winners and losers</a></div>
<div><cite>Ina Fried / <a href="http://voices.allthingsd.com/">Voices</a>:</cite> <a href="http://voices.allthingsd.com/20080504/microsofts-move-is-it-just-a-feint/">Microsoft's Move: Is It Just a Feint?</a></div>
<div><cite>Kip Kniskern / <a href="http://www.liveside.net/blogs/">LiveSide</a>:</cite> <a href="http://www.liveside.net/blogs/opinion/archive/2008/05/04/no-msft-yhoo-deal-now-what.aspx">No MSFT-YHOO deal; now what?    Microsoft just walked away  </a></div>
<div><cite><a href="http://www.electronista.com/">Electronista</a>:</cite> <a href="http://www.electronista.com/articles/08/05/03/microsoft.nixes.yahoo.bid/">Microsoft backs out of Yahoo bid</a></div>
<div><cite>Owen Thomas / <a href="http://valleywag.com/">Valleywag</a>:</cite> <a href="http://valleywag.com/386896/is-ballmer-on-his-way-out-++-and-if-so-whos-the-next-ceo">Is Ballmer on his way out  and if so, who's the next CEO?</a></div>
<div><cite>Mathew / <a href="http://www.mathewingram.com/work">mathewingram.com/work</a>:</cite> <a href="http://www.mathewingram.com/work/2008/05/03/yhoo-and-msft-jerry-yang-should-be-fired/">YHOO and MSFT: Jerry Yang should be fired</a></div>
<div><cite>Ben Worthen / <a href="http://blogs.wsj.com/biztech">Business Technology</a>:</cite> <a href="http://blogs.wsj.com/biztech/2008/05/03/the-most-famous-non-deal-in-tech-history/">The Most Famous Non-Deal in Tech History</a></div>
<div><cite><a href="http://sarahlacy.typepad.com/sarahlacy/">Sarah Lacy</a>:</cite> <a href="http://sarahlacy.typepad.com/sarahlacy/2008/05/or-maybe-i-wont.html">Or Maybe I Won't Be Working for the Evil Empire</a></div>
<div><cite>Dave McClure / <a href="http://500hats.typepad.com/500blogs/">Master of 500 Hats</a>:</cite> <a href="http://500hats.typepad.com/500blogs/2008/05/memo-to-jerry-p.html">MicroHooFreude!  (Memo to Jerry: Prepare to be Sued)</a></div>
<div><cite>Thomas Hawk / <a href="http://thomashawk.com/">Thomas Hawk's Digital Connection</a>:</cite> <a href="http://thomashawk.com/2008/05/remember-when-thomas-hawk-said-if-he.html">Remember When Thomas Hawk Said If He Were Microsoft He'd Lower His Bid for Yahoo?</a></div>
<div><cite>Arnold Zafra / <a href="http://www.searchenginejournal.com/">Search Engine Journal</a>:</cite> <a href="http://www.searchenginejournal.com/microsoft-walks-off-the-deal-finally/6839/">Microsoft Cancels the Yahoo Acquisition Deal, Finally!</a></div>
<div><cite>Steven Hodson / <a href="http://www.winextra.com/">WinExtra</a>:</cite> <a href="http://www.winextra.com/2008/05/03/please-tell-me-its-so/">Please tell me it's so</a></div>
</div>
</div>
</div>
<p><a name="a080504p4"></a></p>
<div><a title="Permalink" href="http://www.techmeme.com/080503/p39#a080503p39"><img src="http://www.techmeme.com/img/pml.png" alt=""></a> <cite><a href="http://www.nytimes.com/pages/technology/">New York Times</a>:</cite><br>
<strong><a href="http://www.nytimes.com/2008/05/04/technology/04soft.html?partner=rssnyt&amp;emc=rss">Microsoft Withdraws Its Bid for Yahoo</a></strong> 
<div><span>Link Search:</span> <a href="http://www.ask.com/blogsearch?q=http://www.nytimes.com/2008/05/04/technology/04soft.html">Ask</a>, <a href="http://www.technorati.com/search/http://www.nytimes.com/2008/05/04/technology/04soft.html">Technorati</a>, <a href="http://www.sphere.com/search?q=sphereit:http://www.nytimes.com/2008/05/04/technology/04soft.html">Sphere</a>, <a href="http://blogsearch.google.com/blogsearch?q=http://www.nytimes.com/2008/05/04/technology/04soft.html">Google</a>, and <a href="http://blogs.icerocket.com/search?q=http://www.nytimes.com/2008/05/04/technology/04soft.html">IceRocket</a></div>
<div style="display:block">
<div>
<div><a href="javascript:void(0);">+</a></div>
<p><span>Discussion:</span> <a href="http://www.news.com/8301-10784_3-9935209-7.html">CNET News.com</a>, <a href="http://bigpicture.typepad.com/comments/2008/05/ballmer-yang-ag.html">The Big Picture</a>, <a href="http://dealarchitect.typepad.com/deal_architect/2008/05/back-to-custome.html">deal architect</a>, <a href="http://news.slashdot.org/news/08/05/04/0045248.shtml">Slashdot</a>, <a href="http://watchmojo.com/web/blog/index.php/2008/05/03/should-investors-sue-or-back-yang/">HipMojo.com</a> and <a href="http://digg.com/tech_news/Microsoft_Withdraws_Its_Bid_for_Yahoo_2">Digg</a></p>
</div>
</div>
<div>
<div>
<div style="display:block"><a href="javascript:void(0);"></a></div>
<p><span>Discussion:</span></p>
<div><cite>Stephen Shankland / <a href="http://www.news.com/">CNET News.com</a>:</cite> <a href="http://www.news.com/8301-10784_3-9935209-7.html">Yahoo: Microsoft's price just wasn't right</a></div>
<div><cite>Ritholtz / <a href="http://bigpicture.typepad.com/comments/">The Big Picture</a>:</cite> <a href="http://bigpicture.typepad.com/comments/2008/05/ballmer-yang-ag.html">Ballmer, Yang Agree to See Other People</a></div>
<div><cite><a href="http://dealarchitect.typepad.com/deal_architect/">deal architect</a>:</cite> <a href="http://dealarchitect.typepad.com/deal_architect/2008/05/back-to-custome.html">Back to customer focus    So the Microsoft/Yahoo! deal appears finally off.</a></div>
<div><cite>Timothy / <a href="http://slashdot.org/">Slashdot</a>:</cite> <a href="http://news.slashdot.org/news/08/05/04/0045248.shtml">Microsoft Withdraws Yahoo Takeover Offer</a></div>
<div><cite>Ashkan Karbasfrooshan / <a href="http://watchmojo.com/web/blog">HipMojo.com</a>:</cite> <a href="http://watchmojo.com/web/blog/index.php/2008/05/03/should-investors-sue-or-back-yang/">Should Investors Sue or Back Yang?</a></div>
<div><cite><a href="http://digg.com/">Digg</a>:</cite> <a href="http://digg.com/tech_news/Microsoft_Withdraws_Its_Bid_for_Yahoo_2">Microsoft Withdraws Its Bid for Yahoo</a></div>
</div>
</div>
</div>
<p><a name="a080503p31"></a></p>
<div><a title="Permalink" href="http://www.techmeme.com/080503/p29#a080503p29"><img src="http://www.techmeme.com/img/pml.png" alt=""></a> <cite>Ina Fried / <a href="http://www.news.com/beyond-binary/">Beyond Binary</a>:</cite><br>
<strong><a href="http://www.news.com/8301-13860_3-9935099-56.html">Microsoft pulls its Yahoo offer</a></strong> 
<div><span>Link Search:</span> <a href="http://www.ask.com/blogsearch?q=http://www.news.com/8301-13860_3-9935099-56.html">Ask</a>, <a href="http://www.technorati.com/search/http://www.news.com/8301-13860_3-9935099-56.html">Technorati</a>, <a href="http://www.sphere.com/search?q=sphereit:http://www.news.com/8301-13860_3-9935099-56.html">Sphere</a>, <a href="http://blogsearch.google.com/blogsearch?q=http://www.news.com/8301-13860_3-9935099-56.html">Google</a>, and <a href="http://blogs.icerocket.com/search?q=http://www.news.com/8301-13860_3-9935099-56.html">IceRocket</a></div>
<div style="display:block">
<div>
<div><a href="javascript:void(0);">+</a></div>
<p><span>Discussion:</span> <a href="http://www.dslreports.com/shownews/Microsoft-Rescinds-Yahoo-Offer-94128">DSLreports</a>, <a href="http://www.forbes.com/2008/05/03/microsoft-yahoo-deal-tech-enter-cx_ec_0503yahoo.html">Forbes</a>, <a href="http://www.news.com/8301-10784_3-9935208-7.html">CNET News.com</a>, <a href="http://www.businessweek.com/technology/content/may2008/tc2008053_759938.htm">Business Week</a>, <a href="http://www.cincomsmalltalk.com/blog/blogView?showComments=true&amp;printTitle=Reality_1,_Scoble_0&amp;entry=3387315126">Smalltalk Tidbits </a>, <a href="http://scobleizer.com/2008/05/03/how-will-yahoo-heal-after-microsoft-walked-away/">Scobleizer</a>, <a href="http://blogs.pcworld.com/techlog/archives/006885.html">Techlog</a>, <a href="http://www.marketingpilgrim.com/2008/05/microsoft-retreats-or-withdrawls-depends-on-your-view.html">Andy Beal's Marketing Pilgrim</a>, <a href="http://www.informationweek.com/news/windows/operatingsystems/showArticle.jhtml?articleID=207500797">InformationWeek</a>, <a href="http://watchmojo.com/web/blog/index.php/2008/05/03/latest-chess-move-msft-withdraws-offer/">HipMojo.com</a>, <a href="http://blog.searchenginewatch.com/blog/080503-215913">Search Engine Watch Blog</a>, <a href="http://www.paidcontent.org/entry/419-microsoft-yahoo-yang/">paidContent.org</a>, <a href="http://www.centernetworks.com/microsoft-yahoo-aol">CenterNetworks</a>, <a href="http://searchengineland.com/080503-200422.php">Search Engine Land</a>, <a href="http://battellemedia.com/archives/004417.php">John Battelle's Searchblog</a>, <a href="http://www.webguild.org/2008/05/microsoft-walks-away-from-yahoo.php">WebGuild</a>, <a href="http://www.macrumors.com/2008/05/03/microsoft-walking-away-from-yahoo-acquisition/">MacRumors</a>, <a href="http://www.engadget.com/2008/05/03/microsoft-pulls-bid-for-yahoo/">Engadget</a>, <a href="http://venturebeat.com/2008/05/03/yahoo-breaks-the-wrist-microsoft-walks-away/">VentureBeat</a> and <a href="http://digitaldaily.allthingsd.com/20080503/ballmer-to-yang-dear-jerry-drop-dead/">Digital Daily</a></p>
</div>
</div>
<div>
<div>
<div style="display:block"><a href="javascript:void(0);"></a></div>
<p><span>Discussion:</span></p>
<div><cite>KathrynV / <a href="http://www.dslreports.com/">DSLreports</a>:</cite> <a href="http://www.dslreports.com/shownews/Microsoft-Rescinds-Yahoo-Offer-94128">Microsoft Rescinds Yahoo Offer - No agreement could be reached in talks yesterday</a></div>
<div><cite>Elizabeth Corcoran / <a href="http://www.forbes.com/">Forbes</a>:</cite> <a href="http://www.forbes.com/2008/05/03/microsoft-yahoo-deal-tech-enter-cx_ec_0503yahoo.html">Forget It, Ballmer Says To Yahoo!</a></div>
<div><cite>Stephen Shankland / <a href="http://www.news.com/">CNET News.com</a>:</cite> <a href="http://www.news.com/8301-10784_3-9935208-7.html">Is Google ad deal really Yahoo's best option?</a></div>
<div><cite>Robert Hof / <a href="http://www.businessweek.com/technology/">Business Week</a>:</cite> <a href="http://www.businessweek.com/technology/content/may2008/tc2008053_759938.htm">Microsoft Drops Bid for Yahoo</a></div>
<div><cite>James A. Robertson / <a href="http://www.cincomsmalltalk.com/blog/blogView">Smalltalk Tidbits, Industry Rants</a>:</cite> <a href="http://www.cincomsmalltalk.com/blog/blogView?showComments=true&amp;printTitle=Reality_1,_Scoble_0&amp;entry=3387315126">Reality 1, Scoble 0</a></div>
<div><cite>Robert Scoble / <a href="http://scobleizer.com/">Scobleizer</a>:</cite> <a href="http://scobleizer.com/2008/05/03/how-will-yahoo-heal-after-microsoft-walked-away/">How will Yahoo heal after Microsoft walked away?</a></div>
<div><cite>Harry McCracken / <a href="http://blogs.pcworld.com/techlog/">Techlog</a>:</cite> <a href="http://blogs.pcworld.com/techlog/archives/006885.html">No MicroHoo?  Hallelujah!</a></div>
<div><cite>David Snyder / <a href="http://www.marketingpilgrim.com/">Andy Beal's Marketing Pilgrim</a>:</cite> <a href="http://www.marketingpilgrim.com/2008/05/microsoft-retreats-or-withdrawls-depends-on-your-view.html">Microsoft Retreats or Withdrawls, Depends on Your View</a></div>
<div><cite>Alexander Wolfe / <a href="http://www.informationweek.com/">InformationWeek</a>:</cite> <a href="http://www.informationweek.com/news/windows/operatingsystems/showArticle.jhtml?articleID=207500797">Microsoft Yanks Yahoo Bid</a></div>
<div><cite>Ashkan Karbasfrooshan / <a href="http://watchmojo.com/web/blog">HipMojo.com</a>:</cite> <a href="http://watchmojo.com/web/blog/index.php/2008/05/03/latest-chess-move-msft-withdraws-offer/">Latest Chess Move: MSFT Withdraws Offer</a></div>
<div><cite>Kevin Heisler / <a href="http://blog.searchenginewatch.com/blog/">Search Engine Watch Blog</a>:</cite> <a href="http://blog.searchenginewatch.com/blog/080503-215913">Breaking: Microsoft Withdraws Yahoo Offer; Yahoo Responds</a></div>
<div><cite>Staci D. Kramer / <a href="http://www.paidcontent.org/">paidContent.org</a>:</cite> <a href="http://www.paidcontent.org/entry/419-microsoft-yahoo-yang/">Microsoft-Yahoo: Yang's Response: With Distraction Behind Us  </a></div>
<div><cite>Allen Stern / <a href="http://www.centernetworks.com/">CenterNetworks</a>:</cite> <a href="http://www.centernetworks.com/microsoft-yahoo-aol">What's Next for Yahoo?  Merging With AOL Still My Pick</a></div>
<div><cite>Greg Sterling / <a href="http://searchengineland.com/">Search Engine Land</a>:</cite> <a href="http://searchengineland.com/080503-200422.php">Microsoft Yanks Its Offer For Yahoo</a></div>
<div><cite>John Battelle / <a href="http://battellemedia.com/">John Battelle's Searchblog</a>:</cite> <a href="http://battellemedia.com/archives/004417.php">MICROSOFT BAILS, YAHOO'S GOOGLE THREAT APPEARS TO HAVE WORKED</a></div>
<div><cite>Joseph Hunkins / <a href="http://www.webguild.org/index.php">WebGuild</a>:</cite> <a href="http://www.webguild.org/2008/05/microsoft-walks-away-from-yahoo.php">Microsoft Walks Away From Yahoo</a></div>
<div><cite>Arn / <a href="http://www.macrumors.com/">MacRumors</a>:</cite> <a href="http://www.macrumors.com/2008/05/03/microsoft-walking-away-from-yahoo-acquisition/">Microsoft Walking Away from Yahoo Acquisition</a></div>
<div><cite>Ryan Block / <a href="http://www.engadget.com/">Engadget</a>:</cite> <a href="http://www.engadget.com/2008/05/03/microsoft-pulls-bid-for-yahoo/">Microsoft pulls bid for Yahoo!, Microhoo will never be</a></div>
<div><cite>MG Siegler / <a href="http://venturebeat.com/">VentureBeat</a>:</cite> <a href="http://venturebeat.com/2008/05/03/yahoo-breaks-the-wrist-microsoft-walks-away/">Yahoo breaks the wrist, Microsoft walks away</a></div>
<div><cite>John Paczkowski / <a href="http://digitaldaily.allthingsd.com/">Digital Daily</a>:</cite> <a href="http://digitaldaily.allthingsd.com/20080503/ballmer-to-yang-dear-jerry-drop-dead/">Ballmer to Yang: Dear Jerry, Drop Dead</a></div>
</div>
</div>
</div>
<div><a title="Permalink" href="http://www.techmeme.com/080503/p35#a080503p35"><img src="http://www.techmeme.com/img/pml.png" alt=""></a> <cite>Ina Fried / <a href="http://www.news.com/beyond-binary/">Beyond Binary</a>:</cite><br>
<strong><a href="http://www.news.com/8301-13860_3-9935100-56.html">Microsoft says proxy battle not worth it</a></strong> 
<div><span>Link Search:</span> <a href="http://www.ask.com/blogsearch?q=http://www.news.com/8301-13860_3-9935100-56.html">Ask</a>, <a href="http://www.technorati.com/search/http://www.news.com/8301-13860_3-9935100-56.html">Technorati</a>, <a href="http://www.sphere.com/search?q=sphereit:http://www.news.com/8301-13860_3-9935100-56.html">Sphere</a>, <a href="http://blogsearch.google.com/blogsearch?q=http://www.news.com/8301-13860_3-9935100-56.html">Google</a>, and <a href="http://blogs.icerocket.com/search?q=http://www.news.com/8301-13860_3-9935100-56.html">IceRocket</a></div>
<div style="display:block">
<div>
<div><a href="javascript:void(0);">+</a></div>
<p><span>Discussion:</span> <a href="http://www.bloggingstocks.com/2008/05/03/its-off-microsoft-withdraws-its-offer-for-yahoo-for-now/">BloggingStocks</a></p>
</div>
</div>
<div>
<div>
<div style="display:block"><a href="javascript:void(0);"></a></div>
<p><span>Discussion:</span></p>
<div><cite>Peter Cohan / <a href="http://www.bloggingstocks.com/">BloggingStocks</a>:</cite> <a href="http://www.bloggingstocks.com/2008/05/03/its-off-microsoft-withdraws-its-offer-for-yahoo-for-now/">It's off. Microsoft withdraws its offer for Yahoo  for now</a></div>
</div>
</div>
</div>
<div><a title="Permalink" href="http://www.techmeme.com/080504/p4#a080504p4"><img src="http://www.techmeme.com/img/pml.png" alt=""></a> <cite><a href="http://news.bbc.co.uk/">BBC</a>:</cite><br>
<strong><a href="http://news.bbc.co.uk/1/hi/business/7382572.stm">Microsoft walks away from Yahoo</a></strong> 
<div><span>Link Search:</span> <a href="http://www.ask.com/blogsearch?q=http://news.bbc.co.uk/1/hi/business/7382572.stm">Ask</a>, <a href="http://www.technorati.com/search/http://news.bbc.co.uk/1/hi/business/7382572.stm">Technorati</a>, <a href="http://www.sphere.com/search?q=sphereit:http://news.bbc.co.uk/1/hi/business/7382572.stm">Sphere</a>, <a href="http://blogsearch.google.com/blogsearch?q=http://news.bbc.co.uk/1/hi/business/7382572.stm">Google</a>, and <a href="http://blogs.icerocket.com/search?q=http://news.bbc.co.uk/1/hi/business/7382572.stm">IceRocket</a></div>
<div style="display:block">
<div>
<div><a href="javascript:void(0);">+</a></div>
<p><span>Discussion:</span> <a href="http://gizmodo.com/386912/microsoft-retires-yahoo-offer-wont-try-hostile-takeover">Gizmodo</a> and <a href="http://tech.blorge.com/Structure:%20/2008/05/04/no-microhoo-microsoft-terminates-bid-on-yahoo/">TECH.BLORGE.com</a></p>
</div>
</div>
<div>
<div>
<div style="display:block"><a href="javascript:void(0);"></a></div>
<p><span>Discussion:</span></p>
<div><cite>Jesus Diaz / <a href="http://gizmodo.com/">Gizmodo</a>:</cite> <a href="http://gizmodo.com/386912/microsoft-retires-yahoo-offer-wont-try-hostile-takeover">Microsoft Retires Yahoo Offer, Won't Try Hostile Takeover</a></div>
<div><cite>Erna Mahyuni / <a href="http://tech.blorge.com/">TECH.BLORGE.com</a>:</cite> <a href="http://tech.blorge.com/Structure:%20/2008/05/04/no-microhoo-microsoft-terminates-bid-on-yahoo/">No Microhoo - Microsoft terminates bid on Yahoo</a></div>
</div>
</div>
</div>
<p><a title="Permalink" href="http://www.techmeme.com/080503/p31#a080503p31"><img src="http://www.techmeme.com/img/pml.png" alt=""></a> <cite>Kara Swisher / <a href="http://kara.allthingsd.com/">BoomTo<br><br>Tags: <a href="http://www.croncast.com/keyg/microsoft">microsoft</a> <a href="http://www.technorati.com/tag/microsoft"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/microsoft.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/yahoo">yahoo</a> <a href="http://www.technorati.com/tag/yahoo"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/yahoo.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/news">news</a> <a href="http://www.technorati.com/tag/news"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/news.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/google">google</a> <a href="http://www.technorati.com/tag/google"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/google.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/discussion">discussion</a> <a href="http://www.technorati.com/tag/discussion"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/discussion.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></content:encoded>

         <pubDate>Mon, 05 May 2008 04:21:15 -0400</pubDate>         <guid isPermaLink="false">tag:croncast.com,3967</guid>

			<itunes:subtitle/>
      </item>
      <item>
         <title>Federal Court Upholds YouTube Terms of Use</title>
         <link>http://feeds.feedburner.com/~r/E-commerceLaw/~3/274121575/federal-court-i.html</link>
		 <category>Shared item</category>
			<description><![CDATA[<div><p>On April 15, 2008, the United States District Court for the Western District of Washington dismissed a lawsuit filed by a <a href="http://www.youtube.com/">YouTube</a> user in the wrong venue.  In <u>Bowen v. YouTube, Inc.</u>, 2008 WL 1757578 (W.D. Wash. 2008), the Court enforced <a href="http://www.youtube.com/t/terms">YouTube's Terms of Use</a> which require that all suits arising from YouTube&#39;s website be brought in San Mateo County, California.  In support of the ruling, the Court noted that</p><blockquote dir="ltr"><p>[while] new commerce on the Internet has exposed courts to many new situations, it has not fundamentally changed the principles of contract . . . when a benefit is offered subject to stated conditions and the offeree makes a decision to take the benefit with knowledge of the terms of the offer, the taking constitutes an acceptance of the terms, which accordingly become binding on the offeree.</p></blockquote><p><u>Id.</u> at *2 (quoting <u>Register.com, Inc. v. Verio, Inc.</u>, 356 F.3d 393, 403 (2d Cir. 2004).</p>

<p>This case further demonstrates the importance of including an <a href="http://ecommercelaw.typepad.com/ecommerce_law/2006/05/common_issues_f_1.html">enforceable choice of law provision in a website's terms of use</a>.</p></div>
<img src="http://feeds.feedburner.com/~r/E-commerceLaw/~4/274121575" height="1" width="1"><br><br>Tags: <a href="http://www.croncast.com/keyg/terms">terms</a> <a href="http://www.technorati.com/tag/terms"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/terms.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/youtube">youtube</a> <a href="http://www.technorati.com/tag/youtube"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/youtube.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/court">court</a> <a href="http://www.technorati.com/tag/court"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/court.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/inc">inc</a> <a href="http://www.technorati.com/tag/inc"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/inc.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/offeree">offeree</a> <a href="http://www.technorati.com/tag/offeree"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/offeree.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></description><content:encoded><![CDATA[<div><p>On April 15, 2008, the United States District Court for the Western District of Washington dismissed a lawsuit filed by a <a href="http://www.youtube.com/">YouTube</a> user in the wrong venue.  In <u>Bowen v. YouTube, Inc.</u>, 2008 WL 1757578 (W.D. Wash. 2008), the Court enforced <a href="http://www.youtube.com/t/terms">YouTube's Terms of Use</a> which require that all suits arising from YouTube&#39;s website be brought in San Mateo County, California.  In support of the ruling, the Court noted that</p><blockquote dir="ltr"><p>[while] new commerce on the Internet has exposed courts to many new situations, it has not fundamentally changed the principles of contract . . . when a benefit is offered subject to stated conditions and the offeree makes a decision to take the benefit with knowledge of the terms of the offer, the taking constitutes an acceptance of the terms, which accordingly become binding on the offeree.</p></blockquote><p><u>Id.</u> at *2 (quoting <u>Register.com, Inc. v. Verio, Inc.</u>, 356 F.3d 393, 403 (2d Cir. 2004).</p>

<p>This case further demonstrates the importance of including an <a href="http://ecommercelaw.typepad.com/ecommerce_law/2006/05/common_issues_f_1.html">enforceable choice of law provision in a website's terms of use</a>.</p></div>
<img src="http://feeds.feedburner.com/~r/E-commerceLaw/~4/274121575" height="1" width="1"><br><br>Tags: <a href="http://www.croncast.com/keyg/terms">terms</a> <a href="http://www.technorati.com/tag/terms"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/terms.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/youtube">youtube</a> <a href="http://www.technorati.com/tag/youtube"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/youtube.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/court">court</a> <a href="http://www.technorati.com/tag/court"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/court.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/inc">inc</a> <a href="http://www.technorati.com/tag/inc"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/inc.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/offeree">offeree</a> <a href="http://www.technorati.com/tag/offeree"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/offeree.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></content:encoded>

         <pubDate>Sun, 20 Apr 2008 15:31:03 -0400</pubDate>         <guid isPermaLink="false">tag:croncast.com,3868</guid>

			<itunes:subtitle/>
      </item>
      <item>
         <title>Braaaaiiinsss... Beeeerrr...</title>
         <link>http://feeds.feedburner.com/~r/gapersblock/merge/~3/266461516/</link>
		 <category>Shared item</category>
			<description><![CDATA[That's right, <a href="http://chicagozombiepubcrawl.com/">Zombie Pub Crawl</a>. April 26 in Andersonville. <a href="http://chicagozombiepubcrawl.com/register.html">$10 in advance</a>. Be there or be eaten.
      
    
<p><a href="http://feeds.feedburner.com/~a/gapersblock/merge?a=kSVnol"><img src="http://feeds.feedburner.com/~a/gapersblock/merge?i=kSVnol" border="0"></a></p><img src="http://feeds.feedburner.com/~r/gapersblock/merge/~4/266461516" height="1" width="1"><br><br>Tags: <a href="http://www.croncast.com/keyg/andersonville">andersonville</a> <a href="http://www.technorati.com/tag/andersonville"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/andersonville.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/advance">advance</a> <a href="http://www.technorati.com/tag/advance"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/advance.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/eaten">eaten</a> <a href="http://www.technorati.com/tag/eaten"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/eaten.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/april">april</a> <a href="http://www.technorati.com/tag/april"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/april.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/crawl">crawl</a> <a href="http://www.technorati.com/tag/crawl"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/crawl.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></description><content:encoded><![CDATA[That's right, <a href="http://chicagozombiepubcrawl.com/">Zombie Pub Crawl</a>. April 26 in Andersonville. <a href="http://chicagozombiepubcrawl.com/register.html">$10 in advance</a>. Be there or be eaten.
      
    
<p><a href="http://feeds.feedburner.com/~a/gapersblock/merge?a=kSVnol"><img src="http://feeds.feedburner.com/~a/gapersblock/merge?i=kSVnol" border="0"></a></p><img src="http://feeds.feedburner.com/~r/gapersblock/merge/~4/266461516" height="1" width="1"><br><br>Tags: <a href="http://www.croncast.com/keyg/andersonville">andersonville</a> <a href="http://www.technorati.com/tag/andersonville"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/andersonville.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/advance">advance</a> <a href="http://www.technorati.com/tag/advance"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/advance.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/eaten">eaten</a> <a href="http://www.technorati.com/tag/eaten"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/eaten.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/april">april</a> <a href="http://www.technorati.com/tag/april"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/april.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/crawl">crawl</a> <a href="http://www.technorati.com/tag/crawl"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/crawl.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></content:encoded>

         <pubDate>Tue, 08 Apr 2008 17:48:12 -0400</pubDate>         <guid isPermaLink="false">tag:croncast.com,3839</guid>

			<itunes:subtitle/>
      </item>
      <item>
         <title>Social Networking Meets Savings Accounts: SmartyPig Launches this Week</title>
         <link>http://feeds.feedburner.com/~r/netbanker/~3/245361461/social_networking_meets_savings_accounts_smartypig_launches.html</link>
		 <category>Shared item</category>
			<description><![CDATA[<p><a href="http://www.smartypig.com"><img src="http://www.netbanker.com/WindowsLiveWriter/SmartyPigLaunchesFirstSocialSavingsNetwo_B28E/image_5.png" border="0" alt="image" width="251" height="76" align="right"></a>How about this recipe? Take a basic FDIC-insured savings account, spice it up with automated electronic transfers and email communications, mix in gift/debit cards, wrap the whole thing up in a social network, and top it with a memorable name. What do you have? <a href="http://www.smartypig.com"><font face="Arial Black" color="#f47a00">SmartyPig</font></a>, the most innovative financial service we&#39;ve seen since <strong>Prosper</strong> launched two years ago. </p> <p>The site is in the final week of private beta. To register, you still need an invitation code. The company asked me not to publish it, but it&#39;s OK if I distribute by request via email. Send a note to <a href="mailto:info@netbanker">info@netbanker</a> with &quot;SmartyPig&quot; in the subject line. Or simply wait until after this weekend when the site goes into public beta. </p> <p><font face="Arial Black">How it works: </font></p> <p><a href="http://www.westbankiowa.com"><img src="http://www.netbanker.com/WindowsLiveWriter/SmartyPigLaunchesFirstSocialSavingsNetwo_B28E/image_12.png" border="0" alt="image" width="226" height="78" align="right"></a>1.  Users create savings accounts at the site. Deposits are held at <strong><a href="http://www.westbankiowa.com">West Bank</a></strong>, a Des Moines, IA- based financial institution with $1.3 billion in assets. Funding is through ACH (electronic) transfers from outside bank accounts. SmartyPig currently pays a high, 4.3% APY on deposits.  </p> <p>2. After the account is established, users are encouraged to create savings goals funded through automatic monthly ACH transfers until the goal is met. </p> <p>3. Now here is where SmartyPig diverges from a typical bank account. The savings goals can be made public or kept private. Public goals can be funded in part, or entirely, by outside contributors. Think of grandma and grandpa contributing birthday money to help junior buy a new bike. Contributions are funded through credit card charges with a maximum charge of $500 and a per transaction processing fee of $4.95. To make sure grandma&#39;s $50 doesn&#39;t go to a Mario game, the money cannot be withdrawn until the savings goal is met (<em>or canceled by the primary account holder). </em></p> <p>4. After goals have been met, the user can elect to take the funds out in the form of a MasterCard debit card or a gift card from a retail partner such as <strong>Amazon.com.</strong> Participating retailers add a <u>up to</u> 5% bonus to the savings goal so that $1000 saved for the plasma TV is worth $1,050 if redeemed via Amazon gift card. That&#39;s a great added incentive to use the service. </p> <p><font face="Arial Black">Gift Cards</font><br><a href="http://www.netbanker.com/WindowsLiveWriter/SmartyPigLaunchesFirstSocialSavingsNetwo_B28E/image_2.png"><img src="http://www.netbanker.com/WindowsLiveWriter/SmartyPigLaunchesFirstSocialSavingsNetwo_B28E/image_thumb.png" border="0" alt="SmartyPig gift card" width="165" height="111" align="right"></a> SmartyPig also sells gift cards that can be redeemed towards new or existing savings goals. These cards, issued in denominations of $25 to $500, are meant to be given as gifts or employee incentives. They cannot be redeemed outside the SmartyPig system. Physical card are produced and delivered for a processing fee of $4.95 plus delivery fees of $5.95 or more. Or consumers can deliver a virtual card through email to eliminate the delivery charge (<em>but the $4.95 processing fee remains the same</em>).  </p> <p><font face="Arial Black">Summary of Fees</font></p> <ul> <li><strong>Public contributions</strong>: $4.95 flat processing fee for each contribution made by an outside contributor. Contributions can be from $25 to $500 and are funded via credit card. </li> <li><strong>Gift cards</strong>: Gift cards incur a $4.95 processing fee and an optional $5.95 shipping fee. The shipping fee can be avoided if a virtual gift card is chosen which is fulfilled via email. </li></ul> <p><font face="Arial Black">Analysis</font><br>Although, not everyone is going to want to go through the extra steps to save this way, we are impressed with SmartyPig and are awarding it our first <em>OBR Best of the Web</em> award for 2008 <a href="http://www.onlinebankingreport.com"><img src="http://www.netbanker.com/WindowsLiveWriter/SmartyPigLaunchesFirstSocialSavingsNetwo_B28E/obr_bestofweb_3.jpg" border="0" alt="obr_bestofweb" width="104" height="104" align="left"></a>(<em>see note 1</em>). We like how it&#39;s part gift registry, part savings account, and potentially a big help in getting users in the habit of saving for larger goals. The look-and-feel is very Web 2.0 and should resonate with teens and twenty-somethings. </p> <p>There are a few rough edges that need better explanation and/or minor redesign. For instance, there is no way to simply add funds to a savings account without first setting up an automatic funding plan. But the site isn&#39;t even officially launched yet, so these issues should be ironed out during the beta period.  </p> <p>The processing fee of $4.95 per transaction is a bit on the high side. One could argue that it&#39;s worth price of a triple mocha for the convenience and benefits of the savings account. But for smaller deposits of $50 to $100, it&#39;s a pretty high percentage of the overall deposit. </p> <p>It would be nice if the company could lower the fee, perhaps by creating an ACH funding option. Another way to reduce costs is to lower the 4.3% APR. I&#39;m not sure the savers attracted to this account really need that high of a rate. A lower interest rate combined with lower fees might make the service more palatable overall.    </p> <p>The company may have to tweak its business model going forward. But the real lesson here is that savings accounts can be made stickier with automation and incentives. Leave it to the Iowans to show us the way (<em>note 3</em>).  </p> <p><font face="Arial Black">Screenshots</font></p> <p><strong>1. The main account screen</strong>: I set up a savings account for my son. Then set a savings goal of $300 for a new bike. SmartyPig requires that the savings goal be funded in equal monthly withdrawals from the linked checking. It would be helpful if you could opt out of the automated savings plan so that the savings goal could be funded manually.  </p> <p><a href="http://www.netbanker.com/WindowsLiveWriter/SmartyPigLaunchesFirstSocialSavingsNetwo_B28E/image_9.png"><img src="http://www.netbanker.com/WindowsLiveWriter/SmartyPigLaunchesFirstSocialSavingsNetwo_B28E/image_thumb_3.png" border="0" alt="image" width="554" height="601"></a> </p> <p><a href="http://www.netbanker.com/WindowsLiveWriter/SmartyPigLaunchesFirstSocialSavingsNetwo_B28E/image_14.png"></a> </p> <p>2. <strong>Public goals</strong>: If you opted to make your savings goal public, anyone can find it by searching via email address under the &quot;Friends&#39; Goals&quot; tab on the top (<em>you can see this one by searching for </em><a href="mailto:jim@netbanker.com"><em>jim@netbanker.com</em></a>).  <a href="http://www.netbanker.com/WindowsLiveWriter/SmartyPigLaunchesFirstSocialSavingsNetwo_B28E/image_14.png"><img src="http://www.netbanker.com/WindowsLiveWriter/SmartyPigLaunchesFirstSocialSavingsNetwo_B28E/image_thumb_5.png" border="0" alt="SmartyPig widget" width="266" height="62" align="right"></a></p> <p>Users can publicize their goals with a widget (<em>see inset, and link at bottom of screen above</em>) or by sending email to friends. </p> <p>After making a contribution, the following screen is displayed. </p> <p><a href="http://www.netbanker.com/WindowsLiveWriter/SmartyPigLaunchesFirstSocialSavingsNetwo_B28E/image_7.png"><img src="http://www.netbanker.com/WindowsLiveWriter/SmartyPigLaunchesFirstSocialSavingsNetwo_B28E/image_thumb_2.png" border="0" alt="SmartyPig contribution thank you screenshot" width="554" height="515"></a> </p> <p> </p> <p><strong>Note</strong>: </p> <p>1. <em><strong>Online Banking Report (OBR)</strong></em> <em><strong>Best of the Web</strong></em> awards are given for products that &quot;raise the bar&quot; in online financial services, usually for pioneering a new feature. Recent winners are covered <a href="http://www.netbanker.com/best_of_the_web/">here</a>. Five awards were been handed out in 2007: two for <strong>Wesabe</strong>, and one each for <strong>Jwaala</strong>, <strong>Buxfer</strong> and <strong>Obopay</strong>. In the past 10 years, 67 companies have won the award. </p> <p>2. Full disclosure: I was born and raised in Iowa and my brother lives within a few miles of the SmartyPig world headquarters. </p>
      
   <img src="http://feeds.feedburner.com/~r/netbanker/~4/245361461" height="1" width="1"><br><br>Tags: <a href="http://www.croncast.com/keyg/savings">savings</a> <a href="http://www.technorati.com/tag/savings"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/savings.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/account">account</a> <a href="http://www.technorati.com/tag/account"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/account.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/smartypig">smartypig</a> <a href="http://www.technorati.com/tag/smartypig"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/smartypig.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/gift">gift</a> <a href="http://www.technorati.com/tag/gift"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/gift.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/goals">goals</a> <a href="http://www.technorati.com/tag/goals"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/goals.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></description><content:encoded><![CDATA[<p><a href="http://www.smartypig.com"><img src="http://www.netbanker.com/WindowsLiveWriter/SmartyPigLaunchesFirstSocialSavingsNetwo_B28E/image_5.png" border="0" alt="image" width="251" height="76" align="right"></a>How about this recipe? Take a basic FDIC-insured savings account, spice it up with automated electronic transfers and email communications, mix in gift/debit cards, wrap the whole thing up in a social network, and top it with a memorable name. What do you have? <a href="http://www.smartypig.com"><font face="Arial Black" color="#f47a00">SmartyPig</font></a>, the most innovative financial service we&#39;ve seen since <strong>Prosper</strong> launched two years ago. </p> <p>The site is in the final week of private beta. To register, you still need an invitation code. The company asked me not to publish it, but it&#39;s OK if I distribute by request via email. Send a note to <a href="mailto:info@netbanker">info@netbanker</a> with &quot;SmartyPig&quot; in the subject line. Or simply wait until after this weekend when the site goes into public beta. </p> <p><font face="Arial Black">How it works: </font></p> <p><a href="http://www.westbankiowa.com"><img src="http://www.netbanker.com/WindowsLiveWriter/SmartyPigLaunchesFirstSocialSavingsNetwo_B28E/image_12.png" border="0" alt="image" width="226" height="78" align="right"></a>1.  Users create savings accounts at the site. Deposits are held at <strong><a href="http://www.westbankiowa.com">West Bank</a></strong>, a Des Moines, IA- based financial institution with $1.3 billion in assets. Funding is through ACH (electronic) transfers from outside bank accounts. SmartyPig currently pays a high, 4.3% APY on deposits.  </p> <p>2. After the account is established, users are encouraged to create savings goals funded through automatic monthly ACH transfers until the goal is met. </p> <p>3. Now here is where SmartyPig diverges from a typical bank account. The savings goals can be made public or kept private. Public goals can be funded in part, or entirely, by outside contributors. Think of grandma and grandpa contributing birthday money to help junior buy a new bike. Contributions are funded through credit card charges with a maximum charge of $500 and a per transaction processing fee of $4.95. To make sure grandma&#39;s $50 doesn&#39;t go to a Mario game, the money cannot be withdrawn until the savings goal is met (<em>or canceled by the primary account holder). </em></p> <p>4. After goals have been met, the user can elect to take the funds out in the form of a MasterCard debit card or a gift card from a retail partner such as <strong>Amazon.com.</strong> Participating retailers add a <u>up to</u> 5% bonus to the savings goal so that $1000 saved for the plasma TV is worth $1,050 if redeemed via Amazon gift card. That&#39;s a great added incentive to use the service. </p> <p><font face="Arial Black">Gift Cards</font><br><a href="http://www.netbanker.com/WindowsLiveWriter/SmartyPigLaunchesFirstSocialSavingsNetwo_B28E/image_2.png"><img src="http://www.netbanker.com/WindowsLiveWriter/SmartyPigLaunchesFirstSocialSavingsNetwo_B28E/image_thumb.png" border="0" alt="SmartyPig gift card" width="165" height="111" align="right"></a> SmartyPig also sells gift cards that can be redeemed towards new or existing savings goals. These cards, issued in denominations of $25 to $500, are meant to be given as gifts or employee incentives. They cannot be redeemed outside the SmartyPig system. Physical card are produced and delivered for a processing fee of $4.95 plus delivery fees of $5.95 or more. Or consumers can deliver a virtual card through email to eliminate the delivery charge (<em>but the $4.95 processing fee remains the same</em>).  </p> <p><font face="Arial Black">Summary of Fees</font></p> <ul> <li><strong>Public contributions</strong>: $4.95 flat processing fee for each contribution made by an outside contributor. Contributions can be from $25 to $500 and are funded via credit card. </li> <li><strong>Gift cards</strong>: Gift cards incur a $4.95 processing fee and an optional $5.95 shipping fee. The shipping fee can be avoided if a virtual gift card is chosen which is fulfilled via email. </li></ul> <p><font face="Arial Black">Analysis</font><br>Although, not everyone is going to want to go through the extra steps to save this way, we are impressed with SmartyPig and are awarding it our first <em>OBR Best of the Web</em> award for 2008 <a href="http://www.onlinebankingreport.com"><img src="http://www.netbanker.com/WindowsLiveWriter/SmartyPigLaunchesFirstSocialSavingsNetwo_B28E/obr_bestofweb_3.jpg" border="0" alt="obr_bestofweb" width="104" height="104" align="left"></a>(<em>see note 1</em>). We like how it&#39;s part gift registry, part savings account, and potentially a big help in getting users in the habit of saving for larger goals. The look-and-feel is very Web 2.0 and should resonate with teens and twenty-somethings. </p> <p>There are a few rough edges that need better explanation and/or minor redesign. For instance, there is no way to simply add funds to a savings account without first setting up an automatic funding plan. But the site isn&#39;t even officially launched yet, so these issues should be ironed out during the beta period.  </p> <p>The processing fee of $4.95 per transaction is a bit on the high side. One could argue that it&#39;s worth price of a triple mocha for the convenience and benefits of the savings account. But for smaller deposits of $50 to $100, it&#39;s a pretty high percentage of the overall deposit. </p> <p>It would be nice if the company could lower the fee, perhaps by creating an ACH funding option. Another way to reduce costs is to lower the 4.3% APR. I&#39;m not sure the savers attracted to this account really need that high of a rate. A lower interest rate combined with lower fees might make the service more palatable overall.    </p> <p>The company may have to tweak its business model going forward. But the real lesson here is that savings accounts can be made stickier with automation and incentives. Leave it to the Iowans to show us the way (<em>note 3</em>).  </p> <p><font face="Arial Black">Screenshots</font></p> <p><strong>1. The main account screen</strong>: I set up a savings account for my son. Then set a savings goal of $300 for a new bike. SmartyPig requires that the savings goal be funded in equal monthly withdrawals from the linked checking. It would be helpful if you could opt out of the automated savings plan so that the savings goal could be funded manually.  </p> <p><a href="http://www.netbanker.com/WindowsLiveWriter/SmartyPigLaunchesFirstSocialSavingsNetwo_B28E/image_9.png"><img src="http://www.netbanker.com/WindowsLiveWriter/SmartyPigLaunchesFirstSocialSavingsNetwo_B28E/image_thumb_3.png" border="0" alt="image" width="554" height="601"></a> </p> <p><a href="http://www.netbanker.com/WindowsLiveWriter/SmartyPigLaunchesFirstSocialSavingsNetwo_B28E/image_14.png"></a> </p> <p>2. <strong>Public goals</strong>: If you opted to make your savings goal public, anyone can find it by searching via email address under the &quot;Friends&#39; Goals&quot; tab on the top (<em>you can see this one by searching for </em><a href="mailto:jim@netbanker.com"><em>jim@netbanker.com</em></a>).  <a href="http://www.netbanker.com/WindowsLiveWriter/SmartyPigLaunchesFirstSocialSavingsNetwo_B28E/image_14.png"><img src="http://www.netbanker.com/WindowsLiveWriter/SmartyPigLaunchesFirstSocialSavingsNetwo_B28E/image_thumb_5.png" border="0" alt="SmartyPig widget" width="266" height="62" align="right"></a></p> <p>Users can publicize their goals with a widget (<em>see inset, and link at bottom of screen above</em>) or by sending email to friends. </p> <p>After making a contribution, the following screen is displayed. </p> <p><a href="http://www.netbanker.com/WindowsLiveWriter/SmartyPigLaunchesFirstSocialSavingsNetwo_B28E/image_7.png"><img src="http://www.netbanker.com/WindowsLiveWriter/SmartyPigLaunchesFirstSocialSavingsNetwo_B28E/image_thumb_2.png" border="0" alt="SmartyPig contribution thank you screenshot" width="554" height="515"></a> </p> <p> </p> <p><strong>Note</strong>: </p> <p>1. <em><strong>Online Banking Report (OBR)</strong></em> <em><strong>Best of the Web</strong></em> awards are given for products that &quot;raise the bar&quot; in online financial services, usually for pioneering a new feature. Recent winners are covered <a href="http://www.netbanker.com/best_of_the_web/">here</a>. Five awards were been handed out in 2007: two for <strong>Wesabe</strong>, and one each for <strong>Jwaala</strong>, <strong>Buxfer</strong> and <strong>Obopay</strong>. In the past 10 years, 67 companies have won the award. </p> <p>2. Full disclosure: I was born and raised in Iowa and my brother lives within a few miles of the SmartyPig world headquarters. </p>
      
   <img src="http://feeds.feedburner.com/~r/netbanker/~4/245361461" height="1" width="1"><br><br>Tags: <a href="http://www.croncast.com/keyg/savings">savings</a> <a href="http://www.technorati.com/tag/savings"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/savings.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/account">account</a> <a href="http://www.technorati.com/tag/account"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/account.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/smartypig">smartypig</a> <a href="http://www.technorati.com/tag/smartypig"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/smartypig.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/gift">gift</a> <a href="http://www.technorati.com/tag/gift"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/gift.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/goals">goals</a> <a href="http://www.technorati.com/tag/goals"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/goals.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></content:encoded>

         <pubDate>Tue, 04 Mar 2008 08:24:30 -0500</pubDate>         <guid isPermaLink="false">tag:croncast.com,3669</guid>

			<itunes:subtitle/>
      </item>
      <item>
         <title>Irony is dead, last gasp of newspaper industry edition</title>
         <link>http://feeds.feedburner.com/~r/pmarca/~3/236452325/irony-is-dead-l.html</link>
		 <category>Shared item</category>
			<description><![CDATA[<div><p>February 2008:</p>

<blockquote>

<p>Four large newspaper companies are joining forces to sell advertisements on the Internet, hoping that the combined heft of their Web sites will encourage large advertisers to spend more money.</p>

<p>Each of the four companies  the Tribune Company, the Gannett Company, the Hearst Corporation and The New York Times Company  is transferring a portion of its online ad space to quadrantONE, a new company that will be announced Friday.</p>

<p>The purpose of the joint venture, which will be based in Chicago and will hire 17 people [commitment!], is to let national advertisers place ads on local Web sites with a single phone call [phone call!].</p>

<p>The sites belong to papers like The Los Angeles Times (which is a Tribune property), The Des Moines Register (Gannett), The Houston Chronicle (Hearst) and The Boston Globe (The New York Times Company).</p>

<p>Some of the companies' flagship sites, however, will not be included, because they are not considered local. These include the sites of USA Today, a Gannett paper, and of The New York Times and The International Herald Tribune, which are owned by the Times Company. [These are also known as the ones that actually have reasonable numbers of readers.]</p>

<p>Executives involved said the newspaper companies understand [by which they mean, "used to have a local monopoly but don't anymore"] the local market better than Google, Yahoo and Microsoft...</p>

<p>The companies were also all part of the New Century Network in the late 1990s...</p>

</blockquote>

<p>Source: <a href="http://www.nytimes.com/2008/02/15/business/media/15quadrant.html?_r=3&amp;ei=5088&amp;en=1dce674a420a1f24&amp;ex=1360818000&amp;oref=slogin&amp;partner=rssnyt&amp;emc=rss&amp;pagewanted=print">New York Times</a>.</p>

<p>March 1998:</p>

<blockquote>

<p>[W]hen New Century Network was kicked off last April by nine [newspaper] giants teaming up to conquer electronic competition, even the launch party bombed...</p>

<p>In a ballroom at the Newspaper Association of America convention in Chicago, a thousand bottles of champagne emblazoned with ''New Century Network: The Collective Intelligence of America's Newspapers'' awaited the hordes expected to come to toast the watershed new-media joint venture. When fewer than 100 people showed up, Chief Executive Lee de Boer made an abbreviated speech before retreating...</p>

<p>The reception was the first public humiliation for New Century Network, but only one in a series of blunders that culminated in the company's abrupt shutdown on Mar. 10. Created in 1995 to unite newspapers against Microsoft Corp. and other competitors girding to woo electronically advertisers and readers, New Century Network came to embody everything that could go wrong when old-line newspapers converge with new media...</p>

<p>Started with $1 million each from Knight-Ridder, Tribune, Times Mirror, Advance Publications, Cox Enterprises, Gannett, Hearst, Washington Post, and New York Times, New Century seemed an entrepreneurial dream. The Internet had just opened to the world, creating vast new competition for readers--and for the advertisers that pump $40 billion into newspapers. But it also gave newspapers a chance to capture national accounts that favored the one-stop-shopping convenience of TV and national magazines...</p>

<p>[T]he [newspaper] companies had wildly diverging philosophies about how newspapers should make the electronic leap and what role the new venture should play. ''You had private companies and public companies and companies that were risk-averse and those that were risk-tolerant,'' says Harry Chandler, head of new media for Los Angeles Times. ''You had big-city papers and small chains. We shared a need. But it was frustrating trying to come together.''</p>

<p>While the wired world moved at warp speed, New Century spent 18 months hiring a permanent ceo and two years creating an electronic doorway to 140 newspapers... ''This [Internet] thing is really racing,'' says Al Sikes, the former Federal Communications Commissioner who is president of Hearst New Media. ''Organizations of a number of co-equals can't turn on a dime.''...</p>

<p>The partners ultimately invested more than $25 million in the virtual venture... The board decided... to pull the plug, coming to a remarkably quick agreement--for the first and final time...</p>

</blockquote>

<p>Source: <a href="http://www.businessweek.com/1998/12/b3570103.htm">Business Week</a>.<br>
</p></div>
<div>
<a href="http://feeds.feedburner.com/~f/pmarca?a=kG0rfQE"><img src="http://feeds.feedburner.com/~f/pmarca?i=kG0rfQE" border="0"></a> <a href="http://feeds.feedburner.com/~f/pmarca?a=SJBJxFe"><img src="http://feeds.feedburner.com/~f/pmarca?i=SJBJxFe" border="0"></a> <a href="http://feeds.feedburner.com/~f/pmarca?a=ng2gZTE"><img src="http://feeds.feedburner.com/~f/pmarca?i=ng2gZTE" border="0"></a> <a href="http://feeds.feedburner.com/~f/pmarca?a=zay6HzE"><img src="http://feeds.feedburner.com/~f/pmarca?i=zay6HzE" border="0"></a> <a href="http://feeds.feedburner.com/~f/pmarca?a=M7kUnVe"><img src="http://feeds.feedburner.com/~f/pmarca?i=M7kUnVe" border="0"></a> <a href="http://feeds.feedburner.com/~f/pmarca?a=UmPvtge"><img src="http://feeds.feedburner.com/~f/pmarca?i=UmPvtge" border="0"></a>
</div><img src="http://feeds.feedburner.com/~r/pmarca/~4/236452325" height="1" width="1"><br><br>Tags: <a href="http://www.croncast.com/keyg/companies">companies</a> <a href="http://www.technorati.com/tag/companies"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/companies.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/times">times</a> <a href="http://www.technorati.com/tag/times"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/times.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/company">company</a> <a href="http://www.technorati.com/tag/company"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/company.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/century">century</a> <a href="http://www.technorati.com/tag/century"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/century.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/newspapers">newspapers</a> <a href="http://www.technorati.com/tag/newspapers"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/newspapers.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></description><content:encoded><![CDATA[<div><p>February 2008:</p>

<blockquote>

<p>Four large newspaper companies are joining forces to sell advertisements on the Internet, hoping that the combined heft of their Web sites will encourage large advertisers to spend more money.</p>

<p>Each of the four companies  the Tribune Company, the Gannett Company, the Hearst Corporation and The New York Times Company  is transferring a portion of its online ad space to quadrantONE, a new company that will be announced Friday.</p>

<p>The purpose of the joint venture, which will be based in Chicago and will hire 17 people [commitment!], is to let national advertisers place ads on local Web sites with a single phone call [phone call!].</p>

<p>The sites belong to papers like The Los Angeles Times (which is a Tribune property), The Des Moines Register (Gannett), The Houston Chronicle (Hearst) and The Boston Globe (The New York Times Company).</p>

<p>Some of the companies' flagship sites, however, will not be included, because they are not considered local. These include the sites of USA Today, a Gannett paper, and of The New York Times and The International Herald Tribune, which are owned by the Times Company. [These are also known as the ones that actually have reasonable numbers of readers.]</p>

<p>Executives involved said the newspaper companies understand [by which they mean, "used to have a local monopoly but don't anymore"] the local market better than Google, Yahoo and Microsoft...</p>

<p>The companies were also all part of the New Century Network in the late 1990s...</p>

</blockquote>

<p>Source: <a href="http://www.nytimes.com/2008/02/15/business/media/15quadrant.html?_r=3&amp;ei=5088&amp;en=1dce674a420a1f24&amp;ex=1360818000&amp;oref=slogin&amp;partner=rssnyt&amp;emc=rss&amp;pagewanted=print">New York Times</a>.</p>

<p>March 1998:</p>

<blockquote>

<p>[W]hen New Century Network was kicked off last April by nine [newspaper] giants teaming up to conquer electronic competition, even the launch party bombed...</p>

<p>In a ballroom at the Newspaper Association of America convention in Chicago, a thousand bottles of champagne emblazoned with ''New Century Network: The Collective Intelligence of America's Newspapers'' awaited the hordes expected to come to toast the watershed new-media joint venture. When fewer than 100 people showed up, Chief Executive Lee de Boer made an abbreviated speech before retreating...</p>

<p>The reception was the first public humiliation for New Century Network, but only one in a series of blunders that culminated in the company's abrupt shutdown on Mar. 10. Created in 1995 to unite newspapers against Microsoft Corp. and other competitors girding to woo electronically advertisers and readers, New Century Network came to embody everything that could go wrong when old-line newspapers converge with new media...</p>

<p>Started with $1 million each from Knight-Ridder, Tribune, Times Mirror, Advance Publications, Cox Enterprises, Gannett, Hearst, Washington Post, and New York Times, New Century seemed an entrepreneurial dream. The Internet had just opened to the world, creating vast new competition for readers--and for the advertisers that pump $40 billion into newspapers. But it also gave newspapers a chance to capture national accounts that favored the one-stop-shopping convenience of TV and national magazines...</p>

<p>[T]he [newspaper] companies had wildly diverging philosophies about how newspapers should make the electronic leap and what role the new venture should play. ''You had private companies and public companies and companies that were risk-averse and those that were risk-tolerant,'' says Harry Chandler, head of new media for Los Angeles Times. ''You had big-city papers and small chains. We shared a need. But it was frustrating trying to come together.''</p>

<p>While the wired world moved at warp speed, New Century spent 18 months hiring a permanent ceo and two years creating an electronic doorway to 140 newspapers... ''This [Internet] thing is really racing,'' says Al Sikes, the former Federal Communications Commissioner who is president of Hearst New Media. ''Organizations of a number of co-equals can't turn on a dime.''...</p>

<p>The partners ultimately invested more than $25 million in the virtual venture... The board decided... to pull the plug, coming to a remarkably quick agreement--for the first and final time...</p>

</blockquote>

<p>Source: <a href="http://www.businessweek.com/1998/12/b3570103.htm">Business Week</a>.<br>
</p></div>
<div>
<a href="http://feeds.feedburner.com/~f/pmarca?a=kG0rfQE"><img src="http://feeds.feedburner.com/~f/pmarca?i=kG0rfQE" border="0"></a> <a href="http://feeds.feedburner.com/~f/pmarca?a=SJBJxFe"><img src="http://feeds.feedburner.com/~f/pmarca?i=SJBJxFe" border="0"></a> <a href="http://feeds.feedburner.com/~f/pmarca?a=ng2gZTE"><img src="http://feeds.feedburner.com/~f/pmarca?i=ng2gZTE" border="0"></a> <a href="http://feeds.feedburner.com/~f/pmarca?a=zay6HzE"><img src="http://feeds.feedburner.com/~f/pmarca?i=zay6HzE" border="0"></a> <a href="http://feeds.feedburner.com/~f/pmarca?a=M7kUnVe"><img src="http://feeds.feedburner.com/~f/pmarca?i=M7kUnVe" border="0"></a> <a href="http://feeds.feedburner.com/~f/pmarca?a=UmPvtge"><img src="http://feeds.feedburner.com/~f/pmarca?i=UmPvtge" border="0"></a>
</div><img src="http://feeds.feedburner.com/~r/pmarca/~4/236452325" height="1" width="1"><br><br>Tags: <a href="http://www.croncast.com/keyg/companies">companies</a> <a href="http://www.technorati.com/tag/companies"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/companies.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/times">times</a> <a href="http://www.technorati.com/tag/times"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/times.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/company">company</a> <a href="http://www.technorati.com/tag/company"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/company.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/century">century</a> <a href="http://www.technorati.com/tag/century"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/century.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/newspapers">newspapers</a> <a href="http://www.technorati.com/tag/newspapers"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/newspapers.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></content:encoded>

         <pubDate>Sun, 17 Feb 2008 11:44:41 -0500</pubDate>         <guid isPermaLink="false">tag:croncast.com,3593</guid>

			<itunes:subtitle/>
      </item>
      <item>
         <title>Making Up New Words != Creativity</title>
         <link>http://feeds.feedburner.com/~r/seomoz/~3/234570345/making-up-new-words-creativity</link>
		 <category>Shared item</category>
			<description><![CDATA[<p>Posted by <a href="http://www.seomoz.org/users/view/19465">Jane Copland</a></p>There is absolutely nothing wrong with making up new words for something that, as it stands, can't be properly named or described with existing language. Quite simply, this is how languages evolve and grow, and it would be next to impossible to name everything with words that already exist. However, there should be a reason behind naming, coinage and the general invention of new words. On top of that, there should be a conscious effort not to invent words that can easily turn into annoying memes, or which become just plain laughable. This is not to say that invented names for online businesses have to<em> mean something</em>, although the good ones often do.<br>
<br>
<strong> Digg</strong> is a good name. Long before Kevin Rose and Owen Byrne launched a popular social media company, people talked about &quot;digging&quot; stuff that they liked. The word is still in use, although I&#39;d like to guess that people who use Digg tend to confine its use almost solely to their actions within the site. If I heard someone say that they &quot;dug&quot; something,&quot; I&#39;d hear it with two &quot;g&quot;s. Digg managed to one-up its competitors by easily spawning verbs - a common indication of success. No one I know of &quot;reddits&quot; stories.<br>
<br>
A lack of a verb aside, <strong>Reddit</strong> is also a great name. It doesn't really matter that when I first heard of it, I immediately thought that their icon would be a frog. The idea that you read it at Reddit completely validates the name, even if the homepage is often littered with [PIC] submissions. <strong>StumbleUpon</strong> also scores very highly on the &quot;good name&quot; charts. I made a pretty good guess about what the service did before I used it: I assumed that it would have me stumble upon things on the Internet, which is exactly what it does.<br>
<br>
More browsing, reviewing and agonising over Web 2.0 Award nominations has had me uncover some of the best - and worst - named sites. To me, a well named website has at least had some thought put into its name's creation. Its name has been coined for a reason, no matter whether the name initially appears to make sense. <br>
<br>
<strong>Badoo</strong> is one of the sites I've come across recently whose name I don't understand. It is a content sharing and social networking service. Some successful online businesses have named themselves in odd ways (<strong>Lulu</strong>,<strong> Bebo</strong>,<strong> Wufoo</strong>,<strong> Monster</strong>), but it's a risky move. Taking that risk probably means a putting up with a tougher time when it comes to early name recognition and branding.<br>
<br>
There&#39;s also a balance between creative and silly, and sometimes the two can overlap. &quot;<strong>Twitter</strong>&quot; is creative and relevant: it&#39;s a real word (which isn&#39;t common amongst web 2.0 names) and it alludes to what people use it for. Birds sit in trees and twitter at each other, supposedly imparting small pieces of information. The problem with the word is that it&#39;s annoying and easy to make fun of. Ideally, I&#39;d say you&#39;d want to avoid this.<br>
<br>
Think of the words that you can make from &quot;Twitter.&quot; Immediately, we have &quot;twit&quot; which many of us use when we&#39;re referring to total idiots. While twit isn&#39;t a particularly American term and the company was founded in San Francisco, it&#39;s often useful to take a look at the world-wide usage of the language you&#39;re using and figure out of other cultures might see your name differently. <br>
<br>
Even <strong>SEOmoz</strong> is pronounced differently by North Americans than it is by most other English speakers. In U.S. and Canadian English, the &quot;moz&quot; sounds like &quot;maahz&quot;; most other English speakers pronounce it with a more rounded &quot;o&quot; sound. <a href="http://www.peak.org/~jeremy/dictionary/chapters/pronunciation.php#o">This site explains why way better than I can</a>. Being an employee here, I pronounce the company's name the way my co-workers do. It sounds odd to me when I hear it said in the way I'd have pronounced it if I'd never worked here. <br>
<br>
Luckily for us, our company's name doesn't change enough between dialects that it becomes inappropriate, and its meaning doesn't change. I don't expect that you can account for every regional subtlety that might exist around the world, but most Americans are at least aware that calling someone a twit isn't complimentary. Despite the fact that Twitter is a real word and relates to the service, I would not have used it. It success makes my argument weaker, only it stands that people who dislike the phenomenon usually cite its name in the list of things that turn them off.<br>
<br>
The additional words that Twitter tends to spawn are also annoying: tweet, twittering and, most recently, <a href="http://www.searchengineguide.com/jennifer-laycock/part-one-from-twits-to-tweeple-why-i-emb.php">tweeple</a> might not aggravate everyone, but they&#39;re certainly polarising. Consider how variations of a name might evolve... Although we definitely didn&#39;t invent it, &quot;Moz&quot; has found plenty of uses in reference to SEOmoz (mozzers, Mozplex, MozSquad etc). Some people probably find this irritating. However, I&#39;d hazard a guess that a smaller percentage of people will dislike this usage than will turn away from using &quot;twit&quot; on a regular basis.<br>
<br>
In terms of whether a name should indicate what a site does, it seems that most successful businesses at least hint at their service in their name. <strong>Myspace</strong>'s name is great, especially considering that its most useful feature is providing bands, comedians, film makers, etc with a space to promote themselves and their work. That the site has morphed into everyone's gaudy space makes its name even more relevant. <strong>Facebook</strong> isn't quite as relevant a name (without having heard of it, you may think of a Hot-or-Not style site), but it also managed to combine two real words to make a somewhat-descriptive name. Even <strong><a href="http://www.google.com/support/bin/answer.py?hl=en&amp;answer=487">Google</a> </strong>means something. <a href="http://wordnet.princeton.edu/perl/webwn?s=yahoo">Not so sure about <strong>Yahoo!</strong> though</a>. If anyone knows exactly why Yahoo! was named thus, add the reason in the comments. Or make up your own, because that's fun, too.<br>
<br>
If you've been using the Internet for more than a few minutes, you'll have seen the infamous list of <a href="http://blog.auinteractive.com/before-you-register-that-domain-name">inadvertently terrible domain names</a>. Rarely do you see anyone makes mistakes as blatant as this, but it is worthwhile researching alternate meanings for your potential names. I would also stay away from the completely meaningless names, as inventive as they may sound. Let me leave you with an instant message discussion Rebecca and I had yesterday about the naming of websites. We talk to each other on the Internet even though we sit about five feet from each other:<br>
<div> <blockquote>
<div> <strong><span>jane.copland: </span></strong>Sometimes you read these web 2.0 site names and think,  &quot;wait. What? That meant NOTHING&quot;</div>
may as well have been a string of words in totally random  order.
<div> </div>
<span><strong>relizkel: </strong></span>it&#39;s like throwing a dart at a bunch of words on a  wall. FLING. &quot;Pop!&quot; FLING. &quot;Chance!&quot;<br>
<strong> jane.copland: </strong>Case in point: &quot;Badoo is a truly worldwide online  community that provides its members with the ability to communicate and share  their lives with people both locally and around the globe.&quot;<br>
<strong>relizkel:</strong> FLING: &quot;Slinky!&quot; And you end up with slancepop.com.<br>
</blockquote>
<div> <span><strong> </strong></span></div>
</div>
Don't become someone else's IMed joke: name your business with care.<br><p>Do you like this post? <a href="http://www.seomoz.org/thumbs/add/blog/3612/1/0">Yes</a> <a href="http://www.seomoz.org/thumbs/add/blog/3612/0/0">No</a> </p><div>
<a href="http://feeds.feedburner.com/~f/seomoz?a=25zNadE"><img src="http://feeds.feedburner.com/~f/seomoz?i=25zNadE" border="0"></a> <a href="http://feeds.feedburner.com/~f/seomoz?a=JdjHKqE"><img src="http://feeds.feedburner.com/~f/seomoz?i=JdjHKqE" border="0"></a> <a href="http://feeds.feedburner.com/~f/seomoz?a=eLuDWle"><img src="http://feeds.feedburner.com/~f/seomoz?i=eLuDWle" border="0"></a> <a href="http://feeds.feedburner.com/~f/seomoz?a=wT6dw1e"><img src="http://feeds.feedburner.com/~f/seomoz?i=wT6dw1e" border="0"></a>
</div><br><br>Tags: <a href="http://www.croncast.com/keyg/name">name</a> <a href="http://www.technorati.com/tag/name"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/name.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/words">words</a> <a href="http://www.technorati.com/tag/words"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/words.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/site">site</a> <a href="http://www.technorati.com/tag/site"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/site.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/names">names</a> <a href="http://www.technorati.com/tag/names"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/names.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/even">even</a> <a href="http://www.technorati.com/tag/even"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/even.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></description><content:encoded><![CDATA[<p>Posted by <a href="http://www.seomoz.org/users/view/19465">Jane Copland</a></p>There is absolutely nothing wrong with making up new words for something that, as it stands, can't be properly named or described with existing language. Quite simply, this is how languages evolve and grow, and it would be next to impossible to name everything with words that already exist. However, there should be a reason behind naming, coinage and the general invention of new words. On top of that, there should be a conscious effort not to invent words that can easily turn into annoying memes, or which become just plain laughable. This is not to say that invented names for online businesses have to<em> mean something</em>, although the good ones often do.<br>
<br>
<strong> Digg</strong> is a good name. Long before Kevin Rose and Owen Byrne launched a popular social media company, people talked about &quot;digging&quot; stuff that they liked. The word is still in use, although I&#39;d like to guess that people who use Digg tend to confine its use almost solely to their actions within the site. If I heard someone say that they &quot;dug&quot; something,&quot; I&#39;d hear it with two &quot;g&quot;s. Digg managed to one-up its competitors by easily spawning verbs - a common indication of success. No one I know of &quot;reddits&quot; stories.<br>
<br>
A lack of a verb aside, <strong>Reddit</strong> is also a great name. It doesn't really matter that when I first heard of it, I immediately thought that their icon would be a frog. The idea that you read it at Reddit completely validates the name, even if the homepage is often littered with [PIC] submissions. <strong>StumbleUpon</strong> also scores very highly on the &quot;good name&quot; charts. I made a pretty good guess about what the service did before I used it: I assumed that it would have me stumble upon things on the Internet, which is exactly what it does.<br>
<br>
More browsing, reviewing and agonising over Web 2.0 Award nominations has had me uncover some of the best - and worst - named sites. To me, a well named website has at least had some thought put into its name's creation. Its name has been coined for a reason, no matter whether the name initially appears to make sense. <br>
<br>
<strong>Badoo</strong> is one of the sites I've come across recently whose name I don't understand. It is a content sharing and social networking service. Some successful online businesses have named themselves in odd ways (<strong>Lulu</strong>,<strong> Bebo</strong>,<strong> Wufoo</strong>,<strong> Monster</strong>), but it's a risky move. Taking that risk probably means a putting up with a tougher time when it comes to early name recognition and branding.<br>
<br>
There&#39;s also a balance between creative and silly, and sometimes the two can overlap. &quot;<strong>Twitter</strong>&quot; is creative and relevant: it&#39;s a real word (which isn&#39;t common amongst web 2.0 names) and it alludes to what people use it for. Birds sit in trees and twitter at each other, supposedly imparting small pieces of information. The problem with the word is that it&#39;s annoying and easy to make fun of. Ideally, I&#39;d say you&#39;d want to avoid this.<br>
<br>
Think of the words that you can make from &quot;Twitter.&quot; Immediately, we have &quot;twit&quot; which many of us use when we&#39;re referring to total idiots. While twit isn&#39;t a particularly American term and the company was founded in San Francisco, it&#39;s often useful to take a look at the world-wide usage of the language you&#39;re using and figure out of other cultures might see your name differently. <br>
<br>
Even <strong>SEOmoz</strong> is pronounced differently by North Americans than it is by most other English speakers. In U.S. and Canadian English, the &quot;moz&quot; sounds like &quot;maahz&quot;; most other English speakers pronounce it with a more rounded &quot;o&quot; sound. <a href="http://www.peak.org/~jeremy/dictionary/chapters/pronunciation.php#o">This site explains why way better than I can</a>. Being an employee here, I pronounce the company's name the way my co-workers do. It sounds odd to me when I hear it said in the way I'd have pronounced it if I'd never worked here. <br>
<br>
Luckily for us, our company's name doesn't change enough between dialects that it becomes inappropriate, and its meaning doesn't change. I don't expect that you can account for every regional subtlety that might exist around the world, but most Americans are at least aware that calling someone a twit isn't complimentary. Despite the fact that Twitter is a real word and relates to the service, I would not have used it. It success makes my argument weaker, only it stands that people who dislike the phenomenon usually cite its name in the list of things that turn them off.<br>
<br>
The additional words that Twitter tends to spawn are also annoying: tweet, twittering and, most recently, <a href="http://www.searchengineguide.com/jennifer-laycock/part-one-from-twits-to-tweeple-why-i-emb.php">tweeple</a> might not aggravate everyone, but they&#39;re certainly polarising. Consider how variations of a name might evolve... Although we definitely didn&#39;t invent it, &quot;Moz&quot; has found plenty of uses in reference to SEOmoz (mozzers, Mozplex, MozSquad etc). Some people probably find this irritating. However, I&#39;d hazard a guess that a smaller percentage of people will dislike this usage than will turn away from using &quot;twit&quot; on a regular basis.<br>
<br>
In terms of whether a name should indicate what a site does, it seems that most successful businesses at least hint at their service in their name. <strong>Myspace</strong>'s name is great, especially considering that its most useful feature is providing bands, comedians, film makers, etc with a space to promote themselves and their work. That the site has morphed into everyone's gaudy space makes its name even more relevant. <strong>Facebook</strong> isn't quite as relevant a name (without having heard of it, you may think of a Hot-or-Not style site), but it also managed to combine two real words to make a somewhat-descriptive name. Even <strong><a href="http://www.google.com/support/bin/answer.py?hl=en&amp;answer=487">Google</a> </strong>means something. <a href="http://wordnet.princeton.edu/perl/webwn?s=yahoo">Not so sure about <strong>Yahoo!</strong> though</a>. If anyone knows exactly why Yahoo! was named thus, add the reason in the comments. Or make up your own, because that's fun, too.<br>
<br>
If you've been using the Internet for more than a few minutes, you'll have seen the infamous list of <a href="http://blog.auinteractive.com/before-you-register-that-domain-name">inadvertently terrible domain names</a>. Rarely do you see anyone makes mistakes as blatant as this, but it is worthwhile researching alternate meanings for your potential names. I would also stay away from the completely meaningless names, as inventive as they may sound. Let me leave you with an instant message discussion Rebecca and I had yesterday about the naming of websites. We talk to each other on the Internet even though we sit about five feet from each other:<br>
<div> <blockquote>
<div> <strong><span>jane.copland: </span></strong>Sometimes you read these web 2.0 site names and think,  &quot;wait. What? That meant NOTHING&quot;</div>
may as well have been a string of words in totally random  order.
<div> </div>
<span><strong>relizkel: </strong></span>it&#39;s like throwing a dart at a bunch of words on a  wall. FLING. &quot;Pop!&quot; FLING. &quot;Chance!&quot;<br>
<strong> jane.copland: </strong>Case in point: &quot;Badoo is a truly worldwide online  community that provides its members with the ability to communicate and share  their lives with people both locally and around the globe.&quot;<br>
<strong>relizkel:</strong> FLING: &quot;Slinky!&quot; And you end up with slancepop.com.<br>
</blockquote>
<div> <span><strong> </strong></span></div>
</div>
Don't become someone else's IMed joke: name your business with care.<br><p>Do you like this post? <a href="http://www.seomoz.org/thumbs/add/blog/3612/1/0">Yes</a> <a href="http://www.seomoz.org/thumbs/add/blog/3612/0/0">No</a> </p><div>
<a href="http://feeds.feedburner.com/~f/seomoz?a=25zNadE"><img src="http://feeds.feedburner.com/~f/seomoz?i=25zNadE" border="0"></a> <a href="http://feeds.feedburner.com/~f/seomoz?a=JdjHKqE"><img src="http://feeds.feedburner.com/~f/seomoz?i=JdjHKqE" border="0"></a> <a href="http://feeds.feedburner.com/~f/seomoz?a=eLuDWle"><img src="http://feeds.feedburner.com/~f/seomoz?i=eLuDWle" border="0"></a> <a href="http://feeds.feedburner.com/~f/seomoz?a=wT6dw1e"><img src="http://feeds.feedburner.com/~f/seomoz?i=wT6dw1e" border="0"></a>
</div><br><br>Tags: <a href="http://www.croncast.com/keyg/name">name</a> <a href="http://www.technorati.com/tag/name"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/name.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/words">words</a> <a href="http://www.technorati.com/tag/words"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/words.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/site">site</a> <a href="http://www.technorati.com/tag/site"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/site.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/names">names</a> <a href="http://www.technorati.com/tag/names"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/names.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/even">even</a> <a href="http://www.technorati.com/tag/even"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/even.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></content:encoded>

         <pubDate>Wed, 13 Feb 2008 11:52:27 -0500</pubDate>         <guid isPermaLink="false">tag:croncast.com,3554</guid>

			<itunes:subtitle/>
      </item>
      <item>
         <title>Squidoo Adds One MonkeyBrained Lens</title>
         <link>http://mashable.com/2008/02/11/squidoo-moneybrain-lens/</link>
		 <category>Shared item</category>
			<description><![CDATA[<p