<?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 amotif</title>
	<atom:link rel="self" type="application/rss+xml" href="http://channel9.msdn.com/Niners/amotif/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 amotif</title>
		<link>http://channel9.msdn.com/Niners/amotif/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/amotif/Discussions</link>
	<language>en</language>
	<pubDate>Sat, 25 May 2013 22:52:48 GMT</pubDate>
	<lastBuildDate>Sat, 25 May 2013 22:52:48 GMT</lastBuildDate>
	<generator>Rev9</generator>
	<c9:totalResults>0</c9:totalResults>
	<c9:pageCount>0</c9:pageCount>
	<c9:pageSize>0</c9:pageSize>
	<item>
		<title>Tech Off - C# array constructor &amp;amp; initialization</title>
		<description><![CDATA[<p><blockquote>
<div class="quoteAuthor">janzenr wrote:</div>
<div class="quoteBody">I am under the impression that:<br /><br /><font face="Courier New">new String[] { &quot;foo&quot;, &quot;bar&quot;};</font><br /><br />and<br /><br /><font face="Courier New">new String();<br /></font><br />are just constructors.&nbsp;&nbsp; <font face="Courier New">new String();</font> does not new up to anything, unlike the behavior of the array,&nbsp;right?&nbsp;
</div>
</blockquote>
<br /><br /><font face="Courier New">&nbsp;&nbsp;&nbsp; <font color="#000080">new String[] { &quot;foo&quot;, &quot;bar&quot;};</font></font><br /><br />allocates and array and assigns elements<br /><br /><font face="Courier New">&nbsp;&nbsp;&nbsp; <font color="#000080">new String();</font></font><br /><br />would allocate a String instance, if it actually compiled. It won't compile because there is no default ctor for String (String is immutable, so it wouldn't make much sense).<br /><br /><font face="Courier New">&nbsp;&nbsp;&nbsp; <font color="#000080">new Object();<br /></font></font><br />This compiles and creates a new instance of Object. Your &quot;does not new up to anything&quot; statement isn't correct, as far as I understand&nbsp;your words.<br /><br /><blockquote>
<div class="quoteAuthor">janzenr wrote:</div>
<div class="quoteBody">Also if I pass <font face="Courier New">new String[] { &quot;Foo&quot;, &quot;bar&quot;}</font> as a function's parameter, it compiles. Ex:<br /><br /><font face="Courier New">Console.WriteLine(new String[] { &quot;foo&quot;, &quot;bar&quot; });<br /><br /></font><font face="Verdana">We still have a problem here.</font> </div>
</blockquote>
<br /><br />I don't see the problem. Your example of passing the initialized array as a parameter is a completely different context than your original question, which tries to use the initialized array as a statement unto itself. And *that* is the subject of the error
 message you get.<br /><br />As to &quot;why,&quot; I'd guess that has something to do with the language spec.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/259301-C-array-constructor-amp-initialization/7aab91d2867b45799cbf9dfa0090b329#7aab91d2867b45799cbf9dfa0090b329</link>
		<pubDate>Thu, 29 Nov 2007 00:42:18 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/259301-C-array-constructor-amp-initialization/7aab91d2867b45799cbf9dfa0090b329#7aab91d2867b45799cbf9dfa0090b329</guid>
		<dc:creator>amotif</dc:creator>
		<slash:comments>83</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/amotif/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - What&#39;s the functional programming / Linq form of this?</title>
		<description><![CDATA[<p><blockquote>
<div class="quoteAuthor">amotif wrote:</div>
<div class="quoteBody">Anyone know how to format this to &quot;5=&gt;a,e&quot; etc.&nbsp;in a linq-esque fashion?<br /></div>
</blockquote>
<br /><br />Okay, I think I've settled on this:<br /><br /><pre>    var result = from pair in data
                 group pair by pair.Value into g
                 select g.FormatReverseMapping();

    foreach (string s in result)
        Console.WriteLine(s);
</pre>
<br /><br />with an extension method:<br /><br /><pre>    internal static string FormatReverseMapping(this IGrouping&gt; grouping)
    {
        StringBuilder buffer = new StringBuilder();

        buffer.Append(grouping.Key);
        buffer.Append(&quot;=&gt;&quot;);
        foreach (var x in grouping)
            buffer.Append(x.Key);

        return buffer.ToString();
    }
</pre>
<br /><img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-1.gif' alt='Smiley' /><br /><br />(psst--&nbsp;take a look at&nbsp;Systems.Collections.Generic.KeyValuePair.)</p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/259232-Whats-the-functional-programming--Linq-form-of-this/a1f4be40ef8d427a9aa19dfa00905046#a1f4be40ef8d427a9aa19dfa00905046</link>
		<pubDate>Tue, 27 Nov 2007 01:56:31 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/259232-Whats-the-functional-programming--Linq-form-of-this/a1f4be40ef8d427a9aa19dfa00905046#a1f4be40ef8d427a9aa19dfa00905046</guid>
		<dc:creator>amotif</dc:creator>
		<slash:comments>9</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/amotif/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - What&#39;s the functional programming / Linq form of this?</title>
		<description><![CDATA[<p>Here's an alternative for deriving invert:<br /><br /><pre>    var invert = from pair in data
                 group pair by pair.Value;
</pre>
<br /><br />Anyone know how to format this to &quot;5=&gt;a,e&quot; etc.&nbsp;in a linq-esque fashion?<br /><br /><br /></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/259232-Whats-the-functional-programming--Linq-form-of-this/3355e614d5044c62bd4b9dfa00904ffa#3355e614d5044c62bd4b9dfa00904ffa</link>
		<pubDate>Tue, 27 Nov 2007 01:41:37 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/259232-Whats-the-functional-programming--Linq-form-of-this/3355e614d5044c62bd4b9dfa00904ffa#3355e614d5044c62bd4b9dfa00904ffa</guid>
		<dc:creator>amotif</dc:creator>
		<slash:comments>9</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/amotif/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Trick or Treat?</title>
		<description><![CDATA[<p><blockquote>
<div class="quoteAuthor">W3bbo wrote:</div>
<div class="quoteBody">&#65279;Cute... but JPEG compression is your friend. Those images shouldn't be 600KB big.<br>
</div>
</blockquote>
<br>
<br>
And... Jamie rebuts with a 1.2 MB image. <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-1.gif' alt='Smiley' /><br>
<br>
<br>
<br>
<font color="#a52a2a">Laser eyes dog is in&nbsp;ur bag<br>
stealin' ur treatz<br>
</font></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/258657-Trick-or-Treat/bf055a4a8c454844b25c9deb0023e479#bf055a4a8c454844b25c9deb0023e479</link>
		<pubDate>Wed, 31 Oct 2007 23:42:08 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/258657-Trick-or-Treat/bf055a4a8c454844b25c9deb0023e479#bf055a4a8c454844b25c9deb0023e479</guid>
		<dc:creator>amotif</dc:creator>
		<slash:comments>12</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/amotif/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Guys (Jamie?) where&#39;s the Channel9&#39;s Halloween decoration?</title>
		<description><![CDATA[<p><blockquote>
<div class="quoteAuthor">jamie wrote:</div>
<div class="quoteBody">&#65279;
<p>
<table id="table1" height="94" cellspacing="0" cellpadding="0" width="100%" border="0">
<tbody>
<tr>
<td width="57" height="94"><img height="109" src="http://www.channel9.ca/halloween/top_left_hienz.gif" width="130" border="0"></td>
<td width="100%" background="background.gif" height="94">&nbsp;</td>
<td width="150" height="94"><img height="109" src="http://www.channel9.ca/halloween/top_right.gif" width="459" border="0"></td>
</tr>
</tbody>
</table>
</p>
</div>
</blockquote>
<br>
<br>
&#43;1. [6]</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/258620-Guys-Jamie-wheres-the-Channel9s-Halloween-decoration/c7d0cdd2dd09468fbe579deb00234d72#c7d0cdd2dd09468fbe579deb00234d72</link>
		<pubDate>Wed, 31 Oct 2007 00:44:16 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/258620-Guys-Jamie-wheres-the-Channel9s-Halloween-decoration/c7d0cdd2dd09468fbe579deb00234d72#c7d0cdd2dd09468fbe579deb00234d72</guid>
		<dc:creator>amotif</dc:creator>
		<slash:comments>37</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/amotif/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Hi, I&#39;m Chris and I am a VB.NET developer !</title>
		<description><![CDATA[<p><blockquote>
<div class="quoteAuthor">W3bbo wrote:</div>
<div class="quoteBody">&#65279;<br>
Maybe it's because you've gotta be pretty <i><font>incompetant</font></i> to be a VB.NET developer and not to be able to comprehend a C# example. A VB developer should know the few syntactical differences between C# and VB, because otherwise the languages share
 an identical paradigm.<br>
</div>
</blockquote>
<br>
<br>
Is there a similar correlation for incompetent spellers? <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-8.gif' alt='Expressionless' /></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/258471-Hi-Im-Chris-and-I-am-a-VBNET-developer-/5bf3b3109e704003a6609deb00215003#5bf3b3109e704003a6609deb00215003</link>
		<pubDate>Wed, 24 Oct 2007 23:15:19 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/258471-Hi-Im-Chris-and-I-am-a-VBNET-developer-/5bf3b3109e704003a6609deb00215003#5bf3b3109e704003a6609deb00215003</guid>
		<dc:creator>amotif</dc:creator>
		<slash:comments>43</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/amotif/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Date loop backwards</title>
		<description><![CDATA[<p><blockquote>
<div class="quoteAuthor">ScanIAm wrote:</div>
<div class="quoteBody">&#65279;If the compiler can figure out that I've got code that won't ever execute or notice that I'm comparing an int to a null, it should be able to find these conditions.</div>
</blockquote>
<br /><br />The compiler doesn't know that in this case. All it knows is that you're ignoring the return value, which is a common idiom in code.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/258353-Date-loop-backwards/2d70488a2fb14536940f9df901031448#2d70488a2fb14536940f9df901031448</link>
		<pubDate>Fri, 19 Oct 2007 21:15:44 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/258353-Date-loop-backwards/2d70488a2fb14536940f9df901031448#2d70488a2fb14536940f9df901031448</guid>
		<dc:creator>amotif</dc:creator>
		<slash:comments>8</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/amotif/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Date loop backwards</title>
		<description><![CDATA[<p><font size="2">DateTime is immutable. Instead of<br /><br />myDate.AddDays(-1)<br /><br />try<br /><br />myDate = myDate.AddDays(-1)<br /><br /><br /></font><br /><br /><br /></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/258353-Date-loop-backwards/399d15495ed1457d85049df901031301#399d15495ed1457d85049df901031301</link>
		<pubDate>Thu, 18 Oct 2007 21:56:15 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/258353-Date-loop-backwards/399d15495ed1457d85049df901031301#399d15495ed1457d85049df901031301</guid>
		<dc:creator>amotif</dc:creator>
		<slash:comments>8</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/amotif/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Employment.End(me);</title>
		<description><![CDATA[<p>I was laid off once. It was probably the best thing that could have happened to me at the time. I hope it turns out the same for you.&nbsp;<img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-1.gif' alt='Smiley' /><br>
<br>
Do you need to stay until Dec. 14th to get the 4 months of severance? Just something to consider. If you do stay, make yourself uber-useful and get a feel for whether they might be able to bring you back in on contract at a cushy rate. <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-11.gif' alt='Cool' /></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/258335-EmploymentEndme/bd55ed6a77114e71bea09deb001fcbb8#bd55ed6a77114e71bea09deb001fcbb8</link>
		<pubDate>Thu, 18 Oct 2007 15:23:11 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/258335-EmploymentEndme/bd55ed6a77114e71bea09deb001fcbb8#bd55ed6a77114e71bea09deb001fcbb8</guid>
		<dc:creator>amotif</dc:creator>
		<slash:comments>20</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/amotif/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Cool It</title>
		<description><![CDATA[<p><blockquote>
<div class="quoteAuthor">Minh wrote:</div>
<div class="quoteBody">&#65279;What's the worse that can happen?<br>
<br>
As usual, reasonable people have reasonable answers.<br>
<br>
<br>
<a href="http://soapbox.msn.com/video.aspx?vid=c=v&amp;v=3f80c956-acba-4e7e-af9a-4e00d9b9f9a1&amp;ifs=true&amp;fr=msnvideo&amp;mkt=en-US&amp;brand=" target="_new">See this video on MSN Soapbox</a><br>
</div>
</blockquote>
<br>
<br>
The action in the left column is the same for both rows,&nbsp;so the economic consequence should be roughly the same. Therefore, the lower left cell should also list global depression.<br>
<br>
If you accept that then there is only one cell that doesn't bring economic disaster. And potentially political suicide--you have to convince yourself that climate change is not coming in order to take the easy path, politically speaking.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/258294-Cool-It/c4d885578d2b4fec955b9deb001f1cc7#c4d885578d2b4fec955b9deb001f1cc7</link>
		<pubDate>Tue, 16 Oct 2007 15:17:42 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/258294-Cool-It/c4d885578d2b4fec955b9deb001f1cc7#c4d885578d2b4fec955b9deb001f1cc7</guid>
		<dc:creator>amotif</dc:creator>
		<slash:comments>16</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/amotif/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Hi Ho Hi Ho its off to court I go</title>
		<description><![CDATA[<p><blockquote>
<div class="quoteAuthor">rjdohnert wrote:</div>
<div class="quoteBody">&#65279;<br>
Me: &quot;Dont get too friendly&quot; <br>
Me: &quot; Is that a trick question?&quot; <br>
Me: &quot;I dont think so&quot;<br>
Me: &quot;Got a warrant?&quot;<br>
Me: &quot;Does this mean I can move without getting a cap in my (I need to watch my language)?&quot;<br>
Me: &quot;Yeah I would have made it to the full 2 years if you hadnt stopped me&quot;<br>
Me: Full smart a$$ mode &quot; Well I was going to Fayetteville street before all the hot looking hookers moved on. Nothing worse then getting there and all the hookers are missing teeth and are riddled with all types of STD's&quot;<br>
Me: &quot; Oh goody. I need the vacation&quot;<br>
Me: &quot; Classified&quot;<br>
Me: &quot;Its whatever&quot; <br>
Me: &quot;sure&quot;<br>
</div>
</blockquote>
<br>
<br>
Sounds like you made the situation more difficult than it needed to be.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/258039-Hi-Ho-Hi-Ho-its-off-to-court-I-go/6aa3708bf0d84373aabc9deb001c8ab5#6aa3708bf0d84373aabc9deb001c8ab5</link>
		<pubDate>Mon, 08 Oct 2007 18:22:46 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/258039-Hi-Ho-Hi-Ho-its-off-to-court-I-go/6aa3708bf0d84373aabc9deb001c8ab5#6aa3708bf0d84373aabc9deb001c8ab5</guid>
		<dc:creator>amotif</dc:creator>
		<slash:comments>54</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/amotif/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Back to the Futurizer .. Why not Scoble?</title>
		<description><![CDATA[<p><blockquote>
<div class="quoteAuthor">jamie wrote:</div>
<div class="quoteBody">maybe you could get him back?<br>
</div>
</blockquote>
<br>
<br>
I predict that Scoble will be the guy that replaces the guy that&nbsp;replaced the guy that replaced the guy that replaced the guy that replaced Scoble.<br>
<br>
<br>
<font color="#808080">(Using &quot;guy&quot; in the gender-neutral sense, of course.)<br>
</font></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/257974-Back-to-the-Futurizer--Why-not-Scoble/e1583d902dcb4741afdf9deb001bacb6#e1583d902dcb4741afdf9deb001bacb6</link>
		<pubDate>Wed, 03 Oct 2007 21:44:24 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/257974-Back-to-the-Futurizer--Why-not-Scoble/e1583d902dcb4741afdf9deb001bacb6#e1583d902dcb4741afdf9deb001bacb6</guid>
		<dc:creator>amotif</dc:creator>
		<slash:comments>39</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/amotif/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Windows Vista Line</title>
		<description><![CDATA[<p><blockquote>
<div class="quoteAuthor">DCMonkey wrote:</div>
<div class="quoteBody">&#65279;
<blockquote>
<table class="quoteTable">
<tbody>
<tr>
<td valign="top" width="10"><img src="/Themes/AlmostGlass/images/icon-quote.gif"></td>
<td class="txt3"><strong>ZippyV wrote:</strong>
<hr size="1">
<i>&#65279;I don't get it. <img src="/emoticons/emotion-7.gif" border="0"></i></td>
</tr>
</tbody>
</table>
</blockquote>
<br>
<br>
Arrr. Me&nbsp;thinks it's a play on the maps o the London Underground.</div>
</blockquote>
<br>
<br>
Yarr, that's some lovely illustratin', but it won't help ye find the back o' yer britches with both hands, now will it?<br></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/257709-Windows-Vista-Line/cac7c2ad2bde402eb5d19deb0017caf9#cac7c2ad2bde402eb5d19deb0017caf9</link>
		<pubDate>Wed, 19 Sep 2007 21:40:55 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/257709-Windows-Vista-Line/cac7c2ad2bde402eb5d19deb0017caf9#cac7c2ad2bde402eb5d19deb0017caf9</guid>
		<dc:creator>amotif</dc:creator>
		<slash:comments>18</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/amotif/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Arrr! (You know what day it is)</title>
		<description><![CDATA[<p>Avast ye scurvy wag, I know it to be... Wednesday!<br>
<br>
<br>
Load the starboard guns with grapeshot and show that troll barque a <a href="http://www.youtube.com/watch?v=zRQpp_AMsZk">
broadside</a> they won't forget! Yarr!!<br></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/257703-Arrr-You-know-what-day-it-is/e79c9b8a9e7645c7b2ba9deb0017b1fb#e79c9b8a9e7645c7b2ba9deb0017b1fb</link>
		<pubDate>Wed, 19 Sep 2007 14:07:05 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/257703-Arrr-You-know-what-day-it-is/e79c9b8a9e7645c7b2ba9deb0017b1fb#e79c9b8a9e7645c7b2ba9deb0017b1fb</guid>
		<dc:creator>amotif</dc:creator>
		<slash:comments>9</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/amotif/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - I is a certificate professhunal</title>
		<description><![CDATA[<p><blockquote>
<div class="quoteAuthor">littleguru wrote:</div>
<div class="quoteBody">&#65279;I still has a melon - still ROTFL!<br>
<br>
<img src="http://icanhascheezburger.files.wordpress.com/2007/03/i-has-a-melon.jpg?w=500&amp;h=299"></div>
</blockquote>
<br>
<br>
Certificats iz good... nom nom nom nom</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/257460-I-is-a-certificate-professhunal/b8b29955fcb348e6896c9dec00a6e151#b8b29955fcb348e6896c9dec00a6e151</link>
		<pubDate>Thu, 06 Sep 2007 13:11:45 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/257460-I-is-a-certificate-professhunal/b8b29955fcb348e6896c9dec00a6e151#b8b29955fcb348e6896c9dec00a6e151</guid>
		<dc:creator>amotif</dc:creator>
		<slash:comments>32</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/amotif/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Tell us about what you do for a living</title>
		<description><![CDATA[<p><blockquote>
<div class="quoteAuthor">Charles wrote:</div>
<div class="quoteBody">&#65279;
<p>Come on, Niners. Only 57 responses? Where is everybody? Thank you very much to all who have responded!</p>
</div>
</blockquote>
<br>
<br>
Sorry, I tend to ignore the pinned topics. Some of them have been rather long-lived.
<p></p></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/257345-Tell-us-about-what-you-do-for-a-living/8e74ae3caa15441c86329dec00a513fc#8e74ae3caa15441c86329dec00a513fc</link>
		<pubDate>Sat, 01 Sep 2007 01:16:28 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/257345-Tell-us-about-what-you-do-for-a-living/8e74ae3caa15441c86329dec00a513fc#8e74ae3caa15441c86329dec00a513fc</guid>
		<dc:creator>amotif</dc:creator>
		<slash:comments>42</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/amotif/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Long Weekend!</title>
		<description><![CDATA[<p><blockquote>
<div class="quoteAuthor">jamie wrote:</div>
<div class="quoteBody">&#65279;Burrrp <img src="/emoticons/emotion-1.gif" border="0"><br>
<br>
* is there only a long weekend in toronto?</div>
</blockquote>
<br>
<br>
We have one in Seattle, too! <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-1.gif' alt='Smiley' /></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/257347-Long-Weekend/a5175ca05c0849ca9cc49dec00a51db1#a5175ca05c0849ca9cc49dec00a51db1</link>
		<pubDate>Sat, 01 Sep 2007 00:52:46 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/257347-Long-Weekend/a5175ca05c0849ca9cc49dec00a51db1#a5175ca05c0849ca9cc49dec00a51db1</guid>
		<dc:creator>amotif</dc:creator>
		<slash:comments>4</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/amotif/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - What&#39;s behind string.GetHashCode()?</title>
		<description><![CDATA[<p>You shouldn't rely on the implementation details of String.GetHashCode() remaining the same.</p>
<p>Also, GetHashCode isn't guaranteed to return the same value for a given object value from one process to the next,
<a href="http://msdn2.microsoft.com/en-us/library/system.object.gethashcode.aspx">
per the docs</a>:</p>
<p><br /><font color="#000080">&quot;The GetHashCode method for an object must consistently return the same hash code as long as there is no modification to the object state that determines the return value of the object's Equals method.
<font color="#a52a2a">Note that this is true only for the current execution of an application, and that a different hash code can be returned if the application is run again.</font>&quot;</font></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/257328-Whats-behind-stringGetHashCode/445b3f039398475eaa319dfa00b0fbaa#445b3f039398475eaa319dfa00b0fbaa</link>
		<pubDate>Fri, 31 Aug 2007 15:19:48 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/257328-Whats-behind-stringGetHashCode/445b3f039398475eaa319dfa00b0fbaa#445b3f039398475eaa319dfa00b0fbaa</guid>
		<dc:creator>amotif</dc:creator>
		<slash:comments>18</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/amotif/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Interviewing programmers</title>
		<description><![CDATA[<p><blockquote>
<div class="quoteAuthor">Minh wrote:</div>
<div class="quoteBody">&#65279;Yep! Interviewing people is a head trip. I don't know how Blowdart does it!
<img src="/emoticons/emotion-1.gif" border="0"><br>
</div>
</blockquote>
<br>
<br>
<img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-1.gif' alt='Smiley' /><br>
<br>
I forked a new thread on interviewers: <a href="/ShowPost.aspx?PostID=336235">Bad Interviewer, No Cookie</a><br>
<br>
Be gentle. <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-11.gif' alt='Cool' /></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/257126-Interviewing-programmers/9e0b1fdecae141128e269dec00a125df#9e0b1fdecae141128e269dec00a125df</link>
		<pubDate>Wed, 22 Aug 2007 18:24:36 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/257126-Interviewing-programmers/9e0b1fdecae141128e269dec00a125df#9e0b1fdecae141128e269dec00a125df</guid>
		<dc:creator>amotif</dc:creator>
		<slash:comments>80</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/amotif/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Bad Interviewer, No Cookie</title>
		<description><![CDATA[<p>Thought I'd fork off from the &quot;<a href="/ShowPost.aspx?PageIndex=3&amp;PostID=335955">Interviewing programmers</a>&quot; topic to provide a place for stories of how interview<u>er</u>s go wrong--that's right, you were the one interviewing for a position, and the
 interviewer, well, you couldn't believe it...<br>
<br>
<em><font color="#000080">Guidance:<br>
</font>
<ul>
<li><font color="#000080">Hard or open-ended questions do not in themselves a bad interview experience&nbsp;make.</font>
</li><li><font color="#000080">Probably best not to reveal the identity or&nbsp;company of the interviewer in question; this is about bad interviewing technique or habits, not humiliation.</font></li></ul>
</em><br>
For example:<br>
<br>
I was interviewing for a C&#43;&#43; position and the C&#43;&#43; &quot;expert&quot; put me through his little C&#43;&#43; quiz. No problem, except that he'd occasionally interject with some clearly false argument to the contrary. I learned as the interview proceded that he used to deal with
 his know-it-all students that way--by claiming falsehoods to be true. As the interview continued, it occurred to me that some of his &quot;false knowledge&quot; didn't appear to be game playing but what he thought to be fact. Annoying and weird to interview with a true
 know-it-all (who really doesn't).<br>
<br>
(In the following months that I worked with him this behavior continued, often with him spouting something that was easily refuted either from memory or a quick web search. I pretty much gave up on listening to anything he said.)<br></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/257146-Bad-Interviewer-No-Cookie/257146#257146</link>
		<pubDate>Wed, 22 Aug 2007 18:23:03 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/257146-Bad-Interviewer-No-Cookie/257146#257146</guid>
		<dc:creator>amotif</dc:creator>
		<slash:comments>1</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/amotif/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Interviewing programmers</title>
		<description><![CDATA[<p><blockquote>
<div class="quoteAuthor">Minh wrote:</div>
<div class="quoteBody">&#65279;No, he meant obscure question like:<br>
<br>
&nbsp;&nbsp; - Why does this statement not give me the right time? DateTime.Now.ToString(&quot;hh:MM:ss&quot;)<br>
<br>
that's design more to show the interviewer's smugness than test the interviewee's ability to work <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-1.gif' alt='Smiley' /><br>
</div>
</blockquote>
<br>
<br>
Hmm, no clue. But I do notice that the minutes, which are incorrect, happen to be the current month... 10:08:21&nbsp; <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-1.gif' alt='Smiley' /><br>
<br>
What really drives me nuts is interviewers who try to show how smart they. Far worse than interviewers who ramble on about the cool stuff they work on when it has nothing to do with what I would be working on.<br></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/257126-Interviewing-programmers/d2e43ffa36b64dc3af909dec00a124ea#d2e43ffa36b64dc3af909dec00a124ea</link>
		<pubDate>Wed, 22 Aug 2007 17:53:56 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/257126-Interviewing-programmers/d2e43ffa36b64dc3af909dec00a124ea#d2e43ffa36b64dc3af909dec00a124ea</guid>
		<dc:creator>amotif</dc:creator>
		<slash:comments>80</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/amotif/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Interviewing programmers</title>
		<description><![CDATA[<p><blockquote>
<div class="quoteAuthor">andy_hanger18 wrote:</div>
<div class="quoteBody">Do people really go this nasty and technical in interviews?</div>
</blockquote>
<br>
<br>
By &quot;nasty&quot; do you mean deep probing highly technical questions?<br>
<br>
Then, yes, but largely it depends on whether the position is suited for a new grad's knowledge&nbsp;or a seasoned pro's experience.<br></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/257126-Interviewing-programmers/e01f8d2d82ac48f2b68b9dec00a12414#e01f8d2d82ac48f2b68b9dec00a12414</link>
		<pubDate>Wed, 22 Aug 2007 14:41:51 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/257126-Interviewing-programmers/e01f8d2d82ac48f2b68b9dec00a12414#e01f8d2d82ac48f2b68b9dec00a12414</guid>
		<dc:creator>amotif</dc:creator>
		<slash:comments>80</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/amotif/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Interviewing programmers</title>
		<description><![CDATA[<p><blockquote>
<div class="quoteAuthor">evildictaitor wrote:</div>
<div class="quoteBody">&#65279;
<blockquote>
<table class="quoteTable">
<tbody>
<tr>
<td valign="top" width="10"><img src="/Themes/AlmostGlass/images/icon-quote.gif"></td>
<td class="txt3"><strong>amotif wrote:</strong>
<hr size="1">
<i>&#65279;
<blockquote>
<table class="quoteTable">
<tbody>
<tr>
<td valign="top" width="10"><img src="/Themes/AlmostGlass/images/icon-quote.gif"></td>
<td class="txt3"><strong>Massif wrote:</strong>
<hr size="1">
<i>why &quot;this &quot; &#43; someint.ToString() &#43; &quot; is stupid&quot; is a bad idea<br>
</i></td>
</tr>
</tbody>
</table>
</blockquote>
<br>
<br>
Ooh, good. Are you asking because of the use of ToString() here or because you think there's an inefficinet concat happening--because it's really not. C# 2 will use
<font color="#000080">String.Concat(string,string,string)</font> here. It's probably not any worse than using String.Format.</i></td>
</tr>
</tbody>
</table>
</blockquote>
<br>
<br>
Even so, String.Format(&quot;this {0} is stupid&quot;, someint); is preferable because it is shorter, easier to read and easier to localize.<br>
</div>
</blockquote>
<br>
<br>
&quot;Easier to read&quot; is rather subjective, but I would suggest that<br>
<font face="Courier New" color="#000080"><br>
&nbsp; &quot;this &quot; &#43; someint &#43; &quot; is stupid&quot;<br>
<br>
</font>is certainly shorter and easier to read than<br>
<br>
&nbsp;&nbsp;&nbsp; <font face="Courier New" color="#000080">String.Format(&quot;this {0} is stupid&quot;, someint)<br>
</font><br>
Localization is a weenie argument <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-1.gif' alt='Smiley' />&nbsp;but a valid point if you're hiring someone to write localizable UI code. I've written written localizable UI but haven't met many other people who have. It's certainly a different level of understanding than knowing what
 the compiler might do with string &#43; string &#43; string.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/257126-Interviewing-programmers/735f363ac8744e47b8229dec00a12395#735f363ac8744e47b8229dec00a12395</link>
		<pubDate>Wed, 22 Aug 2007 14:37:41 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/257126-Interviewing-programmers/735f363ac8744e47b8229dec00a12395#735f363ac8744e47b8229dec00a12395</guid>
		<dc:creator>amotif</dc:creator>
		<slash:comments>80</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/amotif/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Interviewing programmers</title>
		<description><![CDATA[<p>Riffing on Dispose:<br>
<br>
a) Why would you implement IDispose?<br>
<br>
b) What's a finalizer?<br>
<br>
c) What should you clean up (or not) when Dispose is called?<br>
<br>
d) What should you clean up (or not) when&nbsp;the finalizer&nbsp;is called?<br>
<br>
e) What's the function that I always forget to call when I implement Dispose? (Interpret as &quot;What's the function you&nbsp;should call when you implement Dispose?&quot;)<br>
<br>
<br>
How many people do you suppose get c) and d) correct?<br></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/257126-Interviewing-programmers/c13c92f7a62f486b96259dec00a120e1#c13c92f7a62f486b96259dec00a120e1</link>
		<pubDate>Wed, 22 Aug 2007 01:47:23 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/257126-Interviewing-programmers/c13c92f7a62f486b96259dec00a120e1#c13c92f7a62f486b96259dec00a120e1</guid>
		<dc:creator>amotif</dc:creator>
		<slash:comments>80</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/amotif/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Interviewing programmers</title>
		<description><![CDATA[<p><blockquote>
<div class="quoteAuthor">Massif wrote:</div>
<div class="quoteBody">why &quot;this &quot; &#43; someint.ToString() &#43; &quot; is stupid&quot; is a bad idea<br>
</div>
</blockquote>
<br>
<br>
Ooh, good. Are you asking because of the use of ToString() here or because you think there's an inefficinet concat happening--because it's really not. C# 2 will use
<font color="#000080">String.Concat(string,string,string)</font> here. It's probably not any worse than using String.Format.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/257126-Interviewing-programmers/3d3f1a05eb8d47aaaacf9dec00a120b8#3d3f1a05eb8d47aaaacf9dec00a120b8</link>
		<pubDate>Wed, 22 Aug 2007 01:43:31 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/257126-Interviewing-programmers/3d3f1a05eb8d47aaaacf9dec00a120b8#3d3f1a05eb8d47aaaacf9dec00a120b8</guid>
		<dc:creator>amotif</dc:creator>
		<slash:comments>80</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/amotif/Discussions/RSS</wfw:commentRss>
	</item>
</channel>
</rss>