<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" media="screen" href="/styles/xslt/rss.xslt"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:c9="http://channel9.msdn.com">
<channel>
	<title>Channel 9 - Discussions by CannotResolveSymbol</title>
	<atom:link rel="self" type="application/rss+xml" href="http://channel9.msdn.com/Niners/CannotResolveSymbol/Discussions/RSS"></atom:link>
	<image>
		<url>http://mschnlnine.vo.llnwd.net/d1/Dev/App_Themes/C9/images/feedimage.png</url>
		<title>Channel 9 - Discussions by CannotResolveSymbol</title>
		<link>http://channel9.msdn.com/Niners/CannotResolveSymbol/Discussions</link>
	</image>
	<description>Channel 9 keeps you up to date with the latest news and behind the scenes info from Microsoft that developers love to keep up with. From LINQ to SilverLight – Watch videos and hear about all the cool technologies coming and the people behind them.</description>
	<link>http://channel9.msdn.com/Niners/CannotResolveSymbol/Discussions</link>
	<language>en</language>
	<pubDate>Sun, 19 May 2013 23:27:35 GMT</pubDate>
	<lastBuildDate>Sun, 19 May 2013 23:27:35 GMT</lastBuildDate>
	<generator>Rev9</generator>
	<c9:totalResults>0</c9:totalResults>
	<c9:pageCount>0</c9:pageCount>
	<c9:pageSize>0</c9:pageSize>
	<item>
		<title>Coffeehouse - Java value types Vs .NET</title>
		<description><![CDATA[<p><blockquote><div class="quoteText"> </p><p><a class="permalink" title="Post Permalink" href="/Forums/Coffeehouse/Java-value-types-Vs-NET/7b58a5de57114352b06a9e45014d5a88">1 hour&nbsp;ago</a>, <a href="/Niners/magicalclick">magicalclick</a> wrote</p><p>?? I think Integer is fine? It is essentially </p><p>public class Interger</p><p>{</p><p>&nbsp;int _value;</p><p>&nbsp;override operator = .....</p><p>}</p><p>But, still, Integer is not int. It cost extra pointer in memory. Unless I am wrong? Which no one has yet to explain how Integer is structured.</p><p>IMO, Integer[ one billion ] = ( 64bits pointer&nbsp;&#43; 32bits value ) * one billion. Which is absolutly big no no in my previous examples.</p><p>And just for me only, I totally don't like to use objects when I can use primitives. Some people can debate this to death, but, I want to use int, that's all that matters.</p><p>&nbsp;</p><p></div></blockquote></p><p>Java doesn't do operator overloading, so:</p><p><pre class="brush: text">public static void doStuff(Integer i) {
  i = 5;
}</pre></p><p>is equivalent to:</p><p><pre class="brush: text">public static void doStuff(Integer i) {
  i = new Integer(5);
}</pre></p><p>You're only changing doStuff's reference to i, not changing its actual value (the caller won't see the change). &nbsp;You actually can't do the latter; Integer is immutable in Java.</p><p>[edit] And now I remember why I stopped posting. &nbsp;Why in the world does this piece of crap forum dump you back to the first page of a thread when you post?</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Java-value-types-Vs-NET/2847ca5a569d48f7bc729e4501641448#2847ca5a569d48f7bc729e4501641448</link>
		<pubDate>Tue, 07 Dec 2010 21:36:26 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Java-value-types-Vs-NET/2847ca5a569d48f7bc729e4501641448#2847ca5a569d48f7bc729e4501641448</guid>
		<dc:creator>JonathonW</dc:creator>
		<slash:comments>41</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/CannotResolveSymbol/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Why is the &quot;async&quot; keyword needed?</title>
		<description><![CDATA[<p>@<a href="/Forums/Coffeehouse/Why-is-the-async-keyword-needed#c4673c16704ea4061a2909e240060f312">androidi</a>:<blockquote><div class="quoteText"> </p><p><a class="permalink" title="Post Permalink" href="/Forums/Coffeehouse/Why-is-the-async-keyword-needed/4673c16704ea4061a2909e240060f312">10 hours&nbsp;ago</a>, <a href="/Niners/androidi">androidi</a> wrote</p><p>I watched the PDC Ander's presentation again partially and there's couple answers to questions made using the Q&amp;A feature that make similar point as was made above.</p><p>1. Because await can be &quot;buried&quot; so it's not clear what will happen in the method.</p><p>(2. Because of restrictions similar to iterators (no unsafe/ref/out)&nbsp;- easier to notice this restriction)</p><p>However as I suggested in the op, since most code using VS, alternatively to adding a method modifier based cue, the IDE could highlight in some manner that there are surprising things going to happen in the method. I looked at the further arguments for &quot;async&quot; posted in this thread and most if not all of those issues are about highlighting one fact or another / preventing confusion so they don't really present a strong argument against using IDE instead of a modifier for that purpose.</p><p>So to reiterate, the issue I have is about having to do more work that a modern IDE like 2010 has capability to do for you. With operators like await/yield and with other similar things, a case is made for having visual cue besides the command that there's something &quot;funky&quot; going on so really this is just a language designer answer to an IDE problem. (atleast for now, I'll read Eric's post when it's out)</p><p></p><p></div></blockquote></p><p>And what if someone's using a different IDE, or not using an IDE at all? &nbsp;Tying basic language readability to the IDE is a bad idea.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Why-is-the-async-keyword-needed/ae6c422857264c5cb2f29e240110650f#ae6c422857264c5cb2f29e240110650f</link>
		<pubDate>Thu, 04 Nov 2010 16:31:45 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Why-is-the-async-keyword-needed/ae6c422857264c5cb2f29e240110650f#ae6c422857264c5cb2f29e240110650f</guid>
		<dc:creator>JonathonW</dc:creator>
		<slash:comments>32</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/CannotResolveSymbol/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Site Feedback - How very americentric</title>
		<description><![CDATA[<p>@<a href="/Forums/Feedback/How-very-americentric#ccd5317e119fe4891a6ff9df600fbb355">figuerres</a>: 2 is only not 2 in binary... &nbsp;sounds boring.</p>
<p>Decimal: &nbsp;Put in your 2 bits</p>
<p>Base 3: Put in your 2 bits</p>
<p>Hexadecimal: Put in your 2 bits</p>
<p>Base 3452873598729: Put in your 2 bits</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Feedback/How-very-americentric/bd3087dc889f4d7baa239df7018ac513#bd3087dc889f4d7baa239df7018ac513</link>
		<pubDate>Mon, 20 Sep 2010 23:57:18 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Feedback/How-very-americentric/bd3087dc889f4d7baa239df7018ac513#bd3087dc889f4d7baa239df7018ac513</guid>
		<dc:creator>JonathonW</dc:creator>
		<slash:comments>12</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/CannotResolveSymbol/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Smoothest switch ever</title>
		<description><![CDATA[<p>How do I go to the last post I haven't read in a thread? &nbsp;I can view *just* the last post in a thread, but I can't link straight to the last post (in the context of the thread).</p>
<p>[edit] Also, posting throws me back to the first page of the thread. &nbsp;Not good.</p>
<p>[edit2] And your classic login link is gone from the Sign In page.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Smoothest-switch-ever/9a9c0b51a5094f71a5229df700faff55#9a9c0b51a5094f71a5229df700faff55</link>
		<pubDate>Mon, 20 Sep 2010 15:13:51 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Smoothest-switch-ever/9a9c0b51a5094f71a5229df700faff55#9a9c0b51a5094f71a5229df700faff55</guid>
		<dc:creator>JonathonW</dc:creator>
		<slash:comments>33</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/CannotResolveSymbol/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - IE9 Beta</title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">vesuvius said:</div><div class="quoteText">
<blockquote>
<div class="quoteUser">GoddersUK said:</div>
<div class="quoteText">*snip*</div>
</blockquote>
<p>The buttons are normally the blue you have in the image above, I have dragged the
<em>channel 9.msdn/forums</em> page to the Win 7 taskbar as a shortcut. Upon launching this, the buttons are yellow. I also know that they are green also at times, but I am yet to determine the conditions that trigger
<em>a, b or c</em> or is that <em>b, g or y </em>(blue, green or yellow gold)</p>
<p>&nbsp;</p>
<p>The tabs themselves also change colour pretty dramatically sometimes, and again, i'm not sure why?</p>
</div></blockquote>
<p>Button color, for an instance launched from a pinned site or desktop shortcut, takes the predominant color from the site's icon (so, if you pin C9 to the taskbar, you get yellow buttons). &nbsp;It uses an algorithm similar to the one that decides the color of
 the taskbar button highlight.</p>
<p>&nbsp;</p>
<p>Tab color is arbitrary; all tabs in the same group will be the same color. &nbsp;This behavior's inherited from IE8.</p></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/574567-IE9-Beta/cfd0ba18374e4b8e902f9df300f32882#cfd0ba18374e4b8e902f9df300f32882</link>
		<pubDate>Thu, 16 Sep 2010 19:58:53 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/574567-IE9-Beta/cfd0ba18374e4b8e902f9df300f32882#cfd0ba18374e4b8e902f9df300f32882</guid>
		<dc:creator>JonathonW</dc:creator>
		<slash:comments>136</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/CannotResolveSymbol/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - IE9 Beta</title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">Charles said:</div><div class="quoteText">
<blockquote>
<div class="quoteUser">BitFlipper said:</div>
<div class="quoteText">*snip*</div>
</blockquote>
<p>You can effectively do this in IE9&nbsp;by setting the compatibility mode per site or domain (Tools -&gt; View Compatibility -&gt;Etc...). Then, you have 3 browsers in one! Joy!!!
<img src="http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-1.gif" alt="Smiley"></p>
<p>C</p>
</div></blockquote>
<p>Ah, good, I can post now (according to the dev tools, you're forcing IE7 compatibility mode).&nbsp; So much for &quot;IE runs the same markup as the others,&quot; though.</p>
<p>&nbsp;</p>
<p>RSS has been demoted to the command bar...&nbsp; there's no way to move it to someplace useful, and there's no way to just toggle the command bar temporarily like you can the menu bar (you have to turn it on, then turn it back off afterwards).&nbsp; Pretty inconvenient
 if you use IE's RSS features a lot.</p></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/574567-IE9-Beta/279e8e93cab04b05a9019df300f31904#279e8e93cab04b05a9019df300f31904</link>
		<pubDate>Thu, 16 Sep 2010 00:12:07 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/574567-IE9-Beta/279e8e93cab04b05a9019df300f31904#279e8e93cab04b05a9019df300f31904</guid>
		<dc:creator>JonathonW</dc:creator>
		<slash:comments>136</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/CannotResolveSymbol/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - IE9 Beta</title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">jamie said:</div><div class="quoteText">
<blockquote>
<div class="quoteUser">intelman said:</div>
<div class="quoteText">*snip*</div>
</blockquote>
<p>**bulletin ***&nbsp;&nbsp; the back button is clip art from 1992 and is cut off ****</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>gzzzt</p>
</div></blockquote>
<p>I actually kinda like the back button appearance... &nbsp;it's unique.</p>
<p>&nbsp;</p>
<p>My thoughts:</p>
<p>&nbsp;</p>
<p>Likes:</p>
<p>* I love IE's approach to site-specific browsers (pinning to start menu or creating desktop shortcuts). &nbsp;Recoloring the navigation buttons is a nice visual cue to tell which window belongs to which site (and it's very Win7-ish). &nbsp;C9 needs a large pixel icon
 for the taskbar <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-5.gif' alt='Wink' /></p>
<p>* Performance and seems very good, from the little bit that I've used it. &nbsp;Seems that IE has managed to get out of the performance rut they were in. &nbsp;Big &#43; for IE9: &nbsp;No more &quot;loading&quot; when I create a new (blank) tab.</p>
<p>* On the performance note, I love how IE detects which add-ins are causing IE to be slow to start up; slow startup is one of the big reasons I've avoided IE in the past. &nbsp;Unfortunately for Microsoft, most of the slow add-ons I disabled were Microsoft add-ons.
 &nbsp;<em>Get your act together, people!</em></p>
<p><span>* I like the minimal UI-- &nbsp;Pretty much everything I'll ever need is available under the one Tools menu. &nbsp;This is very Chrome-ish.</span></p>
<p>&nbsp;</p>
<p><span>Dislikes:</span></p>
<p>&nbsp;</p>
<p><span>* Font rendering is really crappy (worse than WPF for some cases). &nbsp;Most fonts look okay (Segoe UI looks perfectly normal), but some fonts look atrocious. &nbsp;Unfortunately for Microsoft, common Arial 12pt (probably the most common font combo on the web)
 looks <strong>horrible</strong>.</span></p>
<p><span>* Single row address bar and tabs. &nbsp;To give enough room for a usable number of tabs, I have to shrink the address bar so much that there's not much readable content in the address. &nbsp;Plus, there's a potential security issue here: &nbsp;since, on every website
 I've visited so far, the end of the domain name is not visible, there's no way (except to click the field, and arrow through or drag to scroll) to tell the difference between, say, <a href="http://arstechnica.com/">http&#58;&#47;&#47;arstechnica.com&#47;</a> and <a href="http://arstechnica.imgonnastealurpersonalinfo.com/">http&#58;&#47;&#47;arstechnica.imgonnastealurpersonalinfo.com&#47;</a>
 . &nbsp;All I see is &quot;http://arstechnic...&quot; in the address field (this is at slightly wider than the default width).</span></p>
<p><span>* Combined search and address bar. &nbsp;Why do privacy and search suggestions have to be mutually exclusive? &nbsp;This is stupid.</span></p>
<p>* Compatibility. &nbsp;I'll give them a pass on this for now (it's the first day, and lots of sites detect browsers improperly). &nbsp;But when the browser doesn't work in Microsoft's own developer forums (i.e. here), it doesn't bode well. &nbsp;It especially doesn't bode
 well that it fails inconsistently.</p>
<p>&nbsp;</p>
<p>(Posted from Chrome)</p></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/574567-IE9-Beta/468a434afe9a4d72ad899df300f3178a#468a434afe9a4d72ad899df300f3178a</link>
		<pubDate>Wed, 15 Sep 2010 23:07:42 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/574567-IE9-Beta/468a434afe9a4d72ad899df300f3178a#468a434afe9a4d72ad899df300f3178a</guid>
		<dc:creator>JonathonW</dc:creator>
		<slash:comments>136</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/CannotResolveSymbol/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - What&#39;s going on with Media Center?</title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">spivonious said:</div><div class="quoteText">
<blockquote>
<div class="quoteUser">fabian said:</div>
<div class="quoteText">*snip*</div>
</blockquote>
<p>All Win7 skus (except Home Basic)&nbsp;have Media Center. You're thinking of Vista.</p>
</div></blockquote>
<p>All Windows 7 SKUs <em>have</em>&nbsp;Media Center. &nbsp;It's not <em>installed</em> by default on the business SKUs (Business and Enterprise); it has to be added after installation as described.</p></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/569612-Whats-going-on-with-Media-Center/184598d274664ed5839c9dea001f45de#184598d274664ed5839c9dea001f45de</link>
		<pubDate>Fri, 27 Aug 2010 15:57:41 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/569612-Whats-going-on-with-Media-Center/184598d274664ed5839c9dea001f45de#184598d274664ed5839c9dea001f45de</guid>
		<dc:creator>JonathonW</dc:creator>
		<slash:comments>8</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/CannotResolveSymbol/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Google Wave Attenuated</title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">CreamFilling512 said:</div><div class="quoteText">
<blockquote>
<div class="quoteUser">exoteric said:</div>
<div class="quoteText">*snip*</div>
</blockquote>
<p>Also maybe it flopped because Google built it themselves from scratch, its a departure from their other products which are usually&nbsp;acquisitions or based on an existing codebase.</p>
<p>&nbsp;</p>
<p>Picasa was great before Google bought it. &nbsp;Talk is built around libjingle, Google Earth is rebranded&nbsp;acquisition, Chrome is built around webkit, Android is built on Linux, Google Docs is a rebranded acquisition, etc.</p>
</div></blockquote>
<p>On the contrary; Gmail's probably Google's most successful non-search product, and they built it all themselves.</p>
<p>&nbsp;</p>
<p>And obviously, their core businesses (search and advertising) were all developed by Google.</p></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/565035-Google-Wave-Attenuated/4ab0b1d9c6c14272a4bd9dea00a9b77a#4ab0b1d9c6c14272a4bd9dea00a9b77a</link>
		<pubDate>Thu, 05 Aug 2010 20:29:54 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/565035-Google-Wave-Attenuated/4ab0b1d9c6c14272a4bd9dea00a9b77a#4ab0b1d9c6c14272a4bd9dea00a9b77a</guid>
		<dc:creator>JonathonW</dc:creator>
		<slash:comments>16</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/CannotResolveSymbol/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Azure One Month Pass - No Credit Card Required</title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">blowdart said:</div><div class="quoteText">
<blockquote>
<div class="quoteUser">CannotResolveSymbol said:</div>
<div class="quoteText">*snip*</div>
</blockquote>
<p>That doesn't magically remove the need to index well and watch for deadlocks though</p>
<p>&nbsp;</p>
</div></blockquote>
<p>Yes, but that's the same skillset as writing a scalable traditional web application.</p></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/565125-Azure-One-Month-Pass-No-Credit-Card-Required/9514822d434748558ff09dea00a9bcea#9514822d434748558ff09dea00a9bcea</link>
		<pubDate>Thu, 05 Aug 2010 17:59:44 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/565125-Azure-One-Month-Pass-No-Credit-Card-Required/9514822d434748558ff09dea00a9bcea#9514822d434748558ff09dea00a9bcea</guid>
		<dc:creator>JonathonW</dc:creator>
		<slash:comments>21</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/CannotResolveSymbol/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Azure One Month Pass - No Credit Card Required</title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">ManipUni said:</div><div class="quoteText">
<p>Does anyone really think that they're qualified to write good cloud applications? I can barely write a half decent multi-threaded application. I mean if it is read only then sure, but with caching I doubt the load is very high anyway. Can you imagine the
 IO issue you'd be presented with when half a dozen apps are writing to the same database?
</p>
</div></blockquote>
<p>The whole point of Azure is that it abstracts all that away from you.&nbsp; You just write a plain old webapp; the Azure infrastructure takes care of all the hard parts:&nbsp; data distribution/synchronization, automatic allocation of nodes, etc.</p></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/565125-Azure-One-Month-Pass-No-Credit-Card-Required/dc4552b300dc4b3a95099dea00a9bcdb#dc4552b300dc4b3a95099dea00a9bcdb</link>
		<pubDate>Thu, 05 Aug 2010 17:41:41 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/565125-Azure-One-Month-Pass-No-Credit-Card-Required/dc4552b300dc4b3a95099dea00a9bcdb#dc4552b300dc4b3a95099dea00a9bcdb</guid>
		<dc:creator>JonathonW</dc:creator>
		<slash:comments>21</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/CannotResolveSymbol/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - New DDi release!</title>
		<description><![CDATA[<p>Marked as spam.</p>
<p>&nbsp;</p>
<p><img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-4.gif' alt='Tongue Out' /></p>
<p>&nbsp;</p>
<p>(Just kidding <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-5.gif' alt='Wink' /> )</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/564686-New-DDi-release/8db5148c22b644c59b6e9dea00a9b082#8db5148c22b644c59b6e9dea00a9b082</link>
		<pubDate>Wed, 04 Aug 2010 00:59:24 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/564686-New-DDi-release/8db5148c22b644c59b6e9dea00a9b082#8db5148c22b644c59b6e9dea00a9b082</guid>
		<dc:creator>JonathonW</dc:creator>
		<slash:comments>4</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/CannotResolveSymbol/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Mozilla Firefox 4 Beta 2 released</title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">AndyC said:</div><div class="quoteText">
<p>Seems that hardware acceleration still isn't available. It's incredibly slow compared to the IE9PP.</p>
</div></blockquote>
<p>But it actually has a UI.</p></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/563712-Mozilla-Firefox-4-Beta-2-released/fd38a841954246fa88db9dea00a982ee#fd38a841954246fa88db9dea00a982ee</link>
		<pubDate>Wed, 28 Jul 2010 16:00:23 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/563712-Mozilla-Firefox-4-Beta-2-released/fd38a841954246fa88db9dea00a982ee#fd38a841954246fa88db9dea00a982ee</guid>
		<dc:creator>JonathonW</dc:creator>
		<slash:comments>6</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/CannotResolveSymbol/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - internet cost / speed.  Post yours.</title>
		<description><![CDATA[<p>I'm on a 3 Mbps connection (AT&amp;T Southeast DSL) at something like $38/month.</p>
<p>&nbsp;</p>
<p>Not the best deal ever, but their only competition around here is Comcast...&nbsp; and I don't want to have anything to do with them.</p>
<p>&nbsp;</p>
<p>[edit] In TN, USA here.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/563736-internet-cost--speed-Post-yours/e4ab59bb0b4b4b39b09b9dea00a983fe#e4ab59bb0b4b4b39b09b9dea00a983fe</link>
		<pubDate>Wed, 28 Jul 2010 03:38:22 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/563736-internet-cost--speed-Post-yours/e4ab59bb0b4b4b39b09b9dea00a983fe#e4ab59bb0b4b4b39b09b9dea00a983fe</guid>
		<dc:creator>JonathonW</dc:creator>
		<slash:comments>50</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/CannotResolveSymbol/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Preview the New Channel 9</title>
		<description><![CDATA[<p>For &quot;classic account&quot; users, sign-in is here:&nbsp; <a href="http://preview.channel9.msdn.com/SignIn">
http://preview.channel9.msdn.com/SignIn</a></p>
<p>&nbsp;</p>
<p>(The &quot;Classic Account users sign in here&quot; link on the LiveID sign in page leads to the current site, not the new one)</p>
<p>&nbsp;</p>
<p>BTW, the day you switch to Live ID-only for sign-in will be the day I stop visiting.&nbsp; Live ID (and switching between IDs) isn't worth it.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/563688-Preview-the-New-Channel-9/23071dc0fb0d4db6b7e29dea00a97fce#23071dc0fb0d4db6b7e29dea00a97fce</link>
		<pubDate>Tue, 27 Jul 2010 23:01:33 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/563688-Preview-the-New-Channel-9/23071dc0fb0d4db6b7e29dea00a97fce#23071dc0fb0d4db6b7e29dea00a97fce</guid>
		<dc:creator>JonathonW</dc:creator>
		<slash:comments>30</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/CannotResolveSymbol/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Subtitles?</title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">Charles said:</div><div class="quoteText">
<blockquote>
<div class="quoteUser">JoshRoss said:</div>
<div class="quoteText">*snip*</div>
</blockquote>
<div><em>Charles wrote:</em></div>
<div><em>This is something we really want to provide (and have for quite some time), but we haven't had the ability to just get it done. We will address this. You have my word.
</em></div>
<p>&nbsp;</p>
<p>Wow.&nbsp;I made that remark over 4 years ago... So much for my word, eh? Lame. </p>
<p>&nbsp;</p>
<p>I'm having a hard time accepting how fast time is flying by... 4 years? This is still something that people request and it's still something we talk about doing. Dan and Jeff will have to make the call. It costs time and money and we certainly can't do it
 for all of our content. The question then becomes which pieces of content do we subtitle and why?</p>
<p>C</p>
</div></blockquote>
<p>No, the <em>real</em> question is, which MSR team do you hit up for the latest in voice/language recognition tech so you can make captioning completely automatic.&nbsp; <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-5.gif' alt='Wink' /></p></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/159743-Subtitles/161497dd3c0a4efd88089deb013b258c#161497dd3c0a4efd88089deb013b258c</link>
		<pubDate>Mon, 26 Jul 2010 05:24:31 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/159743-Subtitles/161497dd3c0a4efd88089deb013b258c#161497dd3c0a4efd88089deb013b258c</guid>
		<dc:creator>JonathonW</dc:creator>
		<slash:comments>40</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/CannotResolveSymbol/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Google renders androids uselss</title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">CreamFilling512 said:</div><div class="quoteText">
<blockquote>
<div class="quoteUser">phreaks said:</div>
<div class="quoteText">*snip*</div>
</blockquote>
<p>Is there really no way to disable just data?&nbsp; What if I'm roaming overseas?</p>
</div></blockquote>
<p>The Motorola Droid (running 2.1) I was playing with earlier today could disable data roaming.&nbsp; No idea if you could disable data altogether, though.</p>
<p>&nbsp;</p></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/562554-Google-renders-androids-uselss/e829e0567ad04fc086809dea00a94c0d#e829e0567ad04fc086809dea00a94c0d</link>
		<pubDate>Wed, 21 Jul 2010 23:25:36 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/562554-Google-renders-androids-uselss/e829e0567ad04fc086809dea00a94c0d#e829e0567ad04fc086809dea00a94c0d</guid>
		<dc:creator>JonathonW</dc:creator>
		<slash:comments>14</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/CannotResolveSymbol/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Google renders androids uselss</title>
		<description><![CDATA[<p>Source for this &quot;widespread&quot; disabling of Gmail accounts for no apparent reason?</p>
<p>&nbsp;</p>
<p>This is the first I've heard of it.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/562554-Google-renders-androids-uselss/9db7e619cd244d9aab9b9dea00a94ba4#9db7e619cd244d9aab9b9dea00a94ba4</link>
		<pubDate>Wed, 21 Jul 2010 17:22:31 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/562554-Google-renders-androids-uselss/9db7e619cd244d9aab9b9dea00a94ba4#9db7e619cd244d9aab9b9dea00a94ba4</guid>
		<dc:creator>JonathonW</dc:creator>
		<slash:comments>14</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/CannotResolveSymbol/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - &quot;Near C Performance&quot; w/ TraceMonkey JavaScript Engine</title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">kasajian said:</div><div class="quoteText">
<blockquote>
<div class="quoteUser">Sven Groot said:</div>
<div class="quoteText">*snip*</div>
</blockquote>
<p>I don't think that's what he said.&nbsp; Only talking about object construction.&nbsp; In allocating dynamic memory in C# is faster than allocating in C.&nbsp; The reason is because C# has garbage collection and thus can have&nbsp;a much simpler allocator.&nbsp;&nbsp; In some cases,
 the allocation is simply a pointer-increment, which is similar to the speed of alloating an object on the stack.&nbsp;&nbsp; In C and C&#43;&#43;, some kind of a heap is used, so it's more expensive.&nbsp;&nbsp; But this comparison rather naive.&nbsp; C# than incurs a cost when the garbage
 collector runs, which C and C&#43;&#43; would not have.&nbsp;&nbsp; However, the speed improevement of dynamic memory allocation with GC helps offset the cost of having a GC in the first place.</p>
<p>&nbsp;</p>
<p>In most real-world cases, this stuff doesn't matter.&nbsp; A few places it does.&nbsp; For instance, the fact that the time that the GC can take to collect is non-deterministic, it could be a problem in some cases when developing for real time systems.&nbsp;&nbsp; But I wouldn't
 say categorically that GC can't be used (plenty of real time systems that use GC).&nbsp; It all depends on what you're trying to do.</p>
</div></blockquote>
<p>Why are you arguing over a two-year-old thread?</p></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/424380-Near-C-Performance-w-TraceMonkey-JavaScript-Engine/9f4bf85ea04e4f0a8bd09deb01388bc4#9f4bf85ea04e4f0a8bd09deb01388bc4</link>
		<pubDate>Tue, 20 Jul 2010 00:41:30 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/424380-Near-C-Performance-w-TraceMonkey-JavaScript-Engine/9f4bf85ea04e4f0a8bd09deb01388bc4#9f4bf85ea04e4f0a8bd09deb01388bc4</guid>
		<dc:creator>JonathonW</dc:creator>
		<slash:comments>24</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/CannotResolveSymbol/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Designing &quot;attractive&quot; web-sites?</title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">W3bbo said:</div><div class="quoteText">
<blockquote>
<div class="quoteUser">mstefan said:</div>
<div class="quoteText">*snip*</div>
</blockquote>
<p>Aye.</p>
<p>&nbsp;</p>
<p>However, of course, software like this lowers the entry barrier for being a &quot;web designer&quot; so we'll continue to be told that &quot;my 12 yearold nephew can make websites too you know&quot; when we hand in our 4-figure invoices to clients.</p>
</div></blockquote>
<p>If, as a web designer, you can't provide a tangible benefit over an automated tool or a technically-savvy twelve-year-old, perhaps you shouldn't be handing over 4-figure invoices to clients.</p></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/560989-Designing-attractive-web-sites/ea26818bdbd34df1a83b9dea00a920d2#ea26818bdbd34df1a83b9dea00a920d2</link>
		<pubDate>Tue, 13 Jul 2010 20:27:12 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/560989-Designing-attractive-web-sites/ea26818bdbd34df1a83b9dea00a920d2#ea26818bdbd34df1a83b9dea00a920d2</guid>
		<dc:creator>JonathonW</dc:creator>
		<slash:comments>25</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/CannotResolveSymbol/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Interesting Volume UI</title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">spivonious said:</div><div class="quoteText">
<blockquote>
<div class="quoteUser">W3bbo said:</div>
<div class="quoteText">*snip*</div>
</blockquote>
<p>I agree. I would have never guessed that's what it meant. Even just a little asterisk or something would go a long way.</p>
</div></blockquote>
<p>Or at least a tooltip if you mouse over the ghosted slider thumb.</p></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/560397-Interesting-Volume-UI/10b236e6afcd46f5b9009dea00a907fd#10b236e6afcd46f5b9009dea00a907fd</link>
		<pubDate>Mon, 12 Jul 2010 20:32:30 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/560397-Interesting-Volume-UI/10b236e6afcd46f5b9009dea00a907fd#10b236e6afcd46f5b9009dea00a907fd</guid>
		<dc:creator>JonathonW</dc:creator>
		<slash:comments>15</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/CannotResolveSymbol/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - PDC10</title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">Charles said:</div><div class="quoteText">
<blockquote>
<div class="quoteUser">exoteric said:</div>
<div class="quoteText">*snip*</div>
</blockquote>
<p>Glad you picked up on the Channel 9 connection <img src="http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-1.gif" alt="Smiley"></p>
<p>&nbsp;</p>
<p>Indeed, this PDC will be a physical and virtual manifestation of the core Channel 9 philosophy: Welcome to the sausage factory, developers. You will get to meet folks you've never met before and interact with fellow developers who write Microsoft's platforms,
 tools and services in their native habitat, not some giant conference hall.... This will be&nbsp;a very
<strong>deep</strong> and very <strong>focused</strong>&nbsp;PDC. Developers only. <img src="http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-5.gif" alt="Wink"></p>
<p>&nbsp;</p>
<p>The future is,</p>
<p>C</p>
</div></blockquote>
<p>Does C9 want to sponsor any students to attend?&nbsp; <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-4.gif' alt='Tongue Out' /></p></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/560690-PDC10/ca6a84e4d5534e7ca3e39dea00a90db2#ca6a84e4d5534e7ca3e39dea00a90db2</link>
		<pubDate>Mon, 12 Jul 2010 20:09:36 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/560690-PDC10/ca6a84e4d5534e7ca3e39dea00a90db2#ca6a84e4d5534e7ca3e39dea00a90db2</guid>
		<dc:creator>JonathonW</dc:creator>
		<slash:comments>24</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/CannotResolveSymbol/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Forum posting with your IRL name</title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">spivonious said:</div><div class="quoteText">
<blockquote>
<div class="quoteUser">GoddersUK said:</div>
<div class="quoteText">*snip*</div>
</blockquote>
<p>Ah, one of the Doctor Who spinoffs. It won't be the same without David Tenant.</p>
</div></blockquote>
<p>Torchwood's nowhere near as good.&nbsp; Too serious for my taste.</p>
<p>&nbsp;</p></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/559941-Forum-posting-with-your-IRL-name/081c46b7edce44a0a4179dea00a8f62a#081c46b7edce44a0a4179dea00a8f62a</link>
		<pubDate>Mon, 12 Jul 2010 19:55:01 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/559941-Forum-posting-with-your-IRL-name/081c46b7edce44a0a4179dea00a8f62a#081c46b7edce44a0a4179dea00a8f62a</guid>
		<dc:creator>JonathonW</dc:creator>
		<slash:comments>52</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/CannotResolveSymbol/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Forum posting with your IRL name</title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">GoddersUK said:</div><div class="quoteText">
<blockquote>
<div class="quoteUser">spivonious said:</div>
<div class="quoteText">*snip*</div>
</blockquote>
<p></p>
<p>&nbsp;</p>
<p>4:55 - 5:24 <img src="http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-1.gif" alt="Smiley"></p>
</div></blockquote>
<p>Herbie Erasmus Flannigan?&nbsp; <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-4.gif' alt='Tongue Out' /></p></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/559941-Forum-posting-with-your-IRL-name/b68b881bd6504a54ac9e9dea00a8f5d4#b68b881bd6504a54ac9e9dea00a8f5d4</link>
		<pubDate>Fri, 09 Jul 2010 04:48:30 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/559941-Forum-posting-with-your-IRL-name/b68b881bd6504a54ac9e9dea00a8f5d4#b68b881bd6504a54ac9e9dea00a8f5d4</guid>
		<dc:creator>JonathonW</dc:creator>
		<slash:comments>52</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/CannotResolveSymbol/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - oil spill / MS help?</title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">jamie said:</div><div class="quoteText">
<blockquote>
<div class="quoteUser">Sven Groot said:</div>
<div class="quoteText">*snip*</div>
</blockquote>
<p>so nothing was done with this &quot;idea&quot; ...</p>
<p>&nbsp;</p>
<p>an idea for good... an idea to make MS seem caring - to make it seem human</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Ballmer could have been on CNN - urging other ceos to save the wetlands or the animals or anything...</p>
<p>&nbsp;</p>
<p>but you blew a billion on KIN or whatever instead and sold 200 phones</p>
<p>&nbsp;</p>
<p>*the 1970's called - they want their soul back</p>
<p>&nbsp;</p>
<p>edit/ps... will ms EVER listen to ideas posted here? if not this one... i doubt it.</p>
<p>&nbsp;* and how are the 2000 free fonts for web&nbsp;coming along... sheesh.</p>
</div></blockquote>
<p><blockquote><div class="quoteUser">Terms of Use said:</div><div class="quoteText"><strong>UNSOLICITED IDEA SUBMISSION POLICY.</strong> MICROSOFT OR ANY OF ITS EMPLOYEES DO NOT ACCEPT OR CONSIDER UNSOLICITED IDEAS, INCLUDING IDEAS FOR NEW ADVERTISING CAMPAIGNS, NEW PROMOTIONS, NEW PRODUCTS OR TECHNOLOGIES, PROCESSES,
 MATERIALS, MARKETING PLANS OR NEW PRODUCT NAMES. PLEASE DO NOT SEND ANY ORIGINAL CREATIVE ARTWORK, SAMPLES, DEMOS, OR OTHER WORKS. THE SOLE PURPOSE OF THIS POLICY IS TO AVOID POTENTIAL MISUNDERSTANDINGS OR DISPUTES WHEN MICROSOFT'S PRODUCTS OR MARKETING STRATEGIES
 MIGHT SEEM SIMILAR TO IDEAS SUBMITTED TO MICROSOFT. SO, PLEASE DO NOT SEND YOUR UNSOLICITED IDEAS TO MICROSOFT OR ANYONE AT MICROSOFT.</div></blockquote></p>
<p>&nbsp;</p>
<p><img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-5.gif' alt='Wink' /></p></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/552882-oil-spill--MS-help/2c7ca068f07647faba469deb00648989#2c7ca068f07647faba469deb00648989</link>
		<pubDate>Thu, 08 Jul 2010 02:08:08 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/552882-oil-spill--MS-help/2c7ca068f07647faba469deb00648989#2c7ca068f07647faba469deb00648989</guid>
		<dc:creator>JonathonW</dc:creator>
		<slash:comments>42</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/CannotResolveSymbol/Discussions/RSS</wfw:commentRss>
	</item>
</channel>
</rss>