<?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>links | Kris Smith has read these articles about "links" | www.croncast.com</title>
	  <itunes:author>Kris Smith</itunes:author>
      <link>http://www.croncast.com/keyg/links</link>
      <description>This is the keyword feed for "links" 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 "links" from my read items in Google Reader.</itunes:subtitle>

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

 	<image> 

		<url>http://www.croncast.com/images/croncast_itunes.jpg</url>
 		<title>links | Kris Smith has read these articles about "links" | www.croncast.com</title>
 		<link>http://www.croncast.com/keyg/links</link>
 		<description>This is the keyword feed for "links" 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>South London's Brixton Village Supports Community-Oriented Businesses</title>
         <link>http://feedproxy.google.com/~r/good/lbvp/~3/lvXLrAkM5Uo/south-london-s-brixton-village-supports-community-oriented-businesses</link>
		 <category>Shared item</category>
			<description><![CDATA[<img title="brixton-village" src="http://user.cloudfront.goodinc.com/community/aliciacapetillo/brixton-village.jpg" alt="brixton-village" width="275" height="155">An initiative in South London has been working to develop a cooperative community atmosphere by uniting small businesses and entrepreneurs with local citizens since October 2009. Utilizing twenty previously unoccupied stalls in the Brixton market, organizers at Space Makers Agency offer young creative-based businesses three months rent-free to simultaneously offer people imaginative new spaces and foster links to the community. Treehugger reports:
<blockquote>[Space Makers Agency] have been working with the local communities, property owners, local authorities, policy-makers and others to create new ways of "of thinking about the spaces in which we live, work and play. Our approach is to start with what is already there: the stories of a place and the people who live there. Then our role is as a catalyst, bringing out the possibilities which were already present in a situation and making connections which might not have been obvious.</blockquote>
Among the shops taking residence in Brixton include vintage clothing stores, a photographer, a childrens puppet show, and a candy store. With a growing number of empty storefronts in a growing number of U.S. cities, a similar investment in community and creative entrepreneurship certainly seems like it could be possible. What metropolis do you think would be a perfect candidate for a Brixton Village-like experiment?

<em>Photo by B. Alter via Treehugger</em><img src="http://feeds.feedburner.com/~r/good/lbvp/~4/lvXLrAkM5Uo" height="1" width="1"><br><br>Tags: <a href="http://www.croncast.com/keyg/brixton">brixton</a> <a href="http://www.technorati.com/tag/brixton"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/brixton.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/community">community</a> <a href="http://www.technorati.com/tag/community"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/community.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/businesses">businesses</a> <a href="http://www.technorati.com/tag/businesses"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/businesses.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/local">local</a> <a href="http://www.technorati.com/tag/local"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/local.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/makers">makers</a> <a href="http://www.technorati.com/tag/makers"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/makers.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></description><content:encoded><![CDATA[<img title="brixton-village" src="http://user.cloudfront.goodinc.com/community/aliciacapetillo/brixton-village.jpg" alt="brixton-village" width="275" height="155">An initiative in South London has been working to develop a cooperative community atmosphere by uniting small businesses and entrepreneurs with local citizens since October 2009. Utilizing twenty previously unoccupied stalls in the Brixton market, organizers at Space Makers Agency offer young creative-based businesses three months rent-free to simultaneously offer people imaginative new spaces and foster links to the community. Treehugger reports:
<blockquote>[Space Makers Agency] have been working with the local communities, property owners, local authorities, policy-makers and others to create new ways of "of thinking about the spaces in which we live, work and play. Our approach is to start with what is already there: the stories of a place and the people who live there. Then our role is as a catalyst, bringing out the possibilities which were already present in a situation and making connections which might not have been obvious.</blockquote>
Among the shops taking residence in Brixton include vintage clothing stores, a photographer, a childrens puppet show, and a candy store. With a growing number of empty storefronts in a growing number of U.S. cities, a similar investment in community and creative entrepreneurship certainly seems like it could be possible. What metropolis do you think would be a perfect candidate for a Brixton Village-like experiment?

<em>Photo by B. Alter via Treehugger</em><img src="http://feeds.feedburner.com/~r/good/lbvp/~4/lvXLrAkM5Uo" height="1" width="1"><br><br>Tags: <a href="http://www.croncast.com/keyg/brixton">brixton</a> <a href="http://www.technorati.com/tag/brixton"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/brixton.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/community">community</a> <a href="http://www.technorati.com/tag/community"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/community.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/businesses">businesses</a> <a href="http://www.technorati.com/tag/businesses"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/businesses.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/local">local</a> <a href="http://www.technorati.com/tag/local"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/local.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/makers">makers</a> <a href="http://www.technorati.com/tag/makers"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/makers.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></content:encoded>

         <pubDate>Mon, 15 Feb 2010 22:30:09 -0500</pubDate>         <guid isPermaLink="false">tag:croncast.com,6046</guid>

			<itunes:subtitle/>
      </item>
      <item>
         <title>The iPad and publishers: A survey of early reaction</title>
         <link>http://feedproxy.google.com/~r/oreilly/radar/atom/~3/jWCHFuJsNbw/ipad-and-publishers.html</link>
		 <category>Shared item</category>
			<description><![CDATA[<p>What really jumped out to me as I looked over the <a href="http://www.apple.com/ipad/specs/">iPad's feature set</a> is that the device is clearly built for media consumption. Movies, music, books, news -- the bread and butter content that keeps iTunes humming. That's good for Apple, obviously, but it also creates an interesting opportunity for publishers. They've got a new distribution mechanism and a new canvas. </p>

<p><img alt="iPad.png" src="http://radar.oreilly.com/2010/01/27/ipad-hero.png" width="200" height="270" style="float:right;margin:0 0 20px 20px"><p>With that in mind, I decided to filter the barrage of iPad coverage through a publishing lens. What follows are intriguing ideas culled from all sorts of sources. Most revolve around content applications the iPad may provide. </p></p>

<p>There's no way I'll catch all the good stuff -- there's just too much out there -- so please use the comments area to post links and commentary that grab your attention, publishing-related and otherwise.</p>

<p><strong>Ebook pricing could get interesting </strong></p>

<p>The iPad's release portends a price-point battle between Apple and Amazon. That's ebook pricing, not hardware. </p>

<p>The Wall Street Journal says Apple is pushing book publishers to set two ebook price points, <a href="http://online.wsj.com/article_email/SB10001424052748703906204575027503731077976-lMyQjAxMTAwMDIwNzEyNDcyWj.html">$12.99 and $14.99</a>, with Apple taking its customary <a href="http://daringfireball.net/2008/03/iphone_sdk_impressions_and_questions">30 percent cut</a> from any sales. They key word in all this is "set." The big kahuna of ebooks, Amazon, controls its pricing. Most bestsellers are parked at $9.99, which is  below what Amazon pays a publisher for a title. Amazon is subsidizing its low price point.</p>

<p>But that's the present. The future is a different matter. The thought is that Amazon is taking a short-term loss on ebooks so it can solidify its position as <em>the</em> dominant channel. Once it owns the ebook market, Amazon can ditch the subsidy and force publishers to renegotiate pricing. </p>

<p>That's the fear, and Apple appears to be playing to it by giving publishers an option: get a measure of pricing control through Apple, or make more with Amazon but pray they don't rewrite the rules later. (Apple could always rewrite rules, too ...) </p>

<p>What's really interesting about this -- and kind of bizarre -- is that the <a href="http://money.cnn.com/2010/01/21/technology/ebook_pricing.fortune/">binary Apple-or-Amazon thinking</a> obscures an important point: <a href="http://toc.oreilly.com/2010/01/the-unicorns-are-here-theyre-just-not-evenly-distributed-yet.html">mobile devices already offer publishers plenty of pricing options</a>. </p>

<p><strong>What about e-reader applications?</strong></p>

<p>Steve Jobs famously quipped a couple of years ago that "<a href="http://bits.blogs.nytimes.com/2008/01/15/the-passion-of-steve-jobs/">people don't read anymore</a>." Well, I guess Apple changed its stance on that one. The new <a href="http://www.huffingtonpost.com/2010/01/27/ibooks-apples-new-itunes_n_438852.html">iBooks app</a> -- and accompanying store -- is a big ol' cannonball in the ebook pool. </p>

<p>Early discussion on a back-channel publishing list I follow has focused on how Apple will treat its new ebook competitors. Will established applications, like <a href="http://www.lexcycle.com/">Stanza</a> and the <a href="http://www.amazon.com/gp/feature.html?ie=UTF8&amp;docId=1000301301">Kindle app</a>, be removed?  Kirk Biglione, co-founder of <a href="http://www.medialoper.com/">Medialoper</a>, thinks competitors will remain in Apple's universe. Just don't count on sharing titles across apps: </p>

<blockquote>
Look for books to be added as a new media type in the device media library. The other reading apps may be able to co-exist as long as they don't access books stored in that library. So, for example, you probably won't be able to use Stanza to read iBooks. <em>[Note: Kirk gave me permission to post his comments.]</em>
</blockquote>

<p>One thing to consider here: <a href="http://online.wsj.com/article/SB124908121794098073.html">Past inquiries from the Federal Communications Commission</a> may soften Apple's competitive instincts. At least for a while. </p>

<p>Of course, FCC heat doesn't preclude Apple from a little friendly rivalry. Digital Trends picked up on the <a href="http://www.digitaltrends.com/mobile/ibooks-what-we-know-of-the-ipads-ibook-app/?news=123">backhanded compliment Jobs gave Amazon</a> during the iPad presentation:</p>

<blockquote>
... [Jobs] basically told the online retailer that <em>we'll take it from here</em>.
</blockquote>

<p><strong>The reading/viewing experience</strong></p>

<p>Apple has already shown what it's capable of on the music and video front, so I'm curious to see how it handles the book experience. <a href="http://www.engadget.com/2010/01/27/apple-ipad-first-hands-on/">Early word is positive</a> from folks who've had a chance to demo the iPad. Here's <a href="http://i.gizmodo.com/5457757/apple-ipad-first-hands-on">Gizmodo's take</a>:</p>

<blockquote>It&#39;s an optical illusion, but just seeing the depth of pages makes the iBook app feel more like a book than a Kindle ever did for me. The text is sharp, and while the screen is bright, it doesn&#39;t seem to strains the eyesbut time will tell on that.</blockquote>

<p>The iPad is backwards compatible with existing iPhone applications. That seems useful on first blush, but Joshua Topolsky of Engadget <a href="http://i.engadget.com/2010/01/27/live-from-the-apple-tablet-latest-creation-event">called out a big issue with "old" apps</a>: </p>

<blockquote>It's kind of silly looking. A lone app in the center of a black screen.</blockquote>

<p><strong>More to come</strong></p>

<p>I'll be adding to this post in the coming days as more analysis bubbles up. Again, please use the comments to point out interesting or informative links you come across as well.</p>

<div>
<a href="http://feeds.feedburner.com/~ff/oreilly/radar/atom?a=jWCHFuJsNbw:1QevJ8m2JcE:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/oreilly/radar/atom?i=jWCHFuJsNbw:1QevJ8m2JcE:V_sGLiPBpWU" border="0"></a> <a href="http://feeds.feedburner.com/~ff/oreilly/radar/atom?a=jWCHFuJsNbw:1QevJ8m2JcE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/oreilly/radar/atom?d=yIl2AUoC8zA" border="0"></a> <a href="http://feeds.feedburner.com/~ff/oreilly/radar/atom?a=jWCHFuJsNbw:1QevJ8m2JcE:JEwB19i1-c4"><img src="http://feeds.feedburner.com/~ff/oreilly/radar/atom?i=jWCHFuJsNbw:1QevJ8m2JcE:JEwB19i1-c4" border="0"></a> <a href="http://feeds.feedburner.com/~ff/oreilly/radar/atom?a=jWCHFuJsNbw:1QevJ8m2JcE:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/oreilly/radar/atom?d=7Q72WNTAKBA" border="0"></a>
</div><img src="http://feeds.feedburner.com/~r/oreilly/radar/atom/~4/jWCHFuJsNbw" height="1" width="1"><br><br>Tags: <a href="http://www.croncast.com/keyg/apple">apple</a> <a href="http://www.technorati.com/tag/apple"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/apple.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/amazon">amazon</a> <a href="http://www.technorati.com/tag/amazon"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/amazon.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/ipad">ipad</a> <a href="http://www.technorati.com/tag/ipad"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/ipad.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/pricing">pricing</a> <a href="http://www.technorati.com/tag/pricing"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/pricing.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/ebook">ebook</a> <a href="http://www.technorati.com/tag/ebook"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/ebook.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></description><content:encoded><![CDATA[<p>What really jumped out to me as I looked over the <a href="http://www.apple.com/ipad/specs/">iPad's feature set</a> is that the device is clearly built for media consumption. Movies, music, books, news -- the bread and butter content that keeps iTunes humming. That's good for Apple, obviously, but it also creates an interesting opportunity for publishers. They've got a new distribution mechanism and a new canvas. </p>

<p><img alt="iPad.png" src="http://radar.oreilly.com/2010/01/27/ipad-hero.png" width="200" height="270" style="float:right;margin:0 0 20px 20px"><p>With that in mind, I decided to filter the barrage of iPad coverage through a publishing lens. What follows are intriguing ideas culled from all sorts of sources. Most revolve around content applications the iPad may provide. </p></p>

<p>There's no way I'll catch all the good stuff -- there's just too much out there -- so please use the comments area to post links and commentary that grab your attention, publishing-related and otherwise.</p>

<p><strong>Ebook pricing could get interesting </strong></p>

<p>The iPad's release portends a price-point battle between Apple and Amazon. That's ebook pricing, not hardware. </p>

<p>The Wall Street Journal says Apple is pushing book publishers to set two ebook price points, <a href="http://online.wsj.com/article_email/SB10001424052748703906204575027503731077976-lMyQjAxMTAwMDIwNzEyNDcyWj.html">$12.99 and $14.99</a>, with Apple taking its customary <a href="http://daringfireball.net/2008/03/iphone_sdk_impressions_and_questions">30 percent cut</a> from any sales. They key word in all this is "set." The big kahuna of ebooks, Amazon, controls its pricing. Most bestsellers are parked at $9.99, which is  below what Amazon pays a publisher for a title. Amazon is subsidizing its low price point.</p>

<p>But that's the present. The future is a different matter. The thought is that Amazon is taking a short-term loss on ebooks so it can solidify its position as <em>the</em> dominant channel. Once it owns the ebook market, Amazon can ditch the subsidy and force publishers to renegotiate pricing. </p>

<p>That's the fear, and Apple appears to be playing to it by giving publishers an option: get a measure of pricing control through Apple, or make more with Amazon but pray they don't rewrite the rules later. (Apple could always rewrite rules, too ...) </p>

<p>What's really interesting about this -- and kind of bizarre -- is that the <a href="http://money.cnn.com/2010/01/21/technology/ebook_pricing.fortune/">binary Apple-or-Amazon thinking</a> obscures an important point: <a href="http://toc.oreilly.com/2010/01/the-unicorns-are-here-theyre-just-not-evenly-distributed-yet.html">mobile devices already offer publishers plenty of pricing options</a>. </p>

<p><strong>What about e-reader applications?</strong></p>

<p>Steve Jobs famously quipped a couple of years ago that "<a href="http://bits.blogs.nytimes.com/2008/01/15/the-passion-of-steve-jobs/">people don't read anymore</a>." Well, I guess Apple changed its stance on that one. The new <a href="http://www.huffingtonpost.com/2010/01/27/ibooks-apples-new-itunes_n_438852.html">iBooks app</a> -- and accompanying store -- is a big ol' cannonball in the ebook pool. </p>

<p>Early discussion on a back-channel publishing list I follow has focused on how Apple will treat its new ebook competitors. Will established applications, like <a href="http://www.lexcycle.com/">Stanza</a> and the <a href="http://www.amazon.com/gp/feature.html?ie=UTF8&amp;docId=1000301301">Kindle app</a>, be removed?  Kirk Biglione, co-founder of <a href="http://www.medialoper.com/">Medialoper</a>, thinks competitors will remain in Apple's universe. Just don't count on sharing titles across apps: </p>

<blockquote>
Look for books to be added as a new media type in the device media library. The other reading apps may be able to co-exist as long as they don't access books stored in that library. So, for example, you probably won't be able to use Stanza to read iBooks. <em>[Note: Kirk gave me permission to post his comments.]</em>
</blockquote>

<p>One thing to consider here: <a href="http://online.wsj.com/article/SB124908121794098073.html">Past inquiries from the Federal Communications Commission</a> may soften Apple's competitive instincts. At least for a while. </p>

<p>Of course, FCC heat doesn't preclude Apple from a little friendly rivalry. Digital Trends picked up on the <a href="http://www.digitaltrends.com/mobile/ibooks-what-we-know-of-the-ipads-ibook-app/?news=123">backhanded compliment Jobs gave Amazon</a> during the iPad presentation:</p>

<blockquote>
... [Jobs] basically told the online retailer that <em>we'll take it from here</em>.
</blockquote>

<p><strong>The reading/viewing experience</strong></p>

<p>Apple has already shown what it's capable of on the music and video front, so I'm curious to see how it handles the book experience. <a href="http://www.engadget.com/2010/01/27/apple-ipad-first-hands-on/">Early word is positive</a> from folks who've had a chance to demo the iPad. Here's <a href="http://i.gizmodo.com/5457757/apple-ipad-first-hands-on">Gizmodo's take</a>:</p>

<blockquote>It&#39;s an optical illusion, but just seeing the depth of pages makes the iBook app feel more like a book than a Kindle ever did for me. The text is sharp, and while the screen is bright, it doesn&#39;t seem to strains the eyesbut time will tell on that.</blockquote>

<p>The iPad is backwards compatible with existing iPhone applications. That seems useful on first blush, but Joshua Topolsky of Engadget <a href="http://i.engadget.com/2010/01/27/live-from-the-apple-tablet-latest-creation-event">called out a big issue with "old" apps</a>: </p>

<blockquote>It's kind of silly looking. A lone app in the center of a black screen.</blockquote>

<p><strong>More to come</strong></p>

<p>I'll be adding to this post in the coming days as more analysis bubbles up. Again, please use the comments to point out interesting or informative links you come across as well.</p>

<div>
<a href="http://feeds.feedburner.com/~ff/oreilly/radar/atom?a=jWCHFuJsNbw:1QevJ8m2JcE:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/oreilly/radar/atom?i=jWCHFuJsNbw:1QevJ8m2JcE:V_sGLiPBpWU" border="0"></a> <a href="http://feeds.feedburner.com/~ff/oreilly/radar/atom?a=jWCHFuJsNbw:1QevJ8m2JcE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/oreilly/radar/atom?d=yIl2AUoC8zA" border="0"></a> <a href="http://feeds.feedburner.com/~ff/oreilly/radar/atom?a=jWCHFuJsNbw:1QevJ8m2JcE:JEwB19i1-c4"><img src="http://feeds.feedburner.com/~ff/oreilly/radar/atom?i=jWCHFuJsNbw:1QevJ8m2JcE:JEwB19i1-c4" border="0"></a> <a href="http://feeds.feedburner.com/~ff/oreilly/radar/atom?a=jWCHFuJsNbw:1QevJ8m2JcE:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/oreilly/radar/atom?d=7Q72WNTAKBA" border="0"></a>
</div><img src="http://feeds.feedburner.com/~r/oreilly/radar/atom/~4/jWCHFuJsNbw" height="1" width="1"><br><br>Tags: <a href="http://www.croncast.com/keyg/apple">apple</a> <a href="http://www.technorati.com/tag/apple"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/apple.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/amazon">amazon</a> <a href="http://www.technorati.com/tag/amazon"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/amazon.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/ipad">ipad</a> <a href="http://www.technorati.com/tag/ipad"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/ipad.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/pricing">pricing</a> <a href="http://www.technorati.com/tag/pricing"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/pricing.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/ebook">ebook</a> <a href="http://www.technorati.com/tag/ebook"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/ebook.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></content:encoded>

         <pubDate>Wed, 27 Jan 2010 21:42:05 -0500</pubDate>         <guid isPermaLink="false">tag:croncast.com,5920</guid>

			<itunes:subtitle/>
      </item>
      <item>
         <title>How &amp;#39;The Hidden Brain&amp;#39; Does The Thinking For Us : NPR</title>
         <link>http://www.npr.org/templates/story/story.php?storyId=122864641&amp;ft=1&amp;f=1001#</link>
		 <category>Shared item</category>
			<description><![CDATA[<blockquote>Shared by  Kristopher 
<br>
After making a silly mistake, it's not uncommon for a person to say, "Oops  I was on autopilot." In his new book, The Hidden Brain, science writer Shankar Vedantam explains how there's actually a lot of truth to that.<br><br>Our brains have two modes, he tells NPR's Steve Inkseep  conscious and unconscious, pilot and autopilot  and we are constantly switching back and forth between the two.<br><br>"The problem arises when we [switch] without our awareness," Vedantam says, "and the autopilot ends up flying the plane, when we should be flying the plane."<br><br>The autopilot mode can be useful when we're multitasking, but it can also lead us to make unsupported snap judgments about people in the world around us. Vedantam says that when we interact with people from different backgrounds in high-pressure situations, it's easy to rely  unconsciously  on heuristics.<br>'The Hidden Brain' book cover<br><br>The Hidden Brain<br>By Shankar Vedantam<br>Hardcover, 288 pages<br>Spiegel &amp; Grau<br>List price: $26<br>Read An Excerpt<br><br>3-Year-Old Bigots?<br><br>Racial categorization begins at an extremely early age. Vedantam cites research from a day-care center in Montreal that found that children as young as 3 linked white faces with positive attributes and black faces with negative attributes.<br><br>"Now, these were children who are 3 years old," Vedantam says. "It is especially hard to call them bigots, or to suggest that they are explicitly racially biased or have animosity in their hearts."<br><br>Vedantam says the mind is hard-wired to "form associations between people and concepts." But he thinks that the links the children made between particular groups and particular concepts were not biologically based  those judgments came from culture and upbringing.<br><br>"We tend to think of the conscious messages that we give children as being the most powerful education that we can give them," Vedantam says  but the unconscious messages are actually far more influential.<br><br>He says that for every 50 times a year a teacher talks about tolerance, there are many hundreds of implicit messages of racial bias that children absorb through culture  whether it's television, books or the attitudes of the adults and kids around them.<br><br>"And it's these hidden associations that essentially determine what happens in the unconscious minds of these children," Vedantam says.<br><br>'Take Back The Controls'<br><br>In American society, colorblindness is often held up as the ideal. And though it's a worthy aspiration, Vedantam says it's a goal that isn't rooted in psychological reality.<br><br>"Our hidden brains will always recognize people's races, and they will do so from a very, very young age," Vedantam says. "The far better approach is to put race on the table, to ask [children] to unpack the associations that they are learning, to help us shape those associations in more effective ways."<br><br>Most of us think of ourselves as being conscious, intentional, deliberate creatures. ... I have become, in some ways, much more humble about my views and much less certain about myself.<br><br>- Shankar Vedantam<br><br>Going back to the autopilot analogy, Vedantam says it's not a problem that the brain has an autopilot mode  as long as you are aware of when it is on. His book, The Hidden Brain, is about how to "take back the controls."<br><br>So if the human psyche is just a big constellation of conscious and unconscious cognition  which thoughts represent the real you?<br><br>"Most of us think of ourselves as being conscious, intentional, deliberate creatures," Vedantam says. "I know that I think of myself that way: I know why I like this movie star, or why I voted for this president, or why I prefer this political party to that."<br><br>But doing research for this book changed all that, Vedantam says.<br><br>"I have become, in some ways, much more humble about my views and much less certain about myself. And it may well be that the hidden brain is much more in charge of what we do than our conscious mind's intentions."</blockquote>
Science writer Shankar Vedantam says we often function on autopilot  without even knowing it.  His new book, The Hidden Brain, explores how unconscious biases color our decisions even when we think we are acting rationally.
<br><br>Tags: <a href="http://www.croncast.com/keyg/vedantam">vedantam</a> <a href="http://www.technorati.com/tag/vedantam"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/vedantam.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/hidden">hidden</a> <a href="http://www.technorati.com/tag/hidden"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/hidden.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/autopilot">autopilot</a> <a href="http://www.technorati.com/tag/autopilot"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/autopilot.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/children">children</a> <a href="http://www.technorati.com/tag/children"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/children.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/brain">brain</a> <a href="http://www.technorati.com/tag/brain"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/brain.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></description><content:encoded><![CDATA[<blockquote>Shared by  Kristopher 
<br>
After making a silly mistake, it's not uncommon for a person to say, "Oops  I was on autopilot." In his new book, The Hidden Brain, science writer Shankar Vedantam explains how there's actually a lot of truth to that.<br><br>Our brains have two modes, he tells NPR's Steve Inkseep  conscious and unconscious, pilot and autopilot  and we are constantly switching back and forth between the two.<br><br>"The problem arises when we [switch] without our awareness," Vedantam says, "and the autopilot ends up flying the plane, when we should be flying the plane."<br><br>The autopilot mode can be useful when we're multitasking, but it can also lead us to make unsupported snap judgments about people in the world around us. Vedantam says that when we interact with people from different backgrounds in high-pressure situations, it's easy to rely  unconsciously  on heuristics.<br>'The Hidden Brain' book cover<br><br>The Hidden Brain<br>By Shankar Vedantam<br>Hardcover, 288 pages<br>Spiegel &amp; Grau<br>List price: $26<br>Read An Excerpt<br><br>3-Year-Old Bigots?<br><br>Racial categorization begins at an extremely early age. Vedantam cites research from a day-care center in Montreal that found that children as young as 3 linked white faces with positive attributes and black faces with negative attributes.<br><br>"Now, these were children who are 3 years old," Vedantam says. "It is especially hard to call them bigots, or to suggest that they are explicitly racially biased or have animosity in their hearts."<br><br>Vedantam says the mind is hard-wired to "form associations between people and concepts." But he thinks that the links the children made between particular groups and particular concepts were not biologically based  those judgments came from culture and upbringing.<br><br>"We tend to think of the conscious messages that we give children as being the most powerful education that we can give them," Vedantam says  but the unconscious messages are actually far more influential.<br><br>He says that for every 50 times a year a teacher talks about tolerance, there are many hundreds of implicit messages of racial bias that children absorb through culture  whether it's television, books or the attitudes of the adults and kids around them.<br><br>"And it's these hidden associations that essentially determine what happens in the unconscious minds of these children," Vedantam says.<br><br>'Take Back The Controls'<br><br>In American society, colorblindness is often held up as the ideal. And though it's a worthy aspiration, Vedantam says it's a goal that isn't rooted in psychological reality.<br><br>"Our hidden brains will always recognize people's races, and they will do so from a very, very young age," Vedantam says. "The far better approach is to put race on the table, to ask [children] to unpack the associations that they are learning, to help us shape those associations in more effective ways."<br><br>Most of us think of ourselves as being conscious, intentional, deliberate creatures. ... I have become, in some ways, much more humble about my views and much less certain about myself.<br><br>- Shankar Vedantam<br><br>Going back to the autopilot analogy, Vedantam says it's not a problem that the brain has an autopilot mode  as long as you are aware of when it is on. His book, The Hidden Brain, is about how to "take back the controls."<br><br>So if the human psyche is just a big constellation of conscious and unconscious cognition  which thoughts represent the real you?<br><br>"Most of us think of ourselves as being conscious, intentional, deliberate creatures," Vedantam says. "I know that I think of myself that way: I know why I like this movie star, or why I voted for this president, or why I prefer this political party to that."<br><br>But doing research for this book changed all that, Vedantam says.<br><br>"I have become, in some ways, much more humble about my views and much less certain about myself. And it may well be that the hidden brain is much more in charge of what we do than our conscious mind's intentions."</blockquote>
Science writer Shankar Vedantam says we often function on autopilot  without even knowing it.  His new book, The Hidden Brain, explores how unconscious biases color our decisions even when we think we are acting rationally.
<br><br>Tags: <a href="http://www.croncast.com/keyg/vedantam">vedantam</a> <a href="http://www.technorati.com/tag/vedantam"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/vedantam.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/hidden">hidden</a> <a href="http://www.technorati.com/tag/hidden"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/hidden.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/autopilot">autopilot</a> <a href="http://www.technorati.com/tag/autopilot"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/autopilot.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/children">children</a> <a href="http://www.technorati.com/tag/children"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/children.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/brain">brain</a> <a href="http://www.technorati.com/tag/brain"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/brain.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></content:encoded>

         <pubDate>Mon, 25 Jan 2010 16:42:51 -0500</pubDate>         <guid isPermaLink="false">tag:croncast.com,5871</guid>

			<itunes:subtitle/>
      </item>
      <item>
         <title>80Legs, 50k Computers and a Web Crawler</title>
         <link>http://www.techstartups.com/2009/12/22/80legs-50k-computer-and-a-web-crawler/</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 href="http://www.techstartups.com/blog/wp-content/uploads/2009/12/Picture-7.png"><img title="Picture 7" src="http://www.techstartups.com/blog/wp-content/uploads/2009/12/Picture-7-300x155.png" alt="Picture 7" width="300" height="155"></a>You need a pile-o-data fast and you got nowhere to get it other than surf, bookmark and beg for interns to copy and paste for you. Where do you turn? Your IT department? Your hackery skills and your shared GoDaddy hosting account for bandwidth? Nah.</p>
<p><a title="80Legs Free Web Crawling" href="http://www.80legs.com/">80Legs</a> is ready to run a couple miles with your pile of data on their shoulders. You get to pick it up and work with it as you see fit.</p>
<p>Did I mention that they are now offering this as a free service? Well, up to a certain point it is free but for the many is plenty of room to get what they're looking for.</p>
<p><strong><span></span></strong>80Legs offers a unique service that will crawl the internet on your behalf and gather data from the links that you provide. They then take this <a title="Unstructured data" rel="wikipedia" href="http://en.wikipedia.org/wiki/Unstructured_data">unstructured data</a> and make it available for further refinement to the customer.</p>
<p>Their <a title="Customer value proposition" rel="wikipedia" href="http://en.wikipedia.org/wiki/Customer_value_proposition">value proposition</a> lies in the ability to deliver this service efficiently and affordably. Like I said earlier, it would be difficult if not impossible for an individual run a service to crawl 100,000 pages quickly. 80Legs is offering this as a free service now and it's all powered by a 50,000 computer network.</p>
<p>The ability to put the data collection into another companies hands allows developers to think about what to do with the data. By freeing up developers more can be done with the data that is returned to them as they have time to think about new algorithms to run across the dataset.</p>
<p>An example of this would be simple search. Developers with more time could work on creating new layers to search that make it more valuable to the end user. Whether it is integrating advanced search functionality or returning results contextually depending on the page that a user is currently searching from.</p>
<p>If you're interested, the free Basic specs are below. Plus and Premium are <a title="80Legs Free Web Crawling" href="http://80legs.wordpress.com/2009/12/21/80legs-subscription-plans-and-free-web-crawling/">listed on their blog</a>.</p>
<p><strong>80Legs Basic Plan:</strong></p>
<ul>
<li>Free to use</li>
<li>Normal crawling speed (up to 1 request/second/domain)</li>
<li>Access to 80legs Web Portal</li>
<li>1 job running at a time</li>
<li>Up to 100K crawled pages per job</li>
<li>Low priority in 80legs job queue</li>
<li>No recurring jobs allowed</li>
</ul>
<p>[Via <a href="http://venturebeat.com">VentureBeat</a>]</p>
<h6 style="font-size:1em">Related articles by Zemanta</h6>
<ul>
<li><a href="http://startups.com/questions/11227/godaddy-referral-urls-and-isc-codes">GoDaddy Referral URLs and ISC codes</a> (startups.com)</li>
<li><a href="http://www.growmap.com/tiptop-twitter-search/">How to Use TipTop for Real Time Market Research</a> (growmap.com)</li>
<li><a href="http://www.1up.com/do/newsStory?cId=3177408">Sony Trademarks Qrisoity, Possibly New Premium PSN Service?</a> (1up.com)</li>
<li><a href="http://www.techstartups.com/2009/12/22/got-data-how-changing-my-social-sharing-workflow-is-making-me-smarter-i-hope/">Got Data? How Changing My Social Sharing Workflow Is Making Me Smarter (I Hope).</a> (techstartups.com)</li>
</ul>
<div style="margin-top:10px;height:15px"><a title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/903642c8-0bd2-4e2a-9a5c-051f1739069d/"><img style="border:medium none;float:right" src="http://img.zemanta.com/reblog_e.png?x-id=903642c8-0bd2-4e2a-9a5c-051f1739069d" alt="Reblog this post [with Zemanta]"></a><span></span></div>
<p><a href="http://www.techstartups.com/2009/12/22/80legs-50k-computer-and-a-web-crawler/">80Legs, 50k Computers and a Web Crawler</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/80legs/" rel="tag">80Legs</a> <a style="display:inline" href="http://www.techstartups.com/tag/80legs/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/80legs-spider/" rel="tag">80legs spider</a> <a style="display:inline" href="http://www.techstartups.com/tag/80legs-spider/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/80legs-web-crawler/" rel="tag">80Legs web crawler</a> <a style="display:inline" href="http://www.techstartups.com/tag/80legs-web-crawler/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/free-web-crawler/" rel="tag">free web crawler</a> <a style="display:inline" href="http://www.techstartups.com/tag/free-web-crawler/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/free-web-spider/" rel="tag">free web spider</a> <a style="display:inline" href="http://www.techstartups.com/tag/free-web-spider/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/unstructured-data/" rel="tag">unstructured data</a> <a style="display:inline" href="http://www.techstartups.com/tag/unstructured-data/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/value-proposition/" rel="tag">value proposition</a> <a style="display:inline" href="http://www.techstartups.com/tag/value-proposition/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/venturebeat/" rel="tag">VentureBeat</a> <a style="display:inline" href="http://www.techstartups.com/tag/venturebeat/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/legs">legs</a> <a href="http://www.technorati.com/tag/legs"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/legs.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <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/free">free</a> <a href="http://www.technorati.com/tag/free"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/free.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/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>]]></description><content:encoded><![CDATA[<p><em>By Senior Editor  Kris Smith (<a href="http://twitter.com/croncast">@croncast</a>)</em></p>
<p><a href="http://www.techstartups.com/blog/wp-content/uploads/2009/12/Picture-7.png"><img title="Picture 7" src="http://www.techstartups.com/blog/wp-content/uploads/2009/12/Picture-7-300x155.png" alt="Picture 7" width="300" height="155"></a>You need a pile-o-data fast and you got nowhere to get it other than surf, bookmark and beg for interns to copy and paste for you. Where do you turn? Your IT department? Your hackery skills and your shared GoDaddy hosting account for bandwidth? Nah.</p>
<p><a title="80Legs Free Web Crawling" href="http://www.80legs.com/">80Legs</a> is ready to run a couple miles with your pile of data on their shoulders. You get to pick it up and work with it as you see fit.</p>
<p>Did I mention that they are now offering this as a free service? Well, up to a certain point it is free but for the many is plenty of room to get what they're looking for.</p>
<p><strong><span></span></strong>80Legs offers a unique service that will crawl the internet on your behalf and gather data from the links that you provide. They then take this <a title="Unstructured data" rel="wikipedia" href="http://en.wikipedia.org/wiki/Unstructured_data">unstructured data</a> and make it available for further refinement to the customer.</p>
<p>Their <a title="Customer value proposition" rel="wikipedia" href="http://en.wikipedia.org/wiki/Customer_value_proposition">value proposition</a> lies in the ability to deliver this service efficiently and affordably. Like I said earlier, it would be difficult if not impossible for an individual run a service to crawl 100,000 pages quickly. 80Legs is offering this as a free service now and it's all powered by a 50,000 computer network.</p>
<p>The ability to put the data collection into another companies hands allows developers to think about what to do with the data. By freeing up developers more can be done with the data that is returned to them as they have time to think about new algorithms to run across the dataset.</p>
<p>An example of this would be simple search. Developers with more time could work on creating new layers to search that make it more valuable to the end user. Whether it is integrating advanced search functionality or returning results contextually depending on the page that a user is currently searching from.</p>
<p>If you're interested, the free Basic specs are below. Plus and Premium are <a title="80Legs Free Web Crawling" href="http://80legs.wordpress.com/2009/12/21/80legs-subscription-plans-and-free-web-crawling/">listed on their blog</a>.</p>
<p><strong>80Legs Basic Plan:</strong></p>
<ul>
<li>Free to use</li>
<li>Normal crawling speed (up to 1 request/second/domain)</li>
<li>Access to 80legs Web Portal</li>
<li>1 job running at a time</li>
<li>Up to 100K crawled pages per job</li>
<li>Low priority in 80legs job queue</li>
<li>No recurring jobs allowed</li>
</ul>
<p>[Via <a href="http://venturebeat.com">VentureBeat</a>]</p>
<h6 style="font-size:1em">Related articles by Zemanta</h6>
<ul>
<li><a href="http://startups.com/questions/11227/godaddy-referral-urls-and-isc-codes">GoDaddy Referral URLs and ISC codes</a> (startups.com)</li>
<li><a href="http://www.growmap.com/tiptop-twitter-search/">How to Use TipTop for Real Time Market Research</a> (growmap.com)</li>
<li><a href="http://www.1up.com/do/newsStory?cId=3177408">Sony Trademarks Qrisoity, Possibly New Premium PSN Service?</a> (1up.com)</li>
<li><a href="http://www.techstartups.com/2009/12/22/got-data-how-changing-my-social-sharing-workflow-is-making-me-smarter-i-hope/">Got Data? How Changing My Social Sharing Workflow Is Making Me Smarter (I Hope).</a> (techstartups.com)</li>
</ul>
<div style="margin-top:10px;height:15px"><a title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/903642c8-0bd2-4e2a-9a5c-051f1739069d/"><img style="border:medium none;float:right" src="http://img.zemanta.com/reblog_e.png?x-id=903642c8-0bd2-4e2a-9a5c-051f1739069d" alt="Reblog this post [with Zemanta]"></a><span></span></div>
<p><a href="http://www.techstartups.com/2009/12/22/80legs-50k-computer-and-a-web-crawler/">80Legs, 50k Computers and a Web Crawler</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/80legs/" rel="tag">80Legs</a> <a style="display:inline" href="http://www.techstartups.com/tag/80legs/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/80legs-spider/" rel="tag">80legs spider</a> <a style="display:inline" href="http://www.techstartups.com/tag/80legs-spider/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/80legs-web-crawler/" rel="tag">80Legs web crawler</a> <a style="display:inline" href="http://www.techstartups.com/tag/80legs-web-crawler/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/free-web-crawler/" rel="tag">free web crawler</a> <a style="display:inline" href="http://www.techstartups.com/tag/free-web-crawler/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/free-web-spider/" rel="tag">free web spider</a> <a style="display:inline" href="http://www.techstartups.com/tag/free-web-spider/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/unstructured-data/" rel="tag">unstructured data</a> <a style="display:inline" href="http://www.techstartups.com/tag/unstructured-data/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/value-proposition/" rel="tag">value proposition</a> <a style="display:inline" href="http://www.techstartups.com/tag/value-proposition/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/venturebeat/" rel="tag">VentureBeat</a> <a style="display:inline" href="http://www.techstartups.com/tag/venturebeat/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/legs">legs</a> <a href="http://www.technorati.com/tag/legs"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/legs.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <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/free">free</a> <a href="http://www.technorati.com/tag/free"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/free.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/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>]]></content:encoded>

         <pubDate>Tue, 22 Dec 2009 22:03:26 -0500</pubDate>         <guid isPermaLink="false">tag:croncast.com,5830</guid>

			<itunes:subtitle/>
      </item>
      <item>
         <title>Ready to Dig WordPress?</title>
         <link>http://www.techstartups.com/2009/12/29/ready-to-dig-wordpress/</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 href="http://www.techstartups.com/blog/wp-content/uploads/2009/12/Picture-231.png"><img title="Picture 23" src="http://www.techstartups.com/blog/wp-content/uploads/2009/12/Picture-231-300x166.png" alt="Picture 23" width="300" height="166"></a>If you're just starting out or a <a title="WordPress" rel="homepage" href="http://wordpress.org">WordPress</a> hack from way back, the new book from Chris Coyier and Jeff Starr titled <a title="Digging Into WordPress" href="http://digwp.com/book/">Digging Into WordPress</a> could be a good addition to your shelf. </p>
<p>Coyier and Starr have been plugging away on WordPress installs for a few years and now sharing their intimate knowledge of the blogging platform.</p>
<p>The book comes in two versions  spiral bound and PDF. The spiral version looks beautiful and the PDF, if anything like the sample, should please with its colors and page layout.</p>
<p><strong><span></span></strong>The real question about this book is the $67 price tag for the spiral bound version. Is it worth it?</p>
<p>Yes, slices of tree with pretty ink aesthetically pleasing. Yes, it will lay completely flat on a surface next to a computer, unlike traditionally bound computer books. No, it won't every question you have about WordPress. I'm not sure anyone or any book could do that.</p>
<p>If I were in the market for a WordPress book I would take a different approach to justify spending the money on this book  consulting. Not that I would buy it and become an instant WordPress consultant. Nor should you, unless you're already a Social Media Expert and have it all figured out.</p>
<p>I mean consulting in the sense that you are getting the best that Coyier and Starr have to offer because their names are on the line with this publication. If the content is not good or they don't add value to solve your WordPress conundrums their names will be mud.</p>
<p>This book should be viewed as an insanely cheap consulting session with two guys that really know their stuff and can prove it with their client work. At $67, you're already halving the rate for most WordPress gurus worth the money and getting two for the price of one 24 hours a day.</p>
<p>They're also offering <a title="Digging Into WordPress Affiliate Program" href="http://digwp.com/book/affiliate/">an affiliate program</a> for those interested in helping sell some copies and to put some extra bucks under that mattress. Check it out if you're into that whole affiliate thing.</p>
<p>I have no material connection with the publishers of this book or am a part of their affiliate program. All links are to standard pages. I am basing my opinion on <a href="http://digwp.com/book-demo/Digging-Into-WP-DEMO.pdf">a sample chapter</a> (PDF) that is available from their sales page.</p>
<h6 style="font-size:1em">Related articles by Zemanta</h6>
<ul>
<li><a href="http://musings-cafe.blogspot.com/2009/10/changing-web-page-layouts.html">Changing web page layouts</a> (musings-cafe.blogspot.com)</li>
<li><a href="http://www.blogworldexpo.com/blog/2007/07/21/how-to-contribute-to-wordpress/">How to contribute to WordPress</a> (blogworldexpo.com)</li>
<li><a href="http://www.wpjedi.com/build-a-wordpress-amazon-associates-store-with-affiliatebang/">Build a Wordpress Amazon Associates Store with AffiliateBang</a> (wpjedi.com)</li>
<li><a href="http://tadej.eu/wordpress-timezone-exception-fix-hack">Wordpress Timezone Exception Fix/Hack</a> (tadej.eu)</li>
<li><a href="http://www.thetechscoop.net/2009/12/17/wordpress-101-training/">WordPress 101 Training</a> (thetechscoop.net)</li>
</ul>
<div style="margin-top:10px;height:15px"><a title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/76628004-c6ed-43e7-aa2a-e7bb4ad086a5/"><img style="border:medium none;float:right" src="http://img.zemanta.com/reblog_e.png?x-id=76628004-c6ed-43e7-aa2a-e7bb4ad086a5" alt="Reblog this post [with Zemanta]"></a><span></span></div>
<p><a href="http://www.techstartups.com/2009/12/29/ready-to-dig-wordpress/">Ready to Dig WordPress?</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/chris-coyier/" rel="tag">Chris Coyier</a> <a style="display:inline" href="http://www.techstartups.com/tag/chris-coyier/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/digging-into-wordpress/" rel="tag">Digging Into WordPress</a> <a style="display:inline" href="http://www.techstartups.com/tag/digging-into-wordpress/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/jeff-starr/" rel="tag">Jeff Starr</a> <a style="display:inline" href="http://www.techstartups.com/tag/jeff-starr/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/wordpress-books/" rel="tag">wordpress books</a> <a style="display:inline" href="http://www.techstartups.com/tag/wordpress-books/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/wordpress-consultant/" rel="tag">wordpress consultant</a> <a style="display:inline" href="http://www.techstartups.com/tag/wordpress-consultant/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/wordpress-hacks/" rel="tag">wordpress hacks</a> <a style="display:inline" href="http://www.techstartups.com/tag/wordpress-hacks/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/wordpress">wordpress</a> <a href="http://www.technorati.com/tag/wordpress"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/wordpress.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/book">book</a> <a href="http://www.technorati.com/tag/book"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/book.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/starr">starr</a> <a href="http://www.technorati.com/tag/starr"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/starr.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/coyier">coyier</a> <a href="http://www.technorati.com/tag/coyier"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/coyier.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/consulting">consulting</a> <a href="http://www.technorati.com/tag/consulting"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/consulting.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 href="http://www.techstartups.com/blog/wp-content/uploads/2009/12/Picture-231.png"><img title="Picture 23" src="http://www.techstartups.com/blog/wp-content/uploads/2009/12/Picture-231-300x166.png" alt="Picture 23" width="300" height="166"></a>If you're just starting out or a <a title="WordPress" rel="homepage" href="http://wordpress.org">WordPress</a> hack from way back, the new book from Chris Coyier and Jeff Starr titled <a title="Digging Into WordPress" href="http://digwp.com/book/">Digging Into WordPress</a> could be a good addition to your shelf. </p>
<p>Coyier and Starr have been plugging away on WordPress installs for a few years and now sharing their intimate knowledge of the blogging platform.</p>
<p>The book comes in two versions  spiral bound and PDF. The spiral version looks beautiful and the PDF, if anything like the sample, should please with its colors and page layout.</p>
<p><strong><span></span></strong>The real question about this book is the $67 price tag for the spiral bound version. Is it worth it?</p>
<p>Yes, slices of tree with pretty ink aesthetically pleasing. Yes, it will lay completely flat on a surface next to a computer, unlike traditionally bound computer books. No, it won't every question you have about WordPress. I'm not sure anyone or any book could do that.</p>
<p>If I were in the market for a WordPress book I would take a different approach to justify spending the money on this book  consulting. Not that I would buy it and become an instant WordPress consultant. Nor should you, unless you're already a Social Media Expert and have it all figured out.</p>
<p>I mean consulting in the sense that you are getting the best that Coyier and Starr have to offer because their names are on the line with this publication. If the content is not good or they don't add value to solve your WordPress conundrums their names will be mud.</p>
<p>This book should be viewed as an insanely cheap consulting session with two guys that really know their stuff and can prove it with their client work. At $67, you're already halving the rate for most WordPress gurus worth the money and getting two for the price of one 24 hours a day.</p>
<p>They're also offering <a title="Digging Into WordPress Affiliate Program" href="http://digwp.com/book/affiliate/">an affiliate program</a> for those interested in helping sell some copies and to put some extra bucks under that mattress. Check it out if you're into that whole affiliate thing.</p>
<p>I have no material connection with the publishers of this book or am a part of their affiliate program. All links are to standard pages. I am basing my opinion on <a href="http://digwp.com/book-demo/Digging-Into-WP-DEMO.pdf">a sample chapter</a> (PDF) that is available from their sales page.</p>
<h6 style="font-size:1em">Related articles by Zemanta</h6>
<ul>
<li><a href="http://musings-cafe.blogspot.com/2009/10/changing-web-page-layouts.html">Changing web page layouts</a> (musings-cafe.blogspot.com)</li>
<li><a href="http://www.blogworldexpo.com/blog/2007/07/21/how-to-contribute-to-wordpress/">How to contribute to WordPress</a> (blogworldexpo.com)</li>
<li><a href="http://www.wpjedi.com/build-a-wordpress-amazon-associates-store-with-affiliatebang/">Build a Wordpress Amazon Associates Store with AffiliateBang</a> (wpjedi.com)</li>
<li><a href="http://tadej.eu/wordpress-timezone-exception-fix-hack">Wordpress Timezone Exception Fix/Hack</a> (tadej.eu)</li>
<li><a href="http://www.thetechscoop.net/2009/12/17/wordpress-101-training/">WordPress 101 Training</a> (thetechscoop.net)</li>
</ul>
<div style="margin-top:10px;height:15px"><a title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/76628004-c6ed-43e7-aa2a-e7bb4ad086a5/"><img style="border:medium none;float:right" src="http://img.zemanta.com/reblog_e.png?x-id=76628004-c6ed-43e7-aa2a-e7bb4ad086a5" alt="Reblog this post [with Zemanta]"></a><span></span></div>
<p><a href="http://www.techstartups.com/2009/12/29/ready-to-dig-wordpress/">Ready to Dig WordPress?</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/chris-coyier/" rel="tag">Chris Coyier</a> <a style="display:inline" href="http://www.techstartups.com/tag/chris-coyier/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/digging-into-wordpress/" rel="tag">Digging Into WordPress</a> <a style="display:inline" href="http://www.techstartups.com/tag/digging-into-wordpress/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/jeff-starr/" rel="tag">Jeff Starr</a> <a style="display:inline" href="http://www.techstartups.com/tag/jeff-starr/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/wordpress-books/" rel="tag">wordpress books</a> <a style="display:inline" href="http://www.techstartups.com/tag/wordpress-books/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/wordpress-consultant/" rel="tag">wordpress consultant</a> <a style="display:inline" href="http://www.techstartups.com/tag/wordpress-consultant/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/wordpress-hacks/" rel="tag">wordpress hacks</a> <a style="display:inline" href="http://www.techstartups.com/tag/wordpress-hacks/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/wordpress">wordpress</a> <a href="http://www.technorati.com/tag/wordpress"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/wordpress.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/book">book</a> <a href="http://www.technorati.com/tag/book"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/book.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/starr">starr</a> <a href="http://www.technorati.com/tag/starr"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/starr.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/coyier">coyier</a> <a href="http://www.technorati.com/tag/coyier"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/coyier.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/consulting">consulting</a> <a href="http://www.technorati.com/tag/consulting"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/consulting.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></content:encoded>

         <pubDate>Tue, 29 Dec 2009 23:46:18 -0500</pubDate>         <guid isPermaLink="false">tag:croncast.com,5834</guid>

			<itunes:subtitle/>
      </item>
      <item>
         <title>URL Graffiti From Engadget</title>
         <link>http://www.techstartups.com/2009/11/23/url-graffiti-from-engadget/</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-4443" href="http://www.techstartups.com/2009/11/23/url-graffiti-from-engadget/picture-72/"><img style="margin-left:10px;margin-right:10px" title="Picture 72" src="http://www.techstartups.com/blog/wp-content/uploads/2009/11/Picture-72.png" alt="Picture 72" width="187" height="65"></a>For those of you unaware, <a title="Engadget" rel="homepage" href="http://www.engadget.com">Engadget</a> put on a new face this week and restructured the way stories are found on their site. As part of this new design they began sculpting links with a technique that I'm dubbing URL graffiti. Say what?</p>
<p>They are engaged in a brilliant new system of taggery that shows the maturity of blogs that have thousands of items of content and want to gain the value that they often represent. One method that they have chosen for this is filtering with user chosen tags (graffiti) attached to the end of a tag URL. Example: <a href="http://www.engadget.com/tag/att,3g,sony">http://www.engadget.com/tag/att,3g,sony</a></p>
<p><strong>Why is this brilliant?</strong></p>
<p><strong><span></span><br>
</strong></p>
<p>It shows a step forward by Engadget and their designers to finding solutions to create value from the long tail. For the public and their own writers there is now an ability to treat all of this content as a reference system. You could also call it a knowledge base, library or archive. Whatever your chosen term, this simple approach to content filtering is hot.</p>
<p><strong>What does it mean?</strong></p>
<p>Access to an entire body of work via multiple tags can begin to yield better search results without forcing a user into a situation where they need to use an advanced search' feature. These are usually blocks of form elements that easily overwhelm a user's sense that they can find what they are looking for with ease and underwhelm them with your <a title="Information architecture" rel="wikipedia" href="http://en.wikipedia.org/wiki/Information_architecture">information architecture</a> skills.</p>
<p>Take the full example URL above with graffiti as an example  then click these three links with varying tag graffiti on the end of them in succession:</p>
<ol>
<li><a href="http://www.engadget.com/tag/att">http://www.engadget.com/tag/att</a> // All ATT tagged content</li>
<li><a href="http://www.engadget.com/tag/att,3g">http://www.engadget.com/tag/att,3g</a> // All ATT and 3g tagged content</li>
<li><a href="http://www.engadget.com/tag/att,3g,sony">http://www.engadget.com/tag/att,3g,sony</a> // All ATT and 3g and Sony tagged content</li>
</ol>
<p>As the results wane you are given a better picture of content within Engadget's archive that meets the tag requirements. In this purest form it is advanced search functionality without the mess.</p>
<p><strong>How to use it?</strong></p>
<p>I found this feature because Engadget was already using it in posts. Their writers can use it to create a better picture of previously written content for users that click through. It can also be used by them as a an internal search capability for research on a topic. When you have multiple authors the chances are high that at some point there is another post or a few within the corpus that is similar and a can be used for reference.</p>
<p>In this current iteration this feature for users is a bit limited. Users can tack on their own graffiti to the URL and get results for these topics, but it is more of a command line interaction. It is powerful but not very <a title="Usability" rel="wikipedia" href="http://en.wikipedia.org/wiki/Usability">user-friendly</a>.</p>
<p><strong>How can URL Graffiti from Engadget be improved?</strong></p>
<p>This is a powerful system for content filtering that needs just a few tweaks and can become a ridiculously valuable to the publisher and to users.</p>
<ol>
<li>Autodiscovery feed added to page</li>
<li>Link to this feed in the top section</li>
<li>Ability to add a .rss or .xml' to query for feed access</li>
<li>Button to change tag search to OR' instead of  And' to increase results pool
<ol>
<li>Currently all searches are AND'</li>
<li>Ex. ATT and 3g and Sony</li>
<li>New would allow ATT or 3g or Sony</li>
</ol>
</li>
<li>Text input box with URL graffiti loaded in it for editing to add new tags</li>
<li>Number of results displayed on page</li>
</ol>
<p>Below is a comp of some of these changes added into the interface. By no means is it perfect but it is a good start to adding some additional value to users. Click the image to see full size.</p>
<p style="text-align:center"><a href="http://www.techstartups.com/blog/wp-content/uploads/2009/11/engadget_mock_up.png"><img style="margin-left:10px;margin-right:10px" title="engadget_mock_up" src="http://www.techstartups.com/blog/wp-content/uploads/2009/11/engadget_mock_up-1024x534.png" alt="engadget_mock_up" width="621" height="323"></a></p>
<p>For your next client or startup keep this URL graffiti approach in mind as an efficient way to solve content filtering. If it is built in from the beginning you can ensure that you are creating a continued value, even if diminishing, for your content. Let your users throw some graffiti on your work.</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/a9907e61-47fd-42ad-b4d1-4f2c6f0e70c9/"><img style="border:medium none;float:right" src="http://img.zemanta.com/reblog_e.png?x-id=a9907e61-47fd-42ad-b4d1-4f2c6f0e70c9" alt="Reblog this post [with Zemanta]"></a><span></span></div>
<p><a href="http://www.techstartups.com/2009/11/23/url-graffiti-from-engadget/">URL Graffiti From Engadget</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/advanced-search/" rel="tag">advanced search</a> <a style="display:inline" href="http://www.techstartups.com/tag/advanced-search/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/command-line-search/" rel="tag">command line search</a> <a style="display:inline" href="http://www.techstartups.com/tag/command-line-search/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/engadget/" rel="tag">engadget</a> <a style="display:inline" href="http://www.techstartups.com/tag/engadget/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/engadget-redesign/" rel="tag">Engadget redesign</a> <a style="display:inline" href="http://www.techstartups.com/tag/engadget-redesign/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/engadget-tags/" rel="tag">engadget tags</a> <a style="display:inline" href="http://www.techstartups.com/tag/engadget-tags/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/information-retrieval/" rel="tag">Information retrieval</a> <a style="display:inline" href="http://www.techstartups.com/tag/information-retrieval/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/search-functionality/" rel="tag">search functionality</a> <a style="display:inline" href="http://www.techstartups.com/tag/search-functionality/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/taggery/" rel="tag">taggery</a> <a style="display:inline" href="http://www.techstartups.com/tag/taggery/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/url-graffiti/" rel="tag">URL graffiti</a> <a style="display:inline" href="http://www.techstartups.com/tag/url-graffiti/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/usability/" rel="tag">Usability</a> <a style="display:inline" href="http://www.techstartups.com/tag/usability/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/engadget">engadget</a> <a href="http://www.technorati.com/tag/engadget"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/engadget.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/graffiti">graffiti</a> <a href="http://www.technorati.com/tag/graffiti"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/graffiti.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/content">content</a> <a href="http://www.technorati.com/tag/content"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/content.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/url">url</a> <a href="http://www.technorati.com/tag/url"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/url.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/att">att</a> <a href="http://www.technorati.com/tag/att"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/att.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-4443" href="http://www.techstartups.com/2009/11/23/url-graffiti-from-engadget/picture-72/"><img style="margin-left:10px;margin-right:10px" title="Picture 72" src="http://www.techstartups.com/blog/wp-content/uploads/2009/11/Picture-72.png" alt="Picture 72" width="187" height="65"></a>For those of you unaware, <a title="Engadget" rel="homepage" href="http://www.engadget.com">Engadget</a> put on a new face this week and restructured the way stories are found on their site. As part of this new design they began sculpting links with a technique that I'm dubbing URL graffiti. Say what?</p>
<p>They are engaged in a brilliant new system of taggery that shows the maturity of blogs that have thousands of items of content and want to gain the value that they often represent. One method that they have chosen for this is filtering with user chosen tags (graffiti) attached to the end of a tag URL. Example: <a href="http://www.engadget.com/tag/att,3g,sony">http://www.engadget.com/tag/att,3g,sony</a></p>
<p><strong>Why is this brilliant?</strong></p>
<p><strong><span></span><br>
</strong></p>
<p>It shows a step forward by Engadget and their designers to finding solutions to create value from the long tail. For the public and their own writers there is now an ability to treat all of this content as a reference system. You could also call it a knowledge base, library or archive. Whatever your chosen term, this simple approach to content filtering is hot.</p>
<p><strong>What does it mean?</strong></p>
<p>Access to an entire body of work via multiple tags can begin to yield better search results without forcing a user into a situation where they need to use an advanced search' feature. These are usually blocks of form elements that easily overwhelm a user's sense that they can find what they are looking for with ease and underwhelm them with your <a title="Information architecture" rel="wikipedia" href="http://en.wikipedia.org/wiki/Information_architecture">information architecture</a> skills.</p>
<p>Take the full example URL above with graffiti as an example  then click these three links with varying tag graffiti on the end of them in succession:</p>
<ol>
<li><a href="http://www.engadget.com/tag/att">http://www.engadget.com/tag/att</a> // All ATT tagged content</li>
<li><a href="http://www.engadget.com/tag/att,3g">http://www.engadget.com/tag/att,3g</a> // All ATT and 3g tagged content</li>
<li><a href="http://www.engadget.com/tag/att,3g,sony">http://www.engadget.com/tag/att,3g,sony</a> // All ATT and 3g and Sony tagged content</li>
</ol>
<p>As the results wane you are given a better picture of content within Engadget's archive that meets the tag requirements. In this purest form it is advanced search functionality without the mess.</p>
<p><strong>How to use it?</strong></p>
<p>I found this feature because Engadget was already using it in posts. Their writers can use it to create a better picture of previously written content for users that click through. It can also be used by them as a an internal search capability for research on a topic. When you have multiple authors the chances are high that at some point there is another post or a few within the corpus that is similar and a can be used for reference.</p>
<p>In this current iteration this feature for users is a bit limited. Users can tack on their own graffiti to the URL and get results for these topics, but it is more of a command line interaction. It is powerful but not very <a title="Usability" rel="wikipedia" href="http://en.wikipedia.org/wiki/Usability">user-friendly</a>.</p>
<p><strong>How can URL Graffiti from Engadget be improved?</strong></p>
<p>This is a powerful system for content filtering that needs just a few tweaks and can become a ridiculously valuable to the publisher and to users.</p>
<ol>
<li>Autodiscovery feed added to page</li>
<li>Link to this feed in the top section</li>
<li>Ability to add a .rss or .xml' to query for feed access</li>
<li>Button to change tag search to OR' instead of  And' to increase results pool
<ol>
<li>Currently all searches are AND'</li>
<li>Ex. ATT and 3g and Sony</li>
<li>New would allow ATT or 3g or Sony</li>
</ol>
</li>
<li>Text input box with URL graffiti loaded in it for editing to add new tags</li>
<li>Number of results displayed on page</li>
</ol>
<p>Below is a comp of some of these changes added into the interface. By no means is it perfect but it is a good start to adding some additional value to users. Click the image to see full size.</p>
<p style="text-align:center"><a href="http://www.techstartups.com/blog/wp-content/uploads/2009/11/engadget_mock_up.png"><img style="margin-left:10px;margin-right:10px" title="engadget_mock_up" src="http://www.techstartups.com/blog/wp-content/uploads/2009/11/engadget_mock_up-1024x534.png" alt="engadget_mock_up" width="621" height="323"></a></p>
<p>For your next client or startup keep this URL graffiti approach in mind as an efficient way to solve content filtering. If it is built in from the beginning you can ensure that you are creating a continued value, even if diminishing, for your content. Let your users throw some graffiti on your work.</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/a9907e61-47fd-42ad-b4d1-4f2c6f0e70c9/"><img style="border:medium none;float:right" src="http://img.zemanta.com/reblog_e.png?x-id=a9907e61-47fd-42ad-b4d1-4f2c6f0e70c9" alt="Reblog this post [with Zemanta]"></a><span></span></div>
<p><a href="http://www.techstartups.com/2009/11/23/url-graffiti-from-engadget/">URL Graffiti From Engadget</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/advanced-search/" rel="tag">advanced search</a> <a style="display:inline" href="http://www.techstartups.com/tag/advanced-search/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/command-line-search/" rel="tag">command line search</a> <a style="display:inline" href="http://www.techstartups.com/tag/command-line-search/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/engadget/" rel="tag">engadget</a> <a style="display:inline" href="http://www.techstartups.com/tag/engadget/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/engadget-redesign/" rel="tag">Engadget redesign</a> <a style="display:inline" href="http://www.techstartups.com/tag/engadget-redesign/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/engadget-tags/" rel="tag">engadget tags</a> <a style="display:inline" href="http://www.techstartups.com/tag/engadget-tags/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/information-retrieval/" rel="tag">Information retrieval</a> <a style="display:inline" href="http://www.techstartups.com/tag/information-retrieval/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/search-functionality/" rel="tag">search functionality</a> <a style="display:inline" href="http://www.techstartups.com/tag/search-functionality/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/taggery/" rel="tag">taggery</a> <a style="display:inline" href="http://www.techstartups.com/tag/taggery/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/url-graffiti/" rel="tag">URL graffiti</a> <a style="display:inline" href="http://www.techstartups.com/tag/url-graffiti/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/usability/" rel="tag">Usability</a> <a style="display:inline" href="http://www.techstartups.com/tag/usability/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/engadget">engadget</a> <a href="http://www.technorati.com/tag/engadget"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/engadget.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/graffiti">graffiti</a> <a href="http://www.technorati.com/tag/graffiti"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/graffiti.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/content">content</a> <a href="http://www.technorati.com/tag/content"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/content.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/url">url</a> <a href="http://www.technorati.com/tag/url"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/url.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/att">att</a> <a href="http://www.technorati.com/tag/att"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/att.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></content:encoded>

         <pubDate>Mon, 23 Nov 2009 15:36:42 -0500</pubDate>         <guid isPermaLink="false">tag:croncast.com,5779</guid>

			<itunes:subtitle/>
      </item>
      <item>
         <title>WordPress 3.0 Wish List</title>
         <link>http://www.techstartups.com/2009/11/25/wordpress-3-0-wish-list/</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><span><a rel="attachment wp-att-4844" href="http://www.techstartups.com/2009/11/25/wordpress-3-0-wish-list/wordpess/"><img style="margin-left:10px;margin-right:10px" title="wordpess" src="http://www.techstartups.com/blog/wp-content/uploads/2009/11/wordpess.png" alt="wordpess" width="244" height="60"></a>With the imminent release of <a title="WordPress" rel="homepage" href="http://wordpress.org">WordPress</a> version 2.9 on the horizon and my subsequent lack of excitement, it only seems fitting to put together a wish list for the next version. It is even more fitting since <a href="http://raanan.com/">Raanan</a> (<a href="http://twitter.com/raanan">@raanan</a>) asked, </span>What's on your wishlist for 3.0 ?</p>
<p><strong><span></span></strong></p>
<p><span>I partially answered that question in the comments with the following:</span></p>
<ol style="padding-left:60px">
<li>Semantic integration with <a title="Zemanta" rel="homepage" href="http://www.zemanta.com">Zemanta</a> or <a title="OpenCalais" rel="homepage" href="http://www.opencalais.com">OpenCalais</a>
<ol>
<li>This would be like having a librarian with a fancy masters degree in categorizing everything on the planet riding shotgun with you while you write.</li>
</ol>
</li>
<li> WordPress recommended vocabulary for categories
<ol>
<li>This could mirror NYT Open Linked Data RDF or other semantic tools</li>
</ol>
</li>
<li>Image upload and modal window to open in advanced mode for properties control
<ol>
<li>This could be a combo of both tabs but something more powerful from the first time the window opens so that users don't need to perform multiple actions to add padding or custom links to images</li>
</ol>
</li>
<li>Feed only choice for publishing posts
<ol>
<li>This doesn't have to be authenticated and would work by same rules with tags, categories, etc. to syndicate for apps or widgets</li>
<li>Imagine being able to use WP as a CMS to manage the data that is delivered to mobile apps on the iPhone, Android, Blackberry or Palm as one standard</li>
</ol>
</li>
</ol>
<p style="padding-left:60px">In addition to these four I have some more wishes for this list</p>
<ol style="padding-left:60px">
<li>The return of horizontal navigation to the administration panel or the option to choose vertical left side or horizontal suckerfish style</li>
<li>Integrated gallery function for display in themes
<ol>
<li>Yes, there are plenty of plugins to do this but some of that code like the integration of the fabulous WPTouch mobile theme into central codebase would be huge</li>
</ol>
</li>
<li>WordPress.org installs that allow for gravatar uploads through profiles
<ol>
<li>Hook this into the .com API and welcome these users into the fold</li>
<li>This could turn out to be a great way to make them familiar with the .com platform</li>
<li>But mainly so users can swap them on the fly with their own installs</li>
</ol>
</li>
<li>Content libraries from media companies
<ol>
<li>Stock photos, video, quotes
<ol>
<li>A new API component to allow multiple third parties to supply this content</li>
</ol>
</li>
</ol>
</li>
</ol>
<p>I'm sure that over the next few weeks I will think about this some more and come up with a couple other ideas. But for now, what's on your wishlist for 3.0 ?</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/817351e1-09a0-4974-92f0-6629d8190f2a/"><img style="border:medium none;float:right" src="http://img.zemanta.com/reblog_e.png?x-id=817351e1-09a0-4974-92f0-6629d8190f2a" alt="Reblog this post [with Zemanta]"></a><span></span></div>
<p><a href="http://www.techstartups.com/2009/11/25/wordpress-3-0-wish-list/">WordPress 3.0 Wish List</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/calais/" rel="tag">calais</a> <a style="display:inline" href="http://www.techstartups.com/tag/calais/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-wordpress/" rel="tag">iPhone wordpress</a> <a style="display:inline" href="http://www.techstartups.com/tag/iphone-wordpress/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/mobile-blogging/" rel="tag">mobile blogging</a> <a style="display:inline" href="http://www.techstartups.com/tag/mobile-blogging/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/opencalais/" rel="tag">opencalais</a> <a style="display:inline" href="http://www.techstartups.com/tag/opencalais/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/wordpress-2-9/" rel="tag">wordpress 2.9</a> <a style="display:inline" href="http://www.techstartups.com/tag/wordpress-2-9/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/wordpress-3-0/" rel="tag">wordpress 3.0</a> <a style="display:inline" href="http://www.techstartups.com/tag/wordpress-3-0/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/wptouch/" rel="tag">WPTouch</a> <a style="display:inline" href="http://www.techstartups.com/tag/wptouch/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/zemanta/" rel="tag">Zemanta</a> <a style="display:inline" href="http://www.techstartups.com/tag/zemanta/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/wordpress">wordpress</a> <a href="http://www.technorati.com/tag/wordpress"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/wordpress.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/list">list</a> <a href="http://www.technorati.com/tag/list"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/list.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/users">users</a> <a href="http://www.technorati.com/tag/users"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/users.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/wish">wish</a> <a href="http://www.technorati.com/tag/wish"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/wish.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><span><a rel="attachment wp-att-4844" href="http://www.techstartups.com/2009/11/25/wordpress-3-0-wish-list/wordpess/"><img style="margin-left:10px;margin-right:10px" title="wordpess" src="http://www.techstartups.com/blog/wp-content/uploads/2009/11/wordpess.png" alt="wordpess" width="244" height="60"></a>With the imminent release of <a title="WordPress" rel="homepage" href="http://wordpress.org">WordPress</a> version 2.9 on the horizon and my subsequent lack of excitement, it only seems fitting to put together a wish list for the next version. It is even more fitting since <a href="http://raanan.com/">Raanan</a> (<a href="http://twitter.com/raanan">@raanan</a>) asked, </span>What's on your wishlist for 3.0 ?</p>
<p><strong><span></span></strong></p>
<p><span>I partially answered that question in the comments with the following:</span></p>
<ol style="padding-left:60px">
<li>Semantic integration with <a title="Zemanta" rel="homepage" href="http://www.zemanta.com">Zemanta</a> or <a title="OpenCalais" rel="homepage" href="http://www.opencalais.com">OpenCalais</a>
<ol>
<li>This would be like having a librarian with a fancy masters degree in categorizing everything on the planet riding shotgun with you while you write.</li>
</ol>
</li>
<li> WordPress recommended vocabulary for categories
<ol>
<li>This could mirror NYT Open Linked Data RDF or other semantic tools</li>
</ol>
</li>
<li>Image upload and modal window to open in advanced mode for properties control
<ol>
<li>This could be a combo of both tabs but something more powerful from the first time the window opens so that users don't need to perform multiple actions to add padding or custom links to images</li>
</ol>
</li>
<li>Feed only choice for publishing posts
<ol>
<li>This doesn't have to be authenticated and would work by same rules with tags, categories, etc. to syndicate for apps or widgets</li>
<li>Imagine being able to use WP as a CMS to manage the data that is delivered to mobile apps on the iPhone, Android, Blackberry or Palm as one standard</li>
</ol>
</li>
</ol>
<p style="padding-left:60px">In addition to these four I have some more wishes for this list</p>
<ol style="padding-left:60px">
<li>The return of horizontal navigation to the administration panel or the option to choose vertical left side or horizontal suckerfish style</li>
<li>Integrated gallery function for display in themes
<ol>
<li>Yes, there are plenty of plugins to do this but some of that code like the integration of the fabulous WPTouch mobile theme into central codebase would be huge</li>
</ol>
</li>
<li>WordPress.org installs that allow for gravatar uploads through profiles
<ol>
<li>Hook this into the .com API and welcome these users into the fold</li>
<li>This could turn out to be a great way to make them familiar with the .com platform</li>
<li>But mainly so users can swap them on the fly with their own installs</li>
</ol>
</li>
<li>Content libraries from media companies
<ol>
<li>Stock photos, video, quotes
<ol>
<li>A new API component to allow multiple third parties to supply this content</li>
</ol>
</li>
</ol>
</li>
</ol>
<p>I'm sure that over the next few weeks I will think about this some more and come up with a couple other ideas. But for now, what's on your wishlist for 3.0 ?</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/817351e1-09a0-4974-92f0-6629d8190f2a/"><img style="border:medium none;float:right" src="http://img.zemanta.com/reblog_e.png?x-id=817351e1-09a0-4974-92f0-6629d8190f2a" alt="Reblog this post [with Zemanta]"></a><span></span></div>
<p><a href="http://www.techstartups.com/2009/11/25/wordpress-3-0-wish-list/">WordPress 3.0 Wish List</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/calais/" rel="tag">calais</a> <a style="display:inline" href="http://www.techstartups.com/tag/calais/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-wordpress/" rel="tag">iPhone wordpress</a> <a style="display:inline" href="http://www.techstartups.com/tag/iphone-wordpress/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/mobile-blogging/" rel="tag">mobile blogging</a> <a style="display:inline" href="http://www.techstartups.com/tag/mobile-blogging/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/opencalais/" rel="tag">opencalais</a> <a style="display:inline" href="http://www.techstartups.com/tag/opencalais/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/wordpress-2-9/" rel="tag">wordpress 2.9</a> <a style="display:inline" href="http://www.techstartups.com/tag/wordpress-2-9/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/wordpress-3-0/" rel="tag">wordpress 3.0</a> <a style="display:inline" href="http://www.techstartups.com/tag/wordpress-3-0/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/wptouch/" rel="tag">WPTouch</a> <a style="display:inline" href="http://www.techstartups.com/tag/wptouch/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/zemanta/" rel="tag">Zemanta</a> <a style="display:inline" href="http://www.techstartups.com/tag/zemanta/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/wordpress">wordpress</a> <a href="http://www.technorati.com/tag/wordpress"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/wordpress.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/list">list</a> <a href="http://www.technorati.com/tag/list"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/list.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/users">users</a> <a href="http://www.technorati.com/tag/users"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/users.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/wish">wish</a> <a href="http://www.technorati.com/tag/wish"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/wish.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></content:encoded>

         <pubDate>Wed, 25 Nov 2009 19:06:29 -0500</pubDate>         <guid isPermaLink="false">tag:croncast.com,5784</guid>

			<itunes:subtitle/>
      </item>
      <item>
         <title>How To Get Inspired</title>
         <link>http://www.techstartups.com/2009/11/26/how-to-get-inspired/</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-4928" href="http://www.techstartups.com/2009/11/26/how-to-get-inspired/picture-82/"><img style="margin-left:10px;margin-right:10px" title="Picture 82" src="http://www.techstartups.com/blog/wp-content/uploads/2009/11/Picture-82-300x191.png" alt="Picture 82" width="300" height="191"></a>I am a huge fan of unconventional problem solving and taking approaches to situations that aren't populist. Doing so often requires inspiration from another source unrelated to the matter at hand.</p>
<p>Finding that inspiration is as easy as looking around for a place to stand that you have never stood before. A simple change in perspective is all that it can take to trigger something within you.</p>
<p><strong><span></span></strong>.</p>
<p><strong>Example: A Place To Stand</strong></p>
<p>About twice a year I to get some inspiration I stand in a different place online. Since I spend most of my time in front of a computer and the ambient transiency in my space is pretty static I'll stand on the corner of internet and <a href="http://www.jeffbridges.com/"><span>Jeff Bridges</span> dot com</a> and visit<a href="http://jeffbridges.com/latestnov09.html"> his latest posts</a>.</p>
<p>Bridges' website is an exercise in the basics of human communication with static images and image map links to other content but the simplicity is amazingly effective. Why? Because the web has come become a complicated mess of information and displays that vie for attention while Bridges keeps it simple. The site is art.</p>
<p>The effectiveness is deduction of distilling a message down to a graphic is reminiscent of something that <a title="Madison Avenue" rel="wikipedia" href="http://en.wikipedia.org/wiki/Madison_Avenue">Madison Avenue</a> creatives would crank out for a print campaign. With simple copy in the images that he creates they're easier to grasp than a Tweet. The visual tapestry that Bridges creates is linear like a blog, textured like a painting and conversive like asking your grandmother about her past.</p>
<p>What Bridges has done with his personal site is so far from the norm that it has taken me nearly 250 words to describe. I should have done it with an image instead!</p>
<p>Whether you are planning your next startup, in the middle of one or looking to do a site redesign it is helpful to find the right sources of inspiration. Often they are at the very edges of your comfort zone and occasionally just beyond it. Let them gestate and the assimilate them when the time is right.</p>
<p>Photo credit: Screen shot from <a href="http://www.jeffbridges.com">www.jeffbridges.com</a></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/b1a309f8-b549-426c-a3f9-9b3c3f777136/"><img style="border:medium none;float:right" src="http://img.zemanta.com/reblog_e.png?x-id=b1a309f8-b549-426c-a3f9-9b3c3f777136" alt="Reblog this post [with Zemanta]"></a><span></span></div>
<p><a href="http://www.techstartups.com/2009/11/26/how-to-get-inspired/">How To Get Inspired</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/comfort-zone/" rel="tag">comfort zone</a> <a style="display:inline" href="http://www.techstartups.com/tag/comfort-zone/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/how-to-get-inspired/" rel="tag">how to get inspired</a> <a style="display:inline" href="http://www.techstartups.com/tag/how-to-get-inspired/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/image-map/" rel="tag">image map</a> <a style="display:inline" href="http://www.techstartups.com/tag/image-map/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/insipiration/" rel="tag">insipiration</a> <a style="display:inline" href="http://www.techstartups.com/tag/insipiration/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/jeff-bridges/" rel="tag">Jeff Bridges</a> <a style="display:inline" href="http://www.techstartups.com/tag/jeff-bridges/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/madison-avenue/" rel="tag">madison avenue</a> <a style="display:inline" href="http://www.techstartups.com/tag/madison-avenue/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/bridges">bridges</a> <a href="http://www.technorati.com/tag/bridges"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/bridges.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/stand">stand</a> <a href="http://www.technorati.com/tag/stand"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/stand.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/inspiration">inspiration</a> <a href="http://www.technorati.com/tag/inspiration"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/inspiration.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/simple">simple</a> <a href="http://www.technorati.com/tag/simple"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/simple.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/image">image</a> <a href="http://www.technorati.com/tag/image"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/image.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-4928" href="http://www.techstartups.com/2009/11/26/how-to-get-inspired/picture-82/"><img style="margin-left:10px;margin-right:10px" title="Picture 82" src="http://www.techstartups.com/blog/wp-content/uploads/2009/11/Picture-82-300x191.png" alt="Picture 82" width="300" height="191"></a>I am a huge fan of unconventional problem solving and taking approaches to situations that aren't populist. Doing so often requires inspiration from another source unrelated to the matter at hand.</p>
<p>Finding that inspiration is as easy as looking around for a place to stand that you have never stood before. A simple change in perspective is all that it can take to trigger something within you.</p>
<p><strong><span></span></strong>.</p>
<p><strong>Example: A Place To Stand</strong></p>
<p>About twice a year I to get some inspiration I stand in a different place online. Since I spend most of my time in front of a computer and the ambient transiency in my space is pretty static I'll stand on the corner of internet and <a href="http://www.jeffbridges.com/"><span>Jeff Bridges</span> dot com</a> and visit<a href="http://jeffbridges.com/latestnov09.html"> his latest posts</a>.</p>
<p>Bridges' website is an exercise in the basics of human communication with static images and image map links to other content but the simplicity is amazingly effective. Why? Because the web has come become a complicated mess of information and displays that vie for attention while Bridges keeps it simple. The site is art.</p>
<p>The effectiveness is deduction of distilling a message down to a graphic is reminiscent of something that <a title="Madison Avenue" rel="wikipedia" href="http://en.wikipedia.org/wiki/Madison_Avenue">Madison Avenue</a> creatives would crank out for a print campaign. With simple copy in the images that he creates they're easier to grasp than a Tweet. The visual tapestry that Bridges creates is linear like a blog, textured like a painting and conversive like asking your grandmother about her past.</p>
<p>What Bridges has done with his personal site is so far from the norm that it has taken me nearly 250 words to describe. I should have done it with an image instead!</p>
<p>Whether you are planning your next startup, in the middle of one or looking to do a site redesign it is helpful to find the right sources of inspiration. Often they are at the very edges of your comfort zone and occasionally just beyond it. Let them gestate and the assimilate them when the time is right.</p>
<p>Photo credit: Screen shot from <a href="http://www.jeffbridges.com">www.jeffbridges.com</a></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/b1a309f8-b549-426c-a3f9-9b3c3f777136/"><img style="border:medium none;float:right" src="http://img.zemanta.com/reblog_e.png?x-id=b1a309f8-b549-426c-a3f9-9b3c3f777136" alt="Reblog this post [with Zemanta]"></a><span></span></div>
<p><a href="http://www.techstartups.com/2009/11/26/how-to-get-inspired/">How To Get Inspired</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/comfort-zone/" rel="tag">comfort zone</a> <a style="display:inline" href="http://www.techstartups.com/tag/comfort-zone/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/how-to-get-inspired/" rel="tag">how to get inspired</a> <a style="display:inline" href="http://www.techstartups.com/tag/how-to-get-inspired/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/image-map/" rel="tag">image map</a> <a style="display:inline" href="http://www.techstartups.com/tag/image-map/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/insipiration/" rel="tag">insipiration</a> <a style="display:inline" href="http://www.techstartups.com/tag/insipiration/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/jeff-bridges/" rel="tag">Jeff Bridges</a> <a style="display:inline" href="http://www.techstartups.com/tag/jeff-bridges/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/madison-avenue/" rel="tag">madison avenue</a> <a style="display:inline" href="http://www.techstartups.com/tag/madison-avenue/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/bridges">bridges</a> <a href="http://www.technorati.com/tag/bridges"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/bridges.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/stand">stand</a> <a href="http://www.technorati.com/tag/stand"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/stand.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/inspiration">inspiration</a> <a href="http://www.technorati.com/tag/inspiration"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/inspiration.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/simple">simple</a> <a href="http://www.technorati.com/tag/simple"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/simple.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/image">image</a> <a href="http://www.technorati.com/tag/image"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/image.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></content:encoded>

         <pubDate>Thu, 26 Nov 2009 19:09:57 -0500</pubDate>         <guid isPermaLink="false">tag:croncast.com,5786</guid>

			<itunes:subtitle/>
      </item>
      <item>
         <title>PHP simplexml_load_file for Photos</title>
         <link>http://www.techstartups.com/2009/11/16/3693/</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-3705" href="http://www.techstartups.com/2009/11/16/3693/pier/"><img style="margin-left:10px;margin-right:10px" title="pier" src="http://www.techstartups.com/blog/wp-content/uploads/2009/11/pier-300x199.jpg" alt="pier" width="300" height="199"></a>While I'm riding this photo wave I thought I would throw out a post for the coders in the house. I am an unabashed supporter tow things  RSS and <a title="Flickr" rel="homepage" href="http://flickr.com">Flickr</a>. When they are both put together they make a magnificent pair.</p>
<p>To demonstrate why they are such a great pair together I put together a bit of code that can make working with Flickr photos a breeze. It is the same code that I wrote that made its way into the self-hosted life streaming software <a title="Sweetcron" rel="homepage" href="http://sweetcron.com/">SweetCron</a>.</p>
<p>It is written in PHP but those that do real coding for a living can take a look at it and get the concept pretty quick. With that being said, I will make even easier by pointing out that due to a good naming convention that Flickr uses to organize photos by size it is possible to access all of them quickly without using the full tokenized API. Which, btw, requires more pings to get the same data the feeds offer.</p>
<p><span></span></p>
<p>We'll use the PHP function simplexml_load_file to get access to the photo goodness that is resting in the feed. The RSS feeds from Flickr are in a standard format so the code below will work with any of them. However, it won't work for the <a title="Atom (standard)" rel="wikipedia" href="http://en.wikipedia.org/wiki/Atom_%28standard%29">Atom feeds</a>. I'm sure you could get crazy and figure out an Atom hack if you wanted. Good luck.</p>
<p>Here's how it can be done with PHP and a Flickr user feed:<br>
<code><br>
$feed = simplexml_load_file("URL_to_Flickr_Feed");</code><br>
<code><br>
// Check to see if the response was loaded, else print an error<br>
if ($feed) {<br>
$results = '';</code><br>
<code><br>
// If the response was loaded, parse it and build links<br>
foreach($feed-&gt;channel-&gt;item as $item) {<br>
$media  = $item-&gt;children(&#39;http://search.yahoo.com/mrss/&#39;);<br>
<code><br>
// Photo Thumbnail<br>
$sPhoto  = $media-&gt;thumbnail-&gt;attributes();<br>
$url    = (string) $sPhoto['url'];<br>
$width  = (string) $sPhoto['width'];<br>
$height = (string) $sPhoto['height'];<br>
//<br>
<code><br>
// Photo Medium (500 px wide standard)<br>
$mphoto = substr($sPhoto, 0, -5);<br>
$mphoto = $mphoto . "m.jpg";<br>
<code><br>
// Photo Large (original size)<br>
$lPhoto  = $media-&gt;content-&gt;attributes();<br>
$lurl    = (string) $lPhoto['url'];<br>
$lwidth  = (string) $lPhoto['width'];<br>
$lheight = (string) $lPhoto['height'];<br>
$lphoto = substr($lPhoto, 0, -5);<br>
$lphoto = $lphoto . "o.jpg";<br>
//<br>
<code><br>
echo $sPhoto; // thumbnail url<br>
echo $mphoto; // medium size url<br>
echo $lphoto; // large size url<br>
<code><br>
}<br>
} else {<code><br>
echo "Broken Feed";<br>
}</code></code></code></code></code></code></code></p>
<p>Hopefully this will give someone a jump start in how to transfer large images quickly, say between a photo journalist and an editor half a world away without having to make any other tools than a special XML feed from the Flickr feed. Literally for the $24.95 yearly fee to use Flickr Pro it could be used as a global syndication system.</p>
<p>In the right hands this way of working with Flickr feeds could yield great hacks for devices like the Chumby. Take it one step further for use in digital picture frames as playlists that can be embedded or run from memory cards. I'm just saying these are possibilities.</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/c4b4f95d-42c1-4086-a76e-5844f96e2d6a/"><img style="border:medium none;float:right" src="http://img.zemanta.com/reblog_e.png?x-id=c4b4f95d-42c1-4086-a76e-5844f96e2d6a" alt="Reblog this post [with Zemanta]"></a><span></span></div>
<p><a href="http://www.techstartups.com/2009/11/16/3693/">PHP simplexml_load_file for Photos</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/api/" rel="tag">api</a> <a style="display:inline" href="http://www.techstartups.com/tag/api/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/digital-picture-frames/" rel="tag">digital picture frames</a> <a style="display:inline" href="http://www.techstartups.com/tag/digital-picture-frames/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/flickr-feeds/" rel="tag">flickr feeds</a> <a style="display:inline" href="http://www.techstartups.com/tag/flickr-feeds/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/flickr-rss/" rel="tag">flickr rss</a> <a style="display:inline" href="http://www.techstartups.com/tag/flickr-rss/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/php-simplexml_load_file/" rel="tag">php simplexml_load_file</a> <a style="display:inline" href="http://www.techstartups.com/tag/php-simplexml_load_file/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/rss-feeds/" rel="tag">RSS feeds</a> <a style="display:inline" href="http://www.techstartups.com/tag/rss-feeds/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/sweetcron/" rel="tag">sweetcron</a> <a style="display:inline" href="http://www.techstartups.com/tag/sweetcron/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/flickr">flickr</a> <a href="http://www.technorati.com/tag/flickr"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/flickr.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/feed">feed</a> <a href="http://www.technorati.com/tag/feed"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/feed.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/lphoto">lphoto</a> <a href="http://www.technorati.com/tag/lphoto"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/lphoto.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/url">url</a> <a href="http://www.technorati.com/tag/url"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/url.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/gt">gt</a> <a href="http://www.technorati.com/tag/gt"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/gt.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-3705" href="http://www.techstartups.com/2009/11/16/3693/pier/"><img style="margin-left:10px;margin-right:10px" title="pier" src="http://www.techstartups.com/blog/wp-content/uploads/2009/11/pier-300x199.jpg" alt="pier" width="300" height="199"></a>While I'm riding this photo wave I thought I would throw out a post for the coders in the house. I am an unabashed supporter tow things  RSS and <a title="Flickr" rel="homepage" href="http://flickr.com">Flickr</a>. When they are both put together they make a magnificent pair.</p>
<p>To demonstrate why they are such a great pair together I put together a bit of code that can make working with Flickr photos a breeze. It is the same code that I wrote that made its way into the self-hosted life streaming software <a title="Sweetcron" rel="homepage" href="http://sweetcron.com/">SweetCron</a>.</p>
<p>It is written in PHP but those that do real coding for a living can take a look at it and get the concept pretty quick. With that being said, I will make even easier by pointing out that due to a good naming convention that Flickr uses to organize photos by size it is possible to access all of them quickly without using the full tokenized API. Which, btw, requires more pings to get the same data the feeds offer.</p>
<p><span></span></p>
<p>We'll use the PHP function simplexml_load_file to get access to the photo goodness that is resting in the feed. The RSS feeds from Flickr are in a standard format so the code below will work with any of them. However, it won't work for the <a title="Atom (standard)" rel="wikipedia" href="http://en.wikipedia.org/wiki/Atom_%28standard%29">Atom feeds</a>. I'm sure you could get crazy and figure out an Atom hack if you wanted. Good luck.</p>
<p>Here's how it can be done with PHP and a Flickr user feed:<br>
<code><br>
$feed = simplexml_load_file("URL_to_Flickr_Feed");</code><br>
<code><br>
// Check to see if the response was loaded, else print an error<br>
if ($feed) {<br>
$results = '';</code><br>
<code><br>
// If the response was loaded, parse it and build links<br>
foreach($feed-&gt;channel-&gt;item as $item) {<br>
$media  = $item-&gt;children(&#39;http://search.yahoo.com/mrss/&#39;);<br>
<code><br>
// Photo Thumbnail<br>
$sPhoto  = $media-&gt;thumbnail-&gt;attributes();<br>
$url    = (string) $sPhoto['url'];<br>
$width  = (string) $sPhoto['width'];<br>
$height = (string) $sPhoto['height'];<br>
//<br>
<code><br>
// Photo Medium (500 px wide standard)<br>
$mphoto = substr($sPhoto, 0, -5);<br>
$mphoto = $mphoto . "m.jpg";<br>
<code><br>
// Photo Large (original size)<br>
$lPhoto  = $media-&gt;content-&gt;attributes();<br>
$lurl    = (string) $lPhoto['url'];<br>
$lwidth  = (string) $lPhoto['width'];<br>
$lheight = (string) $lPhoto['height'];<br>
$lphoto = substr($lPhoto, 0, -5);<br>
$lphoto = $lphoto . "o.jpg";<br>
//<br>
<code><br>
echo $sPhoto; // thumbnail url<br>
echo $mphoto; // medium size url<br>
echo $lphoto; // large size url<br>
<code><br>
}<br>
} else {<code><br>
echo "Broken Feed";<br>
}</code></code></code></code></code></code></code></p>
<p>Hopefully this will give someone a jump start in how to transfer large images quickly, say between a photo journalist and an editor half a world away without having to make any other tools than a special XML feed from the Flickr feed. Literally for the $24.95 yearly fee to use Flickr Pro it could be used as a global syndication system.</p>
<p>In the right hands this way of working with Flickr feeds could yield great hacks for devices like the Chumby. Take it one step further for use in digital picture frames as playlists that can be embedded or run from memory cards. I'm just saying these are possibilities.</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/c4b4f95d-42c1-4086-a76e-5844f96e2d6a/"><img style="border:medium none;float:right" src="http://img.zemanta.com/reblog_e.png?x-id=c4b4f95d-42c1-4086-a76e-5844f96e2d6a" alt="Reblog this post [with Zemanta]"></a><span></span></div>
<p><a href="http://www.techstartups.com/2009/11/16/3693/">PHP simplexml_load_file for Photos</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/api/" rel="tag">api</a> <a style="display:inline" href="http://www.techstartups.com/tag/api/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/digital-picture-frames/" rel="tag">digital picture frames</a> <a style="display:inline" href="http://www.techstartups.com/tag/digital-picture-frames/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/flickr-feeds/" rel="tag">flickr feeds</a> <a style="display:inline" href="http://www.techstartups.com/tag/flickr-feeds/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/flickr-rss/" rel="tag">flickr rss</a> <a style="display:inline" href="http://www.techstartups.com/tag/flickr-rss/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/php-simplexml_load_file/" rel="tag">php simplexml_load_file</a> <a style="display:inline" href="http://www.techstartups.com/tag/php-simplexml_load_file/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/rss-feeds/" rel="tag">RSS feeds</a> <a style="display:inline" href="http://www.techstartups.com/tag/rss-feeds/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/sweetcron/" rel="tag">sweetcron</a> <a style="display:inline" href="http://www.techstartups.com/tag/sweetcron/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/flickr">flickr</a> <a href="http://www.technorati.com/tag/flickr"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/flickr.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/feed">feed</a> <a href="http://www.technorati.com/tag/feed"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/feed.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/lphoto">lphoto</a> <a href="http://www.technorati.com/tag/lphoto"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/lphoto.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/url">url</a> <a href="http://www.technorati.com/tag/url"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/url.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/gt">gt</a> <a href="http://www.technorati.com/tag/gt"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/gt.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></content:encoded>

         <pubDate>Mon, 16 Nov 2009 20:37:22 -0500</pubDate>         <guid isPermaLink="false">tag:croncast.com,5747</guid>

			<itunes:subtitle/>
      </item>
      <item>
         <title>Google Reader and The Osmotic Learner</title>
         <link>http://www.techstartups.com/2009/11/13/google-reader-the-osmotic-learner/</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>User: Taminania<br>
Location: Norway<br>
Occupation: Psychologist</p>
<p>These sound like the character sketch for the lead in a science fiction piece about some <a title="Dystopia" rel="wikipedia" href="http://en.wikipedia.org/wiki/Dystopia">dystopian</a> future. Maybe a future ruled through a bot-mediated reality? Sorry, just had to touch on yesterday's post about that.</p>
<p>The information above is <a href="http://www.google.com/profiles/tamihania">true in fact</a>. She is a social psychologist in <a title="Oslo" rel="geolocation" href="http://maps.google.com/maps?ll=59.9494444444,10.7563888889&amp;spn=0.1,0.1&amp;q=59.9494444444,10.7563888889%20%28Oslo%29&amp;t=h">Oslo</a>, Norway that goes by the user name Taminania on <a title="Google Reader" rel="wikipedia" href="http://en.wikipedia.org/wiki/Google_Reader">Google Reader</a>. And she shares about 20 blog posts on average from her subscription list daily. I have never met or spoken with Taminania but she is a rock star in my world. A smart rock star.</p>
<p><a rel="attachment wp-att-3511" href="http://www.techstartups.com/2009/11/13/google-reader-the-osmotic-learner/reader2/"><img style="margin-left:10px;margin-right:10px" title="reader2" src="http://www.techstartups.com/blog/wp-content/uploads/2009/11/reader2.jpg" alt="reader2" width="130" height="130"></a>She isn't the leader of a rogue group fighting for survival in the aforementioned dystopian world. She is a passionate psychologist that seeks out high quality content online in her field then shares it online. In this sharing process the door opens wide to accept her recommendations, nearly tacit, that allow those that come across her Google Reader shared feed enlightened.</p>
<p>In every example of the site that I have built to capture and continue filtering her shared feed, and that of about 59 others, I talk about her shares. By filtering the master feed that Taminania creates through daily user activity I am able to glean what I find most valuable and let the rest flow on by.</p>
<p><span></span></p>
<p><strong>Example: </strong></p>
<p>I have created a group called Taminania Science. Where I filter down the entire content database to shares from Tamihania, from any publisher and with the keywords  augmented, brain, reality, science, research.</p>
<p><strong>Which currently yields the following results:</strong></p>
<ol>
<li><a title="Make Memories, New Neurons" href="http://www.sciencedaily.com/releases/2009/11/091112121601.htm">To Make Memories, New Neurons Must Erase Older Ones</a></li>
<li><span><a href="http://www.eurekalert.org/pub_releases/2009-11/plos-fsi110609.php">Foreign subtitles improve speech perception</a></span></li>
<li><a href="http://www.psychologytoday.com/blog/the-literary-mind/200911/why-do-we-dream">Why Do We Dream?</a></li>
<li><a href="http://feedproxy.google.com/%7Er/DumbLittleMan/%7E3/vDxwkTNTrJI/are-you-treating-your-computer-better.html">Are You Treating Your Computer Better Than You Treat Yourself?</a></li>
<li><span><a href="http://www.sciencedaily.com/releases/2009/11/091111123600.htm">New Brain Findings On Dyslexic Children: Good Readers Learn From Repeating Auditory Signals, Poor Readers Do Not</a></span></li>
<li><span><a href="http://thesituationist.wordpress.com/2009/11/12/geoffrey-cohen-on-%e2%80%9cidentity-belief-and-bias%e2%80%9d/">Geoffrey Cohen on Identity, Belief, and Bias</a></span></li>
<li><a href="http://feedproxy.google.com/%7Er/time/scienceandhealth/%7E3/l4y_AXhq_eE/0,8599,1938023,00.html">Bacteria in Gut Linked to Obesity; Western Diet a Factor</a></li>
</ol>
<p><strong>Compare this list her current (as of this moment)  full Google Reader shared feed:</strong></p>
<ol>
<li><a href="http://www.youtube.com/watch?v=n5bsQ_YDYCI&amp;feature=autoshare">Drop of water</a></li>
<li><a href="http://www.sciencedaily.com/releases/2009/11/091112121601.htm">To Make Memories, New Neurons Must Erase Older Ones</a></li>
<li><a href="http://www.techcrunch.com/2009/11/13/google-chrome-os-to-launch-within-a-week/">Google *Chrome OS* To Launch Within A Week</a></li>
<li><a href="http://www.psychologytoday.com/blog/the-happiness-project/200911/eleven-myths-de-cluttering">Eleven Myths of De-Cluttering.</a></li>
<li><a href="http://feedproxy.google.com/~r/Makeuseof/~3/QEAWTh9jxn0/">How To Easily Automate Backing Up Your Wordpress Blog</a></li>
<li><a href="http://feedproxy.google.com/~r/OpenCulture/~3/QfNmAqitGjc/a_new_tv_guide_for_internet_television.html">A New TV Guide for Internet Television</a></li>
<li><a href="http://artofgreatthings.com/2009/11/the-introverts-guide-to-people/">The Introvert's Guide to People</a></li>
</ol>
<p><span>Of all the links in the first list above I am not subscribed to a single of the publishers. I don't need to be to get the value of their content. However, I do need a guide like Taminania that has an understanding the topics and the drive to sort the quality content from these publishers. The other thing I need is the software to make it happen. In this case I built it for myself and would love to publicly release it. But in the current version it doesn't scale very well and has a tendency to crash my server. Who can make this happen for everyone?</span></p>
<p><span>The answer is simple  Google. What I have created are features and an automated advanced search that pulls from a pool of data. My pool is currently 43k items. Google's slightly larger. By a factor of 10k or more I am sure.</span></p>
<p><span>What I am able to learn from Taminania's shares in what is clearly not a dystopian reality comes to me from as close to osmosis as a human can get when it comes to information. In this version of the story we are all learners and we are all teachers. The only problem is that we don't have the tools we need to teach.</span></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/9895b3c4-ff5a-4a62-a29e-0c5ec33b8924/"><img style="border:medium none;float:right" src="http://img.zemanta.com/reblog_e.png?x-id=9895b3c4-ff5a-4a62-a29e-0c5ec33b8924" alt="Reblog this post [with Zemanta]"></a><span></span></div>
<p><a href="http://www.techstartups.com/2009/11/13/google-reader-the-osmotic-learner/">Google Reader and The Osmotic Learner</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/dystopian-future/" rel="tag">dystopian future</a> <a style="display:inline" href="http://www.techstartups.com/tag/dystopian-future/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/dystopina-reality/" rel="tag">dystopina reality</a> <a style="display:inline" href="http://www.techstartups.com/tag/dystopina-reality/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-reader/" rel="tag">google reader</a> <a style="display:inline" href="http://www.techstartups.com/tag/google-reader/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-reader-shared-fed/" rel="tag">google reader shared fed</a> <a style="display:inline" href="http://www.techstartups.com/tag/google-reader-shared-fed/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/oslo-norway/" rel="tag">oslo norway</a> <a style="display:inline" href="http://www.techstartups.com/tag/oslo-norway/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/osmosis-learning/" rel="tag">osmosis learning</a> <a style="display:inline" href="http://www.techstartups.com/tag/osmosis-learning/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/osmotic-learner/" rel="tag">osmotic learner</a> <a style="display:inline" href="http://www.techstartups.com/tag/osmotic-learner/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/psychologist-norway/" rel="tag">psychologist norway</a> <a style="display:inline" href="http://www.techstartups.com/tag/psychologist-norway/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/science-fiction/" rel="tag">science fiction</a> <a style="display:inline" href="http://www.techstartups.com/tag/science-fiction/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/taminania/" rel="tag">taminania</a> <a style="display:inline" href="http://www.techstartups.com/tag/taminania/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/taminania">taminania</a> <a href="http://www.technorati.com/tag/taminania"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/taminania.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/reader">reader</a> <a href="http://www.technorati.com/tag/reader"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/reader.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/shares">shares</a> <a href="http://www.technorati.com/tag/shares"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/shares.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/shared">shared</a> <a href="http://www.technorati.com/tag/shared"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/shared.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>User: Taminania<br>
Location: Norway<br>
Occupation: Psychologist</p>
<p>These sound like the character sketch for the lead in a science fiction piece about some <a title="Dystopia" rel="wikipedia" href="http://en.wikipedia.org/wiki/Dystopia">dystopian</a> future. Maybe a future ruled through a bot-mediated reality? Sorry, just had to touch on yesterday's post about that.</p>
<p>The information above is <a href="http://www.google.com/profiles/tamihania">true in fact</a>. She is a social psychologist in <a title="Oslo" rel="geolocation" href="http://maps.google.com/maps?ll=59.9494444444,10.7563888889&amp;spn=0.1,0.1&amp;q=59.9494444444,10.7563888889%20%28Oslo%29&amp;t=h">Oslo</a>, Norway that goes by the user name Taminania on <a title="Google Reader" rel="wikipedia" href="http://en.wikipedia.org/wiki/Google_Reader">Google Reader</a>. And she shares about 20 blog posts on average from her subscription list daily. I have never met or spoken with Taminania but she is a rock star in my world. A smart rock star.</p>
<p><a rel="attachment wp-att-3511" href="http://www.techstartups.com/2009/11/13/google-reader-the-osmotic-learner/reader2/"><img style="margin-left:10px;margin-right:10px" title="reader2" src="http://www.techstartups.com/blog/wp-content/uploads/2009/11/reader2.jpg" alt="reader2" width="130" height="130"></a>She isn't the leader of a rogue group fighting for survival in the aforementioned dystopian world. She is a passionate psychologist that seeks out high quality content online in her field then shares it online. In this sharing process the door opens wide to accept her recommendations, nearly tacit, that allow those that come across her Google Reader shared feed enlightened.</p>
<p>In every example of the site that I have built to capture and continue filtering her shared feed, and that of about 59 others, I talk about her shares. By filtering the master feed that Taminania creates through daily user activity I am able to glean what I find most valuable and let the rest flow on by.</p>
<p><span></span></p>
<p><strong>Example: </strong></p>
<p>I have created a group called Taminania Science. Where I filter down the entire content database to shares from Tamihania, from any publisher and with the keywords  augmented, brain, reality, science, research.</p>
<p><strong>Which currently yields the following results:</strong></p>
<ol>
<li><a title="Make Memories, New Neurons" href="http://www.sciencedaily.com/releases/2009/11/091112121601.htm">To Make Memories, New Neurons Must Erase Older Ones</a></li>
<li><span><a href="http://www.eurekalert.org/pub_releases/2009-11/plos-fsi110609.php">Foreign subtitles improve speech perception</a></span></li>
<li><a href="http://www.psychologytoday.com/blog/the-literary-mind/200911/why-do-we-dream">Why Do We Dream?</a></li>
<li><a href="http://feedproxy.google.com/%7Er/DumbLittleMan/%7E3/vDxwkTNTrJI/are-you-treating-your-computer-better.html">Are You Treating Your Computer Better Than You Treat Yourself?</a></li>
<li><span><a href="http://www.sciencedaily.com/releases/2009/11/091111123600.htm">New Brain Findings On Dyslexic Children: Good Readers Learn From Repeating Auditory Signals, Poor Readers Do Not</a></span></li>
<li><span><a href="http://thesituationist.wordpress.com/2009/11/12/geoffrey-cohen-on-%e2%80%9cidentity-belief-and-bias%e2%80%9d/">Geoffrey Cohen on Identity, Belief, and Bias</a></span></li>
<li><a href="http://feedproxy.google.com/%7Er/time/scienceandhealth/%7E3/l4y_AXhq_eE/0,8599,1938023,00.html">Bacteria in Gut Linked to Obesity; Western Diet a Factor</a></li>
</ol>
<p><strong>Compare this list her current (as of this moment)  full Google Reader shared feed:</strong></p>
<ol>
<li><a href="http://www.youtube.com/watch?v=n5bsQ_YDYCI&amp;feature=autoshare">Drop of water</a></li>
<li><a href="http://www.sciencedaily.com/releases/2009/11/091112121601.htm">To Make Memories, New Neurons Must Erase Older Ones</a></li>
<li><a href="http://www.techcrunch.com/2009/11/13/google-chrome-os-to-launch-within-a-week/">Google *Chrome OS* To Launch Within A Week</a></li>
<li><a href="http://www.psychologytoday.com/blog/the-happiness-project/200911/eleven-myths-de-cluttering">Eleven Myths of De-Cluttering.</a></li>
<li><a href="http://feedproxy.google.com/~r/Makeuseof/~3/QEAWTh9jxn0/">How To Easily Automate Backing Up Your Wordpress Blog</a></li>
<li><a href="http://feedproxy.google.com/~r/OpenCulture/~3/QfNmAqitGjc/a_new_tv_guide_for_internet_television.html">A New TV Guide for Internet Television</a></li>
<li><a href="http://artofgreatthings.com/2009/11/the-introverts-guide-to-people/">The Introvert's Guide to People</a></li>
</ol>
<p><span>Of all the links in the first list above I am not subscribed to a single of the publishers. I don't need to be to get the value of their content. However, I do need a guide like Taminania that has an understanding the topics and the drive to sort the quality content from these publishers. The other thing I need is the software to make it happen. In this case I built it for myself and would love to publicly release it. But in the current version it doesn't scale very well and has a tendency to crash my server. Who can make this happen for everyone?</span></p>
<p><span>The answer is simple  Google. What I have created are features and an automated advanced search that pulls from a pool of data. My pool is currently 43k items. Google's slightly larger. By a factor of 10k or more I am sure.</span></p>
<p><span>What I am able to learn from Taminania's shares in what is clearly not a dystopian reality comes to me from as close to osmosis as a human can get when it comes to information. In this version of the story we are all learners and we are all teachers. The only problem is that we don't have the tools we need to teach.</span></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/9895b3c4-ff5a-4a62-a29e-0c5ec33b8924/"><img style="border:medium none;float:right" src="http://img.zemanta.com/reblog_e.png?x-id=9895b3c4-ff5a-4a62-a29e-0c5ec33b8924" alt="Reblog this post [with Zemanta]"></a><span></span></div>
<p><a href="http://www.techstartups.com/2009/11/13/google-reader-the-osmotic-learner/">Google Reader and The Osmotic Learner</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/dystopian-future/" rel="tag">dystopian future</a> <a style="display:inline" href="http://www.techstartups.com/tag/dystopian-future/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/dystopina-reality/" rel="tag">dystopina reality</a> <a style="display:inline" href="http://www.techstartups.com/tag/dystopina-reality/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-reader/" rel="tag">google reader</a> <a style="display:inline" href="http://www.techstartups.com/tag/google-reader/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-reader-shared-fed/" rel="tag">google reader shared fed</a> <a style="display:inline" href="http://www.techstartups.com/tag/google-reader-shared-fed/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/oslo-norway/" rel="tag">oslo norway</a> <a style="display:inline" href="http://www.techstartups.com/tag/oslo-norway/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/osmosis-learning/" rel="tag">osmosis learning</a> <a style="display:inline" href="http://www.techstartups.com/tag/osmosis-learning/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/osmotic-learner/" rel="tag">osmotic learner</a> <a style="display:inline" href="http://www.techstartups.com/tag/osmotic-learner/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/psychologist-norway/" rel="tag">psychologist norway</a> <a style="display:inline" href="http://www.techstartups.com/tag/psychologist-norway/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/science-fiction/" rel="tag">science fiction</a> <a style="display:inline" href="http://www.techstartups.com/tag/science-fiction/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/taminania/" rel="tag">taminania</a> <a style="display:inline" href="http://www.techstartups.com/tag/taminania/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/taminania">taminania</a> <a href="http://www.technorati.com/tag/taminania"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/taminania.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/reader">reader</a> <a href="http://www.technorati.com/tag/reader"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/reader.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/shares">shares</a> <a href="http://www.technorati.com/tag/shares"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/shares.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/shared">shared</a> <a href="http://www.technorati.com/tag/shared"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/shared.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></content:encoded>

         <pubDate>Fri, 13 Nov 2009 14:59:40 -0500</pubDate>         <guid isPermaLink="false">tag:croncast.com,5729</guid>

			<itunes:subtitle/>
      </item>
      <item>
         <title>Flickr Desktop Uploadr for Photos</title>
         <link>http://www.techstartups.com/2009/11/16/flickr-desktop-uploadr-for-photos/</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-3634" href="http://www.techstartups.com/2009/11/16/flickr-desktop-uploadr-for-photos/picture-57/"><img style="margin-left:10px;margin-right:10px" title="Picture 57" src="http://www.techstartups.com/blog/wp-content/uploads/2009/11/Picture-57.png" alt="Picture 57" width="186" height="44"></a>If you're a Flickr user and not a <a title="Flickr Desktop Uploadr" href="http://www.flickr.com/tools/"><span>Flickr</span> Desktop Uploadr</a> user, you should be. It is the hidden gem of the heavily trafficked site and best friend of frequent uploaders.</p>
<p>The <a title="Flickr Desktop Uploadr" href="http://www.flickr.com/tools/"><span>Flickr</span> Uploadr</a> for desktop use have gone through changes over the years. It's reached its current maturity at 3.2.1 after being plagued with upload crashes, double uploads and copy loss for images. This version doesn't suffer likes its predecessors . . . well, not as much.</p>
<p>There still are occasional crashes but the Uploadr handles restarting better and will load up the last batch of photos for upload with their copy intact on restart. I've found this to be a more frequent issue if I am trying to upload photos to <a title="Flickr" rel="wikipedia" href="http://en.wikipedia.org/wiki/Flickr">Flickr</a> from a throttled internet connection with slow speeds. Cough, Time-Warner <a title="Road Runner High Speed Online" rel="wikipedia" href="http://en.wikipedia.org/wiki/Road_Runner_High_Speed_Online">Road Runner</a>, cough.</p>
<p><span></span></p>
<p>With that said, I've found the Uploadr the easiest way to get batch photos online with titles, descriptions, tags and grouped the way the I want them with privacy settings. Here's a peek for the uninitiated:</p>
<p style="text-align:center"><a rel="attachment wp-att-3633" href="http://www.techstartups.com/2009/11/16/flickr-desktop-uploadr-for-photos/picture-55/"><img title="Picture 55" src="http://www.techstartups.com/blog/wp-content/uploads/2009/11/Picture-55.png" alt="Picture 55" width="617" height="470"></a></p>
<p>With the ability to create groups like this and see them in left hand column I am able to more effectivley tell a story about each image as it relates to one another. To be honest, it is kind of fun to be able to create a <a title="Narrative" rel="wikipedia" href="http://en.wikipedia.org/wiki/Narrative">narrative</a> about a photo set that can be shared with viewers.</p>
<p>You'll also notice in the Description' box that the copy begins with two characters *^'. Well, as an added bonus of using the Flickr Uploadr to get photos on Flickr, I also use it as a front-end to insert photos on my own blog and to also send links to them on Twitter.</p>
<p>With the use of the magic <span>API</span>, RSS, I have two separate crontab scripts running that read my personal Flickr <a title="RSS" rel="wikipedia" href="http://en.wikipedia.org/wiki/RSS">RSS feed</a> and look for these two characters. The * tells the script to take the title and description and add them as posts to my <span>personal blog</span>. The ^ tells the script to grab the title and URL of the image on Flickr (shorten it), then send it on to Twitter in my personal Twitter account. The special characters are a control mechanism that allow me to filter or choose additional syndication for my photos.</p>
<p>I'm going down a geeky path here and will pull back a bit. The Flickr Desktop Uploadr isnt' something that is brand new or undergone a massive revision lately. What it is to me an many others is a powerful tool built as an add-on to a service to make it more valuable.</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/8a256c5e-0ff2-4f36-b4f0-77da21e35b52/"><img style="border:medium none;float:right" src="http://img.zemanta.com/reblog_e.png?x-id=8a256c5e-0ff2-4f36-b4f0-77da21e35b52" alt="Reblog this post [with Zemanta]"></a><span></span></div>
<p><a href="http://www.techstartups.com/2009/11/16/flickr-desktop-uploadr-for-photos/">Flickr Desktop Uploadr for Photos</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/flickr-desktop-uploadr/" rel="tag">flickr desktop uploadr</a> <a style="display:inline" href="http://www.techstartups.com/tag/flickr-desktop-uploadr/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/flickr-ftp-upload/" rel="tag">flickr ftp upload</a> <a style="display:inline" href="http://www.techstartups.com/tag/flickr-ftp-upload/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/flickr-uploadr/" rel="tag">flickr uploadr</a> <a style="display:inline" href="http://www.techstartups.com/tag/flickr-uploadr/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/magic-api/" rel="tag">magic api</a> <a style="display:inline" href="http://www.techstartups.com/tag/magic-api/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/photo-uploader/" rel="tag">photo uploader</a> <a style="display:inline" href="http://www.techstartups.com/tag/photo-uploader/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/road-runner/" rel="tag">road runner</a> <a style="display:inline" href="http://www.techstartups.com/tag/road-runner/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/road-runner-cable-internet/" rel="tag">road runner cable internet</a> <a style="display:inline" href="http://www.techstartups.com/tag/road-runner-cable-internet/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/road-runner-upload-speed/" rel="tag">road runner upload speed</a> <a style="display:inline" href="http://www.techstartups.com/tag/road-runner-upload-speed/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/shorten-url/" rel="tag">shorten url</a> <a style="display:inline" href="http://www.techstartups.com/tag/shorten-url/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/flickr">flickr</a> <a href="http://www.technorati.com/tag/flickr"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/flickr.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/uploadr">uploadr</a> <a href="http://www.technorati.com/tag/uploadr"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/uploadr.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/photos">photos</a> <a href="http://www.technorati.com/tag/photos"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/photos.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/desktop">desktop</a> <a href="http://www.technorati.com/tag/desktop"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/desktop.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/upload">upload</a> <a href="http://www.technorati.com/tag/upload"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/upload.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-3634" href="http://www.techstartups.com/2009/11/16/flickr-desktop-uploadr-for-photos/picture-57/"><img style="margin-left:10px;margin-right:10px" title="Picture 57" src="http://www.techstartups.com/blog/wp-content/uploads/2009/11/Picture-57.png" alt="Picture 57" width="186" height="44"></a>If you're a Flickr user and not a <a title="Flickr Desktop Uploadr" href="http://www.flickr.com/tools/"><span>Flickr</span> Desktop Uploadr</a> user, you should be. It is the hidden gem of the heavily trafficked site and best friend of frequent uploaders.</p>
<p>The <a title="Flickr Desktop Uploadr" href="http://www.flickr.com/tools/"><span>Flickr</span> Uploadr</a> for desktop use have gone through changes over the years. It's reached its current maturity at 3.2.1 after being plagued with upload crashes, double uploads and copy loss for images. This version doesn't suffer likes its predecessors . . . well, not as much.</p>
<p>There still are occasional crashes but the Uploadr handles restarting better and will load up the last batch of photos for upload with their copy intact on restart. I've found this to be a more frequent issue if I am trying to upload photos to <a title="Flickr" rel="wikipedia" href="http://en.wikipedia.org/wiki/Flickr">Flickr</a> from a throttled internet connection with slow speeds. Cough, Time-Warner <a title="Road Runner High Speed Online" rel="wikipedia" href="http://en.wikipedia.org/wiki/Road_Runner_High_Speed_Online">Road Runner</a>, cough.</p>
<p><span></span></p>
<p>With that said, I've found the Uploadr the easiest way to get batch photos online with titles, descriptions, tags and grouped the way the I want them with privacy settings. Here's a peek for the uninitiated:</p>
<p style="text-align:center"><a rel="attachment wp-att-3633" href="http://www.techstartups.com/2009/11/16/flickr-desktop-uploadr-for-photos/picture-55/"><img title="Picture 55" src="http://www.techstartups.com/blog/wp-content/uploads/2009/11/Picture-55.png" alt="Picture 55" width="617" height="470"></a></p>
<p>With the ability to create groups like this and see them in left hand column I am able to more effectivley tell a story about each image as it relates to one another. To be honest, it is kind of fun to be able to create a <a title="Narrative" rel="wikipedia" href="http://en.wikipedia.org/wiki/Narrative">narrative</a> about a photo set that can be shared with viewers.</p>
<p>You'll also notice in the Description' box that the copy begins with two characters *^'. Well, as an added bonus of using the Flickr Uploadr to get photos on Flickr, I also use it as a front-end to insert photos on my own blog and to also send links to them on Twitter.</p>
<p>With the use of the magic <span>API</span>, RSS, I have two separate crontab scripts running that read my personal Flickr <a title="RSS" rel="wikipedia" href="http://en.wikipedia.org/wiki/RSS">RSS feed</a> and look for these two characters. The * tells the script to take the title and description and add them as posts to my <span>personal blog</span>. The ^ tells the script to grab the title and URL of the image on Flickr (shorten it), then send it on to Twitter in my personal Twitter account. The special characters are a control mechanism that allow me to filter or choose additional syndication for my photos.</p>
<p>I'm going down a geeky path here and will pull back a bit. The Flickr Desktop Uploadr isnt' something that is brand new or undergone a massive revision lately. What it is to me an many others is a powerful tool built as an add-on to a service to make it more valuable.</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/8a256c5e-0ff2-4f36-b4f0-77da21e35b52/"><img style="border:medium none;float:right" src="http://img.zemanta.com/reblog_e.png?x-id=8a256c5e-0ff2-4f36-b4f0-77da21e35b52" alt="Reblog this post [with Zemanta]"></a><span></span></div>
<p><a href="http://www.techstartups.com/2009/11/16/flickr-desktop-uploadr-for-photos/">Flickr Desktop Uploadr for Photos</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/flickr-desktop-uploadr/" rel="tag">flickr desktop uploadr</a> <a style="display:inline" href="http://www.techstartups.com/tag/flickr-desktop-uploadr/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/flickr-ftp-upload/" rel="tag">flickr ftp upload</a> <a style="display:inline" href="http://www.techstartups.com/tag/flickr-ftp-upload/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/flickr-uploadr/" rel="tag">flickr uploadr</a> <a style="display:inline" href="http://www.techstartups.com/tag/flickr-uploadr/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/magic-api/" rel="tag">magic api</a> <a style="display:inline" href="http://www.techstartups.com/tag/magic-api/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/photo-uploader/" rel="tag">photo uploader</a> <a style="display:inline" href="http://www.techstartups.com/tag/photo-uploader/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/road-runner/" rel="tag">road runner</a> <a style="display:inline" href="http://www.techstartups.com/tag/road-runner/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/road-runner-cable-internet/" rel="tag">road runner cable internet</a> <a style="display:inline" href="http://www.techstartups.com/tag/road-runner-cable-internet/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/road-runner-upload-speed/" rel="tag">road runner upload speed</a> <a style="display:inline" href="http://www.techstartups.com/tag/road-runner-upload-speed/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/shorten-url/" rel="tag">shorten url</a> <a style="display:inline" href="http://www.techstartups.com/tag/shorten-url/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/flickr">flickr</a> <a href="http://www.technorati.com/tag/flickr"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/flickr.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/uploadr">uploadr</a> <a href="http://www.technorati.com/tag/uploadr"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/uploadr.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/photos">photos</a> <a href="http://www.technorati.com/tag/photos"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/photos.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/desktop">desktop</a> <a href="http://www.technorati.com/tag/desktop"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/desktop.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/upload">upload</a> <a href="http://www.technorati.com/tag/upload"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/upload.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></content:encoded>

         <pubDate>Mon, 16 Nov 2009 16:11:14 -0500</pubDate>         <guid isPermaLink="false">tag:croncast.com,5730</guid>

			<itunes:subtitle/>
      </item>
      <item>
         <title>More Linked Open Data From NYT Tomorrow</title>
         <link>http://www.techstartups.com/2009/11/09/more-linked-open-data-from-nyt-tomorrow/</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-3073" href="http://www.techstartups.com/2009/11/09/more-linked-open-data-from-nyt-tomorrow/nyt7/"><img style="margin-left:10px;margin-right:10px" title="nyt7" src="http://www.techstartups.com/blog/wp-content/uploads/2009/11/nyt7.png" alt="nyt7" width="162" height="38"></a>One of the good people over at the <a title="New York Times" rel="homepage" href="http://www.newyorktimes.com">New York Times</a>, <a title="Evan Sandhaus" href="http://twitter.com/kansandhaus">@kansandhaus</a>,  sent out a <a href="http://twitter.com/kansandhaus/status/5568112446">teaser tweet</a> at the end of the work day to whet our insatiable <a title="Semantics" rel="wikipedia" href="http://en.wikipedia.org/wiki/Semantics">semantically</a> linked data appetites. Cuz The Times knows you got semantic data hunger and that machine friendly transactions based on a standard vocabulary will lead to better discovery, robust content sharing and enhanced syndication techniques.</p>
<p>There's no real indication in Sandhaus's tweet as to what data is coming but I would suspect that it is a logical extension to previous <a href="http://data.nytimes.com/">release of 5,000 people subject headlines</a>. It makes sense for The Times to release data in segments that can be used together to enrich applications.</p>
<p>If you're interested in working with this data or want to get prepared for tomorrow's release visit <a href="http://data.nytimes.com">http://data.nytimes.com</a> to pick up the first file and then head over to <a href="http://developer.nytimes.com">http://developer.nytimes.com</a> to get a Search <a title="Application programming interface" rel="wikipedia" href="http://en.wikipedia.org/wiki/Application_programming_interface">API</a> key to make the most of links provided in the data.</p>
<p>This may be a slow rollout by the New York Times, but collectively in the near future the most robust set of publicly available taxonomies, categories and tags will be available. This appears to be a one horse race to set standard for linked data.</p>
<p>Similar to how the  to AP <a title="Style guide" rel="wikipedia" href="http://en.wikipedia.org/wiki/Style_guide">style guide</a> is revered today to keep copy in order, people in the future will be citing the New York Times linked open data as the <a title="De facto standard" rel="wikipedia" href="http://en.wikipedia.org/wiki/De_facto_standard">de facto standard</a> for semantic interaction and data architecture  the most important language of the <a title="21st century" rel="wikipedia" href="http://en.wikipedia.org/wiki/21st_century">21st century</a>.</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/94b87518-15d2-4df2-9954-c6f00467df2d/"><img style="border:medium none;float:right" src="http://img.zemanta.com/reblog_e.png?x-id=94b87518-15d2-4df2-9954-c6f00467df2d" alt="Reblog this post [with Zemanta]"></a><span></span></div>
<p><a href="http://www.techstartups.com/2009/11/09/more-linked-open-data-from-nyt-tomorrow/">More Linked Open Data From NYT Tomorrow</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/data-architecture/" rel="tag">data architecture</a> <a style="display:inline" href="http://www.techstartups.com/tag/data-architecture/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/evan-sandhaus/" rel="tag">Evan Sandhaus</a> <a style="display:inline" href="http://www.techstartups.com/tag/evan-sandhaus/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/machine-friendly/" rel="tag">machine friendly</a> <a style="display:inline" href="http://www.techstartups.com/tag/machine-friendly/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/new-york-times-api/" rel="tag">New York Times API</a> <a style="display:inline" href="http://www.techstartups.com/tag/new-york-times-api/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/new-york-times-linked-open-data/" rel="tag">New York Times Linked Open Data</a> <a style="display:inline" href="http://www.techstartups.com/tag/new-york-times-linked-open-data/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/nyt-taxonomy/" rel="tag">NYT taxonomy</a> <a style="display:inline" href="http://www.techstartups.com/tag/nyt-taxonomy/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/semantic-interaction/" rel="tag">semantic interaction</a> <a style="display:inline" href="http://www.techstartups.com/tag/semantic-interaction/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/semantically-linked/" rel="tag">semantically linked</a> <a style="display:inline" href="http://www.techstartups.com/tag/semantically-linked/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/standard-vocabulary/" rel="tag">standard vocabulary</a> <a style="display:inline" href="http://www.techstartups.com/tag/standard-vocabulary/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/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/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/linked">linked</a> <a href="http://www.technorati.com/tag/linked"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/linked.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/york">york</a> <a href="http://www.technorati.com/tag/york"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/york.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/standard">standard</a> <a href="http://www.technorati.com/tag/standard"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/standard.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-3073" href="http://www.techstartups.com/2009/11/09/more-linked-open-data-from-nyt-tomorrow/nyt7/"><img style="margin-left:10px;margin-right:10px" title="nyt7" src="http://www.techstartups.com/blog/wp-content/uploads/2009/11/nyt7.png" alt="nyt7" width="162" height="38"></a>One of the good people over at the <a title="New York Times" rel="homepage" href="http://www.newyorktimes.com">New York Times</a>, <a title="Evan Sandhaus" href="http://twitter.com/kansandhaus">@kansandhaus</a>,  sent out a <a href="http://twitter.com/kansandhaus/status/5568112446">teaser tweet</a> at the end of the work day to whet our insatiable <a title="Semantics" rel="wikipedia" href="http://en.wikipedia.org/wiki/Semantics">semantically</a> linked data appetites. Cuz The Times knows you got semantic data hunger and that machine friendly transactions based on a standard vocabulary will lead to better discovery, robust content sharing and enhanced syndication techniques.</p>
<p>There's no real indication in Sandhaus's tweet as to what data is coming but I would suspect that it is a logical extension to previous <a href="http://data.nytimes.com/">release of 5,000 people subject headlines</a>. It makes sense for The Times to release data in segments that can be used together to enrich applications.</p>
<p>If you're interested in working with this data or want to get prepared for tomorrow's release visit <a href="http://data.nytimes.com">http://data.nytimes.com</a> to pick up the first file and then head over to <a href="http://developer.nytimes.com">http://developer.nytimes.com</a> to get a Search <a title="Application programming interface" rel="wikipedia" href="http://en.wikipedia.org/wiki/Application_programming_interface">API</a> key to make the most of links provided in the data.</p>
<p>This may be a slow rollout by the New York Times, but collectively in the near future the most robust set of publicly available taxonomies, categories and tags will be available. This appears to be a one horse race to set standard for linked data.</p>
<p>Similar to how the  to AP <a title="Style guide" rel="wikipedia" href="http://en.wikipedia.org/wiki/Style_guide">style guide</a> is revered today to keep copy in order, people in the future will be citing the New York Times linked open data as the <a title="De facto standard" rel="wikipedia" href="http://en.wikipedia.org/wiki/De_facto_standard">de facto standard</a> for semantic interaction and data architecture  the most important language of the <a title="21st century" rel="wikipedia" href="http://en.wikipedia.org/wiki/21st_century">21st century</a>.</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/94b87518-15d2-4df2-9954-c6f00467df2d/"><img style="border:medium none;float:right" src="http://img.zemanta.com/reblog_e.png?x-id=94b87518-15d2-4df2-9954-c6f00467df2d" alt="Reblog this post [with Zemanta]"></a><span></span></div>
<p><a href="http://www.techstartups.com/2009/11/09/more-linked-open-data-from-nyt-tomorrow/">More Linked Open Data From NYT Tomorrow</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/data-architecture/" rel="tag">data architecture</a> <a style="display:inline" href="http://www.techstartups.com/tag/data-architecture/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/evan-sandhaus/" rel="tag">Evan Sandhaus</a> <a style="display:inline" href="http://www.techstartups.com/tag/evan-sandhaus/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/machine-friendly/" rel="tag">machine friendly</a> <a style="display:inline" href="http://www.techstartups.com/tag/machine-friendly/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/new-york-times-api/" rel="tag">New York Times API</a> <a style="display:inline" href="http://www.techstartups.com/tag/new-york-times-api/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/new-york-times-linked-open-data/" rel="tag">New York Times Linked Open Data</a> <a style="display:inline" href="http://www.techstartups.com/tag/new-york-times-linked-open-data/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/nyt-taxonomy/" rel="tag">NYT taxonomy</a> <a style="display:inline" href="http://www.techstartups.com/tag/nyt-taxonomy/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/semantic-interaction/" rel="tag">semantic interaction</a> <a style="display:inline" href="http://www.techstartups.com/tag/semantic-interaction/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/semantically-linked/" rel="tag">semantically linked</a> <a style="display:inline" href="http://www.techstartups.com/tag/semantically-linked/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/standard-vocabulary/" rel="tag">standard vocabulary</a> <a style="display:inline" href="http://www.techstartups.com/tag/standard-vocabulary/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/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/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/linked">linked</a> <a href="http://www.technorati.com/tag/linked"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/linked.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/york">york</a> <a href="http://www.technorati.com/tag/york"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/york.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/standard">standard</a> <a href="http://www.technorati.com/tag/standard"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/standard.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></content:encoded>

         <pubDate>Tue, 10 Nov 2009 00:04:39 -0500</pubDate>         <guid isPermaLink="false">tag:croncast.com,5726</guid>

			<itunes:subtitle/>
      </item>
      <item>
         <title>Ebay Partner Network and Transparency</title>
         <link>http://www.techstartups.com/2009/11/10/ebay-partner-network-and-transparency/</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-3116" href="http://www.techstartups.com/2009/11/10/ebay-partner-network-and-transparency/ebay_affiliate/"><img style="margin-left:10px;margin-right:10px" title="ebay_affiliate" src="http://www.techstartups.com/blog/wp-content/uploads/2009/11/ebay_affiliate.png" alt="ebay_affiliate" width="207" height="201"></a>What I am about to say is because I have been a long time member of the <a title="eBay" rel="homepage" href="http://ebay.com">eBay</a> <a title="Affiliate marketing" rel="wikipedia" href="http://en.wikipedia.org/wiki/Affiliate_marketing">affiliate program</a>, now called eBay Partner Network. It is also of value to anyone that is starting or currently responsible for managing an affiliate program for a company.</p>
<p>My affinity for their brand is the result of being a partner for over three years, my wife being a seller on eBay for nearly ten years, API ease of use and the ability to earn revenue consistently for three years as part of the partner network.</p>
<p>But try as they might, eBay has not driven me away from the partner network . . . yet. They transitioned the program from <a title="Commission Junction" rel="homepage" href="http://www.cj.com">Commission Junction</a> to an internal program two years ago. The metrics and other monitoring tools suffered as eBay had to get their affiliate legs underneath them. No longer could an affiliate view the extensive reports for click monitoring, referrals, purchases, week to week comps, etc.</p>
<p>Then eBay transformed the program most recently from their <a title="Cost per action" rel="wikipedia" href="http://en.wikipedia.org/wiki/Cost_per_action">CPA</a> (where a partner was paid if their link resulted in a sale)  program to a CPC program. This isn't your average CPC program with prices set per click  it is based on an algorithm that calculates the quality of the clicks from a given link on a 24 hour basis and assigns them a monetary value.</p>
<p><span></span></p>
<p>With this most recent transition to CPC and a program controlled by an algorithm (see: bot) eBay developed a Transparency Team. This team has the task of reaching out to partners that have links that aren't performing in a manner that matches the eBay partner agreement (see: fraudulent).</p>
<p>This is a great idea in theory. However, this team wouldn't need to exist if the eBay partner network returned to the same type of reports that Commission Junction used. Instead, when reinventing the wheel, eBay eliminated any useful monitoring for partners. Thus making participating in their program as opaque as it can be. Metrics that provide a payout, ranking or trip the algorithm to send an automated email stating that a partner is somehow engaged in fraudulent activity are nonexistent.</p>
<p>Ebay has removed any substantive accounting for themselves in the process of monitoring or payouts, the crux of a developer or user becoming an affiliate. Hiding reports from users that are accustomed to them as part of other vendor programs.</p>
<p>The problem is a that is a basic <a title="Customer service" rel="wikipedia" href="http://en.wikipedia.org/wiki/Customer_service">customer service</a> issue that has not been addressed by eBay. Reporting, prompt replies and useful feedback data would allow partners to build better programs that meet eBay's standards and can be crafted to drive more quality traffic to eBay.</p>
<p>This example says it all:</p>
<p>Two months ago I was contacted by the eBay Partner Network Transparency Team (see: bot generated email) stating that in their quest to be transparent I should do the same and that I was failing as a large percentage of my links weren't sending referrer data. Meaning that they don't have a record from these links of the website where the link was displayed and clicked on.</p>
<p>Fair enough to ask me about the links. Not fair or right, accusing someone of not being transparent when all of the click data is hidden away. Not fair is waiting two months to reply back with meaningless data stating that eBay is right. See below:</p>
<p style="text-align:center"><a rel="attachment wp-att-3114" href="http://www.techstartups.com/2009/11/10/ebay-partner-network-and-transparency/ebay_stats/"><img style="margin-left:30px;margin-right:30px" title="ebay_stats" src="http://www.techstartups.com/blog/wp-content/uploads/2009/11/ebay_stats.png" alt="ebay_stats" width="552" height="226"></a></p>
<p>Ebay sure is right that I have a high non-referrer rate and that bots are removed. I guess I should stop questioning their authority . . . sure. I'd do that if I knew what the criteria were or what bots are being removed. Because for nearly two years they didn't remove a single bot from click data.</p>
<p>I've requested more data from the Transparency Team like <a title="IP address" rel="wikipedia" href="http://en.wikipedia.org/wiki/IP_address">IP addresses</a> and <a title="User agent" rel="wikipedia" href="http://en.wikipedia.org/wiki/User_agent">user-agents</a> of those clicks. Since I can't track the click that is actually going to eBay without breaking the user-agreement with eBay I will be at their mercy to figure out if the clicks are coming from <a title="Mobile device" rel="wikipedia" href="http://en.wikipedia.org/wiki/Mobile_device">mobile devices</a> or and some proxy bot that has a lust for finding its way to eBay auctions. Maybe the bot master was blocked by eBay for not being transparent enough when scraping their auctions.</p>
<p>Ebay, this isn't how to be transparent or run a valued affiliate program. If my experience hadn't begun with your program on Commission Junction I wouldn't have such high hopes for how the current partner network could operate. As an affiliate, I want to make money, but I also want eBay to succeed.</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/6b0ea517-02cb-46df-be32-84bf4fb41ff7/"><img style="border:medium none;float:right" src="http://img.zemanta.com/reblog_e.png?x-id=6b0ea517-02cb-46df-be32-84bf4fb41ff7" alt="Reblog this post [with Zemanta]"></a><span></span></div>
<p><a href="http://www.techstartups.com/2009/11/10/ebay-partner-network-and-transparency/">Ebay Partner Network and Transparency</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/affiliate-programs/" rel="tag">affiliate programs</a> <a style="display:inline" href="http://www.techstartups.com/tag/affiliate-programs/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/commission-junction/" rel="tag">Commission Junction</a> <a style="display:inline" href="http://www.techstartups.com/tag/commission-junction/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/cpa-affilaite/" rel="tag">CPA affilaite</a> <a style="display:inline" href="http://www.techstartups.com/tag/cpa-affilaite/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/cpc-affiliate/" rel="tag">CPC affiliate</a> <a style="display:inline" href="http://www.techstartups.com/tag/cpc-affiliate/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/customer-service/" rel="tag">customer service</a> <a style="display:inline" href="http://www.techstartups.com/tag/customer-service/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/ebay-affiliate-program/" rel="tag">eBay affiliate program</a> <a style="display:inline" href="http://www.techstartups.com/tag/ebay-affiliate-program/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/ebay-partner-network-transparency/" rel="tag">ebay partner network transparency</a> <a style="display:inline" href="http://www.techstartups.com/tag/ebay-partner-network-transparency/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/ip-address/" rel="tag">ip address</a> <a style="display:inline" href="http://www.techstartups.com/tag/ip-address/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/transparency/" rel="tag">transparency</a> <a style="display:inline" href="http://www.techstartups.com/tag/transparency/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/ebay">ebay</a> <a href="http://www.technorati.com/tag/ebay"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/ebay.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/program">program</a> <a href="http://www.technorati.com/tag/program"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/program.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/partner">partner</a> <a href="http://www.technorati.com/tag/partner"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/partner.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/affiliate">affiliate</a> <a href="http://www.technorati.com/tag/affiliate"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/affiliate.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/network">network</a> <a href="http://www.technorati.com/tag/network"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/network.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-3116" href="http://www.techstartups.com/2009/11/10/ebay-partner-network-and-transparency/ebay_affiliate/"><img style="margin-left:10px;margin-right:10px" title="ebay_affiliate" src="http://www.techstartups.com/blog/wp-content/uploads/2009/11/ebay_affiliate.png" alt="ebay_affiliate" width="207" height="201"></a>What I am about to say is because I have been a long time member of the <a title="eBay" rel="homepage" href="http://ebay.com">eBay</a> <a title="Affiliate marketing" rel="wikipedia" href="http://en.wikipedia.org/wiki/Affiliate_marketing">affiliate program</a>, now called eBay Partner Network. It is also of value to anyone that is starting or currently responsible for managing an affiliate program for a company.</p>
<p>My affinity for their brand is the result of being a partner for over three years, my wife being a seller on eBay for nearly ten years, API ease of use and the ability to earn revenue consistently for three years as part of the partner network.</p>
<p>But try as they might, eBay has not driven me away from the partner network . . . yet. They transitioned the program from <a title="Commission Junction" rel="homepage" href="http://www.cj.com">Commission Junction</a> to an internal program two years ago. The metrics and other monitoring tools suffered as eBay had to get their affiliate legs underneath them. No longer could an affiliate view the extensive reports for click monitoring, referrals, purchases, week to week comps, etc.</p>
<p>Then eBay transformed the program most recently from their <a title="Cost per action" rel="wikipedia" href="http://en.wikipedia.org/wiki/Cost_per_action">CPA</a> (where a partner was paid if their link resulted in a sale)  program to a CPC program. This isn't your average CPC program with prices set per click  it is based on an algorithm that calculates the quality of the clicks from a given link on a 24 hour basis and assigns them a monetary value.</p>
<p><span></span></p>
<p>With this most recent transition to CPC and a program controlled by an algorithm (see: bot) eBay developed a Transparency Team. This team has the task of reaching out to partners that have links that aren't performing in a manner that matches the eBay partner agreement (see: fraudulent).</p>
<p>This is a great idea in theory. However, this team wouldn't need to exist if the eBay partner network returned to the same type of reports that Commission Junction used. Instead, when reinventing the wheel, eBay eliminated any useful monitoring for partners. Thus making participating in their program as opaque as it can be. Metrics that provide a payout, ranking or trip the algorithm to send an automated email stating that a partner is somehow engaged in fraudulent activity are nonexistent.</p>
<p>Ebay has removed any substantive accounting for themselves in the process of monitoring or payouts, the crux of a developer or user becoming an affiliate. Hiding reports from users that are accustomed to them as part of other vendor programs.</p>
<p>The problem is a that is a basic <a title="Customer service" rel="wikipedia" href="http://en.wikipedia.org/wiki/Customer_service">customer service</a> issue that has not been addressed by eBay. Reporting, prompt replies and useful feedback data would allow partners to build better programs that meet eBay's standards and can be crafted to drive more quality traffic to eBay.</p>
<p>This example says it all:</p>
<p>Two months ago I was contacted by the eBay Partner Network Transparency Team (see: bot generated email) stating that in their quest to be transparent I should do the same and that I was failing as a large percentage of my links weren't sending referrer data. Meaning that they don't have a record from these links of the website where the link was displayed and clicked on.</p>
<p>Fair enough to ask me about the links. Not fair or right, accusing someone of not being transparent when all of the click data is hidden away. Not fair is waiting two months to reply back with meaningless data stating that eBay is right. See below:</p>
<p style="text-align:center"><a rel="attachment wp-att-3114" href="http://www.techstartups.com/2009/11/10/ebay-partner-network-and-transparency/ebay_stats/"><img style="margin-left:30px;margin-right:30px" title="ebay_stats" src="http://www.techstartups.com/blog/wp-content/uploads/2009/11/ebay_stats.png" alt="ebay_stats" width="552" height="226"></a></p>
<p>Ebay sure is right that I have a high non-referrer rate and that bots are removed. I guess I should stop questioning their authority . . . sure. I'd do that if I knew what the criteria were or what bots are being removed. Because for nearly two years they didn't remove a single bot from click data.</p>
<p>I've requested more data from the Transparency Team like <a title="IP address" rel="wikipedia" href="http://en.wikipedia.org/wiki/IP_address">IP addresses</a> and <a title="User agent" rel="wikipedia" href="http://en.wikipedia.org/wiki/User_agent">user-agents</a> of those clicks. Since I can't track the click that is actually going to eBay without breaking the user-agreement with eBay I will be at their mercy to figure out if the clicks are coming from <a title="Mobile device" rel="wikipedia" href="http://en.wikipedia.org/wiki/Mobile_device">mobile devices</a> or and some proxy bot that has a lust for finding its way to eBay auctions. Maybe the bot master was blocked by eBay for not being transparent enough when scraping their auctions.</p>
<p>Ebay, this isn't how to be transparent or run a valued affiliate program. If my experience hadn't begun with your program on Commission Junction I wouldn't have such high hopes for how the current partner network could operate. As an affiliate, I want to make money, but I also want eBay to succeed.</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/6b0ea517-02cb-46df-be32-84bf4fb41ff7/"><img style="border:medium none;float:right" src="http://img.zemanta.com/reblog_e.png?x-id=6b0ea517-02cb-46df-be32-84bf4fb41ff7" alt="Reblog this post [with Zemanta]"></a><span></span></div>
<p><a href="http://www.techstartups.com/2009/11/10/ebay-partner-network-and-transparency/">Ebay Partner Network and Transparency</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/affiliate-programs/" rel="tag">affiliate programs</a> <a style="display:inline" href="http://www.techstartups.com/tag/affiliate-programs/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/commission-junction/" rel="tag">Commission Junction</a> <a style="display:inline" href="http://www.techstartups.com/tag/commission-junction/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/cpa-affilaite/" rel="tag">CPA affilaite</a> <a style="display:inline" href="http://www.techstartups.com/tag/cpa-affilaite/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/cpc-affiliate/" rel="tag">CPC affiliate</a> <a style="display:inline" href="http://www.techstartups.com/tag/cpc-affiliate/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/customer-service/" rel="tag">customer service</a> <a style="display:inline" href="http://www.techstartups.com/tag/customer-service/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/ebay-affiliate-program/" rel="tag">eBay affiliate program</a> <a style="display:inline" href="http://www.techstartups.com/tag/ebay-affiliate-program/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/ebay-partner-network-transparency/" rel="tag">ebay partner network transparency</a> <a style="display:inline" href="http://www.techstartups.com/tag/ebay-partner-network-transparency/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/ip-address/" rel="tag">ip address</a> <a style="display:inline" href="http://www.techstartups.com/tag/ip-address/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/transparency/" rel="tag">transparency</a> <a style="display:inline" href="http://www.techstartups.com/tag/transparency/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/ebay">ebay</a> <a href="http://www.technorati.com/tag/ebay"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/ebay.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/program">program</a> <a href="http://www.technorati.com/tag/program"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/program.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/partner">partner</a> <a href="http://www.technorati.com/tag/partner"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/partner.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/affiliate">affiliate</a> <a href="http://www.technorati.com/tag/affiliate"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/affiliate.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/network">network</a> <a href="http://www.technorati.com/tag/network"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/network.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></content:encoded>

         <pubDate>Tue, 10 Nov 2009 14:15:52 -0500</pubDate>         <guid isPermaLink="false">tag:croncast.com,5727</guid>

			<itunes:subtitle/>
      </item>
      <item>
         <title>Sell Photos Online With Fotomoto</title>
         <link>http://www.techstartups.com/2009/11/03/sell-photos-online-with-fotomoto/</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-2764" href="http://www.techstartups.com/2009/11/03/sell-photos-online-with-fotomoto/photomoto/"><img style="margin-left:10px;margin-right:10px" title="photomoto" src="http://www.techstartups.com/blog/wp-content/uploads/2009/11/photomoto.png" alt="photomoto" width="190" height="30"></a>It's time to drag <a title="Fotomoto" rel="homepage" href="http://www.fotomoto.com">Fotomoto</a> back onto the stage after months of maturing and talk about selling photos online. More specifically, Fotomoto's solution to facilitate the selling of digital photos as prints to anyone that wants to buy them.</p>
<p>A single line of Javascript code is the solution that Fotomoto offers to publisher as the solution to allow them to sell photos online. This single line of code has a powerful <a title="Algorithm" rel="wikipedia" href="http://en.wikipedia.org/wiki/Algorithm">algorithm</a> running behind it to sort out the images that are on the publishers site and determine which is a photo that should be for sale. That way the publisher's site logo or other graphic headings don't end up for sale.</p>
<p>Fotomoto adds a few text links below the salable photo that are connected to a shopping cart. This shopping cart opens in a modal box on the publisher's site. Developers take note of how to create a cohesive <a title="User experience design" rel="wikipedia" href="http://en.wikipedia.org/wiki/User_experience_design">user experience</a> by allowing shoppers to stay onsite to complete the purchase process.</p>
<p style="text-align:center"><a rel="attachment wp-att-2763" href="http://www.techstartups.com/2009/11/03/sell-photos-online-with-fotomoto/fotomoto_buy/"><img style="margin-left:10px;margin-right:10px" title="fotomoto_buy" src="http://www.techstartups.com/blog/wp-content/uploads/2009/11/fotomoto_buy.jpg" alt="fotomoto_buy" width="617" height="313"></a></p>
<p>When a publisher is logged in to Fotomoto they have the ability to set pricing for photos based on the size and type of item being printed. There are other options that you would expect in a <a title="Photo sharing" rel="wikipedia" href="http://en.wikipedia.org/wiki/Photo_sharing">photo sharing site</a> and others that you might not. Like the ability to track the sales of prints and a mini-<a title="Customer relationship management" rel="wikipedia" href="http://en.wikipedia.org/wiki/Customer_relationship_management">CRM</a> tool that allows the publisher to communicate with a buyer. This introduction of community into a sales platform is a welcome addition to the rather spartan offerings photo sites. Ahem, <a title="Flickr" rel="homepage" href="http://flickr.com">Flickr</a>.</p>
<p><a href="http://fotomoto.com">Fotomoto</a> is solving a problem that professional photographers have had for a long time  how to effectively capitalize on a digital marketplace. With the advent of cheaper, better cameras there is finally a <a title="Critical mass" rel="wikipedia" href="http://en.wikipedia.org/wiki/Critical_mass">critical mass</a> of photographers, both professional and amateur. And with a larger source of photos worthy of being printed, expect more sites like Fotomoto to popup or the long standing photo sharing sites to step up with their own plugins to allow anyone to sell photos online.</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/5bf9d036-f8b9-4caf-8928-151100e7a117/"><img style="border:medium none;float:right" src="http://img.zemanta.com/reblog_e.png?x-id=5bf9d036-f8b9-4caf-8928-151100e7a117" alt="Reblog this post [with Zemanta]"></a><span></span></div>
<p><a href="http://www.techstartups.com/2009/11/03/sell-photos-online-with-fotomoto/">Sell Photos Online With Fotomoto</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/amateur-photography/" rel="tag">amateur photography</a> <a style="display:inline" href="http://www.techstartups.com/tag/amateur-photography/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/critical-mass/" rel="tag">critical mass</a> <a style="display:inline" href="http://www.techstartups.com/tag/critical-mass/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/crm/" rel="tag">crm</a> <a style="display:inline" href="http://www.techstartups.com/tag/crm/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/digital-photos/" rel="tag">digital photos</a> <a style="display:inline" href="http://www.techstartups.com/tag/digital-photos/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/digital-prints/" rel="tag">digital prints</a> <a style="display:inline" href="http://www.techstartups.com/tag/digital-prints/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/flickr/" rel="tag">flickr</a> <a style="display:inline" href="http://www.techstartups.com/tag/flickr/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/fotomoto/" rel="tag">fotomoto</a> <a style="display:inline" href="http://www.techstartups.com/tag/fotomoto/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/javascript/" rel="tag">Javascript</a> <a style="display:inline" href="http://www.techstartups.com/tag/javascript/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/professional-photography/" rel="tag">professional photography</a> <a style="display:inline" href="http://www.techstartups.com/tag/professional-photography/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/sell-photos-online/" rel="tag">sell photos online</a> <a style="display:inline" href="http://www.techstartups.com/tag/sell-photos-online/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/photos">photos</a> <a href="http://www.technorati.com/tag/photos"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/photos.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/fotomoto">fotomoto</a> <a href="http://www.technorati.com/tag/fotomoto"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/fotomoto.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/online">online</a> <a href="http://www.technorati.com/tag/online"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/online.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/sell">sell</a> <a href="http://www.technorati.com/tag/sell"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/sell.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/photo">photo</a> <a href="http://www.technorati.com/tag/photo"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/photo.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-2764" href="http://www.techstartups.com/2009/11/03/sell-photos-online-with-fotomoto/photomoto/"><img style="margin-left:10px;margin-right:10px" title="photomoto" src="http://www.techstartups.com/blog/wp-content/uploads/2009/11/photomoto.png" alt="photomoto" width="190" height="30"></a>It's time to drag <a title="Fotomoto" rel="homepage" href="http://www.fotomoto.com">Fotomoto</a> back onto the stage after months of maturing and talk about selling photos online. More specifically, Fotomoto's solution to facilitate the selling of digital photos as prints to anyone that wants to buy them.</p>
<p>A single line of Javascript code is the solution that Fotomoto offers to publisher as the solution to allow them to sell photos online. This single line of code has a powerful <a title="Algorithm" rel="wikipedia" href="http://en.wikipedia.org/wiki/Algorithm">algorithm</a> running behind it to sort out the images that are on the publishers site and determine which is a photo that should be for sale. That way the publisher's site logo or other graphic headings don't end up for sale.</p>
<p>Fotomoto adds a few text links below the salable photo that are connected to a shopping cart. This shopping cart opens in a modal box on the publisher's site. Developers take note of how to create a cohesive <a title="User experience design" rel="wikipedia" href="http://en.wikipedia.org/wiki/User_experience_design">user experience</a> by allowing shoppers to stay onsite to complete the purchase process.</p>
<p style="text-align:center"><a rel="attachment wp-att-2763" href="http://www.techstartups.com/2009/11/03/sell-photos-online-with-fotomoto/fotomoto_buy/"><img style="margin-left:10px;margin-right:10px" title="fotomoto_buy" src="http://www.techstartups.com/blog/wp-content/uploads/2009/11/fotomoto_buy.jpg" alt="fotomoto_buy" width="617" height="313"></a></p>
<p>When a publisher is logged in to Fotomoto they have the ability to set pricing for photos based on the size and type of item being printed. There are other options that you would expect in a <a title="Photo sharing" rel="wikipedia" href="http://en.wikipedia.org/wiki/Photo_sharing">photo sharing site</a> and others that you might not. Like the ability to track the sales of prints and a mini-<a title="Customer relationship management" rel="wikipedia" href="http://en.wikipedia.org/wiki/Customer_relationship_management">CRM</a> tool that allows the publisher to communicate with a buyer. This introduction of community into a sales platform is a welcome addition to the rather spartan offerings photo sites. Ahem, <a title="Flickr" rel="homepage" href="http://flickr.com">Flickr</a>.</p>
<p><a href="http://fotomoto.com">Fotomoto</a> is solving a problem that professional photographers have had for a long time  how to effectively capitalize on a digital marketplace. With the advent of cheaper, better cameras there is finally a <a title="Critical mass" rel="wikipedia" href="http://en.wikipedia.org/wiki/Critical_mass">critical mass</a> of photographers, both professional and amateur. And with a larger source of photos worthy of being printed, expect more sites like Fotomoto to popup or the long standing photo sharing sites to step up with their own plugins to allow anyone to sell photos online.</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/5bf9d036-f8b9-4caf-8928-151100e7a117/"><img style="border:medium none;float:right" src="http://img.zemanta.com/reblog_e.png?x-id=5bf9d036-f8b9-4caf-8928-151100e7a117" alt="Reblog this post [with Zemanta]"></a><span></span></div>
<p><a href="http://www.techstartups.com/2009/11/03/sell-photos-online-with-fotomoto/">Sell Photos Online With Fotomoto</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/amateur-photography/" rel="tag">amateur photography</a> <a style="display:inline" href="http://www.techstartups.com/tag/amateur-photography/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/critical-mass/" rel="tag">critical mass</a> <a style="display:inline" href="http://www.techstartups.com/tag/critical-mass/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/crm/" rel="tag">crm</a> <a style="display:inline" href="http://www.techstartups.com/tag/crm/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/digital-photos/" rel="tag">digital photos</a> <a style="display:inline" href="http://www.techstartups.com/tag/digital-photos/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/digital-prints/" rel="tag">digital prints</a> <a style="display:inline" href="http://www.techstartups.com/tag/digital-prints/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/flickr/" rel="tag">flickr</a> <a style="display:inline" href="http://www.techstartups.com/tag/flickr/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/fotomoto/" rel="tag">fotomoto</a> <a style="display:inline" href="http://www.techstartups.com/tag/fotomoto/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/javascript/" rel="tag">Javascript</a> <a style="display:inline" href="http://www.techstartups.com/tag/javascript/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/professional-photography/" rel="tag">professional photography</a> <a style="display:inline" href="http://www.techstartups.com/tag/professional-photography/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/sell-photos-online/" rel="tag">sell photos online</a> <a style="display:inline" href="http://www.techstartups.com/tag/sell-photos-online/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/photos">photos</a> <a href="http://www.technorati.com/tag/photos"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/photos.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/fotomoto">fotomoto</a> <a href="http://www.technorati.com/tag/fotomoto"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/fotomoto.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/online">online</a> <a href="http://www.technorati.com/tag/online"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/online.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/sell">sell</a> <a href="http://www.technorati.com/tag/sell"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/sell.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/photo">photo</a> <a href="http://www.technorati.com/tag/photo"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/photo.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></content:encoded>

         <pubDate>Tue, 03 Nov 2009 17:16:55 -0500</pubDate>         <guid isPermaLink="false">tag:croncast.com,5698</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>PayPal X Developer Network Same as it Always Was</title>
         <link>http://www.techstartups.com/2009/11/03/paypal-x-developer-network-same-as-it-always-was/</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>Like you,<a rel="attachment wp-att-2786" href="http://www.techstartups.com/2009/11/03/paypal-x-developer-network-same-as-it-always-was/x/"><img style="margin-left:10px;margin-right:10px" title="x" src="http://www.techstartups.com/blog/wp-content/uploads/2009/11/x.gif" alt="x" width="266" height="28"></a> I've been a member and user of PayPal's service for years. They were early to the game and grew accordingly with a product that made buying online drop dead easy. With an exit to eBay they were integrated into a powerful money minting machine.</p>
<p>They also joined a culture of apathy and disdain for those that help them line their pockets  developers.</p>
<p>Like their acquirer, PayPal continued to build a mediocre developer community, foster it with partial code samples, limited information and limited support. Now in kindness to PayPal they did begin providing better support a few years ago and are pretty good when it comes to engaging  developers on the message boards offering solutions  a problem that has plagued eBay for years.</p>
<p>Visit any eBay developer board and you'll find replies that focus on posting in the wrong thread topic instead of offering a solution. It shows the developers that they aren't a priority.</p>
<p>I was looking forward to the release of the brand spanking new PayPal X Developer Network. Hoping that my previous experience wouldn't hold true and that there would be a renewed focus on the developers that are integrating the PayPal gateways and API's into their platforms. But they let me down.</p>
<p>The new developer community site is plagued with broken links, the same old code samples and forums that stopped loading threads on October 28. The intention is there but the execution is hit and miss.</p>
<p><a rel="attachment wp-att-2788" href="http://www.techstartups.com/2009/11/03/paypal-x-developer-network-same-as-it-always-was/picture-12-2/"><img style="margin-left:10px;margin-right:10px" title="Picture 12" src="http://www.techstartups.com/blog/wp-content/uploads/2009/11/Picture-12-300x192.png" alt="Picture 12" width="185" height="118"></a></p>
<p>I can forgive them this time, though. Because it appears that their intention is to focus fully on their API implementations and integrate the legacy products like IPN and PDT into a more standardized solution.</p>
<p>Which will help PayPal as it moves toward working with developers to create a wider range of solutions like mobile and in application <a title="Micropayment" rel="wikipedia" href="http://en.wikipedia.org/wiki/Micropayment">micro-payments</a>.</p>
<p>Something else of note with the new PayPal X Developer Network is the improved site IA. Thank you to the person(s) that restructured the information and worked with the UI person(s) to highlight what developers want most . . . documentation.</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/8fc521c7-00f6-493e-a7c0-e14d87e55263/"><img style="border:medium none;float:right" src="http://img.zemanta.com/reblog_e.png?x-id=8fc521c7-00f6-493e-a7c0-e14d87e55263" alt="Reblog this post [with Zemanta]"></a><span></span></div>
<p><a href="http://www.techstartups.com/2009/11/03/paypal-x-developer-network-same-as-it-always-was/">PayPal X Developer Network Same as it Always Was</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/ebay-affiliate-program/" rel="tag">eBay affiliate program</a> <a style="display:inline" href="http://www.techstartups.com/tag/ebay-affiliate-program/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/ebay-api/" rel="tag">eBay API</a> <a style="display:inline" href="http://www.techstartups.com/tag/ebay-api/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/information-architecture/" rel="tag">information architecture</a> <a style="display:inline" href="http://www.techstartups.com/tag/information-architecture/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/paypal-api/" rel="tag">paypal API</a> <a style="display:inline" href="http://www.techstartups.com/tag/paypal-api/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/paypal-ipn/" rel="tag">paypal IPN</a> <a style="display:inline" href="http://www.techstartups.com/tag/paypal-ipn/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/paypal-pdt/" rel="tag">paypal PDT</a> <a style="display:inline" href="http://www.techstartups.com/tag/paypal-pdt/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/paypal-x-developer-network/" rel="tag">PayPal X Developer Network</a> <a style="display:inline" href="http://www.techstartups.com/tag/paypal-x-developer-network/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/paypal">paypal</a> <a href="http://www.technorati.com/tag/paypal"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/paypal.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/developer">developer</a> <a href="http://www.technorati.com/tag/developer"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/developer.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/developers">developers</a> <a href="http://www.technorati.com/tag/developers"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/developers.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/network">network</a> <a href="http://www.technorati.com/tag/network"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/network.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/x">x</a> <a href="http://www.technorati.com/tag/x"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/x.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>Like you,<a rel="attachment wp-att-2786" href="http://www.techstartups.com/2009/11/03/paypal-x-developer-network-same-as-it-always-was/x/"><img style="margin-left:10px;margin-right:10px" title="x" src="http://www.techstartups.com/blog/wp-content/uploads/2009/11/x.gif" alt="x" width="266" height="28"></a> I've been a member and user of PayPal's service for years. They were early to the game and grew accordingly with a product that made buying online drop dead easy. With an exit to eBay they were integrated into a powerful money minting machine.</p>
<p>They also joined a culture of apathy and disdain for those that help them line their pockets  developers.</p>
<p>Like their acquirer, PayPal continued to build a mediocre developer community, foster it with partial code samples, limited information and limited support. Now in kindness to PayPal they did begin providing better support a few years ago and are pretty good when it comes to engaging  developers on the message boards offering solutions  a problem that has plagued eBay for years.</p>
<p>Visit any eBay developer board and you'll find replies that focus on posting in the wrong thread topic instead of offering a solution. It shows the developers that they aren't a priority.</p>
<p>I was looking forward to the release of the brand spanking new PayPal X Developer Network. Hoping that my previous experience wouldn't hold true and that there would be a renewed focus on the developers that are integrating the PayPal gateways and API's into their platforms. But they let me down.</p>
<p>The new developer community site is plagued with broken links, the same old code samples and forums that stopped loading threads on October 28. The intention is there but the execution is hit and miss.</p>
<p><a rel="attachment wp-att-2788" href="http://www.techstartups.com/2009/11/03/paypal-x-developer-network-same-as-it-always-was/picture-12-2/"><img style="margin-left:10px;margin-right:10px" title="Picture 12" src="http://www.techstartups.com/blog/wp-content/uploads/2009/11/Picture-12-300x192.png" alt="Picture 12" width="185" height="118"></a></p>
<p>I can forgive them this time, though. Because it appears that their intention is to focus fully on their API implementations and integrate the legacy products like IPN and PDT into a more standardized solution.</p>
<p>Which will help PayPal as it moves toward working with developers to create a wider range of solutions like mobile and in application <a title="Micropayment" rel="wikipedia" href="http://en.wikipedia.org/wiki/Micropayment">micro-payments</a>.</p>
<p>Something else of note with the new PayPal X Developer Network is the improved site IA. Thank you to the person(s) that restructured the information and worked with the UI person(s) to highlight what developers want most . . . documentation.</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/8fc521c7-00f6-493e-a7c0-e14d87e55263/"><img style="border:medium none;float:right" src="http://img.zemanta.com/reblog_e.png?x-id=8fc521c7-00f6-493e-a7c0-e14d87e55263" alt="Reblog this post [with Zemanta]"></a><span></span></div>
<p><a href="http://www.techstartups.com/2009/11/03/paypal-x-developer-network-same-as-it-always-was/">PayPal X Developer Network Same as it Always Was</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/ebay-affiliate-program/" rel="tag">eBay affiliate program</a> <a style="display:inline" href="http://www.techstartups.com/tag/ebay-affiliate-program/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/ebay-api/" rel="tag">eBay API</a> <a style="display:inline" href="http://www.techstartups.com/tag/ebay-api/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/information-architecture/" rel="tag">information architecture</a> <a style="display:inline" href="http://www.techstartups.com/tag/information-architecture/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/paypal-api/" rel="tag">paypal API</a> <a style="display:inline" href="http://www.techstartups.com/tag/paypal-api/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/paypal-ipn/" rel="tag">paypal IPN</a> <a style="display:inline" href="http://www.techstartups.com/tag/paypal-ipn/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/paypal-pdt/" rel="tag">paypal PDT</a> <a style="display:inline" href="http://www.techstartups.com/tag/paypal-pdt/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/paypal-x-developer-network/" rel="tag">PayPal X Developer Network</a> <a style="display:inline" href="http://www.techstartups.com/tag/paypal-x-developer-network/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/paypal">paypal</a> <a href="http://www.technorati.com/tag/paypal"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/paypal.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/developer">developer</a> <a href="http://www.technorati.com/tag/developer"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/developer.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/developers">developers</a> <a href="http://www.technorati.com/tag/developers"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/developers.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/network">network</a> <a href="http://www.technorati.com/tag/network"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/network.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/x">x</a> <a href="http://www.technorati.com/tag/x"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/x.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></content:encoded>

         <pubDate>Wed, 04 Nov 2009 01:18:12 -0500</pubDate>         <guid isPermaLink="false">tag:croncast.com,5689</guid>

			<itunes:subtitle/>
      </item>
      <item>
         <title>Learning When You Least Expect It</title>
         <link>http://www.techstartups.com/2009/10/30/learning-when-you-least-expect-it/</link>
		 <category>Shared item</category>
			<description><![CDATA[<p><em>By Guest Author, David Cosand (<a href="http://twitter.com/davidcosand">@davidcosand</a>)</em></p>
<p><em><strong><a rel="attachment wp-att-2630" href="http://www.techstartups.com/2009/10/30/learning-when-you-least-expect-it/cosand-crop/"><img style="margin-left:10px;margin-right:10px" title="Cosand-crop" src="http://www.techstartups.com/blog/wp-content/uploads/2009/10/Cosand-crop-243x300.jpg" alt="Cosand-crop" width="90" height="109"></a>About the author:</strong> </em></p>
<p><em>Prior to becoming an elementary school teacher, David Cosand was an advertising media production geek. </em></p>
<p><em>He lives in Southern Oregon with his wife and four children.</em></p>
<p>Sometimes, the best learning happens when you're not looking for it.</p>
<p>You can bury yourself in books, immerse yourself in information, and attempt to lodge lecture after lecture in your long-term memory, but there's not much guarantee all of that content is really going to stick in a meaningful way.</p>
<p>It's when you are in the middle of doing  actually solving a real-world problem  that all of those nuts and bolts of life often drop into place or rearrange into something that makes sense. Something that will get the job done. Something that looks suspiciously like learning.</p>
<p>As a fifth grade teacher in a public school, I'm hard-pressed on all sides to make sure my students are learning. Heck, we've got all sorts of standardized tests to prove I'm doing my job. The most exciting moments in my classroom don't happen at the end of a state achievement test, though.</p>
<p>They show up when my students are collaborating, communicating, integrating, and innovating using the same technology tools that real people in the real world use. When the stuff of the school day lines up with the substance of life, the learning kicks in.</p>
<p><a rel="attachment wp-att-2629" href="http://www.techstartups.com/2009/10/30/learning-when-you-least-expect-it/edmodo/"><img style="margin-left:10px;margin-right:10px" title="edmodo" src="http://www.techstartups.com/blog/wp-content/uploads/2009/10/edmodo-300x112.png" alt="edmodo" width="300" height="112"></a>Some tech tools are created with education in mind. Jeff O'Hara's (<a href="http://twitter.com/zemote">@zemote</a>) <a href="http://edmodo.com">Edmodo</a> is a perfect example. It takes what's great about microblogging and remixes it especially for students.</p>
<p>Other apps find their way into the classroom at the hands of tech-hungry teachers looking for something fresh. <a href="http://animoto.com/">Animoto</a>, <a href="http://animoto.com/">VoiceThread</a>, <a href="http://glogster.com">Glogster</a>, <a href="http://Wikispaces.com">Wikispaces</a>. They're natural fodder for the classroom whether education was their initial focus or not.</p>
<p>It makes a lot of sense for non-education start-ups to include educators in their target audience. As <a title="Malcolm Gladwell" rel="wikipedia" href="http://en.wikipedia.org/wiki/Malcolm_Gladwell">Malcolm Gladwell</a> might put it, teachers are natural connectors, mavens, and salespeople. When we find a great tool, we can't shut up about it. We post links in our Twitterfeeds and blog about it until, pretty soon, the whole Ed world has heard of it.</p>
<p>When you craft that next innovation that will set the world on its ear, remember the teachers. Your original thinking and creativity just might propel my students into a new level of learning. Whether they're looking for it or not.</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/e8ba15eb-b6f4-4467-8bc8-8167c8aa14fa/"><img style="border:medium none;float:right" src="http://img.zemanta.com/reblog_e.png?x-id=e8ba15eb-b6f4-4467-8bc8-8167c8aa14fa" alt="Reblog this post [with Zemanta]"></a><span></span></div>
<p><a href="http://www.techstartups.com/2009/10/30/learning-when-you-least-expect-it/">Learning When You Least Expect It</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/distance-education/" rel="tag">distance education</a> <a style="display:inline" href="http://www.techstartups.com/tag/distance-education/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/edmodo/" rel="tag">Edmodo</a> <a style="display:inline" href="http://www.techstartups.com/tag/edmodo/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/education-software/" rel="tag">education software</a> <a style="display:inline" href="http://www.techstartups.com/tag/education-software/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/elearning-web-2-0/" rel="tag">elearning web 2.0</a> <a style="display:inline" href="http://www.techstartups.com/tag/elearning-web-2-0/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/jeff-ohara/" rel="tag">Jeff O'Hara</a> <a style="display:inline" href="http://www.techstartups.com/tag/jeff-ohara/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/malcolm-gladwell/" rel="tag">Malcolm Gladwell</a> <a style="display:inline" href="http://www.techstartups.com/tag/malcolm-gladwell/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/zemote/" rel="tag">zemote</a> <a style="display:inline" href="http://www.techstartups.com/tag/zemote/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/learning">learning</a> <a href="http://www.technorati.com/tag/learning"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/learning.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/education">education</a> <a href="http://www.technorati.com/tag/education"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/education.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/world">world</a> <a href="http://www.technorati.com/tag/world"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/world.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/students">students</a> <a href="http://www.technorati.com/tag/students"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/students.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/looking">looking</a> <a href="http://www.technorati.com/tag/looking"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/looking.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></description><content:encoded><![CDATA[<p><em>By Guest Author, David Cosand (<a href="http://twitter.com/davidcosand">@davidcosand</a>)</em></p>
<p><em><strong><a rel="attachment wp-att-2630" href="http://www.techstartups.com/2009/10/30/learning-when-you-least-expect-it/cosand-crop/"><img style="margin-left:10px;margin-right:10px" title="Cosand-crop" src="http://www.techstartups.com/blog/wp-content/uploads/2009/10/Cosand-crop-243x300.jpg" alt="Cosand-crop" width="90" height="109"></a>About the author:</strong> </em></p>
<p><em>Prior to becoming an elementary school teacher, David Cosand was an advertising media production geek. </em></p>
<p><em>He lives in Southern Oregon with his wife and four children.</em></p>
<p>Sometimes, the best learning happens when you're not looking for it.</p>
<p>You can bury yourself in books, immerse yourself in information, and attempt to lodge lecture after lecture in your long-term memory, but there's not much guarantee all of that content is really going to stick in a meaningful way.</p>
<p>It's when you are in the middle of doing  actually solving a real-world problem  that all of those nuts and bolts of life often drop into place or rearrange into something that makes sense. Something that will get the job done. Something that looks suspiciously like learning.</p>
<p>As a fifth grade teacher in a public school, I'm hard-pressed on all sides to make sure my students are learning. Heck, we've got all sorts of standardized tests to prove I'm doing my job. The most exciting moments in my classroom don't happen at the end of a state achievement test, though.</p>
<p>They show up when my students are collaborating, communicating, integrating, and innovating using the same technology tools that real people in the real world use. When the stuff of the school day lines up with the substance of life, the learning kicks in.</p>
<p><a rel="attachment wp-att-2629" href="http://www.techstartups.com/2009/10/30/learning-when-you-least-expect-it/edmodo/"><img style="margin-left:10px;margin-right:10px" title="edmodo" src="http://www.techstartups.com/blog/wp-content/uploads/2009/10/edmodo-300x112.png" alt="edmodo" width="300" height="112"></a>Some tech tools are created with education in mind. Jeff O'Hara's (<a href="http://twitter.com/zemote">@zemote</a>) <a href="http://edmodo.com">Edmodo</a> is a perfect example. It takes what's great about microblogging and remixes it especially for students.</p>
<p>Other apps find their way into the classroom at the hands of tech-hungry teachers looking for something fresh. <a href="http://animoto.com/">Animoto</a>, <a href="http://animoto.com/">VoiceThread</a>, <a href="http://glogster.com">Glogster</a>, <a href="http://Wikispaces.com">Wikispaces</a>. They're natural fodder for the classroom whether education was their initial focus or not.</p>
<p>It makes a lot of sense for non-education start-ups to include educators in their target audience. As <a title="Malcolm Gladwell" rel="wikipedia" href="http://en.wikipedia.org/wiki/Malcolm_Gladwell">Malcolm Gladwell</a> might put it, teachers are natural connectors, mavens, and salespeople. When we find a great tool, we can't shut up about it. We post links in our Twitterfeeds and blog about it until, pretty soon, the whole Ed world has heard of it.</p>
<p>When you craft that next innovation that will set the world on its ear, remember the teachers. Your original thinking and creativity just might propel my students into a new level of learning. Whether they're looking for it or not.</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/e8ba15eb-b6f4-4467-8bc8-8167c8aa14fa/"><img style="border:medium none;float:right" src="http://img.zemanta.com/reblog_e.png?x-id=e8ba15eb-b6f4-4467-8bc8-8167c8aa14fa" alt="Reblog this post [with Zemanta]"></a><span></span></div>
<p><a href="http://www.techstartups.com/2009/10/30/learning-when-you-least-expect-it/">Learning When You Least Expect It</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/distance-education/" rel="tag">distance education</a> <a style="display:inline" href="http://www.techstartups.com/tag/distance-education/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/edmodo/" rel="tag">Edmodo</a> <a style="display:inline" href="http://www.techstartups.com/tag/edmodo/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/education-software/" rel="tag">education software</a> <a style="display:inline" href="http://www.techstartups.com/tag/education-software/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/elearning-web-2-0/" rel="tag">elearning web 2.0</a> <a style="display:inline" href="http://www.techstartups.com/tag/elearning-web-2-0/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/jeff-ohara/" rel="tag">Jeff O'Hara</a> <a style="display:inline" href="http://www.techstartups.com/tag/jeff-ohara/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/malcolm-gladwell/" rel="tag">Malcolm Gladwell</a> <a style="display:inline" href="http://www.techstartups.com/tag/malcolm-gladwell/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/zemote/" rel="tag">zemote</a> <a style="display:inline" href="http://www.techstartups.com/tag/zemote/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/learning">learning</a> <a href="http://www.technorati.com/tag/learning"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/learning.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/education">education</a> <a href="http://www.technorati.com/tag/education"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/education.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/world">world</a> <a href="http://www.technorati.com/tag/world"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/world.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/students">students</a> <a href="http://www.technorati.com/tag/students"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/students.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/looking">looking</a> <a href="http://www.technorati.com/tag/looking"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/looking.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></content:encoded>

         <pubDate>Fri, 30 Oct 2009 15:04:13 -0400</pubDate>         <guid isPermaLink="false">tag:croncast.com,5686</guid>

			<itunes:subtitle/>
      </item>
      <item>
         <title>Are You Leaving Links On The Table?</title>
         <link>http://www.techstartups.com/2009/10/30/are-you-leaving-links-on-the-table/</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-2650" href="http://www.techstartups.com/2009/10/30/are-you-leaving-links-on-the-table/chips2/"><img style="margin-left:10px;margin-right:10px" title="chips2" src="http://www.techstartups.com/blog/wp-content/uploads/2009/10/chips2-300x300.jpg" alt="chips2" width="142" height="142"></a>I bet that over half of you are not getting up from the poker table that is internet traffic without all for your <a title="Google" rel="homepage" href="http://google.com">Google</a>, <a title="Microsoft Live Search" rel="homepage" href="http://www.live.com">Bing</a> and <a title="Yahoo!" rel="homepage" href="http://www.yahoo.com">Yahoo</a> chips. Google, Bing and Yahoo being denominations for the valuI am sure that you are leaving these links on the table for the player next to you.</p>
<p>Let's get you to the traffic cage with every last link chip that you deserve to cash in!</p>
<p>Today, I'm going to give you two tips on how to make this happen so that you don't look so green.</p>
<p>1. Ditch the <a title="Query string" rel="wikipedia" href="http://en.wikipedia.org/wiki/Query_string">query string</a> in your site search URL. Turn http://domain.com/?query=TakeMyMoney to http://domain.com/search/PayMeSucka</p>
<p>2. Tweak your search page title from Domain.com Search Results' to include the term searched for. Like Pay Me Sucka | Domain.com'</p>
<p>That's all you need for now. Go figure out how to make it happen or get your web nerd on the phone and tell them, I need to you to go to dubya dubya dubya dot techstartups dot com and read this thing about leaving links on table. I don't even know what that means. Do you? They'll hook it up.</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/d42db29e-a4cd-434f-825a-c0b6433aeab3/"><img style="border:medium none;float:right" src="http://img.zemanta.com/reblog_e.png?x-id=d42db29e-a4cd-434f-825a-c0b6433aeab3" alt="Reblog this post [with Zemanta]"></a><span></span></div>
<p><a href="http://www.techstartups.com/2009/10/30/are-you-leaving-links-on-the-table/">Are You Leaving Links On The Table?</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/bing/" rel="tag">Bing</a> <a style="display:inline" href="http://www.techstartups.com/tag/bing/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/" rel="tag">Google</a> <a style="display:inline" href="http://www.techstartups.com/tag/google/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/internal-search/" rel="tag">internal search</a> <a style="display:inline" href="http://www.techstartups.com/tag/internal-search/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/onsite-search/" rel="tag">onsite search</a> <a style="display:inline" href="http://www.techstartups.com/tag/onsite-search/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/search-query/" rel="tag">search query</a> <a style="display:inline" href="http://www.techstartups.com/tag/search-query/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/search-query-string/" rel="tag">search query string</a> <a style="display:inline" href="http://www.techstartups.com/tag/search-query-string/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/search-results/" rel="tag">Search Results</a> <a style="display:inline" href="http://www.techstartups.com/tag/search-results/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/yahoo/" rel="tag">Yahoo</a> <a style="display:inline" href="http://www.techstartups.com/tag/yahoo/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/search">search</a> <a href="http://www.technorati.com/tag/search"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/search.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/table">table</a> <a href="http://www.technorati.com/tag/table"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/table.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/query">query</a> <a href="http://www.technorati.com/tag/query"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/query.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/leaving">leaving</a> <a href="http://www.technorati.com/tag/leaving"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/leaving.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>]]></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-2650" href="http://www.techstartups.com/2009/10/30/are-you-leaving-links-on-the-table/chips2/"><img style="margin-left:10px;margin-right:10px" title="chips2" src="http://www.techstartups.com/blog/wp-content/uploads/2009/10/chips2-300x300.jpg" alt="chips2" width="142" height="142"></a>I bet that over half of you are not getting up from the poker table that is internet traffic without all for your <a title="Google" rel="homepage" href="http://google.com">Google</a>, <a title="Microsoft Live Search" rel="homepage" href="http://www.live.com">Bing</a> and <a title="Yahoo!" rel="homepage" href="http://www.yahoo.com">Yahoo</a> chips. Google, Bing and Yahoo being denominations for the valuI am sure that you are leaving these links on the table for the player next to you.</p>
<p>Let's get you to the traffic cage with every last link chip that you deserve to cash in!</p>
<p>Today, I'm going to give you two tips on how to make this happen so that you don't look so green.</p>
<p>1. Ditch the <a title="Query string" rel="wikipedia" href="http://en.wikipedia.org/wiki/Query_string">query string</a> in your site search URL. Turn http://domain.com/?query=TakeMyMoney to http://domain.com/search/PayMeSucka</p>
<p>2. Tweak your search page title from Domain.com Search Results' to include the term searched for. Like Pay Me Sucka | Domain.com'</p>
<p>That's all you need for now. Go figure out how to make it happen or get your web nerd on the phone and tell them, I need to you to go to dubya dubya dubya dot techstartups dot com and read this thing about leaving links on table. I don't even know what that means. Do you? They'll hook it up.</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/d42db29e-a4cd-434f-825a-c0b6433aeab3/"><img style="border:medium none;float:right" src="http://img.zemanta.com/reblog_e.png?x-id=d42db29e-a4cd-434f-825a-c0b6433aeab3" alt="Reblog this post [with Zemanta]"></a><span></span></div>
<p><a href="http://www.techstartups.com/2009/10/30/are-you-leaving-links-on-the-table/">Are You Leaving Links On The Table?</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/bing/" rel="tag">Bing</a> <a style="display:inline" href="http://www.techstartups.com/tag/bing/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/" rel="tag">Google</a> <a style="display:inline" href="http://www.techstartups.com/tag/google/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/internal-search/" rel="tag">internal search</a> <a style="display:inline" href="http://www.techstartups.com/tag/internal-search/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/onsite-search/" rel="tag">onsite search</a> <a style="display:inline" href="http://www.techstartups.com/tag/onsite-search/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/search-query/" rel="tag">search query</a> <a style="display:inline" href="http://www.techstartups.com/tag/search-query/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/search-query-string/" rel="tag">search query string</a> <a style="display:inline" href="http://www.techstartups.com/tag/search-query-string/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/search-results/" rel="tag">Search Results</a> <a style="display:inline" href="http://www.techstartups.com/tag/search-results/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/yahoo/" rel="tag">Yahoo</a> <a style="display:inline" href="http://www.techstartups.com/tag/yahoo/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/search">search</a> <a href="http://www.technorati.com/tag/search"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/search.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/table">table</a> <a href="http://www.technorati.com/tag/table"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/table.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/query">query</a> <a href="http://www.technorati.com/tag/query"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/query.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/leaving">leaving</a> <a href="http://www.technorati.com/tag/leaving"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/leaving.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>]]></content:encoded>

         <pubDate>Fri, 30 Oct 2009 19:12:26 -0400</pubDate>         <guid isPermaLink="false">tag:croncast.com,5676</guid>

			<itunes:subtitle/>
      </item>
      <item>
         <title>Google Reader Got Updates? Don't Even Get Me Started</title>
         <link>http://www.techstartups.com/2009/10/22/google-reader-got-updates-dont-even-get-me-started/</link>
		 <category>Shared item</category>
			<description><![CDATA[<p><em>By Senior Editor  Kris Smith</em></p>
<p><a rel="attachment wp-att-2261" href="http://www.techstartups.com/2009/10/22/google-reader-got-updates-dont-even-get-me-started/reader/"><img style="margin-left:10px;margin-right:10px" title="reader" src="http://www.techstartups.com/blog/wp-content/uploads/2009/10/reader.jpg" alt="reader" width="106" height="106"></a>You can only neglect your users for so long before they leave you. The same goes for lovers. And I, was in love with Google Reader once.</p>
<p>Then one day I realized Google Reader wasn't loving me as much as I loved her. So I walked out. We see each other, maybe once a month or so, for short periods of time while we trade feeds.</p>
<p><strong>Reasons</strong></p>
<p>At first she didn't accept my privacy when I wanted to put authenticated feeds in the system. Then she wouldn't allow me to have my shared items back when I asked for them. I wanted all of them . . . but she only gave me 20 at a time. What about the thousands of items I had shared with her? Enough. I couldn't take it any longer. I had to do something about it.</p>
<p><strong>Solution</strong></p>
<p>Two years ago I began caching my Google Reader shared feed so I could access to all the items. Back then Reader hadn't added any features around sharing like search. But I had it once I was storing the items. What I had created then was a strange knowledge base that I could now query to find content that I found of value and had filtered for myself.</p>
<p><strong>Value</strong></p>
<p>Quickly, I added about 10 more shared feeds from friends and other people that I respected online. After about two weeks I had forgotten about Google Reader and found myself hanging out with my new friends . . . well, hanging with their knowledge bases. Here I was capturing tacit knowledge from some of the people I respected the most for their minds.</p>
<p><strong>Filtering</strong></p>
<p>What was now stored for my querying pleasure was content from the best publishers on the planet filtered by the sharpest people I could find. I began to build other tools around the data like grouping by publisher, sharer, keywords and gobs of new feeds.</p>
<p>I built tracking around it to see how robots traversed the feeds since the actual data was locked in a password protected site. Which turned out not to be that big of a deal since the title links were directed back to the publishers.</p>
<p>By adding new user controlled filtering mechanisms on top of pre-filtered data that was pouring into the system, it became much easier to produce pages and feeds for topics that interested me.</p>
<p>Here are a couple of feeds to demonstrate what I am talking about:</p>
<p>Keyword: <a href="http://www.filome.com/key/1/micropayments.rss">http://www.filome.com/key/1/micropayments.rss</a><br>
Group: <a href="http://www.filome.com/group/ksmith/1/Taminania_Brain_Science.rss">http://www.filome.com/group/ksmith/1/Taminania_Brain_Science.rss</a><br>
Sharer: <a href="http://www.filome.com/1/robdiana.rss">http://www.filome.com/1/robdiana.rss</a><br>
Likes: <a href="http://www.filome.com/likes/1/08100556675301148205.rss">http://www.filome.com/likes/1/08100556675301148205.rss</a></p>
<p><strong>What Reader is Doing Now</strong></p>
<p>Since we broke up, she's been adding features but they are all at the feed level and not down to the individual publisher post level. The Bundles that she allows you to create are feed based. Instead of receiving 1 or 2 items of an interesting topic from a few publishers you get all the items in those feeds . . . many more than 2. It's like being in a forest and finding a twig that you want and your date cuts down 10 trees and hands them to you saying, Look, I got your twig. Happy now?</p>
<p><strong>Where Reader is Going</strong></p>
<p>For fear that they are going to be crushed by Facebook and Twitter, Google appears to have put some emphasis on the Reader team and either given the resources or freedom to improve the system. I would even venture to say that members of the Blogger team might be instrumental in some of these improvements. She should look to her friends for support during difficult times.</p>
<p><strong>Where Reader Should Be</strong></p>
<p>I'm gonna break it down nice and easy.</p>
<p>1. Grouping content at the individual post level<br>
2. Feeds for everything<br>
3. Portability of all shared/liked items from the day a user signs up<br>
4. Content shopping cart<br>
5. New UI  85% of web users don't read feeds. Get pretty.<br>
6. Open up as a hub for syndication<br>
7. Give publishers real metrics about subscribers, sharers and likers<br>
8. Allow publishers to create community around these users (within Google)</p>
<p><strong>I am still in love, but I have better things to do</strong></p>
<p>My favorite part of her is still the shared feeds. Like perfume they remain long after she has left the room. They add value to the ecosystem and to the lives of those that have access to them. And since Google Reader is sitting on this massive mountain of filtered and expertly curated data, they should use it as their greatest asset in the coming walk-off with Facebook and Twitter.</p>
<p>DISCLOSURE OF MATERIAL CONNECTION: <a href="http://cmp.ly/0">http://cmp.ly/0</a></p>
<p>Post from: <a href="http://www.techstartups.com">TechStartups.com</a></p>
<p align="left"><a href="http://twitter.com/home/?status=Google+Reader+Got+Updates%3F+Don%E2%80%99t+Even+Get+Me+Started+http://6noyt.th8.us" title="Post to Twitter"><img src="http://www.techstartups.com/blog/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="Post to Twitter"></a> <a href="http://twitter.com/home/?status=Google+Reader+Got+Updates%3F+Don%E2%80%99t+Even+Get+Me+Started+http://6noyt.th8.us" title="Post to Twitter">Tweet This Post</a></p><br><br><br><br><br><br><br><br>Tags: <a style="display:inline" href="http://www.techstartups.com/tag/content-filtering/" rel="tag">content filtering</a> <a style="display:inline" href="http://www.techstartups.com/tag/content-filtering/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/content-shopping-cart/" rel="tag">content shopping cart</a> <a style="display:inline" href="http://www.techstartups.com/tag/content-shopping-cart/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/facebook/" rel="tag">Facebook</a> <a style="display:inline" href="http://www.techstartups.com/tag/facebook/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-reader/" rel="tag">google reader</a> <a style="display:inline" href="http://www.techstartups.com/tag/google-reader/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-shared-items/" rel="tag">google shared items</a> <a style="display:inline" href="http://www.techstartups.com/tag/google-shared-items/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/grouping/" rel="tag">grouping</a> <a style="display:inline" href="http://www.techstartups.com/tag/grouping/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/real-time-rss/" rel="tag">real-time rss</a> <a style="display:inline" href="http://www.techstartups.com/tag/real-time-rss/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/shared-feeds/" rel="tag">shared feeds</a> <a style="display:inline" href="http://www.techstartups.com/tag/shared-feeds/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/twitter/" rel="tag">Twitter</a> <a style="display:inline" href="http://www.techstartups.com/tag/twitter/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/feeds">feeds</a> <a href="http://www.technorati.com/tag/feeds"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/feeds.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/reader">reader</a> <a href="http://www.technorati.com/tag/reader"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/reader.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/shared">shared</a> <a href="http://www.technorati.com/tag/shared"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/shared.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/items">items</a> <a href="http://www.technorati.com/tag/items"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/items.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</em></p>
<p><a rel="attachment wp-att-2261" href="http://www.techstartups.com/2009/10/22/google-reader-got-updates-dont-even-get-me-started/reader/"><img style="margin-left:10px;margin-right:10px" title="reader" src="http://www.techstartups.com/blog/wp-content/uploads/2009/10/reader.jpg" alt="reader" width="106" height="106"></a>You can only neglect your users for so long before they leave you. The same goes for lovers. And I, was in love with Google Reader once.</p>
<p>Then one day I realized Google Reader wasn't loving me as much as I loved her. So I walked out. We see each other, maybe once a month or so, for short periods of time while we trade feeds.</p>
<p><strong>Reasons</strong></p>
<p>At first she didn't accept my privacy when I wanted to put authenticated feeds in the system. Then she wouldn't allow me to have my shared items back when I asked for them. I wanted all of them . . . but she only gave me 20 at a time. What about the thousands of items I had shared with her? Enough. I couldn't take it any longer. I had to do something about it.</p>
<p><strong>Solution</strong></p>
<p>Two years ago I began caching my Google Reader shared feed so I could access to all the items. Back then Reader hadn't added any features around sharing like search. But I had it once I was storing the items. What I had created then was a strange knowledge base that I could now query to find content that I found of value and had filtered for myself.</p>
<p><strong>Value</strong></p>
<p>Quickly, I added about 10 more shared feeds from friends and other people that I respected online. After about two weeks I had forgotten about Google Reader and found myself hanging out with my new friends . . . well, hanging with their knowledge bases. Here I was capturing tacit knowledge from some of the people I respected the most for their minds.</p>
<p><strong>Filtering</strong></p>
<p>What was now stored for my querying pleasure was content from the best publishers on the planet filtered by the sharpest people I could find. I began to build other tools around the data like grouping by publisher, sharer, keywords and gobs of new feeds.</p>
<p>I built tracking around it to see how robots traversed the feeds since the actual data was locked in a password protected site. Which turned out not to be that big of a deal since the title links were directed back to the publishers.</p>
<p>By adding new user controlled filtering mechanisms on top of pre-filtered data that was pouring into the system, it became much easier to produce pages and feeds for topics that interested me.</p>
<p>Here are a couple of feeds to demonstrate what I am talking about:</p>
<p>Keyword: <a href="http://www.filome.com/key/1/micropayments.rss">http://www.filome.com/key/1/micropayments.rss</a><br>
Group: <a href="http://www.filome.com/group/ksmith/1/Taminania_Brain_Science.rss">http://www.filome.com/group/ksmith/1/Taminania_Brain_Science.rss</a><br>
Sharer: <a href="http://www.filome.com/1/robdiana.rss">http://www.filome.com/1/robdiana.rss</a><br>
Likes: <a href="http://www.filome.com/likes/1/08100556675301148205.rss">http://www.filome.com/likes/1/08100556675301148205.rss</a></p>
<p><strong>What Reader is Doing Now</strong></p>
<p>Since we broke up, she's been adding features but they are all at the feed level and not down to the individual publisher post level. The Bundles that she allows you to create are feed based. Instead of receiving 1 or 2 items of an interesting topic from a few publishers you get all the items in those feeds . . . many more than 2. It's like being in a forest and finding a twig that you want and your date cuts down 10 trees and hands them to you saying, Look, I got your twig. Happy now?</p>
<p><strong>Where Reader is Going</strong></p>
<p>For fear that they are going to be crushed by Facebook and Twitter, Google appears to have put some emphasis on the Reader team and either given the resources or freedom to improve the system. I would even venture to say that members of the Blogger team might be instrumental in some of these improvements. She should look to her friends for support during difficult times.</p>
<p><strong>Where Reader Should Be</strong></p>
<p>I'm gonna break it down nice and easy.</p>
<p>1. Grouping content at the individual post level<br>
2. Feeds for everything<br>
3. Portability of all shared/liked items from the day a user signs up<br>
4. Content shopping cart<br>
5. New UI  85% of web users don't read feeds. Get pretty.<br>
6. Open up as a hub for syndication<br>
7. Give publishers real metrics about subscribers, sharers and likers<br>
8. Allow publishers to create community around these users (within Google)</p>
<p><strong>I am still in love, but I have better things to do</strong></p>
<p>My favorite part of her is still the shared feeds. Like perfume they remain long after she has left the room. They add value to the ecosystem and to the lives of those that have access to them. And since Google Reader is sitting on this massive mountain of filtered and expertly curated data, they should use it as their greatest asset in the coming walk-off with Facebook and Twitter.</p>
<p>DISCLOSURE OF MATERIAL CONNECTION: <a href="http://cmp.ly/0">http://cmp.ly/0</a></p>
<p>Post from: <a href="http://www.techstartups.com">TechStartups.com</a></p>
<p align="left"><a href="http://twitter.com/home/?status=Google+Reader+Got+Updates%3F+Don%E2%80%99t+Even+Get+Me+Started+http://6noyt.th8.us" title="Post to Twitter"><img src="http://www.techstartups.com/blog/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="Post to Twitter"></a> <a href="http://twitter.com/home/?status=Google+Reader+Got+Updates%3F+Don%E2%80%99t+Even+Get+Me+Started+http://6noyt.th8.us" title="Post to Twitter">Tweet This Post</a></p><br><br><br><br><br><br><br><br>Tags: <a style="display:inline" href="http://www.techstartups.com/tag/content-filtering/" rel="tag">content filtering</a> <a style="display:inline" href="http://www.techstartups.com/tag/content-filtering/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/content-shopping-cart/" rel="tag">content shopping cart</a> <a style="display:inline" href="http://www.techstartups.com/tag/content-shopping-cart/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/facebook/" rel="tag">Facebook</a> <a style="display:inline" href="http://www.techstartups.com/tag/facebook/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-reader/" rel="tag">google reader</a> <a style="display:inline" href="http://www.techstartups.com/tag/google-reader/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-shared-items/" rel="tag">google shared items</a> <a style="display:inline" href="http://www.techstartups.com/tag/google-shared-items/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/grouping/" rel="tag">grouping</a> <a style="display:inline" href="http://www.techstartups.com/tag/grouping/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/real-time-rss/" rel="tag">real-time rss</a> <a style="display:inline" href="http://www.techstartups.com/tag/real-time-rss/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/shared-feeds/" rel="tag">shared feeds</a> <a style="display:inline" href="http://www.techstartups.com/tag/shared-feeds/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/twitter/" rel="tag">Twitter</a> <a style="display:inline" href="http://www.techstartups.com/tag/twitter/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/feeds">feeds</a> <a href="http://www.technorati.com/tag/feeds"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/feeds.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/reader">reader</a> <a href="http://www.technorati.com/tag/reader"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/reader.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/shared">shared</a> <a href="http://www.technorati.com/tag/shared"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/shared.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/items">items</a> <a href="http://www.technorati.com/tag/items"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/items.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></content:encoded>

         <pubDate>Fri, 23 Oct 2009 01:34:53 -0400</pubDate>         <guid isPermaLink="false">tag:croncast.com,5653</guid>

			<itunes:subtitle/>
      </item>
      <item>
         <title>Zemify Your Content With Zemanta</title>
         <link>http://www.techstartups.com/2009/10/23/zemify-your-content-with-zemanta/</link>
		 <category>Shared item</category>
			<description><![CDATA[<p><em>By Senior Editor  Kris Smith</em></p>
<p><a rel="attachment wp-att-2286" href="http://www.techstartups.com/2009/10/23/zemify-your-content-with-zemanta/zemanta/"><img style="margin-left:10px;margin-right:10px" title="zemanta" src="http://www.techstartups.com/blog/wp-content/uploads/2009/10/zemanta.png" alt="zemanta" width="206" height="73"></a>The semantic web is well on its way and one of the startups that has taken an early lead is <a href="http://zemanta.com">Zemanta</a>. They have taken a unique approach to linked data and the science that powers their ability to create structured content from it. They aimed their service at publishers, not the IT crowd.</p>
<p>Typically, semantic technology companies rely heavily on their colleagues with computer science degrees not the actual publisher. They will deliver products as API's or server side solutions with a hefty price tag. Zemanta has created the right relationships with CMS and blogging platform owners to integrate their tools within administration sections.</p>
<p>They offer AJAX'ed out components in these platforms that reads from the main content box as a publisher types a post and updates linked content like photos, links and tags that are appropriate for the post. By doing this it allows the publisher to focus on their post and actual release content faster.</p>
<p>The core of their service is to intelligently eliminate the need for the publisher to start research from ground zero. They offer points of direction inside the administration interface to guide the publisher to resources quickly. I am most impressed with the way that Zemanta handles tags and the relationships between them.</p>
<p><a href="http://developer.zemanta.com/">Zemanta does offer an API</a>, I have used it in the past. The API returns data quickly and an even more robust set than the plugin style for CMS's. A sample request returns maps, categories, links, excerpts and more. The only problem that I encountered was one that all semantic companies have right now, context and sentiment for breaking news.</p>
<p>Semantic services rely on hefty algorithms that need sample data to create the links between data and develop sentiment. As a result of this issue, it makes it very hard to implement solutions that work with real-time data and syndication of that content. Most times, once something has hit a feed or been released to a partner site it cannot be updated with linked data. I've been told it is something that the Zemanta team is working on.</p>
<p>Zemanta makes it easy to Zemify your content in WordPress, Drupal, Movable Type among others and possibly Blogger in the future.</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/0ea4a6bc-6335-44b2-8be1-5c5adf6fb313/"><img style="border:medium none;float:right" src="http://img.zemanta.com/reblog_e.png?x-id=0ea4a6bc-6335-44b2-8be1-5c5adf6fb313" alt="Reblog this post [with Zemanta]"></a><span></span></div>
<p>Post from: <a href="http://www.techstartups.com">TechStartups.com</a></p>
<p align="left"><a href="http://twitter.com/home/?status=Zemify+Your+Content+With+Zemanta+http://ens2r.th8.us" title="Post to Twitter"><img src="http://www.techstartups.com/blog/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="Post to Twitter"></a> <a href="http://twitter.com/home/?status=Zemify+Your+Content+With+Zemanta+http://ens2r.th8.us" title="Post to Twitter">Tweet This Post</a></p><br><br><br><br><br><br><br><br>Tags: <a style="display:inline" href="http://www.techstartups.com/tag/ajax/" rel="tag">AJAX</a> <a style="display:inline" href="http://www.techstartups.com/tag/ajax/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/api/" rel="tag">api</a> <a style="display:inline" href="http://www.techstartups.com/tag/api/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/blogger/" rel="tag">blogger</a> <a style="display:inline" href="http://www.techstartups.com/tag/blogger/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/cms/" rel="tag">CMS</a> <a style="display:inline" href="http://www.techstartups.com/tag/cms/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/drupal/" rel="tag">Drupal</a> <a style="display:inline" href="http://www.techstartups.com/tag/drupal/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/linked-data/" rel="tag">linked data</a> <a style="display:inline" href="http://www.techstartups.com/tag/linked-data/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/movable-type/" rel="tag">Movable Type</a> <a style="display:inline" href="http://www.techstartups.com/tag/movable-type/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/semantic-web/" rel="tag">semantic web</a> <a style="display:inline" href="http://www.techstartups.com/tag/semantic-web/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>, <a style="display:inline" href="http://www.techstartups.com/tag/wordpress/" rel="tag">WordPress</a> <a style="display:inline" href="http://www.techstartups.com/tag/wordpress/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/zemanta/" rel="tag">Zemanta</a> <a style="display:inline" href="http://www.techstartups.com/tag/zemanta/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/zemify/" rel="tag">Zemify</a> <a style="display:inline" href="http://www.techstartups.com/tag/zemify/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/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/zemanta">zemanta</a> <a href="http://www.technorati.com/tag/zemanta"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/zemanta.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/content">content</a> <a href="http://www.technorati.com/tag/content"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/content.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/semantic">semantic</a> <a href="http://www.technorati.com/tag/semantic"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/semantic.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/publisher">publisher</a> <a href="http://www.technorati.com/tag/publisher"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/publisher.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</em></p>
<p><a rel="attachment wp-att-2286" href="http://www.techstartups.com/2009/10/23/zemify-your-content-with-zemanta/zemanta/"><img style="margin-left:10px;margin-right:10px" title="zemanta" src="http://www.techstartups.com/blog/wp-content/uploads/2009/10/zemanta.png" alt="zemanta" width="206" height="73"></a>The semantic web is well on its way and one of the startups that has taken an early lead is <a href="http://zemanta.com">Zemanta</a>. They have taken a unique approach to linked data and the science that powers their ability to create structured content from it. They aimed their service at publishers, not the IT crowd.</p>
<p>Typically, semantic technology companies rely heavily on their colleagues with computer science degrees not the actual publisher. They will deliver products as API's or server side solutions with a hefty price tag. Zemanta has created the right relationships with CMS and blogging platform owners to integrate their tools within administration sections.</p>
<p>They offer AJAX'ed out components in these platforms that reads from the main content box as a publisher types a post and updates linked content like photos, links and tags that are appropriate for the post. By doing this it allows the publisher to focus on their post and actual release content faster.</p>
<p>The core of their service is to intelligently eliminate the need for the publisher to start research from ground zero. They offer points of direction inside the administration interface to guide the publisher to resources quickly. I am most impressed with the way that Zemanta handles tags and the relationships between them.</p>
<p><a href="http://developer.zemanta.com/">Zemanta does offer an API</a>, I have used it in the past. The API returns data quickly and an even more robust set than the plugin style for CMS's. A sample request returns maps, categories, links, excerpts and more. The only problem that I encountered was one that all semantic companies have right now, context and sentiment for breaking news.</p>
<p>Semantic services rely on hefty algorithms that need sample data to create the links between data and develop sentiment. As a result of this issue, it makes it very hard to implement solutions that work with real-time data and syndication of that content. Most times, once something has hit a feed or been released to a partner site it cannot be updated with linked data. I've been told it is something that the Zemanta team is working on.</p>
<p>Zemanta makes it easy to Zemify your content in WordPress, Drupal, Movable Type among others and possibly Blogger in the future.</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/0ea4a6bc-6335-44b2-8be1-5c5adf6fb313/"><img style="border:medium none;float:right" src="http://img.zemanta.com/reblog_e.png?x-id=0ea4a6bc-6335-44b2-8be1-5c5adf6fb313" alt="Reblog this post [with Zemanta]"></a><span></span></div>
<p>Post from: <a href="http://www.techstartups.com">TechStartups.com</a></p>
<p align="left"><a href="http://twitter.com/home/?status=Zemify+Your+Content+With+Zemanta+http://ens2r.th8.us" title="Post to Twitter"><img src="http://www.techstartups.com/blog/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="Post to Twitter"></a> <a href="http://twitter.com/home/?status=Zemify+Your+Content+With+Zemanta+http://ens2r.th8.us" title="Post to Twitter">Tweet This Post</a></p><br><br><br><br><br><br><br><br>Tags: <a style="display:inline" href="http://www.techstartups.com/tag/ajax/" rel="tag">AJAX</a> <a style="display:inline" href="http://www.techstartups.com/tag/ajax/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/api/" rel="tag">api</a> <a style="display:inline" href="http://www.techstartups.com/tag/api/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/blogger/" rel="tag">blogger</a> <a style="display:inline" href="http://www.techstartups.com/tag/blogger/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/cms/" rel="tag">CMS</a> <a style="display:inline" href="http://www.techstartups.com/tag/cms/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/drupal/" rel="tag">Drupal</a> <a style="display:inline" href="http://www.techstartups.com/tag/drupal/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/linked-data/" rel="tag">linked data</a> <a style="display:inline" href="http://www.techstartups.com/tag/linked-data/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/movable-type/" rel="tag">Movable Type</a> <a style="display:inline" href="http://www.techstartups.com/tag/movable-type/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/semantic-web/" rel="tag">semantic web</a> <a style="display:inline" href="http://www.techstartups.com/tag/semantic-web/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>, <a style="display:inline" href="http://www.techstartups.com/tag/wordpress/" rel="tag">WordPress</a> <a style="display:inline" href="http://www.techstartups.com/tag/wordpress/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/zemanta/" rel="tag">Zemanta</a> <a style="display:inline" href="http://www.techstartups.com/tag/zemanta/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/zemify/" rel="tag">Zemify</a> <a style="display:inline" href="http://www.techstartups.com/tag/zemify/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/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/zemanta">zemanta</a> <a href="http://www.technorati.com/tag/zemanta"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/zemanta.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/content">content</a> <a href="http://www.technorati.com/tag/content"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/content.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/semantic">semantic</a> <a href="http://www.technorati.com/tag/semantic"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/semantic.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/publisher">publisher</a> <a href="http://www.technorati.com/tag/publisher"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/publisher.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></content:encoded>

         <pubDate>Fri, 23 Oct 2009 22:35:47 -0400</pubDate>         <guid isPermaLink="false">tag:croncast.com,5656</guid>

			<itunes:subtitle/>
      </item>
      <item>
         <title>Links in Print: Story of a Beautiful Failure</title>
         <link>http://feedproxy.google.com/~r/InformationArchitectsJapan/~3/rEr7Dyj12tY/</link>
		 <category>Shared item</category>
			<description><![CDATA[In January 2009 we were invited to take part in a paid pitch for the print redesign for the Swiss newspaper Tages-Anzeiger. All in all five agencies took part in the pitch. We were the only UX oriented agency. The story of a beautiful failure.

We put all eggs in one ...<img src="http://feeds.feedburner.com/~r/InformationArchitectsJapan/~4/rEr7Dyj12tY" height="1" width="1"><br><br>Tags: <a href="http://www.croncast.com/keyg/failure">failure</a> <a href="http://www.technorati.com/tag/failure"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/failure.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/part">part</a> <a href="http://www.technorati.com/tag/part"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/part.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/beautiful">beautiful</a> <a href="http://www.technorati.com/tag/beautiful"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/beautiful.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/pitch">pitch</a> <a href="http://www.technorati.com/tag/pitch"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/pitch.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/print">print</a> <a href="http://www.technorati.com/tag/print"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/print.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></description><content:encoded><![CDATA[In January 2009 we were invited to take part in a paid pitch for the print redesign for the Swiss newspaper Tages-Anzeiger. All in all five agencies took part in the pitch. We were the only UX oriented agency. The story of a beautiful failure.

We put all eggs in one ...<img src="http://feeds.feedburner.com/~r/InformationArchitectsJapan/~4/rEr7Dyj12tY" height="1" width="1"><br><br>Tags: <a href="http://www.croncast.com/keyg/failure">failure</a> <a href="http://www.technorati.com/tag/failure"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/failure.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/part">part</a> <a href="http://www.technorati.com/tag/part"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/part.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/beautiful">beautiful</a> <a href="http://www.technorati.com/tag/beautiful"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/beautiful.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/pitch">pitch</a> <a href="http://www.technorati.com/tag/pitch"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/pitch.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/print">print</a> <a href="http://www.technorati.com/tag/print"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/print.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></content:encoded>

         <pubDate>Thu, 01 Oct 2009 20:37:01 -0400</pubDate>         <guid isPermaLink="false">tag:croncast.com,5643</guid>

			<itunes:subtitle/>
      </item>
      <item>
         <title>Links in Print: The Story of a Beautiful Failure</title>
         <link>http://feedproxy.google.com/~r/InformationArchitectsJapan/~3/rEr7Dyj12tY/</link>
		 <category>Shared item</category>
			<description><![CDATA[In January 2009 we were invited to take part in a paid pitch for the print redesign for the Swiss newspaper Tages-Anzeiger. All in all five agencies took part in the pitch. We were the only UX oriented agency. The story of a beautiful failure.

We put all eggs in one ...<img src="http://feeds.feedburner.com/~r/InformationArchitectsJapan/~4/rEr7Dyj12tY" height="1" width="1"><br><br>Tags: <a href="http://www.croncast.com/keyg/failure">failure</a> <a href="http://www.technorati.com/tag/failure"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/failure.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/part">part</a> <a href="http://www.technorati.com/tag/part"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/part.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/beautiful">beautiful</a> <a href="http://www.technorati.com/tag/beautiful"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/beautiful.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/pitch">pitch</a> <a href="http://www.technorati.com/tag/pitch"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/pitch.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/print">print</a> <a href="http://www.technorati.com/tag/print"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/print.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></description><content:encoded><![CDATA[In January 2009 we were invited to take part in a paid pitch for the print redesign for the Swiss newspaper Tages-Anzeiger. All in all five agencies took part in the pitch. We were the only UX oriented agency. The story of a beautiful failure.

We put all eggs in one ...<img src="http://feeds.feedburner.com/~r/InformationArchitectsJapan/~4/rEr7Dyj12tY" height="1" width="1"><br><br>Tags: <a href="http://www.croncast.com/keyg/failure">failure</a> <a href="http://www.technorati.com/tag/failure"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/failure.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/part">part</a> <a href="http://www.technorati.com/tag/part"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/part.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/beautiful">beautiful</a> <a href="http://www.technorati.com/tag/beautiful"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/beautiful.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/pitch">pitch</a> <a href="http://www.technorati.com/tag/pitch"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/pitch.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/print">print</a> <a href="http://www.technorati.com/tag/print"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/print.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></content:encoded>

         <pubDate>Thu, 01 Oct 2009 20:37:01 -0400</pubDate>         <guid isPermaLink="false">tag:croncast.com,5638</guid>

			<itunes:subtitle/>
      </item>
      <item>
         <title>Nutrition and Violence</title>
         <link>http://feedproxy.google.com/~r/Mindblog/~3/g4yw03BQUP0/nutrition-and-violence.html</link>
		 <category>Shared item</category>
			<description><![CDATA[Publisher - <a href="http://www.filome.com/pub/0lpbcQZxKeMg8l">Deric Bownds&#39; MindBlog</a><br> First shared  by - <a href="http://www.filome.com/tamihania">tamihania</a><br>syndication+ 2 | Search 1 | Shares 1<br><br>In the Sept. 25 issue of Science <a href="http://www.sciencemag.org/cgi/content/summary/325/5948/1614">John Bohannon describes</a> work of Oxford's Bernard Gesch and others studying prison populations for evidence of links between nutrition and violent behavior. Two previous studies have shown that prisoners given nutritional supplements committed ~35% fewer violent incidences than those given a placebo, and a more ambitious study of over 1,000 prisoners in three U.K. prisons started this spring.  The article offers a summary table which I pass on here:<br><br><a href="http://dericbownds.net/uploaded_images/violencediet.gif"><img src="http://dericbownds.net/uploaded_images/violencediet.gif" border="0"> </a><div><img src="https://blogger.googleusercontent.com/tracker/22093933-1171385959248703832?l=mindblog.dericbownds.net" border="0"> </div><div>
<a href="http://feeds.feedburner.com/~ff/Mindblog?a=g4yw03BQUP0:fwwGctZOuhE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Mindblog?d=yIl2AUoC8zA" border="0"> </a>
</div><img src="http://feeds.feedburner.com/~r/Mindblog/~4/g4yw03BQUP0" border="0"> <br><br><a href="http://www.filome.com/key/violent">violent</a> <a href="http://search.twitter.com/search?q=%22violent%22"><img src="http://www.filome.com/images/summize.gif" border="0"></a> <a href="http://www.filome.com/key/violent.rss"><img src="http://www.filome.com/images/c4_rss_tiny.jpg" border="0"></a>  <a href="http://www.filome.com/key/prisoners">prisoners</a> <a href="http://search.twitter.com/search?q=%22prisoners%22"><img src="http://www.filome.com/images/summize.gif" border="0"></a> <a href="http://www.filome.com/key/prisoners.rss"><img src="http://www.filome.com/images/c4_rss_tiny.jpg" border="0"></a>  <a href="http://www.filome.com/key/given">given</a>  <a href="http://search.twitter.com/search?q=%22given%22"><img src="http://www.filome.com/images/summize.gif" border="0"></a> <a href="http://www.filome.com/key/given.rss"><img src="http://www.filome.com/images/c4_rss_tiny.jpg" border="0"></a>  <a href="http://www.filome.com/key/nutrition">nutrition</a> <a href="http://search.twitter.com/search?q=%22nutrition%22"><img src="http://www.filome.com/images/summize.gif" border="0"></a> <a href="http://www.filome.com/key/nutrition.rss"><img src="http://www.filome.com/images/c4_rss_tiny.jpg" border="0"></a>  <a href="http://www.filome.com/key/fewer">fewer</a> <a href="http://search.twitter.com/search?q=%22fewer%22"><img src="http://www.filome.com/images/summize.gif" border="0"></a> <a href="http://www.filome.com/key/fewer.rss"><img src="http://www.filome.com/images/c4_rss_tiny.jpg" border="0"></a>  <br><br>Tags: <a href="http://www.croncast.com/keyg/given">given</a> <a href="http://www.technorati.com/tag/given"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/given.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/prisoners">prisoners</a> <a href="http://www.technorati.com/tag/prisoners"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/prisoners.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/violent">violent</a> <a href="http://www.technorati.com/tag/violent"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/violent.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/nutrition">nutrition</a> <a href="http://www.technorati.com/tag/nutrition"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/nutrition.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/fewer">fewer</a> <a href="http://www.technorati.com/tag/fewer"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/fewer.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></description><content:encoded><![CDATA[Publisher - <a href="http://www.filome.com/pub/0lpbcQZxKeMg8l">Deric Bownds&#39; MindBlog</a><br> First shared  by - <a href="http://www.filome.com/tamihania">tamihania</a><br>syndication+ 2 | Search 1 | Shares 1<br><br>In the Sept. 25 issue of Science <a href="http://www.sciencemag.org/cgi/content/summary/325/5948/1614">John Bohannon describes</a> work of Oxford's Bernard Gesch and others studying prison populations for evidence of links between nutrition and violent behavior. Two previous studies have shown that prisoners given nutritional supplements committed ~35% fewer violent incidences than those given a placebo, and a more ambitious study of over 1,000 prisoners in three U.K. prisons started this spring.  The article offers a summary table which I pass on here:<br><br><a href="http://dericbownds.net/uploaded_images/violencediet.gif"><img src="http://dericbownds.net/uploaded_images/violencediet.gif" border="0"> </a><div><img src="https://blogger.googleusercontent.com/tracker/22093933-1171385959248703832?l=mindblog.dericbownds.net" border="0"> </div><div>
<a href="http://feeds.feedburner.com/~ff/Mindblog?a=g4yw03BQUP0:fwwGctZOuhE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Mindblog?d=yIl2AUoC8zA" border="0"> </a>
</div><img src="http://feeds.feedburner.com/~r/Mindblog/~4/g4yw03BQUP0" border="0"> <br><br><a href="http://www.filome.com/key/violent">violent</a> <a href="http://search.twitter.com/search?q=%22violent%22"><img src="http://www.filome.com/images/summize.gif" border="0"></a> <a href="http://www.filome.com/key/violent.rss"><img src="http://www.filome.com/images/c4_rss_tiny.jpg" border="0"></a>  <a href="http://www.filome.com/key/prisoners">prisoners</a> <a href="http://search.twitter.com/search?q=%22prisoners%22"><img src="http://www.filome.com/images/summize.gif" border="0"></a> <a href="http://www.filome.com/key/prisoners.rss"><img src="http://www.filome.com/images/c4_rss_tiny.jpg" border="0"></a>  <a href="http://www.filome.com/key/given">given</a>  <a href="http://search.twitter.com/search?q=%22given%22"><img src="http://www.filome.com/images/summize.gif" border="0"></a> <a href="http://www.filome.com/key/given.rss"><img src="http://www.filome.com/images/c4_rss_tiny.jpg" border="0"></a>  <a href="http://www.filome.com/key/nutrition">nutrition</a> <a href="http://search.twitter.com/search?q=%22nutrition%22"><img src="http://www.filome.com/images/summize.gif" border="0"></a> <a href="http://www.filome.com/key/nutrition.rss"><img src="http://www.filome.com/images/c4_rss_tiny.jpg" border="0"></a>  <a href="http://www.filome.com/key/fewer">fewer</a> <a href="http://search.twitter.com/search?q=%22fewer%22"><img src="http://www.filome.com/images/summize.gif" border="0"></a> <a href="http://www.filome.com/key/fewer.rss"><img src="http://www.filome.com/images/c4_rss_tiny.jpg" border="0"></a>  <br><br>Tags: <a href="http://www.croncast.com/keyg/given">given</a> <a href="http://www.technorati.com/tag/given"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/given.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/prisoners">prisoners</a> <a href="http://www.technorati.com/tag/prisoners"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/prisoners.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/violent">violent</a> <a href="http://www.technorati.com/tag/violent"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/violent.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/nutrition">nutrition</a> <a href="http://www.technorati.com/tag/nutrition"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/nutrition.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/fewer">fewer</a> <a href="http://www.technorati.com/tag/fewer"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/fewer.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></content:encoded>

         <pubDate>Wed, 30 Sep 2009 09:48:11 -0400</pubDate>         <guid isPermaLink="false">tag:croncast.com,5629</guid>

			<itunes:subtitle/>
      </item>
      <item>
         <title>Protect little eyes from the computer screen</title>
         <link>http://www.thesuburbannews.ca/content/en/2265</link>
		 <category>Shared item</category>
			<description><![CDATA[Publisher - <a href="http://www.filome.com/pub/Fj3dBIhzkUPD0t">Readtwit</a><br> First shared  by - <a href="http://www.filome.com/tamihania">tamihania</a><br>syndication+ 1 | Search 1 | Shares 1<br><br><b><a href="http://twitter.com/twitterbo">@twitterbo </a></b> wrote:<br>
<i>Protect little eyes from the computer screen ... http://short.to/r4zc</i>
<br>

<br>


<table><tbody><tr>                                       <td>
<br><table><tbody><tr>
<td>
<h1><b>Protect little eyes from the computer screen</b></h1>
<p>With September comes the resumption of school work, homework, research projects and classmate communication, so it's important to note that the average North American child now spends one to three hours per day with his or her eyes on a computer screen. As a result, many leading pediatric eye doctors believe that the startling increase of nearsightedness (myopia) in children worldwide is a direct consequence of avid computer use. <br> </p>
<p>In fact, children using computers before their visual systems are fully developed are at the very heart of the public health problem called computer vision syndrome', says Bijan Minbashion, vice president of operations for Hakim Optical, retail eye care specialists. A study at the University of California reports that 25 to 30 percent of computer-using children need corrective eyewear to work with the equipment comfortably and safely  and similar studies in Asia report that first-graders with myopia has increased from 12.1 to 20.4 percent since 1995. In the last three years, myopia is reported to have doubled to 34 percent in seven- to nine-year-olds. <br> </p>
<p>To guard against early damage to your child's eyes, consider these tips: <br> Schedule a comprehensive eye exam as your child enters kindergarten, including near-point (computer and reading) and distance testing. <br> Schedule an eye exam before school begins every year. <br> The recommended distance for children between the monitor and the eye is 18-28 inches. Any closer risks eye strain. <br> Be aware of behaviour that indicates problems such as eye redness, frequent rubbing of the eyes, unusual posture, or complaints of blurriness or eye fatigue. <br> News Canada</p>
</td>                     </tr></tbody></table>
</td>                                                </tr></tbody></table>
<p> </p>
<br><br>

<div style="text-align:left;direction:ltr">
    <img src="http://i893.photobucket.com/albums/ac140/lionite/filteruser.png" border="0">   <a href="http://www.readtwit.com/settings/addfilter/type/1/value/twitterbo/hash/1e5c3f7541f6892060bac9b881d8afd5" title="Hide this person">Hide links from <b>@twitterbo</b></a><br>
     
    <img src="http://i893.photobucket.com/albums/ac140/lionite/report.png" border="0"> <b>  <a href="http://www.readtwit.com/contact/support?hash=1e5c3f7541f6892060bac9b881d8afd5&amp;content=http%3A%2F%2Fwww.thesuburbannews.ca%2Fcontent%2Fen%2F2265">Let us know</a></b> if this story is not showing up correctly<br><br>
    <a href="http://www.readtwit.com"><img src="http://i893.photobucket.com/albums/ac140/lionite/feedFooter.png" border="0"> </a>
</div><br><br><a href="http://www.filome.com/key/eye">eye</a> <a href="http://search.twitter.com/search?q=%22eye%22"><img src="http://www.filome.com/images/summize.gif" border="0"></a> <a href="http://www.filome.com/key/eye.rss"><img src="http://www.filome.com/images/c4_rss_tiny.jpg" border="0"></a>  <a href="http://www.filome.com/key/computer">computer</a> <a href="http://search.twitter.com/search?q=%22computer%22"><img src="http://www.filome.com/images/summize.gif" border="0"></a> <a href="http://www.filome.com/key/computer.rss"><img src="http://www.filome.com/images/c4_rss_tiny.jpg" border="0"></a>  <a href="http://www.filome.com/key/eyes">eyes</a>  <a href="http://search.twitter.com/search?q=%22eyes%22"><img src="http://www.filome.com/images/summize.gif" border="0"></a> <a href="http://www.filome.com/key/eyes.rss"><img src="http://www.filome.com/images/c4_rss_tiny.jpg" border="0"></a>  <a href="http://www.filome.com/key/children">children</a> <a href="http://search.twitter.com/search?q=%22children%22"><img src="http://www.filome.com/images/summize.gif" border="0"></a> <a href="http://www.filome.com/key/children.rss"><img src="http://www.filome.com/images/c4_rss_tiny.jpg" border="0"></a>  <a href="http://www.filome.com/key/screen">screen</a> <a href="http://search.twitter.com/search?q=%22screen%22"><img src="http://www.filome.com/images/summize.gif" border="0"></a> <a href="http://www.filome.com/key/screen.rss"><img src="http://www.filome.com/images/c4_rss_tiny.jpg" border="0"></a>  <br><br>Tags: <a href="http://www.croncast.com/keyg/eye">eye</a> <a href="http://www.technorati.com/tag/eye"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/eye.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/computer">computer</a> <a href="http://www.technorati.com/tag/computer"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/computer.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/eyes">eyes</a> <a href="http://www.technorati.com/tag/eyes"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/eyes.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/children">children</a> <a href="http://www.technorati.com/tag/children"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/children.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/screen">screen</a> <a href="http://www.technorati.com/tag/screen"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/screen.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></description><content:encoded><![CDATA[Publisher - <a href="http://www.filome.com/pub/Fj3dBIhzkUPD0t">Readtwit</a><br> First shared  by - <a href="http://www.filome.com/tamihania">tamihania</a><br>syndication+ 1 | Search 1 | Shares 1<br><br><b><a href="http://twitter.com/twitterbo">@twitterbo </a></b> wrote:<br>
<i>Protect little eyes from the computer screen ... http://short.to/r4zc</i>
<br>

<br>


<table><tbody><tr>                                       <td>
<br><table><tbody><tr>
<td>
<h1><b>Protect little eyes from the computer screen</b></h1>
<p>With September comes the resumption of school work, homework, research projects and classmate communication, so it's important to note that the average North American child now spends one to three hours per day with his or her eyes on a computer screen. As a result, many leading pediatric eye doctors believe that the startling increase of nearsightedness (myopia) in children worldwide is a direct consequence of avid computer use. <br> </p>
<p>In fact, children using computers before their visual systems are fully developed are at the very heart of the public health problem called computer vision syndrome', says Bijan Minbashion, vice president of operations for Hakim Optical, retail eye care specialists. A study at the University of California reports that 25 to 30 percent of computer-using children need corrective eyewear to work with the equipment comfortably and safely  and similar studies in Asia report that first-graders with myopia has increased from 12.1 to 20.4 percent since 1995. In the last three years, myopia is reported to have doubled to 34 percent in seven- to nine-year-olds. <br> </p>
<p>To guard against early damage to your child's eyes, consider these tips: <br> Schedule a comprehensive eye exam as your child enters kindergarten, including near-point (computer and reading) and distance testing. <br> Schedule an eye exam before school begins every year. <br> The recommended distance for children between the monitor and the eye is 18-28 inches. Any closer risks eye strain. <br> Be aware of behaviour that indicates problems such as eye redness, frequent rubbing of the eyes, unusual posture, or complaints of blurriness or eye fatigue. <br> News Canada</p>
</td>                     </tr></tbody></table>
</td>                                                </tr></tbody></table>
<p> </p>
<br><br>

<div style="text-align:left;direction:ltr">
    <img src="http://i893.photobucket.com/albums/ac140/lionite/filteruser.png" border="0">   <a href="http://www.readtwit.com/settings/addfilter/type/1/value/twitterbo/hash/1e5c3f7541f6892060bac9b881d8afd5" title="Hide this person">Hide links from <b>@twitterbo</b></a><br>
     
    <img src="http://i893.photobucket.com/albums/ac140/lionite/report.png" border="0"> <b>  <a href="http://www.readtwit.com/contact/support?hash=1e5c3f7541f6892060bac9b881d8afd5&amp;content=http%3A%2F%2Fwww.thesuburbannews.ca%2Fcontent%2Fen%2F2265">Let us know</a></b> if this story is not showing up correctly<br><br>
    <a href="http://www.readtwit.com"><img src="http://i893.photobucket.com/albums/ac140/lionite/feedFooter.png" border="0"> </a>
</div><br><br><a href="http://www.filome.com/key/eye">eye</a> <a href="http://search.twitter.com/search?q=%22eye%22"><img src="http://www.filome.com/images/summize.gif" border="0"></a> <a href="http://www.filome.com/key/eye.rss"><img src="http://www.filome.com/images/c4_rss_tiny.jpg" border="0"></a>  <a href="http://www.filome.com/key/computer">computer</a> <a href="http://search.twitter.com/search?q=%22computer%22"><img src="http://www.filome.com/images/summize.gif" border="0"></a> <a href="http://www.filome.com/key/computer.rss"><img src="http://www.filome.com/images/c4_rss_tiny.jpg" border="0"></a>  <a href="http://www.filome.com/key/eyes">eyes</a>  <a href="http://search.twitter.com/search?q=%22eyes%22"><img src="http://www.filome.com/images/summize.gif" border="0"></a> <a href="http://www.filome.com/key/eyes.rss"><img src="http://www.filome.com/images/c4_rss_tiny.jpg" border="0"></a>  <a href="http://www.filome.com/key/children">children</a> <a href="http://search.twitter.com/search?q=%22children%22"><img src="http://www.filome.com/images/summize.gif" border="0"></a> <a href="http://www.filome.com/key/children.rss"><img src="http://www.filome.com/images/c4_rss_tiny.jpg" border="0"></a>  <a href="http://www.filome.com/key/screen">screen</a> <a href="http://search.twitter.com/search?q=%22screen%22"><img src="http://www.filome.com/images/summize.gif" border="0"></a> <a href="http://www.filome.com/key/screen.rss"><img src="http://www.filome.com/images/c4_rss_tiny.jpg" border="0"></a>  <br><br>Tags: <a href="http://www.croncast.com/keyg/eye">eye</a> <a href="http://www.technorati.com/tag/eye"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/eye.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/computer">computer</a> <a href="http://www.technorati.com/tag/computer"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/computer.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/eyes">eyes</a> <a href="http://www.technorati.com/tag/eyes"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/eyes.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/children">children</a> <a href="http://www.technorati.com/tag/children"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/children.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/screen">screen</a> <a href="http://www.technorati.com/tag/screen"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/screen.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></content:encoded>

         <pubDate>Sun, 27 Sep 2009 17:40:12 -0400</pubDate>         <guid isPermaLink="false">tag:croncast.com,5582</guid>

			<itunes:subtitle/>
      </item>
      <item>
         <title>Before, Meanwhile and After the BIG BANG -- (M-Theory)</title>
         <link>http://www.youtube.com/watch?v=HOkAagw6iug&amp;feature=autoshare</link>
		 <category>Shared item</category>
			<description><![CDATA[Publisher - <a href="http://www.filome.com/pub/XAOLqw3QSDtK8T">tamihania&#39;s YouTube Activity</a><br> First shared  by - <a href="http://www.filome.com/tamihania">tamihania</a><br>syndication+ 0 | Search 1 | Shares 1<br><br><div><embed src="http://www.youtube.com/v/HOkAagw6iug&amp;fs=1" width="480" height="385" allowScriptAccess="never" allowFullScreen="true" wmode="transparent" type="application/x-shockwave-flash"></embed></div><div style="padding-top:3px">I favorited a YouTube video: Introduction to the M-Theory.
Video Montage from &quot;Parallel Universes&quot; (BBC/TLC 2002) an episode of the great BBC series &quot;Horizon&quot;:
- http://www.bbc.co.uk/science/horizon/2001/paralleluni.shtml

Links to Wikipedia:

M-Theory:
- http://en.wikipedia.org/wiki/M-Theory
Superstring Theory:
- http://en.wikipedia.org/wiki/Superstring_theory
Supergravity Theory:
- http://en.wikipedia.org/wiki/Supergravity
11 spatial dimensions:
- http://en.wikipedia.org/wiki/11th_dimension
Quantum mechanics:
- http://en.wikipedia.org/wiki/Quantum_mechanics

----------------------------------

Amon Tobin&#39;s myspace (more music):
- http://myspace.com/tobinamon

More infos about Amon Tobin:
- http://www.ninjatune.net/ninja/artist.php?id=1
- http://en.wikipedia.org/wiki/Amon_Tobin</div><br><br><a href="http://www.filome.com/key/theory">theory</a> <a href="http://search.twitter.com/search?q=%22theory%22"><img src="http://www.filome.com/images/summize.gif" border="0"></a> <a href="http://www.filome.com/key/theory.rss"><img src="http://www.filome.com/images/c4_rss_tiny.jpg" border="0"></a>  <a href="http://www.filome.com/key/wikipedia">wikipedia</a> <a href="http://search.twitter.com/search?q=%22wikipedia%22"><img src="http://www.filome.com/images/summize.gif" border="0"></a> <a href="http://www.filome.com/key/wikipedia.rss"><img src="http://www.filome.com/images/c4_rss_tiny.jpg" border="0"></a>  <a href="http://www.filome.com/key/wiki">wiki</a>  <a href="http://search.twitter.com/search?q=%22wiki%22"><img src="http://www.filome.com/images/summize.gif" border="0"></a> <a href="http://www.filome.com/key/wiki.rss"><img src="http://www.filome.com/images/c4_rss_tiny.jpg" border="0"></a>  <a href="http://www.filome.com/key/en">en</a> <a href="http://search.twitter.com/search?q=%22en%22"><img src="http://www.filome.com/images/summize.gif" border="0"></a> <a href="http://www.filome.com/key/en.rss"><img src="http://www.filome.com/images/c4_rss_tiny.jpg" border="0"></a>  <a href="http://www.filome.com/key/amon">amon</a> <a href="http://search.twitter.com/search?q=%22amon%22"><img src="http://www.filome.com/images/summize.gif" border="0"></a> <a href="http://www.filome.com/key/amon.rss"><img src="http://www.filome.com/images/c4_rss_tiny.jpg" border="0"></a>  <br><br>Tags: <a href="http://www.croncast.com/keyg/wikipedia">wikipedia</a> <a href="http://www.technorati.com/tag/wikipedia"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/wikipedia.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/theory">theory</a> <a href="http://www.technorati.com/tag/theory"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/theory.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/wiki">wiki</a> <a href="http://www.technorati.com/tag/wiki"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/wiki.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/en">en</a> <a href="http://www.technorati.com/tag/en"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/en.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/amon">amon</a> <a href="http://www.technorati.com/tag/amon"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/amon.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></description><content:encoded><![CDATA[Publisher - <a href="http://www.filome.com/pub/XAOLqw3QSDtK8T">tamihania&#39;s YouTube Activity</a><br> First shared  by - <a href="http://www.filome.com/tamihania">tamihania</a><br>syndication+ 0 | Search 1 | Shares 1<br><br><div><embed src="http://www.youtube.com/v/HOkAagw6iug&amp;fs=1" width="480" height="385" allowScriptAccess="never" allowFullScreen="true" wmode="transparent" type="application/x-shockwave-flash"></embed></div><div style="padding-top:3px">I favorited a YouTube video: Introduction to the M-Theory.
Video Montage from &quot;Parallel Universes&quot; (BBC/TLC 2002) an episode of the great BBC series &quot;Horizon&quot;:
- http://www.bbc.co.uk/science/horizon/2001/paralleluni.shtml

Links to Wikipedia:

M-Theory:
- http://en.wikipedia.org/wiki/M-Theory
Superstring Theory:
- http://en.wikipedia.org/wiki/Superstring_theory
Supergravity Theory:
- http://en.wikipedia.org/wiki/Supergravity
11 spatial dimensions:
- http://en.wikipedia.org/wiki/11th_dimension
Quantum mechanics:
- http://en.wikipedia.org/wiki/Quantum_mechanics

----------------------------------

Amon Tobin&#39;s myspace (more music):
- http://myspace.com/tobinamon

More infos about Amon Tobin:
- http://www.ninjatune.net/ninja/artist.php?id=1
- http://en.wikipedia.org/wiki/Amon_Tobin</div><br><br><a href="http://www.filome.com/key/theory">theory</a> <a href="http://search.twitter.com/search?q=%22theory%22"><img src="http://www.filome.com/images/summize.gif" border="0"></a> <a href="http://www.filome.com/key/theory.rss"><img src="http://www.filome.com/images/c4_rss_tiny.jpg" border="0"></a>  <a href="http://www.filome.com/key/wikipedia">wikipedia</a> <a href="http://search.twitter.com/search?q=%22wikipedia%22"><img src="http://www.filome.com/images/summize.gif" border="0"></a> <a href="http://www.filome.com/key/wikipedia.rss"><img src="http://www.filome.com/images/c4_rss_tiny.jpg" border="0"></a>  <a href="http://www.filome.com/key/wiki">wiki</a>  <a href="http://search.twitter.com/search?q=%22wiki%22"><img src="http://www.filome.com/images/summize.gif" border="0"></a> <a href="http://www.filome.com/key/wiki.rss"><img src="http://www.filome.com/images/c4_rss_tiny.jpg" border="0"></a>  <a href="http://www.filome.com/key/en">en</a> <a href="http://search.twitter.com/search?q=%22en%22"><img src="http://www.filome.com/images/summize.gif" border="0"></a> <a href="http://www.filome.com/key/en.rss"><img src="http://www.filome.com/images/c4_rss_tiny.jpg" border="0"></a>  <a href="http://www.filome.com/key/amon">amon</a> <a href="http://search.twitter.com/search?q=%22amon%22"><img src="http://www.filome.com/images/summize.gif" border="0"></a> <a href="http://www.filome.com/key/amon.rss"><img src="http://www.filome.com/images/c4_rss_tiny.jpg" border="0"></a>  <br><br>Tags: <a href="http://www.croncast.com/keyg/wikipedia">wikipedia</a> <a href="http://www.technorati.com/tag/wikipedia"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/wikipedia.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/theory">theory</a> <a href="http://www.technorati.com/tag/theory"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/theory.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/wiki">wiki</a> <a href="http://www.technorati.com/tag/wiki"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/wiki.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/en">en</a> <a href="http://www.technorati.com/tag/en"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/en.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/amon">amon</a> <a href="http://www.technorati.com/tag/amon"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/amon.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></content:encoded>

         <pubDate>Sun, 27 Sep 2009 12:08:14 -0400</pubDate>         <guid isPermaLink="false">tag:croncast.com,5572</guid>

			<itunes:subtitle/>
      </item>
      <item>
         <title>How Did New York City Become the Pot-Arrest Capital of the Country? -- New York Magazine</title>
         <link>http://nymag.com/news/features/58995/</link>
		 <category>Shared item</category>
			<description><![CDATA[<blockquote>Shared by  Kristopher 
<br>
noticing many more bloggers and sites adding their keywords to their feeds as links for search back into their site. this page came up for the keyword George Washington. right on. now they just need to add the links to the rss feeds to get that structured data exposed to the bots and away they go :).</blockquote>
On the one hand, marijuana is practically legalmore mainstream, accessorized, and taken for granted than ever before. On the other, kids are getting busted in the city in record numbers. Guess which kids.
<br><br>Tags: <a href="http://www.croncast.com/keyg/kids">kids</a> <a href="http://www.technorati.com/tag/kids"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/kids.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/links">links</a> <a href="http://www.technorati.com/tag/links"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/links.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/york">york</a> <a href="http://www.technorati.com/tag/york"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/york.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/city">city</a> <a href="http://www.technorati.com/tag/city"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/city.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/feeds">feeds</a> <a href="http://www.technorati.com/tag/feeds"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/feeds.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></description><content:encoded><![CDATA[<blockquote>Shared by  Kristopher 
<br>
noticing many more bloggers and sites adding their keywords to their feeds as links for search back into their site. this page came up for the keyword George Washington. right on. now they just need to add the links to the rss feeds to get that structured data exposed to the bots and away they go :).</blockquote>
On the one hand, marijuana is practically legalmore mainstream, accessorized, and taken for granted than ever before. On the other, kids are getting busted in the city in record numbers. Guess which kids.
<br><br>Tags: <a href="http://www.croncast.com/keyg/kids">kids</a> <a href="http://www.technorati.com/tag/kids"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/kids.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/links">links</a> <a href="http://www.technorati.com/tag/links"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/links.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/york">york</a> <a href="http://www.technorati.com/tag/york"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/york.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/city">city</a> <a href="http://www.technorati.com/tag/city"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/city.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/feeds">feeds</a> <a href="http://www.technorati.com/tag/feeds"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/feeds.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></content:encoded>

         <pubDate>Sun, 20 Sep 2009 15:34:04 -0400</pubDate>         <guid isPermaLink="false">tag:croncast.com,5562</guid>

			<itunes:subtitle/>
      </item>
      <item>
         <title>Court Denies Sanctions For Defendant's Failure To Preserve Web Links</title>
         <link>http://www.rcalaw.com/E-Discovery/Document-Control-Blog/Court-Denies-Sanctions-For-Defendants-Failure-To-Preserve-Web-Links.php</link>
		 <category>Shared item</category>
			<description><![CDATA[In Ferron v. Echostar Satellite, LLC, 2009 U.S. Dist. LEXIS 66637 (S.D. Ohio July 30, 2009), U.S. Magistrate Judge Norah McCann King denied plaintiff's renewed motion for the imposition of discovery sanctions for defendants' failure to preserve embedded images and web links.<br><br>Tags: <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/links">links</a> <a href="http://www.technorati.com/tag/links"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/links.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/failure">failure</a> <a href="http://www.technorati.com/tag/failure"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/failure.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/preserve">preserve</a> <a href="http://www.technorati.com/tag/preserve"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/preserve.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/sanctions">sanctions</a> <a href="http://www.technorati.com/tag/sanctions"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/sanctions.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></description><content:encoded><![CDATA[In Ferron v. Echostar Satellite, LLC, 2009 U.S. Dist. LEXIS 66637 (S.D. Ohio July 30, 2009), U.S. Magistrate Judge Norah McCann King denied plaintiff's renewed motion for the imposition of discovery sanctions for defendants' failure to preserve embedded images and web links.<br><br>Tags: <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/links">links</a> <a href="http://www.technorati.com/tag/links"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/links.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/failure">failure</a> <a href="http://www.technorati.com/tag/failure"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/failure.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/preserve">preserve</a> <a href="http://www.technorati.com/tag/preserve"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/preserve.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/sanctions">sanctions</a> <a href="http://www.technorati.com/tag/sanctions"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/sanctions.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></content:encoded>

         <pubDate>Mon, 14 Sep 2009 15:12:46 -0400</pubDate>         <guid isPermaLink="false">tag:croncast.com,5539</guid>

			<itunes:subtitle/>
      </item>
      <item>
         <title>Wabash Getting Up to Speed on New Media</title>
         <link>http://www2.wabash.edu/blog/pa/2009/09/wabash_getting_up_to_speed_on.html</link>
		 <category>Shared item</category>
			<description><![CDATA[<p><em>Howard W. Hewitt </em>- Social media isn't a new term. Blogging, Facebook, and social networking may be foreign to many people but the concept of individual journals dates back years. It's just that publication is now instant with the internet.</p><div style="margin:0in 0in 10pt">What's happening across the country and around the world is really nothing short of a revolution.</div><div style="margin:0in 0in 10pt">For instance:</div><div style="margin:0in 0in 10pt">If Facebook was a country, it would be the fourth largest in the world. Boston College did not issue e-mail addresses to its freshmen this fall. The startling numbers indicate a seismic shift in the way we communicate.</div><div style="margin:0in 0in 10pt"><a href="http://www.youtube.com/WabashCollege"><img alt="" align="right" width="75" height="30" src="http://www2.wabash.edu/blog/images/youtube_logo.jpg"></a>If you have four minutes to spare, watch the fascinating YouTube video at the bottom of this page. Or, click the icon on the right and you can go to our Wabash YouTube page and check it out.</div><div style="margin:0in 0in 10pt">Student bloggers have told the real story of Wabash, student-to-student, as an effective recruiting tool. We've learned about the world as our students study abroad, participate in immersion learning trips, or go fly fishing in Montana.</div><div style="margin:0in 0in 10pt"><a href="http://www.facebook.com/pages/Crawfordsville-IN/Wabash-College/16568430836?sid=79109e6208506e91642d8b56de37239c"><img alt="" align="left" width="75" height="30" src="http://www2.wabash.edu/blog/images/facebook-logo.jpg"></a>We've actually had Facebook pages for a couple of years. The current king of social networking sites is just four years old. Check out our Wabash page by clicking the icon at left.</div><div style="margin:0in 0in 10pt"><img alt="" align="right" width="75" height="30" src="http://www2.wabash.edu/blog/images/facebook-logo(1).jpg">Or, check out the College alumni page  that icon  over there, on the right -&gt;</div><div style="margin:0in 0in 10pt">One line keeps coming back to me from an August seminar on social media and higher education. I'm paraphrasing  For years people sought out news, now news finds people. For years, high school students looked for a college, now colleges look for students.'</div><div style="margin:0in 0in 10pt">If you buy the basic concept you'll quickly realize a passive approach to communication no longer works with this generation of incoming college freshmen or the next.</div><div style="margin:0in 0in 10pt">It's a fundamental change in the way young people communicate. Wabash students, as others across the country, have to be reminded to check their email. They're communicating largely via text messages or perhaps Facebook.</div><div style="margin:0in 0in 10pt">For those at the College charged with marketing and recruiting the new students, this is not an insignificant challenge. The glossy brochure is no longer enough. And to rely only on printed material might be foolish.</div><div style="margin:0in 0in 10pt">You will now find links to six different social mediums across our website with established Wabash College branding and content. We're going to use students in many of these efforts to present the content in a peer-to-peer manner.</div><div style="margin:0in 0in 10pt">Our <a href="http://www.wabash.edu/admissions/blogs">student bloggers </a>are going to get more prominent play on our pages as we emphasize student voices.</div><div style="margin:0in 0in 10pt"><a href="http://www.linkedin.com/groups?gid=42200&amp;trk=hb_side_g"><img alt="" align="right" width="75" height="30" src="http://www2.wabash.edu/blog/images/linkdin_1.jpg"></a>The College has strong participation on Linked In  a business-oriented social networking site. We have two sites! The Alumni site has more than 1100 members. Check it out by clicking on the icon at right. Career Services has a Linked In page that&#39;s much newer.</div><div style="margin:0in 0in 10pt">We'll be writing more about social networking and how we're using it throughout the year. Social networking may or may not be a communications revolution, but ignoring it is a communications blunder.</div><embed width="580" height="360" src="http://www.youtube.com/v/sIFYPQjYhv8&amp;hl=en&amp;fs=1&amp;rel=0&amp;color1=0x5d1719&amp;color2=0xcd311b&amp;border=1" allowScriptAccess="never" allowFullScreen="true" wmode="transparent" type="application/x-shockwave-flash"></embed><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/college">college</a> <a href="http://www.technorati.com/tag/college"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/college.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/students">students</a> <a href="http://www.technorati.com/tag/students"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/students.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/wabash">wabash</a> <a href="http://www.technorati.com/tag/wabash"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/wabash.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>]]></description><content:encoded><![CDATA[<p><em>Howard W. Hewitt </em>- Social media isn't a new term. Blogging, Facebook, and social networking may be foreign to many people but the concept of individual journals dates back years. It's just that publication is now instant with the internet.</p><div style="margin:0in 0in 10pt">What's happening across the country and around the world is really nothing short of a revolution.</div><div style="margin:0in 0in 10pt">For instance:</div><div style="margin:0in 0in 10pt">If Facebook was a country, it would be the fourth largest in the world. Boston College did not issue e-mail addresses to its freshmen this fall. The startling numbers indicate a seismic shift in the way we communicate.</div><div style="margin:0in 0in 10pt"><a href="http://www.youtube.com/WabashCollege"><img alt="" align="right" width="75" height="30" src="http://www2.wabash.edu/blog/images/youtube_logo.jpg"></a>If you have four minutes to spare, watch the fascinating YouTube video at the bottom of this page. Or, click the icon on the right and you can go to our Wabash YouTube page and check it out.</div><div style="margin:0in 0in 10pt">Student bloggers have told the real story of Wabash, student-to-student, as an effective recruiting tool. We've learned about the world as our students study abroad, participate in immersion learning trips, or go fly fishing in Montana.</div><div style="margin:0in 0in 10pt"><a href="http://www.facebook.com/pages/Crawfordsville-IN/Wabash-College/16568430836?sid=79109e6208506e91642d8b56de37239c"><img alt="" align="left" width="75" height="30" src="http://www2.wabash.edu/blog/images/facebook-logo.jpg"></a>We've actually had Facebook pages for a couple of years. The current king of social networking sites is just four years old. Check out our Wabash page by clicking the icon at left.</div><div style="margin:0in 0in 10pt"><img alt="" align="right" width="75" height="30" src="http://www2.wabash.edu/blog/images/facebook-logo(1).jpg">Or, check out the College alumni page  that icon  over there, on the right -&gt;</div><div style="margin:0in 0in 10pt">One line keeps coming back to me from an August seminar on social media and higher education. I'm paraphrasing  For years people sought out news, now news finds people. For years, high school students looked for a college, now colleges look for students.'</div><div style="margin:0in 0in 10pt">If you buy the basic concept you'll quickly realize a passive approach to communication no longer works with this generation of incoming college freshmen or the next.</div><div style="margin:0in 0in 10pt">It's a fundamental change in the way young people communicate. Wabash students, as others across the country, have to be reminded to check their email. They're communicating largely via text messages or perhaps Facebook.</div><div style="margin:0in 0in 10pt">For those at the College charged with marketing and recruiting the new students, this is not an insignificant challenge. The glossy brochure is no longer enough. And to rely only on printed material might be foolish.</div><div style="margin:0in 0in 10pt">You will now find links to six different social mediums across our website with established Wabash College branding and content. We're going to use students in many of these efforts to present the content in a peer-to-peer manner.</div><div style="margin:0in 0in 10pt">Our <a href="http://www.wabash.edu/admissions/blogs">student bloggers </a>are going to get more prominent play on our pages as we emphasize student voices.</div><div style="margin:0in 0in 10pt"><a href="http://www.linkedin.com/groups?gid=42200&amp;trk=hb_side_g"><img alt="" align="right" width="75" height="30" src="http://www2.wabash.edu/blog/images/linkdin_1.jpg"></a>The College has strong participation on Linked In  a business-oriented social networking site. We have two sites! The Alumni site has more than 1100 members. Check it out by clicking on the icon at right. Career Services has a Linked In page that&#39;s much newer.</div><div style="margin:0in 0in 10pt">We'll be writing more about social networking and how we're using it throughout the year. Social networking may or may not be a communications revolution, but ignoring it is a communications blunder.</div><embed width="580" height="360" src="http://www.youtube.com/v/sIFYPQjYhv8&amp;hl=en&amp;fs=1&amp;rel=0&amp;color1=0x5d1719&amp;color2=0xcd311b&amp;border=1" allowScriptAccess="never" allowFullScreen="true" wmode="transparent" type="application/x-shockwave-flash"></embed><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/college">college</a> <a href="http://www.technorati.com/tag/college"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/college.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/students">students</a> <a href="http://www.technorati.com/tag/students"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/students.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/wabash">wabash</a> <a href="http://www.technorati.com/tag/wabash"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/wabash.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>]]></content:encoded>

         <pubDate>Thu, 10 Sep 2009 18:43:35 -0400</pubDate>         <guid isPermaLink="false">tag:croncast.com,5536</guid>

			<itunes:subtitle/>
      </item>
      <item>
         <title>7 Japanese aesthetic principles to change your thinking</title>
         <link>http://www.presentationzen.com/presentationzen/2009/09/exposing-ourselves-to-traditional-japanese-aesthetic-ideas-notions-that-may-seem-quite-foreign-to-most-of-us-is-a-goo.html</link>
		 <category>Shared item</category>
			<description><![CDATA[<p><span style="color:#111111;font-family:Arial"><a href="http://www.presentationzen.com/.a/6a00d83451b64669e20120a5a86f41970c-popup" style="float:right"><img alt="Garden" src="http://www.presentationzen.com/.a/6a00d83451b64669e20120a5a86f41970c-200wi" style="margin:0px 0px 5px 5px;width:200px"></a> Exposing ourselves to traditional Japanese aesthetic ideas  notions that may seem quite foreign to most of us  is a good exercise in <em>lateral thinking,</em> a term coined by Edward de Bono in 1967. "Lateral Thinking is for changing concepts and perception," says de Bono. Beginning to think about design by exploring the tenets of the Zen aesthetic may not be an example of Lateral Thinking in the strict sense, but doing so is a good exercise in stretching ourselves and really beginning to think differently about visuals and design in our everyday professional lives. The principles of Zen aesthetics found in the art of the traditional Japanese garden, for example, have many lessons for us, though they are unknown to most people. The principles are interconnected and overlap; it's not possible to simply put the ideas in separate boxes. Thankfully, Patrick Lennox Tierney (a recipient of the Order of the Rising Sun in 2007) has a few short essays elaborating on the concepts. Below are just seven design-related principles (there are more) that govern the aesthetics of the Japanese garden and other art forms in Japan. Perhaps they will stimulate your creativity or get you thinking in a new way about your own design-related challenges.</span><br><strong><br><span style="color:#111111;font-family:Arial">Seven principles for changing your perception</span></strong><br><span style="color:#111111;font-family:Arial"><strong>Kanso <span style="color:#111111;font-family:Arial">()</span> </strong>Simplicity or elimination of clutter. Things are expressed in a plain, simple, natural manner. Reminds us to think not in terms of decoration but in terms of clarity, a kind of clarity that may be achieved through omission or exclusion of the non-essential.</span><span style="color:#111111;font-family:Arial"><strong><br><br><a href="http://www.presentationzen.com/.a/6a00d83451b64669e20120a5527a17970b-popup" style="float:right"><img alt="Enso" src="http://www.presentationzen.com/.a/6a00d83451b64669e20120a5527a17970b-200wi" style="margin:0px 0px 5px 5px;width:145px;height:139px"></a> Fukinsei ()</strong> Asymmetry or irregularity. The idea of controlling balance in a composition via irregularity and asymmetry is a central tenet of the Zen aesthetic. The enso ("Zen circle") in brush painting, for example, is often drawn as an incomplete circle, symbolizing the imperfection that is part of existence. In graphic design too asymmetrical balance is a dynamic, beautiful thing. Try looking for (or creating) beauty in balanced asymmetry. Nature itself is full of beauty and harmonious relationships that are asymmetrical yet balanced. This is a dynamic beauty that attracts and engages.</span><span style="color:#111111;font-family:Arial"><strong><br><br>Shibui/Shibumi () </strong>Beautiful by being understated, or by being precisely what it was meant to be and not elaborated upon. Direct and simple way, without being flashy<span style="color:#111111;font-family:Arial">. Elegant simplicity, articulate brevity. </span>The term is sometimes used today to describe something cool but beautifully minimalist, including technology and some consumer products. (Shibui literally means bitter tasting).</span><span style="color:#111111;font-family:Arial"><br><br><strong>Shizen () </strong>Naturalness. Absence of pretense or artificiality, full creative intent unforced. Ironically, the spontaneous nature of the Japanese garden that the viewer perceives is not accidental. This is a reminder that design is not an accident, even when we are trying to create a natural-feeling environment. It is not a raw nature as such but one with more purpose and intention.</span><span style="color:#111111;font-family:Arial"><strong><br><br>Yugen () </strong>Profundity or suggestion rather than revelation. A Japanese garden, for example, can be said to be a collection of subtleties and symbolic elements. Photographers and designers can surely think of many ways to visually imply more by not showing the whole, that is, showing more by showing less.</span><span style="color:#111111;font-family:Arial"><br><br><strong>Datsuzoku ()</strong> Freedom from habit or formula. Escape from daily routine or the ordinary. Unworldly. Transcending the conventional. This principles describes the feeling of surprise and a bit of amazement when one realizes they can have freedom from the conventional. Professor Tierney says that the Japanese garden itself, "...made with the raw materials of nature and its success in revealing the essence of natural things to us is an ultimate surprise. Many surprises await at almost every turn in a Japanese Garden." </span><span style="color:#111111;font-family:Arial"><strong><br><br>Seijaku ()</strong>Tranquility or an energized calm (quite), stillness, solitude. This is related to the feeling you may have when in a Japanese garden. The opposite feeling to one expressed by seijaku would be noise and disturbance. How might we bring a feeling of "active calm" and stillness to ephemeral designs outside the Zen arts?</span></p><p><strong><span style="color:#ff7f00;font-family:Arial"><span style="color:#ff7f00"><span style="color:#111111"></span></span>LINKS</span></strong><br><span style="color:#111111;font-family:Arial"><strong> </strong><span style="color:#111111;font-family:Arial">Read more about</span> <a href="http://bonsaibeautiful.com/nature_of_garden_art/japanese/index.html">The Nature of Japanese Garden Art</a> <span style="color:#111111;font-family:Arial">by Patrick Lennox Tierney at Bonsai Beautiful dot com.</span></span><br><strong></strong> <a href="http://plato.stanford.edu/entries/japanese-aesthetics/">Japanese Aesthetics</a> <span style="color:#111111;font-family:Arial">(Stanford Encyclopedia).</span><br><span style="color:#111111;font-family:Arial"><strong></strong> <a href="http://www.amazon.com/gp/product/1590306082?ie=UTF8&amp;tag=garrreynoldsc-20&amp;linkCode=xm2&amp;camp=1789&amp;creativeASIN=1590306082">Enso: Zen Circles of Enlightenment</a> (book)</span><br><br><br><span style="color:#111111;font-family:Arial"></span></p><div>
<a href="http://feeds.feedburner.com/~ff/PresentationZen?a=WvvscCcH36c:npKRPvMXx7Y:2mJPEYqXBVI"><img src="http://feeds.feedburner.com/~ff/PresentationZen?d=2mJPEYqXBVI" border="0"></a> <a href="http://feeds.feedburner.com/~ff/PresentationZen?a=WvvscCcH36c:npKRPvMXx7Y:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/PresentationZen?d=7Q72WNTAKBA" border="0"></a>
</div><br><br>Tags: <a href="http://www.croncast.com/keyg/japanese">japanese</a> <a href="http://www.technorati.com/tag/japanese"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/japanese.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/garden">garden</a> <a href="http://www.technorati.com/tag/garden"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/garden.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/design">design</a> <a href="http://www.technorati.com/tag/design"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/design.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/zen">zen</a> <a href="http://www.technorati.com/tag/zen"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/zen.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/principles">principles</a> <a href="http://www.technorati.com/tag/principles"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/principles.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></description><content:encoded><![CDATA[<p><span style="color:#111111;font-family:Arial"><a href="http://www.presentationzen.com/.a/6a00d83451b64669e20120a5a86f41970c-popup" style="float:right"><img alt="Garden" src="http://www.presentationzen.com/.a/6a00d83451b64669e20120a5a86f41970c-200wi" style="margin:0px 0px 5px 5px;width:200px"></a> Exposing ourselves to traditional Japanese aesthetic ideas  notions that may seem quite foreign to most of us  is a good exercise in <em>lateral thinking,</em> a term coined by Edward de Bono in 1967. "Lateral Thinking is for changing concepts and perception," says de Bono. Beginning to think about design by exploring the tenets of the Zen aesthetic may not be an example of Lateral Thinking in the strict sense, but doing so is a good exercise in stretching ourselves and really beginning to think differently about visuals and design in our everyday professional lives. The principles of Zen aesthetics found in the art of the traditional Japanese garden, for example, have many lessons for us, though they are unknown to most people. The principles are interconnected and overlap; it's not possible to simply put the ideas in separate boxes. Thankfully, Patrick Lennox Tierney (a recipient of the Order of the Rising Sun in 2007) has a few short essays elaborating on the concepts. Below are just seven design-related principles (there are more) that govern the aesthetics of the Japanese garden and other art forms in Japan. Perhaps they will stimulate your creativity or get you thinking in a new way about your own design-related challenges.</span><br><strong><br><span style="color:#111111;font-family:Arial">Seven principles for changing your perception</span></strong><br><span style="color:#111111;font-family:Arial"><strong>Kanso <span style="color:#111111;font-family:Arial">()</span> </strong>Simplicity or elimination of clutter. Things are expressed in a plain, simple, natural manner. Reminds us to think not in terms of decoration but in terms of clarity, a kind of clarity that may be achieved through omission or exclusion of the non-essential.</span><span style="color:#111111;font-family:Arial"><strong><br><br><a href="http://www.presentationzen.com/.a/6a00d83451b64669e20120a5527a17970b-popup" style="float:right"><img alt="Enso" src="http://www.presentationzen.com/.a/6a00d83451b64669e20120a5527a17970b-200wi" style="margin:0px 0px 5px 5px;width:145px;height:139px"></a> Fukinsei ()</strong> Asymmetry or irregularity. The idea of controlling balance in a composition via irregularity and asymmetry is a central tenet of the Zen aesthetic. The enso ("Zen circle") in brush painting, for example, is often drawn as an incomplete circle, symbolizing the imperfection that is part of existence. In graphic design too asymmetrical balance is a dynamic, beautiful thing. Try looking for (or creating) beauty in balanced asymmetry. Nature itself is full of beauty and harmonious relationships that are asymmetrical yet balanced. This is a dynamic beauty that attracts and engages.</span><span style="color:#111111;font-family:Arial"><strong><br><br>Shibui/Shibumi () </strong>Beautiful by being understated, or by being precisely what it was meant to be and not elaborated upon. Direct and simple way, without being flashy<span style="color:#111111;font-family:Arial">. Elegant simplicity, articulate brevity. </span>The term is sometimes used today to describe something cool but beautifully minimalist, including technology and some consumer products. (Shibui literally means bitter tasting).</span><span style="color:#111111;font-family:Arial"><br><br><strong>Shizen () </strong>Naturalness. Absence of pretense or artificiality, full creative intent unforced. Ironically, the spontaneous nature of the Japanese garden that the viewer perceives is not accidental. This is a reminder that design is not an accident, even when we are trying to create a natural-feeling environment. It is not a raw nature as such but one with more purpose and intention.</span><span style="color:#111111;font-family:Arial"><strong><br><br>Yugen () </strong>Profundity or suggestion rather than revelation. A Japanese garden, for example, can be said to be a collection of subtleties and symbolic elements. Photographers and designers can surely think of many ways to visually imply more by not showing the whole, that is, showing more by showing less.</span><span style="color:#111111;font-family:Arial"><br><br><strong>Datsuzoku ()</strong> Freedom from habit or formula. Escape from daily routine or the ordinary. Unworldly. Transcending the conventional. This principles describes the feeling of surprise and a bit of amazement when one realizes they can have freedom from the conventional. Professor Tierney says that the Japanese garden itself, "...made with the raw materials of nature and its success in revealing the essence of natural things to us is an ultimate surprise. Many surprises await at almost every turn in a Japanese Garden." </span><span style="color:#111111;font-family:Arial"><strong><br><br>Seijaku ()</strong>Tranquility or an energized calm (quite), stillness, solitude. This is related to the feeling you may have when in a Japanese garden. The opposite feeling to one expressed by seijaku would be noise and disturbance. How might we bring a feeling of "active calm" and stillness to ephemeral designs outside the Zen arts?</span></p><p><strong><span style="color:#ff7f00;font-family:Arial"><span style="color:#ff7f00"><span style="color:#111111"></span></span>LINKS</span></strong><br><span style="color:#111111;font-family:Arial"><strong> </strong><span style="color:#111111;font-family:Arial">Read more about</span> <a href="http://bonsaibeautiful.com/nature_of_garden_art/japanese/index.html">The Nature of Japanese Garden Art</a> <span style="color:#111111;font-family:Arial">by Patrick Lennox Tierney at Bonsai Beautiful dot com.</span></span><br><strong></strong> <a href="http://plato.stanford.edu/entries/japanese-aesthetics/">Japanese Aesthetics</a> <span style="color:#111111;font-family:Arial">(Stanford Encyclopedia).</span><br><span style="color:#111111;font-family:Arial"><strong></strong> <a href="http://www.amazon.com/gp/product/1590306082?ie=UTF8&amp;tag=garrreynoldsc-20&amp;linkCode=xm2&amp;camp=1789&amp;creativeASIN=1590306082">Enso: Zen Circles of Enlightenment</a> (book)</span><br><br><br><span style="color:#111111;font-family:Arial"></span></p><div>
<a href="http://feeds.feedburner.com/~ff/PresentationZen?a=WvvscCcH36c:npKRPvMXx7Y:2mJPEYqXBVI"><img src="http://feeds.feedburner.com/~ff/PresentationZen?d=2mJPEYqXBVI" border="0"></a> <a href="http://feeds.feedburner.com/~ff/PresentationZen?a=WvvscCcH36c:npKRPvMXx7Y:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/PresentationZen?d=7Q72WNTAKBA" border="0"></a>
</div><br><br>Tags: <a href="http://www.croncast.com/keyg/japanese">japanese</a> <a href="http://www.technorati.com/tag/japanese"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/japanese.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/garden">garden</a> <a href="http://www.technorati.com/tag/garden"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/garden.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/design">design</a> <a href="http://www.technorati.com/tag/design"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/design.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/zen">zen</a> <a href="http://www.technorati.com/tag/zen"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/zen.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/principles">principles</a> <a href="http://www.technorati.com/tag/principles"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/principles.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></content:encoded>

         <pubDate>Mon, 07 Sep 2009 08:30:36 -0400</pubDate>         <guid isPermaLink="false">tag:croncast.com,5524</guid>

			<itunes:subtitle/>
      </item>
      <item>
         <title>Yahoo!&amp;#39;s use of personal name not confusing as matter of law</title>
         <link>http://tushnet.blogspot.com/2009/09/yahoos-use-of-personal-name-not.html</link>
		 <category>Shared item</category>
			<description><![CDATA[Stayart v. Yahoo! Inc., 2009 WL 2840478 (E.D. Wis.)<p></p>  <p> </p>  <p>Beverly Stayart <a href="http://en.wikipedia.org/wiki/Egosurfing">searched her own name</a> and didn't like the results.<span>  </span>She got links to pornographic websites, online pharmacies promoting sexual dysfunction drugs, and an adult-oriented online dating service.<span>  </span>She sued Yahoo! and other defendants, including the operator of AdultFriendFinder, for false endorsement under the Lanham Act and state-law privacy violations.<span>  </span>The court dismissed the Lanham Act claim and surrendered jurisdiction over the state law claims.</p>  <p> </p>  <p>Stayart lives in Wisconsin and was previously employed by several major financial institutions in Chicago, attaining the position of Vice President.<span>  </span>She's involved in animal protection and genealogy research throughout the world.<span>  </span>This includes an internet presence; her periodic posts on one genealogical website have generated almost 17,000 hits during the past three years.<span>  </span>(Okay, I'm sorry, but: on the internet as a whole, that's tiny.<span>  </span><i>My</i> stats look more impressive than thatif you've never seen any others.)<span>  </span>And two of her poems appear on two Danish websites (they support the preservation of baby seals).</p>  <p> </p>  <p>Stayart alleged that she was the only Beverly/Bev Stayart on the internet, and that she had never engaged in a promiscuous lifestyle, or other overt sexual activities, which are repugnant to her and her community.<span>  </span>She alleged that her name had commercial value because of her humanitarian endeavors, positive and wholesome image, and the popularity of her scholarly posts on the Internet.<span>  </span>The search engine defendants, she alleged, knowingly used her name on false snippets in results by (1) repeatedly linking Plaintiff to the advertising of Cialis by an online pharmacy; (2) repeatedly linking Plaintiff to six separate websites playing pornographic videos containing computer spy ware; and (3) repeatedly linking Plaintiff to a website captioned Free Streaming Porn--HOTTEST DAILY PORN' displaying 27 hardcore pornographic photos.<span>  </span>She asked Yahoo! to stop linking her name to these search results.<span>  </span>Yahoo! replied: We do not aim to judge web content for appropriateness or censor materials that we find offensive or inappropriate. Instead, we present information as it is reflected on the Web, allowing you to draw your own informed conclusions about what you see.</p>  <p> </p>  <p>Stayart also alleged that Various (which operates AdultFriendFinder) used her name on a website advertising its service.<span>  </span>She typed her name into altavista.com and got, among the results, jewellery-makin-doorway.orge.pl/bev-stayart.html.<span>  </span>This went to an Under Construction site that stated Meet AdultFriendFinder members near Janesville [Wisconsin]-- Over 20 Million Members and displayed five graphic images of fully or partially nude women, accompanied by the age, nickname and city of residence of the women. </p>  <p> </p>  <p>Under <i>Iqbal</i>, though a court must accept all well-pleaded facts as true, the claim must still have facial plausibility.<span>  </span>And a plaintiff can plead herself out of court, which was what the court determined had occurred here.</p>  <p> </p>  <p>False endorsement means that consumers are likely to be misled about a person's sponsorship or approval of a product or service.<span>  </span></p>  <p> </p>  <p>In order to have prudential standing under the Lanham Act, Stayart needed to allege at least an existing intent to commercialize her identity.<span>  </span>This she didn't do.<span>  </span>Though she alleged that her name has commercial value, her complaint is really about distasteful associations. <span> </span>That emotional desire to prevent others from using her name doesn't create Lanham Act standing.<span>  </span>Her correspondence with Yahoo!, attached to the complaint, further indicates that her concerns are with privacy and reputation, defamation and demeaning associations.<span>  </span>But the Lanham Act does not create a false light tort claim, absent commercialization.</p>  <p> </p>  <p>Stayart relied on <i><a href="http://tushnet.blogspot.com/2008/03/state-publicity-claims-are-not.html">Doe v. Friendfinder</a></i>, which refused to dismiss a false endorsement claim against AdultFriendFinder.<span>  </span>But <i>Doe</i> didn't address prudential standing in its decision.</p>  <p> </p>  <p>The court went on to reach an independent ground for dismissal, lack of likely confusion as a matter of law.<span>  </span>[A] commonsense reading of the complaint demonstrates that there could be no likelihood of confusion.<span>  </span>The complaint explicitly disavows any association with pornographic materials, sexual dysfunction drugs, or sexually-oriented dating services.<span>  </span>This contravenes likelihood of confusion, so Stayart pleaded herself out of court.<span>  </span>(Query: before 1999, would Bob Dole have had a claim?<span>  </span>He'd never previously been associated with sexual dysfunction drugs, so wouldn't it have been just as implausible that he'd be a pitchman for them?)<span>  </span>No one who accessed these links could reasonably conclude that Bev Stayart endorsed the products at issue.</p>  <p> </p>  <p>Stayart argued initial interest confusion against AdultFriendFinder.<span>  </span>But on the internet, initial interest confusion depends on relatedness of goods and a consumer's level of care.<span>  </span>Given that Stayart's identity is completely unrelated to AdultFriendFinder's services, initial confusion won't facilitate free riding on another mark's goodwill.<span>  </span>Without a meaningful effect on the market, confusion is of little or no consequence under the Lanham Act.<span>  </span>The type of person looking for information about Bev Stayart would not be fooled into using an online adult-oriented dating website.<span>  </span>(I'd add in to find her at the end of that; the court might be surprised to find outjust as Stayart might bethe non-Stayart-related interests of the type of people looking for information about Stayart.<span>  </span>I'd be willing to bet that even genealogists and animal rescuers sometimes like to meet adult friends!)</p>  <p> </p>  <p>Next, a puzzling CDA discussion.<span>  </span>The court commented that if Stayart successfully stated a false endorsement claim under the Lanham Act, it would probably fall under the CDA's intellectual property exclusion.<span>  </span>But, it continued, one of the fatal flaws of that claim is that Yahoo! didn't use Stayart's name in connection with its own goods or services.<span>  </span>It just included snippets from third-party websites and didn't create the content of which Stayart complained.<span>  </span>So the proper analysis is vicarious liability/contributory infringement under the Lanham Act.<span>  </span></p>  <p> </p>  <p>Under settled doctrine, Yahoo! can't be held liable for failing to remove the search results even after Stayart complained.<span>  </span>It didn't control the third-party websites, which fact defeated both contributory and vicarious liability.<span>  </span>(That's a shortcut on contributory liability analysis, but not particularly troubling under the circumstances.)<span>  </span>The only way Yahoo! could control the results would be to change its algorithm, which goes to the heart of Yahoo!'s role as an interactive computer service. <span> </span>Because ordinary search engines play no part in developing any unlawful searches, Yahoo! should be entitled to immunity because it acted as an interactive computer service, even though Stayart's claims are nominal intellectual property claims.<span>  </span>Immunizing Yahoo! doesn't contravene the CDA's IP exclusion because Stayart doesn't have a valid IP claim.<span>  </span></p>  <p> </p>  <p>Comment: oh, my.<span>  </span>Look, I like CDA immunity generally.<span>  </span>But what's weird here is not the court's willingness to use CDA reasoning on an IP claim despite the IP exclusion; what's weird is the court's failure to notice that IP secondary liability doctrine <i>itself incorporates the tech-promoting rationales underlying the CDA</i>.<span>  </span>Well, trademark does much more than copyright, these daysbut it's trademark doctrine that's at issue here!<span>  </span>There's no need to bring in the CDA!<span>  </span>And that last bitthis analysis only applies because Stayart doesn't have a valid IP claimmakes this whole excursion even more obviously useless.</p>  <p> </p>  <p>The court then said that matters were less clear with respect to AdultFriendFinder.<span>  </span>The site is in some ways interactive, but Stayart's complaint relates to the banner ad associated with the bev-stayart.html URL. <span> </span>AdultFriendFinder's role in the creation of the banner ad content was unclear, so the court couldn't grant it immunity at this stage.</p>  <p> </p>  <p>The only claims that remained were state-law claims.<span>  </span>Given that the dismissal was on the pleadings, ordinarily a federal court should relinquish jurisdiction, unless it is so obvious how the claims should be decided that the plaintiff should be put out of her misery rather than involving state-court resources.<span>  </span>Defendants argued that Wisconsin requires a name to have commercial value in order to maintain a right of publicity claim.<span>  </span>But some variations of the appropriation tort, which Wisconsin may recognize, require only commercial use plus bruised feelings.<span>  </span>(Doesn't Yahoo! get out of this even if AdultFriendFinder has to proceed in state court?<span>  </span>Under what theory is Yahoo!'s use commercial?<span>  </span>If it's using snippets from other sites, how can it possibly be distinguished from the <i>New York Times</i> using Stayart's name in a story?)</p>  <p> </p>  <p>The distinction between appropriation and the right to publicity (based on commercial damage) is also relevant to CDA immunity.<span>  </span>The latter is an IP claim.<span>  </span>(Implicit holding: to the extent Stayart is bringing an appropriation claim, Yahoo! is immune.)<span>  </span>Plus there's the <i>Perfect 10 </i>versus <i>Friendfinder</i> split over whether state IP claims are preempted by the CDA.<span>  </span>Since this is an unsettled issue of federal law, the court couldn't conclude that there was an obvious resolution of the state law claims.<span>  </span>Even though the Court already held that Yahoo! was entitled to CDA immunity, the Court cannot say with certainty that a potential right to publicity claim under Wisconsin law is without merit, meaning that the intellectual property exception could save Stayart's claims.<span>  </span>Also, AdultFriendFinder's CDA status is unclear, leaving it potentially vulnerable under either a misappropriation or right of publicity claim.</p>  <span></span><div><img width="1" height="1" src="https://blogger.googleusercontent.com/tracker/5764290-2864155455588182244?l=tushnet.blogspot.com"></div><br><br>Tags: <a href="http://www.croncast.com/keyg/stayart">stayart</a> <a href="http://www.technorati.com/tag/stayart"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/stayart.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/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/claim">claim</a> <a href="http://www.technorati.com/tag/claim"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/claim.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/under">under</a> <a href="http://www.technorati.com/tag/under"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/under.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></description><content:encoded><![CDATA[Stayart v. Yahoo! Inc., 2009 WL 2840478 (E.D. Wis.)<p></p>  <p> </p>  <p>Beverly Stayart <a href="http://en.wikipedia.org/wiki/Egosurfing">searched her own name</a> and didn't like the results.<span>  </span>She got links to pornographic websites, online pharmacies promoting sexual dysfunction drugs, and an adult-oriented online dating service.<span>  </span>She sued Yahoo! and other defendants, including the operator of AdultFriendFinder, for false endorsement under the Lanham Act and state-law privacy violations.<span>  </span>The court dismissed the Lanham Act claim and surrendered jurisdiction over the state law claims.</p>  <p> </p>  <p>Stayart lives in Wisconsin and was previously employed by several major financial institutions in Chicago, attaining the position of Vice President.<span>  </span>She's involved in animal protection and genealogy research throughout the world.<span>  </span>This includes an internet presence; her periodic posts on one genealogical website have generated almost 17,000 hits during the past three years.<span>  </span>(Okay, I'm sorry, but: on the internet as a whole, that's tiny.<span>  </span><i>My</i> stats look more impressive than thatif you've never seen any others.)<span>  </span>And two of her poems appear on two Danish websites (they support the preservation of baby seals).</p>  <p> </p>  <p>Stayart alleged that she was the only Beverly/Bev Stayart on the internet, and that she had never engaged in a promiscuous lifestyle, or other overt sexual activities, which are repugnant to her and her community.<span>  </span>She alleged that her name had commercial value because of her humanitarian endeavors, positive and wholesome image, and the popularity of her scholarly posts on the Internet.<span>  </span>The search engine defendants, she alleged, knowingly used her name on false snippets in results by (1) repeatedly linking Plaintiff to the advertising of Cialis by an online pharmacy; (2) repeatedly linking Plaintiff to six separate websites playing pornographic videos containing computer spy ware; and (3) repeatedly linking Plaintiff to a website captioned Free Streaming Porn--HOTTEST DAILY PORN' displaying 27 hardcore pornographic photos.<span>  </span>She asked Yahoo! to stop linking her name to these search results.<span>  </span>Yahoo! replied: We do not aim to judge web content for appropriateness or censor materials that we find offensive or inappropriate. Instead, we present information as it is reflected on the Web, allowing you to draw your own informed conclusions about what you see.</p>  <p> </p>  <p>Stayart also alleged that Various (which operates AdultFriendFinder) used her name on a website advertising its service.<span>  </span>She typed her name into altavista.com and got, among the results, jewellery-makin-doorway.orge.pl/bev-stayart.html.<span>  </span>This went to an Under Construction site that stated Meet AdultFriendFinder members near Janesville [Wisconsin]-- Over 20 Million Members and displayed five graphic images of fully or partially nude women, accompanied by the age, nickname and city of residence of the women. </p>  <p> </p>  <p>Under <i>Iqbal</i>, though a court must accept all well-pleaded facts as true, the claim must still have facial plausibility.<span>  </span>And a plaintiff can plead herself out of court, which was what the court determined had occurred here.</p>  <p> </p>  <p>False endorsement means that consumers are likely to be misled about a person's sponsorship or approval of a product or service.<span>  </span></p>  <p> </p>  <p>In order to have prudential standing under the Lanham Act, Stayart needed to allege at least an existing intent to commercialize her identity.<span>  </span>This she didn't do.<span>  </span>Though she alleged that her name has commercial value, her complaint is really about distasteful associations. <span> </span>That emotional desire to prevent others from using her name doesn't create Lanham Act standing.<span>  </span>Her correspondence with Yahoo!, attached to the complaint, further indicates that her concerns are with privacy and reputation, defamation and demeaning associations.<span>  </span>But the Lanham Act does not create a false light tort claim, absent commercialization.</p>  <p> </p>  <p>Stayart relied on <i><a href="http://tushnet.blogspot.com/2008/03/state-publicity-claims-are-not.html">Doe v. Friendfinder</a></i>, which refused to dismiss a false endorsement claim against AdultFriendFinder.<span>  </span>But <i>Doe</i> didn't address prudential standing in its decision.</p>  <p> </p>  <p>The court went on to reach an independent ground for dismissal, lack of likely confusion as a matter of law.<span>  </span>[A] commonsense reading of the complaint demonstrates that there could be no likelihood of confusion.<span>  </span>The complaint explicitly disavows any association with pornographic materials, sexual dysfunction drugs, or sexually-oriented dating services.<span>  </span>This contravenes likelihood of confusion, so Stayart pleaded herself out of court.<span>  </span>(Query: before 1999, would Bob Dole have had a claim?<span>  </span>He'd never previously been associated with sexual dysfunction drugs, so wouldn't it have been just as implausible that he'd be a pitchman for them?)<span>  </span>No one who accessed these links could reasonably conclude that Bev Stayart endorsed the products at issue.</p>  <p> </p>  <p>Stayart argued initial interest confusion against AdultFriendFinder.<span>  </span>But on the internet, initial interest confusion depends on relatedness of goods and a consumer's level of care.<span>  </span>Given that Stayart's identity is completely unrelated to AdultFriendFinder's services, initial confusion won't facilitate free riding on another mark's goodwill.<span>  </span>Without a meaningful effect on the market, confusion is of little or no consequence under the Lanham Act.<span>  </span>The type of person looking for information about Bev Stayart would not be fooled into using an online adult-oriented dating website.<span>  </span>(I'd add in to find her at the end of that; the court might be surprised to find outjust as Stayart might bethe non-Stayart-related interests of the type of people looking for information about Stayart.<span>  </span>I'd be willing to bet that even genealogists and animal rescuers sometimes like to meet adult friends!)</p>  <p> </p>  <p>Next, a puzzling CDA discussion.<span>  </span>The court commented that if Stayart successfully stated a false endorsement claim under the Lanham Act, it would probably fall under the CDA's intellectual property exclusion.<span>  </span>But, it continued, one of the fatal flaws of that claim is that Yahoo! didn't use Stayart's name in connection with its own goods or services.<span>  </span>It just included snippets from third-party websites and didn't create the content of which Stayart complained.<span>  </span>So the proper analysis is vicarious liability/contributory infringement under the Lanham Act.<span>  </span></p>  <p> </p>  <p>Under settled doctrine, Yahoo! can't be held liable for failing to remove the search results even after Stayart complained.<span>  </span>It didn't control the third-party websites, which fact defeated both contributory and vicarious liability.<span>  </span>(That's a shortcut on contributory liability analysis, but not particularly troubling under the circumstances.)<span>  </span>The only way Yahoo! could control the results would be to change its algorithm, which goes to the heart of Yahoo!'s role as an interactive computer service. <span> </span>Because ordinary search engines play no part in developing any unlawful searches, Yahoo! should be entitled to immunity because it acted as an interactive computer service, even though Stayart's claims are nominal intellectual property claims.<span>  </span>Immunizing Yahoo! doesn't contravene the CDA's IP exclusion because Stayart doesn't have a valid IP claim.<span>  </span></p>  <p> </p>  <p>Comment: oh, my.<span>  </span>Look, I like CDA immunity generally.<span>  </span>But what's weird here is not the court's willingness to use CDA reasoning on an IP claim despite the IP exclusion; what's weird is the court's failure to notice that IP secondary liability doctrine <i>itself incorporates the tech-promoting rationales underlying the CDA</i>.<span>  </span>Well, trademark does much more than copyright, these daysbut it's trademark doctrine that's at issue here!<span>  </span>There's no need to bring in the CDA!<span>  </span>And that last bitthis analysis only applies because Stayart doesn't have a valid IP claimmakes this whole excursion even more obviously useless.</p>  <p> </p>  <p>The court then said that matters were less clear with respect to AdultFriendFinder.<span>  </span>The site is in some ways interactive, but Stayart's complaint relates to the banner ad associated with the bev-stayart.html URL. <span> </span>AdultFriendFinder's role in the creation of the banner ad content was unclear, so the court couldn't grant it immunity at this stage.</p>  <p> </p>  <p>The only claims that remained were state-law claims.<span>  </span>Given that the dismissal was on the pleadings, ordinarily a federal court should relinquish jurisdiction, unless it is so obvious how the claims should be decided that the plaintiff should be put out of her misery rather than involving state-court resources.<span>  </span>Defendants argued that Wisconsin requires a name to have commercial value in order to maintain a right of publicity claim.<span>  </span>But some variations of the appropriation tort, which Wisconsin may recognize, require only commercial use plus bruised feelings.<span>  </span>(Doesn't Yahoo! get out of this even if AdultFriendFinder has to proceed in state court?<span>  </span>Under what theory is Yahoo!'s use commercial?<span>  </span>If it's using snippets from other sites, how can it possibly be distinguished from the <i>New York Times</i> using Stayart's name in a story?)</p>  <p> </p>  <p>The distinction between appropriation and the right to publicity (based on commercial damage) is also relevant to CDA immunity.<span>  </span>The latter is an IP claim.<span>  </span>(Implicit holding: to the extent Stayart is bringing an appropriation claim, Yahoo! is immune.)<span>  </span>Plus there's the <i>Perfect 10 </i>versus <i>Friendfinder</i> split over whether state IP claims are preempted by the CDA.<span>  </span>Since this is an unsettled issue of federal law, the court couldn't conclude that there was an obvious resolution of the state law claims.<span>  </span>Even though the Court already held that Yahoo! was entitled to CDA immunity, the Court cannot say with certainty that a potential right to publicity claim under Wisconsin law is without merit, meaning that the intellectual property exception could save Stayart's claims.<span>  </span>Also, AdultFriendFinder's CDA status is unclear, leaving it potentially vulnerable under either a misappropriation or right of publicity claim.</p>  <span></span><div><img width="1" height="1" src="https://blogger.googleusercontent.com/tracker/5764290-2864155455588182244?l=tushnet.blogspot.com"></div><br><br>Tags: <a href="http://www.croncast.com/keyg/stayart">stayart</a> <a href="http://www.technorati.com/tag/stayart"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/stayart.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/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/claim">claim</a> <a href="http://www.technorati.com/tag/claim"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/claim.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/under">under</a> <a href="http://www.technorati.com/tag/under"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/under.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a>]]></content:encoded>

         <pubDate>Mon, 07 Sep 2009 02:14:00 -0400</pubDate>         <guid isPermaLink="false">tag:croncast.com,5525</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>Google Reader Updates: Share News on Twitter, Facebook, and More</title>
         <link>http://mashable.com/2009/08/12/google-reader-send-to/</link>
		 <category>Shared item</category>
			<description><![CDATA[<a href="http://api.tweetmeme.com/share?url=http://mashable.com/2009/08/12/google-reader-send-to/"><img width="51" height="61" src="http://api.tweetmeme.com/imagebutton.gif?url=http://mashable.com/2009/08/12/google-reader-send-to/" align="right"></a><p><img style="margin:10px" title="google-reader-logo" src="http://ec.mashable.com/wp-content/uploads/2008/12/google-reader-logo.gif" alt="google-reader-logo" width="150" height="55">Today confirms that Google's not giving up their quest to become more social media friendly. Earlier today they introduced a <a href="http://mashable.com/2009/08/12/igoogle-social-network/">series of new iGoogle</a> features that make it more of a social network than a start page, and just now they've <a href="http://googlereader.blogspot.com/2009/08/flurry-of-features-for-feed-readers.html">released an update to your Google Reader</a> to turn it into a social distribution utility for news on the web.</p>
<p>Google Reader Send To is the new feature that you're likely to love instantly. It's the feature we've wanted from our reader since Twitter became our favorite place to share interesting links. In fact, with Send To you can set your settings to send posts to almost every social site that matters: Blogger, Delicious, Digg, Facebook, MySpace, Reddit, StumbleUpon, and  obviously  Twitter.<br>
<span></span></p>
<p style="text-align:center"><img style="margin:10px" title="Google Reader social" src="http://ec.mashable.com/wp-content/uploads/2009/08/Google-Reader-social.jpg" alt="Google Reader social" width="483" height="414"></p>
<p>Once you configure your favorite social sites to send to in settings  you can even add your own custom destinations  you'll notice that you can then select the send to button at the bottom of the post and pick your final destination.</p>
<p style="text-align:center"><img style="margin:10px" title="google reader send to" src="http://ec.mashable.com/wp-content/uploads/2009/08/send-to-1.jpg" alt="google reader send to" width="595" height="84"></p>
<p>Google Reader has also introduced a few less social, but more practical ways, to engage with their feed aggregator. They've added a better way to quickly subscribe to the feeds from people you follow, and also given you an easier way to mark items as read in bulk. So now you can select the Mark all as read drop down to fine tune your preferences and only mark items older than a day, a week, or two weeks as read in one easy click.</p>
<p>Google Reader is starting to blossom, and we're a big fan of the new social additions. Share your thoughts on the refreshed Google Reader in the comments.</p>
<hr>Reviews: <a href="http://www.blippr.com/apps/336896-Delicious">Delicious</a>, <a href="http://www.blippr.com/apps/336668-Digg">Digg</a>, <a href="http://www.blippr.com/apps/336661-Google">Google</a>, <a href="http://www.blippr.com/apps/337305-Google-Reader">Google Reader</a>, <a href="http://www.blippr.com/apps/336652-MySpace">MySpace</a>, <a href="http://www.blippr.com/apps/336717-StumbleUpon">StumbleUpon</a>, <a href="http://www.blippr.com/apps/336651-Twitter">Twitter</a>, <a href="http://www.blippr.com/apps/337581-blogger">blogger</a>, <a href="http://www.blippr.com/apps/337380-facebook">facebook</a>
<p>Tags: <a href="http://mashable.com/tag/google-reader/">google reader</a></p><p><iframe src="http://feedads.g.doubleclick.net/~ah/f/9m6h8omben53fuj7ghgrctkjc8/468/60#http%3A%2F%2Fmashable.com%2F2009%2F08%2F12%2Fgoogle-reader-send-to%2F" width="100%" height="60" frameborder="0" scrolling="no" marginwidth="0" marginheight="0"></iframe></p><div>
<a href="http://feeds.feedburner.com/~ff/Mashable?a=KtdC6TDt9j4:eGAEJUAEYvI:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/Mashable?i=KtdC6TDt9j4:eGAEJUAEYvI:D7DqB2pKExk" border="0"></a> <a href="http://feeds.feedburner.com/~ff/Mashable?a=KtdC6TDt9j4:eGAEJUAEYvI:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Mashable?i=KtdC6TDt9j4:eGAEJUAEYvI:V_sGLiPBpWU" border="0"></a> <a href="http://feeds.feedburner.com/~ff/Mashable?a=KtdC6TDt9j4:eGAEJUAEYvI:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Mashable?i=KtdC6TDt9j4:eGAEJUAEYvI:F7zBnMyn0Lo" border="0"></a> <a href="http://feeds.feedburner.com/~ff/Mashable?a=KtdC6TDt9j4:eGAEJUAEYvI:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Mashable?d=qj6IDK7rITs" border="0"></a> <a href="http://feeds.feedburner.com/~ff/Mashable?a=KtdC6TDt9j4:eGAEJUAEYvI:_e0tkf89iUM"><img src="http://feeds.feedburner.com/~ff/Mashable?d=_e0tkf89iUM" border="0"></a> <a href="http://feeds.feedburner.com/~ff/Mashable?a=KtdC6TDt9j4:eGAEJUAEYvI:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Mashable?i=KtdC6TDt9j4:eGAEJUAEYvI:gIN9vFwOqvQ" border="0"></a> <a href="http://feeds.feedburner.com/~ff/Mashable?a=KtdC6TDt9j4:eGAEJUAEYvI:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Mashable?d=yIl2AUoC8zA" border="0"></a> <a href="http://feeds.feedburner.com/~ff/Mashable?a=KtdC6TDt9j4:eGAEJUAEYvI:P0ZAIrC63Ok"><img src="http://feeds.feedburner.com/~ff/Mashable?d=P0ZAIrC63Ok" border="0"></a> <a href="http://feeds.feedburner.com/~ff/Mashable?a=KtdC6TDt9j4:eGAEJUAEYvI:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/Mashable?d=I9og5sOYxJI" border="0"></a> <a href="http://feeds.feedburner.com/~ff/Mashable?a=KtdC6TDt9j4:eGAEJUAEYvI: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/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/reader">reader</a> <a href="http://www.technorati.com/tag/reader"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/reader.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/send">send</a> <a href="http://www.technorati.com/tag/send"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/send.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <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>]]></description><content:encoded><![CDATA[<a href="http://api.tweetmeme.com/share?url=http://mashable.com/2009/08/12/google-reader-send-to/"><img width="51" height="61" src="http://api.tweetmeme.com/imagebutton.gif?url=http://mashable.com/2009/08/12/google-reader-send-to/" align="right"></a><p><img style="margin:10px" title="google-reader-logo" src="http://ec.mashable.com/wp-content/uploads/2008/12/google-reader-logo.gif" alt="google-reader-logo" width="150" height="55">Today confirms that Google's not giving up their quest to become more social media friendly. Earlier today they introduced a <a href="http://mashable.com/2009/08/12/igoogle-social-network/">series of new iGoogle</a> features that make it more of a social network than a start page, and just now they've <a href="http://googlereader.blogspot.com/2009/08/flurry-of-features-for-feed-readers.html">released an update to your Google Reader</a> to turn it into a social distribution utility for news on the web.</p>
<p>Google Reader Send To is the new feature that you're likely to love instantly. It's the feature we've wanted from our reader since Twitter became our favorite place to share interesting links. In fact, with Send To you can set your settings to send posts to almost every social site that matters: Blogger, Delicious, Digg, Facebook, MySpace, Reddit, StumbleUpon, and  obviously  Twitter.<br>
<span></span></p>
<p style="text-align:center"><img style="margin:10px" title="Google Reader social" src="http://ec.mashable.com/wp-content/uploads/2009/08/Google-Reader-social.jpg" alt="Google Reader social" width="483" height="414"></p>
<p>Once you configure your favorite social sites to send to in settings  you can even add your own custom destinations  you'll notice that you can then select the send to button at the bottom of the post and pick your final destination.</p>
<p style="text-align:center"><img style="margin:10px" title="google reader send to" src="http://ec.mashable.com/wp-content/uploads/2009/08/send-to-1.jpg" alt="google reader send to" width="595" height="84"></p>
<p>Google Reader has also introduced a few less social, but more practical ways, to engage with their feed aggregator. They've added a better way to quickly subscribe to the feeds from people you follow, and also given you an easier way to mark items as read in bulk. So now you can select the Mark all as read drop down to fine tune your preferences and only mark items older than a day, a week, or two weeks as read in one easy click.</p>
<p>Google Reader is starting to blossom, and we're a big fan of the new social additions. Share your thoughts on the refreshed Google Reader in the comments.</p>
<hr>Reviews: <a href="http://www.blippr.com/apps/336896-Delicious">Delicious</a>, <a href="http://www.blippr.com/apps/336668-Digg">Digg</a>, <a href="http://www.blippr.com/apps/336661-Google">Google</a>, <a href="http://www.blippr.com/apps/337305-Google-Reader">Google Reader</a>, <a href="http://www.blippr.com/apps/336652-MySpace">MySpace</a>, <a href="http://www.blippr.com/apps/336717-StumbleUpon">StumbleUpon</a>, <a href="http://www.blippr.com/apps/336651-Twitter">Twitter</a>, <a href="http://www.blippr.com/apps/337581-blogger">blogger</a>, <a href="http://www.blippr.com/apps/337380-facebook">facebook</a>
<p>Tags: <a href="http://mashable.com/tag/google-reader/">google reader</a></p><p><iframe src="http://feedads.g.doubleclick.net/~ah/f/9m6h8omben53fuj7ghgrctkjc8/468/60#http%3A%2F%2Fmashable.com%2F2009%2F08%2F12%2Fgoogle-reader-send-to%2F" width="100%" height="60" frameborder="0" scrolling="no" marginwidth="0" marginheight="0"></iframe></p><div>
<a href="http://feeds.feedburner.com/~ff/Mashable?a=KtdC6TDt9j4:eGAEJUAEYvI:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/Mashable?i=KtdC6TDt9j4:eGAEJUAEYvI:D7DqB2pKExk" border="0"></a> <a href="http://feeds.feedburner.com/~ff/Mashable?a=KtdC6TDt9j4:eGAEJUAEYvI:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Mashable?i=KtdC6TDt9j4:eGAEJUAEYvI:V_sGLiPBpWU" border="0"></a> <a href="http://feeds.feedburner.com/~ff/Mashable?a=KtdC6TDt9j4:eGAEJUAEYvI:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Mashable?i=KtdC6TDt9j4:eGAEJUAEYvI:F7zBnMyn0Lo" border="0"></a> <a href="http://feeds.feedburner.com/~ff/Mashable?a=KtdC6TDt9j4:eGAEJUAEYvI:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Mashable?d=qj6IDK7rITs" border="0"></a> <a href="http://feeds.feedburner.com/~ff/Mashable?a=KtdC6TDt9j4:eGAEJUAEYvI:_e0tkf89iUM"><img src="http://feeds.feedburner.com/~ff/Mashable?d=_e0tkf89iUM" border="0"></a> <a href="http://feeds.feedburner.com/~ff/Mashable?a=KtdC6TDt9j4:eGAEJUAEYvI:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Mashable?i=KtdC6TDt9j4:eGAEJUAEYvI:gIN9vFwOqvQ" border="0"></a> <a href="http://feeds.feedburner.com/~ff/Mashable?a=KtdC6TDt9j4:eGAEJUAEYvI:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Mashable?d=yIl2AUoC8zA" border="0"></a> <a href="http://feeds.feedburner.com/~ff/Mashable?a=KtdC6TDt9j4:eGAEJUAEYvI:P0ZAIrC63Ok"><img src="http://feeds.feedburner.com/~ff/Mashable?d=P0ZAIrC63Ok" border="0"></a> <a href="http://feeds.feedburner.com/~ff/Mashable?a=KtdC6TDt9j4:eGAEJUAEYvI:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/Mashable?d=I9og5sOYxJI" border="0"></a> <a href="http://feeds.feedburner.com/~ff/Mashable?a=KtdC6TDt9j4:eGAEJUAEYvI: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/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/reader">reader</a> <a href="http://www.technorati.com/tag/reader"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/reader.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/send">send</a> <a href="http://www.technorati.com/tag/send"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/send.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <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>]]></content:encoded>

         <pubDate>Thu, 13 Aug 2009 00:47:19 -0400</pubDate>         <guid isPermaLink="false">tag:croncast.com,5458</guid>

			<itunes:subtitle/>
      </item>
      <item>
         <title>Facebook Updates Are Now Searchable; Not What Most Users Joined For</title>
         <link>http://feedproxy.google.com/~r/readwriteweb/~3/L679yY6jtdA/facebook_updates_are_now_searchable_not_what_most.php</link>
		 <category>Shared item</category>
			<description><![CDATA[Publisher - <a href="http://www.filome.com/pub/Rp9epjK5sBzeqW">ReadWriteWeb</a><br> First shared  by - <a href="http://www.filome.com/BrandonMendelson">BrandonMendelson</a><br>syndication+ 3 | Search 1 | Shares 1<br><br><p><img src="http://www.readwriteweb.com/images/thefacebook.jpg" border="0"> Facebook is really flexing its muscles today.  First it <a href="http://www.readwriteweb.com/archives/facebook_users_-_heres_what_friendfeed_brings_to_t.php">acquired</a> radically innovative social network FriendFeed and now it has announced that <a href="http://blog.facebook.com/blog.php?post=115469877130">it's opened up search</a> across all status messages, notes and shared links that users have marked as public.  (Don't worry, yours  aren't public unless you changed your own settings.)</p>

<p>Searching across all users, whether you know them or not, requires a couple of clicks - but the availability of the feature marks a dramatic turning point in the history of Facebook.  For months the company <a href="http://www.readwriteweb.com/archives/facebook_wants_you_to_be_less_private_-_but_why.php">has been pushing users towards being more public and less private</a>.  This is why.</p>
<p align="right"><em>Sponsor</em><br><a href="http://d1.openx.org/ck.php?n=16008&amp;cb=16008"><img src="http://d1.openx.org/avw.php?zoneid=11205&amp;cb=16008&amp;n=16008" border="0"> </a></p>

<p><img src="http://www.readwriteweb.com/images/FBnewsearch.jpg" width="500" height="386" border="0"> </p>

<p>Google still can't index the contents of Facebook, because Facebook is positioning itself as a major competitor to Google.  There is no RSS feed available for searches,  even updates marked public are only public within the walls of Facebook, not on the open web at large.  Developers can't build innovative new applications on top of the new Facebook search.  It's a walled garden - why would you ever want to leave when Facebook can fill all your needs as a user?!</p>

<div>No one really gets what they want here except for self-promoters, voyeurs, marketers and presumably the advertising department at Facebook.</div>

<p>There's something creepy about this.  We've asked before if <a href="http://www.readwriteweb.com/archives/is_facebook_a_cult.php">Facebook is a cult</a> and we've discussed how its privacy moves represent an agenda that praises privacy but doesn't support <a href="http://www.readwriteweb.com/archives/a_closer_look_at_facebooks_new_privacy_options.php">the kind of privacy people experience in real life</a>.  (You share different things with different people, depending on the context.) You probably joined Facebook because you thought it was a secure place to converse with friends and family.  It may still be, but the company sure would like it if you'd please lift the lid and let the world search and view those conversations.</p>
<strong><a href="http://www.readwriteweb.com/archives/facebook_updates_are_now_searchable_not_what_most.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%2Farchives%2Ffacebook_updates_are_now_searchable_not_what_most.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=L679yY6jtdA:y3wuNvauAuY:JzerP2ZdMrc"><img src="http://feeds.feedburner.com/~ff/readwriteweb?d=JzerP2ZdMrc" border="0"> </a> <a href="http://feeds.feedburner.com/~ff/readwriteweb?a=L679yY6jtdA:y3wuNvauAuY:Ij26kaj3iuU"><img src="http://feeds.feedburner.com/~ff/readwriteweb?d=Ij26kaj3iuU" border="0"> </a> <a href="http://feeds.feedburner.com/~ff/readwriteweb?a=L679yY6jtdA:y3wuNvauAuY:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/readwriteweb?d=yIl2AUoC8zA" border="0"> </a> <a href="http://feeds.feedburner.com/~ff/readwriteweb?a=L679yY6jtdA:y3wuNvauAuY:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/readwriteweb?i=L679yY6jtdA:y3wuNvauAuY:V_sGLiPBpWU" border="0"> </a> <a href="http://feeds.feedburner.com/~ff/readwriteweb?a=L679yY6jtdA:y3wuNvauAuY:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/readwriteweb?i=L679yY6jtdA:y3wuNvauAuY:gIN9vFwOqvQ" border="0"> </a> <a href="http://feeds.feedburner.com/~ff/readwriteweb?a=L679yY6jtdA:y3wuNvauAuY:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/readwriteweb?i=L679yY6jtdA:y3wuNvauAuY:F7zBnMyn0Lo" border="0"> </a> <a href="http://feeds.feedburner.com/~ff/readwriteweb?a=L679yY6jtdA:y3wuNvauAuY:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/readwriteweb?d=qj6IDK7rITs" border="0"> </a> <a href="http://feeds.feedburner.com/~ff/readwriteweb?a=L679yY6jtdA:y3wuNvauAuY:OqabYuBsmOY"><img src="http://feeds.feedburner.com/~ff/readwriteweb?d=OqabYuBsmOY" border="0"> </a>
</div><img src="http://feeds.feedburner.com/~r/readwriteweb/~4/L679yY6jtdA" border="0"> <br><br><a href="http://www.filome.com/key/facebook">facebook</a> <a href="http://search.twitter.com/search?q=%22facebook%22"><img src="http://www.filome.com/images/summize.gif" border="0"></a> <a href="http://www.filome.com/key/facebook.rss"><img src="http://www.filome.com/images/c4_rss_tiny.jpg" border="0"></a>  <a href="http://www.filome.com/key/public">public</a> <a href="http://search.twitter.com/search?q=%22public%22"><img src="http://www.filome.com/images/summize.gif" border="0"></a> <a href="http://www.filome.com/key/public.rss"><img src="http://www.filome.com/images/c4_rss_tiny.jpg" border="0"></a>  <a href="http://www.filome.com/key/users">users</a>  <a href="http://search.twitter.com/search?q=%22users%22"><img src="http://www.filome.com/images/summize.gif" border="0"></a> <a href="http://www.filome.com/key/users.rss"><img src="http://www.filome.com/images/c4_rss_tiny.jpg" border="0"></a>  <a href="http://www.filome.com/key/search">search</a> <a href="http://search.twitter.com/search?q=%22search%22"><img src="http://www.filome.com/images/summize.gif" border="0"></a> <a href="http://www.filome.com/key/search.rss"><img src="http://www.filome.com/images/c4_rss_tiny.jpg" border="0"></a>  <a href="http://www.filome.com/key/privacy">privacy</a> <a href="http://search.twitter.com/search?q=%22privacy%22"><img src="http://www.filome.com/images/summize.gif" border="0"></a> <a href="http://www.filome.com/key/privacy.rss"><img src="http://www.filome.com/images/c4_rss_tiny.jpg" border="0"></a>  <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/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> <a href="http://www.croncast.com/keyg/search">search</a> <a href="http://www.technorati.com/tag/search"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/search.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/users">users</a> <a href="http://www.technorati.com/tag/users"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/users.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <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>]]></description><content:encoded><![CDATA[Publisher - <a href="http://www.filome.com/pub/Rp9epjK5sBzeqW">ReadWriteWeb</a><br> First shared  by - <a href="http://www.filome.com/BrandonMendelson">BrandonMendelson</a><br>syndication+ 3 | Search 1 | Shares 1<br><br><p><img src="http://www.readwriteweb.com/images/thefacebook.jpg" border="0"> Facebook is really flexing its muscles today.  First it <a href="http://www.readwriteweb.com/archives/facebook_users_-_heres_what_friendfeed_brings_to_t.php">acquired</a> radically innovative social network FriendFeed and now it has announced that <a href="http://blog.facebook.com/blog.php?post=115469877130">it's opened up search</a> across all status messages, notes and shared links that users have marked as public.  (Don't worry, yours  aren't public unless you changed your own settings.)</p>

<p>Searching across all users, whether you know them or not, requires a couple of clicks - but the availability of the feature marks a dramatic turning point in the history of Facebook.  For months the company <a href="http://www.readwriteweb.com/archives/facebook_wants_you_to_be_less_private_-_but_why.php">has been pushing users towards being more public and less private</a>.  This is why.</p>
<p align="right"><em>Sponsor</em><br><a href="http://d1.openx.org/ck.php?n=16008&amp;cb=16008"><img src="http://d1.openx.org/avw.php?zoneid=11205&amp;cb=16008&amp;n=16008" border="0"> </a></p>

<p><img src="http://www.readwriteweb.com/images/FBnewsearch.jpg" width="500" height="386" border="0"> </p>

<p>Google still can't index the contents of Facebook, because Facebook is positioning itself as a major competitor to Google.  There is no RSS feed available for searches,  even updates marked public are only public within the walls of Facebook, not on the open web at large.  Developers can't build innovative new applications on top of the new Facebook search.  It's a walled garden - why would you ever want to leave when Facebook can fill all your needs as a user?!</p>

<div>No one really gets what they want here except for self-promoters, voyeurs, marketers and presumably the advertising department at Facebook.</div>

<p>There's something creepy about this.  We've asked before if <a href="http://www.readwriteweb.com/archives/is_facebook_a_cult.php">Facebook is a cult</a> and we've discussed how its privacy moves represent an agenda that praises privacy but doesn't support <a href="http://www.readwriteweb.com/archives/a_closer_look_at_facebooks_new_privacy_options.php">the kind of privacy people experience in real life</a>.  (You share different things with different people, depending on the context.) You probably joined Facebook because you thought it was a secure place to converse with friends and family.  It may still be, but the company sure would like it if you'd please lift the lid and let the world search and view those conversations.</p>
<strong><a href="http://www.readwriteweb.com/archives/facebook_updates_are_now_searchable_not_what_most.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%2Farchives%2Ffacebook_updates_are_now_searchable_not_what_most.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=L679yY6jtdA:y3wuNvauAuY:JzerP2ZdMrc"><img src="http://feeds.feedburner.com/~ff/readwriteweb?d=JzerP2ZdMrc" border="0"> </a> <a href="http://feeds.feedburner.com/~ff/readwriteweb?a=L679yY6jtdA:y3wuNvauAuY:Ij26kaj3iuU"><img src="http://feeds.feedburner.com/~ff/readwriteweb?d=Ij26kaj3iuU" border="0"> </a> <a href="http://feeds.feedburner.com/~ff/readwriteweb?a=L679yY6jtdA:y3wuNvauAuY:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/readwriteweb?d=yIl2AUoC8zA" border="0"> </a> <a href="http://feeds.feedburner.com/~ff/readwriteweb?a=L679yY6jtdA:y3wuNvauAuY:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/readwriteweb?i=L679yY6jtdA:y3wuNvauAuY:V_sGLiPBpWU" border="0"> </a> <a href="http://feeds.feedburner.com/~ff/readwriteweb?a=L679yY6jtdA:y3wuNvauAuY:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/readwriteweb?i=L679yY6jtdA:y3wuNvauAuY:gIN9vFwOqvQ" border="0"> </a> <a href="http://feeds.feedburner.com/~ff/readwriteweb?a=L679yY6jtdA:y3wuNvauAuY:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/readwriteweb?i=L679yY6jtdA:y3wuNvauAuY:F7zBnMyn0Lo" border="0"> </a> <a href="http://feeds.feedburner.com/~ff/readwriteweb?a=L679yY6jtdA:y3wuNvauAuY:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/readwriteweb?d=qj6IDK7rITs" border="0"> </a> <a href="http://feeds.feedburner.com/~ff/readwriteweb?a=L679yY6jtdA:y3wuNvauAuY:OqabYuBsmOY"><img src="http://feeds.feedburner.com/~ff/readwriteweb?d=OqabYuBsmOY" border="0"> </a>
</div><img src="http://feeds.feedburner.com/~r/readwriteweb/~4/L679yY6jtdA" border="0"> <br><br><a href="http://www.filome.com/key/facebook">facebook</a> <a href="http://search.twitter.com/search?q=%22facebook%22"><img src="http://www.filome.com/images/summize.gif" border="0"></a> <a href="http://www.filome.com/key/facebook.rss"><img src="http://www.filome.com/images/c4_rss_tiny.jpg" border="0"></a>  <a href="http://www.filome.com/key/public">public</a> <a href="http://search.twitter.com/search?q=%22public%22"><img src="http://www.filome.com/images/summize.gif" border="0"></a> <a href="http://www.filome.com/key/public.rss"><img src="http://www.filome.com/images/c4_rss_tiny.jpg" border="0"></a>  <a href="http://www.filome.com/key/users">users</a>  <a href="http://search.twitter.com/search?q=%22users%22"><img src="http://www.filome.com/images/summize.gif" border="0"></a> <a href="http://www.filome.com/key/users.rss"><img src="http://www.filome.com/images/c4_rss_tiny.jpg" border="0"></a>  <a href="http://www.filome.com/key/search">search</a> <a href="http://search.twitter.com/search?q=%22search%22"><img src="http://www.filome.com/images/summize.gif" border="0"></a> <a href="http://www.filome.com/key/search.rss"><img src="http://www.filome.com/images/c4_rss_tiny.jpg" border="0"></a>  <a href="http://www.filome.com/key/privacy">privacy</a> <a href="http://search.twitter.com/search?q=%22privacy%22"><img src="http://www.filome.com/images/summize.gif" border="0"></a> <a href="http://www.filome.com/key/privacy.rss"><img src="http://www.filome.com/images/c4_rss_tiny.jpg" border="0"></a>  <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/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> <a href="http://www.croncast.com/keyg/search">search</a> <a href="http://www.technorati.com/tag/search"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/search.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <a href="http://www.croncast.com/keyg/users">users</a> <a href="http://www.technorati.com/tag/users"><img src="http://www.croncast.com/images/technorati.gif" border="0"></a><a href="http://www.croncast.com/keyrssg/users.rss"><img src="http://www.croncast.com/images/c4_rss_tiny.jpg" border="0"></a> <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>]]></content:encoded>

         <pubDate>Tue, 11 Aug 2009 18:20:34 -0400</pubDate>         <guid isPermaLink="false">tag:croncast.com,5448</guid>

			<itunes:subtitle/>
      </item>
      <item>
         <title>Could Real Time Information Be An Unfair Advantage?</title>
         <link>http://feedproxy.google.com/~r/readwriteweb/~3/rEfc_t4x6NM/could_real_time_information_be_an_unfair_advantage.php</link>
		 <category>Shared item</category>
			<description><![CDATA[Publisher - <a href="http://www.filome.com/pub/Rp9epjK5sBzeqW">ReadWriteWeb</a><br> First shared  by - <a href="http://www.filome.com/BrandonMendelson">BrandonMendelson</a><br>syndication+ 3 | Search 1 | Shares 1<br><br><p><img src="http://www.readwriteweb.com/images/watch_logo_mar09.jpg" border="0"> The US Securities and Exchange Commission is <a href="http://www.techmeme.com/090804/p95#a090804p95">considering a ban</a> on a stock market practice known as "flash trading," where supercomputers get access to information milliseconds before other traders and can rapidly buy and sell in ways that are argued to influence the market unfairly - thus discouraging mere mortals from participating.   </p>

<p>Many bleeding-edge trends in the consumer web play out writ large in financial markets; as all of us look at the growing prominence of real-time information on the web, the debate over flash stock trading raises issues worth considering outside the stock markets as well.  </p>
<p align="right"><em>Sponsor</em><br><a href="http://d1.openx.org/ck.php?n=15946&amp;cb=15946"><img src="http://d1.openx.org/avw.php?zoneid=11205&amp;cb=15946&amp;n=15946" border="0"> </a></p>

<p>If the real time web at large grows up open and democratic, then we're likely to see innovation, understanding and growth.  If it's priced out of reach to all but marketing and state interests, then an experience analogous to that of small-time stock traders today could become what the web at large looks like.</p>

<p>It's easy for technologists to say that this is progress and rejecting the advantages technology brings would demand a return to time before the abacus.  It's not so easy to explain why we have to take an all-or-nothing approach to judging technologies and their implications - why not look at them one at a time and evaluate them intelligently?  </p>

<p>Here's how the introduction of real time information is being debated regarding financial markets, followed by some thoughts about the analogous transformation going on around the web.</p>

<p>This isn't just a story about robot stock traders and the SEC; it's also a story about Twitter, Facebook and the Pushbutton Web.</p>

<h2>Robots in Financial Markets</h2>

<p>Last month the New York Times' Charles Duhigg wrote <a href="http://www.nytimes.com/2009/07/24/business/24trading.html">a high-profile story</a> about the practice of high frequency trading, including this juicy description of the practice:<br>
<blockquote>Powerful algorithms -- "algos," in industry parlance -- execute millions of orders a second and scan dozens of public and private marketplaces simultaneously. They can spot trends before other investors can blink, changing orders and strategies within milliseconds.</blockquote></p>

<p>High-frequency traders often confound other investors by issuing and then canceling orders almost simultaneously. Loopholes in market rules give high-speed investors an early glance at how others are trading. And their computers can essentially bully slower investors into giving up profits -- and then disappear before anyone even knows they were there.</p>

<p>Rich Miller, writing at <a href="http://www.datacenterknowledge.com/archives/2009/07/24/nytimes-examines-low-latency-trading/">Data Center Knowledge</a>, a blog that tracks the powerful computers that high frequency traders (among many other industries) use, called the article one-sided and inconsiderate of the argument that "this activity provides liquidity to execute trades that would otherwise not be possible, making the market more efficient."  He also said the press was widening the debate over the practice by bringing it into the mainstream.</p>

<p>Now U.S. Senator Charles E. Schumer (D-NY) has sent <a href="http://schumer.senate.gov/new_website/record.cfm?id=316252&amp;">a letter to the SEC</a> this week, calling for action to be taken against the practice of flash trading in particular, the act of selling for a fee access to trading information milliseconds before it is otherwise available.  He argues that the practice "creates a two-tiered system where a privileged group of insiders receives preferential treatment, depriving others of a fair price for their transactions.  If allowed to continue, these practices will undermine the confidence of ordinary investors, and drive them away from our capital markets."</p>

<p>Schumer focuses on the early access to information, but always in the context of the computer-driven trading that occurs based on it.</p>

<p>Trader John Hempton <a href="http://brontecapital.blogspot.com/2009/07/high-frequency-traders-phoney.html">writes</a> that critics over-estimate the financial impact of flash traded stock, needlessly complicating a situation that he describes with the following, fascinating, story:<br>
<blockquote>We trade electronically at our fund. We were recently trading in a stock with a large spread. I have changed the numbers so as not to identify the stock - but the ratios are about right. The bid was about 129.50, offer was about 131.50. We did not want to cross the spread - so when we bid for the stock we bid $129.55. Within a second a computer (possibly at our own broker but it makes no difference which broker) bid $129.60 for a few hundred shares. We fiddled for a while changing our bid and watching the bot change theirs. We would have loved to think we were frustrating the computer - but alas it was just a machine - and we were people up late at night.</blockquote></p>

<p>Actually obtaining the stock required that we paid up - and when we did so it was probably a computer that sold the stock to us.</p>

<p>...It is always there - even when buying defaulted debt that trades once per month. We simply ALWAYS find the bot. </p>

<h2>What About Real-time Robots on the Web?</h2>

<p>Could the real time web give some people such an unfair advantage over everyone else that non-early adopters of new technologies or people outside of marketing firms could be left out in the cold?  Presuming we're talking about important, actionable information online and not just real-time chat and fun - it's possible.  The question is: will the most important parts of the real time web be open and democratized, or proprietary and shared only with those who can pay a high price for access?  That question hasn't been answered yet.</p>

<p>If you were among the people who purchased the new <a href="http://www.bnonews.com/">Breaking News Online (BNO)</a> iPhone app (released an eternity ago, <a href="http://www.readwriteweb.com/archives/breaking_news_online_the_iphone_app_is_live_worth.php">yesterday!</a>) then today you probably found out about the two US journalists being freed from North Korea and the shooting in Pennsylvania at least 45 minutes before almost anyone else did. (CNN posted a link to local PA news 45 minutes after the BNO network published.)  That notification system costs $1.99 to purchase and $1 per month to stay subscribed.</p>

<p>If you've visited Yahoo's social-bookmarking turned real-time news service <a href="http://delicious.com">Delicious</a> since this morning, you've seen that hot news links are now found not just by vote counting, but with <a href="http://www.readwriteweb.com/archives/delicious_reborn_as_real_time_news_tracker.php">a new method</a> augmented by tracking the open, rapid conversations on Twitter.</p>

<p>These are innovations built out of elbow grease and publicly available feeds of data.  Yahoo might be, but the scrappy guys at Breaking News Online definitely aren't, using software something like <a href="http://www.nytimes.com/2009/05/21/technology/business-computing/21stream.html?partner=rss&amp;emc=rss">IBM's new stream processing software</a>, for which it will charge "at least" hundreds of thousands of dollars.</p>

<p>No, this real-time public web is very low cost and increasingly both open sourced and decentralized.  It's akin to what Anil Dash calls <a href="http://dashes.com/anil/2009/07/the-pushbutton-web-realtime-becomes-real.html">the pushbutton web</a>.</p>

<blockquote>Pushbutton is a name for what I believe will be an upgrade for the web, where any site or application can deliver realtime messages to a web-scale audience, using free and open technologies at low cost and without relying on any single company like Twitter or Facebook. The pieces of this platform have just come together to enable a whole set of new features and applications that would have been nearly impossible for an average web developer to build in the past.</blockquote>

<p>As long as it's open and low cost, real time information on the web should be as democratic and fair as computer use is.  It's not perfect, but it's no longer the David and Goliath-on-steroids fight that critics of high frequency stock trading say that market has become because of real time stock data.</p>

<h2>The Risk: Facebook</h2>

<p>The real time web is a shimmering mass of conversation and data, but there's no guarantee that it's going to stay open, free and democratic forever.  Already, in fact, there's no bigger river of the real time <em>social</em> web than Facebook.  Facebook is simply huge, it holds huge sums of information and so far it allows aggregate access to no one.  As far as we know.  </p>

<p>If Facebook, or some other equally important site of the real time web, began offering access to its data but pricing mere mortals out of that market - then we could have a situation where individual software developers and social scientists were like grandpa reading the stock pages in the newspaper and huge marketing firms and government agencies had the kind of advantage that high frequency traders are alleged to have in financial markets.</p>

<p>Anil Dash puts it this way:<br>
<blockquote>Pushbutton technologies are not just free and open, they're decentralized, which is a serious threat to the "lobster trap" model of social software. We can expect serious competition from the centralized networks that are currently building these sorts of systems. If a threat arises to Pushbutton's adoption, this is the most likely source. Worry? Definitely.</blockquote></p>

<p>In addition to development concerns, there are also analysis concerns.  If stock trading equals liquidity and knowledge is the new currency, then open access to aggregate data could be the equivalent of high-powered stock-trading tools for all instead of for just the already-richest few.</p>

<p>Some research has already been performed on the connection between communication on social networks and real-world events.  The Information and Language Processing Systems Informatics Institute at the University of Amsterdam, for example, <a href="http://www.tiara.org/lj_bib.html#moods">correlated mood messages</a> on <a href="http://livejournal.com">LiveJournal</a> closely with world events.  ("Mass increase in the level of worriedness around major weather phenomena, such as hurricane Katrina on August 29, 2005 - Excitedness around global media and culture events, such as the release of a new Harry Potter book on July 15, 2005 - Mass increase in the level of distress and sadness after terror attacks, as witnessed by the response to the London bombings on July 7, 2005.")</p>

<p>Analysis of real time mass communication could lead to a world of innovation and understanding - if that communication is an open fire hose of data and not shared only with deep pocketed commercial partners.</p>

<h2>Everything is Complicated, Some Can Afford to Ponder It</h2>

<p>Is high frequency, low latency, computer executed, "flash" trading unfair?  It must feel that way to individual and small investors who can't afford killer number-crunching robots - but it's also pretty awesome technology and is said to provide liquidity that the markets depend on.</p>

<p>Could the real time consumer web be made undemocratic by being priced out of reach for edge-case developers and social scientists outside of government and the corporate world? That could happen.  </p>

<p>As we speak, though, there's a lot of innovation going on in the real time web that's open, based on standards and available to all of us.  Let's hope it stays that way</p>

<p></p>

<p></p>

<p></p>

<p><br>
</p>
<strong><a href="http://www.readwriteweb.com/archives/could_real_time_information_be_an_unfair_advantage.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%2Farchives%2Fcould_real_time_information_be_an_unfair_advantage.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=rEfc_t4x6NM:nmOIhsBnoww:JzerP2ZdMrc"><img src="http://feeds.feedburner.com/~ff/readwriteweb?d=JzerP2ZdMrc" border="0"> </a> <a href="http://feeds.feedburner.com/~ff/readwriteweb?a=rEfc_t4x6NM:nmOIhsBnoww:Ij26kaj3iuU"><img src="http://feeds.feedburner.com/~ff/readwriteweb?d=Ij26kaj3iuU" border="0"> </a> <a href="http://feeds.feedburner.com/~ff/readwriteweb?a=rEfc_t4x6NM:nmOIhsBnoww:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/readwriteweb?d=yIl2AUoC8zA" border="0"> </a> <a href="http://feeds.feedburner.com/~ff/readwriteweb?a=rEfc_t4x6NM:nmOIhsBnoww:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/readwriteweb?i=rEfc_t4x6NM:nmOIhsBnoww:V_sGLiPBpWU" border="0"> </a> <a href="http://feeds.feedburner.com/~ff/readwriteweb?a=rEfc_t4x6NM:nmOIhsBnoww:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/readwriteweb?i=rEfc_t4x6NM:nmOIhsBnoww:gIN9vFwOqvQ" border="0"> </a> <a href="http://feeds.feedburner.com/~ff/readwriteweb?a=rEfc_t4x6NM:nmOIhsBnoww:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/readwriteweb?i=rEfc_t4x6NM:nmOIhsBnoww:F7zBnMyn0Lo" border="0"> </a> <a href="http://feeds.feedburner.com/~ff/readwriteweb?a=rEfc_t4x6NM:nmOIhsBnoww:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/readwriteweb?d=qj6IDK7rITs" border="0"> </a> <a href="http://feeds.feedburner.com/~ff/readwriteweb?a=rEfc_t4x6NM:nmOIhsBnoww:OqabYuBsmOY"><img src="http://feeds.feedburner.com/~ff/readwriteweb?d=OqabYuBsmOY" border="0"> </a>
</div><img src="http://feeds.feedburner.com/~r/readwriteweb/~4/rEfc_t4x6NM" border="0"> <br><br><a href="http://www.filome.com/key/web">web</a> <a href="http://search.twitter.com/search?q=%22web%22"><img src="http://www.filome.com/images/summize.gif" border="0"></a> <a href="http://www.filome.com/key/web.rss"><img src="http://www.filome.com/images/c4_rss_tiny.jpg" border="0"></a>  <a href="http://www.filome.com/key/real">real</a> <a href="http://search.twitter.com/search?q=%22real%22"><img src="http://www.filome.com/images/summize.gif" border="0"></a> <a href="http://www.filome.com/key/real.rss"><img src="http://www.filome.com/images/c4_rss_tiny.jpg" border="0"></a>  <a href="http://www.filome.com/key/stock">stock</a>  <a href="http://search.twitter.com/search?q=%22stock%22"><img src="http://www.filome.com/images/summize.gif" border="0"></a> <a href="http://www.filome.com/key/stock.rss"><img src="http://www.filome.com/images/c4_rss_tiny.jpg" border="0"></a>  <a href="http://www.filome.com/key/trading">trading</a> <a href="http://search.twitter.com/search?q=%22trading%22"><img src="http://www.filome.com/images/summize.gif" border="0"></a> <a href="http://www.filome.com/key/trading.rss"><img src="http://www.filome.com/images/c4_rss_tiny.jpg" border="0"></a>  <a href="http://www.filome.com/key/open">open</a> <a href="http://search.twitter.com/search?q=%22open%22"><img src="http://www.filome.com/images/summize.gif" border="0"></a> <a href="http://www.filome.com/key/open.rss"><img src="http://www.filome.com/images/c4_rss_tiny.jpg" border="0"></a>  <br><br>Tags: <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