<?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 Rhamilton</title>
	<atom:link rel="self" type="application/rss+xml" href="http://channel9.msdn.com/Niners/Rhamilton/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 Rhamilton</title>
		<link>http://channel9.msdn.com/Niners/Rhamilton/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/Rhamilton/Discussions</link>
	<language>en</language>
	<pubDate>Wed, 22 May 2013 14:19:50 GMT</pubDate>
	<lastBuildDate>Wed, 22 May 2013 14:19:50 GMT</lastBuildDate>
	<generator>Rev9</generator>
	<c9:totalResults>0</c9:totalResults>
	<c9:pageCount>0</c9:pageCount>
	<c9:pageSize>0</c9:pageSize>
	<item>
		<title>Tech Off - Coding Interview Question </title>
		<description><![CDATA[<p>An old co-worker uses this as his interview question and I'm curious about how you might solve it.</p><p>&quot;Given an array of integers, find the mean and the frequency&quot;</p><p>The mean is very simple, but the frequency part is where different methodologies can come in. &nbsp;Feel free to show and explain your process. &nbsp;There is no right or wrong way, it's just a test of your intelligence/creativity. &nbsp;</p><p><pre class="brush: csharp">
//TODO: Find the frequency

int[] intArray

int meanDivisor = intArray.Count();
int meanToBeDivided = 0;

foreach(int number in intArray)
{
    meanToBeDivided &#43;= number;
}

var mean = meanToBeDivided / meanDivisor;
</pre></p><p>&nbsp;</p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/Coding-Interview-Question/a7f14574c6d042808a4aa10b0113dc00#a7f14574c6d042808a4aa10b0113dc00</link>
		<pubDate>Fri, 16 Nov 2012 16:44:22 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/Coding-Interview-Question/a7f14574c6d042808a4aa10b0113dc00#a7f14574c6d042808a4aa10b0113dc00</guid>
		<dc:creator>Robert Hamilton</dc:creator>
		<slash:comments>5</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Rhamilton/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Is LightSwitch Useless?</title>
		<description><![CDATA[<p></p><blockquote><div class="quoteText">Sep 24, 2012 at 9:03 AM, SimonJ wroteI would have to disagree. It is just about the fastest deveopment tool available for making &quot;forms over data&quot; applications for businesses. A big, all-singing, all-dancing development environment it is not - making it much faster and a lot easier to use PROVIDED you use it for what it was intended.</div></blockquote><p></p><p>^^ this. It's not for making 'websites', especially since Silverlight blows on mobile (if it'll run at all) and the HTML Client (still in preview, mind you) doesn't look like it will make up that deficiency. You can jerry-rig it to behave like you want but if you are going to be writing 100's of lines of code, you might as well stick with Forms or MVC or some other non-RAD tooling.</p><p>But for simple data-entry (like Simon said, &quot;Forms over Data&quot;), it's an incredible framework. It's a bit of a learning curve due to the application architecture and UI in Visual Studio, but once you get past that, you'll find that Lightswitch has it's niche and isn't dead by any means.</p><p>But definitely keep an eye on the HTML Client. Depending on how well the M$ Team builds it out, you might be finding that Lightswitch's little niche market might explode into the 'actual website' sphere.</p><p>Now personally, I've developed a few websites with Lightswitch but I've restricted it's usage for 'back-office' and 'web admin panel' functionality only. I then use MVC for the front-end (better UI customization and browser compatibility) and query the Lightswitch tables for anything data-driven. That architecture has worked well for me and I never have to touch SQL since Lightswitch generates the database schema and handles CRUD operations (Think of it as Entity Framework on Easy-Mode). You'll also find that customers like the clean, easy-to-comprehend Lightswitch UI. And when they come back with customizations or new data requirements, you'll see why Lightswitch isn't dead.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/Is-LightSwitch-Useless/019e2597489d46b98414a0de00eef271#019e2597489d46b98414a0de00eef271</link>
		<pubDate>Tue, 02 Oct 2012 14:29:58 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/Is-LightSwitch-Useless/019e2597489d46b98414a0de00eef271#019e2597489d46b98414a0de00eef271</guid>
		<dc:creator>Robert Hamilton</dc:creator>
		<slash:comments>10</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Rhamilton/Discussions/RSS</wfw:commentRss>
	</item>
</channel>
</rss>