<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Pavan&#039;s Blog</title>
	<atom:link href="http://pavansry.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://pavansry.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Wed, 09 Dec 2009 09:06:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='pavansry.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Pavan&#039;s Blog</title>
		<link>http://pavansry.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://pavansry.wordpress.com/osd.xml" title="Pavan&#039;s Blog" />
	<atom:link rel='hub' href='http://pavansry.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Coding Clean and Semantic Template</title>
		<link>http://pavansry.wordpress.com/2009/12/09/coding-clean-and-semantic-template/</link>
		<comments>http://pavansry.wordpress.com/2009/12/09/coding-clean-and-semantic-template/#comments</comments>
		<pubDate>Wed, 09 Dec 2009 08:33:34 +0000</pubDate>
		<dc:creator>Pavan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[css layout]]></category>
		<category><![CDATA[div]]></category>
		<category><![CDATA[div layout]]></category>
		<category><![CDATA[div tags]]></category>
		<category><![CDATA[div template]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[speed loading website]]></category>
		<category><![CDATA[speed up website]]></category>
		<category><![CDATA[tricks and tips]]></category>

		<guid isPermaLink="false">http://pavansry.wordpress.com/?p=74</guid>
		<description><![CDATA[If you are the guy who uses &#60;div&#62; tag for everything, this post is for you. It focuses on how you can write clean HTML code by using semantic markups and minimize the use of &#60;div&#62; tag. Have you ever edited someone’s templates, don’t those messy tags drive you crazy? Not only writing clean templates [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pavansry.wordpress.com&amp;blog=9415616&amp;post=74&amp;subd=pavansry&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><big>If you are the guy who uses<code> &lt;div&gt;</code> tag for everything, this post is for you. It focuses on how you can write clean HTML code by using semantic markups and minimize the use of <code>&lt;div&gt;</code> tag. Have you ever edited someone’s templates, don’t those messy tags drive you crazy? Not only writing clean templates can benefit yourself, but your team as well. It will save you time when you have to debug and edit (particularly the large projects). </big></p>
<h3><em><span class="currency_converter_link" title="Convert this amount"><span class="currency_converter_link" title="Convert this amount">1</span></span><span class="currency_converter_text">.</span></em> Remove The Unnecessary &lt;div&gt; Tags</h3>
<p>I’ve seen a lot of people wrap a <code>&lt;div&gt;</code> tag around the <code>&lt;form&gt;</code> or <code>&lt;ul&gt;</code> menu list. Why create an extra <code>&lt;div&gt;</code> tag that you don’t need? You can achieve the same result by applying the CSS rules to the selector.</p>
<h4><span class="currency_converter_text">Example </span><span class="currency_converter_link" title="Convert this amount"><span class="currency_converter_link" title="Convert this amount">1</span></span><span class="currency_converter_text">:</span></h4>
<p>The example below shows how you can drop the <code>&lt;div&gt;</code> tag and declare the styling to the <code>form</code> selector.</p>
<p><img src="http://www.webdesignerwall.com/wp-content/uploads/2009/11/div-form.gif" alt="div form" /></p>
<h4><span class="currency_converter_text">Example </span><span class="currency_converter_link" title="Convert this amount"><span class="currency_converter_link" title="Convert this amount">2</span></span><span class="currency_converter_text">:</span></h4>
<p>Sometimes we wrap the content with an extra <code>&lt;div&gt;</code> tag strictly for spacing purposes. The example on the left uses a <code>&lt;div&gt;</code> to create margin space in between the boxes. But if each box has a heading (ie. <code><span class="currency_converter_text">&lt;h</span><span class="currency_converter_link" title="Convert this amount"><span class="currency_converter_link" title="Convert this amount">4</span></span><span class="currency_converter_text">&gt;</span></code>), we can simply apply the margin space to the <code><span class="currency_converter_text">h</span><span class="currency_converter_link" title="Convert this amount"><span class="currency_converter_link" title="Convert this amount">4</span></span></code> selector and drop the extra  <code>&lt;div&gt;</code> tag.</p>
<p><img src="http://www.webdesignerwall.com/wp-content/uploads/2009/11/div-sidebox.gif" alt="div sidebar" /></p>
<h3><em><span class="currency_converter_link" title="Convert this amount"><span class="currency_converter_link" title="Convert this amount">2</span></span><span class="currency_converter_text">.</span></em> Use Semantic Markups</h3>
<p>You should always use semantic markups to code HTML documents (ie. <code><span class="currency_converter_text">&lt;h</span><span class="currency_converter_link" title="Convert this amount"><span class="currency_converter_link" title="Convert this amount">1</span></span><span class="currency_converter_text">&gt;</span></code> for headings, <code>&lt;p&gt;</code> for paragraph text, and <code>&lt;ul&gt;</code> for list items). So, even when the CSS is not presented nor supported, your document still makes sense.</p>
<h4>Example:</h4>
<p>The image below compares the rendering differences between &lt;div&gt; markups and semantic markups with no css supported.</p>
<p><img src="http://www.webdesignerwall.com/wp-content/uploads/2009/11/semantic-markups.gif" alt="semantic markups" /></p>
<h3><em><span class="currency_converter_link" title="Convert this amount"><span class="currency_converter_link" title="Convert this amount">3</span></span><span class="currency_converter_text">.</span></em> Minimize The Use of &lt;div&gt; Tags</h3>
<p>Have you seen the messy templates where <code>&lt;div&gt;</code> tags are everywhere and they drive you crazy? Have you ever missed a closing <code>&lt;/div&gt;</code> tag or have an extra opening <code>&lt;div&gt;</code> tag messing up the entire layout? I’m sure most developers have experienced it before. So, you should always minimize the use of <code>&lt;div&gt;</code> tag if possible. It will make debugging and editing easier.</p>
<h4><span class="currency_converter_text">Example </span><span class="currency_converter_link" title="Convert this amount"><span class="currency_converter_link" title="Convert this amount">1</span></span><span class="currency_converter_text">:</span></h4>
<p>Instead of using <code>&lt;div&gt;</code> tag for breadcrumb navigation, it makes more sense to use <code>&lt;p&gt;</code> tag.</p>
<p><img src="http://www.webdesignerwall.com/wp-content/uploads/2009/11/div-breadcrumb.gif" alt="breadcrumb" /></p>
<h4><span class="currency_converter_text">Example </span><span class="currency_converter_link" title="Convert this amount"><span class="currency_converter_link" title="Convert this amount">2</span></span><span class="currency_converter_text">:</span></h4>
<p>The following example shows how I can use CSS to cut down two <code>&lt;div&gt;</code> tags by replacing with one <code>&lt;span&gt;</code> tag. They both produce the same layout.</p>
<p><img src="http://www.webdesignerwall.com/wp-content/uploads/2009/11/div-date.gif" alt="blog date" /></p>
<h3><em><span class="currency_converter_link" title="Convert this amount"><span class="currency_converter_link" title="Convert this amount">4</span></span><span class="currency_converter_text">.</span></em> Format (Indent) Your Code</h3>
<p>You should always format your source code (ie. indent your nested elements) so it is easier to read and debug. If you have Adobe Dreamweaver, you can easily format the code by using the <em>Commands &gt; Apply Source Formatting</em> (from the application menu).</p>
<p><img src="http://www.webdesignerwall.com/wp-content/uploads/2009/11/format-code.gif" alt="code formatting" /></p>
<h3><em><span class="currency_converter_link" title="Convert this amount"><span class="currency_converter_link" title="Convert this amount">5</span></span><span class="currency_converter_text">.</span></em> Comment The Closing &lt;/div&gt; Tags</h3>
<p>When coding for platform templates (ie. WordPress themes), the template is most likely splitted into several files: index.php, header.php, sidebar.php, and footer.php. Hence, you should always make a comment for the closing <code>&lt;/div&gt;</code> tags so you won’t get lost. For example, when I see <code>&lt;/div&gt;&lt;!-- /wrapper --&gt;</code>, I know it is the closing tag for <code>&lt;div id="wrapper"&gt;</code>.</p>
<h4>Example:</h4>
<p>I usually  insert a HTML comment tag right after the closing <code>&lt;/div&gt;</code> tag. I use the forward slash to indicate it is the closing tag.</p>
<p><img src="http://www.webdesignerwall.com/wp-content/uploads/2009/11/comment-code.gif" alt="comment closing tag" /></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pavansry.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pavansry.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pavansry.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pavansry.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pavansry.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pavansry.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pavansry.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pavansry.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pavansry.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pavansry.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pavansry.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pavansry.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pavansry.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pavansry.wordpress.com/74/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pavansry.wordpress.com&amp;blog=9415616&amp;post=74&amp;subd=pavansry&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pavansry.wordpress.com/2009/12/09/coding-clean-and-semantic-template/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/09e2c5a8934f02f63a3769d084b1a53d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pavansry</media:title>
		</media:content>

		<media:content url="http://www.webdesignerwall.com/wp-content/uploads/2009/11/div-form.gif" medium="image">
			<media:title type="html">div form</media:title>
		</media:content>

		<media:content url="http://www.webdesignerwall.com/wp-content/uploads/2009/11/div-sidebox.gif" medium="image">
			<media:title type="html">div sidebar</media:title>
		</media:content>

		<media:content url="http://www.webdesignerwall.com/wp-content/uploads/2009/11/semantic-markups.gif" medium="image">
			<media:title type="html">semantic markups</media:title>
		</media:content>

		<media:content url="http://www.webdesignerwall.com/wp-content/uploads/2009/11/div-breadcrumb.gif" medium="image">
			<media:title type="html">breadcrumb</media:title>
		</media:content>

		<media:content url="http://www.webdesignerwall.com/wp-content/uploads/2009/11/div-date.gif" medium="image">
			<media:title type="html">blog date</media:title>
		</media:content>

		<media:content url="http://www.webdesignerwall.com/wp-content/uploads/2009/11/format-code.gif" medium="image">
			<media:title type="html">code formatting</media:title>
		</media:content>

		<media:content url="http://www.webdesignerwall.com/wp-content/uploads/2009/11/comment-code.gif" medium="image">
			<media:title type="html">comment closing tag</media:title>
		</media:content>
	</item>
		<item>
		<title>Nokia N900 vs. Motorola Droid</title>
		<link>http://pavansry.wordpress.com/2009/11/25/nokia-n900-vs-motorola-droid/</link>
		<comments>http://pavansry.wordpress.com/2009/11/25/nokia-n900-vs-motorola-droid/#comments</comments>
		<pubDate>Wed, 25 Nov 2009 09:22:13 +0000</pubDate>
		<dc:creator>Pavan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[compare]]></category>
		<category><![CDATA[computer phone]]></category>
		<category><![CDATA[droid spec]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[google android]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[motorola droid spec]]></category>
		<category><![CDATA[motorola specification]]></category>
		<category><![CDATA[n900 spec]]></category>
		<category><![CDATA[n900 specification]]></category>
		<category><![CDATA[nokia]]></category>
		<category><![CDATA[nokia n900 specs]]></category>
		<category><![CDATA[Nokia n900 vs motorola droid]]></category>
		<category><![CDATA[office phone]]></category>
		<category><![CDATA[phone specification]]></category>
		<category><![CDATA[smart phone]]></category>

		<guid isPermaLink="false">http://pavansry.wordpress.com/?p=61</guid>
		<description><![CDATA[2 Linux Smart Phones: Nokia N900 Motorola Milestone (Droid) Promo Availability in Europe November 30, 2009 November 16, 2009 Retail Price 599 Euro 499 Euro OS Maemo 5 Android 2.0 CPU ARM Cortex A8 600 MHz ARM Cortex A8 550MHz Operating Frequency GSM 850/900/1800/1900 WCDMA/900/1700/2100 GSM 850/900/1800/1900 WCDMA/900/2100 Flight Mode Yes Yes Dimension 110,9 x [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pavansry.wordpress.com&amp;blog=9415616&amp;post=61&amp;subd=pavansry&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<table border="1" cellpadding="3" cellspacing="1">
<tbody>
<tr>
<td bgcolor="#FFFFFF"><strong><span style="color:#333333;" class="currency_converter_link" title="Convert this amount">2 Linux Smart Phones:</span></strong></td>
<td bgcolor="#FFFFFF"><strong><span class="currency_converter_text" style="color:#333333;">Nokia N900</span></strong></td>
<td bgcolor="#FFFFFF"><strong><span style="color:#333333;">Motorola Milestone (Droid)</span></strong></td>
</tr>
<tr>
<td>Promo</td>
<td></td>
<td></td>
</tr>
<tr>
<td>Availability in Europe</td>
<td><span class="currency_converter_text">November </span><span class="currency_converter_text">30</span><span class="currency_converter_text">, </span><span class="currency_converter_text">2009</span></td>
<td><span class="currency_converter_text">November </span><span class="currency_converter_text">16</span><span class="currency_converter_text">, </span><span class="currency_converter_text">2009</span></td>
</tr>
<tr>
<td>Retail Price</td>
<td><span class="currency_converter_link" title="Convert this amount">599</span><span class="currency_converter_text"> Euro</span></td>
<td><span class="currency_converter_link" title="Convert this amount">499</span><span class="currency_converter_text"> Euro</span></td>
</tr>
<tr>
<td>OS</td>
<td><span class="currency_converter_text">Maemo </span><span class="currency_converter_link" title="Convert this amount">5</span></td>
<td><span class="currency_converter_text">Android </span><span class="currency_converter_link" title="Convert this amount">2.0</span></td>
</tr>
<tr>
<td>CPU</td>
<td><span class="currency_converter_text">ARM Cortex A</span><span class="currency_converter_link" title="Convert this amount">8</span><span class="currency_converter_text"> </span><span class="currency_converter_link" title="Convert this amount">600</span><span class="currency_converter_text"> MHz</span></td>
<td><span class="currency_converter_text">ARM Cortex A</span><span class="currency_converter_link" title="Convert this amount">8</span><span class="currency_converter_text"> </span><span class="currency_converter_link" title="Convert this amount">550</span><span class="currency_converter_text">MHz</span></td>
</tr>
<tr>
<td>Operating Frequency</td>
<td><span class="currency_converter_text">GSM </span><span class="currency_converter_text">850</span><span class="currency_converter_text">/</span><span class="currency_converter_text">900</span><span class="currency_converter_text">/</span><span class="currency_converter_text">1800</span><span class="currency_converter_text">/</span><span class="currency_converter_text">1900</span><br /><span class="currency_converter_text"><br />
WCDMA/</span><span class="currency_converter_text">900</span><span class="currency_converter_text">/</span><span class="currency_converter_text">1700</span><span class="currency_converter_text">/</span><span class="currency_converter_text">2100</span></td>
<td><span class="currency_converter_text">GSM </span><span class="currency_converter_text">850</span><span class="currency_converter_text">/</span><span class="currency_converter_text">900</span><span class="currency_converter_text">/</span><span class="currency_converter_text">1800</span><span class="currency_converter_text">/</span><span class="currency_converter_text">1900</span><br /><span class="currency_converter_text"><br />
WCDMA/</span><span class="currency_converter_text">900</span><span class="currency_converter_text">/</span><span class="currency_converter_text">2100</span></td>
</tr>
<tr>
<td>Flight Mode</td>
<td>Yes</td>
<td>Yes</td>
</tr>
<tr>
<td>Dimension</td>
<td><span class="currency_converter_link" title="Convert this amount">110,9</span><span class="currency_converter_text"> x </span><span class="currency_converter_link" title="Convert this amount">59,8</span><span class="currency_converter_text"> x </span><span class="currency_converter_link" title="Convert this amount">18</span><span class="currency_converter_text"> (</span><span class="currency_converter_link" title="Convert this amount">19,55</span><span class="currency_converter_text">) mm</span></td>
<td><span class="currency_converter_link" title="Convert this amount">115.8</span><span class="currency_converter_text"> x </span><span class="currency_converter_link" title="Convert this amount">60</span><span class="currency_converter_text"> x </span><span class="currency_converter_link" title="Convert this amount">13.7</span><span class="currency_converter_text"> mm</span></td>
</tr>
<tr>
<td>Weight</td>
<td><span class="currency_converter_link" title="Convert this amount">181</span><span class="currency_converter_text"> g (with battery)</span></td>
<td><span class="currency_converter_link" title="Convert this amount">165</span><span class="currency_converter_text">g</span></td>
</tr>
<tr>
<td>Display</td>
<td><span class="currency_converter_link" title="Convert this amount">3.5</span><span class="currency_converter_text">″</span></td>
<td><span class="currency_converter_link" title="Convert this amount">3.7</span><span class="currency_converter_text">″</span></td>
</tr>
<tr>
<td>Resolution</td>
<td><span class="currency_converter_link" title="Convert this amount">800</span><span class="currency_converter_text">×</span><span class="currency_converter_link" title="Convert this amount">400</span><span class="currency_converter_text">pixel</span></td>
<td><span class="currency_converter_link" title="Convert this amount">480</span><span class="currency_converter_text"> x </span><span class="currency_converter_link" title="Convert this amount">854</span><span class="currency_converter_text"> pixel </span><span class="currency_converter_text">16</span><span class="currency_converter_text">:</span><span class="currency_converter_text">9</span><span class="currency_converter_text"> widescreen; PPI </span><span class="currency_converter_link" title="Convert this amount">267</span></td>
</tr>
<tr>
<td>Touch Screen</td>
<td>Yes</td>
<td>Yes</td>
</tr>
<tr>
<td>Autorotate</td>
<td>Yes</td>
<td>Yes</td>
</tr>
<tr>
<td>Ambient Light Sensor</td>
<td>Yes</td>
<td>Yes</td>
</tr>
<tr>
<td>Haptic Feedback</td>
<td>Yes</td>
<td>Yes</td>
</tr>
<tr>
<td>Multitouch</td>
<td>No</td>
<td>Yes</td>
</tr>
<tr>
<td>Proximity Sensor</td>
<td>Yes</td>
<td>Yes</td>
</tr>
<tr>
<td>Graphics</td>
<td><span class="currency_converter_text">PowerVR SGX </span><span class="currency_converter_link" title="Convert this amount">530</span><span class="currency_converter_text"> GPU</span><br /><span class="currency_converter_text"><br />
</span><span class="currency_converter_link" title="Convert this amount">3</span><span class="currency_converter_text">G Graphics acceleration</span><br /><span class="currency_converter_text"><br />
support for OpenGL ES </span><span class="currency_converter_link" title="Convert this amount">2.0</span></td>
<td>PowerVR SGX</td>
</tr>
<tr>
<td>Virtual Keyboard</td>
<td>Yes</td>
<td>Yes</td>
</tr>
<tr>
<td>qwerty keyboard</td>
<td>Yes</td>
<td>Yes</td>
</tr>
<tr>
<td>Backlit Keyboard</td>
<td>Yes</td>
<td>Yes</td>
</tr>
<tr>
<td>Word Prediction</td>
<td>Yes</td>
<td>Yes</td>
</tr>
<tr>
<td>Pen Input with Stylus</td>
<td>Yes</td>
<td>No</td>
</tr>
<tr>
<td>Voice Commands</td>
<td>No</td>
<td>Yes</td>
</tr>
<tr>
<td>MMS</td>
<td>No</td>
<td>Yes</td>
</tr>
<tr>
<td>Internal Memory</td>
<td><span class="currency_converter_link" title="Convert this amount">256</span><span class="currency_converter_text">MB RAM</span></td>
<td><span class="currency_converter_link" title="Convert this amount">256</span><span class="currency_converter_text">MB RAM</span></td>
</tr>
<tr>
<td>Storage</td>
<td><span class="currency_converter_link" title="Convert this amount">32</span><span class="currency_converter_text"> GB eMMC (</span><span class="currency_converter_link" title="Convert this amount">2</span><span class="currency_converter_text">GB /home,</span><span class="currency_converter_link" title="Convert this amount">768</span><span class="currency_converter_text">MB /swap)</span><br /><span class="currency_converter_text"><br />
External Memory	MicroSD </span><span class="currency_converter_link" title="Convert this amount">16</span><span class="currency_converter_text">GB (max.)<br />
</span></td>
<td><span class="currency_converter_link" title="Convert this amount">512</span><span class="currency_converter_text">MB Flash memory, MicroSD </span><span class="currency_converter_link" title="Convert this amount">8</span><span class="currency_converter_text">GB preinstalled</span><br />
(<a target="_blank" href="http://en.wikipedia.org/wiki/Motorola_Milestone">The stock Android operating system restricts applications from being installed outside of onboard memory, in this case limiting application and OS size to a total maximum size of 512MB.</a>)<br /><span class="currency_converter_text"><br />
MicroSD </span><span class="currency_converter_link" title="Convert this amount">32</span><span class="currency_converter_text">GB (max.)</span></td>
</tr>
<tr>
<td>GPRS</td>
<td><span class="currency_converter_text">Class A, multislot class </span><span class="currency_converter_link" title="Convert this amount">32</span><span class="currency_converter_text"> max.</span><span class="currency_converter_text">107</span><span class="currency_converter_text">/</span><span class="currency_converter_text">64.2</span><span class="currency_converter_text"> kbps</span></td>
<td><span class="currency_converter_text">Class </span><span class="currency_converter_link" title="Convert this amount">12</span></td>
</tr>
<tr>
<td>EDGE</td>
<td><span class="currency_converter_text">Class A, multislot class </span><span class="currency_converter_link" title="Convert this amount">32</span><span class="currency_converter_text"> max.</span><span class="currency_converter_text">296</span><span class="currency_converter_text">/</span><span class="currency_converter_text">177.6</span><span class="currency_converter_text"> kbps</span></td>
<td><span class="currency_converter_text">Class </span><span class="currency_converter_link" title="Convert this amount">12</span></td>
</tr>
<tr>
<td>WCDMA</td>
<td><span class="currency_converter_text">max. </span><span class="currency_converter_text">384</span><span class="currency_converter_text">/</span><span class="currency_converter_text">384</span><span class="currency_converter_text"> KBit/s</span></td>
<td>?</td>
</tr>
<tr>
<td>HSPA</td>
<td><span class="currency_converter_text">Down </span><span class="currency_converter_link" title="Convert this amount">10</span><span class="currency_converter_text"> MBit/s, Up </span><span class="currency_converter_link" title="Convert this amount">2</span><span class="currency_converter_text"> MBit/s</span></td>
<td>?</td>
</tr>
<tr>
<td>WLAN</td>
<td><span class="currency_converter_text">WLAN IEEE </span><span class="currency_converter_link" title="Convert this amount">802.11</span><span class="currency_converter_text">b/g</span></td>
<td><span class="currency_converter_text">WLAN IEEE </span><span class="currency_converter_link" title="Convert this amount">802.11</span><span class="currency_converter_text"> b/g</span></td>
</tr>
<tr>
<td>Web Browser</td>
<td>Mozilla</td>
<td><span class="currency_converter_text">Webkit HTML</span><span class="currency_converter_link" title="Convert this amount">5</span></td>
</tr>
<tr>
<td>Flash Support</td>
<td><span class="currency_converter_text">Adobe Flash Player </span><span class="currency_converter_link" title="Convert this amount">9.4</span></td>
<td><span class="currency_converter_text">Flash Player </span><span class="currency_converter_link" title="Convert this amount">10.1</span><span class="currency_converter_text"> Ready (not yet released)</span></td>
</tr>
<tr>
<td>AJAX support</td>
<td><span class="currency_converter_text">JavaScript </span><span class="currency_converter_link" title="Convert this amount">1.8</span><span class="currency_converter_text">, XML</span></td>
<td>?</td>
</tr>
<tr>
<td>Bluetooth</td>
<td><span class="currency_converter_text">v</span><span class="currency_converter_link" title="Convert this amount">2.1</span><span class="currency_converter_text">. HFP, HSP, A</span><span class="currency_converter_link" title="Convert this amount">2</span><span class="currency_converter_text">DP, AVRCP, FTP, OPP</span></td>
<td><span class="currency_converter_text">v</span><span class="currency_converter_link" title="Convert this amount">2.1</span><span class="currency_converter_text"> + EDR.HFP, HSP, A</span><span class="currency_converter_link" title="Convert this amount">2</span><span class="currency_converter_text">DP, AVRCP, OPP, PBAP</span></td>
</tr>
<tr>
<td>Infrared</td>
<td>Yes</td>
<td>No</td>
</tr>
<tr>
<td>UPnP Support via WLAN</td>
<td>Yes</td>
<td>No</td>
</tr>
<tr>
<td>Headphone Jack</td>
<td><span class="currency_converter_link" title="Convert this amount">3.5</span><span class="currency_converter_text"> mm</span></td>
<td><span class="currency_converter_link" title="Convert this amount">3.5</span><span class="currency_converter_text"> mm</span></td>
</tr>
<tr>
<td>Integreated Stereo Speaker</td>
<td>Yes</td>
<td>Yes</td>
</tr>
<tr>
<td>TV Out</td>
<td>Nokia Video Connectivity Cable</td>
<td>No</td>
</tr>
<tr>
<td>USB</td>
<td><span class="currency_converter_text">microUSB v</span><span class="currency_converter_link" title="Convert this amount">2.0</span></td>
<td><span class="currency_converter_text">microUSB v</span><span class="currency_converter_link" title="Convert this amount">2.0</span></td>
</tr>
<tr>
<td>USB Charging</td>
<td>Yes</td>
<td>Yes</td>
</tr>
<tr>
<td>Back Camera</td>
<td><span class="currency_converter_link" title="Convert this amount">5</span><span class="currency_converter_text"> megapixel Carl Zeiss autofocus camera with dual LED flash (</span><span class="currency_converter_text">4</span><span class="currency_converter_text">:</span><span class="currency_converter_text">3</span><span class="currency_converter_text"> and </span><span class="currency_converter_text">16</span><span class="currency_converter_text">:</span><span class="currency_converter_text">9</span><span class="currency_converter_text"> ratio)</span></td>
<td><span class="currency_converter_link" title="Convert this amount">5</span><span class="currency_converter_text"> megapixel, dual LED flash</span></td>
</tr>
<tr>
<td>Autofocus</td>
<td>Yes</td>
<td>Yes</td>
</tr>
<tr>
<td>Digital Zoom</td>
<td><span class="currency_converter_link" title="Convert this amount">3</span><span class="currency_converter_text">X</span></td>
<td><span class="currency_converter_link" title="Convert this amount">4</span><span class="currency_converter_text">X</span></td>
</tr>
<tr>
<td>Camera Image Format</td>
<td>JPEG/EXIF</td>
<td>?</td>
</tr>
<tr>
<td>Video Recording</td>
<td><span class="currency_converter_link" title="Convert this amount">800</span><span class="currency_converter_text"> x </span><span class="currency_converter_link" title="Convert this amount">480</span><span class="currency_converter_text"> pixels/</span><span class="currency_converter_link" title="Convert this amount">25</span><span class="currency_converter_text">fps (max.)(mp</span><span class="currency_converter_link" title="Convert this amount">4</span><span class="currency_converter_text">: MPEG</span><span class="currency_converter_link" title="Convert this amount">4</span><span class="currency_converter_text">, AAC)</span></td>
<td><span class="currency_converter_link" title="Convert this amount">720</span><span class="currency_converter_text">×</span><span class="currency_converter_link" title="Convert this amount">480</span><span class="currency_converter_text"> pixels /</span><span class="currency_converter_link" title="Convert this amount">24</span><span class="currency_converter_text">fps (max.)</span></td>
</tr>
<tr>
<td>Video Playback Format</td>
<td><span class="currency_converter_text">mp</span><span class="currency_converter_link" title="Convert this amount">4</span><span class="currency_converter_text">, .avi, .wmv, .</span><span class="currency_converter_link" title="Convert this amount">3</span><span class="currency_converter_text">gp; codecs: H.</span><span class="currency_converter_link" title="Convert this amount">264</span><span class="currency_converter_text">, MPEG-</span><span class="currency_converter_link" title="Convert this amount">4</span><span class="currency_converter_text">, Xvid, WMV, H.</span><span class="currency_converter_link" title="Convert this amount">263</span></td>
<td><span class="currency_converter_text">H.</span><span class="currency_converter_link" title="Convert this amount">263</span><span class="currency_converter_text">, H.</span><span class="currency_converter_link" title="Convert this amount">264</span><span class="currency_converter_text">, MPEG-</span><span class="currency_converter_link" title="Convert this amount">4</span><span class="currency_converter_text">, WMV</span><span class="currency_converter_link" title="Convert this amount">9</span></td>
</tr>
<tr>
<td>Video Streaming</td>
<td><span class="currency_converter_text">H.</span><span class="currency_converter_link" title="Convert this amount">264</span><span class="currency_converter_text">, MPEG-</span><span class="currency_converter_link" title="Convert this amount">4</span><span class="currency_converter_text">, Xvid, WMV, H.</span><span class="currency_converter_link" title="Convert this amount">263</span><span class="currency_converter_text"> in .avi, .mp</span><span class="currency_converter_link" title="Convert this amount">4</span><span class="currency_converter_text">, .wmv, .asf and .</span><span class="currency_converter_link" title="Convert this amount">3</span><span class="currency_converter_text">gp containers</span></td>
<td>Yes</td>
</tr>
<tr>
<td>Front Camera</td>
<td><span class="currency_converter_link" title="Convert this amount">0.3</span><span class="currency_converter_text"> megapixel, </span><span class="currency_converter_link" title="Convert this amount">640</span><span class="currency_converter_text">×</span><span class="currency_converter_link" title="Convert this amount">480</span><span class="currency_converter_text"> pixels</span></td>
<td>No</td>
</tr>
<tr>
<td>Music Playback Format</td>
<td><span class="currency_converter_text">MP</span><span class="currency_converter_link" title="Convert this amount">3</span><span class="currency_converter_text">, WMA, AAC, M</span><span class="currency_converter_link" title="Convert this amount">4</span><span class="currency_converter_text">A, WAV</span></td>
<td><span class="currency_converter_text">AAC, AMR, eAAC, MIDI, MP</span><span class="currency_converter_link" title="Convert this amount">3</span><span class="currency_converter_text">, OGG, WAV, WMA, WMA</span><span class="currency_converter_link" title="Convert this amount">9</span></td>
</tr>
<tr>
<td>Max. Bit Rate</td>
<td><span class="currency_converter_link" title="Convert this amount">320</span><span class="currency_converter_text"> bps</span></td>
<td>?</td>
</tr>
<tr>
<td>Ringtone Format</td>
<td><span class="currency_converter_text">Wav, MP</span><span class="currency_converter_link" title="Convert this amount">3</span><span class="currency_converter_text">, AAC, eAAC</span></td>
<td><span class="currency_converter_text">eAAC+, MP</span><span class="currency_converter_link" title="Convert this amount">3</span><span class="currency_converter_text">, AAC+, eAAC, AAC, OGG</span></td>
</tr>
<tr>
<td>FM Radio</td>
<td>requires headset to be attached</td>
<td>No</td>
</tr>
<tr>
<td>GPS</td>
<td>Integrated A-GPS receiver</td>
<td>A-GPS, S-GPS</td>
</tr>
<tr>
<td>Java</td>
<td>No</td>
<td>No</td>
</tr>
<tr>
<td>Battery</td>
<td><span class="currency_converter_text">BL-</span><span class="currency_converter_link" title="Convert this amount">5</span><span class="currency_converter_text">J </span><span class="currency_converter_link" title="Convert this amount">1320</span><span class="currency_converter_text"> mAh battery</span></td>
<td><span class="currency_converter_link" title="Convert this amount">1400</span><span class="currency_converter_text"> mAh removable lithium-ion battery</span></td>
</tr>
<tr>
<td>Standby</td>
<td>?</td>
<td><span class="currency_converter_text">up to </span><span class="currency_converter_link" title="Convert this amount">350</span><span class="currency_converter_text"> hours</span></td>
</tr>
</tbody>
</table>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pavansry.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pavansry.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pavansry.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pavansry.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pavansry.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pavansry.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pavansry.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pavansry.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pavansry.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pavansry.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pavansry.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pavansry.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pavansry.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pavansry.wordpress.com/61/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pavansry.wordpress.com&amp;blog=9415616&amp;post=61&amp;subd=pavansry&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pavansry.wordpress.com/2009/11/25/nokia-n900-vs-motorola-droid/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/09e2c5a8934f02f63a3769d084b1a53d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pavansry</media:title>
		</media:content>
	</item>
		<item>
		<title>USB 3.0</title>
		<link>http://pavansry.wordpress.com/2009/11/25/54/</link>
		<comments>http://pavansry.wordpress.com/2009/11/25/54/#comments</comments>
		<pubDate>Wed, 25 Nov 2009 06:41:55 +0000</pubDate>
		<dc:creator>Pavan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[2.0]]></category>
		<category><![CDATA[3.0]]></category>
		<category><![CDATA[fast usb]]></category>
		<category><![CDATA[faster usb]]></category>
		<category><![CDATA[future of usb]]></category>
		<category><![CDATA[usb]]></category>
		<category><![CDATA[usb 2.0]]></category>
		<category><![CDATA[usb 2.0 vs usb 3.0]]></category>
		<category><![CDATA[usb 3.0]]></category>
		<category><![CDATA[usb devices]]></category>

		<guid isPermaLink="false">http://pavansry.wordpress.com/?p=54</guid>
		<description><![CDATA[1. What is USB 3.0 (aka. SuperSpeed USB)? USB 3.0 is the next major revision of the ubiquitous Universal Serial Bus, created in 1996 by a consortium of companies led by Intel to dramatically simplify the connection between host computer and peripheral devices. Fast forwarding to 2009, USB 2.0 has been firmly entrenched as the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pavansry.wordpress.com&amp;blog=9415616&amp;post=54&amp;subd=pavansry&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.everythingusb.com/images/list/superspeed-usb-3-faq-top.jpg" alt="" /></p>
<p><span style="color:#225f9e;"><big><strong><span class="currency_converter_link" title="Convert this amount">1</span><span class="currency_converter_text">. What is USB </span><span class="currency_converter_link" title="Convert this amount">3.0</span><span class="currency_converter_text"> (aka. SuperSpeed USB)?</span></strong></big></span></p>
<p><!--INFOLINKS_ON--> <!-- google_ad_section_start --><span class="currency_converter_text">USB </span><span class="currency_converter_link" title="Convert this amount">3.0</span><span class="currency_converter_text"> is the next major revision of the ubiquitous Universal Serial Bus, created in </span><span class="currency_converter_link" title="Convert this amount">1996</span><span class="currency_converter_text"> by a consortium of companies led by Intel to dramatically simplify the connection between host computer and peripheral devices. Fast forwarding to </span><span class="currency_converter_text">2009</span><span class="currency_converter_text">, USB </span><span class="currency_converter_link" title="Convert this amount">2.0</span><span class="currency_converter_text"> has been firmly entrenched as the de-facto interface standard in the PC world for years (with about </span><span class="currency_converter_link" title="Convert this amount">6</span><span class="currency_converter_text"> billion devices sold), and yet still the need for more speed by ever faster computing hardware and ever greater bandwidth demands again drive us to where a couple of hundred megabits per second is just not fast enough.</span></p>
<p><span class="currency_converter_text">In </span><span class="currency_converter_text">2007</span><span class="currency_converter_text">, Intel demonstrated SuperSpeed USB at the Intel Developer Forum. Version </span><span class="currency_converter_link" title="Convert this amount">1.0</span><span class="currency_converter_text"> of the USB </span><span class="currency_converter_link" title="Convert this amount">3.0</span><span class="currency_converter_text"> (confusing, isn&#8217;t it?) specification was completed on November </span><span class="currency_converter_text">17</span><span class="currency_converter_text">, </span><span class="currency_converter_text">2008</span><span class="currency_converter_text">. As such, the </span><a href="http://www.usb.org/home"><strong>USB Implementers Forum</strong></a><span class="currency_converter_text"> (USB-IF) has taken over managing the specifications and publishes the relevant technical documents necessary to allow the world of developers and hardware manufacturers to begin to develop products around the USB </span><span class="currency_converter_link" title="Convert this amount">3.0</span><span class="currency_converter_text"> protocol.</span></p>
<p><span class="currency_converter_text">In a nutshell, USB </span><span class="currency_converter_link" title="Convert this amount">3.0</span><span class="currency_converter_text"> promises the following:</span></p>
<ul>
<li><span class="currency_converter_text">Higher transfer rates (up to </span><span class="currency_converter_link" title="Convert this amount">4.8</span><span class="currency_converter_text"> Gbps)</span></li>
<li>Increased maximum bus power and increased device current draw to better accommodate power-hungry devices</li>
<li>New power management features</li>
<li>Full-duplex data transfers and support for new transfer types</li>
<li><span class="currency_converter_text">New connectors and cables for higher speed data transfer&#8230;although they are backwards compatible with USB </span><span class="currency_converter_link" title="Convert this amount">2.0</span><span class="currency_converter_text"> devices and computers (more on this later)</span></li>
</ul>
<p><a name="2"></a><span style="color:#225f9e;"><big><strong><span class="currency_converter_link" title="Convert this amount">2</span><span class="currency_converter_text">. Isn&#8217;t USB </span><span class="currency_converter_link" title="Convert this amount">2.0</span><span class="currency_converter_text"> fast enough?</span></strong></big></span><br />
<span class="currency_converter_text"> Well, yes and no. USB </span><span class="currency_converter_link" title="Convert this amount">2.0</span><span class="currency_converter_text"> for many applications provides sufficient bandwidth for a variety of devices and hubs to be connected to one host computer. However, with today&#8217;s ever increasing demands placed on data transfers with high-definition video content, terrabyte storage devices, high megapixel count digital cameras, and multi-gigabyte mobile phones and portable media players, </span><span class="currency_converter_link" title="Convert this amount">480</span><span class="currency_converter_text">Mbps is not really fast anymore.  Furthermore, no USB </span><span class="currency_converter_link" title="Convert this amount">2.0</span><span class="currency_converter_text"> connection could ever come close to the </span><span class="currency_converter_link" title="Convert this amount">480</span><span class="currency_converter_text">Mbps theoretical maximum throughput, making data transfer at around </span><span class="currency_converter_link" title="Convert this amount">320</span><span class="currency_converter_text"> Mbps &#8211; the actual real-world maximum. Similarly, USB </span><span class="currency_converter_link" title="Convert this amount">3.0</span><span class="currency_converter_text"> connections will never achieve </span><span class="currency_converter_link" title="Convert this amount">4.8</span><span class="currency_converter_text"> Gbps, but even </span><span class="currency_converter_text">50</span><span class="currency_converter_text">% of that in practice is almost a </span><span class="currency_converter_link" title="Convert this amount">10</span><span class="currency_converter_text">x improvement over USB </span><span class="currency_converter_link" title="Convert this amount">2.0</span><span class="currency_converter_text">.</span></p>
<p><a name="3"></a><span style="color:#225f9e;"><big><strong><span class="currency_converter_link" title="Convert this amount">3</span><span class="currency_converter_text">. How does USB </span><span class="currency_converter_link" title="Convert this amount">3.0</span><span class="currency_converter_text"> achieve the extra performance?</span></strong></big></span><br />
<span class="currency_converter_text"> USB </span><span class="currency_converter_link" title="Convert this amount">3.0</span><span class="currency_converter_text"> achieves the much higher performance by way of a number of technical changes. Perhaps the most obvious change is an additional physical bus that is added in parallel with the existing USB </span><span class="currency_converter_link" title="Convert this amount">2.0</span><span class="currency_converter_text"> bus. This means that where USB </span><span class="currency_converter_link" title="Convert this amount">2.0</span><span class="currency_converter_text"> previously had </span><span class="currency_converter_link" title="Convert this amount">4</span><span class="currency_converter_text"> wires (power, ground, and a pair for differential data), USB </span><span class="currency_converter_link" title="Convert this amount">3.0</span><span class="currency_converter_text"> adds </span><span class="currency_converter_link" title="Convert this amount">4</span><span class="currency_converter_text"> more for two pairs of differential signals (receive and transmit) for a combined total of </span><span class="currency_converter_link" title="Convert this amount">8</span><span class="currency_converter_text"> connections in the connectors and cabling. These extra two pairs were necessary to support the SuperSpeed USB target bandwidth requirements, because the two wire differential signals of USB </span><span class="currency_converter_link" title="Convert this amount">2.0</span><span class="currency_converter_text"> were not enough.</span></p>
<p><span class="currency_converter_text">Furthermore, the signaling method, while still host-directed, is now asynchronous instead of polling. USB </span><span class="currency_converter_link" title="Convert this amount">3.0</span><span class="currency_converter_text"> utilizes a bi-directional data interface rather than USB </span><span class="currency_converter_link" title="Convert this amount">2.0</span><span class="currency_converter_text">&#8216;s half-duplex arrangement, where data can only flow in one direction at a time. Without getting into any more technical mumbo jumbo, this all combines to give a ten-fold increase in theoretical bandwidth, and a welcome improvement noticeable by anyone when SuperSpeed USB products hit the market.</span></p>
<p><a name="4"></a><span style="color:#225f9e;"><big><strong><span class="currency_converter_link" title="Convert this amount">4</span><span class="currency_converter_text">. What other improvements does USB </span><span class="currency_converter_link" title="Convert this amount">3.0</span><span class="currency_converter_text"> provide?</span></strong></big></span><br />
<span class="currency_converter_text"> The enhancements to SuperSpeed USB are not just for higher data rates, but for improving the interaction between device and host computer. While the core architectural elements are inherited from before, several changes were made to support the dual bus arrangement, and several more are notable for how users can experience the improvement that USB </span><span class="currency_converter_link" title="Convert this amount">3.0</span><span class="currency_converter_text"> makes over USB </span><span class="currency_converter_link" title="Convert this amount">2.0</span><span class="currency_converter_text">:</span></p>
<ul>
<li><strong>More power when needed </strong>
<ul>
<li><span class="currency_converter_text">50</span><span class="currency_converter_text">% more power is provided for unconfigured or suspended devices (</span><span class="currency_converter_link" title="Convert this amount">150</span><span class="currency_converter_text"> mA up from </span><span class="currency_converter_link" title="Convert this amount">100</span><span class="currency_converter_text"> mA), and </span><span class="currency_converter_text">80</span><span class="currency_converter_text">% more power is available for configured devices (</span><span class="currency_converter_link" title="Convert this amount">900</span><span class="currency_converter_text"> mA up from </span><span class="currency_converter_link" title="Convert this amount">500</span><span class="currency_converter_text"> mA). This means that more power-hungry devices could be bus powered, and battery powered devices that previously charged using bus power could potentially charge more quickly.</span></li>
<li><span class="currency_converter_text">A new Powered-B receptable is defined with two extra contacts that enable a devices to provide up to </span><span class="currency_converter_link" title="Convert this amount">1000</span><span class="currency_converter_text"> mA to another device, such as a </span><strong>Wireless USB adapter</strong><span class="currency_converter_text">. This eliminates the need for a power supply to accompany the wireless adapter&#8230;coming just a bit closer to the ideal system of a wireless link without wires (not even for power). In regular wired USB connections to a host or hub, these </span><span class="currency_converter_link" title="Convert this amount">2</span><span class="currency_converter_text"> extra contacts are not used.</span></li>
</ul>
</li>
<li><strong>Less power when it&#8217;s not needed </strong><br />
<span class="currency_converter_text"> Power efficiency was a key objective in the move to USB </span><span class="currency_converter_link" title="Convert this amount">3.0</span><span class="currency_converter_text">. Some examples of more efficient use of power are:</span>
<p>&nbsp;</p>
<ul>
<li>Link level power management, which means either the host computer or the device can initiate a power savings state when idle</li>
<li>The ability for links to enter progressively lower power management states when the link partners are idle</li>
<li>Continuous device polling is eliminated</li>
<li>Broadcast packet transmission through hubs is eliminated</li>
<li>Device and individual function level suspend capabilities allow devices to remove power from all, or portions of their circuitry not in use</li>
</ul>
</li>
<li>Streaming for bulk transfers is supported for faster performance</li>
<li>Isochronous transfers allows devices to enter low power link states between service intervals</li>
<li>Devices can communicate new information such as their latency tolerance to the host, which allows better power performance</li>
</ul>
<p><span class="currency_converter_text">To paint an accurate picture, not everything in USB </span><span class="currency_converter_link" title="Convert this amount">3.0</span><span class="currency_converter_text"> is a clear improvement. Cable length, for one, is expected to have a significant limitation when used in applications demanding the highest possible throughput. Although maximum cable length is not specified in the USB </span><span class="currency_converter_link" title="Convert this amount">3.0</span><span class="currency_converter_text"> specification, the electrical properties of the cable and signal quality limitations may limit the practical length to around </span><span class="currency_converter_text">3</span><span class="currency_converter_text"> metres when multi-gigabit transfer rates are desired. This length, of course, can be extended through the use of hubs.</span></p>
<p><span class="currency_converter_text">Additionally, some SuperSpeed USB hardware, such as hubs, may always be more expensive than their USB </span><span class="currency_converter_link" title="Convert this amount">2.0</span><span class="currency_converter_text"> counterparts. This is because by definition, a SuperSpeed hub contains </span><span class="currency_converter_text">2</span><span class="currency_converter_text"> hubs: one that enumerates as a SuperSpeed hub, and a second one that enumerates as a regular high-speed hub. Until the USB hub silicon becomes an integrated SuperSpeed USB + Hi-Speed USB part, there may always be a significant price difference.</span></p>
<p><span class="currency_converter_text">Some unofficial discussion has surfaced on the web with respect to fiber-optic cabling for longer cable length with USB </span><span class="currency_converter_link" title="Convert this amount">3.0</span><span class="currency_converter_text">. The specification makes no mention of optical cabling, so we conclude that this will be defined in a future spec revision, or left to </span><span class="currency_converter_text">3</span><span class="currency_converter_text">rd party companies to implement cable extension solutions for SuperSpeed USB.</span></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pavansry.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pavansry.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pavansry.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pavansry.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pavansry.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pavansry.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pavansry.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pavansry.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pavansry.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pavansry.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pavansry.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pavansry.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pavansry.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pavansry.wordpress.com/54/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pavansry.wordpress.com&amp;blog=9415616&amp;post=54&amp;subd=pavansry&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pavansry.wordpress.com/2009/11/25/54/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/09e2c5a8934f02f63a3769d084b1a53d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pavansry</media:title>
		</media:content>

		<media:content url="http://www.everythingusb.com/images/list/superspeed-usb-3-faq-top.jpg" medium="image" />
	</item>
		<item>
		<title>Google Chrome OS overview video</title>
		<link>http://pavansry.wordpress.com/2009/11/24/google-chrome-os-overview-video/</link>
		<comments>http://pavansry.wordpress.com/2009/11/24/google-chrome-os-overview-video/#comments</comments>
		<pubDate>Tue, 24 Nov 2009 10:10:58 +0000</pubDate>
		<dc:creator>Pavan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[chrome]]></category>
		<category><![CDATA[details]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[google chrome]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[operating system]]></category>
		<category><![CDATA[os]]></category>
		<category><![CDATA[web browser]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://pavansry.wordpress.com/?p=50</guid>
		<description><![CDATA[Google Chrome OS overview: Google Chrome OS fast-boot: Google Chrome OS security: Google Chrome OS &#38; Open Source:<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pavansry.wordpress.com&amp;blog=9415616&amp;post=50&amp;subd=pavansry&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>Google Chrome OS overview:</strong></p>
<p><strong>Google Chrome OS fast-boot:</strong></p>
<p><strong>Google Chrome OS security:</strong></p>
<p><strong>Google Chrome OS &amp; Open Source:</strong></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pavansry.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pavansry.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pavansry.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pavansry.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pavansry.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pavansry.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pavansry.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pavansry.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pavansry.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pavansry.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pavansry.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pavansry.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pavansry.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pavansry.wordpress.com/50/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pavansry.wordpress.com&amp;blog=9415616&amp;post=50&amp;subd=pavansry&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pavansry.wordpress.com/2009/11/24/google-chrome-os-overview-video/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/09e2c5a8934f02f63a3769d084b1a53d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pavansry</media:title>
		</media:content>
	</item>
		<item>
		<title>How to Update Your Facebook Status with Twitter</title>
		<link>http://pavansry.wordpress.com/2009/11/12/how-to-update-your-facebook-status-with-twitter/</link>
		<comments>http://pavansry.wordpress.com/2009/11/12/how-to-update-your-facebook-status-with-twitter/#comments</comments>
		<pubDate>Thu, 12 Nov 2009 07:43:15 +0000</pubDate>
		<dc:creator>Pavan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[micro blog]]></category>
		<category><![CDATA[online status]]></category>
		<category><![CDATA[status update]]></category>
		<category><![CDATA[synchronize]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://pavansry.wordpress.com/?p=31</guid>
		<description><![CDATA[Did you know that it is possible to have Twitter automatically update your Facebook page? It’s actually very simple. In fact, I haven’t manually updated my Facebook status in months. To get this process working, follow these six simple steps. It shouldn’t take you more than five minutes, max. These instructions assume that you already [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pavansry.wordpress.com&amp;blog=9415616&amp;post=31&amp;subd=pavansry&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Did you know that it is possible to have Twitter automatically update your Facebook page? It’s actually very simple. In fact, I haven’t manually updated my Facebook status in months.</p>
<p><img title="twitter logo with arrow pointing to facebook pages" src="http://michaelhyatt.com/wp-content/uploads/2009/02/how-to-update-your-facebook-status-with-twitter.jpg" alt="twitter logo with arrow pointing to facebook pages" width="430" height="235" /></p>
<p>To get this process working, follow these six simple steps. It shouldn’t take you more than five minutes, max. These instructions assume that you already have both a Facebook account and a Twitter account.</p>
<ol>
<li>Make sure you are logged into Facebook. Now go to the Facebook’s <a title="the facebook twitter application page" href="http://www.facebook.com/apps/application.php?id=2231777543&amp;ref=s&amp;ref=s" target="_blank">Twitter application page</a>. Now click on the <strong>Go to Application</strong> button. It looks like this:<br />
<img title="how-to-update-your-facebook-status-wiith-twitter-01.jpg" src="http://michaelhyatt.com/wp-content/uploads/2009/02/how-to-update-your-facebook-status-wiith-twitter-01.jpg" alt="how-to-update-your-facebook-status-wiith-twitter-01.jpg" width="198" height="62" /></li>
<li>The application will now ask you to confirm that Twitter can access your Facebook information. Click on the <strong>Allow</strong> button.<br />
<img title="how-to-update-your-facebook-status-wiith-twitter-02" src="http://michaelhyatt.com/wp-content/uploads/2009/02/how-to-update-your-facebook-status-wiith-twitter-02.jpg" alt="how-to-update-your-facebook-status-wiith-twitter-02" width="198" height="62" /></li>
<li>Now log into your Twitter account by entering your Twitter username and password. The screen looks similar to this:<a href="http://michaelhyatt.com/wp-content/uploads/2009/02/how-to-update-your-facebook-status-wiith-twitter-03.jpg"><br />
<img title="how-to-update-your-facebook-status-wiith-twitter-03" src="http://michaelhyatt.com/wp-content/uploads/2009/02/how-to-update-your-facebook-status-wiith-twitter-03-tm.jpg" alt="how-to-update-your-facebook-status-wiith-twitter-03" width="400" height="177" /></a><br />
Click on the <strong>Login</strong> button.</li>
<li>You can now actually use Twitter from within Facebook. The screen looks like this:<a href="http://michaelhyatt.com/wp-content/uploads/2009/02/how-to-update-your-facebook-status-wiith-twitter-04.jpg"><br />
<img title="how-to-update-your-facebook-status-wiith-twitter-04" src="http://michaelhyatt.com/wp-content/uploads/2009/02/how-to-update-your-facebook-status-wiith-twitter-04-tm.jpg" alt="how-to-update-your-facebook-status-wiith-twitter-04" width="400" height="146" /></a><br />
Personally, I never use this. I want the <em>reverse</em> of this. I want to update my Facebook status from Twitter. Therefore, click on the <strong>Allow Twitter to Update Your Facebook Status</strong> button in the upper-right of the screen.</li>
<li>You should get a confirmation screen that looks similar to this:<a href="http://michaelhyatt.com/wp-content/uploads/2009/02/how-to-update-your-facebook-status-wiith-twitter-05.jpg"><br />
<img title="how-to-update-your-facebook-status-wiith-twitter-05" src="http://michaelhyatt.com/wp-content/uploads/2009/02/how-to-update-your-facebook-status-wiith-twitter-05-tm.jpg" alt="how-to-update-your-facebook-status-wiith-twitter-05" width="400" height="116" /></a><br />
Now confirm that you are willing to let Twitter update your Facebook status by clicking the <strong>Allow Status Updates</strong> button.</li>
<li>After you click this button, you will go to the Twitter application. Don’t Twitter anything from here. Instead, go to your Facebook Home page, by clicking the <strong>Home</strong> link on the Facebook menu.Now you can test the connection by going to your favorite Twitter application or the Twitter web page and entering a tweet. Wait a minute or two and go back to your Facebook home page and refreshing it. Your most recent tweet should be displayed as your Facebook status. This is how my status looked:<a href="http://michaelhyatt.com/wp-content/uploads/2009/02/how-to-update-your-facebook-status-wiith-twitter-06.jpg"><img title="how-to-update-your-facebook-status-wiith-twitter-06" src="http://michaelhyatt.com/wp-content/uploads/2009/02/how-to-update-your-facebook-status-wiith-twitter-06-tm.jpg" alt="how-to-update-your-facebook-status-wiith-twitter-06" width="400" height="111" /></a></li>
</ol>
<p>That’s all there is to it. Now every time you Twitter something, your Facebook status will be automatically updated.</p>
<p><strong>Update: </strong>If you don’t want to send every one of your tweets to Facebook, then check out <a title="Facebook app Selective Twitter Status" href="http://apps.facebook.com/selectivetwitter/" target="_blank">Selective Twitter Status</a>. It allows you to designate the tweets you want to appear on Facebook by end a tweet with the <strong>#fb</strong> “hashtag” in your post. Only those tweets with the hash tag at the end will be posted on Facebook.</p>
<p><a href="http://www.twitter.com/pavan_sry" style="border-bottom:1px dotted #5593B0;color:#23617E;text-decoration:none;font-size:20px;line-height:20px;"><img src="http://www.enivaevents.com/setsail_2009/images/twitter_icon.png" width="30" />Find me on Twitter</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pavansry.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pavansry.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pavansry.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pavansry.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pavansry.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pavansry.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pavansry.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pavansry.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pavansry.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pavansry.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pavansry.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pavansry.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pavansry.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pavansry.wordpress.com/31/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pavansry.wordpress.com&amp;blog=9415616&amp;post=31&amp;subd=pavansry&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pavansry.wordpress.com/2009/11/12/how-to-update-your-facebook-status-with-twitter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/09e2c5a8934f02f63a3769d084b1a53d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pavansry</media:title>
		</media:content>

		<media:content url="http://michaelhyatt.com/wp-content/uploads/2009/02/how-to-update-your-facebook-status-with-twitter.jpg" medium="image">
			<media:title type="html">twitter logo with arrow pointing to facebook pages</media:title>
		</media:content>

		<media:content url="http://michaelhyatt.com/wp-content/uploads/2009/02/how-to-update-your-facebook-status-wiith-twitter-01.jpg" medium="image">
			<media:title type="html">how-to-update-your-facebook-status-wiith-twitter-01.jpg</media:title>
		</media:content>

		<media:content url="http://michaelhyatt.com/wp-content/uploads/2009/02/how-to-update-your-facebook-status-wiith-twitter-02.jpg" medium="image">
			<media:title type="html">how-to-update-your-facebook-status-wiith-twitter-02</media:title>
		</media:content>

		<media:content url="http://michaelhyatt.com/wp-content/uploads/2009/02/how-to-update-your-facebook-status-wiith-twitter-03-tm.jpg" medium="image">
			<media:title type="html">how-to-update-your-facebook-status-wiith-twitter-03</media:title>
		</media:content>

		<media:content url="http://michaelhyatt.com/wp-content/uploads/2009/02/how-to-update-your-facebook-status-wiith-twitter-04-tm.jpg" medium="image">
			<media:title type="html">how-to-update-your-facebook-status-wiith-twitter-04</media:title>
		</media:content>

		<media:content url="http://michaelhyatt.com/wp-content/uploads/2009/02/how-to-update-your-facebook-status-wiith-twitter-05-tm.jpg" medium="image">
			<media:title type="html">how-to-update-your-facebook-status-wiith-twitter-05</media:title>
		</media:content>

		<media:content url="http://michaelhyatt.com/wp-content/uploads/2009/02/how-to-update-your-facebook-status-wiith-twitter-06-tm.jpg" medium="image">
			<media:title type="html">how-to-update-your-facebook-status-wiith-twitter-06</media:title>
		</media:content>

		<media:content url="http://www.enivaevents.com/setsail_2009/images/twitter_icon.png" medium="image" />
	</item>
		<item>
		<title>This is how an Intel processor is manifactured -Ans</title>
		<link>http://pavansry.wordpress.com/2009/11/11/this-is-how-an-intel-processor-is-manifactured-ans/</link>
		<comments>http://pavansry.wordpress.com/2009/11/11/this-is-how-an-intel-processor-is-manifactured-ans/#comments</comments>
		<pubDate>Wed, 11 Nov 2009 10:40:56 +0000</pubDate>
		<dc:creator>Pavan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[amd]]></category>
		<category><![CDATA[central processing unit]]></category>
		<category><![CDATA[cpu]]></category>
		<category><![CDATA[create]]></category>
		<category><![CDATA[creating]]></category>
		<category><![CDATA[creation]]></category>
		<category><![CDATA[intel]]></category>
		<category><![CDATA[processor]]></category>
		<category><![CDATA[processors]]></category>
		<category><![CDATA[sand]]></category>
		<category><![CDATA[semiconductor]]></category>
		<category><![CDATA[silica]]></category>
		<category><![CDATA[silicon]]></category>

		<guid isPermaLink="false">http://pavansry.wordpress.com/?p=22</guid>
		<description><![CDATA[very interesting.. hope every one enjoy! Sand. Made up of 25 percent silicon, is, after oxygen, the second most abundant chemical element that&#8217;s in the earth&#8217;s crust. Sand, especially quartz, has high percentages of silicon in the form of silicon dioxide (SiO2) and is the base ingredient for semiconductor manufacturing. After procuring raw sand and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pavansry.wordpress.com&amp;blog=9415616&amp;post=22&amp;subd=pavansry&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>very interesting.. hope every one enjoy!</strong>
<div><img width="150" alt="cid:image029.jpg@01CA377C.FDDF6970" src="http://in.mg50.mail.yahoo.com/ya/download?mid=1_3603235_AOISaMsAAUtYSvposAEoGFzMlg0&amp;pid=8&amp;fid=Inbox&amp;inline=1" /></p>
<div>Sand. Made up of 25  percent silicon, is, after oxygen, the second most abundant chemical  element that&#8217;s in the earth&#8217;s crust. Sand, especially quartz, has high  percentages of silicon in the form of silicon dioxide (SiO2) and is the  base ingredient for semiconductor manufacturing.</p>
<div><img width="150" alt="cid:image030.jpg@01CA377C.FDDF6970" src="http://in.mg50.mail.yahoo.com/ya/download?mid=1%5f3603235%5fAOISaMsAAUtYSvposAEoGFzMlg0&amp;pid=4&amp;fid=Inbox&amp;inline=1" /></p>
<div>After procuring raw  sand and separating the silicon, the excess material is disposed of and  the silicon is purified in multiple steps to finally reach  semiconductor manufacturing quality which is called electronic grade  silicon. The resulting purity is so great that electronic grade silicon  may only have one alien atom for every one billion silicon atoms. After  the purification process, the silicon enters the melting phase. In this  picture you can see how one big crystal is grown from the purified  silicon melt. The resulting mono-crystal is called an ingot.</p>
<div><img width="150" alt="cid:image031.jpg@01CA377C.FDDF6970" src="http://in.mg50.mail.yahoo.com/ya/download?mid=1%5f3603235%5fAOISaMsAAUtYSvposAEoGFzMlg0&amp;pid=3&amp;fid=Inbox&amp;inline=1" /></p>
<div>A mono-crystal ingot is  produced from electronic grade silicon. One ingot weighs approximately  100 kilograms (or 220 pounds) and has a silicon purity of 99.9999  percent.</p>
<div><img width="150" alt="cid:image032.jpg@01CA377C.FDDF6970" src="http://in.mg50.mail.yahoo.com/ya/download?mid=1%5f3603235%5fAOISaMsAAUtYSvposAEoGFzMlg0&amp;pid=20&amp;fid=Inbox&amp;inline=1" /></p>
<div>The ingot is then moved  onto the slicing phase where individual silicon discs, called wafers,  are sliced thin. Some ingots can stand higher than five feet. Several  different diameters of ingots exist depending on the required wafer  size. Today, CPUs are commonly made on 300 mm wafers.</p>
<div><img width="150" alt="cid:image033.jpg@01CA377C.FDDF6970" src="http://in.mg50.mail.yahoo.com/ya/download?mid=1%5f3603235%5fAOISaMsAAUtYSvposAEoGFzMlg0&amp;pid=5&amp;fid=Inbox&amp;inline=1" /></p>
<div>Once cut, the wafers  are polished until they have flawless, mirror-smooth surfaces. Intel  doesn&#8217;t produce its own ingots and wafers, and instead purchases  manufacturing-ready wafers from third-party companies. Intel’s advanced  45 nm High-K/Metal Gate process uses wafers with a diameter of 300 mm  (or 12-inches). When Intel first began making chips, it printed  circuits on 50 mm (2-inches) wafers. These days, Intel uses 300 mm  wafers, resulting in decreased costs per chip.</p>
<div><img width="150" alt="cid:image034.jpg@01CA377C.FDDF6970" src="http://in.mg50.mail.yahoo.com/ya/download?mid=1%5f3603235%5fAOISaMsAAUtYSvposAEoGFzMlg0&amp;pid=10&amp;fid=Inbox&amp;inline=1" /></p>
<div>The blue liquid,  depicted above, is a photo resist finish similar to those used in film  for photography. The wafer spins during this step to allow an  evenly-distributed coating that&#8217;s smooth and also very thin.</p>
<div><img width="150" alt="cid:image035.jpg@01CA377C.FDDF6970" src="http://in.mg50.mail.yahoo.com/ya/download?mid=1%5f3603235%5fAOISaMsAAUtYSvposAEoGFzMlg0&amp;pid=25&amp;fid=Inbox&amp;inline=1" /></p>
<div>At this stage, the  photo-resistant finish is exposed to ultra violet (UV) light. The  chemical reaction triggered by the UV light is similar to what happens  to film material in a camera the moment you press the shutter button.</p>
<p>                            Areas of the resist on the wafer that have been exposed to UV light  will become soluble. The exposure is done using masks that act like  stencils. When used with UV light, masks create the various circuit  patterns. The building of a CPU essentially repeats this process over  and over until multiple layers are stacked on top of each other.</p>
<p>                            A lens (middle) reduces the mask&#8217;s image to a small focal point.  The resulting &quot;print&quot; on the wafer is typically four times smaller,  linearly, than the mask&#8217;s pattern.</p>
<div><img width="150" alt="cid:image036.jpg@01CA377C.FDDF6970" src="http://in.mg50.mail.yahoo.com/ya/download?mid=1%5f3603235%5fAOISaMsAAUtYSvposAEoGFzMlg0&amp;pid=17&amp;fid=Inbox&amp;inline=1" /></p>
<div>In the picture we have  a representation of what a single transistor would appear like if we  could see it with the naked eye. A transistor acts as a switch,  controlling the flow of electrical current in a computer chip. Intel  researchers have developed transistors so small that they claim roughly  30 million of them could fit on the head of a pin.</p>
<div><img width="150" alt="cid:image037.jpg@01CA377C.FDDF6970" src="http://in.mg50.mail.yahoo.com/ya/download?mid=1%5f3603235%5fAOISaMsAAUtYSvposAEoGFzMlg0&amp;pid=24&amp;fid=Inbox&amp;inline=1" /></p>
<div>After being exposed to  UV light, the exposed blue photo resist areas are completely dissolved  by a solvent. This reveals a pattern of photo resist made by the mask.  The beginnings of transistors, interconnects, and other electrical  contacts begin to grow from this point.</p>
<div><img width="150" alt="cid:image038.jpg@01CA377C.FDDF6970" src="http://in.mg50.mail.yahoo.com/ya/download?mid=1%5f3603235%5fAOISaMsAAUtYSvposAEoGFzMlg0&amp;pid=11&amp;fid=Inbox&amp;inline=1" /></p>
<div>The photo resist layer  protects wafer material that should not be etched away. Areas that were  exposed will be etched away with chemicals.</p>
<div><img width="150" alt="cid:image039.jpg@01CA377C.FDDF6970" src="http://in.mg50.mail.yahoo.com/ya/download?mid=1%5f3603235%5fAOISaMsAAUtYSvposAEoGFzMlg0&amp;pid=16&amp;fid=Inbox&amp;inline=1" /></p>
<div>After the etching, the photo resist is removed and the desired shape becomes visible.</p>
<div><img width="150" alt="cid:image040.jpg@01CA377C.FDDF6970" src="http://in.mg50.mail.yahoo.com/ya/download?mid=1%5f3603235%5fAOISaMsAAUtYSvposAEoGFzMlg0&amp;pid=14&amp;fid=Inbox&amp;inline=1" /></p>
<div>More photo resist  (blue) is applied and then re-exposed to UV light. Exposed photo resist  is then washed off again before the next step, which is called ion  doping. This is the step where ion particles are exposed to the wafer,  allowing the silicon to change its chemical properties in a way that  allows the CPU to control the flow of electricity.</p>
<div><img width="150" alt="cid:image041.jpg@01CA377C.FDDF6970" src="http://in.mg50.mail.yahoo.com/ya/download?mid=1%5f3603235%5fAOISaMsAAUtYSvposAEoGFzMlg0&amp;pid=18&amp;fid=Inbox&amp;inline=1" /></p>
<div>Through a process  called ion implantation (one form of a process called doping) the  exposed areas of the silicon wafer are bombarded with ions. Ions are  implanted in the silicon wafer to alter the way silicon?i these areas  conduct electricity. Ions are propelled onto the surface of the wafer  at very high velocities. An electrical field accelerates the ions to a  speed of over 300,000 km/hour (roughly 185,000 mph)</p>
<div><img width="150" alt="cid:image042.jpg@01CA377C.FDDF6970" src="http://in.mg50.mail.yahoo.com/ya/download?mid=1%5f3603235%5fAOISaMsAAUtYSvposAEoGFzMlg0&amp;pid=21&amp;fid=Inbox&amp;inline=1" /></p>
<div>After the ion  implantation, the photo resist will be removed and the material that  should have been doped (green) now has alien atoms implanted.</p>
<div><img width="150" alt="cid:image043.jpg@01CA377C.FDDF6970" src="http://in.mg50.mail.yahoo.com/ya/download?mid=1%5f3603235%5fAOISaMsAAUtYSvposAEoGFzMlg0&amp;pid=29&amp;fid=Inbox&amp;inline=1" /></p>
<div>This transistor is  close to being finished. Three holes have been etched into the  insulation layer (magenta color) above the transistor. These three  holes will be filled with copper, which will make up the connections to  other transistors.</p>
<div><img width="150" alt="cid:image044.jpg@01CA377C.FDDF6970" src="http://in.mg50.mail.yahoo.com/ya/download?mid=1%5f3603235%5fAOISaMsAAUtYSvposAEoGFzMlg0&amp;pid=12&amp;fid=Inbox&amp;inline=1" /></p>
<div>The wafers are put into  a copper sulphate solution at this stage. Copper ions are deposited  onto the transistor through a process called electroplating. The copper  ions travel from the positive terminal (anode) to the negative terminal  (cathode) which is represented by the wafer.</p>
<div><img width="150" alt="cid:image045.jpg@01CA377C.FDDF6970" src="http://in.mg50.mail.yahoo.com/ya/download?mid=1%5f3603235%5fAOISaMsAAUtYSvposAEoGFzMlg0&amp;pid=15&amp;fid=Inbox&amp;inline=1" /></p>
<div>The copper ions settle as a thin layer on the wafer surface.</p>
<div><img width="150" alt="cid:image046.jpg@01CA377C.FDDF6970" src="http://in.mg50.mail.yahoo.com/ya/download?mid=1%5f3603235%5fAOISaMsAAUtYSvposAEoGFzMlg0&amp;pid=13&amp;fid=Inbox&amp;inline=1" /></p>
<div>The excess material is polished off leaving a very thin layer of copper.</p>
<div><img width="150" alt="cid:image047.jpg@01CA377C.FDDF6970" src="http://in.mg50.mail.yahoo.com/ya/download?mid=1%5f3603235%5fAOISaMsAAUtYSvposAEoGFzMlg0&amp;pid=6&amp;fid=Inbox&amp;inline=1" /></p>
<div>Multiple metal layers  are created to interconnects (think wires) in between the various  transistors. How these connections have to be “wired” is determined by  the architecture and design teams that develop the functionality of the  respective processor (for example, Intel’s Core i7 processor). While  computer chips look extremely flat, they may actually have over 20  layers to form complex circuitry. If you look at a magnified view of a  chip, you will see an intricate network of circuit lines and  transistors that look like a futuristic, multi-layered highway system.</p>
<div><img width="150" alt="cid:image048.jpg@01CA377C.FDDF6970" src="http://in.mg50.mail.yahoo.com/ya/download?mid=1%5f3603235%5fAOISaMsAAUtYSvposAEoGFzMlg0&amp;pid=27&amp;fid=Inbox&amp;inline=1" /></p>
<div>This fraction of a  ready wafer is being put through a first functionality test. In this  stage test patterns are fed into every single chip and the response  from the chip monitored and compared to &quot;the right answer.&quot;</p>
<div><img width="150" alt="cid:image049.jpg@01CA377C.FDDF6970" src="http://in.mg50.mail.yahoo.com/ya/download?mid=1%5f3603235%5fAOISaMsAAUtYSvposAEoGFzMlg0&amp;pid=7&amp;fid=Inbox&amp;inline=1" /></p>
<div>After tests determine  that the wafer has a good yield of functioning processor units, the  wafer is cut into pieces (called dies).</p>
<div><img width="150" alt="cid:image050.jpg@01CA377C.FDDF6970" src="http://in.mg50.mail.yahoo.com/ya/download?mid=1%5f3603235%5fAOISaMsAAUtYSvposAEoGFzMlg0&amp;pid=19&amp;fid=Inbox&amp;inline=1" /></p>
<div>The dies that responded  with the right answer to the test pattern will be put forward for the  next step (packaging). Bad dies are discarded. Several years ago, Intel  made key chains out of bad CPU dies.</p>
<div><img width="150" alt="cid:image051.jpg@01CA377C.FDDF6970" src="http://in.mg50.mail.yahoo.com/ya/download?mid=1%5f3603235%5fAOISaMsAAUtYSvposAEoGFzMlg0&amp;pid=22&amp;fid=Inbox&amp;inline=1" /></p>
<div>This is an individual  die, which has been cut out in the previous step (slicing). The die  shown here is a die of an Intel Core i7 processor.</p>
<div><img width="150" alt="cid:image052.jpg@01CA377C.FDDF6970" src="http://in.mg50.mail.yahoo.com/ya/download?mid=1%5f3603235%5fAOISaMsAAUtYSvposAEoGFzMlg0&amp;pid=26&amp;fid=Inbox&amp;inline=1" /></p>
<div>The substrate, the die,  and the heatspreader are put together to form a completed processor.  The green substrate builds the electrical and mechanical interface for  the processor to interact with the rest of the PC system. The silver  heatspreader is a thermal interface where a cooling solution will be  applied. This will keep the processor cool during operation.</p>
<div><img width="150" alt="cid:image053.jpg@01CA377C.FDDF6970" src="http://in.mg50.mail.yahoo.com/ya/download?mid=1%5f3603235%5fAOISaMsAAUtYSvposAEoGFzMlg0&amp;pid=23&amp;fid=Inbox&amp;inline=1" /></p>
<div>A microprocessor is the  most complex manufactured product on earth. In fact, it takes hundreds  of steps and only the most important ones have been visualized in this  picture story.</p>
<div><img width="150" alt="cid:image054.jpg@01CA377C.FDDF6970" src="http://in.mg50.mail.yahoo.com/ya/download?mid=1%5f3603235%5fAOISaMsAAUtYSvposAEoGFzMlg0&amp;pid=9&amp;fid=Inbox&amp;inline=1" /></p>
<div>During this final test  the processors will be tested for their key characteristics (among the  tested characteristics are power dissipation and maximum frequency).</p>
<div><img width="150" alt="cid:image055.jpg@01CA377C.FDDF6970" src="http://in.mg50.mail.yahoo.com/ya/download?mid=1%5f3603235%5fAOISaMsAAUtYSvposAEoGFzMlg0&amp;pid=2&amp;fid=Inbox&amp;inline=1" /></p>
<div>Based on the test  result of class testing processors with the same capabilities are put  into the same transporting trays. This process is called &quot;binning&quot;.  Binning determines the maximum operating frequency of a processor, and  batches are divided and sold according to stable specifications.</p>
<div><img width="150" alt="cid:image056.jpg@01CA377C.FDDF6970" src="http://in.mg50.mail.yahoo.com/ya/download?mid=1%5f3603235%5fAOISaMsAAUtYSvposAEoGFzMlg0&amp;pid=28&amp;fid=Inbox&amp;inline=1" /></p>
<div>The manufactured and  tested processors (again Intel Core i7 processor is shown here) either  go to system manufacturers in trays or into retail stores in a box.  Many thanks to Intel for supplying the text and photos in this picture  story. Check out Intel&#8217;s site for full size images of this entire  process.</p>
<div><strong>Please do not print this email unless it is absolutely necessary. </strong></div>
</p></div>
</p></div>
</p></div>
</p></div>
</p></div>
</p></div>
</p></div>
</p></div>
</p></div>
</p></div>
</p></div>
</p></div>
</p></div>
</p></div>
</p></div>
</p></div>
</p></div>
</p></div>
</p></div>
</p></div>
</p></div>
</p></div>
</p></div>
</p></div>
</p></div>
</p></div>
</p></div>
</p></div>
</p></div>
</p></div>
</p></div>
</p></div>
</p></div>
</p></div>
</p></div>
</p></div>
</p></div>
</p></div>
</p></div>
</p></div>
</p></div>
</p></div>
</p></div>
</p></div>
</p></div>
</p></div>
</p></div>
</p></div>
</p></div>
</p></div>
</p></div>
</p></div>
</p></div>
</p></div>
</p></div>
</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pavansry.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pavansry.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pavansry.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pavansry.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pavansry.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pavansry.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pavansry.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pavansry.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pavansry.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pavansry.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pavansry.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pavansry.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pavansry.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pavansry.wordpress.com/22/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pavansry.wordpress.com&amp;blog=9415616&amp;post=22&amp;subd=pavansry&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pavansry.wordpress.com/2009/11/11/this-is-how-an-intel-processor-is-manifactured-ans/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/09e2c5a8934f02f63a3769d084b1a53d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pavansry</media:title>
		</media:content>

		<media:content url="http://in.mg50.mail.yahoo.com/ya/download?mid=1_3603235_AOISaMsAAUtYSvposAEoGFzMlg0&#38;pid=8&#38;fid=Inbox&#38;inline=1" medium="image">
			<media:title type="html">cid:image029.jpg@01CA377C.FDDF6970</media:title>
		</media:content>

		<media:content url="http://in.mg50.mail.yahoo.com/ya/download?mid=1%5f3603235%5fAOISaMsAAUtYSvposAEoGFzMlg0&#38;pid=4&#38;fid=Inbox&#38;inline=1" medium="image">
			<media:title type="html">cid:image030.jpg@01CA377C.FDDF6970</media:title>
		</media:content>

		<media:content url="http://in.mg50.mail.yahoo.com/ya/download?mid=1%5f3603235%5fAOISaMsAAUtYSvposAEoGFzMlg0&#38;pid=3&#38;fid=Inbox&#38;inline=1" medium="image">
			<media:title type="html">cid:image031.jpg@01CA377C.FDDF6970</media:title>
		</media:content>

		<media:content url="http://in.mg50.mail.yahoo.com/ya/download?mid=1%5f3603235%5fAOISaMsAAUtYSvposAEoGFzMlg0&#38;pid=20&#38;fid=Inbox&#38;inline=1" medium="image">
			<media:title type="html">cid:image032.jpg@01CA377C.FDDF6970</media:title>
		</media:content>

		<media:content url="http://in.mg50.mail.yahoo.com/ya/download?mid=1%5f3603235%5fAOISaMsAAUtYSvposAEoGFzMlg0&#38;pid=5&#38;fid=Inbox&#38;inline=1" medium="image">
			<media:title type="html">cid:image033.jpg@01CA377C.FDDF6970</media:title>
		</media:content>

		<media:content url="http://in.mg50.mail.yahoo.com/ya/download?mid=1%5f3603235%5fAOISaMsAAUtYSvposAEoGFzMlg0&#38;pid=10&#38;fid=Inbox&#38;inline=1" medium="image">
			<media:title type="html">cid:image034.jpg@01CA377C.FDDF6970</media:title>
		</media:content>

		<media:content url="http://in.mg50.mail.yahoo.com/ya/download?mid=1%5f3603235%5fAOISaMsAAUtYSvposAEoGFzMlg0&#38;pid=25&#38;fid=Inbox&#38;inline=1" medium="image">
			<media:title type="html">cid:image035.jpg@01CA377C.FDDF6970</media:title>
		</media:content>

		<media:content url="http://in.mg50.mail.yahoo.com/ya/download?mid=1%5f3603235%5fAOISaMsAAUtYSvposAEoGFzMlg0&#38;pid=17&#38;fid=Inbox&#38;inline=1" medium="image">
			<media:title type="html">cid:image036.jpg@01CA377C.FDDF6970</media:title>
		</media:content>

		<media:content url="http://in.mg50.mail.yahoo.com/ya/download?mid=1%5f3603235%5fAOISaMsAAUtYSvposAEoGFzMlg0&#38;pid=24&#38;fid=Inbox&#38;inline=1" medium="image">
			<media:title type="html">cid:image037.jpg@01CA377C.FDDF6970</media:title>
		</media:content>

		<media:content url="http://in.mg50.mail.yahoo.com/ya/download?mid=1%5f3603235%5fAOISaMsAAUtYSvposAEoGFzMlg0&#38;pid=11&#38;fid=Inbox&#38;inline=1" medium="image">
			<media:title type="html">cid:image038.jpg@01CA377C.FDDF6970</media:title>
		</media:content>

		<media:content url="http://in.mg50.mail.yahoo.com/ya/download?mid=1%5f3603235%5fAOISaMsAAUtYSvposAEoGFzMlg0&#38;pid=16&#38;fid=Inbox&#38;inline=1" medium="image">
			<media:title type="html">cid:image039.jpg@01CA377C.FDDF6970</media:title>
		</media:content>

		<media:content url="http://in.mg50.mail.yahoo.com/ya/download?mid=1%5f3603235%5fAOISaMsAAUtYSvposAEoGFzMlg0&#38;pid=14&#38;fid=Inbox&#38;inline=1" medium="image">
			<media:title type="html">cid:image040.jpg@01CA377C.FDDF6970</media:title>
		</media:content>

		<media:content url="http://in.mg50.mail.yahoo.com/ya/download?mid=1%5f3603235%5fAOISaMsAAUtYSvposAEoGFzMlg0&#38;pid=18&#38;fid=Inbox&#38;inline=1" medium="image">
			<media:title type="html">cid:image041.jpg@01CA377C.FDDF6970</media:title>
		</media:content>

		<media:content url="http://in.mg50.mail.yahoo.com/ya/download?mid=1%5f3603235%5fAOISaMsAAUtYSvposAEoGFzMlg0&#38;pid=21&#38;fid=Inbox&#38;inline=1" medium="image">
			<media:title type="html">cid:image042.jpg@01CA377C.FDDF6970</media:title>
		</media:content>

		<media:content url="http://in.mg50.mail.yahoo.com/ya/download?mid=1%5f3603235%5fAOISaMsAAUtYSvposAEoGFzMlg0&#38;pid=29&#38;fid=Inbox&#38;inline=1" medium="image">
			<media:title type="html">cid:image043.jpg@01CA377C.FDDF6970</media:title>
		</media:content>

		<media:content url="http://in.mg50.mail.yahoo.com/ya/download?mid=1%5f3603235%5fAOISaMsAAUtYSvposAEoGFzMlg0&#38;pid=12&#38;fid=Inbox&#38;inline=1" medium="image">
			<media:title type="html">cid:image044.jpg@01CA377C.FDDF6970</media:title>
		</media:content>

		<media:content url="http://in.mg50.mail.yahoo.com/ya/download?mid=1%5f3603235%5fAOISaMsAAUtYSvposAEoGFzMlg0&#38;pid=15&#38;fid=Inbox&#38;inline=1" medium="image">
			<media:title type="html">cid:image045.jpg@01CA377C.FDDF6970</media:title>
		</media:content>

		<media:content url="http://in.mg50.mail.yahoo.com/ya/download?mid=1%5f3603235%5fAOISaMsAAUtYSvposAEoGFzMlg0&#38;pid=13&#38;fid=Inbox&#38;inline=1" medium="image">
			<media:title type="html">cid:image046.jpg@01CA377C.FDDF6970</media:title>
		</media:content>

		<media:content url="http://in.mg50.mail.yahoo.com/ya/download?mid=1%5f3603235%5fAOISaMsAAUtYSvposAEoGFzMlg0&#38;pid=6&#38;fid=Inbox&#38;inline=1" medium="image">
			<media:title type="html">cid:image047.jpg@01CA377C.FDDF6970</media:title>
		</media:content>

		<media:content url="http://in.mg50.mail.yahoo.com/ya/download?mid=1%5f3603235%5fAOISaMsAAUtYSvposAEoGFzMlg0&#38;pid=27&#38;fid=Inbox&#38;inline=1" medium="image">
			<media:title type="html">cid:image048.jpg@01CA377C.FDDF6970</media:title>
		</media:content>

		<media:content url="http://in.mg50.mail.yahoo.com/ya/download?mid=1%5f3603235%5fAOISaMsAAUtYSvposAEoGFzMlg0&#38;pid=7&#38;fid=Inbox&#38;inline=1" medium="image">
			<media:title type="html">cid:image049.jpg@01CA377C.FDDF6970</media:title>
		</media:content>

		<media:content url="http://in.mg50.mail.yahoo.com/ya/download?mid=1%5f3603235%5fAOISaMsAAUtYSvposAEoGFzMlg0&#38;pid=19&#38;fid=Inbox&#38;inline=1" medium="image">
			<media:title type="html">cid:image050.jpg@01CA377C.FDDF6970</media:title>
		</media:content>

		<media:content url="http://in.mg50.mail.yahoo.com/ya/download?mid=1%5f3603235%5fAOISaMsAAUtYSvposAEoGFzMlg0&#38;pid=22&#38;fid=Inbox&#38;inline=1" medium="image">
			<media:title type="html">cid:image051.jpg@01CA377C.FDDF6970</media:title>
		</media:content>

		<media:content url="http://in.mg50.mail.yahoo.com/ya/download?mid=1%5f3603235%5fAOISaMsAAUtYSvposAEoGFzMlg0&#38;pid=26&#38;fid=Inbox&#38;inline=1" medium="image">
			<media:title type="html">cid:image052.jpg@01CA377C.FDDF6970</media:title>
		</media:content>

		<media:content url="http://in.mg50.mail.yahoo.com/ya/download?mid=1%5f3603235%5fAOISaMsAAUtYSvposAEoGFzMlg0&#38;pid=23&#38;fid=Inbox&#38;inline=1" medium="image">
			<media:title type="html">cid:image053.jpg@01CA377C.FDDF6970</media:title>
		</media:content>

		<media:content url="http://in.mg50.mail.yahoo.com/ya/download?mid=1%5f3603235%5fAOISaMsAAUtYSvposAEoGFzMlg0&#38;pid=9&#38;fid=Inbox&#38;inline=1" medium="image">
			<media:title type="html">cid:image054.jpg@01CA377C.FDDF6970</media:title>
		</media:content>

		<media:content url="http://in.mg50.mail.yahoo.com/ya/download?mid=1%5f3603235%5fAOISaMsAAUtYSvposAEoGFzMlg0&#38;pid=2&#38;fid=Inbox&#38;inline=1" medium="image">
			<media:title type="html">cid:image055.jpg@01CA377C.FDDF6970</media:title>
		</media:content>

		<media:content url="http://in.mg50.mail.yahoo.com/ya/download?mid=1%5f3603235%5fAOISaMsAAUtYSvposAEoGFzMlg0&#38;pid=28&#38;fid=Inbox&#38;inline=1" medium="image">
			<media:title type="html">cid:image056.jpg@01CA377C.FDDF6970</media:title>
		</media:content>
	</item>
		<item>
		<title>Firefox 3.6 beta released</title>
		<link>http://pavansry.wordpress.com/2009/11/11/firefox-3-6-beta-released/</link>
		<comments>http://pavansry.wordpress.com/2009/11/11/firefox-3-6-beta-released/#comments</comments>
		<pubDate>Wed, 11 Nov 2009 08:52:14 +0000</pubDate>
		<dc:creator>Pavan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://pavansry.wordpress.com/?p=7</guid>
		<description><![CDATA[Help test the future of Firefox! The latest beta version of Firefox is now available as a preview release. Take it for a test drive and let us know what you think! Free Download 3.6b2 for Windows English (US) (7.7MB)<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pavansry.wordpress.com&amp;blog=9415616&amp;post=7&amp;subd=pavansry&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div id="main-feature">
<h2>Help test the future of Firefox!</h2>
<p>The latest beta version of Firefox is now available as a preview release. Take it for a test drive and let us know what you think!</p>
<p>
<a style="height:124px;width:365px;padding:0;" href="/products/download.html?product=firefox-3.6b2&amp;os=win&amp;lang=en-US"> <span style="color:#FFFFFF;background-image:url('http://www.mozilla.com/img/tignish/firefox/download-button-beta.png');width:220px;display:block;height:49px;padding:55px 20px 20px 128px;"><strong>Free Download</strong> <em>3.6b2 for <br />Windows</em> <em>English (US) (7.7<abbr title="megabytes">MB</abbr>)</em></span></a></p>
</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pavansry.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pavansry.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pavansry.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pavansry.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pavansry.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pavansry.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pavansry.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pavansry.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pavansry.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pavansry.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pavansry.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pavansry.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pavansry.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pavansry.wordpress.com/7/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pavansry.wordpress.com&amp;blog=9415616&amp;post=7&amp;subd=pavansry&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pavansry.wordpress.com/2009/11/11/firefox-3-6-beta-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/09e2c5a8934f02f63a3769d084b1a53d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pavansry</media:title>
		</media:content>
	</item>
		<item>
		<title>Yahoo Joins Social Network Group, as Google Gives Up Control</title>
		<link>http://pavansry.wordpress.com/2009/11/11/yahoo-joins-social-network-group-as-google-gives-up-control/</link>
		<comments>http://pavansry.wordpress.com/2009/11/11/yahoo-joins-social-network-group-as-google-gives-up-control/#comments</comments>
		<pubDate>Wed, 11 Nov 2009 07:11:33 +0000</pubDate>
		<dc:creator>Pavan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[applications]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[Joe Kraus]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[OpenSocial alliance]]></category>
		<category><![CDATA[social]]></category>
		<category><![CDATA[yahoo]]></category>

		<guid isPermaLink="false">http://pavansry.wordpress.com/?p=3</guid>
		<description><![CDATA[Yahoo Joins Social Network Group, as Google Gives Up Control By Miguel Helft As anticipated, Yahoo is joining the Google-led OpenSocial alliance, which is developing a common set of standards for programmers to create applications that can run on social networks and other sites. Yahoo has considered joining the alliance for months, according to people [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pavansry.wordpress.com&amp;blog=9415616&amp;post=3&amp;subd=pavansry&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h2>Yahoo Joins Social Network Group, as Google Gives Up Control</h2>
<p><!-- Byline --><br />
<address>By <a title="See all posts by Miguel Helft" href="http://bits.blogs.nytimes.com/author/miguel-helft/">Miguel Helft</a></address>
<p> <!-- The Content -->As <a href="http://bits.blogs.nytimes.com/2008/03/11/yahoo-to-join-google-led-social-networking-alliance/">anticipated</a>, Yahoo is joining the Google-led <a href="http://code.google.com/apis/opensocial/">OpenSocial alliance</a>, which is developing a common set of standards for programmers to create applications that can run on social networks and other sites.</p>
<p>Yahoo has considered joining the alliance for months, according to people familiar with the company’s plans. But Yahoo executives fretted that Google might exert too much control over the evolution of OpenSocial and over any intellectual property created by the group, these people said. Yahoo raised those concerns with Google. Now, Google has agreed to give up control over OpenSocial.</p>
<p>In announcing Yahoo’s entry into the alliance, <a href="http://yhoo.client.shareholder.com/press/releasedetail.cfm?ReleaseID=301421">the companies said</a> that the programming standard would now be in the hands of the OpenSocial Foundation, a non-profit group whose founding members will include Google, Yahoo and MySpace, another large backer of OpenSocial. The foundation, which will be created within 90 days, will “ensure the neutrality and longevity of OpenSocial as an open, community-governed specification for building social applications across the Web,” the companies said.</p>
<p>In a conference call with reporters, Google and Yahoo executives dismissed the idea that the foundation was created in response to Yahoo’s concerns. Joe Kraus, director of product management at Google, said the foundation represented “more an evolution of where OpenSocial is heading” than a response to concerns raised by any one member. And Wade Chambers, vice president of platforms at Yahoo, praised Google’s stewardship of the standard so far.</p>
<p>Yahoo’s participation brings to OpenSocial developers the potential to distribute their applications to a large base of new users. The alliance <a href="http://www.nytimes.com/2007/11/02/technology/02google.html">was formed last fall</a> as a counterweight to Facebook, which has successfully courted thousands of application developers. The creators of many of the most popular Facebook applications have said they plan to adapt their programs to make them compatible with the OpenSocial standard.</p>
<p>Yahoo provided no details about when or how it would carry out the OpenSocial standard. So far, only MySpace and Orkut, Google’s social network, have introduced OpenSocial on their sites, Mr. Kraus said. Other members of the alliance include Bebo, LinkedIn and Plaxo.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pavansry.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pavansry.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pavansry.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pavansry.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pavansry.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pavansry.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pavansry.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pavansry.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pavansry.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pavansry.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pavansry.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pavansry.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pavansry.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pavansry.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pavansry.wordpress.com&amp;blog=9415616&amp;post=3&amp;subd=pavansry&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pavansry.wordpress.com/2009/11/11/yahoo-joins-social-network-group-as-google-gives-up-control/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/09e2c5a8934f02f63a3769d084b1a53d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pavansry</media:title>
		</media:content>
	</item>
	</channel>
</rss>
