<rss version="2.0">
        <channel>
            <title>Daring Fireball</title>
            <link>http://daringfireball.net/</link>
            <description>Mac and web curmudgeonry/nerdery. By John Gruber.</description>		<item>
        	<title>Webkit Web Inspector Updates</title>
        	<link>http://webkit.org/blog/829/web-inspector-updates/</link>
        	<comments>http://news.ycombinator.com/item?id=921026</comments>
	        <description>
    	        <![CDATA[
				
<p>A number of exciting new features have been added to the Web Inspector since our <a href="http://webkit.org/blog/197/web-inspector-redesign/">last update</a>. Today we would like to highlight some of those features! This post is also avaiable in <a href="http://trac.webkit.org/wiki/Web%20Inspector%20Update.ja">Japanese (日本語)</a>, thanks to Keishi Hattori (服部慶士).</p>
<p>If you would like to play with most of these features you will need to be running a recent <a href="http://nightly.webkit.org/">WebKit Nightly</a>. Once downloaded make sure that you enable the Web Inspector by checking “Show Develop menu in menu bar” under the Advanced tab in the Preferences.</p>
<p><a href="http://webkit.org/blog-files/inspector/enable.png"><img src="http://webkit.org/blog-files/inspector/enable.png" alt="Enabling the Inspector in Preferences" /></a></p>
<h3 id="editing">Editing Element Attributes and Style Properties <a href="http://webkit.org/blog/829/web-inspector-updates/#editing">#</a></h3>
<p>Editing Element Attributes and Style Properties has been made even simpler and more developer friendly. The interfaces for editing attributes and properties now support tabbing to allow you to move between items, and create new items with ease.</p>
<p>Besides tabbing you can also add a new attributes to a node.  Start by hovering over the node in the Element’s Tree Hierarchy and after a polite wait a clickable template for a new attribute will appear.</p>
<p><a href="http://webkit.org/blog-files/inspector/edit_attributes.png"><img src="http://webkit.org/blog-files/inspector/edit_attributes.png" alt="Edit Element Attributes" /></a></p>
<p>Related Bug Reports: <a href="https://bugs.webkit.org/show_bug.cgi?id=21108">Add Element Attributes</a>, <a href="https://bugs.webkit.org/show_bug.cgi?id=27673">Tabbing</a>, and <a href="https://bugs.webkit.org/show_bug.cgi?id=30057">Improved UI</a>.</p>
<h3 id="css_selectors">Creating and Modifying CSS Rules and Selectors <a href="http://webkit.org/blog/829/web-inspector-updates/#css_selectors">#</a></h3>
<p>A powerful new feature in the Web Inspector allows you create new or modify existing CSS Rules and Selectors. We expect both developers and designers will find this very useful when experimenting with new ideas or tweaking existing designs.</p>
<p>The interface for working with selectors starts with a new Gear Menu in the Styles Sidebar Pane. Select “New Style Rule” and a new section will be created for you, pre-populated with an intelligent selector from the selection in the Elements Tree Hierarchy. Editing selectors is activated by double-clicking. Once again, tabbing will allow you to navigate between selectors and their properties.</p>
<p>When editing selectors there is visual feedback when you create or modify a selector that does not affect the selected node in the Elements Tree Hierarchy. This indicator helps detect errors when making changes.</p>
<p><a href="http://webkit.org/blog-files/inspector/css_selectors.png"><img src="http://webkit.org/blog-files/inspector/css_selectors.png" alt="Create and Modify CSS Selectors" /></a></p>
<p>One more tweak to the Styles Pane is that there is always a section for the selected node’s style attribute. This allows you to easily add style information to the node as you usually would via the Styles Pane instead of editing or creating a “style” attribute. This section is nearly always on top due to how CSS specificity works.</p>
<p>Related Bug Reports: <a href="https://bugs.webkit.org/show_bug.cgi?id=27124">Selectors Support</a> and <a href="https://bugs.webkit.org/show_bug.cgi?id=29039">Move to Gear Menu</a>.</p>
<h3 id="colors">CSS Color Representations <a href="http://webkit.org/blog/829/web-inspector-updates/#colors">#</a></h3>
<p>Colors in the Styles Pane can be shown in any of their possible representations. For simple colors this includes short hex, full hex, rgb, hsl, and potentially a nickname. For advanced colors this includes rgba and hsla. For example the color “white” can be represented as: <code>#FFF</code>, <code>#FFFFFF</code>, <code>rgb(255, 255, 255)</code>, <code>hsl(0, 100%, 100%)</code>, and <code>white</code>.</p>
<p>You can use the Styles Pane’s Gear Menu to set your preferred representation. However, if you want to cycle through an individual color’s different representations you can do so by clicking on its associated color swatch.</p>
<p><a href="http://webkit.org/blog-files/inspector/colors.png"><img src="http://webkit.org/blog-files/inspector/colors.png" alt="Mutiple Color Representations" /></a></p>
<p>Related Bug Reports: <a href="https://bugs.webkit.org/show_bug.cgi?id=13516">Color Representations</a>, <a href="https://bugs.webkit.org/show_bug.cgi?id=28889">Preference and Gear Menu</a>, and <a href="https://bugs.webkit.org/show_bug.cgi?id=28978">UI Improvement</a>.</p>
<h3 id="dom_storage">DOM Storage <a href="http://webkit.org/blog/829/web-inspector-updates/#dom_storage">#</a></h3>
<p>The Storage Panel (formerly the Databases Panel) now allows you to monitor DOM Storage areas like <code>localStorage</code> and <code>sessionStorage</code> in a familiar datagrid. The DOM Storage datagrid displays live updates so monitoring changes is possible without manually refreshing the view.</p>
<p>Also, the familiar creation and editing techniques apply to the datagrid. To add a new key/value pair just double-click in any open area, or double-click an existing item to start editing. Tabbing works as you would expect.</p>
<p><a href="http://webkit.org/blog-files/inspector/dom_storage.png"><img src="http://webkit.org/blog-files/inspector/dom_storage.png" alt="Observing DOM Storage Key/Value Pairs" /></a></p>
<p>Related Bug Reports: <a href="https://bugs.webkit.org/show_bug.cgi?id=21051">DOM Storage Support</a>, <a href="https://bugs.webkit.org/show_bug.cgi?id=27400">Live Updates</a>, <a href="https://bugs.webkit.org/show_bug.cgi?id=27322">Create New Items</a>, and <a href="https://bugs.webkit.org/show_bug.cgi?id=27746">Tabbing</a>.</p>
<h3 id="keyboard_shortcuts">Keyboard Shortcuts <a href="http://webkit.org/blog/829/web-inspector-updates/#keyboard_shortcuts">#</a></h3>
<p>Keyboard shortcuts are always desired by developers. They can be hard to discover, so <a href="http://trac.webkit.org/wiki/Web%20Inspector#ShortcutKeys">here is a complete list</a> and here are the ones that were added recently:</p>
<ul>
<li><strong>Switch Panels</strong> — <span>Command-[</span> and <span>Command-]</span> on a Mac or <span>Control-[</span> and <span>Control-]</span> on other platforms.</li>
<li><strong>Delete a Node in the Tree Hierarchy</strong> — either <span>Delete</span> or <span>Backspace</span> keys will do the trick.</li>
<li><strong>Quick Edits in the Tree Hierarchy</strong> — Hitting <span>Enter</span> or <span>Return</span> on a Node in the Tree enters the editing mode for that type of Node.  For a Text Node you will start editing the content.  For Element Nodes you start editing the first attribute, or, for convenience, a new attribute will be added for you.</li>
</ul>
<p>The Scripts Debugger was updated to support some popular keyboard shortcuts:</p>
<ul>
<li><strong>Continue</strong> — <span>F8</span> or <span>Command-/</span> on a Mac or <span>Control-/</span> on other platforms.</li>
<li><strong>Step Over</strong> — <span>F10</span> or <span>Command-&#8217;</span> on a Mac or <span>Control-&#8217;</span> on other platforms.</li>
<li><strong>Step Into</strong> — <span>F11</span> or <span>Command-;</span> on a Mac or <span>Control-;</span> on other platforms.</li>
<li><strong>Step Out</strong> — <span>Shift-F11</span> or <span>Shift-Command-;</span> on a Mac or <span>Shift-Control-;</span> on other platforms.</li>
<li><strong>Next Call Frame</strong> — <span>Control-.</span> on all platforms.</li>
<li><strong>Previous Call Frame</strong> — <span>Control-,</span> on all platforms.</li>
<li><strong>Evaluate Selection When on a Breakpoint</strong> — <span>Shift-Command-E</span> on a Mac or <span>Shift-Control-E on other platforms.</span></li>
</ul>
<p>Related Bug Reports: <a href="https://bugs.webkit.org/show_bug.cgi?id=27286">Switch Panels</a>, <a href="https://bugs.webkit.org/show_bug.cgi?id=30337">Delete Node</a>, <a href="https://bugs.webkit.org/show_bug.cgi?id=30428">Quick Edit</a>, <a href="https://bugs.webkit.org/show_bug.cgi?id=23849">General Debugger Shortcuts</a> and <a href="https://bugs.webkit.org/show_bug.cgi?id=27502">Evaluate Selection</a>.</p>
<h3 id="cookies">Cookies <a href="http://webkit.org/blog/829/web-inspector-updates/#cookies">#</a></h3>
<p>Viewing Cookie information is now possible under the Storage Panel. Supported platforms show all of the cookies and their hidden information for all domains accessed on the inspected page. Cookie information includes the name, value, path, expiration date, http only flag, and secure (https) flag. Supported platforms may also delete cookies.</p>
<p>If your platform doesn’t have full support you aren’t left in the dark. You will still be able to see the keys and values of the cookies that are accessible via JavaScript on the inspected page.</p>
<p><a href="http://webkit.org/blog-files/inspector/cookies.png"><img src="http://webkit.org/blog-files/inspector/cookies.png" alt="Inspect Hidden Cookie Information" /></a></p>
<p>Related Bug Reports: <a href="https://bugs.webkit.org/show_bug.cgi?id=27202">Initial Support</a>, <a href="https://bugs.webkit.org/show_bug.cgi?id=28269">Hidden Data 1</a> and <a href="https://bugs.webkit.org/show_bug.cgi?id=28185">2</a>, <a href="https://bugs.webkit.org/show_bug.cgi?id=30104">Cookies for Sub-Resources</a>, and <a href="https://bugs.webkit.org/show_bug.cgi?id=30036">UI Improvements</a></p>
<h3 id="event_listeners">Event Listeners <a href="http://webkit.org/blog/829/web-inspector-updates/#event_listeners">#</a></h3>
<p>A new Sidebar Pane has been added to the Elements Panel which displays the registered Event Listeners for the selected node.  The Event Listeners that are shown for the selected node are in the exact order that they are fired through the Capturing and Bubbling phases.  This provides developers with the most accurate and useful information possible.</p>
<p>The user interface shows the registered Event Listeners separated by type. If a node has both “onclick” and “onmouseover” listeners then they will naturally appear in different sections. You can also set your filter preference using the Gear Menu. You can choose to see only the listeners registered on the selected node, or the entire event flow.</p>
<p><a href="http://webkit.org/blog-files/inspector/event_listeners.png"><img src="http://webkit.org/blog-files/inspector/event_listeners.png" alt="Inspect Registered Event Listeners" /></a></p>
<p>We are actively looking for UI improvements in this area. So if you have some ideas or feedback please feel free to let us know on <a href="https://bugs.webkit.org/show_bug.cgi?id=29789">this bug report</a>!</p>
<p>Related Bug Reports: <a href="https://bugs.webkit.org/show_bug.cgi?id=17429">Event Listeners</a>.</p>
<h3 id="syntax_highlighting">Syntax Highlighting <a href="http://webkit.org/blog/829/web-inspector-updates/#syntax_highlighting">#</a></h3>
<p>Syntax highlighting enhances readability, makes debugging code easier, and looks really awesome. The Web Inspector now includes syntax highlighting for JSON and CSS.</p>
<p><a href="http://webkit.org/blog-files/inspector/css_syntax_highlight.png"><img src="http://webkit.org/blog-files/inspector/css_syntax_highlight.png" alt="CSS Syntax Highlighting" /></a></p>
<p>CSS Syntax Highlighting even works on the more complex “at-rules” such as <code>@import</code>, <code>@media</code> and <code>@font-face</code>. In addition to supporting the syntax highlighting in the Resources Panel, inline scripts and styles in the Elements Tree Hierarchy are syntax highlighted!</p>
<p><a href="http://webkit.org/blog-files/inspector/inline_highlight.png"><img src="http://webkit.org/blog-files/inspector/inline_highlight.png" alt="Inline JavaScript and CSS Syntax Highlighting" /></a></p>
<p>Related Bug Reports: <a href="https://bugs.webkit.org/show_bug.cgi?id=27503">JSON Highlighting</a>, <a href="https://bugs.webkit.org/show_bug.cgi?id=14359">CSS Highlighting</a>, and <a href="https://bugs.webkit.org/show_bug.cgi?id=30062">Inline Highlighting</a>.</p>
<h3 id="breakpoints">Breakpoints and Watch Expressions <a href="http://webkit.org/blog/829/web-inspector-updates/#breakpoints">#</a></h3>
<p>The Script Debugger continues to become more powerful and more useful.  We already mentioned the <a href="http://webkit.org/blog/829/web-inspector-updates/#keyboard_shortcuts">keyboard shortcuts</a> above, but there are plenty of other enhancements.</p>
<p><span>There is a new Breakpoints Sidebar Pane that allows you to easily monitor and work with your breakpoints across all files without the hassle of searching for them.  Each sidebar entry shows the source line and contains a checkbox that allows you to directly enable or disable the breakpoint. Clicking on the entry will jump you directly to the highlighted line in the source file. Finally, deleting a breakpoint has been made easier by clicking the &#8220;blue tag&#8221; breakpoint indicator.  The tag will cycle through its three states of active, inactive, and removed.</span></p>
<p>A powerful feature added to the debugger is Conditional Breakpoints. Once you have a breakpoint set, right click on the &#8220;blue tag&#8221; breakpoint indicator and you will get a popup asking for a conditional statement for that breakpoint. Simply provide an expression and the breakpoint will only pause from then on only if the condition is true.</p>
<p><a href="http://webkit.org/blog-files/inspector/breakpoints.png"><img src="http://webkit.org/blog-files/inspector/breakpoints.png" alt="Breakpoints and other Debugging Improvements" /></a></p>
<p>Another new feature in the Debugger is Watch Expressions.  In this new Sidebar Pane you can add any number of expressions that evaluate in the global scope normally but in the local scope when paused in the debugger. Once added you get the full Object Properties tree view of the values of each expression.  These watch expressions automatically refresh when the debugger pauses. They are also persist across page loads.</p>
<p><a href="http://webkit.org/blog-files/inspector/watched_expression.png"><img src="http://webkit.org/blog-files/inspector/watched_expression.png" alt="Watched Expressions in Action" /></a></p>
<p>Related Bug Reports: <a href="https://bugs.webkit.org/show_bug.cgi?id=11175">Breakpoints Sidebar Pane</a>, <a href="https://bugs.webkit.org/show_bug.cgi?id=27514">Watch Expressions</a>, <a href="https://bugs.webkit.org/show_bug.cgi?id=27502">Evaluate on Breakpoint</a>, <a href="https://bugs.webkit.org/show_bug.cgi?id=28908">Conditional Breakpoints</a>, and <a href="https://bugs.webkit.org/show_bug.cgi?id=19131">Delete Breakpoints</a>.</p>
<h3 id="ajax">Debugging AJAX <a href="http://webkit.org/blog/829/web-inspector-updates/#ajax">#</a></h3>
<p>An extremely valuable feature for developers working with AJAX is the ability to view the exact parameters and payload sent on XMLHttpRequests.</p>
<p>In the individual resource view there are new sections for viewing submitted Form Data, Query String Parameters, and Request Payloads when appropriate. You can toggle viewing the information in its unencoded (default) and encoded forms with a double-click.</p>
<p>There is also new section named HTTP Information which contains the Request Method (GET, POST, etc.) and the Status Code (200, 404, etc.). Additionally, it adds a colored dot next to the requested URL to show the status (green for success, orange for redirect, and red for error).</p>
<p><a href="http://webkit.org/blog-files/inspector/form_data.png"><img src="http://webkit.org/blog-files/inspector/form_data.png" alt="View Submitted Form Data and HTTP Information" /></a></p>
<p>Related Bug Reports: <a href="https://bugs.webkit.org/show_bug.cgi?id=19945">HTTP Status Code</a> and <a href="https://bugs.webkit.org/show_bug.cgi?id=22920">Data, Parameters, and Payload</a></p>
<h3 id="scope_bars">Resources and Console Scope Bars <a href="http://webkit.org/blog/829/web-inspector-updates/#scope_bars">#</a></h3>
<p>In order to filter through the Resources or Console messages the Web Inspector now sports some familiar Scope Bars. This has proven to be very useful in the Resources Panel for easily viewing all resources of a particular type.</p>
<p><a href="http://webkit.org/blog-files/inspector/scope_bar.png"><img src="http://webkit.org/blog-files/inspector/scope_bar.png" alt="Quick Filtering Scope Bars for Resources Types and Console Message Types" /></a></p>
<p>Related Bug Reports: <a href="https://bugs.webkit.org/show_bug.cgi?id=20629">Resources Scope Bar</a> and <a href="https://bugs.webkit.org/show_bug.cgi?id=29195">Console Scope Bars</a>.</p>
<h3 id="load_lines">Resources Timeline <a href="http://webkit.org/blog/829/web-inspector-updates/#load_lines">#</a></h3>
<p>The Web Inspector now specifically shows in the timeline when the DOMContentLoaded and Load events fire. This helps clarify the time it takes for pages to load and helps you improve your websites load times.</p>
<p><a href="http://webkit.org/blog-files/inspector/load_lines.png"><img src="http://webkit.org/blog-files/inspector/load_lines.png" alt="DOMContent Ready Event and Page's Load Event Indicators" /></a></p>
<p>Related Bug Reports: <a href="https://bugs.webkit.org/show_bug.cgi?id=14370">Show Load Lines</a></p>
<h3 id="resource_interactivity">Resources Interactivity <a href="http://webkit.org/blog/829/web-inspector-updates/#resource_interactivity">#</a></h3>
<p>A couple new features allow you to more directly access individual resources from within the Web Inspector. Instead of copying their URL and opening a new tab manually you can now double-click the Resource in the sidebar to open it directly in a new window. Or, you can drag and drop the resource using HTML5 drag and drop events!</p>
<p>Related Bug Reports: <a href="https://bugs.webkit.org/show_bug.cgi?id=14409">Open Resource Directly</a> and <a href="https://bugs.webkit.org/show_bug.cgi?id=30079">Drag and Drop</a>.</p>
<h3 id="console_improvements">Console Improvements <a href="http://webkit.org/blog/829/web-inspector-updates/#console_improvements">#</a></h3>
<p>Properties in the Web Inspector’s Console are now sorted in a much more natural and useful way. By sorting keys alphanumerically Arrays with greater then 10 elements are much easier to work with.</p>
<p><a href="http://webkit.org/blog-files/inspector/inorder.png"><img src="http://webkit.org/blog-files/inspector/inorder.png" alt="Alphanumeric Sorting" /></a></p>
<p>Another tweak is that collections such as NodeLists and HTMLCollections are now displayed like Arrays.  This meaning that their contents are shown directly in the console, no longer requiring any extra boilerplate.</p>
<p><a href="http://webkit.org/blog-files/inspector/nodelist.png"><img src="http://webkit.org/blog-files/inspector/nodelist.png" alt="More Descriptive Nodelists" /></a></p>
<p>Related Bug Reports: <a href="https://bugs.webkit.org/show_bug.cgi?id=27329">Sorting</a> and <a href="https://bugs.webkit.org/show_bug.cgi?id=28061">NodeLists</a>.</p>
<h3 id="firebug_api">Firebug Command API Improvements <a href="http://webkit.org/blog/829/web-inspector-updates/#firebug_api">#</a></h3>
<p>More improvements have been made to support more of the <a href="http://getfirebug.com/commandline.html">Firebug Command Line API</a>. The Web Inspector now supports the <code>inspect()</code> function, which can take an Element, Database, or Storage area and automatically jumps to the appropriate Panel with information. Also, the <code>$0</code>-<code>$4</code> variables contain the current and previous selected nodes from the Elements Tree Hierarchy.</p>
<p>These command line APIs are usable inside the Web Inspector’s Console. To make working with these APIs even easier, they now show up in the Console’s autocompletion.</p>
<p>Related Bug Reports: <a href="https://bugs.webkit.org/show_bug.cgi?id=17907">$# Variables</a>, <a href="https://bugs.webkit.org/show_bug.cgi?id=19874">inspect() Function</a>, and <a href="https://bugs.webkit.org/show_bug.cgi?id=27696">Autocompletion</a>.</p>
<h3 id="contribute">How You Can Contribute <a href="http://webkit.org/blog/829/web-inspector-updates/#contribute">#</a></h3>
<p>Many of these new features were added by members of the Open Source Community. We would like to encourage you to contribute as well! Since the Web Inspector itself is mostly HTML, JavaScript, and CSS that means that you already have the skills you need to join in! Interested? Play around right now by inspecting the inspector itself!</p>
<p><a href="http://webkit.org/blog-files/inspector/inspect_inspector.png"><img src="http://webkit.org/blog-files/inspector/inspect_inspector_small.png" alt="Work on the Web Inspector using the Web Inspector!" /></a></p>
<p>If you’re interested in contributing and have any questions please stop by the <a href="irc://irc.freenode.net/#webkit-inspector">#webkit-inspector</a> IRC channel! As an encouragement to developers, included at the end of each section above are the core bug reports that were involved in bringing each of these features to life.</p>
<p>Finally, if you have ideas for new features, any improvements, or if you’ve stumbled across a bug then please don’t hesitate to create a bug report. <a href="http://webkit.org/new-inspector-bug">This link</a> has pre-populated most of the fields so that you only need to fill out the Summary and Description. As always you should do a quick search through the <a href="http://bit.ly/RDwz2">existing inspector bugs</a> first.</p>
<p>
					You can follow any responses to this entry through the <a href="http://webkit.org/blog/829/web-inspector-updates/feed/">RSS 2.0</a> feed. 

											You can <a href="http://webkit.org/blog/829/web-inspector-updates/#respond">leave a response</a>, or <a href="http://webkit.org/blog/829/web-inspector-updates/trackback/" rel="trackback">trackback</a> from your own site.

									</p>

				
					<br/><a href="http://news.ycombinator.com/item?id=921026">Comments</a>
				]]>
        	</description>
    	</item>		<item>
        	<title>Mockingbird: New tool for building mockups, written in Cappuccino</title>
        	<link>http://gomockingbird.com/</link>
        	<comments>http://news.ycombinator.com/item?id=920822</comments>
	        <description>
    	        <![CDATA[
				
<img src="http://gomockingbird.com/media/images/heading-multiple-pages.png" alt="Multiple pages" />
<p>Mock up as many pages as you need, link them together, and rearrange them with ease.</p>

				
					<br/><a href="http://news.ycombinator.com/item?id=920822">Comments</a>
				]]>
        	</description>
    	</item>		<item>
        	<title>Nick Kallen on Information Technology and Heaps</title>
        	<link>http://magicscalingsprinkles.wordpress.com/2009/11/02/the-meaning-of-information-technology/</link>
        	<comments></comments>
	        <description>
    	        <![CDATA[
				<p>The first commercial computer was the <a href="http://en.wikipedia.org/wiki/LEO_I">Lyons Electronic Office I</a> and was used in 1951 to perform vast calculations pertaining to the making and consumption of biscuits. You see, after the war, <a href="http://en.wikipedia.org/wiki/J._Lyons_and_Co.">J. Lyons &amp; Co.</a>, a popular chain of British tea shops, was confronted with an appetite for pastries so astronomical (which is understandable given years of tedious disputes with Germany), that the human mind was incapable of solving unaided the problem of distributing tea cakes to their customers.</p>
<p>Hidden in this story is the true meaning of all information technology.</p>
<p><strong>A brief statement of the problem.</strong></p>
<p>There is an old logical puzzle called the <a href="http://plato.stanford.edu/entries/sorites-paradox/">Sorites Paradox</a>, first articulated by the Megarian logician Eubulides of Miletus. It predates the stored program computer by 2,000 years but it similarly concerns the production of pastries:</p>
<blockquote><p>Would you describe a single grain of wheat as a heap? No. Would you describe two grains of wheat as a heap? No&#8230;. You must admit the presence of a heap sooner or later, so where do you draw the line?
</p></blockquote>
<p>This problem was of keen interest to the philosophical community for thousands of years, principally because the Greek recipe for tea cakes called for two heaping tablespoons of sugar. Some philosophers went so far as to vow to grow a beard and engage in pederasty until a solution to the problem was found. But all efforts were in vain; the problem remains unsolved to this day.</p>
<p>Unfortunately, the problem has only become ever more acute in the modern era. In fact, far from <em>only</em> destabilizing the fabrication of pastries, it has further undermined every area of society. Consider the process of voting. If no one voted, one vote would affect the outcome. But if millions of people vote, one vote makes little difference.</p>
<p>In fact, the defining characteristic of the modern era is that every aspect of society is heaping. To understand how this came to be, we must revisit ancient history.</p>
<p><strong>Some scientifical facts.</strong></p>
<p>During the pre-historic era, when mankind lived in trees and swam in lagoons, we lived in small clans and tribes of dozens up to a few hundred people. During this long honeymoon period in homo sapiens history, we evolved our cognitive abilities through careful grooming and diligent fornicating. The brain developed the ability to speak languages and sympathize with other people and feel jealousy and kindness and all that other stuff. In other words, we evolved a social technology that equipped us for living in society and dealing with the ordeals caused by other people.</p>
<p>But that social technology is ill-equipped to deal with the humongous heaps of the modern world. We meet hundreds of people every year and can&#8217;t remember any of their names. We evolved language and vocal chords to cover long distances but somebody put skyscrapers in the way and anyway we now live like <em>really</em> long distances away, like you have to fly an airplane to see them or at least ride a bicycle. And then there are these celebrity neanderthals like Ashton Kutcher who are adored for their plumage by a multitude who greedily read every banal detail of his private life in magazines like Star that ship millions of copies to every end of a giant sphere whose radius is 6,378.1 kilometers; or on a Twitter that delivers every inane thing he tweets to 4 million people, 10 times daily. It goes without saying that this would not be possible if not for a defect in our programming in the face of the massive scale of the world.</p>
<p><strong>Everything has become a giant fucking heap.</strong></p>
<p>The modern world is profoundly inhumane. Mankind is incapable of reasoning about the heaping constructs of mass culture using the technes of intimacy that are an hundred thousand years old. For example, we need to be constantly reassured that celebrities are just like us. They eat waffles and pick up dry cleaning. If we do not share this understanding of Ashton Kutcher, we become overwhelmed by existential anomie and commit suicide.</p>
<p>Human beings need to understand one another in terms of primordial intimacies because man has no other tools for understanding the solicitations of man. But if the size of the world no is on longer amenable to intimacy technologies, then mankind must invent information technologies that rehumanize the world.</p>
<p>Thus the proliferation of social software on the web. The reification of the social graph in Friendster; the Facebook Newsfeed and the Twitter; and the Foursquare all serve this one purpose: to rehumanize an inhumane world. Let&#8217;s consider each of these technologies one at a time.</p>
<ol>
<li>Friendster&#8217;s reification of the social graph makes it possible to understand the ties that bind us all together when we only have room in our brains for the intrigues of a few dozen relationships.</li>
<li>The Facebook Newsfeed and the Twitter make it possible to share in the thoughts and intimate moments of those who inhabit different neighborhoods, and different schools, and different jobs, and make different choices than us from amongst the vast cornucopia of mass-produced art sold to us by the culture industry. Finally,</li>
<li>the Foursquare coordinates the alienated existence of cosmopolitan voluptuaries into a shared bacchanal.</li>
</ol>
<p><strong>Technology and self-criticism.</strong></p>
<p>I cannot help but be a technological optimist because technology is mankind&#8217;s only bulwark against the barbarism of heaps. But I&#8217;ll grant that technology is imperfect; it is sometimes fair to criticize the <a href="http://www.amazon.com/Tyranny-E-mail-Four-Thousand-Year-Journey-Inbox/dp/1416576738">Tyranny of Technology</a>. The usual argument goes that all these tweets and text messages and notifications that &#8220;a software update is available&#8221; leave no space quiet, provide no room for contemplation. It is true: we do live in a world of interruptions; interruptions created by information technology. But we should not be surprised by this fact and no more should we despair of it. One generation of technology solves the problems of the previous but causes problems of its own. The next generation of technology repeats this story; a story as old as mankind itself. This is the dialectics of history.</p>
<p>Do not doubt, then, that a technology will arise to solve this problem too. We, the makers, shall fabricate a machine to produce quiet and contemplation. In fact, at this very moment, I have a patent pending on a pair of contemplation goggles. And in just a few weeks I will release a beta of a contemplation-inducing goggular Twitter client. I&#8217;m sure it will be received to massive acclaim and to the profound benefit of humanity.</p>
<p>So! Old men: do not fear for the future. We young people, we hackers and makers, we have it all under control. We know the true meaning of information technology. We shall save us all from the giant fucking heaps.</p>

				
				]]>
        	</description>
    	</item>		<item>
        	<title>Letters From the Hellbox</title>
        	<link>http://www.mcsweeneys.net/links/hellbox/</link>
        	<comments></comments>
	        <description>
    	        <![CDATA[
				
<font size="-1">- - - -</font>
<p><a href="http://www.mcsweeneys.net/">MAIN PAGE</a>&nbsp;|&nbsp;<a href="http://www.mcsweeneys.net/archives/">ARCHIVES</a>
</p><p>
</p><p><a href="http://www.mcsweeneys.net/davis.html">Memories of Amanda Davis</a>
</p><p>
</p><p><br /><font size="-1">
<img src="http://www.mcsweeneys.net/src/reddot.gif" width="6" height="6" /> Red dot denotes content that is new today.



</font></p><p><img src="http://www.mcsweeneys.net/src/blackdot.gif" width="6" height="6" /> Black dot denotes newish content.



</p><p><a href="http://store.mcsweeneys.net">McSWEENEY'S STORE</a>
</p><p>SUBSCRIBE TO:

<br /><a href="http://store.mcsweeneys.net/index.cfm/fuseaction/catalog.detail/object_id/B98CC3A0-53FA-4ED6-A771-E788DC9D9396/McSweeneysSubscriptionbrBeginningwithIssue19.cfm">McSWEENEY'S</a>
<br /><a href="http://store.mcsweeneys.net/index.cfm/fuseaction/catalog.detail/object_id/31d460ea-2ee1-44b5-8c9b-0546eec44ab8/TheBeliever.cfm">THE BELIEVER</a>
<br /><a href="http://store.mcsweeneys.net/index.cfm/fuseaction/catalog.detail/object_id/2AF2AE97-8E22-4F9C-AC58-FA31F8D5347F/WholphinDVDSubscription.cfm">WHOLPHIN</a>
</p><p><img src="http://www.mcsweeneys.net/src/blackdot.gif" width="6" height="6" /> <a href="http://www.mcsweeneys.net/books/future.html">FUTURE McSWEENEY'S BOOKS</a>
</p><p><a href="http://www.mcsweeneys.net/2008amandadavisaward.html">THE AMANDA DAVIS HIGHWIRE FICTION AWARD</a>
</p><p><a href="http://www.mcsweeneys.net/links/authorpages/event.html">INVITE A McSWEENEY'S AUTHOR TO SPEAK IN YOUR TOWN OR COLLEGE</a>
</p><p><a href="http://www.bestamericannonrequiredreading.blogspot.com/" target="_blank">THE BEST AMERICAN NONREQUIRED READING</a>
</p><p><a href="http://www.mcsweeneys.net/contact/mailinglist/">McSWEENEY'S MONTHLY MAILING LIST</a>
</p><p><a href="http://www.mcsweeneys.net/bookstoredisplays.html">BOOKSTORES WITH A McSWEENEY'S DISPLAY</a>
</p><p><img src="http://www.mcsweeneys.net/src/blackdot.gif" width="6" height="6" /><!--<DON'T REMOVE DOT--> <a href="http://www.mcsweeneys.net/links/events/">McSWEENEY'S-RELATED EVENTS AND VARIOUS TOUR DATES</a>
</p><p><a href="http://www.mcsweeneys.net/if_you/orders.html">ORDER INQUIRIES AND ADDRESS CHANGES</a>
</p><p>SUBMISSION GUIDELINES:

<br /><a href="http://www.mcsweeneys.net/submit/book.html">FOR BOOKS</a>
<br /><a href="http://www.mcsweeneys.net/submit/print.html">FOR THE QUARTERLY</a>
<br /><a href="http://www.mcsweeneys.net/submit/web.html">FOR THE WEBSITE</a>
<br /><a href="http://www.mcsweeneys.net/submit/wholphin.html">FOR WHOLPHIN</a>
</p><p><a href="http://www.mcsweeneys.net/826interns.html"> McSWEENEY'S INTERNSHIPS</a>
</p><p><a href="http://www.mcsweeneys.net/contact/">CONTACT US</a>
</p><p><font size="-1">- - - -</font>
</p><p><img src="http://www.mcsweeneys.net/src/reddot.gif" width="6" height="6" /> <a href="http://www.mcsweeneys.net/letters/">LETTERS TO McSWEENEY'S</a>
</p><p><a href="http://www.mcsweeneys.net/links/lists/">LISTS</a>
</p><p><img src="http://www.mcsweeneys.net/src/blackdot.gif" width="6" height="6" /> <a href="http://www.mcsweeneys.net/links/recommends/">McSWEENEY'S RECOMMENDS</a>
</p><p><img src="http://www.mcsweeneys.net/src/blackdot.gif" width="6" height="6" /> <a href="http://www.mcsweeneys.net/links/newfood/">REVIEWS OF NEW FOOD</a>
</p><p><a href="http://www.wholphindvd.com/web-films/nevel-is-the-devil/" target="_blank">NEW <i>WHOLPHIN</i> FILM</a>
</p><p><a href="http://www.mcsweeneys.net/links/danliebert/"> DAN LIEBERT, VERBAL CARTOONIST</a>
</p><p><a href="http://www.mcsweeneys.net/links/proverbs/"> TEDDY WAYNE'S UNPOPULAR PROVERBS</a>
</p><p><img src="http://www.mcsweeneys.net/src/blackdot.gif" width="6" height="6" /><a href="http://www.mcsweeneys.net/links/mnemonics/"> NON-ESSENTIAL MNEMONICS</a>
</p><p><a href="http://www.mcsweeneys.net/links/bitchslap/">BITCHSLAP: A COLUMN ABOUT WOMEN AND FIGHTING</a>
</p><p><img src="http://www.mcsweeneys.net/src/reddot.gif" width="6" height="6" /> <a href="http://www.mcsweeneys.net/links/nashville/">DISPATCHES FROM A GUY TRYING UNSUCCESSFULLY<br />TO SELL A SONG IN NASHVILLE</a>
</p><p><img src="http://www.mcsweeneys.net/src/blackdot.gif" width="6" height="6" /> <a href="http://www.mcsweeneys.net/links/bedbugs/">GLOBAL WAR ON BEDBUGS: LETTERS FROM BEDBUG CITY</a>
</p><p><img src="http://www.mcsweeneys.net/src/blackdot.gif" width="6" height="6" /> <a href="http://www.mcsweeneys.net/links/pornwriter/">THE CONFLICTED EXISTENCE OF A FEMALE PORN WRITER</a>
</p><p><a href="http://www.mcsweeneys.net/links/ohmygawd/"> OH MY GAWD: A COLUMN ABOUT A TEENAGER NAVIGATING RELIGION</a>
</p><p><a href="http://www.mcsweeneys.net/links/manila/">DISPATCHES FROM MANILA</a>
</p><p> <a href="http://www.mcsweeneys.net/links/casino/"> DISPATCHES FROM AN INDIAN CASINO</a>
</p><p><a href="http://www.mcsweeneys.net/books/everythingthatrises.contest66.html">THE CONVERGENCES CONTEST</a>
</p><p><a href="http://www.mcsweeneys.net/links/presidents/"> CHRIS WHITE ANSWERS PROFOUND<br />QUESTIONS ABOUT THE PRESIDENTS</a>
</p><p><a href="http://www.mcsweeneys.net/links/pinball/"> REPORTS FROM THE PINBALL SCENE</a>
</p><p><img src="http://www.mcsweeneys.net/src/blackdot.gif" width="6" height="6" /> <a href="http://www.mcsweeneys.net/links/hellbox/">LETTERS FROM THE HELLBOX</a>
</p><p><a href="http://www.mcsweeneys.net/links/mma/"> NOTES FROM AN AMATEUR SPECTATOR <br />AT AMATEUR MIXED MARTIAL ARTS FIGHTS</a>
</p><p><a href="http://www.mcsweeneys.net/links/museum/"> B.R. COHEN'S DAYS AT THE MUSEUM</a>
</p><p><a href="http://www.mcsweeneys.net/links/wartime/">CONVERSATIONS AT A WARTIME CAF&Eacute;</a>
</p><p><a href="http://www.mcsweeneys.net/links/sacks/"><i>AND HERE'S THE KICKER</i>:<br />MIKE SACKS'S CONVERSATIONS WITH HUMOR WRITERS</a>
</p><p><a href="http://www.mcsweeneys.net/links/folktales/">GRANT MUNROE'S CORPORATE FOLKTALES</a>
</p><p><a href="http://www.mcsweeneys.net/links/sarahwalker/">SARAH WALKER SHOWS YOU HOW</a>
</p><p><a href="http://www.mcsweeneys.net/links/mustache/">DISPATCHES FROM AN ENVIRONMENTAL LAWYER<br />WHO IS TRYING TO GROW A MUSTACHE</a>
</p><p><a href="http://www.mcsweeneys.net/links/bankrupt/">DISPATCHES FROM A HANGDOG BANKRUPT</a>
<!--</p><p><a href="/links/advice/">ADVICE FROM A PERSON WITH A<br>BACHELOR'S DEGREE IN PSYCHOLOGY</a>-->
</p><p> <a href="http://www.mcsweeneys.net/links/capital/">DISPATCHES FROM THE CAPITAL</a>
</p><p><a href="http://www.mcsweeneys.net/links/india/">DISPATCHES FROM INDIA</a>
</p><p><a href="http://www.mcsweeneys.net/links/winnerscircle/">THE WINNER'S CIRCLE WITH ERIC FEEZELL</a>
</p><p><a href="http://www.mcsweeneys.net/links/music/">SEAN MICHAELS LISTENS TO MUSIC IN MONTREAL</a>
</p><p><a href="http://www.mcsweeneys.net/links/monologues/">SHORT IMAGINED MONOLOGUES</a>
</p><p><a href="http://www.mcsweeneys.net/links/obamaletters/">KIDS' LETTERS TO PRESIDENT OBAMA</a>
</p><p><a href="http://www.mcsweeneys.net/links/wine/">STAINED TEETH: A COLUMN ABOUT WINE</a>
</p><p><a href="http://www.mcsweeneys.net/links/yourmoney/">YOUR MONEY, YOUR JOB ... YOUR LIFE, WITH ALISON ROSEN</a>
</p><p><a href="http://www.mcsweeneys.net/links/dolgin/">KEVIN DOLGIN TELLS YOU ABOUT PLACES YOU SHOULD GO IN EUROPE</a>
</p><p><a href="http://www.mcsweeneys.net/books/wildthings.html"> ABOUT <i>THE WILD THINGS</i></a>
</p><p><a href="http://www.mcsweeneys.net/books/convalescent">ABOUT <i>THE CONVALESCENT</i></a>
</p><p><a href="http://www.mcsweeneys.net/books/feverchart.html">ABOUT <i>FEVER CHART</i></a>
</p><p> <a href="http://www.mcsweeneys.net/books/godsaysno">ABOUT <i>GOD SAYS NO</i></a>
</p><p><a href="http://www.mcsweeneys.net/books/zeitoun/">ABOUT <i>ZEITOUN</i></a>
</p><p><a href="http://www.mcsweeneys.net/links/earthball/">LETTERS FROM AN EARTH BALL<br />TO, OR CONCERNING, SEAN HANNITY</a>
</p><p><a href="http://www.mcsweeneys.net/links/football/"> E-MAILS SENT TO THE UNIVERSITY OF ALABAMA ENGLISH DEPARTMENT<br />FLAG-FOOTBALL TEAM</a>
</p><p> <a href="http://www.mcsweeneys.net/links/darkagetourist/">TRAVELING EUROPE IN STYLE WITH AUCKLAND DINGIROO,<br />DARK-AGE TOURIST AND CRITIC OF FOOD AND DRINK</a>
</p><p> <a href="http://www.mcsweeneys.net/links/popsong/">JOHN MOE'S POP-SONG CORRESPONDENCES</a>
</p><p> <a href="http://www.mcsweeneys.net/links/unusualjobs/">INTERVIEWS WITH PEOPLE WHO HAVE INTERESTING OR UNUSUAL JOBS</a>
</p><p><a href="http://www.mcsweeneys.net/links/skateboard">FLIP: A COLUMN ABOUT SKATEBOARDING</a>
</p><p><a href="http://www.mcsweeneys.net/links/openletters/">OPEN LETTERS TO PEOPLE OR ENTITIES WHO ARE UNLIKELY TO RESPOND</a>
</p><p><a href="http://www.mcsweeneys.net/links/librarian/">DISPATCHES FROM A PUBLIC LIBRARIAN</a>
</p><p><a href="http://www.mcsweeneys.net/links/black/">MICHAEL IAN BLACK IS A VERY FAMOUS CELEBRITY</a>
</p><p><a href="http://www.mcsweeneys.net/links/paper/">DAN KENNEDY SOLVES YOUR PROBLEMS WITH PAPER</a>
</p><p><a href="http://www.mcsweeneys.net/links/poker/">STEPHEN ELLIOTT'S POKER REPORT</a>
</p><p align="center"><font size="-1">- - - -</font></p>
<a href="http://www.mcsweeneys.net/archives/index_additional.html">ADDITIONAL MATERIAL</a>

				
				]]>
        	</description>
    	</item>		<item>
        	<title>Personal Droid Data Plan Will Cost $30 Per Month, Even With Exchange</title>
        	<link>http://www.gearlog.com/2009/11/personal_droid_data_will_cost.php</link>
        	<comments></comments>
	        <description>
    	        <![CDATA[
				


<a href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.gearlog.com%2F2009%2F11%2Fpersonal_droid_data_will_cost.php" target="_new"><img src="http://www.mixx.com/images/buttons/mixx-button4.png" width="16" height="14" alt="Mixx It" />&nbsp;Mixx It</a>
<a href="http://digg.com/submit?url=http%3A%2F%2Fwww.gearlog.com%2F2009%2F11%2Fpersonal_droid_data_will_cost.php&amp;title=Personal Droid Data Will Cost $30, Even With Exchange" target="_new"><img src="http://digg.com/img/badges/16x16-digg-guy.gif" width="16" height="16" alt="Digg It" />&nbsp;Digg It</a>
<a href="http://www.stumbleupon.com/submit?url=http://www.gearlog.com/2009/11/personal_droid_data_will_cost.php&amp;title=Personal Droid Data Will Cost $30, Even With Exchange" target="_new"> <img border="0" src="http://cdn.stumble-upon.com/images/16x16_su_solid.gif" alt="StumbleUpon Toolbar" /> Stumble</a>

<a href="http://www.addthis.com/bookmark.php" onmouseover="return addthis_open(this, '', 'http://www.gearlog.com/2009/11/personal_droid_data_will_cost.php', 'Personal Droid Data Will Cost $30, Even With Exchange');" onmouseout="addthis_close();" onclick="return addthis_sendto();">
<img src="http://s7.addthis.com/static/btn/sm-plus.gif" width="16" height="16" border="0" alt="Share" /> More...</a>

<p>



</p>
				
				]]>
        	</description>
    	</item>		<item>
        	<title>Gestures as a Language</title>
        	<link>http://jeffreysambells.com/posts/2009/11/03/gestures-as-a-language-not-a-technology/</link>
        	<comments></comments>
	        <description>
    	        <![CDATA[
				
<p>John Gruber, commenting on a review of the Droid, made a comment about multi-touch which got me thinking:</p>
<blockquote>
<p>The big multi-touch gesture that Apple uses in the iPhone is pinching &#8212; in particular, pinch-to-zoom. You pinch to zoom in MobileSafari. You pinch to zoom photos. You pinch to zoom maps.</p>
<p>There is no pinching on a Droid running Android 2.0. As for why, my somewhat-informed best guess is that it is related to Apple’s patent applications for the pinch-to-zoom gesture. If so, this stinks.
  &#8212; John Gruber, <a href="http://daringfireball.net/2009/11/pinching_and_the_droid">Daring Fireball</a></p>
</blockquote>
<p>Personally, I&#8217;m all about innovation. Allowing an innovator to benefit from his or her innovation through patents is what makes businesses innovate in the first place. At the same time however, gestures are not innovative, nor should they be patentable. Pinch-to-zoom is just common sense. How else would you do it with one motion? If Apple wants to patent something, patent the technology that allows the device to recognize multi touch and react to it, don&#8217;t patent the gestures themselves.</p>
<p>Gestures should be treated as a language, like sign language for touch devices. We need a common set of gestures to interact with all touch enabled devices. I shouldn&#8217;t have to lean a different language just to use a different device.</p>
<p>This situation reminds me of the hyperlink fiasco from many years ago when <a href="http://news.zdnet.co.uk/itmanagement/0,1000000308,2121257,00.htm">BT contacted Prodigy and 16 other ISPs, including AOL asking them to buy a hyperlink licence</a>. If Apple goes down this path and tries to enforce pinch-to-zoom as &#8220;theirs&#8221; I would only hope it, as well as any other gesture parents, would lose.</p>

				
				]]>
        	</description>
    	</item>		<item>
        	<title>Pierre Igot on Click-Through in the Snow Leopard Finder</title>
        	<link>http://www.betalogue.com/2009/11/02/click-through/</link>
        	<comments></comments>
	        <description>
    	        <![CDATA[
				
<p>
I took some time off last week and during that time off, a reader named Herman wrote to comment on my recent posts on the Finder&#8217;s <a href="http://www.betalogue.com/2009/09/26/column-view-2/">column view and list view</a> modes and the persistence of numerous bugs and inconsistencies, even in Snow Leopard, which was supposed to be a bug-fixing release.
</p>
<p>
Herman mentioned something about the fact that clicking on background Finder windows in column view would sometimes trigger unwanted behaviours. I had noticed something like that myself, but hadn&#8217;t taken the time to try and pinpoint the problem. (Like most Mac OS X users, I guess I am just used to the Finder&#8217;s &#8220;quirkiness&#8221; and to having to click and click again until I get what I want, while hoping to avoid getting what I don&#8217;t want.)
</p>
<p>
I believe I now have more information about this particular problem and it definitely warrants a blog post.
</p>
<p>
Take the following situation: a test folder containing several text files, named &#8220;<span>file1.txt</span>,&#8221; &#8220;<span>file2.txt</span>,&#8221; &#8220;<span>file3.txt</span>,&#8221; &#8220;<span>file4.txt</span>,&#8221; etc.
</p>
<p>
<img src="http://www.betalogue.com/images/uploads/finder/finder-column-clickthrough1.png" width="464" height="223" alt="test folder with files" />
</p>
<p>
Bring the window to the foreground and select one of the files in the column, <span>file3.txt</span> for example:
</p>
<p>
<img src="http://www.betalogue.com/images/uploads/finder/finder-column-clickthrough2.png" width="464" height="223" alt="selected file in FG" />
</p>
<p>
Now click on another Finder window to relegate this particular window with the selected file to the background:
</p>
<p>
<img src="http://www.betalogue.com/images/uploads/finder/finder-column-clickthrough3.png" width="464" height="223" alt="selected file in BG" />
</p>
<p>
Now comes the important part. Try clicking on one of the files that is <em>not</em> currently selected in the column in the background window, like &#8220;<span>file1.txt</span>&#8221; in the example below:
</p>
<p>
<img src="http://www.betalogue.com/images/uploads/finder/finder-column-clickthrough4.png" width="464" height="223" alt="Before clicking" />
</p>
<p>
After you click on that file, you&#8217;ll notice something odd, which is that Mac OS X responds to the click by bringing the background window to the foreground, but it does not select the file that you&#8217;ve just attempted to click on:
</p>
<p>
<img src="http://www.betalogue.com/images/uploads/finder/finder-column-clickthrough5.png" width="464" height="223" alt="After clicking" />
</p>
<p>
This is because, in Snow Leopard, Apple has apparently decided to turn off the &#8220;click-through&#8221; behaviour that was standard in all view modes in Leopard, where the Finder would respond to a single click on a background window by 1) bringing the background window to the foreground and 2) selecting the item on which the user appears to have chosen to click, if there happens to be an item in that location.
</p>
<p>
Now, in Snow Leopard, the &#8220;click-through&#8221; behaviour only works in icon view. In both list view and column view, clicking on a background window only brings the window to the foreground, without affecting the current selection in that window in any way. (Click-through still works for the buttons in the Finder window&#8217;s toolbar, but it no longer works when clicking somewhere in the actual content of the window, i.e. in a list or column of items.)
</p>
<p>
Why did Apple make this change in list and column view, and not in icon view? Your guess is as good as mine. But it gets even weirder.
</p>
<p>
Go back to the step where the Finder window was still in the background and you were about to attempt to click on a file that was not the current selection in that background window, like &#8220;<span>file1.txt</span>&#8221; in the example below:
</p>
<p>
<img src="http://www.betalogue.com/images/uploads/finder/finder-column-clickthrough4.png" width="464" height="223" alt="Before clicking" />
</p>
<p>
But now, instead of a single click on &#8220;<span>file1.txt</span>,&#8221; try a double click. If Snow Leopard behaved logically, since click-through no longer works in column view, this double click would no longer be interpreted as a double click on the file itself, but only as a succession of two clicks, one to bring the Finder window to the foreground, and one to select &#8220;<span>file1.txt</span>.&#8221;
</p>
<p>
Alas, what happens in Snow Leopard in this situation is that, unlike the single click, the double click on &#8220;<span>file1.txt</span>&#8221; in the background window <em>is</em> interpreted as a double click on &#8220;<span>file1.txt</span>,&#8221; as if click-through were still active in column view.
</p>
<p>
This makes no sense whatsoever. If click-through is no longer supported in column view (or list view), then a double click on a specific location in a background window cannot be the same as a double click on the same location in the same window when the window is the foreground. The first click in the double click only brings the window to the foreground. It doesn&#8217;t affect the contents of the window in any way, and so the second click is just a single click.
</p>
<p>
This particular issue might sound like a small detail to some readers, and to a certain extent it is. But it is a pretty fundamental thing that affects basic interactions with Finder windows in a very real way, and creates an ever more inconsistent, unpredictable experience for the end user.
</p>
<p>
How is the user supposed to &#8220;know&#8221; and remember intuitively that click-through now only works in icon view mode and not in list view mode and column view mode? And how is the user supposed to &#8220;know&#8221; and remember intuitively that, even though click-through no longer works, &#8220;double-click-through&#8221; (to coin a phrase) still does?
</p>
<p>
With such inconsistencies, it is pretty much impossible for the user to develop instinctive habits in his or her interactions with the Finder, and he or she ends up constantly having to correct the inappropriate/unexpected behaviour triggered by his or her mouse clicks.
</p>
<p>
And, in the absence of a forum where Apple developers would actually explain their decisions to Mac users, we are left with the impression that the guys in charge of single clicks and the guys in charge of double clicks work in two separate departments and never talk to each other.
</p>
<p>
Which is, you know, kind of problematic for a GUI platform.</p>
<p>
<small>
						This entry was posted by Pierre Igot 
						 
						on Monday, November 2nd, 2009 at 6:46 pm						and is filed under <a href="http://www.betalogue.com/category/macintosh/" title="View all posts in Macintosh" rel="category tag">Macintosh</a>.
						You can follow any responses to this entry through the <a href="http://www.betalogue.com/2009/11/02/click-through/feed/">RSS 2.0</a> feed. 
						
													Responses are currently closed, but you can <a href="http://www.betalogue.com/2009/11/02/click-through/trackback/ " rel="trackback">trackback</a> from your own site.
						
												
					</small>
</p>

				
				]]>
        	</description>
    	</item>		<item>
        	<title>Dutch Teenager Hacks Jailbroken iPhones, Tries to Extort €5</title>
        	<link>http://arstechnica.com/apple/news/2009/11/dutch-hacker-holds-jailbroken-iphones-hostage-for-5.ars</link>
        	<comments></comments>
	        <description>
    	        <![CDATA[
				
<p>Though jailbreaking an iPhone certainly opens up opportunities to add functionality that Apple doesn't approve of, it can also make an iPhone less secure. Several Dutch iPhone users <a href="http://gathering.tweakers.net/forum/list_messages/1376420/0" title="Gathering of Tweakers: [iPhone] Is mijn telefoon gehackt?">found that out the hard way</a> after a hacker attacked a number of vulnerable phones on T-mobile Netherlands and tried to extort âŹ5 from them.</p>
<p>It appears one enterprising Dutch hacker used port scanning to identify jailbroken iPhones on T-mobile Netherlands with SSH running. Enabling SSH is a common procedure for jailbroken iPhones, allowing a user to log in via Terminal and run standard UNIX commands. Unfortunately, iPhones all have a default root password that many forget to change after jailbreaking, leaving their phone as vulnerable as a Lamborghini&nbsp;parked on a public street&nbsp;with the windows down, the doors unlocked, and the keys in the ignition.</p>
<p>The hacker relied on unchanged root passwords to hack into the phones. He then sent what appears to be an SMS alert to the hacked phones (in reality it's a replaced wallpaper) that read, "You iPhone's been hacked because it's really insecure! Please visit doiop.com/iHacked and secure your iPhone right now! Right now, I can access all your files." Going to the website directs the user to send âŹ5 to a PayPal account, after which the hacker will e-mail instructions to remove the hack&#8212;which most likely involve restoring the iPhone to factory settings.</p>
<p>The hacker doesn't appear to have malicious intent, other than to glean some extra cash. "If you don't pay, it's fine by me," reads the page mentioned in the message to the hacked iPhone owners. "But remember, the way I got access to
your iPhone can be used by thousands of others&#8212;they can send text
messages from your number (like I did), use it to call or record your
calls, and actually whatever they want, even use it for their hacking
activities! I can assure you, I have no intention of harming you or whatever, but, some hackers do! It's just my advice to secure your phone."</p>
<p>An Ars reader familiar with computer security let us know that security researchers have done similar port scanning in the past, and downloaded users' SMS databases as a "proof of concept." However, this is the first time that it seems the technique has been used in the wild. It's worth noting that the technique is fairly trivial and could be done by anyone with even a modicum of networking know-how.</p>
<p>The incident highlights the fact that jailbreaking removes the security mechanisms that Apple has in place for the iPhone OS&#8212;which are as much about securing the device against hackers as they are about preventing "unauthorized" applications. If you do jailbreak, then the onus of security is on you, so be sure to change the root password to something other than the default. You can also disable the SSH daemon when not in use to prevent this particular attack from happening to you.</p>
<p><strong>UPDATE:</strong> It appears the young hacker has had a change of heart on the money issue, and <a href="http://mr09.fileave.com/">posted instructions</a> for undoing what he did to several Dutch iPhone users. According to a commenter below, he has also <a href="http://shorttext.com/j4oda3ha5">apologized for asking for money</a> and returned whatever ill-gotten gains he received from his stunt. However, that doesn't mean someone else couldn't pull the same trick and just not tell you about it. So for goodness sake, if you jailbreak and do things like leave an SSH daemon running, <strong>change the default passwords.</strong></p>

				
				]]>
        	</description>
    	</item>		<item>
        	<title>Apple to Open Store in Center City Philadelphia</title>
        	<link>http://www.metro.us/us/article/2009/11/03/02/0239-85/index.xml</link>
        	<comments></comments>
	        <description>
    	        <![CDATA[
				<!--column2-mode--><img height="252" width="425" src="http://www.metro.us/_internal/cimg!0/ie7sjiccz3pgba1d3dmtn66wo3mqf0j" alt="A rendering shows what the new store would look like(Left).  The planned space is now an empty storefront(right).  " /><span>A rendering shows what the new store would look like(Left).  The planned space is now an empty storefront(right).  </span>
<h1>Apple (finally) coming to Philly</h1>
<div id="mainitemright"><div><span>
</span><p><br />
Apple said last week in a financial filing that it will open between 25 and 50 new stores across the country in 2010. The company opened 54 stores between July 2008 and July 2009, but is known for being picky about its urban locations.</p><p>
</p>
</div></div>
<p> <font color="#ff9900"><b>PHILADELPHIA.</b></font> After years of rumors and wishful thinking,  fans of Apple products will soon get one of the trademark, futuristic all-glass exterior shops in Center City.</p><p>
Design plans for a new store near 16th and Walnut streets go before the city Art Commission tomorrow. Apple has already posted job listings on its Web site for the store, but a spokeswoman said yesterday that an official announcement about a new store here isn't ready yet. </p><p>
Adding an Apple Store to 1607 Walnut St. will add a dose of visual appeal &#x2014; and a level of hipness from the tens of thousands of iPhone and Mac users &#x2014; to a block that's been hit by a bit of a retail slowdown.</p><p>
"For what that building is now, what you see at this moment, is a series of three or four rehab jobs over the last 40 years," Art Commission executive director William Burke said yesterday. "They're going to clean all that off and purify the design. It&#x2019;s a nice building that contributes to the character of the street."</p><p>
Planning officials said the store likely won't need any zoning change, so once it receives approval from the Art Commission, construction permits from Licenses and Inspections would be the last step before construction.</p><p>
"I haven&#x2019;t seen the plans for Philly yet but whatever they are, I hope it'll be equally elegant and exciting visually as some others, like the Fifth Avenue location in New York," Planning Commission deputy director Gary Jastrzab said.<br />
</p>
<noscript></noscript>
				
				]]>
        	</description>
    	</item>		<item>
        	<title>App Store Rejection of the Week</title>
        	<link>http://twitter.com/jsnell/status/5398125385</link>
        	<comments></comments>
	        <description>
    	        <![CDATA[
				
				
				]]>
        	</description>
    	</item>		<item>
        	<title>TapeDeck 1.3</title>
        	<link>http://tapedeckapp.com/</link>
        	<comments></comments>
	        <description>
    	        <![CDATA[
				
<h3>The Tape Box</h3>
<p>Everything you've ever recorded with TapeDeck is available, in chronological order, in your tape box. Quickly search tapes by title, color, date, and quality, using the search field.</p>

				
				]]>
        	</description>
    	</item>		<item>
        	<title>Andrew Shebanow’s Retort Regarding Open Government and PDF</title>
        	<link>http://shebanator.com/2009/11/02/open-government-and-pdf/</link>
        	<comments></comments>
	        <description>
    	        <![CDATA[
				
<div><p><a title="SF link two" href="http://daringfireball.net/linked/2009/11/02/foresman-adobe-formats">Daring</a> <a title="DF link one" href="http://daringfireball.net/linked/2009/11/02/adobe-open-gov">Fireball</a> just linked to two <a title="Sunlight Labs whining about PDF" href="http://sunlightlabs.com/blog/2009/adobe-bad-open-government/">equally</a> <a title="Ars Technica whining" href="http://arstechnica.com/tech-policy/news/2009/10/adobe-pushes-flash-and-pdf-for-open-government-misses-irony.ars?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=rss">foolish</a> articles about how PDFs are &#8220;bad&#8221; for Open Government.</p>
<p>The premise of these articles is that the world would be a much better place if all governments would publish all of their information on the web in HTML or XML. You know what else would make the world a much better place? Unicorns.</p>
<p>The issue at hand is not whether governments should pick HTML or PDF. The issue at hand is whether governments are capable of publishing information <em>at all</em>. Show me an HTML creation tool that creates high quality, standards conformant markup from a Word document or any of the zillions of editing tools that government employees use. Now add in all the tools used by people who submit documents to the government. And all the versions of those tools released in the last 20 years. Now make sure that the HTML/XML works correctly even when the user doesn&#8217;t have the right browser or the right fonts installed. Guess what? There are no such conversion tools available. And who would pay to make sure that everyone had access to these tools and knew how to use them correctly?</p>
<p>Creating PDFs is trivially easy for all these cases, whether you use Acrobat or something built into your OS. It works regardless of what tool was used to create the content in the first place, and it works on pretty much every OS out there and on mobile.</p>
<p>HTML/XML Standards nerds should get a grip. They aren&#8217;t even in the running to compete with PDF here.

</p>
<p></p>
</div> <p>~ by Andrew Shebanow on 02Nov09.</p>
<p>Posted in <a href="http://en.wordpress.com/tag/document-formats/" title="View all posts in Document Formats" rel="category tag">Document Formats</a>,  <a href="http://en.wordpress.com/tag/openness/" title="View all posts in Openness" rel="category tag">Openness</a>,  <a href="http://en.wordpress.com/tag/xml/" title="View all posts in XML" rel="category tag">XML</a> </p>

				
				]]>
        	</description>
    	</item>		<item>
        	<title>Why do we have an IMG element?</title>
        	<link>http://diveintomark.org/archives/2009/11/02/why-do-we-have-an-img-element</link>
        	<comments>http://news.ycombinator.com/item?id=918308</comments>
	        <description>
    	        <![CDATA[
				
<p>On February 25, 1993, <a href="http://1997.webhistory.org/www.lists/www-talk.1993q1/0182.html"><cite>Marc Andreessen</cite> wrote</a>:</p>
<blockquote cite="http://1997.webhistory.org/www.lists/www-talk.1993q1/0182.html">
<p>I&#8217;d like to propose a new, optional HTML tag:</p>
<p>IMG</p>
<p>Required argument is <code>SRC="url"</code>. </p>
<p>This names a bitmap or pixmap file for the browser to attempt to pull over the network and interpret as an image, to be embedded in the text at the point of the tag&#8217;s occurrence.</p>
<p>An example is:
</p><p><code>&lt;IMG SRC="file://foobar.com/foo/bar/blargh.xbm"></code></p>
<p>(There is no closing tag; this is just a standalone tag.)</p>
<p>This tag can be embedded in an anchor like anything else; when that happens, it becomes an icon that&#8217;s sensitive to activation just like a regular text anchor.</p>
<p>Browsers should be afforded flexibility as to which image formats they support. Xbm and Xpm are good ones to support, for example. If a browser cannot interpret a given format, it can do whatever it wants instead (X Mosaic will pop up a default bitmap as a placeholder).</p>
<p>This is required functionality for X Mosaic; we have this working, and we&#8217;ll at least be using it internally. I&#8217;m certainly open to suggestions as to how this should be handled within HTML; if you have a better idea than what I&#8217;m presenting now, please let me know. I know this is hazy wrt image format, but I don&#8217;t see an alternative than to just say &#8220;let the browser do what it can&#8221; and wait for the perfect solution to come along (MIME, someday, maybe).</p>
</blockquote>
<p><a href="http://en.wikipedia.org/wiki/X_BitMap">Xbm</a> and <a href="http://en.wikipedia.org/wiki/X_PixMap">Xpm</a> were popular graphics formats on Unix systems. They are still supported in modern browsers. (I tested in Internet Explorer 8 and Google Chrome.)</p>
<p>&#8220;X Mosaic&#8221; was one of the earliest web browsers. When he wrote this message in early 1993, <a href="http://en.wikipedia.org/wiki/Marc_Andreessen">Marc Andreessen</a> had not yet founded the company that made him famous, <a href="http://en.wikipedia.org/wiki/Mosaic_Communications_Corporation">Mosaic Communications Corporation</a>. He still called his browser &#8220;X Mosaic.&#8221; He had not yet renamed it &#8220;Mosaic Netscape.&#8221; (You may know it better by its third name, &#8220;Netscape Navigator.&#8221;)</p>
<p>&#8220;MIME, someday, maybe&#8221; is a reference to <a href="http://en.wikipedia.org/wiki/Content_negotiation">content negotiation</a>, a feature of HTTP where a client (like a web browser) tells the server (like a web server) what types of resources it supports (like <code>image/jpeg</code>) so the server can return something in the client&#8217;s preferred format. <a href="http://www.w3.org/Protocols/HTTP/AsImplemented.html">The Original HTTP as defined in 1991</a> (the only version that was implemented in February 1993) did not have a way for clients to tell servers what kind of images they supported, thus the design dilemma that Marc faced.</p>
<p>A few hours later, <a href="http://1997.webhistory.org/www.lists/www-talk.1993q1/0183.html"><cite>Tony Johnson</cite> replied</a>:</p>
<blockquote cite="http://1997.webhistory.org/www.lists/www-talk.1993q1/0183.html">
<p>I have something very similar in Midas 2.0 (in use here at SLAC, and due for public release any week now), except that all the names are different, and it has an extra argument <code>NAME="name"</code>. It has almost exactly the same functionality as your proposed <code>IMG</code> tag. e.g.</p>
<p><code>&lt;ICON name="NoEntry" href="http://note/foo/bar/NoEntry.xbm"></code></p>
<p>The idea of the name parameter was to allow the browser to have a set of &#8220;built in&#8221; images. If the name matches a &#8220;built in&#8221; image it would use that instead of having to go out and fetch the image. The name could also act as a hint for &#8220;line mode&#8221; browsers as to what kind of a symbol to put in place of the image.</p>
<p>I don&#8217;t much care about the parameter or tag names, but it would be sensible if we used the same things. I don&#8217;t much care for abbreviations, ie why not <code>IMAGE=</code> and <code>SOURCE=</code>. I somewhat prefer <code>ICON</code> since it imlies that the <code>IMAGE</code> should be smallish, but maybe <code>ICON</code> is an overloaded word?</p>
</blockquote>
<p><a href="http://en.wikipedia.org/wiki/MidasWWW">Midas</a> was another early web browser, a contemporary of X Mosaic. It was cross-platform; it ran on both Unix and VMS. &#8220;SLAC&#8221; refers to the <a href="http://en.wikipedia.org/wiki/Stanford_Linear_Accelerator">Standard Linear Accelerator Center</a> (now the SLAC National Accelerator Laboratory). SLAC hosted the first web server in the United States (in fact <a href="http://www.slac.stanford.edu/history/earlyweb/history.shtml">the first web server outside Europe</a>). When <a href="http://www.slac.stanford.edu/history/earlyweb/wizards.shtml#Tony%20Johnson">Tony</a> wrote this message, SLAC was an old-timer on the WWW, having hosted <a href="http://www.slac.stanford.edu/history/earlyweb/firstpages.shtml">five pages</a> on their web server for a whopping 441 days.</p>
<p>Tony continued:</p>
<blockquote>
<p>While we are on the subject of new tags, I have another, somewhat similar tag, which I would like to support in Midas 2.0. In principle it is:</p>
<p><code>&lt;INCLUDE HREF="..."></code></p>
<p>The intention here would be that the second document is to be included into the first document at the place where the tag occured. In principle the referenced document could be anything, but the main purpose was to allow images (in this case arbitrary sized) to be embedded into documents. Again the intention would be that when HTTP2 comes along the format of the included document would be up for separate negotiation.</p>
</blockquote>
<p>&#8220;HTTP2&#8221; is a reference to <a href="http://www.w3.org/Protocols/HTTP/HTTP2.html">Basic HTTP as defined in 1992</a>. At this point in early 1993, it was still largely unimplemented. The draft known as &#8220;HTTP2&#8221; evolved and eventually became standardized as HTTP 1.0 (albeit <a href="http://www.w3.org/Protocols/HTTP/1.0/spec.html">not for another three years</a>). HTTP 1.0 did include <a href="http://www.w3.org/Protocols/HTTP/HTRQ_Headers.html#z3">request headers for content negotiation</a>, a.k.a. &#8220;MIME, someday, maybe.&#8221;</p>
<p>Tony continued:</p>
<blockquote>
<p>An alternative I was considering was:</p>
<p><code>&lt;A HREF="..." INCLUDE>See photo&lt;/A></code></p>
<p>I don&#8217;t much like adding more functionality to the <code>&lt;A></code> tag, but the idea here is to maintain compatibility with browsers that can not honour the <code>INCLUDE</code> parameter. The intention is that browsers which do understand <code>INCLUDE</code>, replace the anchor text (in this case &#8220;See photo&#8221;) with the included document (picture), while older or dumber browsers ignore the <code>INCLUDE</code> tag completely.</p>
</blockquote>
<p>This proposal was never implemented, although the idea of text-if-an-image-is-missing is an important accessibility technique which was missing from Marc&#8217;s initial <code>&lt;IMG></code> proposal. Many years later, this feature was bolted on as the <a href="http://www.w3.org/TR/html4/struct/objects.html#h-13.8"><code>&lt;img alt></code> attribute</a>, which Netscape promptly broke by <a href="http://www.cs.tut.fi/~jkorpela/html/alt.html#tooltip">erroneously treating it as a tooltip</a>.</p>
<p>A few hours after that, <a href="http://1997.webhistory.org/www.lists/www-talk.1993q1/0186.html"><cite>Tim Berners-Lee</cite> responded</a>:</p>
<blockquote cite="http://1997.webhistory.org/www.lists/www-talk.1993q1/0186.html">
<p>I had imagined that figues would be reprented as</p>
<p><code>&lt;a name=fig1 href="fghjkdfghj" REL="EMBED, PRESENT">Figure &lt;/a></code></p>
<p>where the relation ship values mean</p>
<pre>EMBED	 Embed this here when presenting it
PRESENT	 Present this whenever the source document is presented</pre>
<p>Note that you can have various combinations of these, and if the browser doesn&#8217;t support either one, it doesn&#8217;t break.</p>
<p>[I] see that using this as a method for selectable icons means nesting anchors. Hmmm. But I hadn&#8217;t wanted a special tag.</p>
</blockquote>
<p>This proposal was never implemented, but the <code>rel</code> attribute is <a href="http://diveintohtml5.org/semantics.html#link">still around</a>.</p>
<p><a href="http://1997.webhistory.org/www.lists/www-talk.1993q1/0188.html"><cite>Jim Davis</cite> added</a>:</p>
<blockquote cite="http://1997.webhistory.org/www.lists/www-talk.1993q1/0188.html">
<p>It would be nice if there was a way to specify the content type, e.g.</p>
<p><code>&lt;IMG HREF="http://nsa.gov/pub/sounds/gorby.au" CONTENT-TYPE=audio/basic></code></p>
<p>But I am completely willing to live with the requirement that I specify the content type by file extension.</p>
</blockquote>
<p>This proposal was never implemented, but Netscape did later add arbitrary embedding of media objects with the <code>&lt;embed></code> element.</p>
<p><a href="http://1997.webhistory.org/www.lists/www-talk.1993q1/0192.html"><cite>Jay C. Weber</cite> asked</a>:</p>
<blockquote cite="http://1997.webhistory.org/www.lists/www-talk.1993q1/0192.html">
<p>While images are at the top of my list of desired medium types in a WWW browser, I don&#8217;t think we should add idiosyncratic hooks for media one at a time. Whatever happened to the enthusiasm for using the MIME typing mechanism?
</p></blockquote>
<p><a href="http://1997.webhistory.org/www.lists/www-talk.1993q1/0194.html"><cite>Marc Andreessen</cite> replied</a>:</p>
<blockquote cite="http://1997.webhistory.org/www.lists/www-talk.1993q1/0194.html">
<p>This isn&#8217;t a substitute for the upcoming use of MIME as a standard document mechanism; this provides a necessary and simple implementation of functionality that&#8217;s needed independently from MIME.</p>
</blockquote>
<p><a href="http://1997.webhistory.org/www.lists/www-talk.1993q1/0198.html"><cite>Jay C. Weber</cite> responded</a>:</p>
<blockquote cite="http://1997.webhistory.org/www.lists/www-talk.1993q1/0198.html">
<p>Let&#8217;s temporarily forget about MIME, if it clouds the issue. My objection was to the discussion of &#8220;how are we going to support embedded images&#8221; rather than &#8220;how are we going to support embedded objections in various media&#8221;.</p>
<p>Otherwise, next week someone is going to suggest &#8216;lets put in a new tag <code>&lt;AUD SRC="file://foobar.com/foo/bar/blargh.snd"></code>&#8216; for audio.</p>
<p>There shouldn&#8217;t be much cost in going with something that generalizes.</p>
</blockquote>
<p>With the benefit of hindsight, it appears that Jay&#8217;s concerns were well-founded. It took a little more than a week, but HTML5 did finally add new <a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/video.html#video"><code>&lt;video></code></a> and <a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/video.html#audio"><code>&lt;audio></code></a> elements.</p>
<p>Responding to Jay&#8217;s original message, <a href="http://1997.webhistory.org/www.lists/www-talk.1993q1/0204.html"><cite>Dave Raggett</cite> said</a>:</p>
<blockquote cite="http://1997.webhistory.org/www.lists/www-talk.1993q1/0204.html">
<p>True indeed! I want to consider a whole range of possible image/line art types, along with the possibility of format negotiation. Tim&#8217;s note on supporting clickable areas within images is also important.</p>
</blockquote>
<p>Later in 1993, <a href="http://www.w3.org/People/Raggett/">Dave Raggett</a> proposed <a href="http://www.w3.org/MarkUp/HTMLPlus/htmlplus_1.html">HTML+</a> as an evolution of the HTML standard. The proposal was never implemented, and it was superceded by <a href="http://www.w3.org/MarkUp/html-spec/html-spec_toc.html">HTML 2.0</a>. HTML 2.0 was a &#8220;retro-spec,&#8221; which means it formalized features already in common use. &#8220;<a href="http://www.w3.org/MarkUp/html-spec/html-spec_1.html#SEC1.1">This specification brings together, clarifies, and formalizes a set of features</a> that roughly corresponds to the capabilities of HTML in common use prior to June 1994.&#8221;</p>
<p>Dave later wrote <a href="http://www.w3.org/MarkUp/html3/CoverPage.html">HTML 3.0</a>, based on his earlier HTML+ draft. HTML 3.0 was also never implemented (outside of the W3C&#8217;s own reference implementation, <a href="http://www.w3.org/Arena/">Arena</a>), and it was superceded by <a href="http://www.w3.org/MarkUp/Wilbur/">HTML 3.2</a>. HTML 3.2 was also a &#8220;retro-spec&#8221; &mdash; &#8220;<a href="http://www.w3.org/TR/REC-html32.html#intro">HTML 3.2 adds widely deployed features</a> such as tables, applets and text flow around images, while providing full backwards compatibility with the existing standard HTML 2.0.&#8221;</p>
<p>Dave later co-authored <a href="http://www.w3.org/TR/html4">HTML 4.0</a> and developed <a href="http://tidy.sourceforge.net/">HTML Tidy</a>, and went on to help with XHTML, XForms, MathML, and other modern W3C specifications.</p>
<p>Getting back to 1993, <a href="http://1997.webhistory.org/www.lists/www-talk.1993q1/0209.html">Marc replied to Dave</a>:</p>
<blockquote cite="http://1997.webhistory.org/www.lists/www-talk.1993q1/0209.html">
<p>Actually, maybe we should think about a general-purpose procedural graphics language within which we can embed arbitrary hyperlinks attached to icons, images, or text, or anything. Has anyone else seen Intermedia&#8217;s capabilities wrt this?</p>
</blockquote>
<p><a href="http://en.wikipedia.org/wiki/Intermedia_(hypertext)">Intermedia</a> was a hypertext project from Brown University. It was developed from 1985 to 1991 and ran on <a href="http://en.wikipedia.org/wiki/A/UX">A/UX</a>, a Unix-like operating system for early Macintosh computers.</p>
<p>The idea of a &#8220;general-purpose procedural graphics language&#8221; did eventually catch on. Modern browsers support both <a href="http://www.w3.org/Graphics/SVG/">SVG</a> (declarative markup with embedded scripting) and <a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/the-canvas-element.html#the-canvas-element"><code>&lt;canvas></code></a> (procedural direct-mode graphics API), although the latter <a href="http://ln.hixie.ch/?start=1089635050&amp;count=1">started as a proprietary extension</a> before being &#8220;retro-specced&#8221; by the <a href="http://www.whatwg.org/">WHATWG</a>.</p>
<p><a href="http://1997.webhistory.org/www.lists/www-talk.1993q1/0217.html"><cite>Bill Janssen</cite> replied</a>:</p>
<blockquote cite="http://1997.webhistory.org/www.lists/www-talk.1993q1/0217.html">
<p>Other systems to look at which have this (fairly valuable) notion are Andrew and Slate. Andrew is built with _insets_, each of which has some interesting type, such as text, bitmap, drawing, animation, message, spreadsheet, etc. The notion of arbitrary recursive embedding is present, so that an inset of any kind can be embedded in any other kind which supports embedding. For example, an inset can be embedded at any point in the text of the text widget, or in any rectangular area in the drawing widget, or in any cell of the spreadsheet.</p>
</blockquote>
<p>&#8220;Andrew&#8221; is a reference to the <a href="http://www-2.cs.cmu.edu/~AUIS/">Andrew User Interface System</a> (although at that time it was simply known as the <a href="http://en.wikipedia.org/wiki/Andrew_Project">Andrew Project</a>).</p>
<p>Meanwhile, <a href="http://1997.webhistory.org/www.lists/www-talk.1993q1/0215.html"><cite>Thomas Fine</cite> had a different idea</a>:</p>
<blockquote cite="http://1997.webhistory.org/www.lists/www-talk.1993q1/0215.html">
<p>Here&#8217;s my opinion. The best way to do images in WWW is by using MIME. I&#8217;m sure postscript is already a supported subtype in MIME, and it deals very nicely with mixing text and graphics.</p>
<p>But it isn&#8217;t clickable, you say? Yes your right. I suspect there is already an answer to this in display postscript. Even if there isn&#8217;t the addition to standard postscript is trivial. Define an anchor command which specifies the URL and uses the current path as a closed region for the button. Since postscript deals so well with paths, this makes arbitrary button shapes trivial.</p>
</blockquote>
<p><a href="http://en.wikipedia.org/wiki/Display_PostScript">Display Postscript</a> was an on-screen rendering technology co-developed by Adobe and NeXT.</p>
<p>This proposal was never implemented, but the idea that the best way to fix HTML is to replace it with something else altogether <a href="http://dbaron.org/log/20090707-ex-html">still pops up from time to time</a>.</p>
<p><a href="http://1997.webhistory.org/www.lists/www-talk.1993q1/0221.html"><cite>Tim Berners-Lee</cite>, March 2, 1993</a>:</p>
<blockquote cite="http://1997.webhistory.org/www.lists/www-talk.1993q1/0221.html">
<p>HTTP2 allows a document to contain any type which the user has said he can handle, not just registered MIME types. So one can experiment. Yes I think there is a case for postscript with hypertext. I don&#8217;t know whether display postcript has enough. I know Adobe are trying to establish their own postscript-based &#8220;PDF&#8221; which will have links, and be readable by their proprietory brand of viewers.</p>
<p>I thought that a generic overlaying language for anchors (Hytime based?) would allow the hypertext and the graphics/video standards to evolve separately, which would help both.</p>
<p>Let the <code>IMG</code> tag be <code>INCLUDE</code> and let it refer to an arbitrary document type. Or <code>EMBED</code> if <code>INCLUDE</code> sounds like a cpp include which people will expect to provide SGML source code to be parsed inline &#8212; not what was intended.</p>
</blockquote>
<p><a href="http://www.hytime.org/">HyTime</a> was an early, SGML-based hypertext document system. It loomed large in many early discussions of HTML, and later XML.</p>
<p>Tim&#8217;s proposal for an <code>&lt;INCLUDE></code> tag was never implemented, although you can see echoes of it in <code>&lt;object></code>, <code>&lt;embed></code>, and the <code>&lt;iframe></code> element.</p>
<p>Finally, on March 12, 1993, <a href="http://1997.webhistory.org/www.lists/www-talk.1993q1/0257.html">Marc Andreessen revisited the thread</a>:</p>
<blockquote cite="http://1997.webhistory.org/www.lists/www-talk.1993q1/0257.html">
<p>Back to the inlined image thread again &#8212; I&#8217;m getting close to releasing Mosaic v0.10, which will support inlined GIF and XBM images/bitmaps, as mentioned previously. &#8230;</p>
<p>We&#8217;re not prepared to support <code>INCLUDE</code>/<code>EMBED</code> at this point. &#8230; So we&#8217;re probably going to go with <code>&lt;IMG SRC="url"></code> (not <code>ICON</code>, since not all inlined images can be meaningfully called icons). For the time being, inlined images won&#8217;t be explicitly content-type&#8217;d; down the road, we plan to support that (along with the general adaptation of MIME). Actually, the image reading routines we&#8217;re currently using figure out the image format on the fly, so the filename extension won&#8217;t even be significant.</p>
</blockquote>
<p>I don&#8217;t really know why I wrote this. It wasn&#8217;t what I set out to write. That happens. But I am extraordinarily fascinated with all aspects of this almost-17-year-old conversation. Consider:</p>
<ul>
<li>HTTP still exists. HTTP successfully evolved from 0.9 into 1.0 and later 1.1. <a href="http://www.ietf.org/dyn/wg/charter/httpbis-charter.html">And still it evolves</a>.</li>
<li>HTML still exists. That rudimentary data format &mdash; it didn&#8217;t even support inline images! &mdash; successfully evolved into 2.0, 3.2, 4.0. <a href="http://www.whatwg.org/">And still it, too, evolves</a>. HTML is an unbroken line. A twisted, knotted, snarled line, to be sure. There were plenty of &#8220;dead branches&#8221; in the evolutionary tree, places where standards-minded people got ahead of themselves (and ahead of authors and implementors). But still. Here we are, in 2009, and <a href="http://www.w3.org/People/Berners-Lee/FAQ.html#Examples">web pages from 1990</a> still render in modern browsers. I just loaded one up on my Android phone, and I didn&#8217;t even get prompted to &#8220;please wait while importing legacy format&#8230;&#8221;</li>
<li>HTML has always been a conversation between browser makers, authors, standards wonks, and other people who just showed up and liked to talk about angle brackets. Most of the successful versions of HTML have been &#8220;retro-specs,&#8221; catching up to the world while simultaneously trying to nudge it in the right direction. Anyone who tells you that HTML should be kept &#8220;pure&#8221; (presumably by ignoring browser makers, or ignoring authors, or both) is simply misinformed. HTML has never been pure, and all attempts to purify it have been spectacular failures, matched only by the attempts to replace it.</li>
<li>None of the browsers from 1993 still exist in any recognizable form, although if you squint hard enough, you can trace the lineage of X Mosaic all the way to modern-day Firefox. The dominant browser on the web today had its humble &#8220;beginnings&#8221; in &#8220;Microsoft Plus! for Windows 95,&#8221; where it was bundled with some desktop themes and a pinball game (but of course that browser <a href="http://en.wikipedia.org/wiki/Spyglass_Mosaic">can be traced back further too</a>).</li>
<li>Some of the operating systems from 1993 still exist, but none of them are relevant to the modern web. Most people today who &#8220;experience&#8221; the web do so on a PC running Windows 2000 or later, a Mac running Mac OS X, a PC running some flavor of Linux, or a handheld device like an iPhone. In 1993, Windows was at version 3.1 (and competing with OS/2), Macs were running System 7, and Linux was distributed via Usenet. (Want to have some fun? Find a graybeard and whisper &#8220;Trumpet Winsock&#8221; or &#8220;MacPPP.&#8221;)</li>
<li>Some of the same <em>people</em> are still around and still involved in what we now simply call &#8220;web standards.&#8221; That&#8217;s after almost 20 years. And some were involved in predecessors of HTML, going back into the 1980s and before.</li>
<li>Speaking of predecessors&#8230; With the eventual popularity of HTML and the web, it is easy to forget the contemporary formats and systems that informed its design. Andrew? Intermedia? HyTime? And HyTime was not some rinky-dink academic research project; <a href="http://xml.coverpages.org/hytime.html">it was an ISO standard</a>. It was approved for military use. It was Big Business. And you can read about it yourself&#8230; <a href="http://www.sgmlsource.com/history/hthist.htm">on this HTML page, in your web browser</a>.</li>
</ul>
<p>But none of this answers the original question: why do we have an <code>&lt;img></code> element? Why not an <code>&lt;icon></code> element? Or an <code>&lt;include></code> element? Why not a hyperlink with an <code>include</code> attribute, or some combination of <code>rel</code> values? Why an <code>&lt;img></code> element? Quite simply, because Marc Andreessen shipped one, and shipping code wins.</p>
<p>That&#8217;s not to say that <em>all</em> shipping code wins; after all, Andrew and Intermedia and HyTime shipped code too. Code is necessary but not sufficient for success. And I <em>certainly</em> don&#8217;t mean to say that shipping code before a standard will produce the best solution. Marc&#8217;s <code>&lt;img></code> element didn&#8217;t mandate a common graphics format; it didn&#8217;t define how text flowed around it; didn&#8217;t support text alternatives or fallback content for older browsers. And 16, almost 17 years later, <a href="http://tools.ietf.org/html/draft-abarth-mime-sniff">we&#8217;re still struggling with content sniffing</a>, and it&#8217;s still <a href="http://code.google.com/p/doctype/wiki/ArticleContentSniffing">a source of crazy security vulnerabilities</a>. And you can trace that all the way back, 17 years, through the <a href="http://en.wikipedia.org/wiki/Browser_wars">Great Browser Wars</a>, all the way back to February 25, 1993, when Marc Andreessen offhandedly remarked, &#8220;MIME, someday, maybe,&#8221; and then shipped his code anyway.</p>
<p>The ones that win are the ones that ship.</p>

				
					<br/><a href="http://news.ycombinator.com/item?id=918308">Comments</a>
				]]>
        	</description>
    	</item>		<item>
        	<title>★ Pinching and the Droid</title>
        	<link>http://daringfireball.net/2009/11/pinching_and_the_droid</link>
        	<comments></comments>
	        <description>
    	        <![CDATA[
				
<h1>Pinching and the&#160;Droid</h1>
<h6>Monday, 2 November 2009</h6>
<p>Joshua Topolsky, writing for Engadget, <a href="http://www.engadget.com/2009/10/30/motorola-droid-review/">gives the Droid a very positive review overall</a>. But regarding something I&#8217;d been wondering about, here&#8217;s what he writes about multi-touch:</p>
<blockquote>
<p>As you have probably heard (or guessed), there&#8217;s no multitouch on
  this device. That&#8217;s clearly an issue with Android 2.0 and choices
  that Google is making about user interface &#8212; we&#8217;re fairly certain
  there&#8217;s nothing technically holding back the DROID from utilizing
  multitouch input, and we wouldn&#8217;t be surprised to see some tweaked
  ROMs hit the information superhighway with the functionality
  onboard. [&#8230;]</p>
<p><em>Note: Android 2.0 does support multitouch events, but the
  functionality isn&#8217;t implemented here.</em></p>
</blockquote>
<p>I, alas, don&#8217;t have a Droid in hand, but my understanding of the multi-touch situation is as follows. First, &#8220;multi-touch&#8221; is too general a term. What Topolsky means in his italicized note is that the Android 2.0 OS does have APIs to track multiple simultaneous touch events. Game developers, for example, should be able to write &#8220;multi-touch&#8221; games equivalent to those on the iPhone. This was not possible with early versions of Android.</p>
<p>So from an API perspective, Android 2.0 allows developers to &#8220;see&#8221; multiple touch events, <em>but</em>, from a UI perspective, Android 2.0 does not use pinching as a standard gesture.</p>
<p>The big multi-touch gesture that Apple uses in the iPhone is pinching &#8212; in particular, pinch-to-zoom. You pinch to zoom in MobileSafari. You pinch to zoom photos. You pinch to zoom maps.</p>
<p>There is no pinching on a Droid running Android 2.0. As for why, my somewhat-informed best guess is that it is related to <a href="http://www.wired.com/gadgets/miscellaneous/news/2008/02/multitouch_patents">Apple&#8217;s patent applications for the pinch-to-zoom gesture</a>. If so, this stinks.</p>
<p>It&#8217;s not like no one else has implemented pinch-to-zoom, though: Palm uses it in WebOS, pretty much just like in the iPhone OS. It&#8217;s such an unbelievably useful, convenient, obvious, natural gesture, it&#8217;s hard for me to imagine using a handheld device without it.</p>
<p>And then adding to the intrigue, today came <a href="http://www.youtube.com/watch?v=xRiGZ_0Fblk">this demo video from Eldar Murtazin of Mobile Review</a>, showing the Motorola Milestone, the GSM version of the Droid which will purportedly go on sale in Europe later this month.<sup id="fnr1-2009-11-02"><a href="http://daringfireball.net/2009/11/pinching_and_the_droid#fn1-2009-11-02">1</a></sup> As <a href="http://www.slashgear.com/motorola-milestone-aka-gsm-droid-adds-multitouch-video-0262450/">noted by Chris Davies</a> at Slash Gear, the demo clearly shows support for pinch-to-zoom in both the Photos app (around the 3:00 mark) and web browser (around the 5:45 mark). In both cases, pinch-zooming on the Milestone seems very jerky &#8212; the zooming seems to happen all at once after the pinch gesture stops, very much unlike on the iPhone, where zooming smoothly animates live, as you pinch. My sources suggest that this is a Motorola customization, not code from Google. (Likewise for multi-touch gestures supported by HTC Android phones.)</p>
<p>So it would appear that Palm is willing to risk a lawsuit with Apple over this, and Google is not. The situation certainly brings to mind a gesture of some sort.</p>
<div>
<hr />
<ol>
<li id="fn1-2009-11-02">
<p>A key advantage Apple has over many of its competitors is simple, consistent, worldwide branding. For three years, Apple has released one new phone in either June or July: iPhone, iPhone 3G, iPhone 3GS. Everyone, everywhere, just calls them all &#8220;iPhones&#8221;, or &#8220;the iPhone&#8221;. Even in the case of the just-released Chinese iPhone, which lacks Wi-Fi hardware, the name is unchanged. iPhone, iPhone. iPhone.</p>
<p>Palm gets it &#8212; they&#8217;re using the &#8220;Pre&#8221; name worldwide, as they begin adding carriers outside the U.S. HTC, on the other hand, seems to use different names for the same hardware in different countries. And &#8220;Droid&#8221; is a Verizon brand, not a Motorola brand, so that phone will need a different name on other carriers around the world. (<strong>Update:</strong> But, Palm also has the new <a href="http://www.palm.com/us/products/phones/pixi/index.html">Pixi</a>, which has a completely different name than the Pre but runs the same OS, which is called WebOS, so perhaps they haven&#8217;t really learned anything from Apple.)&nbsp;<a href="http://daringfireball.net/2009/11/pinching_and_the_droid#fnr1-2009-11-02" title="Jump back to footnote 1 in the text.">&#8617;</a></p>
</li>
</ol>
</div>
 <!-- PreviousNext -->

				
				]]>
        	</description>
    	</item>		<item>
        	<title>Exchange Access for Droid: $15 Extra Per Month</title>
        	<link>http://mobile.infoworld.com/device/article.php?CALL_URL=www.infoworld.com/d/mobilize/want-droid-work-e-mail-itll-cost-you-extra-575</link>
        	<comments></comments>
	        <description>
    	        <![CDATA[
				
<a href="http://ad.doubleclick.net/jump/idg.us.inf.mdog/index;pos=top;tile=1;sz=200x60" target="_blank"><img src="http://ad.doubleclick.net/ad/idg.us.inf.mdog/index;pos=top;tile=1;sz=200x60" width="200" height="60" border="0" alt="" /></a>

<!-- <div class="mdognavbar">
		<form action="search.php" method="get" style="padding:0px; margin:0px;">
			<center><table><tr><td><input type="text" name="q" maxlength="100" size="12" class="texts" tabindex="1"  /></td><td><input value="Search" type="submit" class="butts" tabindex="2"  /></td></tr></table></center>
		</form>
	</div> -->

<br />November 02, 2009<br />&nbsp;<br /><font size="3"><b>Want a Droid for work e-mail? It&#039;ll cost you extra</b></font><br />&nbsp;<br />Accessing Exchange e-mail over the new 'iPhone killer' costs an extra $15 per month<br />By Galen Gruman|InfoWorld3 comments|<p>The industry is abuzz over the Motorola Droid, the first Google Android 2.0-based smartphone, to be released on Friday, Nov. 6, in the United States, with network access provided by Verizon Wireless. But users who buy the device and expect to use its built-in Microsoft Exchange ActiveSync support to get corporate e-mail from Exchange servers will have to pay an additional $15 per month for the privilege, Verizon confirms.</p><p>[ Learn which smartphones support your business's Exchange security and access policies. | Get the InfoWorld editors' 21-page PDF guide to next-gen smartphones. ]</p><p>Verizon offers three data plans for Droid customers: $30 month on top of your voice plan's rate for non-Exchange usage, $45 per month on top of your voice plan's rate for Exchange usage, and $50 per month total cost for a data-only plan (whether or not you use it to access Exchange). Verizon spokeswoman Brenda Raney notes that the requirement to get the $45 "smartphone plan" for corporate e-mail usage applies to any smartphone, such as the BlackBerry -- not just to the Droid. "The Droid is primarily a consumer phone," Raney adds.</p><p>That pricing contrasts with AT&amp;T's $30 monthly data plan (on top of your voice plan's rates) for the Apple iPhone and Research in Motion BlackBerry, the two most popular business-class smartphones; AT&amp;T offers a $35-per-month data-only plan for the BlackBerry, but has no such plan for the iPhone. However, AT&amp;T's business data plans charge $45 per month if the smartphones are used to access corporate e-mail or servers.</p><table width="100%" border="0" cellspacing="0" cellpadding="0"><tr><td background="images/bluedot.gif"><img src="http://mobile.infoworld.com/device/images/cleardot.gif" alt="" width="3" height="3" border="0" /></td></tr></table><table border="0" cellspacing="0" cellpadding="0"></table><center><b>Receive InfoWorld news alerts on your mobile device.</b><br />&nbsp;<br />Get the latest breaking news with mobile-formatted article links.<br />&nbsp;<br /><a href="http://mobile.infoworld.com/device/mobile_alerts.php?CALL_URL=www.infoworld.com%2Fd%2Fmobilize%2Fwant-droid-work-e-mail-itll-cost-you-extra-575">Click here</a> to subscribe</center><table width="100%" border="0" cellspacing="0" cellpadding="0"><tr><td background="images/bluedot.gif"><img src="http://mobile.infoworld.com/device/images/cleardot.gif" alt="" width="3" height="3" border="0" /></td></tr></table><table border="0" cellspacing="0" cellpadding="0"></table>&nbsp;<br /><p>Sprint doesn't break out its data plans' costs for the Palm Pre and BlackBerry, but its smartphone plans cost the same as AT&amp;T's, with a $30-per-month difference in charges for its voice-only phones' plans and its data-capable phones' plans. Like Verizon, Sprint offers a data-only plan for these devices for $50 per month.</p><p></p>
&nbsp;<br />
<!-- SiteCatalyst code version: H.17.
Copyright 1997-2008 Omniture, Inc. More info available at
http://www.omniture.com -->
<img src="http://infoworldmdog.112.2O7.net/b/ss/infoworldmdog/5/H.17--WAP?pageName=Want+a+Droid+for+work+e-mail%3F+It%26%23039%3Bll+cost+you+extra+%7C+Mobilize+-+InfoWorld" />
<!-- End SiteCatalyst code version: H.17. -->




				
				]]>
        	</description>
    	</item>		<item>
        	<title>Put This On, Episode 1</title>
        	<link>http://putthison.com/post/231001982/episode-1-denim</link>
        	<comments></comments>
	        <description>
    	        <![CDATA[
				
<p><b>Put This On, Episode 1: Denim</b></p>
<p><a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewPodcast?id=338552753">iTunes</a> / <a href="http://vimeo.com/putthison">Vimeo</a> / <a href="http://www.youtube.com/watch?v=aRMasiEtXpY">YouTube (iPhone)</a><br /><a href="http://putthison.com/post/230946052/ep1clothingcredits">Clothing Credits</a><br /><a href="http://putthison.com/post/230878930/episodeonefunders">Funding Credits</a><br /><a href="http://putthison.com/tagged/Episode_1">Related Posts</a></p>

				
				]]>
        	</description>
    	</item>		<item>
        	<title>Chris Foresman on Adobe’s Orwellian ‘Open Government’ Push for PDF and Flash</title>
        	<link>http://arstechnica.com/tech-policy/news/2009/10/adobe-pushes-flash-and-pdf-for-open-government-misses-irony.ars?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=rss</link>
        	<comments></comments>
	        <description>
    	        <![CDATA[
				
<p>The Obama administration has made <a href="http://arstechnica.com/web/news/2009/01/new-president-means-new-look-features-for-whitehouse-gov.ars" title="Ars Technica: New president means new look, features for whitehouse.gov">transparency and public access to government information</a> a high priority. Adobe is attempting to capitalize on initiatives to make government information more accessible while promoting its technologies, such as Flash and PDF, as cornerstones for implementing open access. However, these technologies are actually an impediment to making information truly accessible.</p>
<p>Adobe has set up its <a href="http://www.adobe.com/opengov/">"Adobe Opens Up" website</a>&nbsp;to promote the use of Adobe technologies to achieve the goal of "opening up Washington," as well as highlighting ways in which federal, state, and local governments have implemented these technologies. While we agree that making information available in common formats, like PDF, is one helpful piece of this puzzle, we can't help but notice how the entire site&#8212;designed in Flash&#8212;is practically inaccessible.</p>
<p>After just a cursory browsing, here are some of the usability and data accessibility issues we observed. You can't select, copy, or paste any text. Your browser's font override features won't work, so you can't adjust the font or its size to be more readable. Your browser's built-in in-page search won't work, and you can't use the keyboard to scroll through the text. You can't parse or scrape the data in any way; the design is fixed-width, so it's not going to work well on different screen sizes; and browser plugins, like Greasemonkey, can't adjust anything. Basically when it comes to text at all, if you don't like the style or are visually impaired, you're screwed.</p>

<p>Sunlight Labs, a nonprofit, nonpartisan Washington, DC based organization focused on digitization of government data and making tools and websites to make it easily accessible, similarly feels that technologies like Flash and PDF&#8212;while ubiquitous and useful&#8212;<a href="http://sunlightlabs.com/blog/2009/adobe-bad-open-government/" title="Sunlight Labs: Adobe is Bad for Open Government">do not intrinsically make government more open</a>. In particular, the group is critical of the fact that data in PDF format is not easily parsable into other useful forms.</p>
<p>PDFs are great for presenting data and information in a particular format, and the format is a useful tool for getting that formatted version to the public. Anyone who has tried to copy and paste more than one line of text from a PDF, though, has likely experienced the issues that can happen&#8212;unrelated text from sidebars or the margins often ends up inline, requiring custom editing. As one example to illustrate the problem further, Sunlight Labs recently had to write custom software to parse a 1,018 page healthcare reform bill (H.R. 3200 "America's Affordable Health Choices Act of 2009") that was provided to the public only in PDF format. Without this parsing, any analysis of the text would need to be done by hand.</p>
<p>Further, we note the irony of the fact that the bill Sunlight Labs was attempting to analyze is actually stored internally in XML format, but only offered to the public in PDF form. XML is easily converted to a formatted PDF, which is what the House did to generate the PDF that it made available. Going the other direction&#8212;from formatted PDF to structured, machine-readable data&#8212;is a much harder, and sometimes insurmountable, task. It's also worth noting that XML is also easily transformed to other structured formats, like HTML.</p>
<p>Wrapping all publicly accessible information in proprietary formats is neither a good nor complete solution. Providing documents in PDF form, or augmenting a website with additional Flash content is certainly useful. However, the goal of open government would be better served using open standards, like HTML, XML, JSON, ODF, and other formats that are both accessible and machine-readable. Doing so ensures that public information truly remains usable by the public.</p>

				
				]]>
        	</description>
    	</item>		<item>
        	<title>Adobe Is Bad for Open Government</title>
        	<link>http://sunlightlabs.com/blog/2009/adobe-bad-open-government/</link>
        	<comments></comments>
	        <description>
    	        <![CDATA[
				
<p><br /><img src="http://dl.getdropbox.com/u/36193/notopen.jpg" />So next week, Adobe's having aconference here to tell Federal employees why they ought to be using "Adobe PDF, and Adobe® Flash® technology" to make government more open. They've spent what seems to be millions of dollars wrapping buses in DC with Adobe marketing materials all designed to tell us how necessary Adobe products are to Obama's Open Government Initiative. They've even got a beautiful <a href="http://adobe.com/opengov">website</a> set up to tout the government's use of Flash and PDF, and are holding a conference here next week to talk about how Government should use ubiquitous and secure technologies to make government more open and interactive. </p>
<p>Here at the Sunlight Foundation, we spend a lot of time with Adobe's products-- mainly trying to reverse the damage that these technologies create when government discloses information. The PDF file format, for instance, isn't particularly easily parsed. As ubiquitous as a PDF file is, often times they're non-parsable by software, unfindable by search engines, and unreliable if text is extracted.</p>
<p>Take, for instance, H.R. 3200-- otherwise known as <a href="http://energycommerce.house.gov/Press_111/20090714/aahca.pdf">"America's Affordable Health Choices Act of 2009"</a>, a 1017 page healthcare bill from congress. Because it is primarily published in PDF, we've got to build a special parser for it-- that bill-- in order to represent it programatically. Or <a href="http://resource.org">Carl Malamud's</a> IRS filings for <a href="http://bulk.resource.org/irs.gov/section_527/">527</a> (stealth PAC) organizations: gigabytes of PDF files, all released by government. Government releasing data in PDF tends to be catastrophic for Open Government advocates, journalists and our readers because of the amount of overhead it takes to get data out of it. When a government agency publishes its data and documents as PDFs, it makes us Open Government advocates and developers cringe, tear our hair out, and swear a little (just a little). Most earmark requests by members of congress are published as PDF files of scanned letters, leading the Sunlight Foundation and others to write custom parsers for each letter.</p>
<p><img src="http://dl.getdropbox.com/u/36193/DN119078101.PDF%20%28page%201%20of%20451%29.jpg" />Yet, for some reason, Adobe feels they're essential to the new administration's mission of transparent and open government. I on the other hand feel like picketing the event they're having next week to sell their wares (hey hey! ho ho! your-binary-low-parsable-formats-for-government-data has got to go!) because in fact, they're quite the opposite. Here at Sunlight we want the government to STOP publishing bills, and data in PDFs and Flash and start publish them in open, machine readable formats like XML and XSLT. What's most frustrating is, Government seems to transform documents that are in XML into PDF to release them to the public, thinking that that's a good thing for citizens. Government: We can turn XML into PDFs. We can't turn PDFs into XML.</p>
<p><img src="http://dl.getdropbox.com/u/36193/yse-1.jpg" />Flash isn't off the hook either. Government has spent lots of time and money developing flash tools to allow citizens to view charts and graphs online, and while we're happy the government is interested in allowing citizens to do this, Government's <em>primary</em> method of disclosure should not be these visualizations, but rather publishing the APIs and datasets that allow citizens to make their own. Only after those things are completed to the fullest extent possible should government be working on its own visualizations. While Adobe may say in their <a href="http://www.adobe.com/opengov/downloads/Adobe_Government_Vision_FINAL.pdf">open government whitepaper</a>:</p>
<blockquote><p>"Since the advent of the web, an entire infrastructure has evolved to enable public access to information. Such technologies include HTML, Adobe PDF, and Adobe® Flash® technology."</p></blockquote>
<p>This is nonsense. The fact is, sticking to open, standards based technologies like HTML, XML, JSON and others are far more important and useful in getting your information out to the public than the proprietary formats of Adobe. Here's a hint-- if the data format has an ® by its name, it probably isn't great for transparency or open data.</p>
<p>So don't get me wrong-- I appreciate just like the next guy that I can download a nice PDF file of an IRS form, print it out, and send it in. I think that members of congress publishing their "Dear Colleague" letters with accuracy is great and important,  and I think the pie charts on the IT dashboard are really neat. But when it comes down to it, these technologies aren't helping to fully open our government. They have their place, but in terms of transparency and openness, I'm afraid they do more harm than good. Relying on them only yields frustration from the people who use the data government publishes the most, and they should be considered a bell or a whistle on top of the foundation that an agency should do to be fully transparent: putting data online, obeying the <a href="http://resource.org/8_principles.html">8 principles of Open Data</a> to the fullest extent.</p>
<p><strong>Update (3:10pm):</strong> At the strong urging of our Policy Director, I'll add this caveat: any time Government decides to release data to the public, we're glad that government has taken a step forward. But the PDF file format, especially when it comes to data, and large documents like bills, is something that government should strongly consider open, machine readable, parsable alternatives to. There are plenty, and we're happy to help find them for you.</p>
<p><strong>Update (3:20pm):</strong> <a href="http://dancingmammoth.com/">PJ Doland</a> has the right answer. PDF by itself is insufficient. So is Flash. But what makes PDF in particular bad is that more often than not, you can turn XML into a human readable PDF. But you can't turn PDF into a machine readable XML/JSON/whatever file.</p>

				
				]]>
        	</description>
    	</item>		<item>
        	<title>Dropbox iPhone App Now Runs on OS 3.0.1</title>
        	<link>http://blog.getdropbox.com/?p=161</link>
        	<comments></comments>
	        <description>
    	        <![CDATA[
				<p>I&#8217;m not the kind of guy that likes prefacing an announcement with a wall of text, so let&#8217;s cut to the chase:<br />
<strong><br />
Big announcement: </strong> the iPhone app is now available for 3.0!  <a href="http://www.getdropbox.com/iphoneapp">Go get it </a><strong></strong></p>
<p>Other stuff:  We initially opted for 3.1 because API methods related to saving videos were not available on 3.0. This meant that videos taken within the app would be permanently lost in the event of a flaky/slow internet connection. This happened to us enough in testing that we felt it wasn&#8217;t a risk we wanted to expose to our users.</p>
<p>That said, Will, the maestro of our iPhone app, deftly crafted a solution for this problem.  The result is what you see in the app store today!  Will also says that there will be plenty of bug fixes to come in the future, as well as a huge feature push when 1.5 arrives.  Please feel free to let us know in the forums how the app is working out for you!</p>
<p>PS.  I know we&#8217;ve had some heartache in the past, but to those of you who rated us down for not having 3.0 support the first time around&#8230; could you maybe find it in your hearts to give us another chance?  We&#8217;ve changed, we promise!  This time we&#8217;ll be good!</p>
<!-- AddThis Button BEGIN -->

<!-- AddThis Button END -->
				
				]]>
        	</description>
    	</item>		<item>
        	<title>Ibis Reader and BookServer</title>
        	<link>http://blog.threepress.org/2009/11/02/ibis-reader-and-bookserver/</link>
        	<comments></comments>
	        <description>
    	        <![CDATA[
				
<p>I was extremely pleased to participate in the Internet Archive&#8217;s <a href="http://www.archive.org/bookserver.php">BookServer</a> announcement and press event. (<a href="http://www.theregister.co.uk/2009/10/20/internet_archive_bookserver_launch/">The Register</a> has the best coverage, but also see <a href="http://news.cnet.com/8301-13772_3-10378573-52.html">CNET</a> and <a href="http://www.readwriteweb.com/archives/bookserver_a_plan_to_build_an_open_web_of_books.php">ReadWriteWeb</a>).</p>
<p>Our part of this open ecosystem is <strong><a href="http://ibisreader.com/">Ibis Reader</a></strong>, an in-development digital reading system for a range of internet devices that provides access to books both online and offline.  Like <a href="http://bookworm.oreilly.com/">Bookworm</a>, it provides ePub support and a traditional web interface.  But I&#8217;m really excited about its unique features:</p>
<ol>
<li>A total commitment to <strong>giving readers what they want</strong>.</li>
<li> For platforms that support it, <strong>HTML5 offline storage</strong>. This means that when you&#8217;re not connected, your library is still available. Other web-enabled devices will also work but must be online (Google Gears also supported).</li>
<li> A mobile web architecture, allowing new devices running  <strong>iPhone OS, Android, or Palm webOS to be immediately supported</strong>.   (And no <a href="http://www.theregister.co.uk/2009/05/22/apple_censorship/">App Store censorship</a>.)</li>
<li> All of the cross-device <strong>syncing and bookmarking</strong> that customers are coming to expect from multi-platform reading systems.  Start reading on your iPhone and pick up where you left off on your computer.</li>
<li> <strong>A great shopping experience with no DRM</strong>. Ibis Reader uses the BookServer ecosystem to help you find, download, and buy books, and none of the books we sell will have DRM.  Guaranteed.</li>
<li> <strong>Ebook portability</strong> means that all your DRM-free library can be exported out of the &#8220;cloud&#8221; and onto any device that supports ePub.</li>
<li> For publishers, an <strong>attractive revenue split</strong>, real-time sales reporting, and help with getting into the BookServer ecology.</li>
</ol>
<p>We&#8217;re not launching for several months, but we&#8217;ll be posting updates as we get closer.  It was exciting to demo an early version of the reading client at the BookServer event, and it&#8217;s only going to get better.</p>
<p><a href="http://blog.threepress.org/wp-content/uploads/2009/10/Screen-shot-2009-10-23-at-10.29.33-AM.png"><img title="Screen shot 2009-10-23 at 10.29.33 AM" src="http://blog.threepress.org/wp-content/uploads/2009/10/Screen-shot-2009-10-23-at-10.29.33-AM-161x300.png" alt="Screen shot 2009-10-23 at 10.29.33 AM" width="161" height="300" /></a></p>

				
				]]>
        	</description>
    	</item>		<item>
        	<title>Chinese iPhone Has No Wi-Fi</title>
        	<link>http://db.tidbits.com/article/10707</link>
        	<comments></comments>
	        <description>
    	        <![CDATA[
				<p>The combination of mobile broadband and Wi-Fi in the iPhone has long been one of its selling points, and seamless data roaming between cell and Wi-Fi, location discovery, and free access to Wi-Fi networks operated by cellular carriers in some countries make Wi-Fi seem essential. Not so in China. <a href="http://www.google.com/hostednews/ap/article/ALeqM5gLahWr8T0f1sDPIXmMEV4yoR5Z-AD9BL82BO0">The iPhone model for sale by China Unicom lacks Wi-Fi</a>. This was widely rumored months before the deal was in place for China Unicom to offer the iPhone.</p>
<p>The reason for this omission is the Chinese government's efforts since 2003 - in fits and starts - to promote a proprietary security standard for 802.11 devices called <a href="http://en.wikipedia.org/wiki/WLAN_Authentication_and_Privacy_Infrastructure">WAPI</a>, which stands, in a cumbersome fashion, for "WLAN (Wireless Local Area Network) Authentication and Privacy Infrastructure."</p>
<p>For the first few years, non-Chinese firms were required to partner with one of a handful of Chinese companies that had access to the WAPI specification, and many of these companies were tied to the Chinese military, which has active control of a number of businesses separate from the rest of government. Foreign firms protested, because they would have had to disclose significant portions of their intellectual property in a country that has a mixed record in honoring patents and trade secrets. </p>
<p>The issue was significant enough that U.S. Secretary of State Colin Powell raised WAPI in trade talks in 2004 because if required it would be a bar for U.S. firms to sell Wi-Fi products in the country. The WAPI requirement may also violate World Trade Organization rules, although that hasn't been tested. China attempted to get WAPI approved by standards group <a href="http://www.iso.org/iso/home.htm">ISO</a>, but that effort failed largely because the group representing China wouldn't provide the spec's details - kind of a problem for a proposed standard. China was <a href="http://www.pcworld.com/businesscenter/article/166725/china_to_propose_wlan_security_standard_for_global_use_again.html">recently invited</a> to introduce WAPI to ISO 
once more, although it's hard to see how it has a better chance. (The IEEE 802.11i security standard was accepted instead of WAPI.)</p>
<p>A second concern about WAPI, one that I've raised for years in my writing at <a href="http://wifinetnews.com/">Wi-Fi Networking News</a>, is that one must presume that a proprietary standard that hasn't been subjected to full disclosure and outside scrutiny includes backdoors for government access to secured sessions. The Wi-Fi approved WPA/WPA2 (Wi-Fi Protected Access) has no known generic exploits, and can't be deciphered over the air. While WAPI may be completely secure, this can't be determined, nor does that conform with <a href="http://en.wikipedia.org/wiki/Great_Firewall_of_China">the Chinese government's history of Internet oversight</a>.</p>
<p>There is some suspicion that WAPI's authentication aspect, in which a login would be required to join a network securely, was partly desirable to track users, too. This would eliminate the "problem" of untrackable connections to Wi-Fi hotspots, coupled with security that would prevent local interception.</p>
<p>In the last few years, China hasn't pushed WAPI with the same vigor, and has made noises about backing down. However, its official status appears to still be in place, and <a href="http://www.mis-asia.com/news/articles/years-on,-china-pushes-wapi-in-mobile-phones">other mobile phones in China have WAPI installed</a>. This AP story says that Wi-Fi was banned in China, but it's apparently possible and straightforward to buy Wi-Fi access points without WAPI in China, and Wi-Fi is in wide use.</p>
<p>Because Apple already has its phones manufactured in China, there appears to be wide agreement that future versions of the iPhone will have Wi-Fi with WAPI as an option.</p>
<p>The Associated Press estimates as many as two million unlocked iPhones brought in from other countries are in use in China already, and none of those use WAPI.</p>
				
				]]>
        	</description>
    	</item>		<item>
        	<title>Ball Cap Sticker Removal: A Helpful Lesson for the Youngsters</title>
        	<link>http://www.flipflopflyin.com/flipflopflyball/info-stickerremoval.html</link>
        	<comments></comments>
	        <description>
    	        <![CDATA[
				
				
				]]>
        	</description>
    	</item>		<item>
        	<title>[Sponsor] Spots: Wi-Fi Hotspot Directory for iPhone and iPod Touch</title>
        	<link>http://www.savoysoftware.com/spots/?df1</link>
        	<comments></comments>
	        <description>
    	        <![CDATA[
				
<img id="spots_headline" src="http://www.savoysoftware.com/spots/images/spotslogo.png" alt="Spots" />
<img id="spots_icon" src="http://www.savoysoftware.com/spots/images/spots_icon.png" alt="Spots" />

<span id="claim">“Find a hotspot when you need one”</span>
<h1>Spots – The Wi-Fi Hotspot Directory</h1>
<span id="text"></span><p>Spots helps you locate hotspots around you or anywhere in the world. No internet connection needed, no waiting while your iPhone connects to a website. Using its internal database of 600,000+ locations, Spots offers the results you are looking for immediately. The offline feature makes Spots work perfectly on the iPod Touch.</p>
<p>The database is updated regularly. It contains hotspot locations from multiple providers and a lot of independent access points.</p>

<!-- div id="info_table" -->

				
				]]>
        	</description>
    	</item>		<item>
        	<title>‘Sometimes Gruber Is Right’</title>
        	<link>http://tumblr.seoulbrother.com/post/228110605/down-for-maintenance-back-shortly-sometimes</link>
        	<comments></comments>
	        <description>
    	        <![CDATA[
				<p>Sometimes* <a href="http://twitter.com/gruber/status/5140498445" target="_blank">@gruber</a> is right.</p>
<p><a href="http://twitter.com/SeoulBrother/the-stars-of-eff-you" target="_blank">The Stars of Eff You</a></p>
<p>*Yankees? Cowboys?</p>
				
				]]>
        	</description>
    	</item>		<item>
        	<title>Greg Kumparak Compares the iPhone 3GS and Motorola Droid</title>
        	<link>http://www.mobilecrunch.com/2009/10/30/smartphone-showdown-iphone-3gs-vs-motorola-droid/</link>
        	<comments></comments>
	        <description>
    	        <![CDATA[
				
<p>If hype were to be believed, the Motorola DROID is the pièce de résistance of the mobile world; the conclusive creation sent down by the Great Smartphone in the sky to rid us of our woes. It would prepare your breakfast promptly each morning, tuck you in at night, and, maybe &#8212; just <em>maybe </em> &#8212; knock the iPhone down a notch or two.</p>
<p>Beginning about a week before its launch (largely due to Verizon&#8217;s incredibly intense marketing campaign) I began getting calls and tweets from friends and colleagues asking about the Droid. They always had two questions: the first would be something like &#8220;What do you think of the Droid?&#8221;, followed by &#8220;Would you recommend it over the iPhone?&#8221; Same questions, each.. and.. every.. time.</p>
<p>I&#8217;ve been using the Droid as my primary phone for a few days now, and I think I&#8217;m finally ready to answer them.</p>
<p><span id="more-22105"></span></p>
<p><strong>A bit about the reviewer:</strong></p>
<p>Being that I&#8217;m only human, it is absolutely impossible for me to be 100% objective when comparing two phones. Thus, my only option is to be as transparent as possible. Going into this review, I had used an iPhone (which, for disclosures sake, I pay for in full) as my primary device for around 2 years. I also regularly use a Palm Pre, Nokia N97, BlackBerry Tour,  T-Mobile G1, and an HTC Touch2 to ensure a general knowledge of all the major platforms. I am an iPhone developer by hobby. This Droid unit was provided by Motorola for review.</p>
<p><strong>The Looks:</strong></p>
<p><img src="http://www.mobilecrunch.com/wp-content/uploads/2009/10/sidebysidea-630x340.jpg" alt="sidebysidea" title="sidebysidea" width="630" height="340" /></p>
<p>Comparing the aesthetics of the iPhone and the Droid is.. ludicrous, if not impossible. It&#8217;d be like having a heated argument over whether Angelina Jolie was more or less gorgeous than Halle Berry. Each is stunning for their own reasons. Same deal here; the iPhone is engulfed in glistening curves that give it a softer, friendlier look, while the Droid is wrapped in tight, clean angles that make it a shining example of great industrial design.</p>
<p>If we were to consider the overall designs par-for-par, all we&#8217;d have left to nitpick is the details. In the Droid&#8217;s case, the gold details on the camera button, 5-way D-Pad, and rear casing lose it some points for looking like something straight out of a bad 70&#8217;s bachelor pad. The iPhone then loses its ground for the fact that the glossy back casing is damned near impossible to keep clean and free of fingerprints.</p>
<p><strong>The Winner: </strong>It&#8217;s a tie. Both are drop dead gorgeous, and the only flaws of each are downright trivial.</p>
<p><strong>On-Screen Keyboards: </strong></p>
<p><center><img src="http://www.mobilecrunch.com/wp-content/uploads/2009/10/iphonekb-199x300.jpg" alt="iphonekb" title="iphonekb" width="199" height="300" /> <img src="http://www.mobilecrunch.com/wp-content/uploads/2009/10/droidKB-172x299.jpg" alt="droidKB" title="droidKB" width="172" height="299" /> </center></p>
<p>In preparation for the onslaught of candybar Touchscreens that were sure to follow after the success of the iPhone, Android earned on-screen keyboard support shortly after the launch of the G1. At first, it.. well, it sucked. A lot.</p>
<p>It has gotten better since, however &#8211; on the stock build of Android 2.0 I&#8217;ve got running on this Droid, I&#8217;m able to blast about at nearly the same rate as I can on my iPhone. That&#8217;s impressive for Android&#8217;s sake, considering that I&#8217;ve spent considerably more time on the iPhone keyboard.</p>
<p>That said, the iPhone&#8217;s autocorrect seems a <em>bit</em> better at properly attending to my typos, primarily on shorter words that have more potential alternatives.</p>
<p><strong>The Winner:</strong> iPhone, by a very slim margin. It just does a better job at guessing what I&#8217;m trying to type as I poke my way around a sea of glass. That said..</p>
<p><strong>Physical Keyboard:</strong><br />
<img src="http://www.mobilecrunch.com/wp-content/uploads/2009/10/keyboard-630x472.jpg" alt="keyboard" title="keyboard" width="500" /></p>
<p>For many, a physical keyboard is a must-have. Every smartphone I had prior to an iPhone had a physical keyboard, and I <em>still</em> prefer a physical keyboard after two years. The Droid has one, and the iPhone doesn&#8217;t &#8211; so it wins this one by default.</p>
<p>That&#8217;s not to say the Droid keyboard is all that great &#8211; nor is it terrible. It is decidedly average. The buttons are practically flush with each other, and it&#8217;s quite easy to jam down on two buttons at once. </p>
<p>To rank it amongst some of the more well known keyboarded handsets of the past few years: the Droid keyboard is better than that of the G1, Helio Ocean, and the BlackBerry Curve, but not nearly as good as anything from the Danger Sidekick line, the BlackBerry Tour, or the HTC Touch Pro 2. </p>
<p><strong>The Winner: </strong> Droid, by default.</p>
<p><strong>The Browser:</strong><br />
<center><br />
<img src="http://www.mobilecrunch.com/wp-content/uploads/2009/10/iphone-browse-300x201.jpg" alt="iphone browse" title="iphone browse" width="300" height="201" /> <img src="http://www.mobilecrunch.com/wp-content/uploads/2009/10/andridbrowse-300x173.jpg" alt="andridbrowse" title="andridbrowse" width="300" height="173" /></center></p>
<p>On the popular web-standards test known as <a href="http://acid3.acidtests.org/">Acid3</a>, the iPhone scores a 100/100 while the Droid caps out at 93/100. Thus, if we&#8217;re going purely by measurable standards here, the iPhone browser wins. That said, we&#8217;re not robots &#8211; standards schmandards, we like what we like.</p>
<p>With <em>that</em> said, I still prefer the iPhone browser. It tends to render pages pixel perfect (as implied by the Acid3 test results), while the Droid would occasionally fall short. Oddly, it renders pages more accurately when they&#8217;re being viewed in landscape mode than in portrait mode. What really sealed the deal, however, was multi-touch in the browser. Once you&#8217;ve grown accustomed to pinch-zooming, the level of accuracy provided by tap-zooming alone simply doesn&#8217;t cut it.</p>
<p>The iPhone browser is also considerably faster, with page loads completing anywhere from 15-30% more quickly with both handsets on WiFi.</p>
<p><strong>The Winner:</strong> iPhone, thanks to multitouch, faster pageloads and web standards compliance.</p>
<p><strong>Navigation:</strong><br />
<img src="http://www.mobilecrunch.com/wp-content/uploads/2009/10/Screen-shot-2009-10-30-at-October-30-7.28.42-PM-181x300.png" alt="Screen shot 2009-10-30 at [ October 30 ] 7.28.42 PM" title="Screen shot 2009-10-30 at [ October 30 ] 7.28.42 PM" width="181" height="300" /></p>
<p>When it comes to the standard mapping/directions stuff, the two phones are about on par. Turn-by-turn voice navigation is a whole different matter, however.</p>
<p>Out of the box, the iPhone 3GS has Google Maps, which does not currently do turn-by-turn voice navigation. The App Store provides a bunch of solutions for this, ranging from a few bucks a month all the way up to a one-time payment of $99 bucks.</p>
<p>The Droid also has Google Maps, but it&#8217;s Google Maps with Navigation &#8211; and it really, <em>really</em> rocks. It does nearly everything the iPhone Maps app does, with the addition of toggleable layers (show/hide traffic, satellite views, Wikipedia entries, and transit lines), support for Google&#8217;s Latitude location-sharing service and, most notably, completely free turn-by-turn voice navigation. You can also search for locations by voice, something we were surprised was absent when Apple added voice recognition to the iPhone.</p>
<p>Like with the browser, we miss the multi-touch support &#8211; but we&#8217;d gladly give that up for the free voice navigation.</p>
<p><strong>The Winner: </strong>Droid. None of the for-pay apps we&#8217;ve used come close to the ease of use and functionality Google provides in their free app.</p>
<p><strong>Lock Screen:</strong></p>
<p><center><img src="http://www.mobilecrunch.com/wp-content/uploads/2009/10/iphoneunlock-203x300.jpg" alt="iphoneunlock" title="iphoneunlock" width="203" height="300" /> <img src="http://www.mobilecrunch.com/wp-content/uploads/2009/10/Androidunlock-173x300.jpg" alt="Androidunlock" title="Androidunlock" width="173" height="300" /></center></p>
<p>On both the iPhone and the Droid, the lock screen is essentially just that: a screen which shows when your handset is locked. The Droid has one small (but clever) bonus feature thrown in which allows you to quickly silence the handset with a single swipe &#8211; but considering that the iPhone has a physical silence switch on the side, this isn&#8217;t a defining feature. Out of the box, both handset&#8217;s lockscreens are equally meh.</p>
<p>Yet, this is still somewhere the Droid manages to outshine the iPhone, by playing on the open nature of Android. Right within the Android Market, you can download applications which greatly expand the functionality of the lockscreen, such as the widget-based <a href="http://www.myflyscreen.com/">Flyscreen</a>.</p>
<p>You can do similar things on an iPhone &#8211; but not without jailbreaking. Considering that Apple wanted to <a href="http://www.crunchgear.com/2009/02/13/apple-jailbreaking-is-illegal/">make jailbreaking illegal</a>, it&#8217;s hard to consider things that require jailbreaking as fair equivalents to things that come straight from Google&#8217;s own catalog.</p>
<p><strong>The Winner:</strong> Droid.</p>
<p><strong>Battery Life:</strong></p>
<p><img src="http://www.mobilecrunch.com/wp-content/uploads/2009/10/lemon-300x225.jpg" alt="lemon" title="lemon" width="200" /></p>
<p>I&#8217;ll be honest: I haven&#8217;t done a formal battery life test with the Droid. Hell, I&#8217;ve never done one with the iPhone, either. That said, I&#8217;ve been using both devices equally throughout the day, and they&#8217;re both hovering around a 50% charge. This holds true with what I&#8217;ve seen for the last few days of testing; the Droid&#8217;s battery life is right around par with the iPhone&#8217;s. The Droid&#8217;s 1400 mAh battery is slightly larger than the iPhone 3GS&#8217; at 1150mAh, but the battery hungry multi-tasking probably cancels that out. Without any formal testing, I&#8217;ve got to declare it a tie.</p>
<p><strong>The Winner:</strong> Tie (With a slight lean in Droid&#8217;s direction as it has a swappable battery &#8211; but really, what percentage of the population carries one?)</p>
<p><strong>App Stores:</strong></p>
<p><center><br />
<img src="http://www.mobilecrunch.com/wp-content/uploads/2009/10/iphonestore-197x300.jpg" alt="iphonestore" title="iphonestore" width="197" height="300" /> <img src="http://www.mobilecrunch.com/wp-content/uploads/2009/10/androidstore-175x300.jpg" alt="androidstore" title="androidstore" width="175" height="300" /><br />
</center></p>
<p>Google&#8217;s got around 10,000 apps in their collection. Apple&#8217;s got somewhere around 10x that, with the App Store currently floating right around 100,000 items.</p>
<p>Of course, quantity does not equal quality. As anyone who&#8217;s really spent a ton of time in either App Store would agree, the majority of applications in both range from bad to horrible, and their are plenty of gems in both. Both have a great application (and a handful of not so great alternatives) for nearly every common need.</p>
<p>The primary strength of the Android market is its openness. Google has stood quite true to their original promise of allowing anything outside of what was undeniably illegal or malicious. This is something members of the tech industry like to tout about as a killer feature &#8211; but in the end, it simply doesn&#8217;t matter. The only way to gauge the success of an App Store is to try to view it as an average consumer &#8212; you know, the ones spending the most money &#8212; would. By and large, the average consumer <em>would not care</em> about any of the things Apple has thus far banned. To make an argument that could go on for many pages very, very short: your grandma does not care about Google Voice. </p>
<p>After spending a lot of time in both stores, I feel that I can honestly say that the selection and overall quality of the App Store is significantly better. Everything we&#8217;ve seen and all conversations we&#8217;ve had with big development houses indicates that they&#8217;re putting much, much more effort in iPhone app development than they are with Android. </p>
<p>The iPhone has a tremendous lead here, both in quantity and quality. In time, as Android handsets flood the market and hopefully do away with the feature phone all together, it may very well catch up &#8211; but that&#8217;s simply not the case in the foreseeable feature.</p>
<p><strong>Winner:</strong> iPhone. </p>
<p><strong>Customization: </strong></p>
<p>The smartphone is the fifth limb we never knew we needed. It goes with us wherever we go, helps us function from day to day, and serves countless purposes. Where as many turn to body art to customize their original limbs to express themselves and claim ownership, many will customize their smartphone for all the same reasons.</p>
<p>Customization on the iPhone is depressingly limited. You can customize wallpaper of the lock screen, change your ringtone, and.. well, that&#8217;s it. Want to add your own text alert sound? Nope. E-mail alert sound? Nope. That would be absolutely okay be it that the iPhone was a Nokia from 1998.</p>
<p>The flexibility of Android customization is still somewhat limited, but it at least has the basics covered. You can change e-mail and text alerts, app icons, and your ringtone/wallpaper.</p>
<p><strong>The Winner: Droid</strong></p>
<p><strong>Camera Quality Samples:</strong></p>
<p>Photos on the left are from the iPhone; photos on right are from the Droid. Click through to see bigger samples.</p>
<p><center><br />
<a href="http://www.mobilecrunch.com/wp-content/uploads/2009/10/IMG_0166.JPG"><img src="http://www.mobilecrunch.com/wp-content/uploads/2009/10/IMG_0166-150x150.jpg" /></a> <a href="http://www.mobilecrunch.com/wp-content/uploads/2009/10/2009-10-30-20.52.51.jpg"><img src="http://www.mobilecrunch.com/wp-content/uploads/2009/10/2009-10-30-20.52.51-150x150.jpg" /></a></center></p>
<p><center><br />
<a href="http://www.mobilecrunch.com/wp-content/uploads/2009/10/IMG_0167.jpg"><img src="http://www.mobilecrunch.com/wp-content/uploads/2009/10/IMG_0167-150x150.jpg" /></a> <a href="http://www.mobilecrunch.com/wp-content/uploads/2009/10/2009-10-30-20.54.281.jpg"><img src="http://www.mobilecrunch.com/wp-content/uploads/2009/10/2009-10-30-20.54.281-150x150.jpg" /></a></center></p>
<p><center><br />
<a href="http://www.mobilecrunch.com/wp-content/uploads/2009/10/IMG_0168.jpg"><img src="http://www.mobilecrunch.com/wp-content/uploads/2009/10/IMG_0168-150x150.jpg" /></a> <a href="http://www.mobilecrunch.com/wp-content/uploads/2009/10/2009-10-30-20.55.46.jpg"><img src="http://www.mobilecrunch.com/wp-content/uploads/2009/10/2009-10-30-20.55.46-150x150.jpg" /></a></center></p>
<p><strong>The Winner:</strong> Based off these photos alone, we can&#8217;t say. We had a hard time getting the Droid to focus, especially in lower light. While the iPhone was focusing just fine, the details kept getting lost. </p>
<p><strong>The Screen:</strong></p>
<p><center><img src="http://www.mobilecrunch.com/wp-content/uploads/2009/10/iphoneres-300x225.jpg" alt="iphoneres" title="iphoneres" width="300" height="225" /> <img src="http://www.mobilecrunch.com/wp-content/uploads/2009/10/droidres-300x225.jpg" alt="droidres" title="droidres" width="300" height="225" /></center></p>
<p>The iPhone rocks a 3.5&#8243;, 480&#215;320 touchscreen display, while the Droid has a 3.7&#8243; 854&#215;480 touchscreen display. While the Droid&#8217;s screen isn&#8217;t that much bigger, they&#8217;ve crammed over 160% more pixels onto that tiny little screen. The result? The Droid screen is <em>absolutely, jaw-droppingly stunning</em>.</p>
<p>Now, no one was complaining that the iPhone&#8217;s screen was junk. Given more than 10 seconds from device to device, most people probably wouldn&#8217;t even notice a difference. When you&#8217;ve got both devices side-by-side, however, the difference is clear. Text is that much clearer; curves just that much curvier.</p>
<p><strong>The Winner:</strong> Droid</p>
<p><strong>Interface:</strong></p>
<p>This is a huge point, and one that often goes overlooked in reviews. For the past 10 years, Apple has really only done one thing, over and over: they&#8217;ve taken something we thought worked fine, and then simplified the hell out of it while maintaining the feature set. That&#8217;s exactly what they did to the idea of the smartphone with the iPhone, and it turned the damned market on its head. Windows Mobile suddenly looks like a hot mess by comparison, and most people would go into shock if they tried to screw with S60. </p>
<p>Even in version 2.0, Android does not match the intuitiveness of the iPhone. If you need to change a setting on the iPhone, you <em>always</em> know where to go: the Settings app. On Android, it can be in one of any number of places.</p>
<p>You can hand an iPhone to a toddler, and they&#8217;ll figure out the general gist of things in an instant. (No, really &#8211; we&#8217;ve done it.) That ease of use is one of the things that makes the iPhone so damned appealing.</p>
<p><strong>The Winner:</strong> iPhone</p>
<p><strong>Multi-Tasking:</strong></p>
<p>I can listen to Pandora on the Droid while I peruse around the Facebook App. I can&#8217;t on the iPhone. Enough said.</p>
<p><strong>The Winner:</strong> Droid</p>
<p><strong>Conclusion:</strong></p>
<p>There are really many, many, many dozens of categories we could dive in to &#8211; hell, I&#8217;ve got 10 more scratched out in my head alone. But we&#8217;d be avoiding an inevitable truth: apples-to-apples, the Droid tends to beat or meet the iPhone. Remote wipe and GPS location? Droid. On-device search? Droid wins. Voice control, contacts, coverage, and call quality? Droid, droid, droid, droid.</p>
<p>Now, back to the two questions we had at the beginning:<br />
<div id="attachment_22117"><img src="http://www.mobilecrunch.com/wp-content/uploads/2009/10/Screen-shot-2009-10-30-at-October-30-6.57.43-PM-203x300.png" alt="Get it? He's on the fence. HAH." title="Get it? He's on the fence. HAH." width="203" height="300" /><p>Get it? He's on the fence. HAH.</p></div><br />
<strong>What do I think of the Droid?</strong> It is incredible. It is, hands down, the nicest Android handset on the market. A very significant chunk of this is not so much the Droid&#8217;s doing as it is Android 2.0&#8217;s, but the hardware is also leaps and bounds better than anything we&#8217;ve seen so far.</p>
<p><strong>Would I recommend it over the iPhone? </strong>Two thousand plus words later, you might be a bit sad to read: Nope. But I wouldn&#8217;t recommend the iPhone over the Droid, either &#8211; and that&#8217;s the Droid&#8217;s real win here. This is the very first phone in over two years that I would consider carrying for day-to-day use instead of my iPhone, but that doesn&#8217;t mean I would recommend it whole heartedly to everyone. </p>
<p>Each phone platform has such tremendous merits. Androids got better navigation; the iPhone has a better browser. Androids got unbeatable expandability and flexibility; the iPhone OS is mind-numbingly easy to use and the rate of growth and drive behind the App Store is simply explosive.</p>
<p>With Android 2.0, we&#8217;ve come to a very difficult crossroad. No longer can we recommend one handset over the other simply by its feature set. At this point, it&#8217;s all about the person who will be carrying it. For you, dearest TechCrunch Network reader: Yes, I&#8217;d probably recommend the Droid over an iPhone. Would I recommend it for your mother, father, or little sister? Nope. If you want a phone that just works and does damned near everything you could want and don&#8217;t mind Apple&#8217;s closed garden: by all means, get the iPhone. If you can handle a bit of complexity for the sake of flexibility and don&#8217;t mind having to tinker a bit: by all means, get the Droid. At this point, I honestly feel that either choice would make any sane person incredibly happy.</p>
<p><img src="http://www.mobilecrunch.com/wp-content/uploads/2009/10/sidebysideb-630x359.jpg" alt="sidebysideb" title="sidebysideb" width="630" height="359" /></p>

				
				]]>
        	</description>
    	</item>		<item>
        	<title>Engadget reviews the Motorola DROID</title>
        	<link>http://www.engadget.com/2009/10/30/motorola-droid-review/</link>
        	<comments>http://news.ycombinator.com/item?id=914189</comments>
	        <description>
    	        <![CDATA[
				<!-- sphereit start -->
<span></span> It's hard to look at the <a href="http://www.engadget.com/tag/DROID/">DROID</a> without looking at the company which brought the device to life. Motorola: for years the name has been synonymous with... well, disappointment. While the industry-stalwart made cellphones sexy with the RAZR, the days which followed have not been especially fruitful or compelling. Over the past year or so, we've seen Motorola beating its way back into the mainstream through a series of smart plays: first embracing Android as a platform, then shucking off the weight of Windows Mobile and finally bringing some desirable (and high profile) devices to market.<p> With the DROID, the company has perhaps created its most attractive and intriguing piece of technology yet. Forging an alliance with both Verizon and Google, Motorola has come up with a second compelling reason to count the phonemaker down, but certainly not out, while the other two giants have finally found a seemingly worthy device to position against the iPhone. So we must pose these questions: is this the phone which will catapult Android into the mainstream? Is it the device that will pull Motorola back from the brink? And -- most importantly -- is it the lynchpin Google and Verizon have needed to challenge the leader in mindshare in the smartphone market? After putting the device through its paces, we think we can give you the answers you seek -- so read on to find out!<br /> </p><p> <strong><big>Hardware</big></strong></p><p>

<br /> The DROID is an odd and beautiful device. Looking at the hardware from a purely philosophical standpoint, the ID of the phone seems staunchly defiant. Instead of taking its cues (and lines) from current contenders in the smartphone space, the DROID is all hard edges and angular slopes. The construction is a mix of plastic and metal, and the phone has a solid, expensive heft to it. Couple that weight with soft touch materials and gold highlights, and the effect is somewhere halfway between a Vertu device and the European version of the <a href="http://www.engadget.com/tag/Hero/">Hero</a> -- and it's a good mix.</p><p> The basic structure of the phone is made up of two main pieces, the large, glass display up top, and the slightly longer keyboard / mainboard lower half. Above, the 3.7-inch screen dominates, almost filling the space edge-to-edge, though there are four capacitive buttons at the bottom of the display: back, menu, home, and search (which might be tricky for folks coming from other Android devices, since they've thrown the order of the buttons in the blender). The top section slides smoothly upwards to reveal the aforementioned QWERTY keyboard, though unlike other models of this ilk, it doesn't snap automatically into place; rather, it requires a bit of force to move up, then clicks firmly once settled. The keyboard is a wide (though mostly flush) affair, with minimal amount of spacing between the keys. To the right of the four row QWERTY is a 5-way rocker -- a bizarre deviation from the CLIQ's left-sided controls -- and the bottom piece has a strip which juts out from the device with a small mic hole (closed or open). It's almost like Motorola's version of the HTC chin... though tempered somewhat. Atop the phone is a 3.5mm headphone jack and a power / sleep button; along the right edge is a volume rocker, and camera button on opposite ends; the left side houses a MicroUSB port; around back the 5 megapixel camera (and flash) are revealed, along with a thin, gold, crosshatch strip that hides the DROID's speaker.</p><p>

<br /> The thickness of the DROID is striking, coming in at just a hair (13.7mm vs 12.33mm) thicker than the iPhone 3GS. The body itself is actually narrower than the iPhone. While thinness is important (though typically not a deal breaker for us), the fact that the phone packs a larger, higher resolution screen and a physical keyboard in such a small frame is notable.</p><p> In all, Motorola has pulled off what seemed unimaginable for them just 12 months ago; they've made a device which is truly lustworthy, even next to the best efforts of Apple, HTC, and Palm.</p><p> <strong>Internals</strong></p><p> Inside the DROID beats an Arm Cortex A8 CPU (a 600MHz, OMAP3430 chip downclocked to 550MHz), 256MB of RAM, and 512MB of ROM. If that CPU sounds familiar, it should -- it's similar to the chip inside the iPhone 3GS and Palm Pre. If you're wondering about performance, you can breathe a sigh of relief... kind of. Yes, there is a noticeable bump in speed when switching applications on the phone, scrolling through lists, and generally getting any basic tasks done. We did notice, however, that paging through homescreens on the DROID actually seemed somewhat stuttery; odd, considering this phone is certainly better equipped than most Android devices to handle pixel pushing. Pulling down the window shade notification area also seemed less than optimal. We don't know if this was due to the screen resolution being jacked up, or just a software quirk, but it was mildly disheartening -- especially considering that the rest of the phone's performance seemed extra snappy to us. As an aside, in a totally unscientific test of playing a 3D game (Mystique, in case you're wondering) the rendering seemed considerably smoother on the DROID than with other, older Android-based phones we've used.</p><p> Throughout our tests, we were consistently impressed with the tightness and speed of navigation on the phone. The DROID makes Android feel modern the way the iPhone 3GS and Palm Pre are -- like machines designed for a pace of life that's increasingly more Twitter and less USPS.</p><p> <strong>Display</strong></p><p>

<br /> As we mentioned, the screen on the DROID is a 3.7-inch capacitive touchscreen -- a full glass display with a WVGA resolution clocking in at a handsome 480 x 854. We found the responsiveness on the DROID to be on par (if not better) than most of its Android contemporaries; gestures and flicks registered with little to no lag. Whether that can be attributed to Moto's screen technology, Android 2.0 improvements, or just the speedy CPU inside the DROID is anyone's guess, but we certainly won't knock the phone for it. Another perk to having that big screen is seeing webpages how they're meant to be viewed (or at least closer), and browsing on the DROID is a solid experience. Those additional pixels definitely come in handy when you're looking at something graphically intensive or wordy... such as Engadget.</p><p> As you have probably heard (or guessed), there's no multitouch on this device. That's clearly an issue with Android 2.0 and choices that Google is making about user interface -- we're fairly certain there's nothing technically holding back the DROID from utilizing multitouch input, and we wouldn't be surprised to see some tweaked ROMs hit the information superhighway with the functionality onboard. Regardless, the resolution, materials, and clarity of the DROID display make it an absolute pleasure to keep your eyes on. Motorola gets a +1 for the bump in resolution, and we can only hope everyone else follows suit.<br /> <strong><br /> </strong><em>Note: Android 2.0 does support multitouch events, but the functionality isn't implemented here.</em></p><p> <strong>Keyboard</strong></p><p>

<br /> A physical keyboard can be a blessing or a curse, depending on just how well (or poorly) it performs. In the case of Android devices, QWERTYs have definitely been hit or miss. We think the closest case for comparison with the DROID's version would be the <a href="http://www.engadget.com/tag/G1/">G1</a>; both have shallow, clicky keys, and both force your right hand into a bit of an awkward position. On the G1, it's due to the placement of the "chin," and with the DROID, it's all down to the five-way rocker living next to the 'board itself. We're happy to report, however, that after a short adjustment period, typing on the DROID is a reasonable experience. It's not as slick or comfortable as a nice, portrait-oriented Tour or (better yet) Bold layout, though it bests the CLIQ, and holds its own against other landscape contenders like the <a href="http://www.engadget.com/tag/Moment/">Moment</a>.</p><p> Visually, the keyboard is an easier read (and more aesthetically pleasing) than those other QWERTY phones too, though sometimes the keys can feel a bit cramped. Additionally, we had major issues with the auto-dimming on the DROID. If we left the screen in auto brightness mode, the constant on / off dimming of the keyboard was intolerable; eventually we had to just switch the auto dim off altogether. We also had issues with the keyboard not lighting up at all in some instances, requiring us to close and open the pad again. Not a huge deal, but annoying when you're trying to quickly tap out a message. Admittedly, we missed the CLIQ's two-stage keyboard backlighting that only enabled the second light when ALT was pressed, but it's a luxury we can do without.</p><p> As you would expect, Android 2.0 includes the onscreen keyboard as well, but there don't seem to be many improvements in this area. As a backup keyboard for quick SMSs and the like, it works, though we eventually had to replace it with the Better Keyboard application -- which we think is more usable and snappier. In comparison to the iPhone keyboard (really the high bar for virtual keys) Android continues to feel like a distant second. Still, you won't go to it that much -- the DROID's physical keyboard is solid, but it's going to take some getting used to for most people.</p><p> <strong>Camera</strong></p><p>

<br /> Google has made some pretty major changes to the camera application in Android 2.0 (including more control over white balance, focal length, flash settings, and effects), and Motorola has smartly outfitted the DROID with a 5 megapixel camera coupled with an LED flash. It sounds like a match made in heaven, right? Well, not quite.</p><p>

<br /> While the camera certainly seems capable of taking great looking photos, getting everything to play nice isn't as easy as it should be. First off, the camera is painfully slow to focus and snap pictures -- and when it does, the results can be unpredictable. Strangely, the lens seems to be able to take pretty sharp macro photos (it's even a setting in the camera app), but it struggled with getting adjusted to close subjects, even in broad daylight. Sometimes we got lucky and cranked out a decent pic, but the process was frustrating. Furthermore, the new settings Google has added to 2.0 are contained in a hard to get to and counterintuitive menu which sits to the left of your viewing area. Trying to make changes on the fly was a hassle. If this is the best the engineers at Google can do, they need to outsource this work.<br /> </p><p> Video, on the other hand, was somewhat of a pleasant surprise. The DROID is capable of shooting at a 720 x 480 resolution, and in our tests, produced watchable -- if not totally shake-free -- video. The phone definitely fares better in this department than with stills, and we could easily see using the DROID as a stand-in for a flip cam. You can check out a little of the action in the video below (with a surprise cameo from !!!'s Nic Offer).</p><p>

<strong><br /> Speaker / earpiece</strong></p><p> The sound on the DROID is second to none -- really. In fact, this is simply one of the best sounding devices we've ever used. Whether it's audio through the loud (but undistorted) earpiece, or a speakerphone call -- even music -- the sound which Motorola's device outputs is crystal clear. Now, obviously Verizon's reception has something to do with our in-call sound, but it's likely Moto put some thought into the aural aspect of the phone. There's not really much to say except that we were more than pleased with the audio fidelity of the DROID, and we can only hope that future phone makers (ahem, Apple) look to this device as a high water mark in this department.</p><p> <strong>Software</strong></p><p> 

<br /> Besides the introduction of the phone itself, obviously 2.0 is a major update for Android. Based on the launch and hype surrounding Moto's device, we'd say it's fair to assume that Google wanted as many eyes on the achievement as possible. They definitely got it with the DROID -- but was it worth all the fuss?</p><p> The first thing you should know is that Android 2.0 isn't drastically different than 1.5 or 1.6, save for a few notable features and tweaks that have significant impact. True to form, Google hasn't gone for visual flair or wild embellishments for the sake of a few dropped jaws; most of these changes are about functionality and usability.</p><p> One of the first major changes Google has made is support for multiple Gmail or Exchange accounts, and a new universal inbox which allows you to get a look at your electronic correspondences in a single view. For BlackBerry users, this concept is old hat, but for most people with multiple accounts, it should feel like manna from heaven. We would have been slightly more stoked about the feature if it allowed you to look at both Gmail and POP / IMAP / Exchange accounts in one field. Instead, you can view your Gmail accounts separately (not in a single stream, but in one place), and your other accounts can be blended in the "Combined Inbox" view. Not exactly a perfect implementation for those of us with both Exchange and Google accounts, but certainly a solution light years beyond what previous versions of Android were offering. Another minor niggle: deleting an email now takes you to the next email in your inbox rather than bumping you back out to the list of emails, as it did in 1.5 and 1.6. We preferred the old functionality, though we imagine some will prefer the new as well.</p><p> We loved being able to keep a few of our accounts in the phone, but we ran into a weird and annoying issue when attempting to remove one of them. We were using the DROID with two Gmail accounts active, but when we tried to remove the second one we'd added (note: not the account we used for our contacts or calendars) the device informed us that we would need to factory reset the phone because that account was "required" for certain applications. Try as we might, we couldn't find a way around the problem, and we eventually did reset the device. The behavior was strange to say the least, especially since it was a barely-used, secondary account -- not a daily use address which tied into services.</p><p> As you may have heard, Facebook account integration is now built into 2.0, and there should be more of that coming, as Google has created "sync adapters" which allow third parties to plug into the contact and calendars of your phone. Mercifully, Google has figure out that you might not want your Facebook contacts in your address book, and gives you the option to turn off contact syncing (as it does with Exchange and Gmail accounts). You're also given the option to sync contacts, but keep certain sets from displaying in your contacts list; this variation is best demonstrated with Facebook integration, because it merges duplicate names and pulls the accompanying images, but doesn't clutter up your Gmail contacts with additional names. Beyond that, the pairing doesn't go tremendously deep, even though we're told Facebook had a hand in this version of the OS as well. Really, you get a widget for your homescreen which auto-updates, and that contact integration if you really want it. This is obviously just the tip of the iceberg for this kind of... er, synergy, and we expect to see lots of people taking advantage of the feature (hello, Twitter). Regardless, it's a forward thinking move that will clearly obviate the need for some of the functionality built into BLUR, and makes the DROID (and other 2.0 phones) competitive against the Pre and Pixi when it comes to social networking integration.</p><p> Speaking of contacts, Google has made some big and thoughtful changes to how contacts are handled (and used) in Android 2.0, most notably adding a "Quick Contact" menu to your contact list. The quick contact function allows you to tap on someone's name and get a context menu with jumps to the various ways you can reach out; if you're friends with someone on Facebook, you'll be given an option to message them there, along with SMS, phone, and email choices. It's a brilliant little touch that makes quickly pinging someone a cinch. Android 2.0 also improves the SMS and MMS experience by giving you the option to search your messages, and also allowing you to set a limit on how many SMSs to store before beginning to delete old threads. It's not groundbreaking stuff, but nice choices to have (finally).</p><p>

<br /> You'll notice some major changes within the browser, most notably the fact that when you load up pages now, you're presented with a fully zoomed-out "overview" (much like the iPhone and Pre). If you've been griping about that weird, half-zoom that Android has relied on for so long (as we have), this is a breath of fresh air. Coupled with the DROID's massive display, it makes navigating pages roughly a million times more pleasant. The updated browser also now supports double-taps to zoom (as does Google Maps) -- making navigation a bit more natural -- though we noticed some weird column display issues on our site and others. As we mentioned before, there's still no multitouch, but this does stand in quite well for pinch zooming. While the overall browser speed still isn't as snappy as the iPhone 3GS (or even the Pre), it's a step up from previous efforts, and when you factor in little touches like auto-prediction on URL entry, it's eminently usable.</p><p> As we said, most of the alterations are under the hood -- not stuff that immediately jumps out at you, though there are some notable visual tweaks which bear mentioning. Google has added some new fades and cross-application animations into 2.0 which makes Android seem a bit more contemporary. Of course, older iterations of Android contained animations, but 2.0 seems far more polished to our eyes. Additionally, icons and elements have been updated across the board to give the OS a more modern look, sadly there is much of this UI and its applications that remain unchanged -- and not for the better. </p><p>

<br /> A few of the obvious spots include the music player, which is quite frankly a mess; not only is the navigation poorly thought out, but the application is just straight-up ugly. It's not easy on the eyes, and not much fun to use either. The same goes for the phone app -- the remnants of a hastily thrown together interface are plain here, and the functionality of the phone itself gave us some issues. Often the screen was confused or unresponsive during calls, as if the hardware and software weren't communicating with each other properly. It seems obvious to us that some portions of Android need a serious, ground-up reworking... but they don't get them here. Another annoyance was the home screen -- unlike with HTC's tweaks (or even Motorola's BLUR), you only get three screens for icons and widgets. Furthermore, the DROID doesn't come equipped with even the most basic widgets you see in most new builds, like weather. The weird thing is that there is a weather app in the dock display, but no way to access the application in standard phone mode.</p><p> Additionally, some third-party (and even some first-party) software seems unable to deal with the DROID's new resolution. There are bitmaps that look upscaled and jagged, such as the attachment icon in Gmail. The game Robo Defense seemed to play slower than it did on the Hero, which was a bit of a surprise, though it has been updated to support the new resolution. None of these problems are show stoppers, but it points to a disconnect between where Google is at versus its developers. There is catch-up to be played.</p><p> Also notable (and perhaps a selling point for some) is that the DROID is a Google Experience device, which should theoretically mean that it's more likely to receive fast and frequent software updates than its skinned cousins like the CLIQ. The Google Experience is sort of the "gold standard" Android showcase for the company, so to speak, and it's in Google's best interest to keep it rock solid at all times -- and since there's no third-party skin to revalidate after every Android version is released, the update process should go a heck of a lot smoother.</p><p> One thing to keep in mind: when it comes to media syncing, you're in the same boat you were for previous versions of Android -- which means sideloading or additional desktop apps. doubleTwist has just introduced DROID compatibility, though the experience leaves much to be desired. In fact, after our tests, we'd say you're better off just mounting that SD card and dragging your content over.<br /> </p><p> <strong>Navigation</strong></p><p>

<br /> One of the biggest pieces of news (perhaps the biggest) to come out of the DROID launch was the introduction of dedicated, <a href="http://www.engadget.com/2009/10/28/google-adds-free-turn-by-turn-navigation-car-dock-ui-to-android/">fully realized turn-by-turn navigation</a> which integrates with Google Maps. The DROID makes further use of this functionality by switching into a nav mode when snapped into a dock (you can also enter the application normally, sans dock). Google has gone all out on this, providing a rich mixture of its satellite, map, traffic, and location info with text-to-speech directions. Of course, the big G takes it one step further and adds layers like parking info, ATM spots, restaurants, and gas station locations (amongst others) to the stew, making the navigation more robust than many dedicated PNDs -- which would explain <a href="http://www.engadget.com/2009/10/28/the-game-has-changed/">that nasty drop</a> in Garmin and TomTom stock we saw yesterday.</p><p> In our tests, the nav worked excellently for the most part, though as you can see in the video above, we did run into some minor issues on our hunt for cannoli. It's not uncommon for a GPS unit to send you the wrong way down a one way street, and maybe it was just unlucky coincidence that it happened on our first outing, but being told to turn left where you can't -- then being sent in a loop -- doesn't fill us with warm, fuzzy sensations. Still, the navigation is super intuitive and cleanly laid out, and even if there were major issues (which there really aren't), it's hard to knock a service that is completely free. We think a little more time and some longer trips will help put it in better perspective, but we like what we've seen so far.</p><p> <strong>Accessories</strong></p><p>


<br /> The DROID will get a <a href="http://www.engadget.com/2009/10/29/droid-phone-holder-and-multimedia-station-go-for-30-apiece/">few nifty extras</a> when it launches, most notably a dock for setting your phone on a nightstand (or appropriate flat surface), and a car mount for using the device as a proper GPS unit. Both are notable because they use sensors to alter the DROID's functionality. The dock turns the DROID into something that looks not entirely dissimilar from Verizon's now defunct Hub, while the car mount just boots the phone into nav mode. Both are nice touches, and you'll want the car mount if you plan on taking Google up on that offer of free satnav.<br /> <strong><br /> Battery life</strong></p><p> We haven't had a lot of time to put the DROID through its paces when it comes to battery life, but at a glance it seems to be holding its own against the current crop of 3G devices -- impressive considering it's only packing a 1400mAh battery behind that extremely sexy door. Paul Miller, who has been concurrently testing the phone, claims he had 24 hours of on and off usage before requiring a recharge (syncing, but no major phone calls or lots of screen time). In general, you won't be blown away by the DROID's staying power, but it doesn't deviate in any wild ways which should make you take pause. It's solid, not breathtaking, and it seems better than the CLIQ, which -- despite using the same battery -- typically manages to just barely eke through a day's worth of typical use.</p><p> <strong>Wrap-up</strong></p><p>

<br /> It will be difficult for casual observers not to see the DROID as a kind of anti-iPhone in Verizon's arsenal. Certainly the company has played up the comparison with its "<a href="http://www.engadget.com/2009/10/17/verizons-anti-iphone-gets-its-first-commercial-droid-does/">DROID does</a>" ad campaign, and it's no secret that Verizon and Apple have previously had some friction -- the V famously passed on the first-generation iPhone, after all. Of course, it's easy to draw parallels between the two devices; as with most current smartphones, they share a tremendous number of similarities, though there is plenty that set the two apart as well. And that's really kind of the point -- it's useless to look at devices like this in black and white, or to try and figure out if an Android device on Verizon is better than an Apple device on AT&amp;T (or any other device on any other carrier, for that matter). What it ultimately comes down to when judging this kind of device is more complicated than a "yes" or "no" answer.</p><p> If you must compare the DROID to the iPhone, then know that the Android platform still has a ways to go before the experience of using the phone is as seamless as the one Apple has created -- but also know that Apple has a long way to go before its messaging, email, and customization can match what Google is offering. Both products have very distinct strengths and weaknesses.</p><p> So, is the DROID a good smartphone? Yes, the DROID is an excellent smartphone with many (if not all) of the features that a modern user would expect, and if you're a Verizon customer, there probably isn't a more action packed device on the network. That's not to say the device doesn't have its faults; the camera was unpleasant to use, the application selection feels thin in both quantity and quality (despite the claim of 10,000 options), and the phone has bits of basic, non-intuitive functionality that might chafe on some users after a while. But even still, it's hard not to recommend the DROID to potential buyers eager to do <em>more</em> with their devices. It's easily the best Android phone to date, and when you couple the revamped OS, Verizon's killer network, and an industrial design straight from a gadget enthusiast's fever-dream, it makes for a powerful concoction. Ultimately, the DROID won't usurp the iPhone from the public's collective mindshare or convince casual users that they <em>must</em> switch to Android, but it will make a lot of serious geeks seriously happy -- and that's good enough for us.</p>
				
					<br/><a href="http://news.ycombinator.com/item?id=914189">Comments</a>
				]]>
        	</description>
    	</item>		<item>
        	<title>Google Not Making Their Own Android Hardware</title>
        	<link>http://news.cnet.com/8301-30684_3-10387677-265.html</link>
        	<comments></comments>
	        <description>
    	        <![CDATA[
				
<p>MOUNTAIN VIEW, Calif.--Google's Andy Rubin, head of the company's Android development, would like to clear something up: Google is not in the phone-making business.</p><div>
<img src="http://news.cnet.com/i/bto/20091030/Motorola_Droid_270x214.png" alt="" width="270" height="214" />
<p>Don&#39;t expect to see Google-developed hardware competing with the Motorola Droid anytime soon.</p>
<span>(Credit:
Motorola)</span>
</div><p> Last week <a href="http://www.thestreet.com/story/10614007/1/exclusive-google-plans-its-own-android-phone.html">TheStreet.com</a> reported that Google had plans to sell a Google-developed phone at retail this year, bypassing carriers with its own Android implementation. But Rubin, vice president of engineering for Android at Google, scoffed at the notion that the company would "compete with its customers" by releasing its own phone.</p><p> "We're not making hardware," Rubin said. "We're enabling other people to build hardware."</p><p> Now, Google has played a role in designing phones that have emerged with Android, <a href="http://reviews.cnet.com/smartphones/t-mobile-g1-black/4505-6452_7-33283585.html">such as the G1</a>. For example, Google advocated the infamous hinge design on the G1 based on its desire to offer a phone with a five-row keyboard, Rubin said. That design was not popular with reviewers, however, and Rubin joked that perhaps that's why Google shouldn't make its own hardware.</p><p> But pushing for a design feature is a far cry from designing an entire phone, contracting with a manufacturing partner to build it, and working the distribution channels to get it to market. That would be "a fundamental shift" in Google's business model, Rubin said, and one the company does not seem prepared to make at this time.</p><p>
<a title="Google phone coming in two weeks? -- Friday, Aug 24, 2007" href="http://news.cnet.com/8301-10784_3-9765956-7.html">Rumors of a so-called "Gphone"</a> date back years, long before <a href="http://news.cnet.com/google-unveils-cell-phone-software-and-alliance/">Google formally announced Android in November 2007</a>. But Google's strategy to date has been a somewhat traditional volume licensing play, working with hardware and carrier partners to spread Android far and wide as the mobile operating system of choice, rather than following Apple's lead with a complete hardware and software design like the
<a href="http://www.cnet.com/apple-iphone.html" section="luke_topic">iPhone</a>.</p><p> Almost two years later, <a title="The Google Android party has begun -- Thursday, Oct 8, 2009" href="http://reviews.cnet.com/8301-12261_7-10370495-10356022.html">the software is rounding into form</a> with the release of several phones this year along with <a title="Verizon, Motorola unveil the Droid -- Wednesday, Oct 28, 2009" href="http://news.cnet.com/8301-30686_3-10384994-266.html">the pending release of the Motorola Droid</a>, which runs Android 2.0 on Verizon's network.</p><p>
<i>Corrected at 5:50 p.m. PDT with Rubin's correct title.</i></p>

				
				]]>
        	</description>
    	</item>		<item>
        	<title>Ulysses 2.0</title>
        	<link>http://www.the-soulmen.com/ref.php?id=5</link>
        	<comments></comments>
	        <description>
    	        <![CDATA[
				
<p>Key Features:</p>
<ul>
<li>Semantic Text Editing</li>
<li>Console Mode (aka Fullscreen)</li>
<li>Extensible Export</li>
<li>Project-Wide Search &amp; Replace</li>
<li>Multiple Document and Project Notes</li>
<li>Excerpts</li>
<li>Counters for Characters, Words &amp; Pages</li>
<li>Configurable Metadata (status, label, dates)</li>
<li>Integrated Backup</li>
</ul>
<p>Exclusives:</p>
<ul>
<li>Tabbed, Single-Window Interface</li>
<li>True separation of presentation and content</li>
<li>Term-centric Search &amp; Replace</li>
<li>Filters, Groups and Document Collections</li>
<li>Coherent Document Previews</li>
<li>Text Trash</li>
<li>Permanent Save</li>
</ul>

				
				]]>
        	</description>
    	</item>		<item>
        	<title>It’s Decorative Gourd Season, Motherfuckers</title>
        	<link>http://www.mcsweeneys.net/2009/10/20nissan.html</link>
        	<comments></comments>
	        <description>
    	        <![CDATA[
				
<font size="-1">- - - -</font>
<p><a href="http://www.mcsweeneys.net/">MAIN PAGE</a>&nbsp;|&nbsp;<a href="http://www.mcsweeneys.net/archives/">ARCHIVES</a>
</p><p>
</p><p><a href="http://www.mcsweeneys.net/davis.html">Memories of Amanda Davis</a>
</p><p>
</p><p><br /><font size="-1">
<img src="http://www.mcsweeneys.net/src/reddot.gif" width="6" height="6" /> Red dot denotes content that is new today.



</font></p><p><img src="http://www.mcsweeneys.net/src/blackdot.gif" width="6" height="6" /> Black dot denotes newish content.



</p><p><a href="http://store.mcsweeneys.net">McSWEENEY'S STORE</a>
</p><p>SUBSCRIBE TO:

<br /><a href="http://store.mcsweeneys.net/index.cfm/fuseaction/catalog.detail/object_id/B98CC3A0-53FA-4ED6-A771-E788DC9D9396/McSweeneysSubscriptionbrBeginningwithIssue19.cfm">McSWEENEY'S</a>
<br /><a href="http://store.mcsweeneys.net/index.cfm/fuseaction/catalog.detail/object_id/31d460ea-2ee1-44b5-8c9b-0546eec44ab8/TheBeliever.cfm">THE BELIEVER</a>
<br /><a href="http://store.mcsweeneys.net/index.cfm/fuseaction/catalog.detail/object_id/2AF2AE97-8E22-4F9C-AC58-FA31F8D5347F/WholphinDVDSubscription.cfm">WHOLPHIN</a>
</p><p><img src="http://www.mcsweeneys.net/src/blackdot.gif" width="6" height="6" /> <a href="http://www.mcsweeneys.net/books/future.html">FUTURE McSWEENEY'S BOOKS</a>
</p><p><a href="http://www.mcsweeneys.net/2008amandadavisaward.html">THE AMANDA DAVIS HIGHWIRE FICTION AWARD</a>
</p><p><a href="http://www.mcsweeneys.net/links/authorpages/event.html">INVITE A McSWEENEY'S AUTHOR TO SPEAK IN YOUR TOWN OR COLLEGE</a>
</p><p><a href="http://www.bestamericannonrequiredreading.blogspot.com/" target="_blank">THE BEST AMERICAN NONREQUIRED READING</a>
</p><p><a href="http://www.mcsweeneys.net/contact/mailinglist/">McSWEENEY'S MONTHLY MAILING LIST</a>
</p><p><a href="http://www.mcsweeneys.net/bookstoredisplays.html">BOOKSTORES WITH A McSWEENEY'S DISPLAY</a>
</p><p><img src="http://www.mcsweeneys.net/src/blackdot.gif" width="6" height="6" /><!--<DON'T REMOVE DOT--> <a href="http://www.mcsweeneys.net/links/events/">McSWEENEY'S-RELATED EVENTS AND VARIOUS TOUR DATES</a>
</p><p><a href="http://www.mcsweeneys.net/if_you/orders.html">ORDER INQUIRIES AND ADDRESS CHANGES</a>
</p><p>SUBMISSION GUIDELINES:

<br /><a href="http://www.mcsweeneys.net/submit/book.html">FOR BOOKS</a>
<br /><a href="http://www.mcsweeneys.net/submit/print.html">FOR THE QUARTERLY</a>
<br /><a href="http://www.mcsweeneys.net/submit/web.html">FOR THE WEBSITE</a>
<br /><a href="http://www.mcsweeneys.net/submit/wholphin.html">FOR WHOLPHIN</a>
</p><p><a href="http://www.mcsweeneys.net/826interns.html"> McSWEENEY'S INTERNSHIPS</a>
</p><p><a href="http://www.mcsweeneys.net/contact/">CONTACT US</a>
</p><p><font size="-1">- - - -</font>
</p><p><img src="http://www.mcsweeneys.net/src/reddot.gif" width="6" height="6" /> <a href="http://www.mcsweeneys.net/letters/">LETTERS TO McSWEENEY'S</a>
</p><p><a href="http://www.mcsweeneys.net/links/lists/">LISTS</a>
</p><p><img src="http://www.mcsweeneys.net/src/blackdot.gif" width="6" height="6" /> <a href="http://www.mcsweeneys.net/links/recommends/">McSWEENEY'S RECOMMENDS</a>
</p><p><img src="http://www.mcsweeneys.net/src/blackdot.gif" width="6" height="6" /> <a href="http://www.mcsweeneys.net/links/newfood/">REVIEWS OF NEW FOOD</a>
</p><p><a href="http://www.wholphindvd.com/web-films/nevel-is-the-devil/" target="_blank">NEW <i>WHOLPHIN</i> FILM</a>
</p><p><a href="http://www.mcsweeneys.net/links/danliebert/"> DAN LIEBERT, VERBAL CARTOONIST</a>
</p><p><a href="http://www.mcsweeneys.net/links/proverbs/"> TEDDY WAYNE'S UNPOPULAR PROVERBS</a>
</p><p><img src="http://www.mcsweeneys.net/src/blackdot.gif" width="6" height="6" /><a href="http://www.mcsweeneys.net/links/mnemonics/"> NON-ESSENTIAL MNEMONICS</a>
</p><p><a href="http://www.mcsweeneys.net/links/bitchslap/">BITCHSLAP: A COLUMN ABOUT WOMEN AND FIGHTING</a>
</p><p><img src="http://www.mcsweeneys.net/src/reddot.gif" width="6" height="6" /> <a href="http://www.mcsweeneys.net/links/nashville/">DISPATCHES FROM A GUY TRYING UNSUCCESSFULLY<br />TO SELL A SONG IN NASHVILLE</a>
</p><p><img src="http://www.mcsweeneys.net/src/blackdot.gif" width="6" height="6" /> <a href="http://www.mcsweeneys.net/links/bedbugs/">GLOBAL WAR ON BEDBUGS: LETTERS FROM BEDBUG CITY</a>
</p><p><img src="http://www.mcsweeneys.net/src/blackdot.gif" width="6" height="6" /> <a href="http://www.mcsweeneys.net/links/pornwriter/">THE CONFLICTED EXISTENCE OF A FEMALE PORN WRITER</a>
</p><p><a href="http://www.mcsweeneys.net/links/ohmygawd/"> OH MY GAWD: A COLUMN ABOUT A TEENAGER NAVIGATING RELIGION</a>
</p><p><a href="http://www.mcsweeneys.net/links/manila/">DISPATCHES FROM MANILA</a>
</p><p> <a href="http://www.mcsweeneys.net/links/casino/"> DISPATCHES FROM AN INDIAN CASINO</a>
</p><p><a href="http://www.mcsweeneys.net/books/everythingthatrises.contest66.html">THE CONVERGENCES CONTEST</a>
</p><p><a href="http://www.mcsweeneys.net/links/presidents/"> CHRIS WHITE ANSWERS PROFOUND<br />QUESTIONS ABOUT THE PRESIDENTS</a>
</p><p><a href="http://www.mcsweeneys.net/links/pinball/"> REPORTS FROM THE PINBALL SCENE</a>
</p><p><img src="http://www.mcsweeneys.net/src/blackdot.gif" width="6" height="6" /> <a href="http://www.mcsweeneys.net/links/hellbox/">LETTERS FROM THE HELLBOX</a>
</p><p><a href="http://www.mcsweeneys.net/links/mma/"> NOTES FROM AN AMATEUR SPECTATOR <br />AT AMATEUR MIXED MARTIAL ARTS FIGHTS</a>
</p><p><a href="http://www.mcsweeneys.net/links/museum/"> B.R. COHEN'S DAYS AT THE MUSEUM</a>
</p><p><a href="http://www.mcsweeneys.net/links/wartime/">CONVERSATIONS AT A WARTIME CAF&Eacute;</a>
</p><p><a href="http://www.mcsweeneys.net/links/sacks/"><i>AND HERE'S THE KICKER</i>:<br />MIKE SACKS'S CONVERSATIONS WITH HUMOR WRITERS</a>
</p><p><a href="http://www.mcsweeneys.net/links/folktales/">GRANT MUNROE'S CORPORATE FOLKTALES</a>
</p><p><a href="http://www.mcsweeneys.net/links/sarahwalker/">SARAH WALKER SHOWS YOU HOW</a>
</p><p><a href="http://www.mcsweeneys.net/links/mustache/">DISPATCHES FROM AN ENVIRONMENTAL LAWYER<br />WHO IS TRYING TO GROW A MUSTACHE</a>
</p><p><a href="http://www.mcsweeneys.net/links/bankrupt/">DISPATCHES FROM A HANGDOG BANKRUPT</a>
<!--</p><p><a href="/links/advice/">ADVICE FROM A PERSON WITH A<br>BACHELOR'S DEGREE IN PSYCHOLOGY</a>-->
</p><p> <a href="http://www.mcsweeneys.net/links/capital/">DISPATCHES FROM THE CAPITAL</a>
</p><p><a href="http://www.mcsweeneys.net/links/india/">DISPATCHES FROM INDIA</a>
</p><p><a href="http://www.mcsweeneys.net/links/winnerscircle/">THE WINNER'S CIRCLE WITH ERIC FEEZELL</a>
</p><p><a href="http://www.mcsweeneys.net/links/music/">SEAN MICHAELS LISTENS TO MUSIC IN MONTREAL</a>
</p><p><a href="http://www.mcsweeneys.net/links/monologues/">SHORT IMAGINED MONOLOGUES</a>
</p><p><a href="http://www.mcsweeneys.net/links/obamaletters/">KIDS' LETTERS TO PRESIDENT OBAMA</a>
</p><p><a href="http://www.mcsweeneys.net/links/wine/">STAINED TEETH: A COLUMN ABOUT WINE</a>
</p><p><a href="http://www.mcsweeneys.net/links/yourmoney/">YOUR MONEY, YOUR JOB ... YOUR LIFE, WITH ALISON ROSEN</a>
</p><p><a href="http://www.mcsweeneys.net/links/dolgin/">KEVIN DOLGIN TELLS YOU ABOUT PLACES YOU SHOULD GO IN EUROPE</a>
</p><p><a href="http://www.mcsweeneys.net/books/wildthings.html"> ABOUT <i>THE WILD THINGS</i></a>
</p><p><a href="http://www.mcsweeneys.net/books/convalescent">ABOUT <i>THE CONVALESCENT</i></a>
</p><p><a href="http://www.mcsweeneys.net/books/feverchart.html">ABOUT <i>FEVER CHART</i></a>
</p><p> <a href="http://www.mcsweeneys.net/books/godsaysno">ABOUT <i>GOD SAYS NO</i></a>
</p><p><a href="http://www.mcsweeneys.net/books/zeitoun/">ABOUT <i>ZEITOUN</i></a>
</p><p><a href="http://www.mcsweeneys.net/links/earthball/">LETTERS FROM AN EARTH BALL<br />TO, OR CONCERNING, SEAN HANNITY</a>
</p><p><a href="http://www.mcsweeneys.net/links/football/"> E-MAILS SENT TO THE UNIVERSITY OF ALABAMA ENGLISH DEPARTMENT<br />FLAG-FOOTBALL TEAM</a>
</p><p> <a href="http://www.mcsweeneys.net/links/darkagetourist/">TRAVELING EUROPE IN STYLE WITH AUCKLAND DINGIROO,<br />DARK-AGE TOURIST AND CRITIC OF FOOD AND DRINK</a>
</p><p> <a href="http://www.mcsweeneys.net/links/popsong/">JOHN MOE'S POP-SONG CORRESPONDENCES</a>
</p><p> <a href="http://www.mcsweeneys.net/links/unusualjobs/">INTERVIEWS WITH PEOPLE WHO HAVE INTERESTING OR UNUSUAL JOBS</a>
</p><p><a href="http://www.mcsweeneys.net/links/skateboard">FLIP: A COLUMN ABOUT SKATEBOARDING</a>
</p><p><a href="http://www.mcsweeneys.net/links/openletters/">OPEN LETTERS TO PEOPLE OR ENTITIES WHO ARE UNLIKELY TO RESPOND</a>
</p><p><a href="http://www.mcsweeneys.net/links/librarian/">DISPATCHES FROM A PUBLIC LIBRARIAN</a>
</p><p><a href="http://www.mcsweeneys.net/links/black/">MICHAEL IAN BLACK IS A VERY FAMOUS CELEBRITY</a>
</p><p><a href="http://www.mcsweeneys.net/links/paper/">DAN KENNEDY SOLVES YOUR PROBLEMS WITH PAPER</a>
</p><p><a href="http://www.mcsweeneys.net/links/poker/">STEPHEN ELLIOTT'S POKER REPORT</a>
</p><p align="center"><font size="-1">- - - -</font></p>
<a href="http://www.mcsweeneys.net/archives/index_additional.html">ADDITIONAL MATERIAL</a>

				
				]]>
        	</description>
    	</item>		<item>
        	<title>To Sweet Hereafter</title>
        	<link>http://jasonsantamaria.com/articles/to-sweet-hereafter/</link>
        	<comments></comments>
	        <description>
    	        <![CDATA[
				
<dl>
<dt><label for="name">Name:</label></dt>
<dd><input type="text" id="name" name="name" value="" title="Your name is required." /></dd>
</dl>
<dl>
<dt><label for="email">Email Address: <span>(never made public)</span></label></dt>
<dd><input type="text" id="email" name="email" value="" title="A valid email address is required." /></dd>
</dl>
<dl>
<dt><label for="url">URL:</label></dt>
<dd><input type="text" id="url" name="url" value="" title="Please use a valid web address." /></dd>
</dl>
<p><input type="checkbox" name="save_info" id="remember" value="yes" /> <label for="remember">Remember Info?</label></p>

<dl>
<dt><label for="comment">Comment:<span> (<a href="http://jasonsantamaria.com/articles/to-sweet-hereafter/" onclick="$('#textile').toggle(); return false;">Textile permitted</a>)</span></label></dt>
<dd><textarea id="comment" name="comment" title="Enter a comment!" rows="10" cols="28"></textarea></dd>
</dl>
<p><input type="submit" name="post" value="Post Comment" /></p>
<p><span>Guidelines:</span> I reserve the right to delete off-topic, inflammatory, or anonymous comments. Get your own picture next to your comment with a <a title="Gravatar" href="http://gravatar.com/">Gravatar account</a>.</p>

				
				]]>
        	</description>
    	</item>		<item>
        	<title>Thoughtful Piece From Brent Simmons</title>
        	<link>http://inessential.com/2009/10/29/vaccines</link>
        	<comments></comments>
	        <description>
    	        <![CDATA[
				<p>An <a href="http://daringfireball.net/linked/2009/10/29/wired-vaccinations">interesting link on Daring Fireball</a> today has me thinking about vaccines.</p>
<p><img src="http://inessential.com/images/atom.gif" width="29" height="30" alt="" /></p>
<p>I’m still living with the effects of the chicken pox I had in third grade.</p>
<p>There was no vaccine then. Every kid just got it. It swept through school, and nobody tried too hard to prevent the spread, because every kid would get it, and it was better to get it when you were young.</p>
<p>It was just a thing. We thought we were modern because it was just chicken pox — not polio or smallpox or one of those scarier diseases that had been conquered.</p>
<p>But now there is a vaccine, and I wish like crazy there had been a vaccine when I was a kid.</p>
<p><img src="http://inessential.com/images/atom.gif" width="29" height="30" alt="" /></p>
<p>I was nearly hospitalized — my Mom tells me I was within an hour or so of having to go the hospital when I could <em>finally</em> sip a few drops of water without vomiting.</p>
<p>I remember vomiting so much that the vomiting itself didn’t even bother me any more. I started crying out of <em>frustration</em>. Just when I started to feel a little better, a little cooler, and hungry and thirsty, I’d try the smallest sip of water, and whatever was left in me to come up would come back up. It just went on and on.</p>
<p>For days? I don’t know. It seemed like weeks of nights. Trying to sleep. Itchy, exhausted, unable. The screaming heat inside that wouldn’t end. Then the stomach convulsions.</p>
<p>I was told I had chicken pox not just on my skin but inside me, too. Could that be true? Was that possible? I still don’t know — but I didn’t question it, because it sure felt like it.</p>
<p><img src="http://inessential.com/images/atom.gif" width="29" height="30" alt="" /></p>
<p>Of course I had chicken pox on my head. So I had pink hair — pink with the Calamine Lotion my Mom applied. The pink was <em>mortifying</em> to a third-grade boy.</p>
<p>A friend of my Mom’s, a woman from down the street, came by one day. (She was cool: she drove a white Corvette. Here’s <a href="http://gresham-oregon.olx.com/1976-white-chevrolet-corvette-stingray-for-sale-in-gresham-or-97080-iid-17438736">one</a>.) I can still feel the embarassment of my pink hair. The spots all over my face I could deal with: the pink hair was devastating.</p>
<p><img src="http://inessential.com/images/atom.gif" width="29" height="30" alt="" /></p>
<p>I was finally able to drink water, and then I moved up to jello and then on to chicken noodle soup. I was able to sit at the dinner table and watch the network news. (ABC news broadcast from WPVI in Philadelphia.)</p>
<p>I got better. After about three weeks of the chicken pox, I could return to school, even though still slightly scarred. Prepared to be teased.</p>
<p><img src="http://inessential.com/images/atom.gif" width="29" height="30" alt="" /></p>
<p>I was the smartest kid in the grade. I won every spelling bee. I got 100% test scores. I always had.</p>
<p>And though I was prepared to be teased for the visible remains of my chicken pox, I was <i>not</i> prepared to get in trouble with my teacher for <em>cheating</em>.</p>
<p>Cheating? Me? People cheated off me, not the other way around.</p>
<p>But I <i>was</i> looking at someone else’s paper. Because <em>I couldn’t see the chalkboard anymore</em> and I couldn’t read the questions to copy them down.</p>
<p>I kept getting in trouble, and I kept getting teased, and I was angry and hot-headed a whole bunch of the time. I started getting in trouble for accidents, and for things other kids had done. (Which wasn’t that new, actually: I was in trouble at school, or about to be and dreading it, most of the time as a kid.)</p>
<p>It was a few weeks before news got to my parents and they took me for an eye exam.</p>
<p>Chicken pox had ruined my eyesight.</p>
<p><img src="http://inessential.com/images/atom.gif" width="29" height="30" alt="" /></p>
<p>So I got glasses, and that worked. But my vision, once gotten a head-start down that path, kept getting worse for a few years.</p>
<p>Though it pretty much stabilized while I was in high school, it got bad enough that it’s dangerous for me to walk around my own house with my contact lenses out.</p>
<p>I can tell you that my staircase has 16 steps. (Easy number for a programmer to remember!)</p>
<p>To read with my contacts out, I have to hold the book so close that I have to close one eye.</p>
<p>I can look down at my feet and <em>not see the cat</em>.</p>
<p>My parents were both near-sighted — they both got glasses in the eighth grade. Their eyesight is better than mine. Odds are I would have gotten glasses around the eighth grade too, and had eyesight about like theirs. Not great, but not <em>terrible</em>.</p>
<p><img src="http://inessential.com/images/atom.gif" width="29" height="30" alt="" /></p>
<p>I wish, to this day, that there had been a chicken pox vaccine.</p>
<p>I later got shingles when I was 20. I won’t be surprised to get it again, but I sure hope not. Shingles <em>hurts</em>.</p>
<p><img src="http://inessential.com/images/atom.gif" width="29" height="30" alt="" /></p>
<p>So I was out about three weeks from school. I hated school anyway.</p>
<p>But we were doing a special unit on the history of native Americans, which I thought would be pretty cool.</p>
<p>I missed some arts and crafts things — creating a diorama, carving a miniature dugout canoe out of Ivory soap. I was just as glad to miss that stuff, as I liked reading and writing better.</p>
<p>I also missed out learning about the history of native Americans, though I did pick up some later.</p>
<p>Which brings me back to the subject of vaccines. And, you know, I thought I was going to, but I don’t really need to state the obvious.</p>
				
				]]>
        	</description>
    	</item>		<item>
        	<title>★ Regarding Apple TV</title>
        	<link>http://daringfireball.net/2009/10/regarding_apple_tv</link>
        	<comments></comments>
	        <description>
    	        <![CDATA[
				
<h1>Regarding Apple TV</h1>
<h6>Friday, 30 October 2009</h6>
<p>Dan Frommer is <a href="http://www.businessinsider.com/apple-updates-apple-tv-software-doesnt-include-outside-content-2009-10">pretty down on the Apple TV 3.0 update</a>:</p>
<blockquote>
<p>Apple needs to make major changes to the Apple TV&#8217;s software and
  platform. That could include some or all of these options:</p>
<ul>
<li>Opening Apple TV up to all Web video content, whether Apple
  controls it or not. (Rival Roku is heading in this direction
  with its $99 box.)</li>
</ul>
</blockquote>
<p>Apple isn&#8217;t going to do that. Love it or leave it, Apple TV is a front-end to the iTunes Store and a player for open video and audio content (i.e. non-DRM-protected MP4 video and MP3 and AAC audio, synced from a Mac or PC on your home network). If you want access to everything, use a Mac Mini &#8212; more powerful, open to just about anything, but also a lot more fiddly. Apple TV is not a Mac, it&#8217;s a top-to-bottom Apple experience device.</p>
<blockquote>
<ul>
<li>Adding a Blu-ray player to Apple TV so it could replace an
  existing port on peoples’ TVs, not take up a new one.</li>
</ul>
</blockquote>
<p>That would be nice. (I bought a PS3 just for use as a Blu-ray player; I would have bought a new Blu-ray equipped Apple TV instead if there were one.) But: Apple seems to have made a decision to ignore Blu-ray across the board, at least for now. Apple&#8217;s answer for HD movies is the iTunes Store.</p>
<blockquote>
<ul>
<li>Establishing an App Store for Apple TV, so that companies could
  offer video services, games, other apps, hardware accessories,
  etc., the way they do on the iPhone.</li>
</ul>
</blockquote>
<p>This sort of <em>did</em> happen with the 3.0 software &#8212; Apple TV can now play iTunes Extras and iTunes LPs, which are bundles of WebKit content.</p>
<p>More importantly, Frommer&#8217;s last two points would require new hardware. When you talk about &#8220;apps&#8221; for a computer hooked up to your TV, you&#8217;re going to want <a href="http://twitter.com/anildash/status/5267322555">games</a>. And there&#8217;s no way you&#8217;re going to have games where the input is a little five-button Apple Remote, or anything else connected by IR. <a href="http://www.macworld.com/article/143580/2009/10/appletv_3_first_look.html">As Jason Snell pointed out</a> in his Apple TV 3.0 review, the current hardware doesn&#8217;t do 1080p or 720p at 30 fps, and occasionally struggles even with 720p at 24 fps.</p>
<p>You can argue that Apple should have released major new Apple TV hardware in time for this holiday season, but it&#8217;s not fair to complain that a software update doesn&#8217;t include features that would require new hardware. Surely they have to update the hardware eventually, but if not now, when?</p>
<p>That said, my biggest Apple TV complaint has nothing to do with its hardware or software, but instead remains the paltry number of movies available through iTunes &#8212; especially the number of <em>rentable</em> movies.</p>
 <!-- PreviousNext -->

				
				]]>
        	</description>
    	</item>		<item>
        	<title>Jason Snell on Apple TV 3.0</title>
        	<link>http://www.macworld.com/article/143580/2009/10/appletv_3_first_look.html</link>
        	<comments></comments>
	        <description>
    	        <![CDATA[
				
<p>
				by <a href="http://www.macworld.com/contact.html?t=e&amp;e=Jason+Snell&amp;ssid=1&amp;sid=143580">Jason Snell</a>, <a href="http://www.macworld.com/">Macworld.com</a>
</p>
<p>
The Apple TV is a strange beast. Steve Jobs famously referred to his company's media-playback box <a href="http://www.macworld.com/article/58128/2007/05/steveatd.html">as “a hobby.”</a> In early 2008 Apple released <a href="http://www.macworld.com/article/132191/2008/02/appletv2.html">a major software update, Apple TV 2.0</a>, that revamped its interface and added movie rentals to the mix. Yet in a world increasingly full of Internet-connected TV boxes, Apple’s “hobby” has remained strangely static.
</p>

<p>
Thursday’s release of <a href="http://www.macworld.com/article/143573/2009/10/appletv_3.html">Apple TV 3.0 software</a> doesn’t do a lot to change that, but for the unknown number of people who have bought an Apple TV box over the past <a href="http://www.macworld.com/article/57081/2007/03/appletvrev.html">two and a half years</a>, it seems to be a pleasant improvement that addresses some lingering interface issues while adding whole new levels of mystery about exactly what (if anything) Apple is going to do with the product.
</p>
<h2>Revamped main menu</h2>
<p>
The highlight of the Apple TV 3.0 software update is its revamped main menu. Gone is the two-column grid introduced as a part of Apple TV “take two.” Instead, there’s a new interface that takes full advantage of widescreen TVs.
</p>
<a name="jump"></a><p>
Spread out across the screen is a row with seven columns which forms the backbone of the new menu system: Movies, TV Shows, Music, Podcasts, Photos, Internet, and Settings. Clicking right or left determines which one of the columns is highlighted. When an item in that row is selected, the Apple TV displays a column of menu items beneath it. Spatially, this layout seems to makes a lot more sense than the old Apple TV menu.
</p>
<p>
Within the individual stacks of menu options, Apple has addressed the interface feature of Apple TV 2.0 that I disliked the most: the placement of all iTunes Store-related items at the top, with the menu item containing your own media placed all the way at the bottom. Now your media—movies, TV shows, music, and more—can always be found behind the top item of each column. It makes the whole experience feel a bit friendlier and a bit less like the entire device was created as a vehicle for Apple to sell you more stuff.
</p>
<p>
Above the menu items, in the top third of the screen, is a strip of tiles similar to the ones used in Apple TV 2.0’s iTunes Store interface. But even here, Apple’s has showed restraint when it comes to commerce. The first few items of the strip all feature <em>your</em> content—unwatched movies or TV shows, Genius mixes and recently-added albums (as well as the currently playing track, if there is one), unplayed podcasts, photos, and the like. For some media types, such as movies and TV shows, there’s also integration with the iTunes store: keep moving to the right, past your recently unwatched movies, and you’ll find top movies on iTunes. But it’s handled with the right emphasis. More than that, the appearance of the media tiles atop the menu items makes the entire main menu seem more vibrant and interesting.
</p>
<p>
(Font fans will be happy to know that the Apple TV interface is now drawn with famous, comforting, star-of-a-major-motion-picture Helvetica. It looks nice. Even non-font geeks may notice, though they won’t be able to put their finger on just what’s different. However, one of our editors reported that the lighter-weight font causes flickering on his older HDTV set.)
</p>
<h2>Apple’s new packages</h2>
<p>
Main menu aside, the major new feature addition in Apple TV 3.0 is support for the new <a href="http://www.macworld.com/article/142712/2009/09/itunesstore.html">expanded-feature formats</a> Apple introduced to the iTunes store back in September, iTunes LP and iTunes Extras. Since these formats bring a DVD-menu-style interface to music collections and movies, respectively, it was a natural that they’d end up on the Apple TV. And now they have.
</p>
<p>
I think iTunes Extras is a fantastic idea. It allows Apple to bundle together the bonus content previously seen only on DVDs, and make it available as a part of an iTunes download. It closes the gap between iTunes downloads and DVDs in a compelling way, and I expect that it will be come the new standard for how movies are sold on iTunes.
</p>
<p>
On the Apple TV, iTunes Extras work pretty much as you expect. I navigated to My Movies and chose Iron Man, which has a small icon of a stack of items off to its right to indicate that it’s a film containing iTunes Extras. When I click, Apple TV brings me to the Iron Man main menu, rather than just playing the movie. At that point, it’s essentially a DVD experience—I can play the movie, navigate through a list of chapters, see special features, and even see a page of ads for other stuff the movie studio wants to promote. (Let’s hope the format doesn’t allow for mandatory trailers and an FBI warning every time you want to play an iTunes Extras file!)
</p>
<p>
I was excited about iTunes LP, too, but after having used it on the Apple TV I'm less convinced it's a good idea. Unlike iTunes Extras, iTunes LP files just show up within an album’s track listings—you have to select the iTunes LP file and click on it to launch the menu-driven interface. That’s probably a fine interface choice, since it’s more likely that you’d just want to pick a track than thumb through a set of virtual liner notes.
</p>
<p>
But I was still disappointed once I entered the iTunes LP interface. When you choose Play Album, the interface drops away and you’re left with the standard Apple TV Now Playing screen. The same thing happens if you pick a track from an iTunes LP’s Song List menu, go to the page that features song lyrics and artwork, and click Play Song.
</p>
<p>
I own a handful of DVD Audio discs, and one of the fun things those discs tend to do is display the lyrics pages for the songs as they play, along with playback controls. But iTunes LP doesn’t work like that. Yes, if you want to read lyrics while a song is playing, you can click the menu button to re-enter the iTunes LP interface. But there’s no way to simply start playing an album and then sit back and watch as the album art advances as each track plays.
</p>
<p>
iTunes LP pages can also be quite long, scrolling things—at least that was the case with the iTunes LP I tried, Paramore’s “Brand New Eyes.” (Peppy punk-pop. I like it.) The scrolling interface on the Apple TV is smooth, but I completely missed the faint scroll bar in the corner that indicates that I could press the down button on my remote to scroll down and see more of the lyrics pages.
</p>
<p>
Then there’s the matter of Apple’s boner when it came to both these formats, which the company only released last month. People who have bought iTunes LPs and iTunes Extras in the past 50 days will discover that their files aren’t yet compatible with the Apple TV. Apple <a href="http://support.apple.com/kb/HT3938">will have to push out an update via iTunes</a> to the libraries of every single person who has purchased this content. Sure, in a couple of weeks this will be nothing more than a hazy memory, but it shows a remarkable lack of planning on Apple’s part.
</p>
<h2>Other new stuff</h2>
<p>
Great news, everyone: Apple has finally added streaming Internet content sources to the Apple TV! Hooray! Dance the happy dance!
</p>
<p>
No, wait a second. You’re dancing because you think Apple added support for Netflix or Hulu or Vimeo or MLB.tv or something, right? Well, stop dancing. Because Apple’s addition to Apple TV is a whole lot more modest than that: Internet Radio.
</p>
<p>
Yes, it’s hard to believe that the Apple TV hasn’t officially supported Internet Radio before now, but it hasn’t. (You could work around this issue by adding a radio-station stream to a playlist.) Now, at last, you can choose from a large directory of sources and add favorite stations. It’s great to see this feature, but honestly, it’s embarrassing that it’s taken this long.
</p>
<p>
The other major audio addition in Apple TV 3.0 is support for the Genius Mix feature that was rolled out with iTunes 9 back in September. This is the feature that looks at your music library and creates endless playlists of related songs and artists in various categories. Looking at my library, I ended up with a pop mix, an indie pop mix, the Coldplay/Radiohead/Oasis mix, an embarrassing pop mix, a punk/grunge mix, a power pop mix, a ’70s rock list, an ’80s rock list, and a collection of children’s music. Okay.
</p>
<p>
The Photos section of Apple TV has been upgraded as well. If you sync your photos to the Apple TV, you’ll find support for iPhoto events and the ability to browse photos by face, courtesy of iPhoto’s Faces feature.
</p>
<p>On the iTunes side, Apple TV syncing has been greatly improved. You can now select individual shows and individual episodes to sync, echoing the iPhone- and iPod-syncing improvements introduced with iTunes 9.</p>
<h2>So, now what?</h2>
<p>
As far as I can tell, the Apple TV 3.0 software update improves the Apple TV I bought in 2007, and I’m grateful for that. The new features are welcome, and I think that iTunes Extras has the potential to drain all remaining enthusiasm Apple TV owners might have had for buying DVDs.
</p>
<p>
And yet…
</p>
<p>
It’s impossible to talk about the Apple TV without asking <a href="http://www.bbc.co.uk/comedy/coupling/episodes/s2ep6.shtml">the big question</a>: Where is this relationship going?
</p>
<p>
With the exception of price cuts and storage improvements, the base Apple TV hardware hasn’t been improved since it was released. It’s running a <a href="http://en.wikipedia.org/wiki/Apple_TV">1GHz Pentium M processor</a> and has a measly 256MB of RAM. It can’t play video of any resolution higher than 720p at 24 frames per second, and I’ve actually seen it struggle and drop frames consistently even on those “supported” HD video files.
</p>
<p>
The $229 Apple TV is increasingly surrounded by competitors, from <a href="http://www.macworld.com/article/143505/2009/10/roku_players.html">Roku’s $100 Player</a> that streams Netflix and Amazon Video on Demand to media extenders for the Playstation 3 and XBox 360. Right now the biggest advantage of Apple’s box is simply that it’s the only one that can play videos purchased from iTunes. But it remains woefully ignorant of the rest of the Internet—the addition of Internet Radio at this late date proving the point.
</p>
<p>
Then there's the Mac Mini, which has turned into a powerful, competent device that works well as a home-media server. But the Mac Mini doesn't have the plug-it-and-forget-it ease of use of the Apple TV, and Front Row lacks some of the best features of Apple TV (namely its ability to seamlessly meld the contents of a remote iTunes computer and its own iTunes library). Front Row replacements such as <a href="http://www.macworld.com/article/136807/2008/11/boxee.html">Boxee</a> and <a href="http://www.macworld.com/article/143539/2009/10/plex083.html">Plex</a> are promising, but not exactly friendly to less geeky users. Not yet, at least.
</p>
<p>
Perhaps Apple is content with Apple TV never being anything more than a front-end for the iTunes store. Or perhaps Apple is well aware of its device’s limitations and is hard at work on a new version with upgraded hardware and improved support for the rest of the stuff that’s out there on the Net.
</p>
<p>
Steve Jobs said, “The reason I call [Apple TV] a hobby is, a lot of people have tried and failed to make it a business. And it’s a hard problem. So we’re trying. I think if we work on it and improve things over the next year, 18 months, we can crack that.”
</p>
<p>
That was 29 months ago. Apple still hasn’t cracked it. Apple TV 3.0 is a nice, mild update to an outdated piece of hardware that’s still not nearly as capable as it should be. The real question is, what’s next for Apple’s hobby? If Steve Jobs knows the answer, he’s not talking.
</p>





				
				]]>
        	</description>
    	</item>		<item>
        	<title>Sprint: No Internet Tethering for Smartphones</title>
        	<link>http://androinica.com/2009/10/30/sprint-makes-it-clear-internet-tethering-will-never-be-allowed-on-everything-plans/</link>
        	<comments></comments>
	        <description>
    	        <![CDATA[
				
<center>


</center>
<!-- DISPLAYS THE IMAGE URL SPECIFIED IN THE CUSTOM FIELD -->
<a title="Sprint makes it clear: Internet tethering will never be allowed on Everything plans" href="http://androinica.com/wp-content/uploads/2008/10/sprint_logo_250x250.jpg" rel="bookmark">
<img src="http://androinica.com/wp-content/themes/freshnews/thumb.php?src=/wp-content/uploads/2008/10/sprint_logo_250x250.jpg&amp;h=250&amp;w=250&amp;zc=1&amp;q=80" alt="Sprint makes it clear: Internet tethering will never be allowed on Everything plans" />
</a>
<p>Sure, there are apps available for Android that will allow you to share your phones Internet connection with other devices such as your netbook or notebook, one that comes to mind is PdaNet. </p>
<p>That said, those of you, like myself who are using a Hero on the Sprint network will never be officially allowed to tether &#8212; despite having an Everything plan. This news comes courtesy of Sprint executive David Owens who was quoted as stating;</p>
<blockquote><p>&#8220;No tethering for phones that require Everything plans (such as all smartphones) from here on out.&#8221;</p></blockquote>
<p>This quote came by way of a virtual chat that was recently offered on the Sprint website. Nothing really to say here, other than it looks like Sprint would rather you pick up a second device and second plan in the form of a 3G modem (such as the MiFi).</p>
<p>Of course, there was also a mention that Sprint was &#8220;considering an Android phone with a built-in MiFi-type router.&#8221;</p>
<p>[via <a href="http://www.gearlog.com/2009/10/sprint_android_blackberry_wind.php">GearLog</a>]</p>

				
				]]>
        	</description>
    	</item>		<item>
        	<title>Sprint Loses $478M, 135,000 Subscribers in Quarter</title>
        	<link>http://newsreleases.sprint.com/phoenix.zhtml?c=127149&amp;p=irol-newsArticle_newsroom&amp;ID=1348150</link>
        	<comments></comments>
	        <description>
    	        <![CDATA[
				<span><a href="http://phx.corporate-ir.net/External.File?item=UGFyZW50SUQ9MTg4OTR8Q2hpbGRJRD0tMXxUeXBlPTM=&amp;t=1">Third Quarter 2009 Results (pdf)</a>
<br />
<ul>
<li>
<i>Free Cash Flow* of approximately <money>$660 million</money> after a <money>$200 million</money>
        pension contribution</i>
</li>
<li>
<i>Achieved best net retail subscriber results in more than two years,
        driven by sequential improvement in both post-paid and prepaid gross
        subscriber additions</i>
</li>
<li>
<i>Launched industry-leading Any Mobile, Anytime</i><sup><i>SM</i></sup><i>
        calling feature to eliminate mobile calling circles</i>
</li>
<li>
<i>Seven consecutive quarters of improvement in Customer Care
        Satisfaction and First Call Resolution</i>
</li>
<li>
<i>Extended 4G leadership into seventeen markets</i>
</li>
</ul>
</span><p>
      The company’s third quarter earnings
      conference call will be held at <chron>8 a.m. EDT</chron> today. Participants
      may dial 800-938-1120 in the U.S. or <location value="LC/ca" idsrc="xmltag.org">Canada</location> (706-634-7849
      internationally) and provide the following ID: 29897906, or may listen
      via the Internet at <a href="http://cts.businesswire.com/ct/CT?id=smartlink&amp;url=http%3A%2F%2Fwww.sprint.com%2Finvestor&amp;esheet=6086419&amp;lan=en_US&amp;anchor=www.sprint.com%2Finvestor&amp;index=1&amp;md5=67b505f55f6b4fdead63bd6cc82fa773">www.sprint.com/investor</a>.
    </p>
<p> <location value="LU/us.ks.oveark" idsrc="xmltag.org">OVERLAND PARK, Kan.</location>--(BUSINESS WIRE)--Oct. 29, 2009--
      <b><org value="NYSE:S" idsrc="xmltag.org">Sprint Nextel Corp.</org> (NYSE: S) </b>today reported third quarter 2009
      financial results that included consolidated net operating revenues of
      <money>$8.0 billion</money>, a net loss of <money>$478 million</money> and a diluted loss per share of
      <money>17 cents</money>. The company generated Free Cash Flow* of <money>$664 million</money> in the
      quarter and <money>$2.1 billion</money> year-to-date in 2009. As of <chron>September 30, 2009</chron>,
      the company had <money>$5.9 billion</money> in cash, cash equivalents and short-term
      investments and <money>$1.6 billion</money> in borrowing capacity available under its
      revolving bank credit facility, for total liquidity of <money>$7.5 billion</money>.
    </p>
<p>
<org value="NYSE:S" idsrc="xmltag.org">Sprint</org> lost a total of 135,000 net retail subscribers in the quarter.
      The company’s year-over-year post-paid gross addition improvement was
      the best in <org value="NYSE:S" idsrc="xmltag.org">Sprint Nextel</org> history, and the sequential improvement was
      the best in more than five years. Net post-paid subscriber losses have
      improved by approximately 20 percent in each of the second and third
      quarters of 2009.
    </p>
<p>
      “Sprint achieved its best net retail subscriber results in more than two
      years and improvement in both post-paid and prepaid gross subscriber
      additions in the third quarter,” said <person>Dan Hesse</person>, <org value="NYSE:S" idsrc="xmltag.org">Sprint Nextel</org> CEO.
      “Sprint is beginning to attract more customers with the industry’s best
      device line-up and the clarity and simplicity of our offers, seven
      sequential quarters of improvement in customer care satisfaction, a
      network declared to be most reliable by <org>PC World magazine</org>, and
      recognition from <org>Newsweek magazine</org> which ranked <org value="NYSE:S" idsrc="xmltag.org">Sprint</org> 15<sup>th</sup>
      of 500 companies on its 2009 Green Ratings list -- the only telecom
      company in the Top 100.
    </p>
<p>
      “The company again generated strong cash flow, and while Operating
      Income Before Depreciation and Amortization* (OIBDA) was impacted by
      costs associated with growth in customer additions, previous quarters’
      subscriber losses and certain seasonal costs in the quarter, <org value="NYSE:S" idsrc="xmltag.org">Sprint</org>
      continues to manage costs rigorously. We expect to see sequential
      quarterly improvement in both post-paid and total net subscriber losses
      in the fourth quarter of 2009,” Hesse said.
    </p>
<p>
      In 2009 <org value="NYSE:S" idsrc="xmltag.org">Sprint</org> has launched or announced 16 new touch, QWERTY and smart
      devices with a full selection of operating systems. They include Palm<sup>®</sup>
      Pre™ and Palm<sup>®</sup> Pixi™, Blackberry<sup>®</sup> Tour™; HTC Hero™
      and Samsung Moment™<b> </b>-- which are both based on Google’s Android<i>™
      </i>platform; HTC Touch Pro 2, Samsung Instinct<sup>®</sup> HD, and
      Samsung Intrepid<sup>TM</sup>, which offers the new Windows Mobile<sup>®</sup>
      6.5 Professional operating system. In addition, <org value="NYSE:S" idsrc="xmltag.org">Sprint</org> launched the
      nation’s first full-featured, eco-friendly phone, Samsung Reclaim™ which
      earlier this month was given the “Hottest in Show” award at the <org>CTIA
      Convention</org> in <location value="LU/us.ca.sandgo" idsrc="xmltag.org">San Diego</location>.
    </p>
<p>
      Additionally, <org value="NYSE:S" idsrc="xmltag.org">Sprint</org> 4G is now available in 17 markets, including
      <location value="LU/us.pa.phldph" idsrc="xmltag.org">Philadelphia, PA</location>, which launched earlier this week. <org value="NYSE:S" idsrc="xmltag.org">Sprint</org> 4G coverage
      should serve a population of more than 30 million people by the end of
      2009, and cover a population of up to 120 million people in about 80
      markets by the end of 2010. <org value="NYSE:S" idsrc="xmltag.org">Sprint</org> 4G service is planned for deployment
      in these additional markets in 2009: <location value="LU/us.tx.austin" idsrc="xmltag.org">Austin, TX</location>; <location value="LU/us.nc.charlt" idsrc="xmltag.org">Charlotte, NC</location>; <location value="LU/us.il.chicgo" idsrc="xmltag.org">Chicago,
      IL</location>; <location value="LU/us.tx.ftwort;LU/us.tx.dallas" idsrc="xmltag.org">Dallas/Ft. Worth, TX</location>; <location value="LU/us.nc.grnsbo" idsrc="xmltag.org">Greensboro, NC</location>; <location value="LU/us.hi.honolu" idsrc="xmltag.org">Honolulu, HI</location>; <location value="LU/us.hi.maui" idsrc="xmltag.org">Maui, HI</location>;
      <location value="LU/us.nc.raleig" idsrc="xmltag.org">Raleigh, NC</location>; <location value="LU/us.tx.sanant" idsrc="xmltag.org">San Antonio, TX</location>; and <location value="LU/us.wa.seatle" idsrc="xmltag.org">Seattle, WA.</location>
</p>
<p>
<b>CONSOLIDATED RESULTS</b>
</p>
<table cellspacing="0" id="t6086419_3">
<tr>
<td colspan="17" id="t6086419_3_0_15522">
<b>TABLE NO. 1 Selected Unaudited Financial Data (dollars in
          millions, except per share data)</b>
</td>
</tr>
<tr>
<td>
</td>
<td>
           
        </td>
<td colspan="5" id="t6086419_3_1_7007">
<b>Quarter Ended</b>
</td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td colspan="5" id="t6086419_3_1_13031">
<b>Year To Date</b>
</td>
<td>
           
        </td>
<td>
</td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="2" id="t6086419_3_2_4849">
<b>September 30,</b>
</td>
<td>
           
        </td>
<td colspan="2" id="t6086419_3_2_7007">
<b>September 30,</b>
</td>
<td>
</td>
<td id="t6086419_3_2_8576">
<p>
<b>%</b>
</p>
</td>
<td>
</td>
<td colspan="2" id="t6086419_3_2_10938">
<b>September 30,</b>
</td>
<td>
           
        </td>
<td colspan="2" id="t6086419_3_2_13031">
<b>September 30,</b>
</td>
<td>
</td>
<td id="t6086419_3_2_15522">
<b>%</b>
</td>
</tr>
<tr>
<td id="t6086419_3_3_3080">
<b>Financial Data</b>
</td>
<td>
</td>
<td colspan="2" id="t6086419_3_3_4849">
<b>2009</b>
</td>
<td>
</td>
<td colspan="2" id="t6086419_3_3_7007">
<b>2008</b>
</td>
<td>
</td>
<td id="t6086419_3_3_8576">
<p>
<b>∆</b>
</p>
</td>
<td>
</td>
<td colspan="2" id="t6086419_3_3_10938">
<b>2009</b>
</td>
<td>
</td>
<td colspan="2" id="t6086419_3_3_13031">
<b>2008</b>
</td>
<td>
</td>
<td id="t6086419_3_3_15522">
<p>
<b>∆</b>
</p>
</td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="2">
</td>
<td>
</td>
<td colspan="2">
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td colspan="2">
</td>
<td>
</td>
<td colspan="2">
</td>
<td>
</td>
<td>
           
        </td>
</tr>
<tr>
<td id="t6086419_3_5_3080">
          Net operating revenues
        </td>
<td>
</td>
<td id="t6086419_3_5_3964">
          $
        </td>
<td id="t6086419_3_5_4849">
          8,042
        </td>
<td>
</td>
<td id="t6086419_3_5_5928">
          $
        </td>
<td id="t6086419_3_5_7007">
          8,816
        </td>
<td>
</td>
<td id="t6086419_3_5_8576">
          (9) %
        </td>
<td>
</td>
<td id="t6086419_3_5_9757">
          $
        </td>
<td id="t6086419_3_5_10938">
          24,392
        </td>
<td>
</td>
<td id="t6086419_3_5_11984">
          $
        </td>
<td id="t6086419_3_5_13031">
          27,205
        </td>
<td>
</td>
<td id="t6086419_3_5_15522">
          (10) %
        </td>
</tr>
<tr>
<td id="t6086419_3_6_3080">
          Adjusted OIBDA*,<sup> (1)</sup>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_3_6_4849">
          1,506
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_3_6_7007">
          1,824
        </td>
<td>
</td>
<td id="t6086419_3_6_8576">
          (17) %
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_3_6_10938">
          4,998
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_3_6_13031">
          5,929
        </td>
<td>
</td>
<td id="t6086419_3_6_15522">
          (16) %
        </td>
</tr>
<tr>
<td id="t6086419_3_7_3080">
          Adjusted OIBDA margin*, <sup>(1)</sup>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_3_7_4849">
          20.0%
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_3_7_7007">
          21.9%
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_3_7_10938">
          21.8%
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_3_7_13031">
          23.1%
        </td>
<td>
</td>
<td>
</td>
</tr>
<tr>
<td id="t6086419_3_8_3080">
          Net loss
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_3_8_4849">
          (478)
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_3_8_7007">
          (326)
        </td>
<td>
</td>
<td id="t6086419_3_8_8576">
          (47) %
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_3_8_10938">
          (1,456)
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_3_8_13031">
          (1,175)
        </td>
<td>
</td>
<td id="t6086419_3_8_15522">
          (24) %
        </td>
</tr>
<tr>
<td id="t6086419_3_9_3080">
          Diluted loss per common share
        </td>
<td>
</td>
<td id="t6086419_3_9_3964">
          $
        </td>
<td id="t6086419_3_9_4849">
          (0.17)
        </td>
<td>
</td>
<td id="t6086419_3_9_5928">
          $
        </td>
<td id="t6086419_3_9_7007">
          (0.11)
        </td>
<td>
</td>
<td id="t6086419_3_9_8576">
          (55) %
        </td>
<td>
</td>
<td id="t6086419_3_9_9757">
          $
        </td>
<td id="t6086419_3_9_10938">
          (0.51)
        </td>
<td>
</td>
<td id="t6086419_3_9_11984">
          $
        </td>
<td id="t6086419_3_9_13031">
          (0.41)
        </td>
<td>
</td>
<td id="t6086419_3_9_15522">
          (24) %
        </td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="2">
</td>
<td>
</td>
<td colspan="2">
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td colspan="2">
</td>
<td>
</td>
<td colspan="2">
</td>
<td>
</td>
<td>
           
        </td>
</tr>
<tr>
<td id="t6086419_3_11_3080">
<p>
<b>Capital Expenditures </b><sup><b>(1), (2)</b></sup>
</p>
</td>
<td>
</td>
<td id="t6086419_3_11_3964">
          $
        </td>
<td id="t6086419_3_11_4849">
          431
        </td>
<td>
</td>
<td id="t6086419_3_11_5928">
          $
        </td>
<td id="t6086419_3_11_7007">
          485
        </td>
<td>
</td>
<td id="t6086419_3_11_8576">
          (11) %
        </td>
<td>
</td>
<td id="t6086419_3_11_9757">
          $
        </td>
<td id="t6086419_3_11_10938">
          1,043
        </td>
<td>
</td>
<td id="t6086419_3_11_11984">
          $
        </td>
<td id="t6086419_3_11_13031">
          2,491
        </td>
<td>
</td>
<td id="t6086419_3_11_15522">
          (58) %
        </td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="2">
</td>
<td>
</td>
<td colspan="2">
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td colspan="2">
</td>
<td>
</td>
<td colspan="2">
</td>
<td>
</td>
<td>
           
        </td>
</tr>
<tr>
<td id="t6086419_3_13_3080">
<b>Free cash flow*</b>
</td>
<td>
</td>
<td id="t6086419_3_13_3964">
          $
        </td>
<td id="t6086419_3_13_4849">
          664
        </td>
<td>
</td>
<td id="t6086419_3_13_5928">
          $
        </td>
<td id="t6086419_3_13_7007">
          1,059
        </td>
<td>
</td>
<td id="t6086419_3_13_8576">
          (37) %
        </td>
<td>
</td>
<td id="t6086419_3_13_9757">
          $
        </td>
<td id="t6086419_3_13_10938">
          2,136
        </td>
<td>
</td>
<td id="t6086419_3_13_11984">
          $
        </td>
<td id="t6086419_3_13_13031">
          1,240
        </td>
<td>
</td>
<td id="t6086419_3_13_15522">
          72 %
        </td>
</tr>
</table>
<ul>
<li>
<b>Consolidated net operating revenues</b> of <money>$8.0 billion</money> for the
        quarter were 9% lower than in the third quarter of 2008 and 1% lower
        than the second quarter of 2009. The year-over-year decline is
        primarily due to lower contribution from post-paid wireless service
        revenues as well as wireline voice and legacy data revenues, partially
        offset by an increase in prepaid wireless service and equipment
        revenues.
      </li>
<li>
<b>Adjusted OIBDA*</b> was <money>$1.5 billion</money> for the quarter, compared to
        <money>$1.8 billion</money> for both the third quarter of 2008 and the second quarter
        of 2009. The year-over-year decline in Adjusted OIBDA* was due to
        revenue declines as a result of fewer post-paid subscribers, partially
        offset by lower SG&A; expenses. Sequentially, Adjusted OIBDA* decreased
        as the decline in operating revenue, seasonally higher cost of
        service, and increased subsidy expenses offset continued reductions in
        SG&A; expenses.
      </li>
<li>
<b>Capital expenditures</b> were <money>$431 million</money> in the quarter, compared
        to <money>$485 million</money> in the third quarter of 2008 and <money>$321 million</money> in the
        second quarter of 2009.
      </li>
<li>
<b>Free Cash Flow* </b>was <money>$664 million</money> for the quarter, compared to
        <money>$1.1 billion</money> for the third quarter of 2008 and <money>$676 million</money> for the
        second quarter of 2009. In the quarter, the company made a <money>$200
        million</money> cash contribution to its defined benefit pension plan. Without
        this payment, Free Cash Flow would have been <money>$864 million</money> in the
        quarter.
      </li>
<li>
        In August, the company issued <money>$1.3 billion</money> in principal of senior
        notes due in 2017 for general corporate purposes. In September, all
        outstanding 5.25% convertible senior notes due in 2010 were redeemed
        at 100% of the principal amount, totaling <money>$607 million</money> plus accrued
        and unpaid interest.
      </li>
</ul>
<p>
<b>WIRELESS RESULTS</b>
</p>
<table cellspacing="0" id="t6086419_4">
<tr>
<td colspan="17" id="t6086419_4_0_14840">
<b>TABLE NO. 2 Selected Unaudited Financial Data (dollars in
          millions)</b>
</td>
</tr>
<tr>
<td>
</td>
<td>
           
        </td>
<td colspan="5" id="t6086419_4_1_7007">
<b>Quarter Ended</b>
</td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td colspan="5" id="t6086419_4_1_13031">
<b>Year To Date</b>
</td>
<td>
           
        </td>
<td>
</td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="2" id="t6086419_4_2_4849">
<b>September 30,</b>
</td>
<td>
           
        </td>
<td colspan="2" id="t6086419_4_2_7007">
<b>September 30,</b>
</td>
<td>
</td>
<td id="t6086419_4_2_8576">
<b>%</b>
</td>
<td>
</td>
<td colspan="2" id="t6086419_4_2_10938">
<b>September 30,</b>
</td>
<td>
           
        </td>
<td colspan="2" id="t6086419_4_2_13031">
<b>September 30,</b>
</td>
<td>
</td>
<td id="t6086419_4_2_14840">
<b>%</b>
</td>
</tr>
<tr>
<td id="t6086419_4_3_3080">
<b>Financial Data</b>
</td>
<td>
</td>
<td colspan="2" id="t6086419_4_3_4849">
<b>2009</b>
</td>
<td>
</td>
<td colspan="2" id="t6086419_4_3_7007">
<b>2008</b>
</td>
<td>
</td>
<td id="t6086419_4_3_8576">
<p>
<b>∆</b>
</p>
</td>
<td>
</td>
<td colspan="2" id="t6086419_4_3_10938">
<b>2009</b>
</td>
<td>
</td>
<td colspan="2" id="t6086419_4_3_13031">
<b>2008</b>
</td>
<td>
</td>
<td id="t6086419_4_3_14840">
<p>
<b>∆</b>
</p>
</td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="2">
</td>
<td>
</td>
<td colspan="2">
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td colspan="2">
</td>
<td>
</td>
<td colspan="2">
</td>
<td>
</td>
<td>
           
        </td>
</tr>
<tr>
<td id="t6086419_4_5_3080">
          Net operating revenues
        </td>
<td>
</td>
<td id="t6086419_4_5_3964">
          $
        </td>
<td id="t6086419_4_5_4849">
          6,931
        </td>
<td>
</td>
<td id="t6086419_4_5_5928">
          $
        </td>
<td id="t6086419_4_5_7007">
          7,536
        </td>
<td>
</td>
<td id="t6086419_4_5_8576">
          (8) %
        </td>
<td>
</td>
<td id="t6086419_4_5_9757">
          $
        </td>
<td id="t6086419_4_5_10938">
          20,970
        </td>
<td>
</td>
<td id="t6086419_4_5_11984">
          $
        </td>
<td id="t6086419_4_5_13031">
          23,235
        </td>
<td>
</td>
<td id="t6086419_4_5_14840">
          (10) %
        </td>
</tr>
<tr>
<td id="t6086419_4_6_3080">
          Adjusted OIBDA*
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_4_6_4849">
          1,184
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_4_6_7007">
          1,646
        </td>
<td>
</td>
<td id="t6086419_4_6_8576">
          (28) %
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_4_6_10938">
          4,046
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_4_6_13031">
          5,315
        </td>
<td>
</td>
<td id="t6086419_4_6_14840">
          (24) %
        </td>
</tr>
<tr>
<td id="t6086419_4_7_3080">
          Adjusted OIBDA margin*
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_4_7_4849">
          18.5%
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_4_7_7007">
          23.4%
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_4_7_10938">
          20.8%
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_4_7_13031">
          24.5%
        </td>
<td>
</td>
<td>
</td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="2">
</td>
<td>
</td>
<td colspan="2">
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td colspan="2">
</td>
<td>
</td>
<td colspan="2">
</td>
<td>
</td>
<td>
           
        </td>
</tr>
<tr>
<td id="t6086419_4_9_3080">
<b>Capital Expenditures </b><sup><b>(2)</b></sup>
</td>
<td>
</td>
<td id="t6086419_4_9_3964">
          $
        </td>
<td id="t6086419_4_9_4849">
          310
        </td>
<td>
</td>
<td id="t6086419_4_9_5928">
          $
        </td>
<td id="t6086419_4_9_7007">
          217
        </td>
<td>
</td>
<td id="t6086419_4_9_8576">
          43 %
        </td>
<td>
</td>
<td id="t6086419_4_9_9757">
          $
        </td>
<td id="t6086419_4_9_10938">
          734
        </td>
<td>
</td>
<td id="t6086419_4_9_11984">
          $
        </td>
<td id="t6086419_4_9_13031">
          1,528
        </td>
<td>
</td>
<td id="t6086419_4_9_14840">
          (52) %
        </td>
</tr>
</table>
<p>
<b>Wireless Customers</b>
</p>
<ul>
<li>
        The company served 48.3 million customers at the end of the third
        quarter of 2009, compared to 48.8 million at the end of the second
        quarter of 2009. This includes 33.6 million post-paid subscribers
        (25.0 million on CDMA, 7.8 million on iDEN, and 870,000 Power Source
        users who utilize both networks), 5.7 million prepaid subscribers (5.2
        million on iDEN and 500,000 on CDMA) and 8.9 million wholesale and
        affiliate subscribers, all of whom utilize our CDMA network.
      </li>
<li>
        For the quarter, net retail subscribers declined by a total of 135,000
        and net wireless customers declined by approximately 545,000,
        including net losses of 801,000 post-paid customers – comprising
        271,000 CDMA and 530,000 iDEN customers (including a net 64,000
        customers who transferred from the iDEN network to the CDMA network).
        The company gained a net 801,000 prepaid iDEN customers, offset by net
        losses of 135,000 prepaid CDMA customers. The company also experienced
        a net loss of 410,000 wholesale and affiliate subscribers as a result
        of subscriber losses from our mobile virtual network operators and
        deactivation of open machine-to-machine devices that had been
        activated in the second quarter but may not be utilized.
      </li>
<li>
        The credit quality of our post-paid customers reached the company’s
        highest historical level of almost 85% prime and improved
        year-over-year from 83% at the end of the third quarter of 2008.
      </li>
<li>
        More than 9% of post-paid customers upgraded their handsets during the
        third quarter, a slight increase sequentially, resulting in increased
        contract renewals.
      </li>
<li>
        During the third quarter, the company added to its device line-up with
        the Blackberry<sup>®</sup> Tour™, Samsung Reclaim™, HTC Touch Pro 2
        and Samsung Instinct<sup>®</sup> HD. In addition, <org value="NYSE:S" idsrc="xmltag.org">Sprint</org> launched HTC
        Hero™, Samsung Intrepid and Motorola Debut™ in October, with <org>Samsung</org>
        Moment™ and Palm<sup>®</sup> Pixi™ also planned for availability
        before the holidays.
      </li>
</ul>
<p>
<b>Wireless Churn</b>
</p>
<ul>
<li>
        Post-paid churn in the quarter was 2.17% compared to 2.15% in the
        year-ago period and 2.05% in the second quarter of 2009. The
        sequential increase is due to seasonality and heightened competition.
      </li>
<li>
        Prepaid churn in the third quarter of 2009 was 6.65%, compared to
        8.16% in the year-ago period and 6.38% in the second quarter of 2009.
        The year-over-year improvement in churn is due to increased subscriber
        additions related to our national Boost Monthly Unlimited offering.
        The sequential increase in prepaid churn is related to seasonality and
        the significant growth of the Boost Monthly Unlimited customer base
        during the second quarter.
      </li>
</ul>
<p>
<b>Wireless Service Revenues</b>
</p>
<ul>
<li>
        Wireless service revenues for the quarter of <money>$6.3 billion</money> declined 8%
        year-over-year and 2% sequentially. The year-over-year and sequential
        decline is due to fewer post-paid subscribers, partially offset by
        more prepaid subscribers.
      </li>
<li>
        Wireless post-paid ARPU has been stable for the past seven quarters at
        approximately <money>$56</money>, primarily due to continued growth in fixed-rate
        bundled plans such as Simply Everything, offset by declines in usage
        and roaming. As a result of the company’s focus on improving the
        customer experience and seven consecutive quarters of improvement in
        customer care satisfaction, post-paid ARPU benefited from reduced
        credits to customer bills year-over-year.
      </li>
<li>
        Data revenues contributed more than <money>$16.25</money> to overall post-paid ARPU
        in the third quarter, led by growth in CDMA data ARPU. CDMA data ARPU
        increased to greater than <money>$19</money>, an industry-best that now represents
        34% of total CDMA ARPU.
      </li>
<li>
        Prepaid ARPU in the quarter was approximately <money>$35</money> compared to <money>$31</money> in
        the year-ago period and <money>$34</money> in the second quarter of 2009. The
        year-over-year and sequential increases reflect a growing contribution
        from prepaid subscribers on unlimited plans.
      </li>
<li>
        Wholesale, affiliate and other revenues were down 41% compared to the
        year-ago period and flat sequentially. The year-over-year decline is
        primarily due to subscriber losses from one of our large carrier
        customers.
      </li>
</ul>
<p>
<b>Wireless Operating Expenses and Adjusted OIBDA*</b>
</p>
<ul>
<li>
        Total operating expenses were <money>$7.4 billion</money> in the third quarter,
        compared to <money>$7.8 billion</money> in the year-ago period and <money>$7.3 billion</money> in
        the second quarter of 2009.
      </li>
<li>
        Adjusted OIBDA* of <money>$1.2 billion</money> in the third quarter of 2009 compares
        to <money>$1.6 billion</money> in the third quarter of 2008 and <money>$1.4 billion</money> in the
        second quarter of 2009. The year-over-year decline in Adjusted OIBDA*
        was primarily due to fewer post-paid subscribers, partially offset by
        more prepaid subscribers and an improvement of <money>$340 million</money> in SG&A;
        expenses. Sequentially, Adjusted OIBDA* declined almost <money>$230 million</money>
        as the decline in service revenue, seasonally higher cost of service,
        and increased subsidy expenses associated with higher customer
        additions, offset continued reductions in SG&A; expenses.
      </li>
<li>
        Equipment subsidy was approximately <money>$950 million</money> (equipment revenue of
        approximately <money>$530 million</money>, less cost of products of <money>$1.48 billion</money>) as
        compared to about <money>$700 million</money> in the year-ago period and almost <money>$850
        million</money> in the second quarter of 2009. The year-over-year increase in
        subsidy is a combination of a greater mix of post-paid handsets sold
        with higher-functionality, an increase in the number of prepaid
        handsets shipped as a result of the national Boost Monthly Unlimited
        offering and a decrease in average post-paid revenue per handset sold.
        The sequential increase in subsidy is primarily due to the increase in
        the number of handsets sold and the increase in average cost per
        handset sold as the company continues to sell a greater number of
        higher-functionality handsets.
      </li>
<li>
        SG&A; expenses declined 14% year-over-year from the third quarter of
        2008, and declined 2% sequentially from the second quarter of 2009.
        The year-over-year improvement is due to lower customer care, bad
        debt, and labor expenses. On a sequential basis, the decline reflects
        lower labor and customer care expenses partially offset by an increase
        in bad debt expenses.
      </li>
</ul>
<p>
<b>Wireless Capital Spending</b>
</p>
<p>
      Wireless capital expenditures were <money>$310 million</money> in the third quarter of
      2009, compared to <money>$217 million</money> spent in the third quarter of 2008 and
      <money>$227 million</money> in the second quarter of 2009. The company continues to
      invest capital in the quality and performance of its networks. At the
      end of the third quarter of 2009, Sprint’s networks continue to operate
      at best-ever levels and, according to third-party data, <org value="NYSE:S" idsrc="xmltag.org">Sprint</org> has the
      most dependable<sup>+</sup> 3G network in the country.
    </p>
<p>
<b>WIRELINE RESULTS</b>
</p>
<table cellspacing="0" id="t6086419_5">
<tr>
<td colspan="17" id="t6086419_5_0_11087">
<b>TABLE NO. 3 Selected Unaudited Financial Data (dollars in
          millions)</b>
</td>
</tr>
<tr>
<td>
</td>
<td>
           
        </td>
<td colspan="5" id="t6086419_5_1_6217">
<b>Quarter Ended</b>
</td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td colspan="5" id="t6086419_5_1_10187">
<b>Year To Date</b>
</td>
<td>
           
        </td>
<td>
</td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="2" id="t6086419_5_2_4662">
<b>September 30,</b>
</td>
<td>
           
        </td>
<td colspan="2" id="t6086419_5_2_6217">
<b>September 30,</b>
</td>
<td>
</td>
<td id="t6086419_5_2_7036">
<b>%</b>
</td>
<td>
</td>
<td colspan="2" id="t6086419_5_2_8632">
<b>September 30,</b>
</td>
<td>
           
        </td>
<td colspan="2" id="t6086419_5_2_10187">
<b>September 30,</b>
</td>
<td>
</td>
<td id="t6086419_5_2_11087">
<b>%</b>
</td>
</tr>
<tr>
<td id="t6086419_5_3_3080">
<b>Financial Data</b>
</td>
<td>
</td>
<td colspan="2" id="t6086419_5_3_4662">
<b>2009</b>
</td>
<td>
</td>
<td colspan="2" id="t6086419_5_3_6217">
<b>2008</b>
</td>
<td>
</td>
<td id="t6086419_5_3_7036">
<p>
<b>∆</b>
</p>
</td>
<td>
</td>
<td colspan="2" id="t6086419_5_3_8632">
<b>2009</b>
</td>
<td>
</td>
<td colspan="2" id="t6086419_5_3_10187">
<b>2008</b>
</td>
<td>
</td>
<td id="t6086419_5_3_11087">
<p>
<b>∆</b>
</p>
</td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="2">
</td>
<td>
</td>
<td colspan="2">
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td colspan="2">
</td>
<td>
</td>
<td colspan="2">
</td>
<td>
</td>
<td>
           
        </td>
</tr>
<tr>
<td id="t6086419_5_5_3080">
          Net operating revenues
        </td>
<td>
</td>
<td id="t6086419_5_5_3871">
          $
        </td>
<td id="t6086419_5_5_4662">
          1,411
        </td>
<td>
</td>
<td id="t6086419_5_5_5439">
          $
        </td>
<td id="t6086419_5_5_6217">
          1,576
        </td>
<td>
</td>
<td id="t6086419_5_5_7036">
          (10) %
        </td>
<td>
</td>
<td id="t6086419_5_5_7834">
          $
        </td>
<td id="t6086419_5_5_8632">
          4,304
        </td>
<td>
</td>
<td id="t6086419_5_5_9409">
          $
        </td>
<td id="t6086419_5_5_10187">
          4,811
        </td>
<td>
</td>
<td id="t6086419_5_5_11087">
          (11) %
        </td>
</tr>
<tr>
<td id="t6086419_5_6_3080">
          Adjusted OIBDA*
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_5_6_4662">
          324
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_5_6_6217">
          263
        </td>
<td>
</td>
<td id="t6086419_5_6_7036">
          23 %
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_5_6_8632">
          962
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_5_6_10187">
          849
        </td>
<td>
</td>
<td id="t6086419_5_6_11087">
          13 %
        </td>
</tr>
<tr>
<td id="t6086419_5_7_3080">
          Adjusted OIBDA margin*
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_5_7_4662">
          23.0%
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_5_7_6217">
          16.7%
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_5_7_8632">
          22.4%
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_5_7_10187">
          17.6%
        </td>
<td>
</td>
<td>
</td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="2">
</td>
<td>
</td>
<td colspan="2">
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td colspan="2">
</td>
<td>
</td>
<td colspan="2">
</td>
<td>
</td>
<td>
           
        </td>
</tr>
<tr>
<td id="t6086419_5_9_3080">
<b>Capital Expenditures </b><sup><b>(2)</b></sup>
</td>
<td>
</td>
<td id="t6086419_5_9_3871">
          $
        </td>
<td id="t6086419_5_9_4662">
          72
        </td>
<td>
</td>
<td id="t6086419_5_9_5439">
          $
        </td>
<td id="t6086419_5_9_6217">
          81
        </td>
<td>
</td>
<td id="t6086419_5_9_7036">
          (11) %
        </td>
<td>
</td>
<td id="t6086419_5_9_7834">
          $
        </td>
<td id="t6086419_5_9_8632">
          196
        </td>
<td>
</td>
<td id="t6086419_5_9_9409">
          $
        </td>
<td id="t6086419_5_9_10187">
          342
        </td>
<td>
</td>
<td id="t6086419_5_9_11087">
          (43) %
        </td>
</tr>
</table>
<ul>
<li>
        Wireline revenues of <money>$1.4 billion</money> for the quarter declined 10%
        year-over-year as voice and data declines more than offset Internet
        revenue growth, and were 1% lower sequentially.
      </li>
<li>
        Internet revenues for the third quarter of 2009 increased 5% from the
        year-ago period and were flat sequentially. The year-over-year
        increase reflects strong enterprise demand for Global MPLS services
        and the increased base of cable subscribers who utilize our VoIP
        services. In the quarter, <org value="NYSE:S" idsrc="xmltag.org">Sprint</org> received a 2009 Business Connectivity
        Carrier Excellence Award for Customer Service (ILEC/IXC) (tied with
        another carrier in this category) from ATLANTIC-ACM, the third award
        this year from the research company. The award marks Sprint’s
        leadership in providing quality customer service for business
        customers using IP-based and converged solutions.
      </li>
<li>
        Internet revenues as a percent of wireline revenues have increased to
        41% in the third quarter of 2009 from 35% in the third quarter of
        2008. At the end of the third quarter of 2009, the company supported
        approximately 4.9 million users of cable partner VoIP services. These
        services are currently available to almost 31 million households
        served by cable companies.
      </li>
<li>
        Voice revenues for the quarter declined 14% year-over-year and were
        flat sequentially.
      </li>
<li>
        Data revenues are impacted in part by customer transitions to IP
        services. These legacy services declined 35% compared to the third
        quarter of 2008 and 12% sequentially.
      </li>
<li>
        Adjusted OIBDA* was <money>$324 million</money> compared to <money>$263 million</money> in the third
        quarter of 2008 and <money>$352 million</money> reported for the second quarter of
        2009. Total operating expenses were <money>$1.2 billion</money> in the third quarter
        of 2009. Year-over-year, total operating expenses improved 16% due to
        the declines in costs of service and improvement in SG&A; expenses, and
        were flat sequentially as higher cost of service was offset by
        continued improvement in labor expenses.
      </li>
<li>
        Wireline capital expenditures were <money>$72 million</money> in the third quarter of
        2009, compared to <money>$81 million</money> in the third quarter of 2008 and <money>$47
        million</money> in the second quarter of 2009. The company made significant
        capital investments in prior years to build out its IP network, and
        less capital was required year-over-year as the pace of our IP growth
        rate has slowed.
      </li>
</ul>
<p>
<b>Forecast</b>
</p>
<p>
<org value="NYSE:S" idsrc="xmltag.org">Sprint Nextel</org> continues to expect that both post-paid and total
      subscriber full-year losses should improve in 2009 as compared to 2008.
      The company also expects both post-paid and total subscriber net losses
      to improve sequentially from 3Q to 4Q of 2009. In addition, <org value="NYSE:S" idsrc="xmltag.org">Sprint
      Nextel</org> expects that full-year capital expenditures in 2009 will be less
      than <money>$1.7 billion</money>. The company expects to continue to generate positive
      Free Cash Flow* during the fourth quarter of 2009.
    </p>
<p>
<b>*FINANCIAL MEASURES</b>
</p>
<p>
<org value="NYSE:S" idsrc="xmltag.org">Sprint Nextel</org> provides financial measures determined in accordance with
      accounting principles generally accepted in <location value="LC/us" idsrc="xmltag.org">the United States</location> (GAAP) and
      adjusted GAAP (non-GAAP). The non-GAAP financial measures reflect
      industry conventions, or standard measures of liquidity, profitability
      or performance commonly used by the investment community for
      comparability purposes. These measurements should be considered in
      addition to, but not as a substitute for, financial information prepared
      in accordance with GAAP. We have defined below each of the non-GAAP
      measures we use, but these measures may not be synonymous to similar
      measurement terms used by other companies.
    </p>
<p>
<org value="NYSE:S" idsrc="xmltag.org">Sprint Nextel</org> provides reconciliations of these non-GAAP measures in its
      financial reporting. Because <org value="NYSE:S" idsrc="xmltag.org">Sprint Nextel</org> does not predict special
      items that might occur in the future, and our forecasts are developed at
      a level of detail different than that used to prepare GAAP-based
      financial measures, <org value="NYSE:S" idsrc="xmltag.org">Sprint Nextel</org> does not provide reconciliations to
      GAAP of its forward-looking financial measures.
    </p>
<p>
      The measures used in this release include the following:
    </p>
<p>
<b>OIBDA </b>is operating income/(loss) before depreciation,
      amortization, asset impairments and abandonments. <b>Adjusted OIBDA </b>is
      <b>OIBDA</b> excluding severance, exit costs, and other special items. <b>Adjusted
      OIBDA Margin</b> represents Adjusted OIBDA divided by non-equipment net
      operating revenues adjusted for certain non-recurring revenue
      adjustments for Wireless and Adjusted OIBDA divided by net operating
      revenues for Wireline. We believe that Adjusted OIBDA and Adjusted OIBDA
      Margin provide useful information to investors because they are an
      indicator of the strength and performance of our ongoing business
      operations, including our ability to fund discretionary spending such as
      capital expenditures, spectrum acquisitions and other investments and
      our ability to incur and service debt. While depreciation and
      amortization are considered operating costs under GAAP, these expenses
      primarily represent non-cash current period costs associated with the
      use of long-lived tangible and intangible assets. Adjusted OIBDA and
      Adjusted OIBDA Margin are calculations commonly used as a basis for
      investors, analysts and credit rating agencies to evaluate and compare
      the periodic and future operating performance and value of companies
      within the telecommunications industry.
    </p>
<p>
<b>Free Cash Flow</b> is the cash provided by operating activities less
      the cash used in investing activities other than short-term investments
      during the period. Free cash flow results in the change in cash, cash
      equivalents and short-term investments less the change in debt and
      proceeds from other financing activities, net. We believe that Free Cash
      Flow provides useful information to investors, analysts and our
      management about the cash generated by our core operations after
      interest and dividends and our ability to fund scheduled debt maturities
      and other financing activities, including discretionary refinancing and
      retirement of debt and purchase or sale of investments.
    </p>
<p>
<b>Net Debt </b>is consolidated debt, including current maturities, less
      cash and cash equivalents, short-term investments and restricted cash.
      We believe that Net Debt provides useful information to investors,
      analysts and credit rating agencies about the capacity of the company to
      reduce the debt load and improve its capital structure.
    </p>
<p>
<b>SAFE HARBOR</b>
</p>
<p>
      This news release includes “forward-looking statements” within the
      meaning of the securities laws. The statements in this news release
      regarding the business outlook, expected performance and forward-looking
      guidance, as well as other statements that are not historical facts, are
      forward-looking statements. The words "estimate," "project," "forecast,"
      "intend," "expect," "believe," "target," "providing guidance" and
      similar expressions are intended to identify forward-looking statements.
      Forward-looking statements are estimates and projections reflecting
      management's judgment based on currently available information and
      involve a number of risks and uncertainties that could cause actual
      results to differ materially from those suggested by the forward-looking
      statements. With respect to these forward-looking statements, management
      has made assumptions regarding, among other things, customer and network
      usage, customer growth and retention, pricing, operating costs, the
      timing of various events and the economic and regulatory environment.
    </p>
<p>
      Future performance cannot be assured. Actual results may differ
      materially from those in forward-looking statements. Some factors that
      could cause actual results to differ include:
    </p>
<ul>
<li>
        our ability to attract and retain subscribers;
      </li>
<li>
        the effects of vigorous competition on a highly penetrated market,
        including the impact of competition on the price we are able to charge
        subscribers for services and equipment we provide and our ability to
        attract new subscribers and retain existing subscribers; the overall
        demand for our service offerings, including the impact of decisions of
        new subscribers between our post-paid and prepaid services offerings
        and between our two network platforms; and the impact of new, emerging
        and competing technologies on our business;
      </li>
<li>
        the effect of limiting capital and operating expenditures on our
        ability to improve and enhance our networks and service offerings,
        implement our business strategies and provide competitive new
        technologies;
      </li>
<li>
        volatility in the trading price of our common stock, current economic
        conditions and our ability to access capital;
      </li>
<li>
        the impact of third parties not meeting our business requirements,
        including a significant adverse change in the ability or willingness
        of such parties to provide handset devices or infrastructure equipment
        for our CDMA network, or <org>Motorola</org>, Inc.’s ability or willingness to
        provide related handset devices, infrastructure equipment and software
        applications, or to develop new technologies or features, for our iDEN
        network;
      </li>
<li>
        the costs and business risks associated with providing new services
        and entering new geographic markets;
      </li>
<li>
        the financial performance of <org>Clearwire</org> and its deployment of a WiMAX
        network;
      </li>
<li>
        the effects of mergers and consolidations and new entrants in the
        communications industry and unexpected announcements or developments
        from others in the communications industry;
      </li>
<li>
        unexpected results of litigation filed against us or our suppliers or
        vendors;
      </li>
<li>
        the impact of adverse network performance;
      </li>
<li>
        the costs and/or potential customer impacts of compliance with
        regulatory mandates;
      </li>
<li>
        equipment failure, natural disasters, terrorist acts, or other
        breaches of network or information technology security;
      </li>
<li>
        one or more of the markets in which we compete being impacted by
        changes in political, economic or other factors such as monetary
        policy, legal and regulatory changes or other external sociological
        factors over which we have no control; and
      </li>
<li>
        other risks referenced from time to time in this report and other
        filings of ours with the <org>Securities and Exchange Commission</org>, including
        in Part I, Item IA “Risk Factors” of our annual report on Form 10-K
        for the year ended <chron>December 31, 2008</chron> and risk factors included in our
        subsequent reports on Form 10-Q.
      </li>
</ul>
<p>
<org value="NYSE:S" idsrc="xmltag.org">Sprint Nextel</org> believes these forward-looking statements are reasonable;
      however, you should not place undue reliance on forward-looking
      statements, which are based on current expectations and speak only as of
      the date of this release. <org value="NYSE:S" idsrc="xmltag.org">Sprint Nextel</org> is not obligated to publicly
      release any revisions to forward-looking statements to reflect events
      after the date of this release.
    </p>
<p>
<sup>+</sup> “Dependable” based on independent third-party drive tests
      for 3G data connection success, session reliability and signal strength
      for the top 50 most populous markets, <chron>January 2008</chron> to <chron>July 2009</chron>. Not all
      services available on 3G and coverage may default to separate network
      when 3G unavailable.
    </p>
<p>
<b>ABOUT <org value="NYSE:S" idsrc="xmltag.org">SPRINT NEXTEL</org></b>
</p>
<p>
<org value="NYSE:S" idsrc="xmltag.org">Sprint Nextel</org> offers a comprehensive range of wireless and wireline
      communications services bringing the freedom of mobility to consumers,
      businesses and government users. <org value="NYSE:S" idsrc="xmltag.org">Sprint Nextel</org> is widely recognized for
      developing, engineering and deploying innovative technologies, including
      two wireless networks serving more than 48 million customers at the end
      of the third quarter of 2009 and the first and only 4G service from a
      national carrier in <location value="LC/us" idsrc="xmltag.org">the United States</location>; industry-leading mobile data
      services; instant national and international walkie-talkie capabilities;
      and a global Tier 1 Internet backbone. The company’s customer-focused
      strategy has led to improved first call resolution and customer care
      satisfaction scores. For more information, visit <a href="http://cts.businesswire.com/ct/CT?id=smartlink&amp;url=http%3A%2F%2Fwww.sprint.com%2F&amp;esheet=6086419&amp;lan=en_US&amp;anchor=www.sprint.com&amp;index=2&amp;md5=68232445bb564aa5f18cb2ec02830fdc">www.sprint.com</a>.
    </p>
<table cellspacing="0" id="t6086419_6">
<tr>
<td colspan="21" id="t6086419_6_0_13793">
<i><b>Sprint Nextel Corporation</b></i>
</td>
</tr>
<tr>
<td colspan="21" id="t6086419_6_1_13793">
<b>CONSOLIDATED STATEMENTS OF OPERATIONS (Unaudited)</b>
</td>
</tr>
<tr>
<td colspan="21" id="t6086419_6_2_13793">
<i>(Millions, except per Share Data)</i>
</td>
</tr>
<tr>
<td colspan="21" id="t6086419_6_3_13793">
<b>TABLE NO. 4</b>
</td>
</tr>
<tr>
<td>
</td>
<td>
           
        </td>
<td colspan="11" id="t6086419_6_4_8386">
          Quarter Ended
        </td>
<td>
           
        </td>
<td colspan="7" id="t6086419_6_4_13793">
          Year To Date
        </td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="3" id="t6086419_6_5_5795">
          September 30,
        </td>
<td>
           
        </td>
<td colspan="3" id="t6086419_6_5_7093">
          June 30,
        </td>
<td>
           
        </td>
<td colspan="3" id="t6086419_6_5_8386">
          September 30,
        </td>
<td>
</td>
<td colspan="3" id="t6086419_6_5_9685">
          September 30,
        </td>
<td>
           
        </td>
<td colspan="3" id="t6086419_6_5_13793">
          September 30,
        </td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="3" id="t6086419_6_6_5795">
          2009
        </td>
<td>
</td>
<td colspan="3" id="t6086419_6_6_7093">
          2009
        </td>
<td>
</td>
<td colspan="3" id="t6086419_6_6_8386">
          2008
        </td>
<td>
</td>
<td colspan="3" id="t6086419_6_6_9685">
          2009
        </td>
<td>
</td>
<td colspan="3" id="t6086419_6_6_13793">
          2008
        </td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
           
        </td>
</tr>
<tr>
<td id="t6086419_6_8_4362">
<b>Net Operating Revenues</b>
</td>
<td>
</td>
<td id="t6086419_6_8_5133">
          $
        </td>
<td id="t6086419_6_8_5711">
          8,042
        </td>
<td>
           
        </td>
<td>
</td>
<td id="t6086419_6_8_6451">
          $
        </td>
<td id="t6086419_6_8_7024">
          8,141
        </td>
<td>
           
        </td>
<td>
</td>
<td id="t6086419_6_8_7740">
          $
        </td>
<td id="t6086419_6_8_8317">
          8,816
        </td>
<td>
           
        </td>
<td>
</td>
<td id="t6086419_6_8_9028">
          $
        </td>
<td id="t6086419_6_8_9601">
          24,392
        </td>
<td>
           
        </td>
<td>
</td>
<td id="t6086419_6_8_11281">
          $
        </td>
<td id="t6086419_6_8_12793">
          27,205
        </td>
<td>
           
        </td>
</tr>
<tr>
<td id="t6086419_6_9_4362">
<b>Net Operating Expenses</b>
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
</tr>
<tr>
<td id="t6086419_6_10_4362">
          Cost of services
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_10_5711">
          2,787
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_10_7024">
          2,719
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_10_8317">
          3,043
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_10_9601">
          8,241
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_10_12793">
          8,968
        </td>
<td>
</td>
</tr>
<tr>
<td id="t6086419_6_11_4362">
          Cost of products
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_11_5711">
          1,482
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_11_7024">
          1,342
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_11_8317">
          1,181
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_11_9601">
          4,115
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_11_12793">
          3,656
        </td>
<td>
</td>
</tr>
<tr>
<td id="t6086419_6_12_4362">
          Selling, general and administrative
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_12_5711">
          2,267
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_12_7024">
          2,311
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_12_8317">
          2,768
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_12_9601">
          7,038
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_12_12793">
          8,782
        </td>
<td>
</td>
</tr>
<tr>
<td id="t6086419_6_13_4362">
          Depreciation
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_13_5711">
          1,476
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_13_7024">
          1,453
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_13_8317">
          1,488
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_13_9601">
          4,346
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_13_12793">
          4,460
        </td>
<td>
</td>
</tr>
<tr>
<td id="t6086419_6_14_4362">
          Amortization
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_14_5711">
          344
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_14_7024">
          458
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_14_8317">
          569
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_14_9601">
          1,268
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_14_12793">
          1,955
        </td>
<td>
</td>
</tr>
<tr>
<td id="t6086419_6_15_4362">
          Other, net
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_6_15_5711">
          (60
        </td>
<td id="t6086419_6_15_5795">
          )
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_6_15_7024">
          (29
        </td>
<td id="t6086419_6_15_7093">
          )
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_6_15_8317">
          (28
        </td>
<td id="t6086419_6_15_8386">
          )
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_6_15_9601">
          238
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_6_15_12793">
          297
        </td>
<td>
           
        </td>
</tr>
<tr>
<td id="t6086419_6_16_4362">
          Total net operating expenses
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_6_16_5711">
          8,296
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_6_16_7024">
          8,254
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_6_16_8317">
          9,021
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_6_16_9601">
          25,246
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_6_16_12793">
          28,118
        </td>
<td>
           
        </td>
</tr>
<tr>
<td id="t6086419_6_17_4362">
<b>Operating Loss</b>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_17_5711">
          (254
        </td>
<td id="t6086419_6_17_5795">
          )
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_17_7024">
          (113
        </td>
<td id="t6086419_6_17_7093">
          )
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_17_8317">
          (205
        </td>
<td id="t6086419_6_17_8386">
          )
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_17_9601">
          (854
        </td>
<td id="t6086419_6_17_9685">
          )
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_17_12793">
          (913
        </td>
<td id="t6086419_6_17_13793">
          )
        </td>
</tr>
<tr>
<td id="t6086419_6_18_4362">
          Interest expense, net
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_18_5711">
          (355
        </td>
<td id="t6086419_6_18_5795">
          )
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_18_7024">
          (350
        </td>
<td id="t6086419_6_18_7093">
          )
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_18_8317">
          (318
        </td>
<td id="t6086419_6_18_8386">
          )
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_18_9601">
          (1,057
        </td>
<td id="t6086419_6_18_9685">
          )
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_18_12793">
          (951
        </td>
<td id="t6086419_6_18_13793">
          )
        </td>
</tr>
<tr>
<td id="t6086419_6_19_4362">
          Equity in losses of unconsolidated investments and other, net <sup>(3)</sup>
</td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_6_19_5711">
          (156
        </td>
<td id="t6086419_6_19_5795">
          )
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_6_19_7024">
          (146
        </td>
<td id="t6086419_6_19_7093">
          )
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_6_19_8317">
          8
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_6_19_9601">
          (587
        </td>
<td id="t6086419_6_19_9685">
          )
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_6_19_12793">
          (17
        </td>
<td id="t6086419_6_19_13793">
          )
        </td>
</tr>
<tr>
<td id="t6086419_6_20_4362">
<b>Loss before Income Taxes</b>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_20_5711">
          (765
        </td>
<td id="t6086419_6_20_5795">
          )
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_20_7024">
          (609
        </td>
<td id="t6086419_6_20_7093">
          )
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_20_8317">
          (515
        </td>
<td id="t6086419_6_20_8386">
          )
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_20_9601">
          (2,498
        </td>
<td id="t6086419_6_20_9685">
          )
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_20_12793">
          (1,881
        </td>
<td id="t6086419_6_20_13793">
          )
        </td>
</tr>
<tr>
<td id="t6086419_6_21_4362">
          Income tax benefit
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_6_21_5711">
          287
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_6_21_7024">
          225
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_6_21_8317">
          189
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_6_21_9601">
          1,042
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_6_21_12793">
          706
        </td>
<td>
           
        </td>
</tr>
<tr>
<td id="t6086419_6_22_4362">
<b>Net Loss</b>
</td>
<td>
</td>
<td id="t6086419_6_22_5133">
          $
        </td>
<td id="t6086419_6_22_5711">
          (478
        </td>
<td id="t6086419_6_22_5795">
          )
        </td>
<td>
</td>
<td id="t6086419_6_22_6451">
          $
        </td>
<td id="t6086419_6_22_7024">
          (384
        </td>
<td id="t6086419_6_22_7093">
          )
        </td>
<td>
</td>
<td id="t6086419_6_22_7740">
          $
        </td>
<td id="t6086419_6_22_8317">
          (326
        </td>
<td id="t6086419_6_22_8386">
          )
        </td>
<td>
</td>
<td id="t6086419_6_22_9028">
          $
        </td>
<td id="t6086419_6_22_9601">
          (1,456
        </td>
<td id="t6086419_6_22_9685">
          )
        </td>
<td>
</td>
<td id="t6086419_6_22_11281">
          $
        </td>
<td id="t6086419_6_22_12793">
          (1,175
        </td>
<td id="t6086419_6_22_13793">
          )
        </td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
           
        </td>
</tr>
<tr>
<td id="t6086419_6_24_4362">
<b>Basic and Diluted Loss Per Common Share</b>
</td>
<td>
</td>
<td id="t6086419_6_24_5133">
          $
        </td>
<td id="t6086419_6_24_5711">
          (0.17
        </td>
<td id="t6086419_6_24_5795">
          )
        </td>
<td>
</td>
<td id="t6086419_6_24_6451">
          $
        </td>
<td id="t6086419_6_24_7024">
          (0.13
        </td>
<td id="t6086419_6_24_7093">
          )
        </td>
<td>
</td>
<td id="t6086419_6_24_7740">
          $
        </td>
<td id="t6086419_6_24_8317">
          (0.11
        </td>
<td id="t6086419_6_24_8386">
          )
        </td>
<td>
</td>
<td id="t6086419_6_24_9028">
          $
        </td>
<td id="t6086419_6_24_9601">
          (0.51
        </td>
<td id="t6086419_6_24_9685">
          )
        </td>
<td>
</td>
<td id="t6086419_6_24_11281">
          $
        </td>
<td id="t6086419_6_24_12793">
          (0.41
        </td>
<td id="t6086419_6_24_13793">
          )
        </td>
</tr>
<tr>
<td id="t6086419_6_25_4362">
          Weighted Average Common Shares outstanding
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_6_25_5711">
          2,877
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_6_25_7024">
          2,872
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_6_25_8317">
          2,855
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_6_25_9601">
          2,872
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_6_25_12793">
          2,852
        </td>
<td>
           
        </td>
</tr>
<tr>
<td id="t6086419_6_26_4362">
<b>Effective Tax Rate</b>
</td>
<td>
           
        </td>
<td>
           
        </td>
<td id="t6086419_6_26_5711">
          37.5
        </td>
<td id="t6086419_6_26_5795">
          %
        </td>
<td>
           
        </td>
<td>
           
        </td>
<td id="t6086419_6_26_7024">
          36.9
        </td>
<td id="t6086419_6_26_7093">
          %
        </td>
<td>
           
        </td>
<td>
           
        </td>
<td id="t6086419_6_26_8317">
          36.7
        </td>
<td id="t6086419_6_26_8386">
          %
        </td>
<td>
           
        </td>
<td>
           
        </td>
<td id="t6086419_6_26_9601">
          41.7
        </td>
<td id="t6086419_6_26_9685">
          %
        </td>
<td>
           
        </td>
<td>
           
        </td>
<td id="t6086419_6_26_12793">
          37.5
        </td>
<td id="t6086419_6_26_13793">
          %
        </td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
           
        </td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
           
        </td>
</tr>
<tr>
<td colspan="21" id="t6086419_6_29_13793">
<b>NON-GAAP RECONCILIATION - NET LOSS TO ADJUSTED OIBDA* (Unaudited)</b>
</td>
</tr>
<tr>
<td colspan="21" id="t6086419_6_30_13793">
<i>(Millions)</i>
</td>
</tr>
<tr>
<td colspan="21" id="t6086419_6_31_13793">
<b>TABLE NO. 5</b>
</td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="11" id="t6086419_6_32_8386">
          Quarter Ended
        </td>
<td>
</td>
<td colspan="7" id="t6086419_6_32_13793">
          Year To Date
        </td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="3" id="t6086419_6_33_5795">
          September 30,
        </td>
<td>
</td>
<td colspan="3" id="t6086419_6_33_7093">
          June 30,
        </td>
<td>
</td>
<td colspan="3" id="t6086419_6_33_8386">
          September 30,
        </td>
<td>
</td>
<td colspan="3" id="t6086419_6_33_9685">
          September 30,
        </td>
<td>
</td>
<td colspan="3" id="t6086419_6_33_13793">
          September 30,
        </td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="3" id="t6086419_6_34_5795">
          2009
        </td>
<td>
</td>
<td colspan="3" id="t6086419_6_34_7093">
          2009
        </td>
<td>
</td>
<td colspan="3" id="t6086419_6_34_8386">
          2008
        </td>
<td>
</td>
<td colspan="3" id="t6086419_6_34_9685">
          2009
        </td>
<td>
</td>
<td colspan="3" id="t6086419_6_34_13793">
          2008
        </td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
           
        </td>
</tr>
<tr>
<td id="t6086419_6_36_4362">
<b>Net Loss</b>
</td>
<td>
</td>
<td id="t6086419_6_36_5133">
          $
        </td>
<td id="t6086419_6_36_5711">
          (478
        </td>
<td id="t6086419_6_36_5795">
          )
        </td>
<td>
</td>
<td id="t6086419_6_36_6451">
          $
        </td>
<td id="t6086419_6_36_7024">
          (384
        </td>
<td id="t6086419_6_36_7093">
          )
        </td>
<td>
</td>
<td id="t6086419_6_36_7740">
          $
        </td>
<td id="t6086419_6_36_8317">
          (326
        </td>
<td id="t6086419_6_36_8386">
          )
        </td>
<td>
</td>
<td id="t6086419_6_36_9028">
          $
        </td>
<td id="t6086419_6_36_9601">
          (1,456
        </td>
<td id="t6086419_6_36_9685">
          )
        </td>
<td>
</td>
<td id="t6086419_6_36_11281">
          $
        </td>
<td id="t6086419_6_36_12793">
          (1,175
        </td>
<td id="t6086419_6_36_13793">
          )
        </td>
</tr>
<tr>
<td id="t6086419_6_37_4362">
          Income tax benefit
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_6_37_5711">
          287
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_6_37_7024">
          225
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_6_37_8317">
          189
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_6_37_9601">
          1,042
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_6_37_12793">
          706
        </td>
<td>
           
        </td>
</tr>
<tr>
<td id="t6086419_6_38_4362">
<b>Loss before Income Taxes</b>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_38_5711">
          (765
        </td>
<td id="t6086419_6_38_5795">
          )
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_38_7024">
          (609
        </td>
<td id="t6086419_6_38_7093">
          )
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_38_8317">
          (515
        </td>
<td id="t6086419_6_38_8386">
          )
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_38_9601">
          (2,498
        </td>
<td id="t6086419_6_38_9685">
          )
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_38_12793">
          (1,881
        </td>
<td id="t6086419_6_38_13793">
          )
        </td>
</tr>
<tr>
<td id="t6086419_6_39_4362">
          Depreciation
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_39_5711">
          1,476
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_39_7024">
          1,453
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_39_8317">
          1,488
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_39_9601">
          4,346
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_39_12793">
          4,460
        </td>
<td>
</td>
</tr>
<tr>
<td id="t6086419_6_40_4362">
          Amortization
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_40_5711">
          344
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_40_7024">
          458
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_40_8317">
          569
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_40_9601">
          1,268
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_40_12793">
          1,955
        </td>
<td>
</td>
</tr>
<tr>
<td id="t6086419_6_41_4362">
          Interest expense, net
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_41_5711">
          355
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_41_7024">
          350
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_41_8317">
          318
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_41_9601">
          1,057
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_41_12793">
          951
        </td>
<td>
</td>
</tr>
<tr>
<td id="t6086419_6_42_4362">
          Equity in losses of unconsolidated investments and other, net <sup>(3)</sup>
</td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_6_42_5711">
          156
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_6_42_7024">
          146
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_6_42_8317">
          (8
        </td>
<td id="t6086419_6_42_8386">
          )
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_6_42_9601">
          587
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_6_42_12793">
          17
        </td>
<td>
           
        </td>
</tr>
<tr>
<td id="t6086419_6_43_4362">
<b>OIBDA*</b>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_43_5711">
          1,566
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_43_7024">
          1,798
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_43_8317">
          1,852
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_43_9601">
          4,760
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_43_12793">
          5,502
        </td>
<td>
</td>
</tr>
<tr>
<td id="t6086419_6_44_4362">
          Severance and exit costs <sup>(4)</sup>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_44_5711">
          25
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_44_7024">
          (29
        </td>
<td id="t6086419_6_44_7093">
          )
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_44_8317">
          10
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_44_9601">
          323
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_44_12793">
          335
        </td>
<td>
</td>
</tr>
<tr>
<td id="t6086419_6_45_4362">
          Gains from asset dispositions and exchanges<sup> (5)</sup>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_45_5711">
          (60
        </td>
<td id="t6086419_6_45_5795">
          )
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_45_7024">
          -
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_45_8317">
          (29
        </td>
<td id="t6086419_6_45_8386">
          )
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_45_9601">
          (60
        </td>
<td id="t6086419_6_45_9685">
          )
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_45_12793">
          (29
        </td>
<td id="t6086419_6_45_13793">
          )
        </td>
</tr>
<tr>
<td id="t6086419_6_46_4362">
          Asset impairments and abandonments
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_46_5711">
          -
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_46_7024">
          -
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_46_8317">
          (9
        </td>
<td id="t6086419_6_46_8386">
          )
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_46_9601">
          -
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_46_12793">
          (9
        </td>
<td id="t6086419_6_46_13793">
          )
        </td>
</tr>
<tr>
<td id="t6086419_6_47_4362">
          Access costs<sup> (6)</sup>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_47_5711">
          (25
        </td>
<td id="t6086419_6_47_5795">
          )
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_47_7024">
          -
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_47_8317">
          -
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_47_9601">
          (25
        </td>
<td id="t6086419_6_47_9685">
          )
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_47_12793">
          -
        </td>
<td>
</td>
</tr>
<tr>
<td id="t6086419_6_48_4362">
          Merger and integration expense <sup>(7)</sup>
</td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_6_48_5711">
          -
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_6_48_7024">
          -
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_6_48_8317">
          -
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_6_48_9601">
          -
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_6_48_12793">
          130
        </td>
<td>
           
        </td>
</tr>
<tr>
<td id="t6086419_6_49_4362">
<b>Adjusted OIBDA</b><sup><b>*</b>, (1)</sup>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_49_5711">
          1,506
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_49_7024">
          1,769
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_49_8317">
          1,824
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_49_9601">
          4,998
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_49_12793">
          5,929
        </td>
<td>
</td>
</tr>
<tr>
<td id="t6086419_6_50_4362">
          Capital expenditures <sup>(1), (2)</sup>
</td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_6_50_5711">
          431
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_6_50_7024">
          321
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_6_50_8317">
          485
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_6_50_9601">
          1,043
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_6_50_12793">
          2,491
        </td>
<td>
           
        </td>
</tr>
<tr>
<td id="t6086419_6_51_4362">
<b>Adjusted OIBDA* less Capex</b>
</td>
<td>
</td>
<td id="t6086419_6_51_5133">
          $
        </td>
<td id="t6086419_6_51_5711">
          1,075
        </td>
<td>
           
        </td>
<td>
</td>
<td id="t6086419_6_51_6451">
          $
        </td>
<td id="t6086419_6_51_7024">
          1,448
        </td>
<td>
           
        </td>
<td>
</td>
<td id="t6086419_6_51_7740">
          $
        </td>
<td id="t6086419_6_51_8317">
          1,339
        </td>
<td>
           
        </td>
<td>
</td>
<td id="t6086419_6_51_9028">
          $
        </td>
<td id="t6086419_6_51_9601">
          3,955
        </td>
<td>
           
        </td>
<td>
</td>
<td id="t6086419_6_51_11281">
          $
        </td>
<td id="t6086419_6_51_12793">
          3,438
        </td>
<td>
           
        </td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
           
        </td>
</tr>
<tr>
<td id="t6086419_6_53_4362">
<b>Adjusted OIBDA Margin*</b><sup><b>, (1)</b></sup>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_53_5711">
          20.0
        </td>
<td id="t6086419_6_53_5795">
          %
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_53_7024">
          23.1
        </td>
<td id="t6086419_6_53_7093">
          %
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_53_8317">
          21.9
        </td>
<td id="t6086419_6_53_8386">
          %
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_53_9601">
          21.8
        </td>
<td id="t6086419_6_53_9685">
          %
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_53_12793">
          23.1
        </td>
<td id="t6086419_6_53_13793">
          %
        </td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
           
        </td>
</tr>
<tr>
<td id="t6086419_6_55_4362">
<b>Selected items (net of taxes):</b>
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
</tr>
<tr>
<td id="t6086419_6_56_4362">
          Severance and exit costs <sup>(4)</sup>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_56_5711">
          15
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_56_7024">
          (18
        </td>
<td id="t6086419_6_56_7093">
          )
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_56_8317">
          6
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_56_9601">
          199
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_56_12793">
          207
        </td>
<td>
</td>
</tr>
<tr>
<td id="t6086419_6_57_4362">
          Gains from asset dispositions and exchanges<sup> (5)</sup>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_57_5711">
          (37
        </td>
<td id="t6086419_6_57_5795">
          )
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_57_7024">
          -
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_57_8317">
          (18
        </td>
<td id="t6086419_6_57_8386">
          )
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_57_9601">
          (37
        </td>
<td id="t6086419_6_57_9685">
          )
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_57_12793">
          (18
        </td>
<td id="t6086419_6_57_13793">
          )
        </td>
</tr>
<tr>
<td id="t6086419_6_58_4362">
          Asset impairments and abandonments
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_58_5711">
          -
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_58_7024">
          -
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_58_8317">
          (5
        </td>
<td id="t6086419_6_58_8386">
          )
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_58_9601">
          8
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_58_12793">
          1
        </td>
<td>
</td>
</tr>
<tr>
<td id="t6086419_6_59_4362">
          Amortization
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_59_5711">
          209
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_59_7024">
          278
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_59_8317">
          344
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_59_9601">
          770
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_59_12793">
          1,181
        </td>
<td>
</td>
</tr>
<tr>
<td id="t6086419_6_60_4362">
          Access costs<sup> (6)</sup>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_60_5711">
          (16
        </td>
<td id="t6086419_6_60_5795">
          )
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_60_7024">
          -
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_60_8317">
          -
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_60_9601">
          (16
        </td>
<td id="t6086419_6_60_9685">
          )
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_60_12793">
          -
        </td>
<td>
</td>
</tr>
<tr>
<td id="t6086419_6_61_4362">
          Merger and integration expenses <sup>(7)</sup>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_61_5711">
          -
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_61_7024">
          -
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_61_8317">
          -
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_61_9601">
          -
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_6_61_12793">
          80
        </td>
<td>
</td>
</tr>
<tr>
<td id="t6086419_6_62_4362">
          Equity in losses of unconsolidated investments and other, net <sup>(3)</sup>
</td>
<td>
           
        </td>
<td>
           
        </td>
<td id="t6086419_6_62_5711">
          97
        </td>
<td>
           
        </td>
<td>
           
        </td>
<td>
           
        </td>
<td id="t6086419_6_62_7024">
          83
        </td>
<td>
           
        </td>
<td>
           
        </td>
<td>
           
        </td>
<td id="t6086419_6_62_8317">
          -
        </td>
<td>
           
        </td>
<td>
           
        </td>
<td>
           
        </td>
<td id="t6086419_6_62_9601">
          355
        </td>
<td>
           
        </td>
<td>
           
        </td>
<td>
           
        </td>
<td id="t6086419_6_62_12793">
          -
        </td>
<td>
           
        </td>
</tr>
</table>
<table cellspacing="0" id="t6086419_7">
<tr>
<td colspan="21" id="t6086419_7_0_12221">
<i><b>Sprint Nextel Corporation</b></i>
</td>
</tr>
<tr>
<td colspan="21" id="t6086419_7_1_12221">
<b>WIRELESS STATEMENTS OF OPERATIONS AND STATISTICS (Unaudited)</b>
</td>
</tr>
<tr>
<td colspan="21" id="t6086419_7_2_12221">
<i>(Millions, except subscriber counts and metrics)</i>
</td>
</tr>
<tr>
<td colspan="21" id="t6086419_7_3_12221">
<b>TABLE NO. 6</b>
</td>
</tr>
<tr>
<td>
</td>
<td>
           
        </td>
<td colspan="11" id="t6086419_7_4_8260">
          Quarter Ended
        </td>
<td>
           
        </td>
<td colspan="7" id="t6086419_7_4_12221">
          Year To Date
        </td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="3" id="t6086419_7_5_5579">
          September 30,
        </td>
<td>
           
        </td>
<td colspan="3" id="t6086419_7_5_6880">
          June 30,
        </td>
<td>
           
        </td>
<td colspan="3" id="t6086419_7_5_8260">
          September 30,
        </td>
<td>
</td>
<td colspan="3" id="t6086419_7_5_9801">
          September 30,
        </td>
<td>
           
        </td>
<td colspan="3" id="t6086419_7_5_12221">
          September 30,
        </td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="3" id="t6086419_7_6_5579">
          2009
        </td>
<td>
</td>
<td colspan="3" id="t6086419_7_6_6880">
          2009
        </td>
<td>
</td>
<td colspan="3" id="t6086419_7_6_8260">
          2008
        </td>
<td>
</td>
<td colspan="3" id="t6086419_7_6_9801">
          2009
        </td>
<td>
</td>
<td colspan="3" id="t6086419_7_6_12221">
          2008
        </td>
</tr>
<tr>
<td id="t6086419_7_7_3932">
<b>Net Operating Revenues</b>
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
</tr>
<tr>
<td id="t6086419_7_8_3932">
          Service
        </td>
<td>
</td>
<td id="t6086419_7_8_4596">
          $
        </td>
<td id="t6086419_7_8_5260">
          6,261
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_8_5899">
          $
        </td>
<td id="t6086419_7_8_6539">
          6,366
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_8_7221">
          $
        </td>
<td id="t6086419_7_8_7904">
          6,803
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_8_8616">
          $
        </td>
<td id="t6086419_7_8_9328">
          19,047
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_8_10274">
          $
        </td>
<td id="t6086419_7_8_11221">
          20,931
        </td>
<td>
</td>
</tr>
<tr>
<td id="t6086419_7_9_3932">
          Equipment
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_9_5260">
          529
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_9_6539">
          497
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_9_7904">
          492
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_9_9328">
          1,479
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_9_11221">
          1,558
        </td>
<td>
</td>
</tr>
<tr>
<td id="t6086419_7_10_3932">
          Wholesale, affiliate and other
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_7_10_5260">
          141
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_7_10_6539">
          141
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_7_10_7904">
          241
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_7_10_9328">
          444
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_7_10_11221">
          746
        </td>
<td>
           
        </td>
</tr>
<tr>
<td id="t6086419_7_11_3932">
          Total net operating revenues
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_7_11_5260">
          6,931
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_7_11_6539">
          7,004
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_7_11_7904">
          7,536
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_7_11_9328">
          20,970
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_7_11_11221">
          23,235
        </td>
<td>
           
        </td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
           
        </td>
</tr>
<tr>
<td id="t6086419_7_13_3932">
<b>Net Operating Expenses</b>
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
</tr>
<tr>
<td id="t6086419_7_14_3932">
          Cost of services
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_14_5260">
          2,164
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_14_6539">
          2,113
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_14_7904">
          2,268
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_14_9328">
          6,349
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_14_11221">
          6,589
        </td>
<td>
</td>
</tr>
<tr>
<td id="t6086419_7_15_3932">
          Cost of products
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_15_5260">
          1,482
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_15_6539">
          1,342
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_15_7904">
          1,181
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_15_9328">
          4,115
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_15_11221">
          3,622
        </td>
<td>
</td>
</tr>
<tr>
<td id="t6086419_7_16_3932">
          Selling, general and administrative
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_16_5260">
          2,101
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_16_6539">
          2,136
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_16_7904">
          2,441
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_16_9328">
          6,460
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_16_11221">
          7,709
        </td>
<td>
</td>
</tr>
<tr>
<td id="t6086419_7_17_3932">
          Depreciation
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_17_5260">
          1,331
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_17_6539">
          1,296
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_17_7904">
          1,327
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_17_9328">
          3,915
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_17_11221">
          4,025
        </td>
<td>
</td>
</tr>
<tr>
<td id="t6086419_7_18_3932">
          Amortization
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_18_5260">
          343
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_18_6539">
          458
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_18_7904">
          569
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_18_9328">
          1,266
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_18_11221">
          1,954
        </td>
<td>
</td>
</tr>
<tr>
<td id="t6086419_7_19_3932">
          Merger and integration expenses <sup>(7)</sup>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_19_5260">
          -
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_19_6539">
          -
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_19_7904">
          -
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_19_9328">
          -
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_19_11221">
          101
        </td>
<td>
</td>
</tr>
<tr>
<td id="t6086419_7_20_3932">
          Other, net
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_7_20_5260">
          (42
        </td>
<td id="t6086419_7_20_5579">
          )
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_7_20_6539">
          (27
        </td>
<td id="t6086419_7_20_6880">
          )
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_7_20_7904">
          (30
        </td>
<td id="t6086419_7_20_8260">
          )
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_7_20_9328">
          185
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_7_20_11221">
          225
        </td>
<td>
           
        </td>
</tr>
<tr>
<td id="t6086419_7_21_3932">
          Total net operating expenses
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_7_21_5260">
          7,379
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_7_21_6539">
          7,318
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_7_21_7904">
          7,756
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_7_21_9328">
          22,290
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_7_21_11221">
          24,225
        </td>
<td>
           
        </td>
</tr>
<tr>
<td id="t6086419_7_22_3932">
<b>Operating Loss</b>
</td>
<td>
           
        </td>
<td id="t6086419_7_22_4596">
          $
        </td>
<td id="t6086419_7_22_5260">
          (448
        </td>
<td id="t6086419_7_22_5579">
          )
        </td>
<td>
           
        </td>
<td id="t6086419_7_22_5899">
          $
        </td>
<td id="t6086419_7_22_6539">
          (314
        </td>
<td id="t6086419_7_22_6880">
          )
        </td>
<td>
           
        </td>
<td id="t6086419_7_22_7221">
          $
        </td>
<td id="t6086419_7_22_7904">
          (220
        </td>
<td id="t6086419_7_22_8260">
          )
        </td>
<td>
           
        </td>
<td id="t6086419_7_22_8616">
          $
        </td>
<td id="t6086419_7_22_9328">
          (1,320
        </td>
<td id="t6086419_7_22_9801">
          )
        </td>
<td>
           
        </td>
<td id="t6086419_7_22_10274">
          $
        </td>
<td id="t6086419_7_22_11221">
          (990
        </td>
<td id="t6086419_7_22_12221">
          )
        </td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
           
        </td>
</tr>
<tr>
<td>
           
        </td>
<td>
           
        </td>
<td colspan="3">
           
        </td>
<td>
           
        </td>
<td colspan="3">
           
        </td>
<td>
           
        </td>
<td colspan="3">
           
        </td>
<td>
           
        </td>
<td colspan="3">
           
        </td>
<td>
           
        </td>
<td colspan="3">
           
        </td>
</tr>
<tr>
<td id="t6086419_7_25_3932">
<i><b>NON-GAAP RECONCILIATION</b></i>
</td>
<td>
</td>
<td colspan="11" id="t6086419_7_25_8260">
          Quarter Ended
        </td>
<td>
</td>
<td colspan="7" id="t6086419_7_25_12221">
          Year To Date
        </td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="3" id="t6086419_7_26_5579">
          September 30,
        </td>
<td>
</td>
<td colspan="3" id="t6086419_7_26_6880">
          June 30,
        </td>
<td>
</td>
<td colspan="3" id="t6086419_7_26_8260">
          September 30,
        </td>
<td>
</td>
<td colspan="3" id="t6086419_7_26_9801">
          September 30,
        </td>
<td>
</td>
<td colspan="3" id="t6086419_7_26_12221">
          September 30,
        </td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="3" id="t6086419_7_27_5579">
          2009
        </td>
<td>
</td>
<td colspan="3" id="t6086419_7_27_6880">
          2009
        </td>
<td>
</td>
<td colspan="3" id="t6086419_7_27_8260">
          2008
        </td>
<td>
</td>
<td colspan="3" id="t6086419_7_27_9801">
          2009
        </td>
<td>
</td>
<td colspan="3" id="t6086419_7_27_12221">
          2008
        </td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
           
        </td>
</tr>
<tr>
<td id="t6086419_7_29_3932">
<b>Operating Loss</b>
</td>
<td>
</td>
<td id="t6086419_7_29_4596">
          $
        </td>
<td id="t6086419_7_29_5260">
          (448
        </td>
<td id="t6086419_7_29_5579">
          )
        </td>
<td>
</td>
<td id="t6086419_7_29_5899">
          $
        </td>
<td id="t6086419_7_29_6539">
          (314
        </td>
<td id="t6086419_7_29_6880">
          )
        </td>
<td>
</td>
<td id="t6086419_7_29_7221">
          $
        </td>
<td id="t6086419_7_29_7904">
          (220
        </td>
<td id="t6086419_7_29_8260">
          )
        </td>
<td>
</td>
<td id="t6086419_7_29_8616">
          $
        </td>
<td id="t6086419_7_29_9328">
          (1,320
        </td>
<td id="t6086419_7_29_9801">
          )
        </td>
<td>
</td>
<td id="t6086419_7_29_10274">
          $
        </td>
<td id="t6086419_7_29_11221">
          (990
        </td>
<td id="t6086419_7_29_12221">
          )
        </td>
</tr>
<tr>
<td id="t6086419_7_30_3932">
          Severance and exit costs <sup>(4)</sup>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_30_5260">
          18
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_30_6539">
          (27
        </td>
<td id="t6086419_7_30_6880">
          )
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_30_7904">
          8
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_30_9328">
          245
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_30_11221">
          263
        </td>
<td>
</td>
</tr>
<tr>
<td id="t6086419_7_31_3932">
          Gains from asset dispositions and exchanges<sup> (5)</sup>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_31_5260">
          (60
        </td>
<td id="t6086419_7_31_5579">
          )
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_31_6539">
          -
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_31_7904">
          (29
        </td>
<td id="t6086419_7_31_8260">
          )
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_31_9328">
          (60
        </td>
<td id="t6086419_7_31_9801">
          )
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_31_11221">
          (29
        </td>
<td id="t6086419_7_31_12221">
          )
        </td>
</tr>
<tr>
<td id="t6086419_7_32_3932">
          Asset impairments and abandonments
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_32_5260">
          -
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_32_6539">
          -
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_32_7904">
          (9
        </td>
<td id="t6086419_7_32_8260">
          )
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_32_9328">
          -
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_32_11221">
          (9
        </td>
<td id="t6086419_7_32_12221">
          )
        </td>
</tr>
<tr>
<td id="t6086419_7_33_3932">
          Merger and integration expenses <sup>(7)</sup>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_33_5260">
          -
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_33_6539">
          -
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_33_7904">
          -
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_33_9328">
          -
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_33_11221">
          101
        </td>
<td>
</td>
</tr>
<tr>
<td id="t6086419_7_34_3932">
          Depreciation
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_34_5260">
          1,331
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_34_6539">
          1,296
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_34_7904">
          1,327
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_34_9328">
          3,915
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_34_11221">
          4,025
        </td>
<td>
</td>
</tr>
<tr>
<td id="t6086419_7_35_3932">
          Amortization
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_7_35_5260">
          343
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_7_35_6539">
          458
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_7_35_7904">
          569
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_7_35_9328">
          1,266
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_7_35_11221">
          1,954
        </td>
<td>
           
        </td>
</tr>
<tr>
<td id="t6086419_7_36_3932">
<b>Adjusted OIBDA*</b>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_36_5260">
          1,184
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_36_6539">
          1,413
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_36_7904">
          1,646
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_36_9328">
          4,046
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_36_11221">
          5,315
        </td>
<td>
</td>
</tr>
<tr>
<td id="t6086419_7_37_3932">
          Capital expenditures <sup>(2)</sup>
</td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_7_37_5260">
          310
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_7_37_6539">
          227
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_7_37_7904">
          217
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_7_37_9328">
          734
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_7_37_11221">
          1,528
        </td>
<td>
           
        </td>
</tr>
<tr>
<td id="t6086419_7_38_3932">
<b>Adjusted OIBDA* less Capex</b>
</td>
<td>
</td>
<td id="t6086419_7_38_4596">
          $
        </td>
<td id="t6086419_7_38_5260">
          874
        </td>
<td>
           
        </td>
<td>
</td>
<td id="t6086419_7_38_5899">
          $
        </td>
<td id="t6086419_7_38_6539">
          1,186
        </td>
<td>
           
        </td>
<td>
</td>
<td id="t6086419_7_38_7221">
          $
        </td>
<td id="t6086419_7_38_7904">
          1,429
        </td>
<td>
           
        </td>
<td>
</td>
<td id="t6086419_7_38_8616">
          $
        </td>
<td id="t6086419_7_38_9328">
          3,312
        </td>
<td>
           
        </td>
<td>
</td>
<td id="t6086419_7_38_10274">
          $
        </td>
<td id="t6086419_7_38_11221">
          3,787
        </td>
<td>
           
        </td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
           
        </td>
</tr>
<tr>
<td id="t6086419_7_40_3932">
<b>Adjusted OIBDA Margin*</b>
</td>
<td>
           
        </td>
<td>
           
        </td>
<td id="t6086419_7_40_5260">
          18.5
        </td>
<td id="t6086419_7_40_5579">
          %
        </td>
<td>
           
        </td>
<td>
           
        </td>
<td id="t6086419_7_40_6539">
          21.7
        </td>
<td id="t6086419_7_40_6880">
          %
        </td>
<td>
           
        </td>
<td>
           
        </td>
<td id="t6086419_7_40_7904">
          23.4
        </td>
<td id="t6086419_7_40_8260">
          %
        </td>
<td>
           
        </td>
<td>
           
        </td>
<td id="t6086419_7_40_9328">
          20.8
        </td>
<td id="t6086419_7_40_9801">
          %
        </td>
<td>
           
        </td>
<td>
           
        </td>
<td id="t6086419_7_40_11221">
          24.5
        </td>
<td id="t6086419_7_40_12221">
          %
        </td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
           
        </td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
           
        </td>
</tr>
<tr>
<td>
           
        </td>
<td>
           
        </td>
<td colspan="3">
           
        </td>
<td>
           
        </td>
<td colspan="3">
           
        </td>
<td>
           
        </td>
<td colspan="3">
           
        </td>
<td>
           
        </td>
<td colspan="3">
           
        </td>
<td>
           
        </td>
<td colspan="3">
           
        </td>
</tr>
<tr>
<td id="t6086419_7_44_3932">
<i><b>OPERATING STATISTICS</b></i>
</td>
<td>
</td>
<td colspan="11" id="t6086419_7_44_8260">
          Quarter Ended
        </td>
<td>
</td>
<td colspan="7" id="t6086419_7_44_12221">
          Year To Date
        </td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="3" id="t6086419_7_45_5579">
          September 30,
        </td>
<td>
</td>
<td colspan="3" id="t6086419_7_45_6880">
          June 30,
        </td>
<td>
</td>
<td colspan="3" id="t6086419_7_45_8260">
          September 30,
        </td>
<td>
</td>
<td colspan="3" id="t6086419_7_45_9801">
          September 30,
        </td>
<td>
</td>
<td colspan="3" id="t6086419_7_45_12221">
          September 30,
        </td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="3" id="t6086419_7_46_5579">
          2009
        </td>
<td>
</td>
<td colspan="3" id="t6086419_7_46_6880">
          2009
        </td>
<td>
</td>
<td colspan="3" id="t6086419_7_46_8260">
          2008
        </td>
<td>
</td>
<td colspan="3" id="t6086419_7_46_9801">
          2009
        </td>
<td>
</td>
<td colspan="3" id="t6086419_7_46_12221">
          2008
        </td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
           
        </td>
</tr>
<tr>
<td id="t6086419_7_48_3932">
<i><b>Retail Post-Paid Subscribers</b></i>
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
</tr>
<tr>
<td id="t6086419_7_49_3932">
          Service revenue (in millions)
        </td>
<td>
</td>
<td id="t6086419_7_49_4596">
          $
        </td>
<td id="t6086419_7_49_5260">
          5,699
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_49_5899">
          $
        </td>
<td id="t6086419_7_49_6539">
          5,897
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_49_7221">
          $
        </td>
<td id="t6086419_7_49_7904">
          6,423
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_49_8616">
          $
        </td>
<td id="t6086419_7_49_9328">
          17,659
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_49_10274">
          $
        </td>
<td id="t6086419_7_49_11221">
          19,770
        </td>
<td>
</td>
</tr>
<tr>
<td id="t6086419_7_50_3932">
          ARPU
        </td>
<td>
</td>
<td id="t6086419_7_50_4596">
          $
        </td>
<td id="t6086419_7_50_5260">
          56
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_50_5899">
          $
        </td>
<td id="t6086419_7_50_6539">
          56
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_50_7221">
          $
        </td>
<td id="t6086419_7_50_7904">
          56
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_50_8616">
          $
        </td>
<td id="t6086419_7_50_9328">
          56
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_50_10274">
          $
        </td>
<td id="t6086419_7_50_11221">
          56
        </td>
<td>
</td>
</tr>
<tr>
<td id="t6086419_7_51_3932">
          Churn
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_51_5260">
          2.17
        </td>
<td id="t6086419_7_51_5579">
          %
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_51_6539">
          2.05
        </td>
<td id="t6086419_7_51_6880">
          %
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_51_7904">
          2.15
        </td>
<td id="t6086419_7_51_8260">
          %
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_51_9328">
          2.16
        </td>
<td id="t6086419_7_51_9801">
          %
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_51_11221">
          2.19
        </td>
<td id="t6086419_7_51_12221">
          %
        </td>
</tr>
<tr>
<td id="t6086419_7_52_3932">
          Net losses (in thousands)
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_52_5260">
          (801
        </td>
<td id="t6086419_7_52_5579">
          )
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_52_6539">
          (991
        </td>
<td id="t6086419_7_52_6880">
          )
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_52_7904">
          (1,122
        </td>
<td id="t6086419_7_52_8260">
          )
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_52_9328">
          (3,042
        </td>
<td id="t6086419_7_52_9801">
          )
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_52_11221">
          (2,968
        </td>
<td id="t6086419_7_52_12221">
          )
        </td>
</tr>
<tr>
<td id="t6086419_7_53_3932">
          End of period subscribers (in thousands)
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_53_5260">
          33,636
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_53_6539">
          34,437
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_53_7904">
          37,783
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_53_9328">
          33,636
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_53_11221">
          37,783
        </td>
<td>
</td>
</tr>
<tr>
<td id="t6086419_7_54_3932">
          Hours per subscriber
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_54_5260">
          15
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_54_6539">
          15
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_54_7904">
          16
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_54_9328">
          15
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_54_11221">
          15
        </td>
<td>
</td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
           
        </td>
</tr>
<tr>
<td id="t6086419_7_56_3932">
<i><b>Retail Prepaid Subscribers</b></i>
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
</tr>
<tr>
<td id="t6086419_7_57_3932">
          Service revenue (in millions)
        </td>
<td>
</td>
<td id="t6086419_7_57_4596">
          $
        </td>
<td id="t6086419_7_57_5260">
          562
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_57_5899">
          $
        </td>
<td id="t6086419_7_57_6539">
          469
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_57_7221">
          $
        </td>
<td id="t6086419_7_57_7904">
          380
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_57_8616">
          $
        </td>
<td id="t6086419_7_57_9328">
          1,388
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_57_10274">
          $
        </td>
<td id="t6086419_7_57_11221">
          1,161
        </td>
<td>
</td>
</tr>
<tr>
<td id="t6086419_7_58_3932">
          ARPU
        </td>
<td>
</td>
<td id="t6086419_7_58_4596">
          $
        </td>
<td id="t6086419_7_58_5260">
          35
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_58_5899">
          $
        </td>
<td id="t6086419_7_58_6539">
          34
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_58_7221">
          $
        </td>
<td id="t6086419_7_58_7904">
          31
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_58_8616">
          $
        </td>
<td id="t6086419_7_58_9328">
          33
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_58_10274">
          $
        </td>
<td id="t6086419_7_58_11221">
          30
        </td>
<td>
</td>
</tr>
<tr>
<td id="t6086419_7_59_3932">
          Churn
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_59_5260">
          6.65
        </td>
<td id="t6086419_7_59_5579">
          %
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_59_6539">
          6.38
        </td>
<td id="t6086419_7_59_6880">
          %
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_59_7904">
          8.16
        </td>
<td id="t6086419_7_59_8260">
          %
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_59_9328">
          6.62
        </td>
<td id="t6086419_7_59_9801">
          %
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_59_11221">
          8.51
        </td>
<td id="t6086419_7_59_12221">
          %
        </td>
</tr>
<tr>
<td id="t6086419_7_60_3932">
          Net additions (losses) (in thousands)
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_60_5260">
          666
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_60_6539">
          777
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_60_7904">
          (329
        </td>
<td id="t6086419_7_60_8260">
          )
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_60_9328">
          2,117
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_60_11221">
          (667
        </td>
<td id="t6086419_7_60_12221">
          )
        </td>
</tr>
<tr>
<td id="t6086419_7_61_3932">
          End of period subscribers (in thousands)
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_61_5260">
          5,714
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_61_6539">
          5,048
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_61_7904">
          3,911
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_61_9328">
          5,714
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_61_11221">
          3,911
        </td>
<td>
</td>
</tr>
<tr>
<td id="t6086419_7_62_3932">
          Hours per subscriber
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_62_5260">
          22
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_62_6539">
          19
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_62_7904">
          14
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_62_9328">
          19
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_62_11221">
          13
        </td>
<td>
</td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
           
        </td>
</tr>
<tr>
<td id="t6086419_7_64_3932">
<i><b>Wholesale and Affiliate Subscribers</b></i>
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
</tr>
<tr>
<td id="t6086419_7_65_3932">
          Net (losses) additions (in thousands)
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_65_5260">
          (410
        </td>
<td id="t6086419_7_65_5579">
          )
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_65_6539">
          (43
        </td>
<td id="t6086419_7_65_6880">
          )
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_65_7904">
          130
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_65_9328">
          (59
        </td>
<td id="t6086419_7_65_9801">
          )
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_65_11221">
          326
        </td>
<td>
</td>
</tr>
<tr>
<td id="t6086419_7_66_3932">
          End of period subscribers (in thousands)
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_66_5260">
          8,931
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_66_6539">
          9,341
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_66_7904">
          8,844
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_66_9328">
          8,931
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_66_11221">
          8,844
        </td>
<td>
</td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
           
        </td>
</tr>
<tr>
<td id="t6086419_7_68_3932">
<i><b>Total Subscribers</b></i>
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
</tr>
<tr>
<td id="t6086419_7_69_3932">
          Net losses (in thousands)
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_69_5260">
          (545
        </td>
<td id="t6086419_7_69_5579">
          )
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_69_6539">
          (257
        </td>
<td id="t6086419_7_69_6880">
          )
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_69_7904">
          (1,321
        </td>
<td id="t6086419_7_69_8260">
          )
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_69_9328">
          (984
        </td>
<td id="t6086419_7_69_9801">
          )
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_69_11221">
          (3,309
        </td>
<td id="t6086419_7_69_12221">
          )
        </td>
</tr>
<tr>
<td id="t6086419_7_70_3932">
          End of period subscribers (in thousands)
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_70_5260">
          48,281
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_70_6539">
          48,826
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_70_7904">
          50,538
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_70_9328">
          48,281
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_7_70_11221">
          50,538
        </td>
<td>
</td>
</tr>
</table>
<table cellspacing="0" id="t6086419_8">
<tr>
<td colspan="21" id="t6086419_8_0_14285">
<i><b>Sprint Nextel Corporation</b></i>
</td>
</tr>
<tr>
<td colspan="21" id="t6086419_8_1_14285">
<b>WIRELINE STATEMENTS OF OPERATIONS AND STATISTICS (Unaudited)</b>
</td>
</tr>
<tr>
<td colspan="21" id="t6086419_8_2_14285">
<i>(Millions)</i>
</td>
</tr>
<tr>
<td colspan="21" id="t6086419_8_3_14285">
<b>TABLE NO. 7</b>
</td>
</tr>
<tr>
<td>
</td>
<td>
           
        </td>
<td colspan="11" id="t6086419_8_4_8656">
          Quarter Ended
        </td>
<td>
           
        </td>
<td colspan="7" id="t6086419_8_4_14285">
          Year To Date
        </td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="3" id="t6086419_8_5_6002">
          September 30,
        </td>
<td>
           
        </td>
<td colspan="3" id="t6086419_8_5_7344">
          June 30,
        </td>
<td>
           
        </td>
<td colspan="3" id="t6086419_8_5_8656">
          September 30,
        </td>
<td>
</td>
<td colspan="3" id="t6086419_8_5_11302">
          September 30,
        </td>
<td>
           
        </td>
<td colspan="3" id="t6086419_8_5_14285">
          September 30,
        </td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="3" id="t6086419_8_6_6002">
          2009
        </td>
<td>
</td>
<td colspan="3" id="t6086419_8_6_7344">
          2009
        </td>
<td>
</td>
<td colspan="3" id="t6086419_8_6_8656">
          2008
        </td>
<td>
</td>
<td colspan="3" id="t6086419_8_6_11302">
          2009
        </td>
<td>
</td>
<td colspan="3" id="t6086419_8_6_14285">
          2008
        </td>
</tr>
<tr>
<td id="t6086419_8_7_3925">
<b>Net Operating Revenues</b>
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
</tr>
<tr>
<td id="t6086419_8_8_3925">
          Voice
        </td>
<td>
</td>
<td id="t6086419_8_8_4617">
          $
        </td>
<td id="t6086419_8_8_5310">
          648
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_8_8_6348">
          $
        </td>
<td id="t6086419_8_8_6695">
          644
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_8_8_7668">
          $
        </td>
<td id="t6086419_8_8_7993">
          755
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_8_8_8988">
          $
        </td>
<td id="t6086419_8_8_9320">
          1,952
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_8_8_12293">
          $
        </td>
<td id="t6086419_8_8_13285">
          2,365
        </td>
<td>
</td>
</tr>
<tr>
<td id="t6086419_8_9_3925">
          Data
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_8_9_5310">
          150
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_8_9_6695">
          171
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_8_9_7993">
          231
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_8_9_9320">
          520
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_8_9_13285">
          750
        </td>
<td>
</td>
</tr>
<tr>
<td id="t6086419_8_10_3925">
          Internet
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_8_10_5310">
          585
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_8_10_6695">
          583
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_8_10_7993">
          556
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_8_10_9320">
          1,745
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_8_10_13285">
          1,580
        </td>
<td>
</td>
</tr>
<tr>
<td id="t6086419_8_11_3925">
          Other
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_8_11_5310">
          28
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_8_11_6695">
          30
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_8_11_7993">
          34
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_8_11_9320">
          87
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_8_11_13285">
          116
        </td>
<td>
           
        </td>
</tr>
<tr>
<td id="t6086419_8_12_3925">
          Total net operating revenues
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_8_12_5310">
          1,411
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_8_12_6695">
          1,428
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_8_12_7993">
          1,576
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_8_12_9320">
          4,304
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_8_12_13285">
          4,811
        </td>
<td>
           
        </td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
           
        </td>
</tr>
<tr>
<td id="t6086419_8_14_3925">
<b>Net Operating Expenses</b>
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
</tr>
<tr>
<td id="t6086419_8_15_3925">
          Costs of services and products
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_8_15_5310">
          924
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_8_15_6695">
          899
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_8_15_7993">
          1,070
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_8_15_9320">
          2,776
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_8_15_13285">
          3,218
        </td>
<td>
</td>
</tr>
<tr>
<td id="t6086419_8_16_3925">
          Selling, general and administrative
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_8_16_5310">
          163
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_8_16_6695">
          177
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_8_16_7993">
          243
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_8_16_9320">
          566
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_8_16_13285">
          744
        </td>
<td>
</td>
</tr>
<tr>
<td id="t6086419_8_17_3925">
          Depreciation
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_8_17_5310">
          147
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_8_17_6695">
          146
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_8_17_7993">
          143
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_8_17_9320">
          424
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_8_17_13285">
          404
        </td>
<td>
</td>
</tr>
<tr>
<td id="t6086419_8_18_3925">
          Other, net
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_8_18_5310">
          (18
        </td>
<td id="t6086419_8_18_6002">
          )
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_8_18_6695">
          (2
        </td>
<td id="t6086419_8_18_7344">
          )
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_8_18_7993">
          -
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_8_18_9320">
          53
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_8_18_13285">
          67
        </td>
<td>
           
        </td>
</tr>
<tr>
<td id="t6086419_8_19_3925">
          Total net operating expenses
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_8_19_5310">
          1,216
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_8_19_6695">
          1,220
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_8_19_7993">
          1,456
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_8_19_9320">
          3,819
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_8_19_13285">
          4,433
        </td>
<td>
           
        </td>
</tr>
<tr>
<td id="t6086419_8_20_3925">
<b>Operating Income</b>
</td>
<td>
           
        </td>
<td id="t6086419_8_20_4617">
          $
        </td>
<td id="t6086419_8_20_5310">
          195
        </td>
<td>
           
        </td>
<td>
           
        </td>
<td id="t6086419_8_20_6348">
          $
        </td>
<td id="t6086419_8_20_6695">
          208
        </td>
<td>
           
        </td>
<td>
           
        </td>
<td id="t6086419_8_20_7668">
          $
        </td>
<td id="t6086419_8_20_7993">
          120
        </td>
<td>
           
        </td>
<td>
           
        </td>
<td id="t6086419_8_20_8988">
          $
        </td>
<td id="t6086419_8_20_9320">
          485
        </td>
<td>
           
        </td>
<td>
           
        </td>
<td id="t6086419_8_20_12293">
          $
        </td>
<td id="t6086419_8_20_13285">
          378
        </td>
<td>
           
        </td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
           
        </td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
           
        </td>
</tr>
<tr>
<td>
           
        </td>
<td>
           
        </td>
<td colspan="3">
           
        </td>
<td>
           
        </td>
<td colspan="3">
           
        </td>
<td>
           
        </td>
<td colspan="3">
           
        </td>
<td>
           
        </td>
<td colspan="3">
           
        </td>
<td>
           
        </td>
<td colspan="3">
           
        </td>
</tr>
<tr>
<td id="t6086419_8_24_3925">
<i><b>NON-GAAP RECONCILIATION</b></i>
</td>
<td>
</td>
<td colspan="11" id="t6086419_8_24_8656">
          Quarter Ended
        </td>
<td>
</td>
<td colspan="7" id="t6086419_8_24_14285">
          Year To Date
        </td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="3" id="t6086419_8_25_6002">
          September 30,
        </td>
<td>
</td>
<td colspan="3" id="t6086419_8_25_7344">
          June 30,
        </td>
<td>
</td>
<td colspan="3" id="t6086419_8_25_8656">
          September 30,
        </td>
<td>
</td>
<td colspan="3" id="t6086419_8_25_11302">
          September 30,
        </td>
<td>
</td>
<td colspan="3" id="t6086419_8_25_14285">
          September 30,
        </td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="3" id="t6086419_8_26_6002">
          2009
        </td>
<td>
</td>
<td colspan="3" id="t6086419_8_26_7344">
          2009
        </td>
<td>
</td>
<td colspan="3" id="t6086419_8_26_8656">
          2008
        </td>
<td>
</td>
<td colspan="3" id="t6086419_8_26_11302">
          2009
        </td>
<td>
</td>
<td colspan="3" id="t6086419_8_26_14285">
          2008
        </td>
</tr>
<tr>
<td id="t6086419_8_27_3925">
<b>Operating Income</b>
</td>
<td>
</td>
<td id="t6086419_8_27_4617">
          $
        </td>
<td id="t6086419_8_27_5310">
          195
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_8_27_6348">
          $
        </td>
<td id="t6086419_8_27_6695">
          208
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_8_27_7668">
          $
        </td>
<td id="t6086419_8_27_7993">
          120
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_8_27_8988">
          $
        </td>
<td id="t6086419_8_27_9320">
          485
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_8_27_12293">
          $
        </td>
<td id="t6086419_8_27_13285">
          378
        </td>
<td>
</td>
</tr>
<tr>
<td id="t6086419_8_28_3925">
          Severance and exit costs <sup>(4)</sup>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_8_28_5310">
          7
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_8_28_6695">
          (2
        </td>
<td id="t6086419_8_28_7344">
          )
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_8_28_7993">
          2
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_8_28_9320">
          78
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_8_28_13285">
          69
        </td>
<td>
</td>
</tr>
<tr>
<td id="t6086419_8_29_3925">
          Asset impairments and abandonments
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_8_29_5310">
          -
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_8_29_6695">
          -
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_8_29_7993">
          (2
        </td>
<td id="t6086419_8_29_8656">
          )
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_8_29_9320">
          -
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_8_29_13285">
          (2
        </td>
<td id="t6086419_8_29_14285">
          )
        </td>
</tr>
<tr>
<td id="t6086419_8_30_3925">
          Depreciation
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_8_30_5310">
          147
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_8_30_6695">
          146
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_8_30_7993">
          143
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_8_30_9320">
          424
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_8_30_13285">
          404
        </td>
<td>
</td>
</tr>
<tr>
<td id="t6086419_8_31_3925">
          Access costs<sup> (6)</sup>
</td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_8_31_5310">
          (25
        </td>
<td id="t6086419_8_31_6002">
          )
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_8_31_6695">
          -
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_8_31_7993">
          -
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_8_31_9320">
          (25
        </td>
<td id="t6086419_8_31_11302">
          )
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_8_31_13285">
          -
        </td>
<td>
           
        </td>
</tr>
<tr>
<td id="t6086419_8_32_3925">
<b>Adjusted OIBDA*</b>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_8_32_5310">
          324
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_8_32_6695">
          352
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_8_32_7993">
          263
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_8_32_9320">
          962
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_8_32_13285">
          849
        </td>
<td>
</td>
</tr>
<tr>
<td id="t6086419_8_33_3925">
          Capital expenditures <sup>(2)</sup>
</td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_8_33_5310">
          72
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_8_33_6695">
          47
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_8_33_7993">
          81
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_8_33_9320">
          196
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_8_33_13285">
          342
        </td>
<td>
           
        </td>
</tr>
<tr>
<td id="t6086419_8_34_3925">
<b>Adjusted OIBDA* less Capex</b>
</td>
<td>
</td>
<td id="t6086419_8_34_4617">
          $
        </td>
<td id="t6086419_8_34_5310">
          252
        </td>
<td>
           
        </td>
<td>
</td>
<td id="t6086419_8_34_6348">
          $
        </td>
<td id="t6086419_8_34_6695">
          305
        </td>
<td>
           
        </td>
<td>
</td>
<td id="t6086419_8_34_7668">
          $
        </td>
<td id="t6086419_8_34_7993">
          182
        </td>
<td>
           
        </td>
<td>
</td>
<td id="t6086419_8_34_8988">
          $
        </td>
<td id="t6086419_8_34_9320">
          766
        </td>
<td>
           
        </td>
<td>
</td>
<td id="t6086419_8_34_12293">
          $
        </td>
<td id="t6086419_8_34_13285">
          507
        </td>
<td>
           
        </td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
           
        </td>
</tr>
<tr>
<td id="t6086419_8_36_3925">
<b>Adjusted OIBDA Margin*</b>
</td>
<td>
           
        </td>
<td>
           
        </td>
<td id="t6086419_8_36_5310">
          23.0
        </td>
<td id="t6086419_8_36_6002">
          %
        </td>
<td>
           
        </td>
<td>
           
        </td>
<td id="t6086419_8_36_6695">
          24.6
        </td>
<td id="t6086419_8_36_7344">
          %
        </td>
<td>
           
        </td>
<td>
           
        </td>
<td id="t6086419_8_36_7993">
          16.7
        </td>
<td id="t6086419_8_36_8656">
          %
        </td>
<td>
           
        </td>
<td>
           
        </td>
<td id="t6086419_8_36_9320">
          22.4
        </td>
<td id="t6086419_8_36_11302">
          %
        </td>
<td>
           
        </td>
<td>
           
        </td>
<td id="t6086419_8_36_13285">
          17.6
        </td>
<td id="t6086419_8_36_14285">
          %
        </td>
</tr>
</table>
<table cellspacing="0" id="t6086419_9">
<tr>
<td colspan="9" id="t6086419_9_0_7366">
<i><b>Sprint Nextel Corporation</b></i>
</td>
<td>
           
        </td>
<td colspan="3">
</td>
<td>
           
        </td>
<td colspan="3">
</td>
<td>
           
        </td>
<td colspan="3">
</td>
</tr>
<tr>
<td colspan="9" id="t6086419_9_1_7366">
<b>CONDENSED CONSOLIDATED CASH FLOW INFORMATION (Unaudited)</b>
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
</tr>
<tr>
<td colspan="9" id="t6086419_9_2_7366">
<i>(Millions)</i>
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
</tr>
<tr>
<td colspan="9" id="t6086419_9_3_7366">
<b>TABLE NO. 8</b>
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
</tr>
<tr>
<td>
</td>
<td>
           
        </td>
<td colspan="7" id="t6086419_9_4_7366">
          Year to Date Period Ended
        </td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="3" id="t6086419_9_5_6169">
          September 30,
        </td>
<td>
           
        </td>
<td colspan="3" id="t6086419_9_5_7366">
          September 30,
        </td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
</tr>
<tr>
<td>
           
        </td>
<td>
           
        </td>
<td colspan="3" id="t6086419_9_6_6169">
          2009
        </td>
<td>
           
        </td>
<td colspan="3" id="t6086419_9_6_7366">
          2008
        </td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
</tr>
<tr>
<td id="t6086419_9_7_4571">
<b>Operating Activities</b>
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
</tr>
<tr>
<td id="t6086419_9_8_4571">
          Net loss
        </td>
<td>
</td>
<td id="t6086419_9_8_5220">
          $
        </td>
<td id="t6086419_9_8_5869">
          (1,456
        </td>
<td id="t6086419_9_8_6169">
          )
        </td>
<td>
</td>
<td id="t6086419_9_8_6469">
          $
        </td>
<td id="t6086419_9_8_7069">
          (1,175
        </td>
<td id="t6086419_9_8_7366">
          )
        </td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
</tr>
<tr>
<td id="t6086419_9_9_4571">
          Depreciation and amortization
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_9_9_5869">
          5,614
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_9_9_7069">
          6,415
        </td>
<td>
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
</tr>
<tr>
<td id="t6086419_9_10_4571">
          Provision for losses on accounts receivable
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_9_10_5869">
          266
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_9_10_7069">
          559
        </td>
<td>
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
</tr>
<tr>
<td id="t6086419_9_11_4571">
          Share-based compensation expense
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_9_11_5869">
          61
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_9_11_7069">
          207
        </td>
<td>
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
</tr>
<tr>
<td id="t6086419_9_12_4571">
          Deferred and other income taxes
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_9_12_5869">
          (993
        </td>
<td id="t6086419_9_12_6169">
          )
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_9_12_7069">
          (747
        </td>
<td id="t6086419_9_12_7366">
          )
        </td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
</tr>
<tr>
<td id="t6086419_9_13_4571">
          Equity in losses of unconsolidated investments and other, net
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_9_13_5869">
          587
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_9_13_7069">
          17
        </td>
<td>
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
</tr>
<tr>
<td id="t6086419_9_14_4571">
          Gains from asset dispositions and exchanges
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_9_14_5869">
          (60
        </td>
<td id="t6086419_9_14_6169">
          )
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_9_14_7069">
          (29
        </td>
<td id="t6086419_9_14_7366">
          )
        </td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
</tr>
<tr>
<td id="t6086419_9_15_4571">
          Contribution to pension plan
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_9_15_5869">
          (200
        </td>
<td id="t6086419_9_15_6169">
          )
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_9_15_7069">
          -
        </td>
<td>
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
</tr>
<tr>
<td id="t6086419_9_16_4571">
          Other, net
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_9_16_5869">
          (143
        </td>
<td id="t6086419_9_16_6169">
          )
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_9_16_7069">
          (146
        </td>
<td id="t6086419_9_16_7366">
          )
        </td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
</tr>
<tr>
<td id="t6086419_9_17_4571">
          Net cash provided by operating activities
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_9_17_5869">
          3,676
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_9_17_7069">
          5,101
        </td>
<td>
           
        </td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
           
        </td>
</tr>
<tr>
<td id="t6086419_9_19_4571">
<b>Investing Activities</b>
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
</tr>
<tr>
<td id="t6086419_9_20_4571">
          Capital expenditures
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_9_20_5869">
          (1,119
        </td>
<td id="t6086419_9_20_6169">
          )
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_9_20_7069">
          (3,272
        </td>
<td id="t6086419_9_20_7366">
          )
        </td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
</tr>
<tr>
<td id="t6086419_9_21_4571">
          Expenditures relating to FCC licenses
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_9_21_5869">
          (471
        </td>
<td id="t6086419_9_21_6169">
          )
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_9_21_7069">
          (655
        </td>
<td id="t6086419_9_21_7366">
          )
        </td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
</tr>
<tr>
<td id="t6086419_9_22_4571">
          Proceeds from sales and exchanges of assets
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_9_22_5869">
          57
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_9_22_7069">
          76
        </td>
<td>
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
</tr>
<tr>
<td id="t6086419_9_23_4571">
          Change in short-term investments, net
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_9_23_5869">
          (532
        </td>
<td id="t6086419_9_23_6169">
          )
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_9_23_7069">
          113
        </td>
<td>
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
</tr>
<tr>
<td id="t6086419_9_24_4571">
          Other, net
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_9_24_5869">
          (7
        </td>
<td id="t6086419_9_24_6169">
          )
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_9_24_7069">
          (10
        </td>
<td id="t6086419_9_24_7366">
          )
        </td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
</tr>
<tr>
<td id="t6086419_9_25_4571">
          Net cash used in investing activities
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_9_25_5869">
          (2,072
        </td>
<td id="t6086419_9_25_6169">
          )
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_9_25_7069">
          (3,748
        </td>
<td id="t6086419_9_25_7366">
          )
        </td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
           
        </td>
</tr>
<tr>
<td id="t6086419_9_27_4571">
<b>Financing Activities</b>
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
</tr>
<tr>
<td id="t6086419_9_28_4571">
          Borrowings under credit facility
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_9_28_5869">
          -
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_9_28_7069">
          2,500
        </td>
<td>
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
</tr>
<tr>
<td id="t6086419_9_29_4571">
          Repayments under credit facility
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_9_29_5869">
          -
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_9_29_7069">
          (500
        </td>
<td id="t6086419_9_29_7366">
          )
        </td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
</tr>
<tr>
<td id="t6086419_9_30_4571">
          Proceeds from issuance of commercial paper
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_9_30_5869">
          -
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_9_30_7069">
          681
        </td>
<td>
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
</tr>
<tr>
<td id="t6086419_9_31_4571">
          Maturities of commercial paper
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_9_31_5869">
          -
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_9_31_7069">
          (1,060
        </td>
<td id="t6086419_9_31_7366">
          )
        </td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
</tr>
<tr>
<td id="t6086419_9_32_4571">
          Proceeds from issuance of debt securities
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_9_32_5869">
          1,281
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_9_32_7069">
          -
        </td>
<td>
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
</tr>
<tr>
<td id="t6086419_9_33_4571">
          Retirements and payments of debt and capital leases
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_9_33_5869">
          (1,214
        </td>
<td id="t6086419_9_33_6169">
          )
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_9_33_7069">
          (1,797
        </td>
<td id="t6086419_9_33_7366">
          )
        </td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
</tr>
<tr>
<td id="t6086419_9_34_4571">
          Proceeds from financing obligation
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_9_34_5869">
          22
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_9_34_7069">
          645
        </td>
<td>
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
</tr>
<tr>
<td id="t6086419_9_35_4571">
          Proceeds from issuance of common shares, net
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_9_35_5869">
          -
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_9_35_7069">
          48
        </td>
<td>
           
        </td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
</tr>
<tr>
<td id="t6086419_9_36_4571">
          Net cash provided by financing activities
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_9_36_5869">
          89
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_9_36_7069">
          517
        </td>
<td>
           
        </td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
           
        </td>
</tr>
<tr>
<td id="t6086419_9_38_4571">
<b>Net Increase in Cash and Cash Equivalents</b>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_9_38_5869">
          1,693
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_9_38_7069">
          1,870
        </td>
<td>
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
           
        </td>
</tr>
<tr>
<td id="t6086419_9_40_4571">
<b>Cash and Cash Equivalents, beginning of period</b>
</td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_9_40_5869">
          3,691
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_9_40_7069">
          2,246
        </td>
<td>
           
        </td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
           
        </td>
</tr>
<tr>
<td id="t6086419_9_42_4571">
<b>Cash and Cash Equivalents, end of period</b>
</td>
<td>
           
        </td>
<td id="t6086419_9_42_5220">
          $
        </td>
<td id="t6086419_9_42_5869">
          5,384
        </td>
<td>
           
        </td>
<td>
           
        </td>
<td id="t6086419_9_42_6469">
          $
        </td>
<td id="t6086419_9_42_7069">
          4,116
        </td>
<td>
           
        </td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
           
        </td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
           
        </td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
           
        </td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
           
        </td>
</tr>
<tr>
<td colspan="21" id="t6086419_9_47_29854">
<b>RECONCILIATION TO FREE CASH FLOW (NON-GAAP)</b>
</td>
</tr>
<tr>
<td colspan="21" id="t6086419_9_48_29854">
<i>(Millions)</i>
</td>
</tr>
<tr>
<td colspan="21" id="t6086419_9_49_29854">
<b>TABLE NO. 9</b>
</td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="11" id="t6086419_9_50_8557">
          Quarter Ended
        </td>
<td>
</td>
<td colspan="7" id="t6086419_9_50_29854">
          Year to Date
        </td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="3" id="t6086419_9_51_6169">
          September 30,
        </td>
<td>
</td>
<td colspan="3" id="t6086419_9_51_7366">
          June 30,
        </td>
<td>
</td>
<td colspan="3" id="t6086419_9_51_8557">
          September 30,
        </td>
<td>
</td>
<td colspan="3" id="t6086419_9_51_14301">
          September 30,
        </td>
<td>
</td>
<td colspan="3" id="t6086419_9_51_29854">
          September 30,
        </td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="3" id="t6086419_9_52_6169">
          2009
        </td>
<td>
</td>
<td colspan="3" id="t6086419_9_52_7366">
          2009
        </td>
<td>
</td>
<td colspan="3" id="t6086419_9_52_8557">
          2008
        </td>
<td>
</td>
<td colspan="3" id="t6086419_9_52_14301">
          2009
        </td>
<td>
</td>
<td colspan="3" id="t6086419_9_52_29854">
          2008
        </td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
           
        </td>
</tr>
<tr>
<td id="t6086419_9_54_4571">
<b>Net Cash Provided by Operating Activities</b>
</td>
<td>
</td>
<td id="t6086419_9_54_5220">
          $
        </td>
<td id="t6086419_9_54_5869">
          1,161
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_9_54_6469">
          $
        </td>
<td id="t6086419_9_54_7069">
          1,152
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_9_54_7664">
          $
        </td>
<td id="t6086419_9_54_8260">
          1,915
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_9_54_8855">
          $
        </td>
<td id="t6086419_9_54_9450">
          3,676
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_9_54_19152">
          $
        </td>
<td id="t6086419_9_54_28854">
          5,101
        </td>
<td>
</td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
           
        </td>
</tr>
<tr>
<td id="t6086419_9_56_4571">
          Capital expenditures
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_9_56_5869">
          (402
        </td>
<td id="t6086419_9_56_6169">
          )
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_9_56_7069">
          (340
        </td>
<td id="t6086419_9_56_7366">
          )
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_9_56_8260">
          (703
        </td>
<td id="t6086419_9_56_8557">
          )
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_9_56_9450">
          (1,119
        </td>
<td id="t6086419_9_56_14301">
          )
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_9_56_28854">
          (3,272
        </td>
<td id="t6086419_9_56_29854">
          )
        </td>
</tr>
<tr>
<td id="t6086419_9_57_4571">
          Expenditures relating to FCC licenses
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_9_57_5869">
          (143
        </td>
<td id="t6086419_9_57_6169">
          )
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_9_57_7069">
          (138
        </td>
<td id="t6086419_9_57_7366">
          )
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_9_57_8260">
          (187
        </td>
<td id="t6086419_9_57_8557">
          )
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_9_57_9450">
          (471
        </td>
<td id="t6086419_9_57_14301">
          )
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_9_57_28854">
          (655
        </td>
<td id="t6086419_9_57_29854">
          )
        </td>
</tr>
<tr>
<td id="t6086419_9_58_4571">
          Proceeds from sales and exchanges of assets
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_9_58_5869">
          51
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_9_58_7069">
          5
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_9_58_8260">
          40
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_9_58_9450">
          57
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_9_58_28854">
          76
        </td>
<td>
</td>
</tr>
<tr>
<td id="t6086419_9_59_4571">
          Other investing activities, net
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_9_59_5869">
          (3
        </td>
<td id="t6086419_9_59_6169">
          )
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_9_59_7069">
          (3
        </td>
<td id="t6086419_9_59_7366">
          )
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_9_59_8260">
          (6
        </td>
<td id="t6086419_9_59_8557">
          )
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_9_59_9450">
          (7
        </td>
<td id="t6086419_9_59_14301">
          )
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_9_59_28854">
          (10
        </td>
<td id="t6086419_9_59_29854">
          )
        </td>
</tr>
<tr>
<td id="t6086419_9_60_4571">
<b>Free Cash Flow*</b>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_9_60_5869">
          664
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_9_60_7069">
          676
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_9_60_8260">
          1,059
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_9_60_9450">
          2,136
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_9_60_28854">
          1,240
        </td>
<td>
</td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
           
        </td>
</tr>
<tr>
<td id="t6086419_9_62_4571">
          Increase (decrease) in debt and other, net
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_9_62_5869">
          671
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_9_62_7069">
          (604
        </td>
<td id="t6086419_9_62_7366">
          )
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_9_62_8260">
          (393
        </td>
<td id="t6086419_9_62_8557">
          )
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_9_62_9450">
          89
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_9_62_28854">
          469
        </td>
<td>
</td>
</tr>
<tr>
<td id="t6086419_9_63_4571">
          Proceeds from issuance of common shares, net
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_9_63_5869">
          -
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_9_63_7069">
          -
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_9_63_8260">
          22
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_9_63_9450">
          -
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_9_63_28854">
          48
        </td>
<td>
           
        </td>
</tr>
<tr>
<td id="t6086419_9_64_4571">
<b>Net Increase in Cash, Cash Equivalents and Short-Term Investments</b>
</td>
<td>
</td>
<td id="t6086419_9_64_5220">
          $
        </td>
<td id="t6086419_9_64_5869">
          1,335
        </td>
<td>
           
        </td>
<td>
</td>
<td id="t6086419_9_64_6469">
          $
        </td>
<td id="t6086419_9_64_7069">
          72
        </td>
<td>
           
        </td>
<td>
</td>
<td id="t6086419_9_64_7664">
          $
        </td>
<td id="t6086419_9_64_8260">
          688
        </td>
<td>
           
        </td>
<td>
</td>
<td id="t6086419_9_64_8855">
          $
        </td>
<td id="t6086419_9_64_9450">
          2,225
        </td>
<td>
           
        </td>
<td>
</td>
<td id="t6086419_9_64_19152">
          $
        </td>
<td id="t6086419_9_64_28854">
          1,757
        </td>
<td>
           
        </td>
</tr>
</table>
<table cellspacing="0" id="t6086419_10">
<tr>
<td colspan="9" id="t6086419_10_0_11045">
<i><b>Sprint Nextel Corporation</b></i>
</td>
</tr>
<tr>
<td colspan="9" id="t6086419_10_1_11045">
<b>CONSOLIDATED BALANCE SHEETS (Unaudited)</b>
</td>
</tr>
<tr>
<td colspan="9" id="t6086419_10_2_11045">
<i>(Millions)</i>
</td>
</tr>
<tr>
<td colspan="9" id="t6086419_10_3_11045">
<b>TABLE NO. 10</b>
</td>
</tr>
<tr>
<td>
</td>
<td>
           
        </td>
<td colspan="3" id="t6086419_10_4_8320">
          September 30,
        </td>
<td>
           
        </td>
<td colspan="3" id="t6086419_10_4_11045">
          December 31,
        </td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="3" id="t6086419_10_5_8320">
          2009
        </td>
<td>
</td>
<td colspan="3" id="t6086419_10_5_11045">
          2008
        </td>
</tr>
<tr>
<td id="t6086419_10_6_6716">
<b>Assets</b>
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
</tr>
<tr>
<td id="t6086419_10_7_6716">
          Current assets
        </td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
</tr>
<tr>
<td id="t6086419_10_8_6716">
          Cash and cash equivalents
        </td>
<td>
</td>
<td id="t6086419_10_8_7462">
          $
        </td>
<td id="t6086419_10_8_8209">
          5,384
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_10_8_9238">
          $
        </td>
<td id="t6086419_10_8_10045">
          3,691
        </td>
<td>
</td>
</tr>
<tr>
<td id="t6086419_10_9_6716">
          Short-term investments
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_10_9_8209">
          559
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_10_9_10045">
          28
        </td>
<td>
</td>
</tr>
<tr>
<td id="t6086419_10_10_6716">
          Accounts and notes receivable, net
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_10_10_8209">
          3,155
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_10_10_10045">
          3,361
        </td>
<td>
</td>
</tr>
<tr>
<td id="t6086419_10_11_6716">
          Device and accessory inventory
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_10_11_8209">
          485
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_10_11_10045">
          528
        </td>
<td>
</td>
</tr>
<tr>
<td id="t6086419_10_12_6716">
          Deferred tax assets
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_10_12_8209">
          98
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_10_12_10045">
          93
        </td>
<td>
</td>
</tr>
<tr>
<td id="t6086419_10_13_6716">
          Prepaid expenses and other current assets
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_10_13_8209">
          578
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_10_13_10045">
          643
        </td>
<td>
           
        </td>
</tr>
<tr>
<td id="t6086419_10_14_6716">
          Total current assets
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_10_14_8209">
          10,259
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_10_14_10045">
          8,344
        </td>
<td>
</td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
           
        </td>
</tr>
<tr>
<td id="t6086419_10_16_6716">
          Investments
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_10_16_8209">
          3,732
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_10_16_10045">
          4,241
        </td>
<td>
</td>
</tr>
<tr>
<td id="t6086419_10_17_6716">
          Property, plant and equipment, net
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_10_17_8209">
          19,100
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_10_17_10045">
          22,373
        </td>
<td>
</td>
</tr>
<tr>
<td id="t6086419_10_18_6716">
          FCC licenses and trademarks
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_10_18_8209">
          19,790
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_10_18_10045">
          19,320
        </td>
<td>
</td>
</tr>
<tr>
<td id="t6086419_10_19_6716">
          Customer relationships, net
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_10_19_8209">
          812
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_10_19_10045">
          1,932
        </td>
<td>
</td>
</tr>
<tr>
<td id="t6086419_10_20_6716">
          Other intangible assets, net
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_10_20_8209">
          1,495
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_10_20_10045">
          1,634
        </td>
<td>
</td>
</tr>
<tr>
<td id="t6086419_10_21_6716">
          Other assets
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_10_21_8209">
          460
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_10_21_10045">
          408
        </td>
<td>
           
        </td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
           
        </td>
</tr>
<tr>
<td id="t6086419_10_23_6716">
          Total
        </td>
<td>
</td>
<td id="t6086419_10_23_7462">
          $
        </td>
<td id="t6086419_10_23_8209">
          55,648
        </td>
<td>
           
        </td>
<td>
</td>
<td id="t6086419_10_23_9238">
          $
        </td>
<td id="t6086419_10_23_10045">
          58,252
        </td>
<td>
           
        </td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
           
        </td>
</tr>
<tr>
<td id="t6086419_10_25_6716">
<b>Liabilities and Shareholders' Equity</b>
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
</tr>
<tr>
<td id="t6086419_10_26_6716">
          Current liabilities
        </td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
</tr>
<tr>
<td id="t6086419_10_27_6716">
          Accounts payable
        </td>
<td>
</td>
<td id="t6086419_10_27_7462">
          $
        </td>
<td id="t6086419_10_27_8209">
          2,161
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_10_27_9238">
          $
        </td>
<td id="t6086419_10_27_10045">
          2,138
        </td>
<td>
</td>
</tr>
<tr>
<td id="t6086419_10_28_6716">
          Accrued expenses and other current liabilities
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_10_28_8209">
          3,422
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_10_28_10045">
          3,525
        </td>
<td>
</td>
</tr>
<tr>
<td id="t6086419_10_29_6716">
          Current portion of long-term debt, financing and capital lease
          obligations
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_10_29_8209">
          765
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_10_29_10045">
          618
        </td>
<td>
           
        </td>
</tr>
<tr>
<td id="t6086419_10_30_6716">
          Total current liabilities
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_10_30_8209">
          6,348
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_10_30_10045">
          6,281
        </td>
<td>
</td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
           
        </td>
</tr>
<tr>
<td id="t6086419_10_32_6716">
          Long-term debt, financing and capital lease obligations
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_10_32_8209">
          20,892
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_10_32_10045">
          20,992
        </td>
<td>
</td>
</tr>
<tr>
<td id="t6086419_10_33_6716">
          Deferred tax liabilities
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_10_33_8209">
          6,385
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_10_33_10045">
          7,196
        </td>
<td>
</td>
</tr>
<tr>
<td id="t6086419_10_34_6716">
          Other liabilities
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_10_34_8209">
          3,789
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_10_34_10045">
          4,178
        </td>
<td>
           
        </td>
</tr>
<tr>
<td id="t6086419_10_35_6716">
          Total liabilities
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_10_35_8209">
          37,414
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_10_35_10045">
          38,647
        </td>
<td>
           
        </td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
           
        </td>
</tr>
<tr>
<td id="t6086419_10_37_6716">
          Shareholders' equity
        </td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
</td>
</tr>
<tr>
<td id="t6086419_10_38_6716">
          Common shares
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_10_38_8209">
          5,872
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_10_38_10045">
          5,902
        </td>
<td>
</td>
</tr>
<tr>
<td id="t6086419_10_39_6716">
          Paid-in capital
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_10_39_8209">
          47,085
        </td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_10_39_10045">
          47,314
        </td>
<td>
</td>
</tr>
<tr>
<td id="t6086419_10_40_6716">
          Treasury shares, at cost
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_10_40_8209">
          (1,168
        </td>
<td id="t6086419_10_40_8320">
          )
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_10_40_10045">
          (1,939
        </td>
<td id="t6086419_10_40_11045">
          )
        </td>
</tr>
<tr>
<td id="t6086419_10_41_6716">
          Accumulated deficit
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_10_41_8209">
          (33,067
        </td>
<td id="t6086419_10_41_8320">
          )
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_10_41_10045">
          (31,148
        </td>
<td id="t6086419_10_41_11045">
          )
        </td>
</tr>
<tr>
<td id="t6086419_10_42_6716">
          Accumulated other comprehensive loss
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_10_42_8209">
          (488
        </td>
<td id="t6086419_10_42_8320">
          )
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_10_42_10045">
          (524
        </td>
<td id="t6086419_10_42_11045">
          )
        </td>
</tr>
<tr>
<td id="t6086419_10_43_6716">
          Total shareholders' equity
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_10_43_8209">
          18,234
        </td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_10_43_10045">
          19,605
        </td>
<td>
           
        </td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
           
        </td>
</tr>
<tr>
<td id="t6086419_10_45_6716">
          Total
        </td>
<td>
</td>
<td id="t6086419_10_45_7462">
          $
        </td>
<td id="t6086419_10_45_8209">
          55,648
        </td>
<td>
           
        </td>
<td>
</td>
<td id="t6086419_10_45_9238">
          $
        </td>
<td id="t6086419_10_45_10045">
          58,252
        </td>
<td>
           
        </td>
</tr>
<tr>
<td>
           
        </td>
<td>
           
        </td>
<td colspan="3">
           
        </td>
<td>
           
        </td>
<td colspan="3">
           
        </td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
           
        </td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
           
        </td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="3">
</td>
<td>
</td>
<td colspan="3">
           
        </td>
</tr>
<tr>
<td colspan="9" id="t6086419_10_50_11045">
<b>NET DEBT (NON-GAAP) (Unaudited)</b>
</td>
</tr>
<tr>
<td colspan="9" id="t6086419_10_51_11045">
<i>(Millions)</i>
</td>
</tr>
<tr>
<td colspan="9" id="t6086419_10_52_11045">
<b>TABLE NO. 11</b>
</td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="3" id="t6086419_10_53_8320">
          September 30,
        </td>
<td>
</td>
<td colspan="3" id="t6086419_10_53_11045">
          December 31,
        </td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="3" id="t6086419_10_54_8320">
          2009
        </td>
<td>
</td>
<td colspan="3" id="t6086419_10_54_11045">
          2008
        </td>
</tr>
<tr>
<td id="t6086419_10_55_6716">
          Total Debt
        </td>
<td>
</td>
<td id="t6086419_10_55_7462">
          $
        </td>
<td id="t6086419_10_55_8209">
          21,657
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_10_55_9238">
          $
        </td>
<td id="t6086419_10_55_10045">
          21,610
        </td>
<td>
</td>
</tr>
<tr>
<td id="t6086419_10_56_6716">
          Less: Cash and cash equivalents
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_10_56_8209">
          (5,384
        </td>
<td id="t6086419_10_56_8320">
          )
        </td>
<td>
</td>
<td>
</td>
<td id="t6086419_10_56_10045">
          (3,691
        </td>
<td id="t6086419_10_56_11045">
          )
        </td>
</tr>
<tr>
<td id="t6086419_10_57_6716">
          Less: Short-term investments
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_10_57_8209">
          (559
        </td>
<td id="t6086419_10_57_8320">
          )
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_10_57_10045">
          (28
        </td>
<td id="t6086419_10_57_11045">
          )
        </td>
</tr>
<tr>
<td id="t6086419_10_58_6716">
<b>Net Debt*</b>
</td>
<td>
</td>
<td id="t6086419_10_58_7462">
          $
        </td>
<td id="t6086419_10_58_8209">
          15,714
        </td>
<td>
           
        </td>
<td>
</td>
<td id="t6086419_10_58_9238">
          $
        </td>
<td id="t6086419_10_58_10045">
          17,891
        </td>
<td>
           
        </td>
</tr>
</table>
<table cellspacing="0" id="t6086419_11">
<tr>
<td colspan="8" id="t6086419_11_0_49348">
<i><b>Sprint Nextel Corporation</b></i>
</td>
</tr>
<tr>
<td colspan="8" id="t6086419_11_1_49348">
<b>SCHEDULE OF DEBT (Unaudited)</b>
</td>
</tr>
<tr>
<td colspan="8" id="t6086419_11_2_49348">
<i>(Millions)</i>
</td>
</tr>
<tr>
<td colspan="8" id="t6086419_11_3_49348">
<b>TABLE NO. 12</b>
</td>
</tr>
<tr>
<td>
</td>
<td>
           
        </td>
<td colspan="2">
</td>
<td>
           
        </td>
<td>
</td>
<td>
           
        </td>
<td id="t6086419_11_4_49348">
          September 30,
        </td>
</tr>
<tr>
<td>
           
        </td>
<td>
           
        </td>
<td colspan="2">
           
        </td>
<td>
           
        </td>
<td>
           
        </td>
<td>
           
        </td>
<td id="t6086419_11_5_49348">
          2009
        </td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="2">
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
           
        </td>
</tr>
<tr>
<td id="t6086419_11_7_5454">
<p>
<b>ISSUER</b>
</p>
</td>
<td>
</td>
<td colspan="2" id="t6086419_11_7_7007">
<b>COUPON</b>
</td>
<td>
</td>
<td id="t6086419_11_7_8053">
<b>MATURITY</b>
</td>
<td>
</td>
<td id="t6086419_11_7_49348">
<b>PRINCIPAL</b>
</td>
</tr>
<tr>
<td id="t6086419_11_8_5454">
<b>Sprint Nextel Corporation</b>
</td>
<td>
</td>
<td colspan="2">
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
</tr>
<tr>
<td id="t6086419_11_9_5454">
          Floating Rate Notes due 2010
        </td>
<td>
</td>
<td id="t6086419_11_9_6659">
          0.683
        </td>
<td id="t6086419_11_9_7007">
          %
        </td>
<td>
</td>
<td id="t6086419_11_9_8053">
          06/28/2010
        </td>
<td>
</td>
<td id="t6086419_11_9_49348">
          750
        </td>
</tr>
<tr>
<td id="t6086419_11_10_5454">
          Bank Credit Facility
        </td>
<td>
</td>
<td id="t6086419_11_10_6659">
          3.000
        </td>
<td id="t6086419_11_10_7007">
          %
        </td>
<td>
</td>
<td id="t6086419_11_10_8053">
          12/19/2010
        </td>
<td>
</td>
<td id="t6086419_11_10_49348">
          1,000
        </td>
</tr>
<tr>
<td id="t6086419_11_11_5454">
          Export Development Canada Facility
        </td>
<td>
</td>
<td id="t6086419_11_11_6659">
          3.389
        </td>
<td id="t6086419_11_11_7007">
          %
        </td>
<td>
</td>
<td id="t6086419_11_11_8053">
          03/30/2012
        </td>
<td>
</td>
<td id="t6086419_11_11_49348">
          750
        </td>
</tr>
<tr>
<td id="t6086419_11_12_5454">
          6% Notes due 2016
        </td>
<td>
</td>
<td id="t6086419_11_12_6659">
          6.000
        </td>
<td id="t6086419_11_12_7007">
          %
        </td>
<td>
</td>
<td id="t6086419_11_12_8053">
          12/01/2016
        </td>
<td>
</td>
<td id="t6086419_11_12_49348">
          2,000
        </td>
</tr>
<tr>
<td id="t6086419_11_13_5454">
          9.25% Debentures due 2022
        </td>
<td>
</td>
<td id="t6086419_11_13_6659">
          9.250
        </td>
<td id="t6086419_11_13_7007">
          %
        </td>
<td>
</td>
<td id="t6086419_11_13_8053">
          04/15/2022
        </td>
<td>
</td>
<td id="t6086419_11_13_49348">
          200
        </td>
</tr>
<tr>
<td id="t6086419_11_14_5454">
          8.375% Notes due 2017
        </td>
<td>
</td>
<td id="t6086419_11_14_6659">
          8.375
        </td>
<td id="t6086419_11_14_7007">
          %
        </td>
<td>
</td>
<td id="t6086419_11_14_8053">
          08/15/2017
        </td>
<td>
</td>
<td id="t6086419_11_14_49348">
          1,300
        </td>
</tr>
<tr>
<td id="t6086419_11_15_5454">
<b>Sprint Nextel Corporation subtotal</b>
</td>
<td>
</td>
<td colspan="2">
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_11_15_49348">
<b>6,000</b>
</td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="2">
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
           
        </td>
</tr>
<tr>
<td id="t6086419_11_17_5454">
<b>Sprint Capital Corporation</b>
</td>
<td>
</td>
<td colspan="2">
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
</tr>
<tr>
<td id="t6086419_11_18_5454">
          7.625% Notes due 2011
        </td>
<td>
</td>
<td id="t6086419_11_18_6659">
          7.625
        </td>
<td id="t6086419_11_18_7007">
          %
        </td>
<td>
</td>
<td id="t6086419_11_18_8053">
          01/30/2011
        </td>
<td>
</td>
<td id="t6086419_11_18_49348">
          1,650
        </td>
</tr>
<tr>
<td id="t6086419_11_19_5454">
          8.375% Notes due 2012
        </td>
<td>
</td>
<td id="t6086419_11_19_6659">
          8.375
        </td>
<td id="t6086419_11_19_7007">
          %
        </td>
<td>
</td>
<td id="t6086419_11_19_8053">
          03/15/2012
        </td>
<td>
</td>
<td id="t6086419_11_19_49348">
          2,000
        </td>
</tr>
<tr>
<td id="t6086419_11_20_5454">
          6.9% Notes due 2019
        </td>
<td>
</td>
<td id="t6086419_11_20_6659">
          6.900
        </td>
<td id="t6086419_11_20_7007">
          %
        </td>
<td>
</td>
<td id="t6086419_11_20_8053">
          05/01/2019
        </td>
<td>
</td>
<td id="t6086419_11_20_49348">
          1,729
        </td>
</tr>
<tr>
<td id="t6086419_11_21_5454">
          6.875% Notes due 2028
        </td>
<td>
</td>
<td id="t6086419_11_21_6659">
          6.875
        </td>
<td id="t6086419_11_21_7007">
          %
        </td>
<td>
</td>
<td id="t6086419_11_21_8053">
          11/15/2028
        </td>
<td>
</td>
<td id="t6086419_11_21_49348">
          2,475
        </td>
</tr>
<tr>
<td id="t6086419_11_22_5454">
          8.75% Notes due 2032
        </td>
<td>
</td>
<td id="t6086419_11_22_6659">
          8.750
        </td>
<td id="t6086419_11_22_7007">
          %
        </td>
<td>
</td>
<td id="t6086419_11_22_8053">
          03/15/2032
        </td>
<td>
</td>
<td id="t6086419_11_22_49348">
          2,000
        </td>
</tr>
<tr>
<td id="t6086419_11_23_5454">
<b>Sprint Capital Corporation subtotal</b>
</td>
<td>
</td>
<td colspan="2">
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_11_23_49348">
<b>9,854</b>
</td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="2">
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
           
        </td>
</tr>
<tr>
<td id="t6086419_11_25_5454">
<b>Nextel Communications Inc.</b>
</td>
<td>
</td>
<td colspan="2">
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
</tr>
<tr>
<td id="t6086419_11_26_5454">
          6.875% Senior Serial Redeemable Notes due 2013
        </td>
<td>
</td>
<td id="t6086419_11_26_6659">
          6.875
        </td>
<td id="t6086419_11_26_7007">
          %
        </td>
<td>
</td>
<td id="t6086419_11_26_8053">
          10/31/2013
        </td>
<td>
</td>
<td id="t6086419_11_26_49348">
          1,473
        </td>
</tr>
<tr>
<td id="t6086419_11_27_5454">
          5.95% Senior Serial Redeemable Notes due 2014
        </td>
<td>
</td>
<td id="t6086419_11_27_6659">
          5.950
        </td>
<td id="t6086419_11_27_7007">
          %
        </td>
<td>
</td>
<td id="t6086419_11_27_8053">
          03/15/2014
        </td>
<td>
</td>
<td id="t6086419_11_27_49348">
          1,170
        </td>
</tr>
<tr>
<td id="t6086419_11_28_5454">
          7.375% Senior Serial Redeemable Notes due 2015
        </td>
<td>
</td>
<td id="t6086419_11_28_6659">
          7.375
        </td>
<td id="t6086419_11_28_7007">
          %
        </td>
<td>
</td>
<td id="t6086419_11_28_8053">
          08/01/2015
        </td>
<td>
</td>
<td id="t6086419_11_28_49348">
          2,137
        </td>
</tr>
<tr>
<td id="t6086419_11_29_5454">
<b>Nextel Communications Inc. subtotal</b>
</td>
<td>
</td>
<td colspan="2">
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_11_29_49348">
<b>4,780</b>
</td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="2">
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
           
        </td>
</tr>
<tr>
<td id="t6086419_11_31_5454">
<b>Tower financing obligation</b>
</td>
<td>
</td>
<td id="t6086419_11_31_6659">
          9.500
        </td>
<td id="t6086419_11_31_7007">
          %
        </td>
<td>
</td>
<td id="t6086419_11_31_8053">
          01/15/2030
        </td>
<td>
</td>
<td id="t6086419_11_31_49348">
<b>697</b>
</td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="2">
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
           
        </td>
</tr>
<tr>
<td id="t6086419_11_33_5454">
<b>Capital lease obligations and other</b>
</td>
<td>
</td>
<td colspan="2">
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_11_33_49348">
<b>197</b>
</td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="2">
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
           
        </td>
</tr>
<tr>
<td id="t6086419_11_35_5454">
<b>TOTAL PRINCIPAL</b>
</td>
<td>
</td>
<td colspan="2">
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_11_35_49348">
<b>21,528</b>
</td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="2">
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
           
        </td>
</tr>
<tr>
<td id="t6086419_11_37_5454">
<b>Net premiums</b>
</td>
<td>
</td>
<td colspan="2">
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_11_37_49348">
<b>129</b>
</td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td colspan="2">
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
           
        </td>
</tr>
<tr>
<td id="t6086419_11_39_5454">
<b>TOTAL DEBT</b>
</td>
<td>
</td>
<td colspan="2">
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td id="t6086419_11_39_49348">
<b>$ 21,657</b>
</td>
</tr>
</table>
<table cellspacing="0" id="t6086419_12">
<tr>
<td colspan="3" id="t6086419_12_0_508200">
<p>
<i><b>Sprint Nextel Corporation</b></i>
</p>
</td>
</tr>
<tr>
<td colspan="3" id="t6086419_12_1_508200">
<p>
<b>NOTES TO THE FINANCIAL INFORMATION (Unaudited)</b>
</p>
</td>
</tr>
<tr>
<td>
</td>
<td>
           
        </td>
<td>
</td>
</tr>
<tr>
<td id="t6086419_12_3_254100">
<p>
<sup>(1)</sup>
</p>
</td>
<td>
</td>
<td id="t6086419_12_3_508200">
<p>
            In the third quarter 2008 and year to date 2008, Adjusted OIBDA*
            and capital expenditures include $75 million and $227 million in
            non-recurring operating expenses and $134 million and $469 million
            in non-recurring capital expenditures, respectively, associated
            with the company's WiMAX efforts prior to the closing of the
            Clearwire transaction in 2008.
          </p>
</td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td>
           
        </td>
</tr>
<tr>
<td id="t6086419_12_5_254100">
<p>
<sup>(2)</sup>
</p>
</td>
<td>
</td>
<td id="t6086419_12_5_508200">
          Capital expenditures is an accrual based amount that includes the
          changes in unpaid capital expenditures and excludes capitalized
          interest. Cash paid for capital expenditures can be found in the
          condensed consolidated cash flow information on Table No. 8 and the
          reconciliation to free cash flow on Table No. 9.
        </td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td>
           
        </td>
</tr>
<tr>
<td id="t6086419_12_7_254100">
<p>
<sup>(3)</sup>
</p>
</td>
<td>
</td>
<td id="t6086419_12_7_508200">
<p>
            For the nine months ended September 30, 2009, a pre-tax charge of
            $154 million ($96 million after tax) was recorded related to
            Clearwire's issuance of shares to other investors, to finalize
            ownership percentages.
          </p>
</td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td>
           
        </td>
</tr>
<tr>
<td id="t6086419_12_9_254100">
<p>
<sup>(4)</sup>
</p>
</td>
<td>
</td>
<td id="t6086419_12_9_508200">
          For the nine months ended September 30, 2009 and 2008, we recorded
          severance and exit costs primarily related to work force reductions
          and continued organizational realignment initiatives.
        </td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td>
           
        </td>
</tr>
<tr>
<td id="t6086419_12_11_254100">
<p>
<sup>(5)</sup>
</p>
</td>
<td>
</td>
<td id="t6086419_12_11_508200">
          For the quarters ended September 30, 2009 and 2008, gains from asset
          dispositions and exchanges are primarily due to spectrum exchange
          transactions.
        </td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td>
           
        </td>
</tr>
<tr>
<td id="t6086419_12_13_254100">
<p>
<sup>(6)</sup>
</p>
</td>
<td>
</td>
<td id="t6086419_12_13_508200">
          Favorable developments during the third quarter of 2009 relating to
          disagreements with local exchange carriers resulted in a reduction
          of $25 million in expected access costs associated with prior
          periods.
        </td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td>
           
        </td>
</tr>
<tr>
<td id="t6086419_12_15_254100">
<p>
<sup>(7)</sup>
</p>
</td>
<td>
</td>
<td id="t6086419_12_15_508200">
<p>
            All merger and integration costs are related to the Sprint-Nextel
            merger and/or the PCS Affiliates and Nextel Partners' acquisitions
            and are generally non-recurring in nature. These expenses are
            classified as selling, general and administrative, cost of
            products, or equipment revenues, as appropriate, in our
            consolidated statement of operations.
          </p>
</td>
</tr>
</table>
<p>
</p>
<p></p>
<p>Source: <org value="NYSE:S" idsrc="xmltag.org">Sprint Nextel</org></p>
<p>
      Sprint Nextel<br />Media Relations:<br />James Fisher, 703-433-8677<br /><a href="mailto:james.w.fisher@sprint.com">james.w.fisher@sprint.com</a><br />or<br />Investor
      Relations:<br />Yijing Brentano, 800-259-3755<br /><a href="mailto:Investor.relations@sprint.com">Investor.relations@sprint.com</a>
</p>

				
				]]>
        	</description>
    	</item>		<item>
        	<title>Updating iTunes Extras and LP Content for Your Apple TV</title>
        	<link>http://support.apple.com/kb/HT3938</link>
        	<comments></comments>
	        <description>
    	        <![CDATA[
				
<p>Once you've received an email letting you know your updated iTunes Extras and iTunes LP content is available, here are the steps you can take to get it:</p><p>
1. Update to <a href="http://www.apple.com/itunes/download/">iTunes 9.0.2</a> or later and <a href="http://support.apple.com/kb/HT1600">Apple TV 3.0</a> or later.<br />
2. Open iTunes.<br />
3. Choose <strong>Store</strong> &gt; <strong>Check for available downloads</strong>.<br />
4. If prompted, enter your account name and password.<br />
5.&nbsp; Download the new iTunes Extras and iTunes LPs to your Mac or PC.<br />
6.&nbsp; Sync the movie or album that includes your updated iTunes Extras or iTunes LP to your Apple TV.</p>
<p><strong>Note</strong>: If you have checked for available downloads and none were available, make sure to check your email associated with your iTunes Store account. If you have previously purchased a non-compatible iTunes Extras or iTunes LP, you will be receiving an email from Apple with instructions on how to download the updated version of your content over the next couple of weeks.</p>

				
				]]>
        	</description>
    	</item>		<item>
        	<title>Apple TV 3.0 Software Update</title>
        	<link>http://www.apple.com/pr/library/2009/10/29appletv.html</link>
        	<comments></comments>
	        <description>
    	        <![CDATA[
				
<p>
<a href="http://www.apple.com/pr/products/appletv/appletv.html">Apple TV images</a>
</p>
<h1>Apple Introduces Apple TV 3.0 Software With Redesigned User Interface</h1>
<h2>Enjoy iTunes Extras, iTunes LP &amp; Genius Mixes on Your HD TV</h2>
<p>
CUPERTINO, California&mdash;October 29, 2009&mdash;Apple&reg; today introduced new Apple TV&reg; 3.0 software featuring a redesigned main menu that makes navigating your favorite content simpler and faster, and makes enjoying the largest selection of on-demand HD movie rentals and purchases, HD TV shows, music and podcasts from the iTunes&reg; Store even better on your TV. You can now enjoy iTunes Extras and iTunes LP in stunning fullscreen with your Apple TV, as well as listen to Genius Mixes and Internet radio through your home theater system. The new Apple TV software is available immediately free of charge to existing Apple TV owners, and Apple TV with 160GB capacity is available for just $229.
</p>
<p>
&ldquo;The new software for Apple TV features a simpler and faster interface that gives you instant access to your favorite content,&rdquo; said Eddy Cue, Apple&rsquo;s vice president of Internet Services. &ldquo;HD movies and HD TV shows from iTunes have been a huge hit with Apple TV customers, and with Apple TV 3.0 they get great new features including iTunes Extras, Genius Mixes and Internet radio.&rdquo;
</p>
<p>
The redesigned main menu on Apple TV gives you instant access to your favorite content. Recently rented or purchased movies, as well as other content including TV shows, music, podcasts, photos and YouTube, are accessible directly from the new main menu. The new software also allows Apple TV users to enjoy stunning fullscreen iTunes Extras and iTunes LP, including great new movie titles such as &ldquo;Star Trek&rdquo; or classics like &ldquo;The Wizard of Oz&rdquo; and albums such as Taylor Swift&rsquo;s &ldquo;Fearless (Platinum Edition)&rdquo; and Jack Johnson&rsquo;s &ldquo;En Concert.&rdquo; iTunes Extras gives movie fans great additional content such as deleted scenes, interviews and interactive galleries. iTunes LP is the next evolution of the music album, delivering a rich, immersive experience for select albums on the iTunes Store by combining beautiful design with expanded visual features like live performance videos, lyrics, artwork, liner notes, interviews, photos, album credits and more.
</p>
<p>
Now Apple TV users can enjoy Genius Mixes through their home theater system and listen to up to 12 endless mixes of songs that go great together, automatically generated from their iTunes library. Customers can also enjoy Internet radio, allowing them to browse and listen to thousands of Internet radio stations, as well as tag favorite stations to listen to later. Apple TV&rsquo;s support of HD photos is enhanced with iPhoto Events, which simplifies finding your favorite photos on Apple TV, as well as iPhoto&reg; Faces, which gives access to photos organized by people identified in iPhoto.
</p>
<p>
Apple TV users have direct access to a catalog of over 8,000 Hollywood films on iTunes including over 2,000 in stunning HD video available for rent or purchase. Users can also choose from a selection of 11 million songs, 10,000 music videos and over 50,000 TV episodes to purchase directly from their Apple TV or browse and enjoy the iTunes Store podcast directory of over 175,000 free video and audio podcasts. Purchases downloaded to Apple TV are automatically synced back to iTunes on the user&rsquo;s computer for enjoyment on their Mac&reg; or PC or all current generation iPods or iPhones.* iPod touch&reg; or iPhone&reg; users can download the free Remote app from the App Store to control their Apple TV with a simple tap or flick of the finger.
</p>
<p>
<b>Pricing &amp; Availability</b>
<br />The new Apple TV software is available as a free automatic download to all Apple TV customers. The 160GB Apple TV is available from the Apple Store&reg; (<a href="http://www.apple.com/">www.apple.com</a>), Apple&rsquo;s retail stores and Apple Authorized Resellers for a suggested retail price of $229 (US). Apple TV requires an 802.11b/g/n wireless network or 10/100 Base-T Ethernet networking, a broadband Internet connection and a high definition widescreen TV. Video availability varies by country.
</p>
<p>
Apple TV easily connects to a broad range of widescreen TVs and home theater systems and comes standard with HDMI, component video, analog and optical audio ports. Using high-speed Wi-Fi, Apple TV automatically plays your iTunes content without setup or management.
</p>
<p>
*Movie rentals work on iPod classic&reg;, iPod nano&reg; with video, iPod touch, iPhone, iPhone 3G and iPhone 3GS.
</p>
<!--
<p>BULLET LIST HEADER (as needed)</p>
<ul class="square">
	<li>BULLET 1</li>
	<li>BULLET 2</li>
	<li>BULLET 3</li>
	<li>BULLET 4 etc...</li>
</ul>
-->
<p>
Apple ignited the personal computer revolution in the 1970s with the Apple II and reinvented the personal computer in the 1980s with the Macintosh. Today, Apple continues to lead the industry in innovation with its award-winning computers, OS X operating system and iLife and professional applications. Apple is also spearheading the digital media revolution with its iPod portable music and video players and iTunes online store, and has entered the mobile phone market with its revolutionary iPhone.					
</p>
<p><strong>Press Contacts:</strong><br />
Randi Wolfson<br />
Apple<br />
<a href="mailto:randi@apple.com">randi@apple.com</a><br />
(408) 862-1225<br />
</p>
<p>
Jason Roth<br />
Apple<br />
<a href="mailto:jroth@apple.com">jroth@apple.com</a><br />
(408) 862-2633<br />
</p>
<p>NOTE TO EDITORS: For additional information visit Apple&#146;s <a href="http://www.apple.com/pr/">PR website</a>, or call Apple's Media Helpline at (408) 974-2042.</p>
<p>Apple, the Apple logo, Mac, Mac OS, Macintosh, Apple TV, iTunes, iPhoto, iPod touch, iPhone, Apple Store, iPod classic and iPod nano are trademarks of Apple. Other company and product names may be trademarks of their respective owners.</p>

				
				]]>
        	</description>
    	</item>		<item>
        	<title>A Comparative Study of User Intellect Based on Anti-Productivity Applications Included in Operating Systems</title>
        	<link>http://www.airbagindustries.com/archives/airbag/spaceman.php</link>
        	<comments></comments>
	        <description>
    	        <![CDATA[
				
<p><img src="http://www.airbagindustries.com/images/scientificdata-study415.gif" alt="fig. 1 - Data to support the hypothesis that Windows users breathe through their mouths, have few (if any) friends, and likely have Dorito stains on their keyboard." /></p>
				
				]]>
        	</description>
    	</item>		<item>
        	<title>One-Handed Computing With the iPhone</title>
        	<link>http://kottke.org/09/10/one-handed-computing-with-the-iphone</link>
        	<comments></comments>
	        <description>
    	        <![CDATA[
				
<p>The easy single-handed operation of the iPhone<sup id="t-1029091"><a href="http://kottke.org/09/10/one-handed-computing-with-the-iphone#f-1029091">1</a></sup> is not one of its obvious selling points but is one of those little features that grows on you and becomes nearly indispensable. A portable networked computing and gaming device that can be easily operated with one hand can be used in a surprising variety of situations.</p>
<p>Eating is the most obvious potentially one-handed activity most of us engage in. If you must do something other than just enjoy your food ferchristsake, you can answer emails, read Twitter, or catch up on the latest at nytimes.com while munching on that salad.</p>
<p>People carry things. Coffee, shopping bags, books, bags, babies, small dogs, hot dogs, water bottles, coats, etc. It's nice to be able to not put all that crap down just to quickly Google for the closest public restroom (aka Starbucks).</p>
<p>It is very occasionally necessary to use the iPhone while driving. No, not for checking your stock portfolio, you asshole. For directions. Glance quickly and keep your thoughts on the road ahead.</p>
<p>My wife spends about five hours a day breastfeeding our daughter and has only one hand available for non-feeding activities. That hand is frequently occupied by her iPhone; it helps her keep abreast (hey'o!) of current events, stay connected with pals through Twitter &amp; email, track feeding/sleeping/diaper changing times, keep notes (she plans meals and grocery "shops" at 3am), and alert her layabout husband via SMS to come and get the damned baby already.</p>
<p>Straphangers in NYC and elsewhere know what a great one-handed device the iPhone is. Riding the subway and reading has never been so easy, especially during rush hour when pointy hardcovers become weaponized. (Getting shived by a hardbound Harry Potter on the 6pm 5 train is no joke.)</p>
<p>Tim Carmody, one of the shopkeeps over at <a href="http://snarkmarket.com/">Snarkmarket</a>, recently broke his arm but is <a href="http://twitter.com/tcarmody/status/5051559508">getting plenty of use out of his iPhone</a>: "They should have an ad -- 'If you've got a broken arm, this is the perfect phone for you!'" Broken arms are uncommon, but plenty of people have more permanent physical conditions necessitating one-handed interaction with the world.</p>
<p>And a list of one-handed computing activities wouldn't be complete without at least quickly mentioning, well, you know. It rhymes with "whacking off". I think I've said enough.</p>
<p>Two areas where the iPhone really shines in its one-handedness are gaming and typing. One-handed gaming is pretty much impossible with the Nintendo DS or Sony PSP, but the App Store is full of games that require only your thumb for input. I've been playing lots of <a href="http://iappcat.com/appstore/bundle/shake-and-spell">Shake &amp; Spell</a> and <a href="http://strategerygame.com/">Strategery</a> lately. Typing with one hand on the iPhone is almost as easy and fast as with two. You can actually *write* on this thing with one hand; not just SMS messages and tweets but also blog posts, emails, meeting minutes, and the like.</p>
<p><strong>Update:</strong> Tim Carmody, he of the broken arm above, <a href="http://snarkmarket.com/2009/3927">makes a couple of key observations</a> about the one-handedness of the iPhone:</p>
<blockquote><p>I think it's fairly easy to dial and answer any cell phone with one hand. It's the fact that you can almost perfectly use smartphone functions with a single hand that set the iPhone apart. I used to have a Blackberry Bold - it bit the dust around the same time my arm did -- and while I really liked a lot of things about the hardware, you really couldn't use it well with one hand</p></blockquote>
<p>And:</p>
<blockquote><p>Your cheerfulness about [being injured or handicapped] varies almost directly with your autonomy -- and the iPhone is GREAT at making you feel autonomous. Innovation in interface design isn't just about creating a cooler experience. It's about giving more and more people a shot at that experience to begin with.</p></blockquote>
<p>And <a href="http://www.marco.org/227522451">this</a> is exactly how I use my iPhone 95% of the time (except I am left-handed).</p>
<p><a id="f-1029091"></a>[1] <a href="http://kottke.org/09/09/your-company-theres-an-app-for-that#f-0916091">This footnote</a> still applies. (Yes, that was a reference to a footnote within another footnote. (And that was a parenthetical within a footnote. (...))) <a href="http://kottke.org/09/10/one-handed-computing-with-the-iphone#t-1029091">&#8617;</a></p>


				
				]]>
        	</description>
    	</item>		<item>
        	<title>iTunes 9.0.2 Breaks WebOS Syncing Again</title>
        	<link>http://www.precentral.net/itunes-updated-902-pre-sync-dead-again</link>
        	<comments></comments>
	        <description>
    	        <![CDATA[
				
<p>Yes, cause that argument works so well when Microsoft put on a media player in their own operating system, or web browsers. On the Mac iTunes is the bundled Media software, they almost trick you into downloading iTunes to get Quicktime. (Explain why iTunes is bundled with Quicktime, but if I download iTunes, i have to get Quicktime seperately, despite the fact that iTunes NEEDS Quicktime to even WORK!)</p>
<p>"Why should Apple be forced to give Palm a free ride in iTunes? Apple makes iTunes to help make the Mac and iPod/iPhone experience better. Palm is trying to COMPETE with that. You don't give your competitors help! Doing that puts you out of business!" </p>
<p>Now THAT is a great argument... You should be a lawyer for Microsoft in the UK, where the EU is forcing them to put in a ballot so that users can get Non IE browsers in Microsoft's own OS. Now, like any Apple apologist you're going to say it's different. But nowdays, it's not. iTunes music store, is the number 1 retailer of music in the US. At this point, Apple distributes it like Malware.. the whole Quicktime thing up there is my point. As successful as iTunes and the iTunes music store is, the "It's just software" argument is starting to become moot. iTunes is probably on more computers than Windows Media Player... which i remind you, MS did get sued in the EU for bundling. </p>
<p>IE's inclusion in ever version of the OS, and integration streamlined the experience, though in a imperfect way. Booting up a new computer and having a, now important, part of the computer using experience, IS EASIER FOR CONSUMERS! Then it's our job to educate ourselves and decide to download, Firefox, Chrome or Opera. Microsoft shouldn't be forced to release an OS removing their browser, or giving their competition the stage themselves at boot. Windows 7 doesn't even have Live messenger, Windows Movie Maker, nor it's email app built in anymore. MS has their own Anti-virus software, but it's not even given any showing above their competitors. I almost missed it!</p>
<p>As for palm making their own software... Do you even pay attention to how consumers work? Apple milks the hell out of iTunes, cause even IT knows that consumers want to use as few programs as possible. So Palm will have to take more rescources to make their own multi-platform software, that.. would basically have to be a clone of iTunes, or people would bitch.. though they'd bitch if it was a clone of iTunes.. so the software would end up being a worse move then the cat and mouse game with Apple.</p>


				
				]]>
        	</description>
    	</item>		<item>
        	<title>Wired: ‘An Epidemic of Fear: How Panicked Parents Skipping Shots Endangers Us All’</title>
        	<link>http://www.wired.com/magazine/2009/10/ff_waronscience/all/1</link>
        	<comments></comments>
	        <description>
    	        <![CDATA[
				
<div><img alt="Photo: Andrew Zuckerman" src="http://www.wired.com/magazine/wp-content/images/17-11/ff_waronscience_f.jpg" title="War on Science" width="315" height="580" /><p>Photo: Andrew Zuckerman</p></div>
<p><strong>To hear his enemies talk,</strong> you might think Paul Offit is the most hated man in America. A pediatrician in Philadelphia, he is the coinventor of a rotavirus vaccine that could save tens of thousands of lives every year. Yet environmental activist Robert F. Kennedy Jr. slams Offit as a &#8220;biostitute&#8221; who whores for the pharmaceutical industry. Actor Jim Carrey calls him a profiteer and distills the doctor&#8217;s attitude toward childhood vaccination down to this chilling mantra: &#8220;Grab &#8216;em and stab &#8216;em.&#8221; Recently, Carrey and his girlfriend, Jenny McCarthy, went on CNN&#8217;s <em>Larry King Live</em> and singled out Offit&#8217;s vaccine, RotaTeq, as one of many unnecessary vaccines, all administered, they said, for just one reason: &#8220;Greed.&#8221;</p>
<p>Thousands of people revile Offit publicly at rallies, on Web sites, and in books. Type pauloffit.com into your browser and you&#8217;ll find not Offit&#8217;s official site but an anti-Offit screed &#8220;dedicated to exposing the truth about the vaccine industry&#8217;s most well-paid spokesperson.&#8221; Go to Wikipedia to read his bio and, as often as not, someone will have tampered with the page. The section on Offit&#8217;s education was once altered to say that he&#8217;d studied on a pig farm in Toad Suck, Arkansas. (He&#8217;s a graduate of Tufts University and the University of Maryland School of Medicine).</p>
<p>Then there are the threats. Offit once got an email from a Seattle man that read, &#8220;I will hang you by your neck until you are dead!&#8221; Other bracing messages include &#8220;You have blood on your hands&#8221; and &#8220;Your day of reckoning will come.&#8221; A few years ago, a man on the phone ominously told Offit he knew where the doctor&#8217;s two children went to school. At a meeting of the Centers for Disease Control and Prevention, an anti-vaccine protester emerged from a crowd of people holding signs that featured Offit&#8217;s face emblazoned with the word terrorist and grabbed the unsuspecting, 6-foot-tall physician by the jacket.</p>
<!-- START INSET --><!-- END INSET -->
<p>&#8220;I don&#8217;t think he wanted to hurt me,&#8221; Offit recalls. &#8220;He was just excited to be close to the personification of such evil.&#8221; Still, whenever Offit gets a letter with an unfamiliar return address, he holds the envelope at arm&#8217;s length before gingerly tearing it open. &#8220;I think about it,&#8221; he admits. &#8220;Anthrax.&#8221;</p>
<p>So what has this award-winning 58-year-old scientist done to elicit such venom? He boldly states &mdash; in speeches, in journal articles, and in his 2008 book <em>Autism&#8217;s False Prophets</em> &mdash; that vaccines do not cause autism or autoimmune disease or any of the other chronic conditions that have been blamed on them. He supports this assertion with meticulous evidence. And he calls to account those who promote bogus treatments for autism &mdash; treatments that he says not only don&#8217;t work but often cause harm.</p>
<p>As a result, Offit has become the main target of a grassroots movement that opposes the systematic vaccination of children and the laws that require it. McCarthy, an actress and a former Playboy centerfold whose son has been diagnosed with autism, is the best-known leader of the movement, but she is joined by legions of well-organized supporters and sympathizers.</p>
<p>This isn&#8217;t a religious dispute, like the debate over creationism and intelligent design. It&#8217;s a challenge to traditional science that crosses party, class, and religious lines. It is partly a reaction to Big Pharma&#8217;s blunders and PR missteps, from Vioxx to illegal marketing ploys, which have encouraged a distrust of experts. It is also, ironically, a product of the era of instant communication and easy access to information. The doubters and deniers are empowered by the Internet (online, nobody knows you&#8217;re not a doctor) and helped by the mainstream media, which has an interest in pumping up bad science to create a &#8220;debate&#8221; where there should be none.</p>
<!--nextpage-->
<p>In the center of the fray is Paul Offit. &#8220;People describe me as a vaccine advocate,&#8221; he says. &#8220;I see myself as a science advocate.&#8221; But in this battle &mdash; and make no mistake, he says, it&#8217;s a pitched and heated battle &mdash; &#8220;science alone isn&#8217;t enough &#8230; People are getting hurt. The parent who reads what Jenny McCarthy says and thinks, &#8216;Well, maybe I shouldn&#8217;t get this vaccine,&#8217; and their child dies of Hib meningitis,&#8221; he says, shaking his head. &#8220;It&#8217;s such a fundamental failure on our part that we haven&#8217;t convinced that parent.&#8221;</p>
<p>Consider: In certain parts of the US, vaccination rates have dropped so low that occurrences of some children&#8217;s diseases are approaching pre-vaccine levels for the first time ever. And the number of people who choose not to vaccinate their children (so-called philosophical exemptions are available in about 20 states, including Pennsylvania, Texas, and much of the West) continues to rise. In states where such opting out is allowed, 2.6 percent of parents did so last year, up from 1 percent in 1991, according to the CDC. In some communities, like California&#8217;s affluent Marin County, just north of San Francisco, non-vaccination rates are approaching 6 percent (counterintuitively, higher rates of non-vaccination often correspond with higher levels of education and wealth).</p>
<p>That may not sound like much, but a recent study by the <em>Los Angeles Times</em> indicates that the impact can be devastating. The <cite>Times</cite> found that even though only about 2 percent of California&#8217;s kindergartners are unvaccinated (10,000 kids, or about twice the number as in 1997), they tend to be clustered, disproportionately increasing the risk of an outbreak of such largely eradicated diseases as measles, mumps, and pertussis (whooping cough). The clustering means almost 10 percent of elementary schools statewide may already be at risk.</p>
<div><img alt="Photo: Peter Yang" src="http://www.wired.com/magazine/wp-content/images/17-11/ff_waronscience2_f.jpg" title="War on Science" width="315" height="431" /><p>Photo: Peter Yang</p></div>
<p>In May, <cite>The New England Journal of Medicine</cite> laid the blame for clusters of disease outbreaks throughout the US squarely at the feet of declining vaccination rates, while nonprofit health care provider Kaiser Permanente reported that unvaccinated children were 23 times more likely to get pertussis, a highly contagious bacterial disease that causes violent coughing and is potentially lethal to infants. In the June issue of the journal <cite>Pediatrics</cite>, Jason Glanz, an epidemiologist at Kaiser&#8217;s Institute for Health Research, revealed that the number of reported pertussis cases jumped from 1,000 in 1976 to 26,000 in 2004. A disease that vaccines made rare, in other words, is making a comeback. &#8220;This study helps dispel one of the commonly held beliefs among vaccine-refusing parents: that their children are not at risk for vaccine-preventable diseases,&#8221; Glanz says.</p>
<p>&#8220;I used to say that the tide would turn when children started to die. Well, children have started to die,&#8221; Offit says, frowning as he ticks off recent fatal cases of meningitis in unvaccinated children in Pennsylvania and Minnesota. &#8220;So now I&#8217;ve changed it to &#8216;when <em>enough</em> children start to die.&#8217; Because obviously, we&#8217;re not there yet.&#8221;</p>
<p><strong>The rejection of</strong> hard-won knowledge is by no means a new phenomenon. In 1905, French mathematician and scientist Henri Poincar&eacute; said that the willingness to embrace pseudo-science flourished because people &#8220;know how cruel the truth often is, and we wonder whether illusion is not more consoling.&#8221; Decades later, the astronomer Carl Sagan reached a similar conclusion: Science loses ground to pseudo-science because the latter seems to offer more comfort. &#8220;A great many of these belief systems address real human needs that are not being met by our society,&#8221; Sagan wrote of certain Americans&#8217; embrace of reincarnation, channeling, and extraterrestrials. &#8220;There are unsatisfied medical needs, spiritual needs, and needs for communion with the rest of the human community.&#8221;</p>
<p>Looking back over human history, <em>rationality</em> has been the anomaly. Being rational takes work, education, and a sober determination to avoid making hasty inferences, even when they appear to make perfect sense. Much like infectious diseases themselves &mdash; beaten back by decades of effort to vaccinate the populace &mdash; the irrational lingers just below the surface, waiting for us to let down our guard.</p>
<!--nextpage-->
<p>Before smallpox was eradicated with a vaccine, it killed an estimated 500 million people. And just 60 years ago, polio paralyzed 16,000 Americans every year, while rubella caused birth defects and mental retardation in as many as 20,000 newborns. Measles infected 4 million children, killing 3,000 annually, and a bacterium called <em>Haemophilus influenzae</em> type b caused Hib meningitis in more than 15,000 children, leaving many with permanent brain damage. Infant mortality and abbreviated life spans &mdash; now regarded as a third world problem &mdash; were a first world reality.</p>
<p>Today, because the looming risk of childhood death is out of sight, it is also largely out of mind, leading a growing number of Americans to worry about what is in fact a much lesser risk: the ill effects of vaccines. If your newborn gets pertussis, for example, there is a 1 percent chance that the baby will die of pulmonary hypertension or other complications. The risk of dying from the pertussis vaccine, by contrast, is practically nonexistent &mdash; in fact, no study has linked DTaP (the three-in-one immunization that protects against diphtheria, tetanus, and pertussis) to death in children. Nobody in the pro-vaccine camp asserts that vaccines are risk-free, but the risks are minute in comparison to the alternative.</p>
<p>Still, despite peer-reviewed evidence, many parents ignore the math and agonize about whether to vaccinate. Why? For starters, the human brain has a natural tendency to pattern-match &mdash; to ignore the old dictum &#8220;correlation does not imply causation&#8221; and stubbornly persist in associating proximate phenomena. If two things coexist, the brain often tells us, they must be related. Some parents of autistic children noticed that their child&#8217;s condition began to appear shortly after a vaccination. The conclusion: &#8220;The vaccine must have caused the autism.&#8221; Sounds reasonable, even though, as many scientists have noted, it has long been known that autism and other neurological impairments often become evident at or around the age of 18 to 24 months, which just happens to be the same time children receive multiple vaccinations. Correlation, perhaps. But not causation, as studies have shown.</p>
<p>And if you need a new factoid to support your belief system, it has never been easier to find one. The Internet offers a treasure trove of undifferentiated information, data, research, speculation, half-truths, anecdotes, and conjecture about health and medicine. It is also a democratizing force that tends to undermine authority, cut out the middleman, and empower individuals. In a world where anyone can attend what McCarthy calls the &#8220;University of Google,&#8221; boning up on immunology before getting your child vaccinated seems like good, responsible parenting. Thanks to the Internet, everyone can be their own medical investigator.</p>
<p>There are anti-vaccine Web sites, Facebook groups, email alerts, and lobbying organizations. Politicians ignore the movement at their peril, and, unlike in the debates over creationism and global warming, Democrats have proved just as likely as Republicans to share misinformation and fuel anxiety.</p>
<p>US senators John Kerry of Massachusetts and Chris Dodd of Connecticut have both curried favor with constituents by trumpeting the notion that vaccines cause autism. And Robert F. Kennedy Jr., a scion of the most famous Democratic family of all, authored a deeply flawed 2005 <em>Rolling Stone</em> piece called &#8220;Deadly Immunity.&#8221; In it, he accused the government of protecting drug companies from litigation by concealing evidence that mercury in vaccines may have caused autism in thousands of kids. The article was roundly discredited for, among other things, overestimating the amount of mercury in childhood vaccines by more than 100-fold, causing <em>Rolling Stone</em> to issue not one but a prolonged series of corrections and clarifications. But that did little to unring the bell.</p>
<p>The bottom line: Pseudo-science preys on well-intentioned people who, motivated by love for their kids, become vulnerable to one of the world&#8217;s oldest professions. Enter the snake-oil salesman.</p>
<p><strong>When a child</strong> is ill, parents will do anything to make it right. If you doubt that, just spend a day or two at the annual conference of the nonprofit organization Autism One, a group built around the conviction that autism is caused by vaccines. It shares its agenda with other advocacy groups like the National Autism Association, the Coalition for SafeMinds, and McCarthy&#8217;s Generation Rescue. All these organizations cite similar anecdotes &mdash; children who appear to shut down and exhibit signs of autistic behavior immediately after being vaccinated &mdash; as proof. Autism One, like others, also points to rising rates of autism &mdash; what many parents call an epidemic &mdash; as evidence that vaccines are to blame. Finally, Autism One asserts that the condition is preventable and treatable, and that it is the toxins in vaccines and the sheer number of childhood vaccines (the CDC recommends 10 vaccines, in 26 doses, by the age of 2 &mdash; up from four vaccines in 1983) that combine to cause disease in certain sensitive children.</p>
<p>Their rhetoric often undergoes subtle shifts, especially when the scientific evidence becomes too overwhelming on one front or another. After all, saying you&#8217;re against <em>all</em> vaccines does start to sound crazy, even to a parent in distress over a child&#8217;s autism. Until recently, Autism One&#8217;s Web site flatly blamed &#8220;too many vaccines given too soon.&#8221; Lately, the language has gotten more vague, citing &#8220;environmental triggers.&#8221;</p>
<p>But the underlying argument has not changed: Vaccines harm America&#8217;s children, and doctors like Paul Offit are paid shills of the drug industry.</p>
<p>To be clear, there is no credible evidence to indicate that any of this is true. None. Twelve epidemiological studies have found no data that links the MMR (measles/mumps/rubella) vaccine to autism; six studies have found no trace of an association between thimerosal (a preservative containing ethylmercury that has largely been removed from vaccines since 2001<a href="http://www.wired.com/magazine/2009/10/ff_waronscience/all/1#corrections"><sup>1</sup></a>) and autism, and three other studies have found no indication that thimerosal causes even subtle neurological problems. The so-called epidemic, researchers assert, is the result of improved diagnosis, which has identified as autistic many kids who once might have been labeled mentally retarded or just plain slow. In fact, the growing body of science indicates that the autistic spectrum &mdash; which may well turn out to encompass several discrete conditions &mdash; may largely be genetic in origin. In April, the journal <em>Nature</em> published two studies that analyzed the genes of almost 10,000 people and identified a common genetic variant present in approximately 65 percent of autistic children.</p>
<p>But that hasn&#8217;t stopped as many as one in four Americans from believing vaccines can poison kids, according to a 2008 survey. And outreach by grassroots organizations like Autism One is a big reason why.</p>
<a name="corrections"></a>
<p>- - -</p>
<p><em>1.  An earlier version of this story suggested that no childhood vaccines contain thimerosal; in fact some versions of the influenza vaccine, which is not typically mandated for children&#8217;s admission to school, does contain the preservative. Go here <a href="http://www.wired.com/magazine/2009/10/answering-your-questions-about-thimerosal">for a further explanation</a>.</em></p>
<!--nextpage-->
<p>At this year&#8217;s Autism One conference in Chicago, I flashed more than once on Carl Sagan&#8217;s idea of the power of an &#8220;unsatisfied medical need.&#8221; Because a massive research effort has yet to reveal the precise causes of autism, pseudo-science has stepped aggressively into the void. In the hallways of the Westin O&#8217;Hare hotel, helpful salespeople strove to catch my eye as I walked past a long line of booths pitching everything from vitamins and supplements to gluten-free cookies (some believe a gluten-free diet alleviates the symptoms of autism), hyperbaric chambers, and neuro-feedback machines.</p>
<p>To a one, the speakers told parents not to despair. Vitamin D would help, said one doctor and supplement salesman who projected the equation &#8220;No vaccines + more vitamin d = no autism&#8221; onto a huge screen during his presentation. (If only it were that simple.) Others talked of the powers of enzymes, enemas, infrared saunas, glutathione drips, chelation therapy (the controversial &mdash; and risky &mdash; administration of certain chemicals that leech metals from the body), and Lupron (a medicine that shuts down testosterone synthesis).</p>
<p>Offit calls this stuff, much of which is unproven, ineffectual, or downright dangerous, &#8220;a cottage industry of false hope.&#8221; He didn&#8217;t attend the Autism One conference, though his name was frequently invoked. A California woman with an 11-year-old autistic son told me, aghast, that she&#8217;d personally heard Offit say you could safely give a child 10,000 vaccines (in fact, the number he came up with was <em>100,000</em> &mdash; more on that later). A mom from Arizona, who introduced me to her 10-year-old &#8220;recovered&#8221; autistic son &mdash; a bright, blue-eyed, towheaded boy who hit his head on walls, she said, before he started getting B-12 injections &mdash; told me that she&#8217;d read Offit had made $50 million from the RotaTeq vaccine. In her view, he was in the pocket of Big Pharma.</p>
<p>The central message at these conferences boils down to this: &#8220;The medical establishment doesn&#8217;t care, but we do.&#8221; Every vendor I talked to echoed this theme. And every parent expressed a frustrated, even desperate belief that no one in traditional science gives a hoot about easing their pain or addressing their theories &mdash; based on day-to-day parental experience &mdash; about autism&#8217;s causes.</p>
<p>Actually, scientists <em>have</em> chased down some of these theories. In August, for example, <em>Pediatrics</em> published an investigation of a popular hypothesis that children with autism have a higher incidence of gastrointestinal problems, which some allege are caused by injected viruses traveling to the intestines. Jenny McCarthy&#8217;s foundation posits that autism stems from these bacteria, as well as heavy metals and live viruses present in some vaccines. Healing your child, therefore, is a matter of clearing out the &#8220;environmental toxins&#8221; with, among other things, special diets. The <cite>Pediatrics</cite> paper found that while autistic kids suffered more from constipation, the cause was likely behavioral, not organic; there was no significant association between autism and GI symptoms. Moreover, gluten- and dairy-free diets did not appear to improve autism and sometimes caused nutritional deficiencies.</p>
<p>But researchers, alas, can&#8217;t respond with the same forceful certainty that the doubters are able to deploy &mdash; not if they&#8217;re going to follow the rules of science. Those tenets allow them to claim only that there is no evidence of a link between autism and vaccines. But that phrasing &mdash; what sounds like equivocation &mdash; is just enough to allow doubts to not only remain but to fester. Meanwhile, in the eight years since thimerosal was removed from vaccines (a public relations mistake, in Offit&#8217;s view, because it seemed to indicate to the public that thimerosal <em>was</em> toxic), the incidences of autism continue to rise.</p>
<p>In the wake of the latest thimerosal studies, most of the anti-vaccination crowd &mdash; even Autism One, despite the ever-changing rhetoric on its Web site &mdash; has shifted their aim away from any particular vaccine to a broader, fuzzier target: the sheer number of vaccines that are recommended. It sounds, after all, like common sense. There must be something risky about giving too many vaccines to very young children in too short a time. Opponents argue that for some children the current vaccine schedule creates a &#8220;toxic overload.&#8221;</p>
<p>&#8220;I&#8217;m not anti-vaccine,&#8221; McCarthy says. &#8220;I&#8217;m anti-toxin.&#8221; She stops just short of calling for an outright ban. McCarthy delivered the keynote address at the Autism One conference this year, just as she had in 2008. She drew a standing-room-only crowd, many of whom know her not from her acting but from her frequent appearances on TV talk shows, Oprah Winfrey&#8217;s Web site, and Twitter (@JennyfromMTV). McCarthy has authored two best-selling books on &#8220;healing&#8221; autism and is on the board of the advocacy group Generation Rescue (motto: &#8220;Autism is reversible&#8221;). With her stream-of-consciousness rants (&#8221;Too many toxins in the body cause neurological problems &mdash; look at Ozzy Osbourne, for Christ&#8217;s sake!&#8221;) and celebrity allure, she is the anti-vaccine movement&#8217;s most popular pitchman and prettiest face.</p>
<p>Barbara Loe Fisher, by contrast, is indisputably the movement&#8217;s brain. Fisher is the cofounder and president of the National Vaccine Information Center in Vienna, Virginia, the largest, oldest, and most influential of the watchdog groups that oppose universal vaccination. At the Autism One conference, Fisher took the podium with characteristic flair. As she often does, Fisher began with the story of her son Chris, who she believes was damaged by vaccines at the age of two and a half. A short film featuring devastating images of sick kids &mdash; some of them seemingly palsied, others with tremors, others catatonic &mdash; drove the point home. The film, accompanied by Bryan Adams&#8217; plaintive song &#8220;(Everything I Do) I Do It For You,&#8221; ended with this message emblazoned on the screen: &#8220;All the children in this video were injured or killed by mandatory vaccinations.&#8221;</p>
<p>Against this backdrop, Fisher, a skilled debater who often faces down articulate, well-informed scientists on live TV, mentioned Offit frequently. She called him the leading &#8220;pro-forced-vaccination proponent&#8221; and cast him as a man who walks in lockstep with the pharmaceutical companies and demonizes caring parents. With the likely introduction of a swine flu vaccine later this year, Fisher added, Americans needed to wake up to the &#8220;draconian laws&#8221; that could force every citizen to either be vaccinated or quarantined. That isn&#8217;t true &mdash; the swine flu vaccine, like other flu vaccines, will be administered on a voluntary basis. But no matter: Fisher&#8217;s argument turns vaccines from a public health issue into one of personal choice, an unwritten bit of the Bill of Rights.</p>
<!--nextpage-->
<p>In her speech, Fisher borrowed from the Bible, George Orwell, and the civil rights movement. &#8220;The battle we are waging,&#8221; she said, &#8220;will determine what both health and freedom will look like in America.&#8221; She closed by quoting the inscription above the door of the Holocaust Memorial Museum in Washington, DC: &#8220;The first to perish were the children.&#8221; And then she brought it home: &#8220;If we believe in compassion, if we believe in the future, we will do whatever it takes to give our children back the future that is their birthright.&#8221; The audience cheered as the words sank in: <em>Whatever it takes</em>. &#8220;<em>No</em> forced vaccination,&#8221; Fisher concluded. &#8220;<em>Not</em> in America.&#8221;</p>
<p><strong>Paul Offit has a slightly</strong> nasal voice and a forceful delivery that conspire to make him sound remarkably like Hawkeye Pierce, the cantankerous doctor played by Alan Alda on the TV series <em>M*A*S*H</em>. As a young man, Offit was a big fan of the show (though he felt then, and does now, that Hawkeye was &#8220;much cooler than me&#8221;). Offit is quick-witted, funny, and &mdash; despite a generally mild-mannered mien &mdash; sometimes so assertive as to seem brash. &#8220;Scientists, bound only by reason, are society&#8217;s true anarchists,&#8221; he has written &mdash; and he clearly sees himself as one. &#8220;Kaflooey theories&#8221; make him crazy, especially if they catch on. Fisher, who has long been the media&#8217;s go-to interview for what some in the autism arena call &#8220;parents rights,&#8221; makes him particularly nuts, as in &#8220;You just want to scream.&#8221; The reason? &#8220;She lies,&#8221; he says flatly.</p>
<p>&#8220;Barbara Loe Fisher inflames people against me. And wrongly. I&#8217;m in this for the same reason she is. I care about kids. Does she think Merck is paying me to speak about vaccines? Is <em>that</em> the logic?&#8221; he asks, exasperated. (Merck is doing no such thing). But when it comes to mandating vaccinations, Offit says, Fisher is right about him: He is an adamant supporter.</p>
<p>&#8220;We have seat belt rules,&#8221; he says. &#8220;Seat belts save lives. There was never a question about that. The data was absolutely clear. But people didn&#8217;t use them until they were required to use them.&#8221; Furthermore, the decision not to buckle up endangers only you. &#8220;Unless you fly through the window and hit somebody else,&#8221; he adds. &#8220;I believe in mandates. I do.&#8221;</p>
<p>We are driving north (seat belts on) across Philadelphia in Offit&#8217;s gray 2009 Toyota Camry, having just completed a full day of rounds at Children&#8217;s Hospital. Over the past eight hours, Offit has directed a team of six residents and med students as they evaluated more than a dozen children with persistent infections. He pulls into the driveway of the comfy four-bedroom Tudor in the suburbs where his family has lived for the past 13 years. It&#8217;s a nice enough house, with a leafy green yard and a two-car garage where a second Toyota Camry (this one red, a year older, and belonging to his wife, Bonnie) is already parked. Let&#8217;s just say that if Offit has indeed made $50 million from RotaTeq, as his critics love to say, he is hiding it well.</p>
<p>Offit acknowledges that he received a payout &mdash; &#8220;several million dollars, a lot of money&#8221; &mdash; when his hospital sold its stake in RotaTeq last year for $182 million. He continues to collect a royalty each year. It&#8217;s a fluke, he says &mdash; an unexpected outcome. &#8220;I&#8217;m not embarrassed about it,&#8221; he says. &#8220;It was the product of a lot of work, although it wasn&#8217;t why I did the work, nor was it, frankly, the reward for the work.&#8221;</p>
<p>Similarly, the suggestion that pharmaceutical companies make vaccines hoping to pocket huge profits is ludicrous to Offit. Vaccines, after all, are given once or twice or three times in a lifetime. Diabetes drugs, neurological drugs, Lipitor, Viagra, even Rogaine &mdash; stuff that a large number of people use every day &mdash; <em>that&#8217;s</em> where the money is.</p>
<p>That&#8217;s not to say vaccines aren&#8217;t profitable: RotaTeq costs a little under $4 a dose to make, according to Offit. Merck has sold a total of more than 24 million doses in the US, most for $69.59 a pop &mdash; a 17-fold markup. Not bad, but pharmaceutical companies do sell a lot of vaccines at cost to the developing world and in some cases give them away. Merck committed $75 million in 2006 to vaccinate all children born in Nicaragua for three years. In 2008, Merck&#8217;s revenue from RotaTeq was $665 million. Meanwhile, a blockbuster drug like Pfizer&#8217;s Lipitor is a $12 billion-a-year business.</p>
<p>To understand exactly why Offit became a scientist, you must go back more than half a century, to 1956. That was when doctors in Offit&#8217;s hometown of Baltimore operated on one of his legs to correct a club foot, requiring him to spend three weeks recovering in a chronic care facility with 20 other children, all of whom had polio. Parents were allowed to visit just one hour a week, on Sundays. His father, a shirt salesman, came when he could. His mother, who was pregnant with his brother and hospitalized with appendicitis, was unable to visit at all. He was 5 years old. &#8220;It was a pretty lonely, isolating experience,&#8221; Offit says. &#8220;But what was even worse was looking at these other children who were just horribly crippled and disfigured by polio.&#8221; That memory, he says, was the first thing that drove him toward a career in pediatric infectious diseases.</p>
<p>There was something else, too. From an early age, Offit embraced the logic and elegance of the scientific method. Science imbued a chaotic world with an order that he found reassuring.</p>
<p>&#8220;What I loved about science was its reason. You have data. You stand back and you discuss the strengths and weaknesses of that data. There&#8217;s just something very calming about that,&#8221; he says. &#8220;You formulate a hypothesis, you establish burdens of proof, you subject your hypothesis to rigorous testing. You&#8217;ve got 20 pieces of a 1,000-piece puzzle &#8230; It&#8217;s beautiful, really.&#8221;</p>
<p>There were no doctors in the Offit family; he decided to become the first. In 1977, when he was an intern at the Children&#8217;s Hospital of Pittsburgh, he witnessed the second event that would determine his career path: the death of a little girl from a rotavirus infection (there was, as yet, no vaccine). The child&#8217;s mother had been diligent, calling her pediatrician just a few hours after the girl&#8217;s fever, vomiting, and diarrhea had begun. Still, by the time the girl was admitted, she was too dehydrated to have an intravenous line inserted. Doctors tried everything to rehydrate her, including sticking a bone marrow needle into her tibia to inject fluids. She died on the table. &#8220;I didn&#8217;t realize it killed children in the United States,&#8221; Offit says, remembering how the girl&#8217;s mother, after hearing the terrible news, came into the room and held her daughter&#8217;s hand. &#8220;That girl&#8217;s image was always in my head.&#8221;</p>
<!--nextpage-->
<p>The third formative moment for Offit came in the late 1980s, when he met Maurice Hilleman, the most brilliant vaccine maker of the 20th century. Hilleman &mdash; a notoriously foulmouthed genius who toiled for years in the Philadelphia labs of Merck &mdash; invented vaccines to prevent measles, mumps, and rubella (and later came up with the combination of the three, the MMR). He created vaccines for hepatitis A and B, Hib, chicken pox, pneumococcus, and meningococcus. He became Offit&#8217;s mentor; Offit later became Hilleman&#8217;s biographer.</p>
<p>Offit believes in the power of good storytelling, which is why he writes books, five so far. He dearly wants to pull people into the exciting mysteries that scientists wrestle with every day. He wants us all to understand that vaccines work by introducing a weakened strain of a particular virus into the body &mdash; a strain so weak that it cannot make us sick. He wants us to revel in this miracle of inoculation, which causes our immune systems to produce antibodies and develop &#8220;memory cells&#8221; that mount a defense if we later encounter a live version of that virus.</p>
<p>It&#8217;s easy to see why Offit felt a special pride when, after 25 years of research and testing, he and two colleagues, Fred Clark and Stanley Plotkin, joined the ranks of the vaccine inventors. In February 2006, RotaTeq was approved for inclusion in the US vaccination schedule. The vaccine for rotavirus, which each year kills about 600,000 children in poor countries and about 40 children in the US, probably saves hundreds of lives a day.</p>
<p>But in certain circles, RotaTeq is no grand accomplishment. Instead, it is offered as Exhibit A in the case against Offit, proving his irredeemable bias and his corrupted point of view. Using this reasoning, of course, Watson and Crick would be unreliable on genetics because the Nobel Prize winners had a vested interest in genetic research. But despite the illogic, the argument has had some success. Consider the CDC&#8217;s Advisory Committee on Immunization Practices, which reviews new vaccines and administration schedules: Back in the late &#8217;90s and early &#8217;00s, Offit was a member of the panel, along with experts in infectious diseases, virology, microbiology, and immunology. Now the 15-person panel is made up mostly of state epidemiologists and public-health officials.</p>
<p>That&#8217;s not by accident. According to science journalist Michael Specter, author of the new book <cite>Denialism: How Irrational Thinking Hinders Scientific Progress, Harms the Planet and Threatens Our Lives</cite>, the controversy surrounding vaccine safety has made lack of expertise a requirement when choosing members of prominent advisory panels on the issue. &#8220;It&#8217;s shocking,&#8221; Specter says. &#8220;We live in a country where it&#8217;s actually a detriment to be an expert about something.&#8221; When expertise is diminished to such an extent, irrationality and fear can run amok.</p>
<p>Hence the death threats against Paul Offit. Curt Linderman Sr., the host of &#8220;Linderman Live!&#8221; on AutismOne Radio and the editor of a blog called the Autism File, recently wrote online that it would &#8220;be nice&#8221; if Offit &#8220;was dead.&#8221;</p>
<p>I&#8217;d met Linderman at Autism One. He&#8217;d given his card to me as we stood outside the Westin O&#8217;Hare talking about his autistic son. &#8220;We live in a very toxic world,&#8221; he&#8217;d told me, puffing on a cigarette.</p>
<p>It was hard to argue with that.</p>
<p><strong>Despite his reputation,</strong> Offit has occasionally met a vaccine he doesn&#8217;t like. In 2002, when he was still a member of the CDC&#8217;s advisory committee, the Bush administration was lobbying for a program to give the smallpox vaccine to tens of thousands of Americans. Fear of bioterrorism was rampant, and everyone voted in favor &mdash; everyone except Offit. The reason: He feared people would die. And he didn&#8217;t keep quiet about his reservations, making appearances on <em>60 Minutes II</em> and <em>The NewsHour with Jim Lehrer</em>.</p>
<p>The problem with the vaccine, he said, is that &#8220;one in every million people who gets it dies.&#8221; Moreover, he said, because smallpox is visible when its victims are contagious (it is marked by open sores), outbreaks &mdash; if there ever were any &mdash; could be quickly contained, and there would be plenty of time to begin vaccinations then. A preventive vaccine, he said, &#8220;was a greater risk than the risk of smallpox.&#8221;</p>
<p>Ah, risk. It is the idea that fuels the anti-vaccine movement &mdash; that parents should be allowed to opt out, because it is their right to evaluate risk for their own children. It is also the idea that underlies the CDC&#8217;s vaccination schedule &mdash; that the risk to public health is too great to allow individuals, one by one, to make decisions that will impact their communities. (The concept of herd immunity is key here: It holds that, in diseases passed from person to person, it is more difficult to maintain a chain of infection when large numbers of a population are immune.)</p>
<p>Risk is also the motivating idea in Offit&#8217;s life. This is a man, after all, who opted to give his own two children &mdash; now teenagers &mdash; the flu vaccine before it was recommended for their age group. Why? Because the risk of harm if his children got sick was too great. Offit, like everyone else, will do anything to protect his children. And he wants Americans to be fully educated about risk and not hoodwinked into thinking that dropping vaccines keeps their children safe. &#8220;The choice not to get a vaccine is <em>not</em> a choice to take no risk,&#8221; he says. &#8220;It&#8217;s just a choice to take a <em>different</em> risk, and we need to be better about saying, &#8216;Here&#8217;s what that different risk looks like.&#8217; Dying of Hib meningitis is a horrible, ugly way to die.&#8221;</p>
<!--nextpage-->
<p>Getting the measles is no walk in the park, either &mdash; not for you or those who come near you. In 2005, a 17-year-old Indiana girl got infected on a trip to Bucharest, Romania. On the return flight home, she was congested, coughing, and feverish but had no rash. The next day, without realizing she was contagious, she went to a church gathering of 500 people. She was there just a few hours. Of the 500 people present, about 450 had either been vaccinated or had developed a natural immunity. Two people in that group had vaccination failure and got measles. Thirty-two people who had not been vaccinated and therefore had no resistance to measles also got sick. Did the girl encounter each of these people face-to-face in her brief visit to the picnic? No. All you have to do to get the measles is to inhabit the airspace of a contagious person within two hours of them being there.</p>
<p>The frightening implications of this kind of anecdote were illustrated by a 2002 study published in <cite>The Journal of Infectious Diseases</cite>. Looking at 3,292 cases of measles in the Netherlands, the study found that the risk of contracting the disease was lower if you were completely unvaccinated and living in a highly vaccinated community than if you were completely vaccinated and living in a relatively unvaccinated community. Why? Because vaccines don&#8217;t always take. What does that mean? You can&#8217;t minimize your individual risk unless your herd, your friends and neighbors, also buy in.</p>
<p>Perceived risk &mdash; our changing relationship to it and our increasing intolerance of it &mdash; is at the crux of vaccine safety concerns, not to mention related fears of pesticides, genetically modified food, and cloning. Sharon Kaufman, a medical anthropologist at UC San Francisco, observes that our concept of risk has evolved from an external threat that&#8217;s out of our control (think: statistical probability of a plane crash) to something that can be managed and controlled if we just make the right decisions (eat less fat and you&#8217;ll live longer). Improved diagnostic tests, a change in consumer awareness, an aging society determined to stay youthful &mdash; all have contributed to the growing perception that risk (of death, illness, accident) is our responsibility to reduce or eliminate. In the old order, risk management was in the hands of your doctor &mdash; or God. Under the new dispensation, it&#8217;s all up to you. What are the odds that your child will be autistic? It&#8217;s your job to manage them, so get thee to the Internet, and fast.</p>
<p>The thimerosal debacle exacerbated this tendency, particularly when the American Academy of Pediatrics and the Public Health Service issued a poorly worded statement in 1999 that said &#8220;current levels of thimerosal will not hurt children, but reducing those levels will make safe vaccines even safer.&#8221; In other words, there&#8217;s no scientific evidence whatsoever, but you never know.</p>
<p>&#8220;When science came out and said, &#8216;Uh-oh, there may be a risk,&#8217; the stage was already set,&#8221; Kaufman says, noting that many parents felt it was irresponsible <em>not</em> to have doubts. &#8220;It was Pandora&#8217;s box.&#8221;</p>
<p>The result is that science must somehow prove a negative &mdash; that vaccines don&#8217;t cause autism &mdash; which is not how science typically works. Edward Jenner invented vaccination in 1796 with his smallpox inoculation; it would be 100 years before science, such as it was, understood <em>why</em> the vaccine worked, and it would be even longer before the specific cause of smallpox could be singled out. Until the cause of autism is discovered, scientists can establish only that vaccines are safe &mdash; and that threshold has already been met.</p>
<p>The government is still considering funding more research trials to look for a connection between vaccines and autism. To Kaufman, there&#8217;s some justification for this, given that it may be the only way to address everyone&#8217;s doubts. But the thimerosal panic suggests that, if bungled, such trials could make a bad situation worse. To scientists like Offit, further studies are also a waste of precious scientific resources, not to mention taxpayers&#8217; money. They take funding away from more pressing matters, including the search for autism&#8217;s real cause.</p>
<p><strong>A while back,</strong> Offit was asked to help put together a reference text on vaccines. Specifically, his colleagues wanted him to write a chapter that assessed the capacity of the human immune system. It was a hypothetical exercise: What was the maximum number of vaccines that a person could handle? The point was to arm doctors with information that could reassure parents. Offit set out to determine two factors: how many B cells, which make antibodies, a person has in a milliliter of blood and how many different epitopes, the part of a bacterium or virus that is recognized by the immune system, there are in a vaccine. Then, he came up with a rough estimate: a person could handle 100,000 vaccines &mdash; or up to 10,000 vaccines at once. Currently the most vaccines children receive at any one time is five.</p>
<p>He also published his findings in Pediatrics. Soon, the number was attached to Offit like a scarlet letter. &#8220;The 100,000 number makes me sound like a madman. Because that&#8217;s the image: 100,000 shots sticking out of you. It&#8217;s an awful image,&#8221; Offit says. &#8220;Many people &mdash; including people who are on my side &mdash; have criticized me for that. But I was naive. In that article, I was being asked the question and that <em>is</em> the answer to the question.&#8221;</p>
<p>Still, he hasn&#8217;t backed off. He feels that scientists have to work harder at winning over the public. &#8220;It&#8217;s our responsibility to stand up for good science. Though it&#8217;s not what we&#8217;re trained to do,&#8221; he says, admitting that his one regret about <em>Autism&#8217;s False Prophets</em> is that it didn&#8217;t hold scientists accountable for letting fear of criticism render them mute. &#8220;Get out there. There&#8217;s no venue too small. As someone once said, it would be a very quiet forest indeed if the only birds that sang were those that sang best.&#8221;</p>
<p>So Offit keeps singing. Isn&#8217;t he afraid of those who wish him harm? &#8220;I&#8217;m not that brave,&#8221; he says. &#8220;If I really thought my life was at risk or my children&#8217;s lives were at risk, I wouldn&#8217;t do it. Not for a second.&#8221; Maybe, he acknowledges, he&#8217;s in denial.</p>
<p>Later, I ask his wife the same question. When it comes to her husband&#8217;s welfare, Bonnie Offit is fiercely protective. A pediatrician with a thriving group practice, she still makes time to monitor the blogosphere. (Her husband refuses to read the attacks.) She wants to believe that if you &#8220;keep your finger on the pulse,&#8221; as she puts it, you can keep your loved ones safe.</p>
<p>Still, she worries. On the day I find myself sitting at her dining room table, every front page in the nation features an article about George Tiller, the abortion doctor gunned down at his church in Wichita, Kansas. When her husband leaves the room, Bonnie brings up the killing. &#8220;It upsets me,&#8221; she says, looking away. &#8220;I didn&#8217;t even tell him that. But it absolutely upsets me.&#8221;</p>
<p>Her husband, meanwhile, still rises every morning at 4 am and heads to his small, tidy study in a spare bedroom. Every morning, he spends a couple of hours working on what will be his sixth book, a history of the anti-vaccine movement. Offit gets excited when he talks about it.</p>
<p>In 19th-century England, he explains, Jenner&#8217;s smallpox vaccine was known to be effective. But despite the Compulsory Vaccination Act of 1853, many people still refused to take it, and thousands died unnecessarily. &#8220;That was the birth of the anti-vaccine movement,&#8221; he says, adding that then &mdash; as now &mdash; those at the forefront &#8220;were great at mass marketing. It was a print-oriented society. They were great pamphleteers. And by the 1890s, they had driven immunization rates down to the 20 percent range.&#8221;</p>
<p>Immediately, smallpox took off again in England and Wales, killing 1,455 in 1893. Ireland and Scotland, by contrast, &#8220;didn&#8217;t have any anti-vaccine movement and had very high immunization rates and very little incidence of smallpox disease and death,&#8221; he says, taking a breath. &#8220;You&#8217;d like to think we would learn.&#8221;</p>
<p>Offit wants the book to be cinematic, visually riveting. He believes, fervently, that if he can hook people with a good, truthful story, maybe they will absorb his hopeful message: The human race has faced down this kind of doubt before.</p>
<p>His battle is, in at least one respect, probably a losing one. There will always be more illogic and confusion than science can fend off. Offit&#8217;s idea is to inoculate people one by one, until the virus of fear, if not fully erased, at least recedes.</p>
<p><em>Amy Wallace</em> (<a href="mailto:ecallawyma@gmail.com">ecallawyma@gmail.com</a>) <em>has written for</em> GQ, Esquire, <em>and</em> The New Yorker. <em>This is her first article for</em> Wired.</p>
<p><strong>Pages:</strong> <span> Previous </span> <a href="http://www.wired.com/magazine/2009/10/ff_waronscience/">1</a> <a href="http://www.wired.com/magazine/2009/10/ff_waronscience/2/">2</a> <a href="http://www.wired.com/magazine/2009/10/ff_waronscience/3/">3</a> <a href="http://www.wired.com/magazine/2009/10/ff_waronscience/4/">4</a> <a href="http://www.wired.com/magazine/2009/10/ff_waronscience/5/">5</a> <a href="http://www.wired.com/magazine/2009/10/ff_waronscience/6/">6</a> <a href="http://www.wired.com/magazine/2009/10/ff_waronscience/7/">7</a><span>  | <img src="http://www.wired.com/magazine/wp-content/images/assets/icon_page.gif" /> Full Page | </span><span> Next </span></p> 
				
				]]>
        	</description>
    	</item>		<item>
        	<title>How Critics Reviewed The Mac 2.0 In 1984</title>
        	<link>http://brainstormtech.blogs.fortune.cnn.com/2009/01/12/jan-1984-how-critics-reviewed-the-mac/</link>
        	<comments>http://news.ycombinator.com/item?id=915104</comments>
	        <description>
    	        <![CDATA[
				<p>â˘ The Macintosh does not have enough RAM.</p>
<p>â˘ Single microfloppy is slow and inadequate.</p>
<p>â˘ There are no internal expansion slots or external expansion buses.</p>
<p>â˘ MacWrite has some severe limitations.</p>
<p>â˘ The system is monochrome only.</p>
<p>â˘ MS-DOS compatibility is ruled out.</p>
<p>â˘ The Macintosh will not multitask.</p>
<p>â˘ You canât use a Mac away from a desk.</p>
<p>â˘ MacPaint has an easel size limitation.</p>
<p>â˘ Forget about external video.</p>
<p>â˘ Macintosh software development is an involved process.</p>
<p><strong>Bill Gates</strong></p>
<p>Anybody who could write a good application on a 128K Mac deserves a medal.</p>
<p><strong>InfoWorld, Thomas Neudecker, 26 March 1984</strong></p>
<p>We think Apple has at least one thing right &#8212; the Macintosh is the one machine with the potential to challenge IBMâs hold on the market</p>
<p><strong>The Seybold Report, Jonathan and Andrew Seybold</strong></p>
<p>Apple also got some important things wrong. Our biggest worry is that Mac may be under-configured&#8230; But the dumbest thing Apple did with the whole development effort was to allow two different operating systems for Mac and Lisa.</p>
				
					<br/><a href="http://news.ycombinator.com/item?id=915104">Comments</a>
				]]>
        	</description>
    	</item>		<item>
        	<title>Phillies Hope to End 364-Day World Series Drought</title>
        	<link>http://www.theonion.com/content/news/phillies_hope_to_end_364_day_world</link>
        	<comments></comments>
	        <description>
    	        <![CDATA[
				
<h2>Phillies Hope To End 364-Day World Series Drought</h2>
<p>
            October 29, 2009  |
    
            <a href="http://www.theonion.com/content/sports">Onion Sports</a>
</p>


<p>PHILADELPHIA&#8212;The last time the Philadelphia Phillies brought a World Series title back to the City of Brotherly Love, the nation's financial sector was in complete ruin, the cost of a gallon of milk was only $2.74, fans watched the Fall Classic while huddled around their slightly-less-streamlined high-definition television sets, and Philadelphia slugger Ryan Howard was just 28 years old.</p>
<p>This week Howard, 29, hopes to lead the Phillies to their first World Series championship in more than 360 long days and end a title drought that has been punctuated by several embarrassing losses, including a 2009 opening-day defeat by the Atlanta Braves and a June loss to the Atlanta Braves. During its infamous dry spell, the team has also come up short twice, winning both an NLDS and an NLCS title but having absolutely no World Series ring to show for it.</p>
<p>To put into perspective just how long the Phillies have gone without a championship, the earth has almost made one full orbit of the sun since the franchise last paraded through downtown Philadelphia holding the famed Commissioner's Trophy. </p>
<p>"We have a good group of guys this year, and if we block out all the stuff about how we haven't won a World Series in more than 5,000 waking hours, we'll be fine." Howard said. "Frankly, I'm tired of all that talk. Yes, I know Michael Jackson was still alive the last time we won, and I know <i>Boston Legal</i> was gearing up for its final episode. But look, when the umpire says 'Play ball,' none of that matters."</p>
<p>"After 364 days of constantly coming up short, I think this is finally our year," Howard added.</p>
<p>According to Phillies manager Charlie Manuel, if his players get wrapped up in the fact that they haven't raised a World Series banner since April 5, 2009, they'll never be able to play to the maximum of their ability against the New York Yankees. The veteran manager admitted, however, that going nearly 52 straight weeks without a championship is bound to shake any team's confidence.</p>
<p>"The bottom line is we're a pretty inexperienced team, and for many of these young players, this will be the first time they've been to the World Series in a year." Manuel said. "A lot has changed in that time. If you would have told me last October that this country would elect a black president before the Philadelphia Phillies made it back to the World Series, I would have laughed in your face."</p>
<p>While Philadelphia players admitted the 11-month championship-winless streak has been difficult for them personally, most agreed that it's the fans who've suffered most, enduring more than 500,000 minutes without a World Series victory.</p>
<p>"Our fans are incredible," said left fielder Raul Ibanez, who was brought to the Phillies during the offseason in the hopes that he could help Philadelphia finally get back on the winning track. "If I were them, I would have given up on us weeks ago, after we lost our 69th game and failed to win the National League East by more than 10 [games]. But they stuck with us."</p>
<p>Though the Philly faithful are understandably disappointed with their team's title drought, many believe this will be the season when the team breaks the so-called Curse of 1981&#8212;the year in which the Phillies failed to follow up their 1980 championship season with a World Series victory.</p>
<p>"I guess part of me feels like the long wait will make a title all the more special," season-ticket holder Mike Oliver said. "And even though I don't like to compare teams, this Philly squad feels similar to the one who beat the Rays back in the day. They had guys like Jimmy Rollins, Chase Utley, Cole Hamels, Jamie Moyer&#8212;guys who could really play the game and knew how to win; not like today's players."</p>
<p>"Man, whatever happened to Jamie Moyer?" Oliver added. "He's got to be dead by now."</p>
<p>"Truthfully, I never thought I would live to see the Phillies get to another World Series," longtime fan David Oswald said. "When I was diagnosed with pancreatic cancer last November, the doctor only gave me eight months."<img src="http://www.theonion.com/content/themes/onion/assets/terminator.gif" alt="" /></p>


<!-- start frameunit ad -->


<!-- end frameunit ad -->
<!--googleoff: index-->


<!--googleon: index-->

				
				]]>
        	</description>
    	</item>		<item>
        	<title>★ Regarding Joe Wilcox’s ‘iPhone Cannot Win the Smartphone Wars’ Piece</title>
        	<link>http://daringfireball.net/2009/10/wilcox_iphone_smartphones</link>
        	<comments></comments>
	        <description>
    	        <![CDATA[
				
<h1>Regarding Joe Wilcox&#8217;s &#8216;iPhone Cannot Win the Smartphone Wars&#8217;&#160;Piece</h1>
<h6>Wednesday, 28 October 2009</h6>
<p>Just a bunch of points to keep in mind before you read <a href="http://www.betanews.com/joewilcox/article/iPhone-cannot-win-the-smartphone-wars/1256668455">this piece from Joe Wilcox</a>:</p>
<ul>
<li><p>Wilcox doesn&#8217;t come out and say so explicitly, but he&#8217;s defining &#8220;winning&#8221; as &#8220;highest unit sale volume&#8221;. So he&#8217;s probably right. I don&#8217;t think the iPhone, or any Apple product, will ever &#8220;win&#8221; in terms of unit sales. (<strong>Update:</strong> Uh, except for the iPod, of course.) But that&#8217;s because Apple doesn&#8217;t even want to win that game. If you instead measure by profits and growth, Apple and the iPhone look like the front-running favorites to me. (Same goes for the Mac.)</p></li>
<li><p>I try my best to shy away from the term &#8220;smartphone&#8221;, because I don&#8217;t know what it means exactly. There are already people calling the iPhone, Pre, and Android models &#8220;<a href="http://www.google.com/search?q=super+smartphones">super smartphones</a>&#8221;. What we&#8217;re talking about are handheld networked computing devices.</p></li>
<li><p>Wilcox cites Gartner projections regarding 2012 &#8220;smartphone&#8221; unit sale market share. First, it&#8217;s not like Gartner <a href="http://news.techworld.com/operating-systems/6718/windows-vista-the-last-of-its-kind">has a great track record in such predictions</a>. Second, from what I&#8217;ve seen regarding <a href="http://www.appleinsider.com/articles/09/10/08/multi_phone_android_platform_seen_to_overtake_iphone_by_2012.html">this particular analysis from Gartner</a>, the iPhone OS numbers are only for &#8220;smartphones&#8221;, and thus exclude the iPod Touch. Right now the iPod Touch accounts for about 40 percent of iPhone OS devices sold. Of course, maybe Android will be present on a slew of non-phone devices by 2012, too. It&#8217;s just another reason not to get too caught up in the word &#8220;smartphone&#8221;, though.</p></li>
<li><p>All that said, in terms of unit sale share for the entire handheld networked computer market, Apple might do <em>a lot</em> better over the next three years than Wilcox seems to expect. With phones, the biggest cost by far is the monthly service plan. You can &#8220;buy&#8221; an iPhone 3G for just $99, and the monthly plans from AT&amp;T are about the same as those for any competing devices. (True for other iPhone carriers around the world, too.) The only way for a competitor to undercut the iPhone on price would be for some carrier to undercut AT&amp;T on monthly service plan rates. Don&#8217;t hold your breath. And for non-phones, the iPod Touch is <em>cheaper</em> than anything similar.</p></li>
</ul>
<p>If you look at the evidence and the direction of the trend lines, the iPhone&#8217;s prospects look stunning. I think Wilcox is instead starting with the conclusion that the iPhone will never break out of a Mac-sized market share niche, and working backwards from there.</p>
 <!-- PreviousNext -->

				
				]]>
        	</description>
    	</item>		<item>
        	<title>Daring Fireball: Pound the Quality</title>
        	<link>http://daringfireball.net/2009/10/pound_the_quality</link>
        	<comments>http://news.ycombinator.com/item?id=907016</comments>
	        <description>
    	        <![CDATA[
				
<h1>Pound the Quality</h1>
<h6>Tuesday, 27 October 2009</h6>
<p><em>&#8220;If you have the facts on your side, pound the facts. If you have the law on your side, pound the law. If you have neither on your side, pound the table.&#8221;</em> <br />
<strong>&#8212;Legal Adage</strong></p>
<p>Much of the current hype surrounding the App Store centers around the sheer number of apps available. Apple&#8217;s &#8220;there&#8217;s an app for that&#8221; slogan hinges on it, for one thing. Robert Scoble wrote a much-linked to piece this week titled &#8220;<a href="http://scobleizer.com/2009/10/25/85000-reasons-why-apples-iphone-isnt-going-to-be-disrupted/">85,000 Reasons Why the iPhone Isn&#8217;t Going to Be Disrupted</a>&#8221;. Ian Betteridge <a href="http://www.technovia.co.uk/2009/10/scoble-is-right-about-iphone-users-but-the-game-isnt-over-yet.html">largely agreed with Scoble</a>.</p>
<p>And the 85,000 number is, just a few days later, already out of date. <a href="http://appshopper.com/">App Shopper</a> claims there are 93,144 apps in the store at this writing.</p>
<p>Scoble makes a good argument for how the App Store&#8217;s sheer size is a big competitive advantage for Apple. But I think what&#8217;s being missed is <em>how</em> this is a competitive advantage. It&#8217;s a sign that the iPhone and the App Store are popular, and it&#8217;s a self-perpetuating form of popularity, in that developers go where the action is, and users go where the software is.</p>
<p>The danger I see is in conflating cause and effect. Is the App Store popular because the iPhone is great? Or is the iPhone great because the App Store is popular? There&#8217;s a big difference between those two arguments. The latter is the argument Microsoft has long made regarding the advantage of Windows: Windows is great because Windows has the most software and most developers.</p>
<p>The iPhone has turned that around, and it&#8217;s driving Microsoft executives batty. The situation is so at odds with Microsoft&#8217;s view of the computing universe that <a href="http://daringfireball.net/linked/2009/10/22/ballmer-app-count">Steve Ballmer came up with this cockamamie explanation</a>: &#8220;The Internet was designed for the PC. The Internet is not designed for the iPhone. That’s why they’ve got 75,000 applications &#8212; they’re all trying to make the Internet look decent on the iPhone.&#8221; Pound the table, indeed.</p>
<p>The simplest reduction of the age-old Mac-vs.-Windows debate is quality-vs.-quantity. But I don&#8217;t blame Apple for bragging about the sheer number of iPhone apps available, because it&#8217;s something that can be measured. It&#8217;s a powerful marketing point because it is an undeniable fact: there are nearly 100,000 apps, and more every week. You can&#8217;t quantify the advantage Mac software has over Windows.</p>
<p>But my interest remains, as ever, in the quality of the apps, not the quantity. Let&#8217;s say that when the dust starts to settle in this market, Android winds up with far fewer total apps than iPhone OS, but they&#8217;re of generally higher quality. That would make Android the Mac to the iPhone&#8217;s Windows. I would switch to that platform. (Feel free to substitute WebOS for Android in the above hypothetical.)</p>
<p>The number of apps already in the store &#8212; and, even more so, the momentum with which new ones are being added &#8212; almost certainly guarantees the continuing popularity of the iPhone and iPod Touch for the next few years. But Windows is proof that popularity doesn&#8217;t guarantee market-leading quality.</p>
 <!-- PreviousNext -->

				
					<br/><a href="http://news.ycombinator.com/item?id=907016">Comments</a>
				]]>
        	</description>
    	</item>		<item>
        	<title>Herd Mentality</title>
        	<link>http://daringfireball.net/2009/10/herd_mentality</link>
        	<comments>http://news.ycombinator.com/item?id=899747</comments>
	        <description>
    	        <![CDATA[
				
<h1>Herd Mentality</h1>
<h6>Friday, 23 October 2009</h6>
<p>Conformity is a powerful instinct. <em>There&#8217;s safety in numbers</em>. You have to be different to be better, but <em>different</em> is scary.</p>
<p>So of course there&#8217;s some degree of herd mentality in every industry. But I think it&#8217;s more pronounced, to a pathological degree, in the PC hardware industry. It was at the root of long-standing punditry holding that Apple should license the Mac OS to other PC makers, or that Apple should dump Mac OS and make Windows PCs. On the surface, those two old canards seem contradictory &#8212; one arguing that Apple should be a hardware company, the other arguing that it should be a software company. But at their root they&#8217;re the same argument: that Apple should stop being different, and either act just like other PC makers (and sell computers running Windows) or else act just like Microsoft (and sell licenses to its OS).</p>
<p>No one argues those two points any more. But it&#8217;s the same herd mentality that led to the rash of <em>Apple needs to get in the &#8220;netbook&#8221; game</em> punditry that I <a href="http://daringfireball.net/2009/10/apple_netbook_claim_chowder">claim-checked earlier this week</a>. I could have linked to a dozen others. The argument, though, is the same: everyone else is making netbooks, so Apple should, too. Why? Because everyone else is.</p>
<p>I think there&#8217;s a simple reason why the herd mentality is worse in the PC industry: Microsoft. In fact, I think it used to be worse. A decade ago the entire computing industry &#8212; all facets of it &#8212; was dominated by a herd mentality that boiled down to <em>Get behind Microsoft and follow their lead, or else you&#8217;ll get stomped.</em> That&#8217;s no longer true in application software. The web, and Google in particular, have put an end to that.</p>
<p>But the one area where Microsoft still reigns supreme is in PC operating systems. PC hardware makers are crippled. They can&#8217;t stand apart from the herd even if they want to. Their OS choices are: (a) the same version of Windows that every other PC maker includes; or (b) the same open source Linux distributions that every other PC maker could include but which no customers want to buy.<sup id="fnr1-2009-10-23"><a href="http://daringfireball.net/2009/10/herd_mentality#fn1-2009-10-23">1</a></sup></p>
<p>Apple&#8217;s ability to produce innovative hardware is inextricably intertwined with its ability to produce innovative software. The iPhone is an even better example than the Mac.</p>
<p>It&#8217;s not just that Apple <em>is</em> different among computer makers. It&#8217;s that Apple is the only one that even <em>can</em> be different, because it&#8217;s the only one that has its own OS. Part of the industry-wide herd mentality is an assumption that no one else can make a computer OS &#8212; that anyone can make a computer but only Microsoft can make an OS. It should be embarrassing to companies like Dell and Sony, with deep pockets and strong brand names, that they&#8217;re stuck selling computers with the same copy of Windows installed as the no-name brands.</p>
<p>And then there&#8217;s HP, a company with one of the best names and proudest histories in the industry. Apple made news this week for the design and tech specs of its all-new iMacs, which start at $1199. HP made news this week for unveiling a Windows 7 launch bundle at Best Buy that includes a desktop PC and <em>two</em> laptops, all for $1199. That might be great for Microsoft, but how is it good for HP that their brand now stands for bargain basement prices?</p>
<p>Operating systems aren&#8217;t mere components like RAM or CPUs; they&#8217;re the single most important part of the computing experience. Other than Apple, there&#8217;s not a single PC maker that controls the most important aspect of its computers. Imagine how much better the industry would be if there were more than one computer maker trying to move the state of the art forward.</p>
<div>
<hr />
<ol>
<li id="fn1-2009-10-23">
<p>And, perhaps soon, the same version of Google Chrome OS that&#8217;s available to every other PC maker. Chrome OS might help PC makers break free of Microsoft, but it won&#8217;t help them break free from each other.&nbsp;<a href="http://daringfireball.net/2009/10/herd_mentality#fnr1-2009-10-23" title="Jump back to footnote 1 in the text.">&#8617;</a></p>
</li>
</ol>
</div>
 <!-- PreviousNext -->

				
					<br/><a href="http://news.ycombinator.com/item?id=899747">Comments</a>
				]]>
        	</description>
    	</item>		<item>
        	<title>Daring Fireball: Apple Netbook Claim Chowder</title>
        	<link>http://daringfireball.net/2009/10/apple_netbook_claim_chowder</link>
        	<comments>http://news.ycombinator.com/item?id=895535</comments>
	        <description>
    	        <![CDATA[
				
<h1>Apple Netbook Claim&#160;Chowder</h1>
<h6>Wednesday, 21 October 2009</h6>
<p>Two days ago, Apple <a href="http://www.apple.com/pr/library/2009/10/19results.html">announced its financial results</a> for the quarter ended September 26. The company sold 3 million Macs, of which 2.3 million were laptops, and booked $1.67 billion in profit. Not one of those 2.3 million laptops was a &#8220;netbook&#8221;.</p>
<p>14 October 2008, Doug Aamoth at CrunchGear: &#8220;<a href="http://www.crunchgear.com/2008/10/14/five-reasons-why-an-apple-netbook-is-a-no-brainer/">Five Reasons Why an Apple Netbook Is a No-Brainer</a>&#8221;:</p>
<blockquote>
<p>When asked today about the possibility of an Apple netbook, Steve
  Jobs said something to the effect of, “The market is just
  getting started &#8212; we’ll see how it goes.”</p>
<p>Huh? Here’s how the netbook market’s going, Steve: pretty much
  every major computer company has a netbook but you. Apple’s a
  prime candidate for a netbook, too.</p>
</blockquote>
<p>20 January 2009, Brian Caulfield at Forbes: &#8220;<a href="http://www.forbes.com/2009/01/19/apple-earns-preview-tech-enter-cx_bc_0120apple.html">Apple&#8217;s Real Problem: Netbooks</a>:</p>
<blockquote>
<p>The real problem is how Apple&#8217;s portfolio of expensive gear
  &#8212; particularly notebooks &#8212; will fare as the recession
  starts to bite.</p>
</blockquote>
<p>21 January 2009, Brian X. Chen at Wired Gadget Lab: &#8220;<a href="http://www.wired.com/gadgetlab/2009/01/apple-still-thi/">Apple Still Oblivious to Netbook Opportunity</a>&#8221;. Amazingly, ten months later, they remain equally oblivious.</p>
<p>18 March 2009, Shane O&#8217;Neill at PC World: &#8220;<a href="http://www.pcworld.com/businesscenter/article/161496/recession_breathes_life_into_windows_pcs_as_apple_gasps_for_air.html">Recession Breathes Life Into Windows PCs as Apple Gasps for Air</a>&#8221;:</p>
<blockquote>
<p>At this point, I&#8217;m going to stop asking when Apple will
  acknowledge these dark days we live in because I think the answer
  is never. Maybe Apple should just be a bull market company. When
  times are lean, it should pack up like a traveling carnival or
  disappear like a baseball team in winter and not come back until
  everybody&#8217;s rich and happy again.</p>
</blockquote>
<p>24 March 2009, Scott Moritz at TheStreet.com: &#8220;<a href="http://www.thestreet.com/story/10476593/2/apples-netbook-foray-will-flop.html">Apple&#8217;s Netbook Foray Will Flop</a>&#8221;</p>
<blockquote>
<p>Nonetheless, design hubris and slumping sales will cause Apple to
  tap a hot segment of computer market.</p>
</blockquote>
<p>So Apple will be forced to enter the &#8220;netbook&#8221; market due to slumping MacBook sales, eh?</p>
<p>19 August 2009, Charles Moore at The Apple Blog: &#8220;<a href="http://theappleblog.com/2009/08/19/lack-of-netbook-price-hurting-apple-in-this-years-back-to-school-market/">Lack of Netbook, Price Hurting Apple in This Year’s Back-to-School Market</a>&#8221;. That would be the back-to-school period which just ended, with Apple selling 2.3 million laptops at an average price of $1,265.</p>
<p><a href="http://twitter.com/jsnell/status/5008709948">As Jason Snell put it</a>, imagine how much money Apple could have lost if only it had a netbook.</p>
 <!-- PreviousNext -->

				
					<br/><a href="http://news.ycombinator.com/item?id=895535">Comments</a>
				]]>
        	</description>
    	</item></channel>
        </rss>