<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>the Idea Shower</title>
	
	<link>http://www.ideashower.com</link>
	<description>A launchpad for new ideas for the web</description>
	<pubDate>Wed, 24 Jun 2009 20:24:53 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/IdeaShower" type="application/rss+xml" /><feedburner:emailServiceId>IdeaShower</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>How to Make Simple Cross-Domain Ajax Requests With Responses</title>
		<link>http://feedproxy.google.com/~r/IdeaShower/~3/epfIxiQN6FA/</link>
		<comments>http://www.ideashower.com/our_solutions/how-to-make-simple-cross-domain-ajax-requests-with-responses/#comments</comments>
		<pubDate>Wed, 24 Jun 2009 20:22:19 +0000</pubDate>
		<dc:creator>Nate Weiner</dc:creator>
		
		<category><![CDATA[Solutions]]></category>

		<category><![CDATA[Ajax]]></category>

		<category><![CDATA[javascript]]></category>

		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.ideashower.com/?p=257</guid>
		<description><![CDATA[For Read It Later for the iPhone, I built a &#8216;Tap to Save&#8217; bookmarklet for Mobile Safari.  When using Tap to Save, instead of opening a link when clicked, the link is saved to a user&#8217;s reading list.  This makes it easy to save a few links from a web page without having to open [...]]]></description>
			<content:encoded><![CDATA[<p>For <a href="http://readitlaterlist.com/iphone/">Read It Later for the iPhone</a>, I built a <a href="http://readitlaterlist.com/iphone/upgrade/">&#8216;Tap to Save&#8217; bookmarklet for Mobile Safari</a>.  When using Tap to Save, instead of opening a link when clicked, the link is saved to a user&#8217;s reading list.  This makes it easy to save a few links from a web page without having to open each one individually.</p>
<p>The problem I came across however was I could not do an ajax request to send the link to the Read It Later server because cross-domain browser restrictions.</p>
<p>I could use an iframe to send the request, but again because of cross-domain issues, I would not be able to retrieve a response from inside of it.  After the request was sent, there were 3 possible outcomes: Success, the user needs to login, or there was a problem saving.</p>
<p>The method that eventually dawned on me is rather hackish, but it works none-the-less.  It provides a way to send a request to any domain and get a basic response.</p>
<p><strong>The solution:</strong> Images are not subject to cross domain restrictions.  So load an &#8216;image&#8217; with a get string that hits a script on the server and then returns an different sized image per possible outcome.</p>
<p>If that makes absolutely no sense, let me try to illustrate with an example that provides a response with two options: success/failure.</p>
<h4>Starting the Request: (Javascript: Client Side)</h4>
<div class="code">
<p>// Load an image pointing to your script<br />
ajaxImg = new Image();<br />
ajaxImg .src = &#8216;http://myserver.com/script.php?myvariables=1&amp;foo=bar&#8217;;<br />
document.body.appendChild(ajaxImg);</p>
<p>// Start a timer to check if the image has loaded<br />
ajaxTimer = setInterval(&#8217;isImageLoaded()&#8217;, 250);</p>
</div>
<h4>Handling the Request (Server Side):</h4>
<p>The image is now loading this script:</p>
<div class="code">
<pre>
&lt;?php

/* ... do your request processing here ... */

// Based on the result of the script, we either return a
// 1px wide image (in the case of success) or
// 2px wide image (in the case of failure)
// you'll need to create these images yourself

if ($success) {
        $file = file_get_contents( '1x1.gif' );
} else {
        $file = file_get_contents( '2x1.gif' );
}

// output the image
$length = strlen($file);
header('Last-Modified: '.date('r'));
header('Accept-Ranges: bytes');
header('Content-Length: '.$length);
header('Content-Type: image/gif');
print($file);

?&gt;
</pre>
</div>
<h4>Handling the Response: (Javascript: Client Side)</h4>
<p>
Back on the javascript side of things, we have our ajaxTimer checking to see if the image is loaded.  Once the image loads, we&#8217;ll check the width.
</p>
<div class="code">
<pre>

function isImageLoaded() {
     if (ajaxImg.complete) {

         var w = ajaxImg.width;
         if (w == 1) {
              alert('Success!');
         } else if (w == 2) {
             alert('Failed!');
         }

         // Hide the image (even though you probably won't see it
        ajaxImg.style.display = 'none';

        // Stop the timer
        clearInterval(ajaxTimer);

     }
}
</pre>
</div>
<h4>Simple Works Best</h4>
<p>As you can see, this works well if you only have a few possible outcomes of the transaction or if you do not need to return a literal response like generated markup.  </p>
<h4>IE Woes</h4>
<p>Surprisingly, this DOES work in IE6 and IE7, however there is a little bit of extra work.  The url of the request you load into the src of the image has to have .gif in it.  For example: &#8217;script.php&#8217; won&#8217;t work, but &#8217;script.gif&#8217; will.  So to make this work you&#8217;ll need to add an Htaccess rewrite rule to redirect the script.gif to your script.php file.</p>
<div class="code">
RewriteRule ^script.gif$ script.php [QSA=%{QUERY_STRING}]
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.ideashower.com/our_solutions/how-to-make-simple-cross-domain-ajax-requests-with-responses/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.ideashower.com/our_solutions/how-to-make-simple-cross-domain-ajax-requests-with-responses/</feedburner:origLink></item>
		<item>
		<title>Read It Later iPhone App Released</title>
		<link>http://feedproxy.google.com/~r/IdeaShower/~3/phB5F77xSyw/</link>
		<comments>http://www.ideashower.com/blog/read-it-later-iphone-app-released/#comments</comments>
		<pubDate>Thu, 09 Apr 2009 01:04:36 +0000</pubDate>
		<dc:creator>Nate Weiner</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<category><![CDATA[iPhone]]></category>

		<category><![CDATA[iPod Touch]]></category>

		<category><![CDATA[Read It Later]]></category>

		<guid isPermaLink="false">http://www.ideashower.com/?p=245</guid>
		<description><![CDATA[I am very excited to announce that Read It Later has come to the iPhone and iPod Touch and is now available in the App Store. » Get the Details
90 Second Demo Video

]]></description>
			<content:encoded><![CDATA[<p>I am <strong>very</strong> excited to announce that Read It Later has come to the iPhone and iPod Touch and is now available in the App Store.<a style="font-size:15px;font-weight:bold;" href="http://readitlaterlist.com/iphone/"> » Get the Details</a></p>
<h3>90 Second Demo Video</h3>
<div style="text-align:center"><object width="480" height="385" data="http://www.youtube.com/v/S66JkuwTeNA&amp;hl=en&amp;fs=1&amp;rel=0&amp;color1=0x3a3a3a&amp;color2=0x999999" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/S66JkuwTeNA&amp;hl=en&amp;fs=1&amp;rel=0&amp;color1=0x3a3a3a&amp;color2=0x999999" /><param name="allowfullscreen" value="true" /></object></div>
]]></content:encoded>
			<wfw:commentRss>http://www.ideashower.com/blog/read-it-later-iphone-app-released/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.ideashower.com/blog/read-it-later-iphone-app-released/</feedburner:origLink></item>
		<item>
		<title>LiftSift</title>
		<link>http://feedproxy.google.com/~r/IdeaShower/~3/JaKLL6fP_RI/</link>
		<comments>http://www.ideashower.com/ideas/launched/liftsift/#comments</comments>
		<pubDate>Wed, 17 Dec 2008 22:01:28 +0000</pubDate>
		<dc:creator>Nate Weiner</dc:creator>
		
		<category><![CDATA[Launched]]></category>

		<guid isPermaLink="false">http://www.ideashower.com/?p=217</guid>
		<description><![CDATA[LiftSift is a light-weight tool made to discover a user's perfect skiing destination based lift-ticket price, vertical, distance, and a number of other options.]]></description>
			<content:encoded><![CDATA[<ul class="feature_list">
<li><strong>View Prices</strong> of lift tickets at mountains/hills worldwide.</li>
<li><strong>Filter</strong> based on price, vertical, distance and other factors</li>
<li><strong>Sort</strong> based on many factors</li>
<li><strong>Community Editable</strong> Prices and resort information is fully editable by the community.</li>
</ul>
<h3>Overview</h3>
<p><a href="http://liftsift.com">LiftSift </a>is a light-weight tool made to discover a user&#8217;s perfect skiing destination based lift-ticket price, vertical, distance, and a number of other options.</p>
<h3>How It Came to Be</h3>
<p>While trying to plan a ski trip with some friends I realized that there was no simple way to get an overall view of all the resorts in the US and what their prices were.  This meant that I&#8217;d have to first know of a resort, then Google it and look through their website.  Or at least pick a region, then drill down by state -&gt; resort -&gt; price.  Either way, both approaches were very slow.</p>
<p>I wanted it the other way around.  I wanted to be able to see what places had the best prices and I wanted to be able to filter out the small hills (&lt;1000ft).  On top of that, I did not want to have to be limited to only the resorts I had heard of.</p>
<p>So instead, I spent a Sunday afternoon putting together the site and hand entering data and LiftSift was born.<img class="float_right" style="margin-top:10px" src="http://ideashower.com/i/posts/217-filters.gif" alt="" /></p>
<h3>Narrow It Down</h3>
<p>LiftSift is dead simple, so there is not much more to explain!  Open it up and move some sliders around.  It&#8217;s easy to sift through the list.</p>
<p>Say you want to find a ski resort with at least 2000 ft of vertical, within a day&#8217;s driving distance for under $70 a day?  No problem.</p>
<p>Drag the price slider to show $0 -&gt; $70, the vertical slider to 2000 ft+ and the distance slider to 0 miles -&gt; 800 miles.  The list will automatically update to show you your options.</p>
<h3 style="clear">Contribute</h3>
<p>Data is fully editable by any user.  Feel free to submit a new location or edit an existing one.</p>
<div style="padding-top:10px"><img src="http://ideashower.com/i/posts/217-screen.gif" alt="" /></div>
]]></content:encoded>
			<wfw:commentRss>http://www.ideashower.com/ideas/launched/liftsift/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.ideashower.com/ideas/launched/liftsift/</feedburner:origLink></item>
		<item>
		<title>Read It Later 0.99 Released</title>
		<link>http://feedproxy.google.com/~r/IdeaShower/~3/QKy7LgLMrAY/</link>
		<comments>http://www.ideashower.com/blog/read-it-later-099-released/#comments</comments>
		<pubDate>Wed, 29 Oct 2008 21:12:33 +0000</pubDate>
		<dc:creator>Nate Weiner</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<category><![CDATA[Firefox]]></category>

		<category><![CDATA[Read It Later]]></category>

		<guid isPermaLink="false">http://www.ideashower.com/?p=199</guid>
		<description><![CDATA[Sort By Quality with PostRank

Read It Later is a great tool for saving things to read later, but now it&#8217;s great for helping you actually READ those pages too!  By sorting your list by PostRank (from AideRss), you can quickly find what&#8217;s worth a read and start with your best content first.
Google Reader Integration

If you [...]]]></description>
			<content:encoded><![CDATA[<h3>Sort By Quality with PostRank</h3>
<p><img class="float_right" src="http://ideashower.com/i/posts/199-pr.gif" alt="" /><br />
Read It Later is a great tool for saving things to read later, but now it&#8217;s great for helping you actually READ those pages too!  By sorting your list by <a title="PostRank" href="http://postrank.com" target="_blank">PostRank </a>(from AideRss), you can quickly find what&#8217;s worth a read and start with your best content first.</p>
<h3>Google Reader Integration</h3>
<p><img class="float_right" src="http://ideashower.com/i/posts/199-gr.gif" alt="" /><br />
If you use Google Reader to manage your RSS feeds, you&#8217;ll now find the familiar Read It Later checkmark right next to the Google Reader star.  You can now save directly to your reading list from Google Reader!</p>
<h3>Customize Read It Later</h3>
<p><img class="float_right" src="http://ideashower.com/i/posts/199-appearance.gif" alt="" /><br />
Now you can take full advantage of all the features of Read It Later without the UI bloat.  Almost all of Read It Later&#8217;s components can be hidden and/or customized to your liking.  You can use all of the provided elements or even run Read It Later from a single 10&#215;10 icon in the location bar.</p>
<p>New Appearance Options:</p>
<ul>
<li>Choose between two list views (Normal and Condensed)</li>
<li>Open Read It Later in the sidebar</li>
<li>Select how many items to show per page</li>
<li>Use a scrollable list instead of a paged reading list</li>
<li>Enable/Disable Read It Later context menus and additional toolbar buttons</li>
</ul>
<h3>Updated Online Access</h3>
<p><img class="float_right" src="http://ideashower.com/i/posts/199-iphone.gif" alt="" /><br />
Read It Later isn&#8217;t just for Firefox anymore.  You can manage your list online at <a title="Read It Later" href="http://readitlaterlist.com">readitlaterlist.com</a> and use the provided bookmarklets to maintain Read It Later&#8217;s core functionality regardless of the browser you have.  So if you have Firefox at home, Internet Explorer at work and an Iphone in between, you won&#8217;t have any problem keeping your list up to date.</p>
<h3>Privacy Controls</h3>
<p>It&#8217;s your data.  It&#8217;s that simple.  You can now delete individual items from <a title="Read Later" href="http://readitlaterlist.com">Read It Later&#8217;s online storage</a> or even wipe your entire account.  And of course if you don&#8217;t want any of your list saved online you can still disable the online access and Read It Later will only save locally.</p>
<p>Additionally, you may now password protect your RSS feed to ensure privacy while still taking advantage of the online features.</p>
<h3>Improved Existing Features</h3>
<h4>Syncing</h4>
<p>A new syncing system has been implemented to provide stability and ensure your list stays up to date no matter how many computers you have.  Updated sync options and setup gives you easier control over your sync setup.</p>
<h4>Offline Mode</h4>
<p>You can now have Read It Later automatically save an offline copy of every page you add to your list.  And the new Offline Cache Manager will allow you to control/view what has been saved.</p>
<h4>Additional Updates</h4>
<ul>
<li>Firefox 3.1b compatibility</li>
<li>Full Ubuntu support</li>
<li>Option to control how &#8216;click-to-save&#8217; checkmarks appear</li>
<li>Option to hide the plaintext password inside the sync settings</li>
<li>Ability to select a Read It Later folder in the Bookmarks Toolbar</li>
<li>Improved foriegn characters support</li>
<li>Read It Later button can be ctrl/shift/middle clicked with the same behavior standard Firefox links</li>
<li>Option to close the current tab when saving a page</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.ideashower.com/blog/read-it-later-099-released/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.ideashower.com/blog/read-it-later-099-released/</feedburner:origLink></item>
		<item>
		<title>Read It Later Wins Mozilla’s Extend Firefox Competition</title>
		<link>http://feedproxy.google.com/~r/IdeaShower/~3/yW08EoO2F-E/</link>
		<comments>http://www.ideashower.com/blog/read-it-later-wins-mozillas-extend-firefox-competition/#comments</comments>
		<pubDate>Thu, 21 Aug 2008 20:57:36 +0000</pubDate>
		<dc:creator>Nate Weiner</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<category><![CDATA[Firefox]]></category>

		<category><![CDATA[Mozilla]]></category>

		<category><![CDATA[Read It Later]]></category>

		<guid isPermaLink="false">http://www.ideashower.com/?p=178</guid>
		<description><![CDATA[
On August 2nd 2007, just over a year ago, I walked through a little tutorial on how to make a Firefox Extension.  It was that night I started working on an idea of mine, Read It Later.
I &#8216;released&#8217; Read It Later a few days later on the 6th.  I say &#8216;released&#8217; because all I did [...]]]></description>
			<content:encoded><![CDATA[<p><img class="float_right" src="http://ideashower.com/i/posts/175-labs.jpg" alt="" /><br />
On August 2nd 2007, just over a year ago, I walked through a <a title="Firefox Extension Tutorial" href="http://www.borngeek.com/firefox/toolbar-tutorial/" target="_blank">little tutorial</a> on how to make a Firefox Extension.  It was that night I started working on an idea of mine, Read It Later.</p>
<p>I &#8216;released&#8217; Read It Later a few days later on the 6th.  I say &#8216;released&#8217; because all I did was send it to a few friends and put an entry for it on my website, which was getting about 6 hits a day.</p>
<p>I had never expected Read It Later to reach even 1/4 of what it has.  It was created to help me keep track of articles that I wanted to read but couldn&#8217;t while I was at work.  However, during fall of last year, <a title="Read It Later on Lifehacker" href="http://lifehacker.com/software/featured-firefox-extension/save-a-link-for-later-with-read-it-later-322646.php" target="_blank">Lifehacker</a>, <a title="Read It Later on MakeUseOf" href="http://www.makeuseof.com/tag/build-an-online-reading-list-with-read-it-later/" target="_blank">MakeUseOf</a>, and <a title="Download Squad" href="http://www.downloadsquad.com/2007/11/09/read-it-later-firefox-add-on-of-the-day/" target="_blank">DownloadSquad</a> picked up on the add-on.</p>
<p>Since then Read It Later&#8217;s user base as been growing strong.</p>
<p>But during this past year, I&#8217;ve learned one very important thing about application development: listen to your users.  Luckily, my users talk a LOT.  I mean there are over 700 comments on the <a href="/ideas/launched/read-it-later">Read It Later project page</a>.  There are so many it&#8217;s almost unmanageable (working on a new solution for this, look out in Sept).  You guys have provided some amazing feedback and suggestions and without it, Read It Later would be nothing.</p>
<p>The first version of Read It Later was two (obscenely large) buttons with  limited functionality and control.  Over the past year I worked hard with users  to make it better.  Because of all of the user feedback and suggestions, I was  able to release Read It Later for Firefox 3, which was a huge improvement  from the original version.   I&#8217;m honored today that Mozilla Labs has awarded <a title="Read It Later Firefox Extension" href="http://labs.mozilla.com/2008/08/extend-firefox-3-contest-winners/" target="_blank">Read  It Later as a Best Updated Add-on</a> in the Extend Firefox 3 Competition.</p>
<p>So this is thanks to all of you who have emailed me, left comments, submitted translations, answered questions, beta tested, and worked with me one on one resolving bugs.  Read It Later couldn&#8217;t have done it without you!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ideashower.com/blog/read-it-later-wins-mozillas-extend-firefox-competition/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.ideashower.com/blog/read-it-later-wins-mozillas-extend-firefox-competition/</feedburner:origLink></item>
		<item>
		<title>Another Batch of Read It Later Updates!</title>
		<link>http://feedproxy.google.com/~r/IdeaShower/~3/zcOrcaM8_Jg/</link>
		<comments>http://www.ideashower.com/blog/read-it-later-0-98/#comments</comments>
		<pubDate>Wed, 30 Jul 2008 18:06:44 +0000</pubDate>
		<dc:creator>Nate Weiner</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<category><![CDATA[Extension]]></category>

		<category><![CDATA[Firefox]]></category>

		<category><![CDATA[Read It Later]]></category>

		<category><![CDATA[Update]]></category>

		<guid isPermaLink="false">http://www.ideashower.com/?p=137</guid>
		<description><![CDATA[
Make a Suggestion!
As you can see (by the users listed below who made each implemented suggestion), I take user suggestions very seriously.
If you have an idea on how to improve Read It Later (big or small), please let me know!
The Big Ones:
Online Access - Manage your list online, in any browser or mobile device.  In [...]]]></description>
			<content:encoded><![CDATA[<div class="sidebox">
<h4>Make a Suggestion!</h4>
<p>As you can see (by the users listed below who made each implemented suggestion), I take user suggestions very seriously.</p>
<p>If you have an idea on how to improve Read It Later (big or small), please <a href="http://readitlaterlist.com/suggest">let me know</a>!</div>
<h3>The Big Ones:</h3>
<p><strong>Online Access</strong> - Manage your list online, in any browser or mobile device.  In Safari, Internet Explorer, or an iPhone.  Click the &#8216;Access Anywhere&#8217; link at the top of your reading list for more.</p>
<p><strong>Search</strong> - The tag dropdown has been replaced with a search-as-you-type field.  It will search through the titles, urls, and tags of the items in your Reading List.<br />
<em>Suggested By: Zeke, Praveen</em></p>
<p><strong>Auto-Syncing </strong>- For those of you who forgot to sync your reading list before heading home after work, now you won&#8217;t have to.  If you are using sync, Read It Later will automatically sync your list in the background after starting up and every few hours afterwards.<br />
<em>Suggested By: bds, James, Rob, How to Geek</em></p>
<div><img src="http://ideashower.com/i/posts/137-list.jpg" alt="" align="middle" /></div>
<h3>More Options to Customize Read It Later:</h3>
<p><strong>Improved Options screen </strong>- The options dialog got a revamp and brings better organization to your preferences.</p>
<p><strong>Unread Items Counter </strong>- View the number of items in your reading list.<br />
<em>Suggested By: the non hacker, rayphua</em></p>
<p><strong>Auto Mark as Read</strong> - You can now set Read It Later to mark pages as read after opening them.<br />
<em>Suggested By: Wayne, the non hacker, Sergio Santos</em></p>
<p><strong>Auto Tags</strong> - Set custom tags to be added to every page you save.<br />
<em>Suggested By: Raydancer, Ken</em></p>
<p><strong>Click to Save Button</strong> - An optional button can be added to your status bar to activate Click to Save Mode without a keyboard shortcut.<br />
<em>Suggested By: Wayne, Todd</em></p>
<p><strong>Custom Keyboard Shortcuts</strong> - You can now customize your keyboard shortcuts to any combo you like, not just ALT.<br />
<em>Suggested By: Mike Harris</em></p>
<p><img src="http://ideashower.com/i/posts/137-options.jpg" alt="" align="middle" /></p>
<h3>The Small Stuff:</h3>
<p><strong>Read Offline Improvements</strong> - When you are offline, items that have not been saved for offline viewing will appear dimmed out.<br />
<em>Suggested By: Praveen</em></p>
<p><strong>Empty Titles</strong> - Pages without titles will be replaced with their url.<br />
<em>Suggested By: Dan Gale Rosen</em></p>
<p><strong>More Languages</strong> - With help of the translation team (made up entirely of Read It Later users), Read It Later is continuing to be localized in more and more languages.  <a href="http://www.babelzilla.org/index.php?option=com_wts&amp;Itemid=88&amp;extension=3947&amp;type=lang">Want to help?</a></p>
<h3>Where to Get This Version (0.9810)</h3>
<p><a href="http://readitlaterlist.com">Get Read It Later!</a></p>
<h3>What&#8217;s Next?</h3>
<p>Read It Later will officially be striped of it&#8217;s Beta suffix after one more big set of updates.  I&#8217;m very excited for what I&#8217;ve got planned in the coming update, it will take Read It Later full circle.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ideashower.com/blog/read-it-later-0-98/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.ideashower.com/blog/read-it-later-0-98/</feedburner:origLink></item>
		<item>
		<title>Read It Later for Firefox 3 Released!</title>
		<link>http://feedproxy.google.com/~r/IdeaShower/~3/Swo49K_If5Y/</link>
		<comments>http://www.ideashower.com/blog/read-it-later-for-firefox-3-released/#comments</comments>
		<pubDate>Tue, 17 Jun 2008 16:04:44 +0000</pubDate>
		<dc:creator>Nate Weiner</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<category><![CDATA[Firefox]]></category>

		<category><![CDATA[Read It Later]]></category>

		<guid isPermaLink="false">http://www.ideashower.com/?p=130</guid>
		<description><![CDATA[The new version of Read It Later with Firefox 3 support is now available!
Read It Later has been completely revamped and hosts a whole new bundle of features including built-in RSS feeds, syncing, offline reading, tagging, multi-language support and more.
You can read all about the new features and get a fresh copy on Read It [...]]]></description>
			<content:encoded><![CDATA[<p>The new version of Read It Later with Firefox 3 support is now available!</p>
<p>Read It Later has been completely revamped and hosts a whole new bundle of features including built-in RSS feeds, syncing, offline reading, tagging, multi-language support and more.</p>
<p>You can read all about the new features and get a fresh copy on <a title="Read It Later" href="http://www.ideashower.com/ideas/launched/read-it-later/">Read It Later&#8217;s project page</a>.</p>
<p>Here is the original demo updated to show the new improvements.</p>
<div>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://www.youtube.com/v/mLNfsLpM8zo&amp;hl=en&amp;rel=0" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/mLNfsLpM8zo&amp;hl=en&amp;rel=0"></embed></object></p>
<h3>Most Importantly: Thank YOU!</h3>
<p>The newest version of Read It Later is all thanks to you.  The feedback I&#8217;ve received has been nothing short of phenomenal.  Almost of the new features have come directly from the comments and emails I&#8217;ve received from the community.  It would not be what it is without you, so keep it up!</p>
<h4>Special Thanks to Those Who Helped Beta Test and Translate</h4>
<p>The new version of Read It Later has support for multiple languages (with some more I haven&#8217;t added into the install yet).  The translations were done generously by Read It Later users from around the globe.  What can I say, Read It Later users are simply awesome.</p>
<p>Thanks to the translators:</p>
<ul>
<li><a href="http://rulix.org/">Ruslan Gordeev</a> - Russian</li>
<li><a href="http://passpack.com">Tara Kelly</a> - Italian</li>
<li><a href="http://blog.ashchan.com/">James Chan</a> - Chinese</li>
<li>Thierry Haffner, <a href="http://nightstrike.wordpress.com/">Dan Gale Rosen</a> - French</li>
<li><a href="http://www.eggrage.co.uk/">John O&#8217;Nolan</a> - Dutch</li>
<li><a href="http://techmalaya.com/">Syahid A.</a> - Malay</li>
<li><a href="http://notaniche.com/">Alex Frison</a>, <a href="http://www.Takealook-inside.de">Franka Kozelnik</a> - German</li>
<li><a href="http://www.nishith.in/">Nishith Nand</a> - Hindi</li>
<li>Haggai Philip Zagury - Hebrew</li>
<li><a href="http://www.chuchusays.com ">Teo Kim</a> - Korean</li>
<li><a href="http://embeemb.blogspot.com/">Embee</a> - Arabic</li>
<li>Adam Kursnierz - Polish</li>
</ul>
</div>
<div>Thanks to the Beta Testers:</div>
<div>
<ul>
<li><a href="http://digg.com/users/MikeonTV/history/submissions/">MikeOnTv </a></li>
<li><a href="http://www.betterthantherapy.net/">Mark O&#8217;Neill</a></li>
<li><a href="http://nightstrike.wordpress.com/">Dan Gale Rosen</a></li>
<li><a href="http://berkshier.net/">Glenn Berkshier</a></li>
<li><a href="http://ewingcreative.com">Ed Ewing</a></li>
<li><a href="http://Belltowernews.com">Serge Rett</a></li>
<li><a href="http://john.mort.net/">John Mort</a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.ideashower.com/blog/read-it-later-for-firefox-3-released/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.ideashower.com/blog/read-it-later-for-firefox-3-released/</feedburner:origLink></item>
		<item>
		<title>Idea Shower and Services Downtime</title>
		<link>http://feedproxy.google.com/~r/IdeaShower/~3/Z8qBduksbYU/</link>
		<comments>http://www.ideashower.com/blog/idea-shower-and-services-downtime/#comments</comments>
		<pubDate>Mon, 02 Jun 2008 17:07:41 +0000</pubDate>
		<dc:creator>Nate Weiner</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.ideashower.com/?p=125</guid>
		<description><![CDATA[
As some of you may or may not know, one of The Planet’s datacenters had a transformer explode, knocking out power to thousands of servers and websites.
The Idea Shower’s servers were among the lucky bunch.
I’ve moved the site onto a temporary server but some sites may be slow and may not be fully function until [...]]]></description>
			<content:encoded><![CDATA[<div class="entry">
<p>As some of you may or may not know, one of The <strong style="color: black; background-color: #99ff99;">Planet</strong>’s datacenters had a transformer explode, knocking out power to thousands of servers and websites.</p>
<p>The Idea Shower’s servers were among the lucky bunch.</p>
<p>I’ve moved the site onto a temporary server but some sites may be slow and may not be fully function until tomorrow.</p>
<p>Stay tuned.</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.ideashower.com/blog/idea-shower-and-services-downtime/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.ideashower.com/blog/idea-shower-and-services-downtime/</feedburner:origLink></item>
		<item>
		<title>What Will the Web See When You Die?</title>
		<link>http://feedproxy.google.com/~r/IdeaShower/~3/b7tP-tJcOWw/</link>
		<comments>http://www.ideashower.com/blog/what-will-the-web-see-when-you-die/#comments</comments>
		<pubDate>Tue, 29 Apr 2008 13:37:42 +0000</pubDate>
		<dc:creator>Nate Weiner</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<category><![CDATA[Blogging]]></category>

		<guid isPermaLink="false">http://www.ideashower.com/?p=120</guid>
		<description><![CDATA[A few weeks ago, High Society, a ski/snowboard company I&#8217;ve worked with over the years suffered a hard loss: we lost one of our team riders to a cliff drop that went tragically wrong.
Out of respect for his family, I will not be mentioning his real name here because I don&#8217;t want this post to [...]]]></description>
			<content:encoded><![CDATA[<p>A few weeks ago, High Society, a ski/snowboard company I&#8217;ve worked with over the years suffered a hard loss: we lost one of our team riders to a cliff drop that went tragically wrong.</p>
<p><em>Out of respect for his family, I will not be mentioning his real name here because I don&#8217;t want this post to appear in the search results for his name.  For the sake of the article I&#8217;m referring to him by the name &#8216;Tim&#8217;.<br />
</em></p>
<p>During the resulting media coverage I noticed a trend that caught my attention.</p>
<p>The day after his death, the opening sentence of an article from the Rocky Mountain News read:</p>
<p><em>&#8220;Aspen native and snowboarder [Tim} liked spinners, bonks and card tricks, according to one of his sponsors&#8217; Web sites.&#8221;</em></p>
<p>That website was ours.  And that line &#8217;spinners, bonks, and card tricks&#8217; was taken off of his profile page, which was the first page you&#8217;d find after Googling his name.</p>
<p>But here&#8217;s the thing.  There was a lot more to Tim than &#8217;spinners and bonks&#8217;.  He was a well respected rider and someone who had accomplished great things in his short life.  But you would not know this from the article.</p>
<p>It struck me that journalists are turning more and more to the web and social networks to dig up information about people for their stories.  It&#8217;s obvious that the author simply Google&#8217;d Tim&#8217;s name and took out the first bit of information he could find, no matter how trivial.</p>
<p>If you recall the Elliot Spitzer scandal, you may remember the same thing happened in that instance as well.  When the identity of Spitzer&#8217;s lady friend was discovered, media organizations were quoting her Myspace page and printing photos straight out of her profile.</p>
<p>Now, is that really fair?  Or more importantly, is that really journalism?  It seems that more journalists, in the effort to be the first to the press, are skipping the interviews of friends and families and turning more to finding out what they can on the web.</p>
<p>The reason I ask if it&#8217;s fair:  How many of you would like to have your legacy defined by what&#8217;s in your Facebook profile?<br />
<img src="http://ideashower.com/i/posts/119-fb.gif" class="float_right" /><br />
Take a look at the image on the right.  It&#8217;s an excerpt from my Facebook profile.  Like most of my friends profiles, it&#8217;s not exactly on the serious side.</p>
<p>I would hate to think that if I passed away tomorrow that the world would know me by:</p>
<p><em>&#8220;Minneapolis resident and programmer, Nate Weiner liked Rickrolling himself&#8230;&#8221;</em></p>
<p>And Tim&#8217;s profile on the High Society website?  It wasn&#8217;t serious.  It didn&#8217;t mention the things that really defined him.  None of the items that were listed there did his legacy any justice.</p>
<p>But why should it?  Should we be worried that if we put up a joke that others will take that as our character definition?  Or should we expect journalists to be more conscious of the type of content they are sourcing from?</p>
<p>If this is going to be the way it is, should we avoid joking around and keep our content strict?  </p>
<p>I would certainly hope not, but it begs the question, if people were to write about you today and used to the web to research you, what would they find?  And more importantly, would you want others to read it?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ideashower.com/blog/what-will-the-web-see-when-you-die/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.ideashower.com/blog/what-will-the-web-see-when-you-die/</feedburner:origLink></item>
		<item>
		<title>New Updates to Intwition</title>
		<link>http://feedproxy.google.com/~r/IdeaShower/~3/eyyDdjeWBmU/</link>
		<comments>http://www.ideashower.com/blog/new-updates-to-intwition/#comments</comments>
		<pubDate>Mon, 28 Apr 2008 21:23:55 +0000</pubDate>
		<dc:creator>Nate Weiner</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<category><![CDATA[Intwition]]></category>

		<category><![CDATA[Twitter]]></category>

		<category><![CDATA[Updates]]></category>

		<guid isPermaLink="false">http://www.ideashower.com/?p=119</guid>
		<description><![CDATA[I&#8217;ve made some new updates to the recently launched Twitter tool Intwition.
Story Titles
The first update was the biggest request: To resolve page titles, rather than just showing urls in the popular lists.  If you peek at the homepage and New Item Finder you&#8217;ll see this now in action.
Stories That Come to You
Second, you can now [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve made some new updates to the recently launched Twitter tool <a href="http://intwition.com">Intwition</a>.</p>
<p><strong>Story Titles</strong></p>
<p>The first update was the biggest request: To resolve page titles, rather than just showing urls in the popular lists.  If you peek at the <a href="http://intwition.com">homepage</a> and <a href="http://intwition.com/new.php">New Item Finder</a> you&#8217;ll see this now in action.</p>
<p><strong>Stories That Come to You</strong></p>
<p>Second, you can now have items that reach &#8216;popular&#8217; status sent to you via Twitter.  Just follow @<a href="http://twitter.com/Intwition">Intwition </a>and whenever a new story crops up, it&#8217;ll show up in your public timeline.<br />
<em>Also note you can also subscribe to the <a href="http://intwition.com/rss/">RSS for popular items</a>.</em></p>
<p><strong>Better Spam Filtering</strong></p>
<p>With anything of this nature, spam happens.  I&#8217;ve been tuning the algorithm to remove this from appearing on the home page and I&#8217;ve been having some good success.  There is still one big part I need to add to it, but you should not see much spam on the front page for now.</p>
<p>As always, your suggestions are greatly appreciated!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ideashower.com/blog/new-updates-to-intwition/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.ideashower.com/blog/new-updates-to-intwition/</feedburner:origLink></item>
	</channel>
</rss>
