<?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 Massif</title>
	<atom:link rel="self" type="application/rss+xml" href="http://channel9.msdn.com/Niners/Massif/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 Massif</title>
		<link>http://channel9.msdn.com/Niners/Massif/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/Massif/Discussions</link>
	<language>en</language>
	<pubDate>Mon, 20 May 2013 04:53:53 GMT</pubDate>
	<lastBuildDate>Mon, 20 May 2013 04:53:53 GMT</lastBuildDate>
	<generator>Rev9</generator>
	<c9:totalResults>0</c9:totalResults>
	<c9:pageCount>0</c9:pageCount>
	<c9:pageSize>0</c9:pageSize>
	<item>
		<title>Coffeehouse - ReFix</title>
		<description><![CDATA[<p>Anyone else heard of this project:&nbsp;<a href="http://refix.codeplex.com/">http://refix.codeplex.com/</a></p>
<p>&nbsp;</p>
<p>I think it looks pretty handy, as it's picking up on the one part of Maven that I thought .NET could do with.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/574955-ReFix/574955#574955</link>
		<pubDate>Fri, 17 Sep 2010 10:42:46 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/574955-ReFix/574955#574955</guid>
		<dc:creator>Massif</dc:creator>
		<slash:comments>1</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Massif/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - What would you do for MS?</title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">Michael Butler said:</div><div class="quoteText">
<p>If I could work at Microsoft, it would have to be Steve Ballmer's job. No point trying to work my way up
<img src="http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-5.gif" alt="Wink"></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
</div></blockquote>
<p>I know you're being facetious, but this is kinda my problem when it comes to working in a big company. (And unlike others I would like to work in a big company because I know I work best when others are around me.) But what would I actually DO for a big
 company?</p>
<p>&nbsp;</p>
<p>Technically I'm a dev, I have pretty good dev skills, but that's not what I'D bring to a company, it doesn't reflect my personal strengths.</p>
<p>&nbsp;</p>
<p>As a person, I bring ideas, like for everything. You want a feature? Sure, give me ten minutes and I'll give you a list of ideas; I'll even give you rough ideas on how to implement them, and how to gradually introduce them if they're a dramatic change. I've
 got a bit of a reputation for being a original (that's the polite term) thinker, even when I think I'm being pretty conservative.</p>
<p>&nbsp;</p>
<p>But in what job would an organization find that skill useful? Short of CEO? It's vexing that MS haven't written asking me to lead them, but what's a guy to do?</p>
<p>&nbsp;</p></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/567463-What-would-you-do-for-MS/1521db24050247b49f0f9dea001f06d0#1521db24050247b49f0f9dea001f06d0</link>
		<pubDate>Mon, 16 Aug 2010 17:48:30 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/567463-What-would-you-do-for-MS/1521db24050247b49f0f9dea001f06d0#1521db24050247b49f0f9dea001f06d0</guid>
		<dc:creator>Massif</dc:creator>
		<slash:comments>49</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Massif/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - C# Extension Properties?</title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">ExceptionDuck said:</div><div class="quoteText">
<blockquote>
<div class="quoteUser">Jonwib said:</div>
<div class="quoteText">*snip*</div>
</blockquote>
<p>I did something like this to copy Jquery.data function</p>
<p>&nbsp;</p>
<p><em>public static class extends{<br>
&nbsp;&nbsp;public static Dictionary&gt; v = new Dictionary&gt;();<br>
&nbsp;&nbsp;public static object data(this object o, object key,object val = null)<br>
&nbsp;&nbsp;{<br>
&nbsp;&nbsp;&nbsp;if (!v.ContainsKey(o))<br>
&nbsp;&nbsp;&nbsp;v[o] = new Dictionary();<br>
&nbsp;&nbsp;&nbsp;if(val!=null)<br>
&nbsp;&nbsp;&nbsp;&nbsp;return v[o][key];<br>
&nbsp;&nbsp;&nbsp;v[o][key] = val;<br>
&nbsp;&nbsp;&nbsp;return val;<br>
&nbsp;&nbsp;}<br>
}</em></p>
<p><em><span><br>
</span></em></p>
<p>It won't distinguish between equal simple types, but for complex it works well.</p>
<p>&nbsp;</p>
<p>With this you can call any object's data method</p>
<p>&nbsp;</p>
<p>F = new Form();</p>
<p>F.data(&quot;language&quot;,&quot;EN&quot;);</p>
<p>&nbsp;</p>
<p>and inside F you could call</p>
<p>&nbsp;</p>
<p>this.data(&quot;language&quot;) and it would return &quot;EN&quot;</p>
</div></blockquote>
<p>Wow, thread Necromancy!</p>
<p>&nbsp;</p>
<p>Also, use F# you can extend everything <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-1.gif' alt='Smiley' /></p></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/257556-C-Extension-Properties/8cc306407ac64ee5b8c49deb0015c52d#8cc306407ac64ee5b8c49deb0015c52d</link>
		<pubDate>Fri, 23 Jul 2010 14:57:52 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/257556-C-Extension-Properties/8cc306407ac64ee5b8c49deb0015c52d#8cc306407ac64ee5b8c49deb0015c52d</guid>
		<dc:creator>Massif</dc:creator>
		<slash:comments>42</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Massif/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Can visual studio&#39;s ctrl+arrow cursor moving logic be made camel-case aware?</title>
		<description><![CDATA[<p>It'd save me a lot of time skipping over method name calls when I want to change something in the middle.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/560668-Can-visual-studios-ctrlarrow-cursor-moving-logic-be-made-camel-case-aware/560668#560668</link>
		<pubDate>Mon, 12 Jul 2010 09:42:32 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/560668-Can-visual-studios-ctrlarrow-cursor-moving-logic-be-made-camel-case-aware/560668#560668</guid>
		<dc:creator>Massif</dc:creator>
		<slash:comments>6</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Massif/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Why does C# not support this?</title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">Minh said:</div><div class="quoteText">
<blockquote>
<div class="quoteUser">Maddus Mattus said:</div>
<div class="quoteText">*snip*</div>
</blockquote>
<p>What if I had this really common scenario?</p>
<p>&nbsp;</p>
<p>class Chicken { }</p>
<p>class Hen : Chicken { }</p>
<p>class Rooster : Chicken { }</p>
<p>&nbsp;</p>
<p>List&lt;Chicken&gt; roster = new List&lt;Chicken&gt;();</p>
<p>&nbsp;</p>
<p>roster.Add(DoWork());</p>
<p>&nbsp;</p>
</div></blockquote>
<p>That was going to be my next question <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-1.gif' alt='Smiley' /></p>
<p>&nbsp;</p>
<p>And for all that breakage and confusion, what does it get you really?</p></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/551071-Why-does-C-not-support-this/68587692550d410682849deb00634f49#68587692550d410682849deb00634f49</link>
		<pubDate>Wed, 19 May 2010 15:25:53 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/551071-Why-does-C-not-support-this/68587692550d410682849deb00634f49#68587692550d410682849deb00634f49</guid>
		<dc:creator>Massif</dc:creator>
		<slash:comments>34</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Massif/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Why does C# not support this?</title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">Maddus Mattus said:</div><div class="quoteText">
<blockquote>
<div class="quoteUser">Massif said:</div>
<div class="quoteText">*snip*</div>
</blockquote>
<p>I hate var's</p>
<p>&nbsp;</p>
<p>they are for lazy programmers <img src="http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-1.gif" alt="Smiley"></p>
<p>&nbsp;</p>
<p>and worker.DoWork() would not be possible, because DoWork has a return type. Ignoring the return is not 'first class' as Erik would call it
<img src="http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-1.gif" alt="Smiley"></p>
</div></blockquote>
<p>Or of course:</p>
<p>&nbsp;</p>
<p>ojbect thing = worker.DoWork();</p>
<p>&nbsp;</p>
<p>And, if you have a class A which inherits from B which inherits from C (and DoWork implementations returning As and Bs) what does:</p>
<p>&nbsp;</p>
<p>C wtf = worker.DoWork();</p>
<p>&nbsp;</p>
<p>Resolve as? It'd just be too confusing for us humble programmers.</p>
<p>&nbsp;</p>
<p>And I'm not letting you take away my god-given right to ignore return values! <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-2.gif' alt='Big Smile' />
</p></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/551071-Why-does-C-not-support-this/ec6a10beea7f43ec91949deb00634de4#ec6a10beea7f43ec91949deb00634de4</link>
		<pubDate>Wed, 19 May 2010 13:33:18 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/551071-Why-does-C-not-support-this/ec6a10beea7f43ec91949deb00634de4#ec6a10beea7f43ec91949deb00634de4</guid>
		<dc:creator>Massif</dc:creator>
		<slash:comments>34</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Massif/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - This is getting weird, I need input.</title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">Sven Groot said:</div><div class="quoteText">
<blockquote>
<div class="quoteUser">Maddus Mattus said:</div>
<div class="quoteText">*snip*</div>
</blockquote>
<p>Yes, that's part of it. But so's Bernoulli's principle. Some people (I'm not saying you're one of them) seem to believe that because the equal transit time explanation is wrong, Bernoulli's principle itself is wrong or doesn't apply to how wings generate
 lift. But that's not true. Bernoulli's principle works and is part of how aircraft generate lift. It's
<em>just</em> the equal transit time part of the explanation that's wrong. What you're saying is also part of it, but not the only part. It's really quite complicated.
<img src="http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-1.gif" alt="Smiley"></p>
</div></blockquote>
<p>So the pressure difference comes from something else? Like turbulence under the wing?</p>
<p>&nbsp;</p>
<p>Gah... I could look something up, but I'm supposed to be pretending to work.</p></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/550825-This-is-getting-weird-I-need-input/594f23e2f6de41b2868a9deb00633099#594f23e2f6de41b2868a9deb00633099</link>
		<pubDate>Wed, 19 May 2010 13:30:09 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/550825-This-is-getting-weird-I-need-input/594f23e2f6de41b2868a9deb00633099#594f23e2f6de41b2868a9deb00633099</guid>
		<dc:creator>Massif</dc:creator>
		<slash:comments>16</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Massif/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Why does C# not support this?</title>
		<description><![CDATA[<p>Well what would</p>
<p>&nbsp;</p>
<p>var whatAmI = worker.DoWork();</p>
<p>&nbsp;</p>
<p>Do? and of course what would:</p>
<p>&nbsp;</p>
<p>worker.DoWork();</p>
<p>&nbsp;</p>
<p>Do when we don't care about the return? </p>
<p>&nbsp;</p>
<p>I also don't like it because it doesn't seem properly polymorphic to me, as the return type is clearly related to what the function does, and now the identically named functions are clearly doing something different. But that's just me.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/551071-Why-does-C-not-support-this/6534f8ae1a0e4136a69e9deb00634d7e#6534f8ae1a0e4136a69e9deb00634d7e</link>
		<pubDate>Wed, 19 May 2010 13:21:12 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/551071-Why-does-C-not-support-this/6534f8ae1a0e4136a69e9deb00634d7e#6534f8ae1a0e4136a69e9deb00634d7e</guid>
		<dc:creator>Massif</dc:creator>
		<slash:comments>34</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Massif/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - This is getting weird, I need input.</title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">Maddus Mattus said:</div><div class="quoteText">
<p>Just watched a documentairy on the BBC about the history of power. Was an interesting bit about the steam engine. People used it for 200 years before they understood the theory.</p>
<p>&nbsp;</p>
<p>Nowadays we take the theory for fact and we forget to check the theory afterwards.</p>
<p>&nbsp;</p>
<p>Same with the plane. For years scientist thought that the wind over a wing created a vacum beneath the wing. This vacum would generate&nbsp;lift. Recently that theory has been ditched.&nbsp;A wing just bends air, the direction on the bending results in an opposite
 force (lift). That's why at slower speeds they extend flaps to make the wing bend the air even further.</p>
<p>&nbsp;</p>
<p>Theory is all good and well, but practise is what we deal with on a day to day basis.</p>
</div></blockquote>
<p>Oh good. That whole &quot;makes the air go faster over the top&quot; thing never made much sense to me.</p>
<p>&nbsp;</p>
<p>But have we figured out how sailing works yet?</p></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/550825-This-is-getting-weird-I-need-input/ea23d4a1d1dc40dcae739deb00632f33#ea23d4a1d1dc40dcae739deb00632f33</link>
		<pubDate>Wed, 19 May 2010 12:32:28 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/550825-This-is-getting-weird-I-need-input/ea23d4a1d1dc40dcae739deb00632f33#ea23d4a1d1dc40dcae739deb00632f33</guid>
		<dc:creator>Massif</dc:creator>
		<slash:comments>16</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Massif/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - When full disclosure regarding Aliens happens, what will you do?</title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">Charles said:</div><div class="quoteText">
<blockquote>
<div class="quoteUser">justth3fax said:</div>
<div class="quoteText">*snip*</div>
</blockquote>
<p>I'll ask them if they use integers in their form of computation or, more interestingly, hand them a calculus text book and see if they recognize the language, mathematics, it contains.
</p>
<p>&nbsp;</p>
<p>C</p>
</div></blockquote>
<p>You read Anathem yet then? If not, thoroughly recommended.</p></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/550628-When-full-disclosure-regarding-Aliens-happens-what-will-you-do/1623f7b8e0ba4a1b87529deb0062feaf#1623f7b8e0ba4a1b87529deb0062feaf</link>
		<pubDate>Tue, 18 May 2010 10:00:15 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/550628-When-full-disclosure-regarding-Aliens-happens-what-will-you-do/1623f7b8e0ba4a1b87529deb0062feaf#1623f7b8e0ba4a1b87529deb0062feaf</guid>
		<dc:creator>Massif</dc:creator>
		<slash:comments>70</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Massif/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Dear MS: Any chance of a free version of InTune for family Admins?</title>
		<description><![CDATA[<p>See now, <a href="http://www.microsoft.com/windows/windowsintune/default.aspx">
Intune</a> looks awesome; but it's aimed at business users.</p>
<p>&nbsp;</p>
<p>I would like something similar to avoid the annoyance of having to fix/patch/etc... my parent's/sisters/brothers/mother-in-laws PC every time I see them (or the even greater annoyance of trying to remotely fix and diagnose over the phone).</p>
<p>&nbsp;</p>
<p>Any love for us Family Administrators?</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/545198-Dear-MS-Any-chance-of-a-free-version-of-InTune-for-family-Admins/545198#545198</link>
		<pubDate>Tue, 20 Apr 2010 12:57:45 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/545198-Dear-MS-Any-chance-of-a-free-version-of-InTune-for-family-Admins/545198#545198</guid>
		<dc:creator>Massif</dc:creator>
		<slash:comments>4</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Massif/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Opera 10.5</title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">stun said:</div><div class="quoteText">
<blockquote>
<div class="quoteUser">Bass said:</div>
<div class="quoteText">*snip*</div>
</blockquote>
<p>Yeah it is. I didn't expect that from Opera.</p>
<p>&nbsp;</p>
<p>However, as I use it more and more, these are really annoying for me.</p>
<p>(1) Ctrl &#43; 1-9 for tab switching &lt;=== by default it is mapped to Speed Dial</p>
<p>(2) Ctrl &#43; PageUp/PageDown for going to next/previous tab &lt;== which I had to configure myself</p>
<p>&nbsp;</p>
<p>(3) Can't access my bookmarks easily like Google Chrome. I have to focus into the Address Bar to show the Bookmarks and click again.</p>
<p>(4) Bookmarks NOT sortable (is it possible to sort Bookmarks?)</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Do you guys have any other things that you don't like?</p>
</div></blockquote>
<p>Awesome! I don't even need to open speed dial to use it!</p>
<p>What was wrong with Ctrl &#43; tab for tab switching btw? It's pretty standard windows behaviour, and ctrl&#43;shift&#43;tab for going back?</p>
<p>&nbsp;</p>
<p>Oh, and opening the bookmarks panel (with the tiny little panel button which is bottom left by default) shows them to be searchable and sortable however you like. Not sure if there's a shortcut to show bookmarks &nbsp;though.</p>
<p>&nbsp;</p>
<p>Awesome, the pretty obvious-if-not-standard ctrl &#43; B shows / hides the bookmarks panel.</p></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/533733-Opera-105/e75b3662cd9b4a7488ec9deb00da8497#e75b3662cd9b4a7488ec9deb00da8497</link>
		<pubDate>Fri, 05 Mar 2010 09:08:55 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/533733-Opera-105/e75b3662cd9b4a7488ec9deb00da8497#e75b3662cd9b4a7488ec9deb00da8497</guid>
		<dc:creator>Massif</dc:creator>
		<slash:comments>11</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Massif/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Three different browser over three weeks ... the winner is ...</title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">Ian2 said:</div><div class="quoteText">
<blockquote>
<div class="quoteUser">Maddus Mattus said:</div>
<div class="quoteText">*snip*</div>
</blockquote>
<p>I've gone through a few phases with Apple - I bought an iPhone when it first came out and that was/is a superb product (only just recently replaced my&nbsp;original 2G iPhone with an HTC HD2).&nbsp; Dislike the whole cool thing but being old I'm out of that loop anyway.&nbsp;&nbsp;Then
 went on an Apple downer - got pissed off when my MacBook battery died, spoke to Apple,&nbsp;who admitted it was a faulty batch and a known issue, but refused to replace it (cost me GBP70 to replace if I recollect correctly).&nbsp;</p>
<p>&nbsp;</p>
<p>Like the look of the iPad but don't want to learn that SDK so probably won't bother with it.</p>
<p>&nbsp;</p>
<p>Damn, what was this topic about again?&nbsp;</p>
</div></blockquote>
<p>I can't reproduce your Opera results (I user opera all the time at work, don't care too much at home, but used it enough that my wife now complains about having to use other browsers!). Plus your results for opera are probably worth re-visiting as it's all
 new and shiny as of today.</p>
<p>&nbsp;</p>
<p>Although I did used to have occasional problems posting on C9 from opera, I wonder if 10.50 has fixed that?</p></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/533570-Three-different-browser-over-three-weeks--the-winner-is-/351a5cff324d4d6b814b9deb00da6f2b#351a5cff324d4d6b814b9deb00da6f2b</link>
		<pubDate>Tue, 02 Mar 2010 13:21:11 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/533570-Three-different-browser-over-three-weeks--the-winner-is-/351a5cff324d4d6b814b9deb00da6f2b#351a5cff324d4d6b814b9deb00da6f2b</guid>
		<dc:creator>Massif</dc:creator>
		<slash:comments>29</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Massif/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Windows shut down order.</title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">AndyC said:</div><div class="quoteText">
<p>Windows just starts sending every app a WM_QUERYENDSESSION message then, assuming nothing attempts to block shutdown, sends everything an WM_ENDSESSION message. Apps have to respond in a timely fashion to these messages or Windows will just kill them The
 end result of this is that there is no defined order of apps shutting down and you should never ever try to rely on one.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
</div></blockquote>
<p>Gah! Double post...</p></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/486091-Windows-shut-down-order/22f9d265e690437daeac9deb00084acc#22f9d265e690437daeac9deb00084acc</link>
		<pubDate>Fri, 21 Aug 2009 10:07:49 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/486091-Windows-shut-down-order/22f9d265e690437daeac9deb00084acc#22f9d265e690437daeac9deb00084acc</guid>
		<dc:creator>Massif</dc:creator>
		<slash:comments>16</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Massif/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Windows shut down order.</title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">AndyC said:</div><div class="quoteText">
<p>Windows just starts sending every app a WM_QUERYENDSESSION message then, assuming nothing attempts to block shutdown, sends everything an WM_ENDSESSION message. Apps have to respond in a timely fashion to these messages or Windows will just kill them The
 end result of this is that there is no defined order of apps shutting down and you should never ever try to rely on one.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
</div></blockquote>
<p>I wasn't even thinking of relying on one, I was just wondering if there were any measures to mitigate slow to shut down applications by starting them shutting down first. (Possibly leaving resources free for that app to shut down before kicking everything
 else off).</p>
<p>&nbsp;</p>
<p>I imagine it's almost impossible to calculate which apps will be slow to shut down, so I don't suppose it's worth it.</p></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/486091-Windows-shut-down-order/4822196e212542fbb9979deb00084aa4#4822196e212542fbb9979deb00084aa4</link>
		<pubDate>Fri, 21 Aug 2009 09:59:24 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/486091-Windows-shut-down-order/4822196e212542fbb9979deb00084aa4#4822196e212542fbb9979deb00084aa4</guid>
		<dc:creator>Massif</dc:creator>
		<slash:comments>16</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Massif/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Windows shut down order.</title>
		<description><![CDATA[<p>This may have been approached in a video somewhere, but I thought I ask actual people instead of trawling through hours of footage to find a possible answer.</p>
<p>&nbsp;</p>
<p>When I log off / shut down - how does windows decide which order to shut down applications in? I originally assumed it just sent the same shutdown message to all applications. But is it smarter than that? Does it send large applications shutdown messages
 early? Does it only try to shut down N processes at a time. (Where N is the number of processors the machine has.)</p>
<p>&nbsp;</p>
<p>Just idle curiosity really.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/486091-Windows-shut-down-order/486091#486091</link>
		<pubDate>Fri, 21 Aug 2009 08:21:48 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/486091-Windows-shut-down-order/486091#486091</guid>
		<dc:creator>Massif</dc:creator>
		<slash:comments>16</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Massif/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - MSN Music (UK) does not work on Vista (and poor response from support)</title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">W3bbo said:</div><div class="quoteText">
<blockquote>
<div class="quoteUser">fred2009 said:</div>
<div class="quoteText">*snip*</div>
</blockquote>
Won't you end up with the same problem as before? Apparently music from the Nokia store are DRM encumbered, so once their license servers go down you'll lose your music again.<br>
<br>
Have you considered the Amazon MP3 store? They've got a great selection, and it's in MP3 format too.<br>
</div></blockquote>
<p>It's worse than that. Nokia Music is done by the same people who did the MSN music store.</p>
<p>And me...</p>
<p>And if that's not reason enough to run for the hills, then I don't know what is.</p>
<p>(Note: We did make it better, honest.)</p></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/251941-MSN-Music-UK-does-not-work-on-Vista-and-poor-response-from-support/6717d68e25d34bd5aacd9dec0052712c#6717d68e25d34bd5aacd9dec0052712c</link>
		<pubDate>Fri, 19 Dec 2008 12:02:19 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/251941-MSN-Music-UK-does-not-work-on-Vista-and-poor-response-from-support/6717d68e25d34bd5aacd9dec0052712c#6717d68e25d34bd5aacd9dec0052712c</guid>
		<dc:creator>Massif</dc:creator>
		<slash:comments>17</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Massif/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Last poster wins</title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">Sabot said:</div><div class="quoteText">
<blockquote>
<div class="quoteUser">rahsoftware said:</div>
<div class="quoteText">*snip*</div>
</blockquote>
I think we should leave this thread as a simplistic demnostration of evolution in-motion.
<div><br>
</div>
<div>As for the rules. What are their worth if not define clearly and followed? I see Cupiditas remark for rules as the first calls for civilisation in our evolution story.</div>
<div><br>
</div>
<div>So I think we should now ask some fundimental questions.&nbsp;</div>
<div><br>
</div>
<div>
<p class="MsoNormal"><font face="'Segoe UI', sans-serif" color="black">Jamie is the Genesis, so omnipotent being ?</font></p>
<p class="MsoNormal"><font face="'Segoe UI', sans-serif" color="black">When does Sven become Japanese?</font></p>
<p class="MsoNormal"><font face="'Segoe UI', sans-serif" color="black">Is the world’s hardest riddle the real evolution thread and this a pretender?</font></p>
<p class="MsoNormal"><font face="'Segoe UI', sans-serif" color="black">Is C9 a microcosm of life as we know it?</font></p>
<p class="MsoNormal"><font class="Apple-style-span">Do we care?</font></p>
<p class="MsoNormal"><font class="Apple-style-span">Is there enough beer in the world?</font></p>
<p class="MsoNormal"><font class="Apple-style-span">Does anyone undestand what is happening in 'Lost' anymore? ... and can explain it to me?</font></p>
<p class="MsoNormal"><font class="Apple-style-span">Who is going to buy Blowdarts book?</font></p>
<p class="MsoNormal"><font class="Apple-style-span">When will Christmas fall on another day other than the Dec 25th?</font></p>
<p class="MsoNormal"><font class="Apple-style-span">Will this thread get locked?</font></p>
<p class="MsoNormal"><font class="Apple-style-span">When is the year of Linux?</font></p>
<p class="MsoNormal"><font class="Apple-style-span">Will I stop wasting my lunch-hour writting in this thread? - Well I guess yes is the answer to that one ... back to work!</font></p>
</div>
</div></blockquote>
<p>If past experience is anything to go by, the best way to get the thread locked (and hence be the last poster) without being banned is to start using &quot;british swearwords&quot;.</p>
<p>Which could be genuine ones, or ones you just made up, it's not like anyone at MS will be able to tell the difference, the bunch of swagbords that they are.</p></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/441982-Last-poster-wins/32912c8237704427963e9dea010b95ed#32912c8237704427963e9dea010b95ed</link>
		<pubDate>Mon, 01 Dec 2008 15:22:35 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/441982-Last-poster-wins/32912c8237704427963e9dea010b95ed#32912c8237704427963e9dea010b95ed</guid>
		<dc:creator>Massif</dc:creator>
		<slash:comments>98</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Massif/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Vice Presidential debate</title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">blowdart said:</div><div class="quoteText">
<blockquote>
<div class="quoteUser">Massif said:</div>
<div class="quoteText">*snip*</div>
</blockquote>
Arguably no meat is environmentally sound; it takes more energy to feed the animals (via grain etc.) that the end product delivers; if you wanted to be environmentally sound it's time to go vegan.<br>
<br>
My theory is cruelty makes for tastier food, witness veal and foie gras. I've tried telling vegetables they are horrible and nobody loves them, but spinach still tastes awful no matter how cruel you are to it.<br>
</div></blockquote>Well, no meat is possibly more sound than meat. But veal is a waste product from the Dairy industry, so eating it is considerably more sound than not eating it, and letting it go to waste.<br>
<br>
Also veal's delicious whatever, the extra cruelty seems superflous to me.<br>
<br>
And I find the best way to make vegetables taste nicer is to tortue them in scorching hot liquid fat for several minutes, the longer the better, just so long as you don't burn them too badly.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/430949-Vice-Presidential-debate/e26c98ce7b7c4bd7a71e9dea0101ea11#e26c98ce7b7c4bd7a71e9dea0101ea11</link>
		<pubDate>Fri, 03 Oct 2008 11:34:22 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/430949-Vice-Presidential-debate/e26c98ce7b7c4bd7a71e9dea0101ea11#e26c98ce7b7c4bd7a71e9dea0101ea11</guid>
		<dc:creator>Massif</dc:creator>
		<slash:comments>87</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Massif/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Vice Presidential debate</title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">Dr Herbie said:</div><div class="quoteText">
<blockquote>
<div class="quoteUser">blowdart said:</div>
<div class="quoteText">*snip*</div>
</blockquote>
My in-laws have two donkeys.&nbsp; They are called Dinky and Ted.<br>
They like cold toast.<br>
<br>
Herbie<br>
</div></blockquote>
<p>&quot;cold toast&quot;? That's awfully specific for a Donkey.<br>
<br>
I've not eaten horse though, apparantly it's very nice. We're eating a&nbsp;relatively large amount&nbsp;of veal at the moment since discovering that:<br>
a - now &quot;ethical&quot; or &quot;pink&quot; veal is commonly available that it's the ethical and environmentally sound meat to eat.<br>
b - it's suprising cheap and delicious, probably because everyone still thinks it's cruel.<br>
<br>
Marvellous all round.</p></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/430949-Vice-Presidential-debate/e266898fd9724339bc1a9dea0101e8f0#e266898fd9724339bc1a9dea0101e8f0</link>
		<pubDate>Fri, 03 Oct 2008 11:16:26 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/430949-Vice-Presidential-debate/e266898fd9724339bc1a9dea0101e8f0#e266898fd9724339bc1a9dea0101e8f0</guid>
		<dc:creator>Massif</dc:creator>
		<slash:comments>87</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Massif/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Vice Presidential debate</title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">jh71283 said:</div><div class="quoteText">
<blockquote>
<div class="quoteUser">evildictaitor said:</div>
<div class="quoteText">*snip*</div>
</blockquote>
I bet she would have been much better is she was a gNuisance user.....<br>
</div></blockquote>Hush you fools. Don't talk to the &quot;deliberately being controversial to get attention and justify their meagre lives&quot; trolls.<br>
<br>
Talk to me instead! I have a pony.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/430949-Vice-Presidential-debate/49fd5dac95ce45f5bcca9dea0101e817#49fd5dac95ce45f5bcca9dea0101e817</link>
		<pubDate>Fri, 03 Oct 2008 08:28:12 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/430949-Vice-Presidential-debate/49fd5dac95ce45f5bcca9dea0101e817#49fd5dac95ce45f5bcca9dea0101e817</guid>
		<dc:creator>Massif</dc:creator>
		<slash:comments>87</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Massif/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Almost done...</title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">harumscarum said:</div><div class="quoteText">
<blockquote>
<div class="quoteUser">Massif said:</div>
<div class="quoteText">*snip*</div>
</blockquote>
Nokia? <a href="http://www.telegraph.co.uk/connected/main.jhtml?xml=/connected/2008/10/02/dlnokia102.xml">
http://www.telegraph.co.uk/connected/main.jhtml?xml=/connected/2008/10/02/dlnokia102.xml</a><br>
<br>
</div></blockquote>
<p>I kinda wish I had prizes to give out, but yes. harumscarum hits the nail on the head first try.</p>
<p>Not dramatic new technology or world-changing or anything, but cool to actually be part of something properly big. I worked on Comes With Music, and I'm still working on it. Plenty to do, plenty to do...</p></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/430481-Almost-done/0b71a583ec3f4692bc159dea010170a0#0b71a583ec3f4692bc159dea010170a0</link>
		<pubDate>Fri, 03 Oct 2008 07:45:55 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/430481-Almost-done/0b71a583ec3f4692bc159dea010170a0#0b71a583ec3f4692bc159dea010170a0</guid>
		<dc:creator>Massif</dc:creator>
		<slash:comments>12</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Massif/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Almost done...</title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">littleguru said:</div><div class="quoteText">
<blockquote>
<div class="quoteUser">Dr Herbie said:</div>
<div class="quoteText">*snip*</div>
</blockquote>
Facebook 2, Facebook 2, Facebook 2, ... <img src="http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-1.gif" alt="Smiley"></div></blockquote>Well today's Launch day, big press event in London and all that. So you'll find out.<br>
<br>
The only really annoying thing about the whole process is I'm contracted out by my real employer, so I don't get any free samples... Boo! Hiss!<br>
<br>
And yes, there's an excellent chance it'll be on Telly. Well, The gadget show at least...</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/430481-Almost-done/96c38c7396334699b4ff9dea0101701b#96c38c7396334699b4ff9dea0101701b</link>
		<pubDate>Thu, 02 Oct 2008 14:31:21 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/430481-Almost-done/96c38c7396334699b4ff9dea0101701b#96c38c7396334699b4ff9dea0101701b</guid>
		<dc:creator>Massif</dc:creator>
		<slash:comments>12</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Massif/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Almost done...</title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">Dr Herbie said:</div><div class="quoteText">
<blockquote>
<div class="quoteUser">harumscarum said:</div>
<div class="quoteText">*snip*</div>
</blockquote>
... It was Tom Hanks ...<br>
<br>
Herbie<br>
</div></blockquote>Also, what's with C9's terrible support of Opera? The Add button doesn't always work reliably. It's all rather confusing if you ask me. I suppose it works though, which is better than many sites.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/430481-Almost-done/492ea9d13a6f4514b1039dea01016f6c#492ea9d13a6f4514b1039dea01016f6c</link>
		<pubDate>Wed, 01 Oct 2008 08:26:22 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/430481-Almost-done/492ea9d13a6f4514b1039dea01016f6c#492ea9d13a6f4514b1039dea01016f6c</guid>
		<dc:creator>Massif</dc:creator>
		<slash:comments>12</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Massif/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Almost done...</title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">Dr Herbie said:</div><div class="quoteText">
<blockquote>
<div class="quoteUser">harumscarum said:</div>
<div class="quoteText">*snip*</div>
</blockquote>
... It was Tom Hanks ...<br>
<br>
Herbie<br>
</div></blockquote>
<p>Tom Hanks you say... Hmmm...</p>
<p>Well, if you say so.</p></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/430481-Almost-done/bed8d96fee8b4dc089119dea01016f41#bed8d96fee8b4dc089119dea01016f41</link>
		<pubDate>Wed, 01 Oct 2008 08:25:39 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/430481-Almost-done/bed8d96fee8b4dc089119dea01016f41#bed8d96fee8b4dc089119dea01016f41</guid>
		<dc:creator>Massif</dc:creator>
		<slash:comments>12</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Massif/Discussions/RSS</wfw:commentRss>
	</item>
</channel>
</rss>