
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Green Complexgoogle | Green Complex</title>
	<atom:link href="http://green.cx/tag/google/feed/" rel="self" type="application/rss+xml" />
	<link>http://green.cx</link>
	<description></description>
	<lastBuildDate>Fri, 23 Dec 2011 17:12:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Broken ms-files.php in WordPress corrupting images</title>
		<link>http://green.cx/web-resources/wordpress-web-resources/broken-ms-files-php-in-wordpress-corrupting-images/</link>
		<comments>http://green.cx/web-resources/wordpress-web-resources/broken-ms-files-php-in-wordpress-corrupting-images/#comments</comments>
		<pubDate>Sat, 10 Dec 2011 06:21:12 +0000</pubDate>
		<dc:creator>+Jason</dc:creator>
				<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[Nginx]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://green.cx/?p=2531</guid>
		<description><![CDATA[<img src="http://green.cx/wp-content/blogs.dir/1/category-images/77.original.png" width="659" height="87" alt="" title="Troubleshooting" /><br/>I upgraded nginx on my server and all was well, or so I thought&#8230;. (TL;DR at the bottom) Feeling good about my self I patted my back and went to bed. The next day I was writing a new post when after uploading a photo to WordPress it did not load in the editor. So after a [...]]]></description>
			<content:encoded><![CDATA[<img src="http://green.cx/wp-content/blogs.dir/1/category-images/77.original.png" width="659" height="87" alt="" title="Troubleshooting" /><br/><div id="attachment_1250" class="wp-caption alignleft" style="width: 160px"><a href="http://green.cx/files/2010/04/wordpress-logo.jpg"><img class="size-thumbnail wp-image-1250" title="wordpress-logo" src="http://green.cx/files/2010/04/wordpress-logo-150x150.jpg" alt="" width="150" height="150" /></a><p class="wp-caption-text">Wordpress 3.0 + Nginx </p></div>
<p>I upgraded nginx on my server and all was well, or so I thought&#8230;. (TL;DR at the bottom)</p>
<p>Feeling good about my self I patted my back and went to bed. The next day I was writing a new post when after uploading a photo to WordPress it did not load in the editor. So after a little struggling I figured out why non of the images from the /files/ directory in wordpress were working, but not until after I gave up trying to find the answer in Google.</p>
<p>I tried Googling all this to no avail: (Hopefully this will help some other Googler out there)</p>
<ul>
<li><strong>Ngnix not rewriting ms-files.php properly</strong></li>
<li>my nginx default conf for wordpress was faulty</li>
<li><strong>no errors in php for ms-files.php WPMU</strong></li>
<li><em><strong>ms-files.php corrupting images WPMU</strong></em></li>
<li>ms-files.php white (blank) screen of death</li>
</ul>
<div>After exhaustive rebuilding nginx config files for WordPress MU  I finally went back to poking at the blank screen&#8230;</div>
<div>When I loaded up Firefox I got &#8220;The image cannot be displayed because it contains errors&#8221; so I saved the file, and to my surprise is was actually a jpg full of data! And at first it looked fine, but as it turned out, is was incomplete. So I went back to Google and found a bug on the WordPress Core Trac Bug Reports.  <a title='Original Link: http://core.trac.wordpress.org/ticket/14730'  href="http://green.cx/?TieauOIL">http://core.trac.wordpress.org/ticket/14730</a></div>
<div>Eureka moment! As it turns out it was a known bug, by an unknown cause! I know mine was caused by upgrading nginx on ubuntu Lucid, and commenting out this line in fastcgi_prams config file. <em># fastcgi_param HTTPS $server_https;</em> It was added, and broke things so it was uneeded. But I think that as a side effect, it was truncating the output of ms-files.php.</div>
<div>TL;DR</div>
<div>So anyway the solution was a simple patch for ms-files.php to clear the buffers before and after reading the image file. (The entire patch is below, and goes at the very end of the file)</div>
<blockquote>
<div>
<table summary="Differences" cellspacing="0">
<thead>
<tr>
<th title="File wp-includes/ms-files.php"></th>
<td><em></em></td>
</tr>
</thead>
<tbody>
<tr>
<th>79</th>
<th>79</th>
<td>}</td>
</tr>
<tr>
<th>80</th>
<th>80</th>
<td></td>
</tr>
<tr>
<th>81</th>
<th>81</th>
<td>// If we made it this far, just serve the file</td>
</tr>
</tbody>
<tbody>
<tr>
<th></th>
<th>82</th>
<td><ins>ob_clean();</ins></td>
</tr>
<tr>
<th></th>
<th>83</th>
<td><ins>flush();</ins></td>
</tr>
</tbody>
<tbody>
<tr>
<th>82</th>
<th>84</th>
<td>readfile( $file );</td>
</tr>
</tbody>
<tbody>
<tr>
<th></th>
<th>85</th>
<td><ins>flush();</ins></td>
</tr>
</tbody>
<tbody>
<tr>
<th>83</th>
<th>86</th>
<td>?&gt;</td>
</tr>
</tbody>
</table>
</div>
</blockquote>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>]]></content:encoded>
			<wfw:commentRss>http://green.cx/web-resources/wordpress-web-resources/broken-ms-files-php-in-wordpress-corrupting-images/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NewTube? Youtube gets a facelift!</title>
		<link>http://green.cx/news/newtube-youtube-gets-a-facelift/</link>
		<comments>http://green.cx/news/newtube-youtube-gets-a-facelift/#comments</comments>
		<pubDate>Mon, 21 Nov 2011 23:00:15 +0000</pubDate>
		<dc:creator>+Jason</dc:creator>
				<category><![CDATA[Fun Stuff]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[Youtube]]></category>

		<guid isPermaLink="false">http://green.cx/?p=2521</guid>
		<description><![CDATA[<br/>Check out the new version of youTube before anyone else! It&#8217;s super easy, while in Google Chrome, press Ctrl+Shift+J and paste in this code (Cookie) document.cookie="VISITOR_INFO1_LIVE=ST1Ti53r4fU"; And bam! Refresh youtube.com and see all that the new version has to offer! I think it&#8217;s really cool, check out the screen shot below&#8230; Btw, in case you [...]]]></description>
			<content:encoded><![CDATA[<br/><p>Check out the new version of youTube before anyone else! It&#8217;s super easy, while in Google Chrome, press <strong>Ctrl+Shift+J and</strong> paste in this code (Cookie)</p>
<blockquote>
<pre>document.cookie="VISITOR_INFO1_LIVE=ST1Ti53r4fU";</pre>
</blockquote>
<p>And bam! Refresh youtube.com and see all that the new version has to offer!</p>
<p>I think it&#8217;s really cool, check out the screen shot below&#8230;</p>
<p>Btw, in case you want to go back, just clear your cookies!</p>
<pre><a href="http://green.cx/files/2011/11/NewTube.png"><img class="alignnone size-large wp-image-2522" title="NewTube" src="http://green.cx/files/2011/11/NewTube-600x402.png" alt="" width="600" height="402" /></a></pre>]]></content:encoded>
			<wfw:commentRss>http://green.cx/news/newtube-youtube-gets-a-facelift/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jason on Klout</title>
		<link>http://green.cx/web-resources/web-dev-resources/jason-on-klout/</link>
		<comments>http://green.cx/web-resources/web-dev-resources/jason-on-klout/#comments</comments>
		<pubDate>Sun, 25 Sep 2011 03:59:21 +0000</pubDate>
		<dc:creator>+Jason</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[Web Services]]></category>
		<category><![CDATA[Web Stuff]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[Klout]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://green.cx/?p=2480</guid>
		<description><![CDATA[<img src="http://green.cx/wp-content/blogs.dir/1/category-images/5.original.png" width="659" height="87" alt="" title="Web 2.0" /><img src="http://green.cx/wp-content/blogs.dir/1/category-images/20.original.png" width="659" height="87" alt="" title="Web Services" /><img src="http://green.cx/wp-content/blogs.dir/1/category-images/40.original.png" width="659" height="87" alt="" title="Web Stuff" /><br/>Have you ever wondered when you are posting a status update, tweet or sharing a link on Google+, how many people you are reaching out to? Well so were the guys that made Klout, a service that lets you measure your audience, their feedback, and creates a &#8220;Klout&#8221; score, from 1 to 100. But it [...]]]></description>
			<content:encoded><![CDATA[<img src="http://green.cx/wp-content/blogs.dir/1/category-images/5.original.png" width="659" height="87" alt="" title="Web 2.0" /><img src="http://green.cx/wp-content/blogs.dir/1/category-images/20.original.png" width="659" height="87" alt="" title="Web Services" /><img src="http://green.cx/wp-content/blogs.dir/1/category-images/40.original.png" width="659" height="87" alt="" title="Web Stuff" /><br/><p>Have you ever wondered when you are posting a status update, tweet or sharing a link on Google+, how many people you are reaching out to?<br />
Well so were the guys that made Klout, a service that lets you measure your audience, their feedback, and creates a &#8220;Klout&#8221; score, from 1 to 100.</p>
<p>But it doesn&#8217;t end at just measuring your reach. There is also benefits such as &#8220;Perks&#8221; which are exclusive products or experiences that you earn based on your influence. Like for example, I can get a Subway Oven Crisp Chicken Sub since my Klout score is above 40, but alas, they are all out at the moment. I suddenly don&#8217;t feel so impressed by my &#8220;41&#8243; Klout score. But then again, Keven Rose only has an 81, and he&#8217;s a celebrity.</p>
<p>But Perks aside, I think the best part about Klout is the self aware factor. Once you realize how to focus what you&#8217;re talking about, and see what topics trend better, you could really use this as a tool to hone in your online social skills. And that would translate to growing a larger audience, so while I personally am not in it for the &#8220;Perks&#8221; I&#8217;m watching my Klout score on a daily basis. I haven&#8217;t figured out how frequently it updates, but I can see that over the next few months it will have a positive impact on my blogging as my social consumption should increase. Speaking of which all this is making me hungry for a meatball and pepperoni sub&#8230;</p>
<p>Why not check me out on <a title='Original Link: http://klout.com/#/LarcenIII'  href="http://green.cx/?WYr03nTi">Klout </a><a href=" http://klout.com/#/LarcenIII"> http://klout.com/#/LarcenIII</a> and follow me on twitter. <a href="http://twitter.com/LarcenIII">http://twitter.com/LarcenIII</a> or Google Plus <a href="http://➸.ws/~fc5L1">http://➸.ws/~fc5L1</a></p>
<p><a href="http://green.cx/files/2011/09/Klout-Jason-41.png"><img class="size-large wp-image-2481 aligncenter" title="Klout Jason 41" src="http://green.cx/files/2011/09/Klout-Jason-41.png" alt="" width="600" height="143" /></a></p>
<p>P.S. I&#8217;m also a <a title='Original Link: http://www.stumbleupon.com/stumbler/LarcenIII/'  href="http://green.cx/?buQhp6pd">stumbler</a>!</p>]]></content:encoded>
			<wfw:commentRss>http://green.cx/web-resources/web-dev-resources/jason-on-klout/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google+ Multiple Account Login</title>
		<link>http://green.cx/guides/cheat-sheets/google-multiple-account-login/</link>
		<comments>http://green.cx/guides/cheat-sheets/google-multiple-account-login/#comments</comments>
		<pubDate>Wed, 20 Jul 2011 13:41:48 +0000</pubDate>
		<dc:creator>+Jason</dc:creator>
				<category><![CDATA[Cheat Sheets]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[Google+ Hacks]]></category>

		<guid isPermaLink="false">http://green.cx/?p=2439</guid>
		<description><![CDATA[<br/>TLDR at the bottom. So with the new switch Google&#8217;s initiated to accounts that use Google+ running with two accounts at once can be a pain because it forces you to log in with only one account at a time. Enter the multiple account login setting. It fixes this simple problem! Just click on settings in the [...]]]></description>
			<content:encoded><![CDATA[<br/><p><a href="http://green.cx/files/2011/07/Google+_logo.png"><img class="alignright size-full wp-image-2442" style="border-style: initial; border-color: initial;" title="Google+_logo" src="http://upload.wikimedia.org/wikipedia/commons/9/95/Google%2B_logo.png" alt="" width="330" height="100" /></a></p>
<p>TLDR at the bottom.</p>
<p>So with the new switch Google&#8217;s initiated to accounts that use Google+ running with two accounts at once can be a pain because it forces you to log in with only one account at a time. Enter the <em>multiple account login</em> setting. It fixes this simple problem! Just click on <em><strong>settings </strong></em>in the upper right hand corner, and then on <em><strong>Account Overview</strong></em> at the top of the list on the left. Then click <em><strong>Edit </strong></em>next to Multiple Sign In. You must check 4 boxes that show you what will change when you activate this feature, and then press <em><strong>save</strong></em>.</p>
<p style="text-align: right;">Special thanks to my awesome wife for turning in this tip!</p>
<p style="text-align: right;">&nbsp;</p>
<p><a href="http://green.cx/files/2011/07/Google-Multiple-Accounts-Login.png"><img class="size-large wp-image-2440 alignnone" title="Google-Multiple-Accounts-Login" src="http://green.cx/files/2011/07/Google-Multiple-Accounts-Login-600x419.png" alt="" width="600" height="419" /></a></p>
<p>&nbsp;</p>
<p><a href="http://green.cx/files/2011/07/Google-Multiple-Accounts-Activate.png"><img class="size-large wp-image-2441 alignnone" title="Google-Multiple-Accounts-Activate" src="http://green.cx/files/2011/07/Google-Multiple-Accounts-Activate-600x485.png" alt="" width="600" height="485" /></a></p>
<p><strong>TLDR;</strong></p>
<p><strong>Settings -&gt; Account Overview -&gt; Edit Multiple Signin -&gt; 4 Check Boxes -&gt; Save</strong></p>
<p>&nbsp;</p>
<p>&nbsp;</p>]]></content:encoded>
			<wfw:commentRss>http://green.cx/guides/cheat-sheets/google-multiple-account-login/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google+ Cheat Sheet</title>
		<link>http://green.cx/guides/google-cheat-sheet/</link>
		<comments>http://green.cx/guides/google-cheat-sheet/#comments</comments>
		<pubDate>Wed, 13 Jul 2011 17:53:44 +0000</pubDate>
		<dc:creator>+Jason</dc:creator>
				<category><![CDATA[Cheat Sheets]]></category>
		<category><![CDATA[Guides]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[Google+ Hacks]]></category>

		<guid isPermaLink="false">http://green.cx/?p=2434</guid>
		<description><![CDATA[<img src="http://green.cx/wp-content/blogs.dir/1/category-images/52.original.png" width="659" height="87" alt="" title="Guides" /><br/>Like the title suggests,  this is the highly regarded Google+Cheat sheet by Google+ user Simon Laustsen. Remember, Bookmark, Share, and Enjoy! &#160;]]></description>
			<content:encoded><![CDATA[<img src="http://green.cx/wp-content/blogs.dir/1/category-images/52.original.png" width="659" height="87" alt="" title="Guides" /><br/><p>Like the title suggests,  this is the highly regarded Google+Cheat sheet by Google+ user <a href="https://plus.google.com/108443027359212340995/posts">Simon Laustsen</a>.<br />
Remember, Bookmark, Share, and Enjoy!<br />
<a href="http://green.cx/files/2011/07/google-plus-cheat-sheet-lg.jpg"><img class="alignleft size-full wp-image-2435" title="google-plus-cheat-sheet-lg" src="http://green.cx/files/2011/07/google-plus-cheat-sheet-lg.jpg" alt="" width="600" height="590" /></a></p>
<p>&nbsp;</p>]]></content:encoded>
			<wfw:commentRss>http://green.cx/guides/google-cheat-sheet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Redfly SEO Extensions for Chrome</title>
		<link>http://green.cx/web-resources/redfly-seo-extensions-for-chrome/</link>
		<comments>http://green.cx/web-resources/redfly-seo-extensions-for-chrome/#comments</comments>
		<pubDate>Fri, 28 Jan 2011 14:57:23 +0000</pubDate>
		<dc:creator>+Jason</dc:creator>
				<category><![CDATA[Bookmarklets]]></category>
		<category><![CDATA[Web Stuff]]></category>
		<category><![CDATA[Chrome extension]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[Google Chrome]]></category>
		<category><![CDATA[Search Engines]]></category>

		<guid isPermaLink="false">http://green.cx/?p=2241</guid>
		<description><![CDATA[<img src="http://green.cx/wp-content/blogs.dir/1/category-images/64.original.png" width="659" height="87" alt="" title="Bookmarklets" /><img src="http://green.cx/wp-content/blogs.dir/1/category-images/40.original.png" width="659" height="87" alt="" title="Web Stuff" /><br/>Redfly Marketting has converted their beloved Google Global Plugin to Chrome! If you&#8217;ve never used it before, let me tell you, it&#8217;s a vary handy extension. The way it works in simple, you go to a Google Search Results Page (SERPS) and click the Google Global Icon, and choose what county to want to search. But [...]]]></description>
			<content:encoded><![CDATA[<img src="http://green.cx/wp-content/blogs.dir/1/category-images/64.original.png" width="659" height="87" alt="" title="Bookmarklets" /><img src="http://green.cx/wp-content/blogs.dir/1/category-images/40.original.png" width="659" height="87" alt="" title="Web Stuff" /><br/><p>Redfly Marketting has converted their beloved <a class="zem_slink" title="Google" rel="wikipedia" title='Original Link: http://en.wikipedia.org/wiki/Google'  href="http://green.cx/?CFbQpojm">Google</a> Global Plugin to <a id="aptureLink_bMjLLBmJ44" title='Original Link: http://en.wikipedia.org/wiki/Google%20Chrome'  href="http://green.cx/?SHEcqsXw">Chrome</a>!</p>
<p>If you&#8217;ve never used it before, let me tell you, it&#8217;s a vary handy extension. The way it works in simple, you go to a Google Search Results Page (<a id="aptureLink_IhkWiBEb9o" title='Original Link: http://en.wikipedia.org/wiki/Search%20engine%20results%20page'  href="http://green.cx/?qhl5DONa">SERPS</a>) and click the Google Global Icon, and choose what county to want to search. But the real power behind this Gem isn&#8217;t the global options, it&#8217;s the local. Where you can specify options for searching within a zip code, and depersonalization of the Google search results (Google adds searches of your twitter and youtube accounts etc when you search now, this can remove that) Allowing you to get a better feel for what &#8220;Average Joe&#8221; will see when he&#8217;s searching Google.</p>
<p><a href="https://chrome.google.com/extensions/detail/ojgmigafbpedhdilmemphfklkbghlphi">https://chrome.google.com/extensions/detail/ojgmigafbpedhdilmemphfklkbghlphi</a></p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"></div>]]></content:encoded>
			<wfw:commentRss>http://green.cx/web-resources/redfly-seo-extensions-for-chrome/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google says thanks, and Merry Christmas</title>
		<link>http://green.cx/news/google-says-thanks-and-merry-christmas/</link>
		<comments>http://green.cx/news/google-says-thanks-and-merry-christmas/#comments</comments>
		<pubDate>Thu, 23 Dec 2010 16:27:18 +0000</pubDate>
		<dc:creator>+Jason</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[google]]></category>

		<guid isPermaLink="false">http://green.cx/?p=2111</guid>
		<description><![CDATA[<br/>Check out this little link that Google has been sending out showing how Googlers have helped over 50 Million people out this year by donating 20 Million to charities around the world. http://www.google.com/landing/thankyou/2010/ I think it was a nice gesture of Google. Or do you think their just tooting their own horn?]]></description>
			<content:encoded><![CDATA[<br/><p>Check out this little link that Google has been sending out showing how <a id="aptureLink_p2smUneGSa" title='Original Link: http://search.twitter.com/search?q=Google'  href="http://green.cx/?KG9Gke9E">Googlers</a> have helped over 50 Million people out this year by donating 20 Million to charities around the world. <a title='Original Link: http://www.google.com/landing/thankyou/2010/'  href="http://green.cx/?7CwIlKKF">http://www.google.com/landing/thankyou/2010/</a> I think it was a nice gesture of <a id="aptureLink_B9dGw2InGc" href="http://twitter.com/Google">Google</a>. Or do you think their just tooting their own horn?</p>
<a href="http://green.cx/files/2010/05/google.png"><img class="size-full wp-image-1380" title="google" src="http://green.cx/files/2010/05/google.png" alt="" width="275" height="95" /></a>]]></content:encoded>
			<wfw:commentRss>http://green.cx/news/google-says-thanks-and-merry-christmas/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google releases Priority Inbox for Gmail</title>
		<link>http://green.cx/news/google-releases-priority-inbox-for-gmail/</link>
		<comments>http://green.cx/news/google-releases-priority-inbox-for-gmail/#comments</comments>
		<pubDate>Wed, 01 Sep 2010 18:01:08 +0000</pubDate>
		<dc:creator>+Jason</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[G]]></category>
		<category><![CDATA[google]]></category>

		<guid isPermaLink="false">http://green.cx/?p=1789</guid>
		<description><![CDATA[<br/>Google will begin rolling out Priority Inbox for Gmail(&#60;-Hover for video), a new feature for managing tons of e-mail. Your inbox will never be the same again. Priority Inbox is Google’s attempt to solve the e-mail woes of Gmail power users. At its core, the feature is an algorithm; Priority Inbox uses information such as keywords, the people you e-mail [...]]]></description>
			<content:encoded><![CDATA[<br/><p>Google will begin rolling out <a id="aptureLink_XlfPV5HYkV" title='Original Link: http://www.youtube.com/watch?v=5nt3gE9dGHQ'  href="http://green.cx/?fjn9tB5R">Priority Inbox for Gmail</a>(&lt;-Hover for video), a new feature for managing tons of e-mail. Your inbox will never be the same again.</p>
<p><a href="http://green.cx/files/2010/09/gmail-priority-inbox-225.jpg"><img class="alignleft size-full wp-image-1791" title="gmail-priority-inbox-225" src="http://green.cx/files/2010/09/gmail-priority-inbox-225.jpg" alt="" width="225" height="225" /></a>Priority Inbox is Google’s attempt to solve the e-mail woes of Gmail power users. At its core, the feature is an algorithm; Priority Inbox uses information such as keywords, the people you e-mail the most and your e-mail habits to select the most pressing e-mails in your inbox. Those e-mails are brought to the top of your Gmail and marked as important so you deal with them first.</p>
<p>Priority Inbox is also an adaptive algorithm. Marking items as important or unimportant teaches the system what types of messages you deem the most urgent. You can also use Gmail’s filters to automatically mark certain messages as important (for example, from your boss or your spouse),</p>
<p>The new feature appears as a new menu item just above the “Inbox” link. Instead of indicating how many unread e-mails you have in your inbox, Priority Inbox only displays how many priority e-mails still require your attention. These appear at the top of Gmail as “Important and unread.”</p>
<p>The second layer of the new layout is your starred e-mails. These messages appear in their own section under the Priority Inbox. The goal is to get users to star important e-mails they have read but for whatever reason still need in their inboxes. Under the “Starred” section is “Everything else,” which contains the rest of your unarchived inbox.</p>
<p style="text-align: center;"><a href="http://green.cx/files/2010/09/PriorityInbox.jpg"><img class="size-full wp-image-1790  aligncenter" title="PriorityInbox" src="http://green.cx/files/2010/09/PriorityInbox.jpg" alt="" width="640" height="299" /></a></p>
<hr />
<h2>The Impact of the Priority Inbox</h2>
<hr />During the many months of testing the feature internally, the search giant found that users spent 16% less time reading insignificant e-mail. If you do the math, that’s about a full week’s worth of time saved. According to Google, once someone switches to Priority Inbox, he or she never needs or wants to go back.</p>
<p>We can see why. We’ve had the chance to test out Priority Inbox for the last few days and discuss the new feature with Gmail Product Director Keith Coleman, and we’re impressed. Our inboxes get filled with hundreds of e-mails daily, but only a few of them require our immediate attention. Even with dozens of Gmail filters, important messages often get lost in the pile, leading to lost opportunities or missed meetings.</p>
<p>Priority Inbox, while not perfect, is a dramatic step toward solving that problem. Important messages bubble to the top, while e-mails that still require attention can sit in the Starred section until they’re addressed. It basically takes the <a id="aptureLink_5m1qYJDkBz" title='Original Link: http://www.youtube.com/watch?v=wTnvvjPdWHw'  href="http://green.cx/?bxtECAEd">Gmail Multiple Inboxes</a> feature and adds a smart algorithm for cherry picking the threads that require your attention.</p>
<p>Coleman says that the company has been working on the feature for 18 months, but the original version of Gmail had something similar to this before it launched, but was removed because it simply wasn’t ready for mass consumption. Now it is refined enough for use by all.</p>
<p>What do you think of Priority Inbox? Let us know in the comments!</p>]]></content:encoded>
			<wfw:commentRss>http://green.cx/news/google-releases-priority-inbox-for-gmail/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Better Start Page for Chrome</title>
		<link>http://green.cx/fun-stuff/better-start-page-for-chrome/</link>
		<comments>http://green.cx/fun-stuff/better-start-page-for-chrome/#comments</comments>
		<pubDate>Wed, 18 Aug 2010 14:36:26 +0000</pubDate>
		<dc:creator>+Jason</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Fun Stuff]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[web browsers]]></category>

		<guid isPermaLink="false">http://green.cx/?p=1773</guid>
		<description><![CDATA[<br/>I was looking into creating a start page portal that used facebook login, but before I got started a little research uncovered this little gem: If you&#8217;re a chrome user you&#8217;re going to love this! From their Description: Incredible StartPage is a productive start page replacement for Chrome. Put all your favorite bookmarks in a [...]]]></description>
			<content:encoded><![CDATA[<br/><p>I was looking into creating a start page portal that used facebook login, but before I got started a little research uncovered this little gem:<br />
If you&#8217;re a chrome user you&#8217;re going to love this!</p>
<p>From their Description:</p>
<blockquote><p><span style="color: #000000;">Incredible StartPage is a productive start page replacement for Chrome. Put all your favorite bookmarks in a beautiful frame, and enjoy our handy features!</span></p></blockquote>
<blockquote><p><span style="color: #000000;">New in 0.9<br />
- Notepad sync<br />
- Post notes to Google App accounts<br />
- More theme options, including using custom gradient as background<br />
- Bundled default wallpaper for faster loading<br />
- Recently closed tabs options</span></p>
<p><span style="color: #000000;">Features<br />
- Customizable color theme<br />
- Easily access your favorite bookmarks in a large frame<br />
- Simple closed tab recovery<br />
- Take notes and post to Gmail in one click</span><br />
<span style="color: #000000;">See a full tutorial on our blog </span><a title='Original Link: http://goo.gl/zHxq'  href="http://green.cx/?fDDqQzGC"><span style="color: #000000;">http://goo.gl/zHxq</span></a><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p></blockquote>
<p>Personally, some things I would like to see, RSS feeds, and some status streams from Facebook and Twitter&#8230;</p>
<p>Find the current version here:</p>
<p><a href="https://chrome.google.com/extensions/detail/ncdfeghkpohnalmpblddmnppfooljekh#">https://chrome.google.com/extensions/detail/ncdfeghkpohnalmpblddmnppfooljekh#</a></p>
<p>Some Screenshots of My Personalized Start Pages</p>
<p><a href="http://green.cx/files/2010/08/Incredible-Home-Page-Pt1.jpg"><img class="size-medium wp-image-1774 alignnone" title="Incredible Home Page Pt1" src="http://green.cx/files/2010/08/Incredible-Home-Page-Pt1-495x242.jpg" alt="" width="495" height="242" /></a><br />
<a href="http://green.cx/files/2010/08/Incredible-Homepage2.png"><img class="size-medium wp-image-1775   alignleft" title="Incredible Homepage2" src="http://green.cx/files/2010/08/Incredible-Homepage2-495x243.png" alt="" width="495" height="243" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://green.cx/fun-stuff/better-start-page-for-chrome/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Street Slide:Microsoft&#8217;s return to innovation?</title>
		<link>http://green.cx/news/street-slidemicrosofts-return-to-innovation/</link>
		<comments>http://green.cx/news/street-slidemicrosofts-return-to-innovation/#comments</comments>
		<pubDate>Thu, 29 Jul 2010 12:17:57 +0000</pubDate>
		<dc:creator>+Jason</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://green.cx/?p=1704</guid>
		<description><![CDATA[<br/>
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_K-_T949uSwU&#38;hl=en_US&#38;fs=1?color1=0x3a3a3a&#38;color2=0x999999_707233210"
			class="flashmovie"
			width="640"
			height="505">
	<param name="movie" value="http://www.youtube.com/v/K-_T949uSwU&#38;hl=en_US&#38;fs=1?color1=0x3a3a3a&#38;color2=0x999999" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="http://www.youtube.com/v/K-_T949uSwU&#38;hl=en_US&#38;fs=1?color1=0x3a3a3a&#38;color2=0x999999"
			name="fm_K-_T949uSwU&#38;hl=en_US&#38;fs=1?color1=0x3a3a3a&#38;color2=0x999999_707233210"
			width="640"
			height="505">
	<!--<![endif]-->
		 
	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object> Microsoft  recently released a sneak peek at their new street view navigation system called Street Slide. After I watched the Video (Which tells you everything you need to know about so I&#8217;ll save my breath explaining it and just let you watch the video) I thought to [...]]]></description>
			<content:encoded><![CDATA[<br/><p style="text-align: center;">
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_K-_T949uSwU&amp;hl=en_US&amp;fs=1?color1=0x3a3a3a&amp;color2=0x999999_1971163187"
			class="flashmovie"
			width="640"
			height="505">
	<param name="movie" value="http://www.youtube.com/v/K-_T949uSwU&amp;hl=en_US&amp;fs=1?color1=0x3a3a3a&amp;color2=0x999999" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="http://www.youtube.com/v/K-_T949uSwU&amp;hl=en_US&amp;fs=1?color1=0x3a3a3a&amp;color2=0x999999"
			name="fm_K-_T949uSwU&amp;hl=en_US&amp;fs=1?color1=0x3a3a3a&amp;color2=0x999999_1971163187"
			width="640"
			height="505">
	<!--<![endif]-->
		
<p style="text-align: center;"><a href="http://green.cx/files/2010/07/google_microsoft.jpg"><img class="alignnone size-full wp-image-1708" title="google_microsoft" src="http://green.cx/files/2010/07/google_microsoft.jpg" alt="" width="243" height="182" /></a></p>
<p style="text-align: center;">
	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object>
<p>Microsoft  recently released a sneak peek at their new street view navigation system called Street Slide. After I watched the Video (Which tells you everything you need to know about so I&#8217;ll save my breath explaining it and just let you watch the video) I thought to myself, Microsoft has finally done it, they&#8217;ve broken their 5 year long &#8220;innovation block&#8221; and are shifting from a follower back to a leader. This is the first truly innovative new product I&#8217;ve seen from Microsoft in years. Now before you go thinking, what about Kinect, well 1. It&#8217;s not here yet and 2. They bought it, they didn&#8217;t make it, in fact, they took a great idea and ruined it just like Xbox Live.</p>
<p>Only time will tell if this new Street Slide will be an indication of the new changes at Microsoft. Bing has only had lukewarm reception at best, and if they keep this up the adoption rates of their search services could turn around. I think the current adoption rates are over inflated because it&#8217;s the default Search engine on Win7 and IE8 so any leverage they can get they are utilizing. But in the mean time, I&#8217;m sticking with Google.</p>]]></content:encoded>
			<wfw:commentRss>http://green.cx/news/street-slidemicrosofts-return-to-innovation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using apc
Database Caching 146/246 queries in 0.262 seconds using apc

Served from: potpiedeluxe.com @ 2012-02-09 18:19:18 -->
