<?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>Comment Feed for Channel 9 - Day 1 Homework Assignment</title>
	<atom:link rel="self" type="application/rss+xml" href="http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Day-1-Homework-Assignment/RSS"></atom:link>
	<image>
		<url>http://ecn.channel9.msdn.com/o9/ch9/4c72/48563a01-65c7-4dd8-b45a-9e10015e4c72/day01Homework_100_ch9.jpg</url>
		<title>Channel 9 - Day 1 Homework Assignment</title>
		<link></link>
	</image>
	<description> Congratulations! You&#39;ve learned the basics. Now it’s time to flex your newfound knowledge, borrow from the concepts you’ve learned thus far, and write a simple application. You&#39;ll save the world by allowing a mobile user to type in a special sequence of numbers every 108 minutes. If you get stuck, watch just enough of the next video to get un-stuck. Download the source code in c# Download the source code in VB.Net </description>
	<link></link>
	<language>en</language>
	<pubDate>Wed, 22 May 2013 09:09:34 GMT</pubDate>
	<lastBuildDate>Wed, 22 May 2013 09:09:34 GMT</lastBuildDate>
	<generator>Rev9</generator>
	<item>
		<title>Re: Day 1 Homework Assignment</title>
		<description>
			<![CDATA[ <p>nice HW, was a good brush up of things done before....could have been little tougher though <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-1.gif?v=c9' alt='Smiley' /> </p><p>Thanks Bob!!</p><p>posted by optimus</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Day-1-Homework-Assignment#c634269419940000000</link>
		<pubDate>Fri, 03 Dec 2010 02:59:54 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Day-1-Homework-Assignment#c634269419940000000</guid>
		<dc:creator>optimus</dc:creator>
	</item>
	<item>
		<title>Re: Day 1 Homework Assignment</title>
		<description>
			<![CDATA[Thanks for the homework!&nbsp; Should have made it a bit harder though.&nbsp; Took me 2 minutes.&nbsp; Probably because you are awesome at explaining everything earlier :)&nbsp; Cheers.<p>posted by Nick</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Day-1-Homework-Assignment#c634285488010000000</link>
		<pubDate>Tue, 21 Dec 2010 17:20:01 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Day-1-Homework-Assignment#c634285488010000000</guid>
		<dc:creator>Nick</dc:creator>
	</item>
	<item>
		<title>Re: Day 1 Homework Assignment</title>
		<description>
			<![CDATA[ <p>It took me a while to complete this homework assignment because time went forward and back a few times. </p><p>posted by petaganayr</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Day-1-Homework-Assignment#c634308226970000000</link>
		<pubDate>Mon, 17 Jan 2011 00:58:17 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Day-1-Homework-Assignment#c634308226970000000</guid>
		<dc:creator>petaganayr</dc:creator>
	</item>
	<item>
		<title>Re: Day 1 Homework Assignment</title>
		<description>
			<![CDATA[Here is my code, any good? :)<br />namespace Hello_World{ &nbsp;<br />&nbsp;public partial class MyFirstXamlPage : PhoneApplicationPage&nbsp;&nbsp; &nbsp;{&nbsp;<br />&nbsp; &nbsp; &nbsp; &nbsp;public MyFirstXamlPage()&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;{&nbsp;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;InitializeComponent();&nbsp;&nbsp; &nbsp; &nbsp;<br />&nbsp;}<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;private void button1_Click(object sender, RoutedEventArgs e)&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;{<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;if (checkCode(secretCode.Text))<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;setText(outputText, "YOU SAVED THE WORLD");<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;else&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; setText(outputText, "YOU KILLED THE WORLD");&nbsp;&nbsp; &nbsp; &nbsp;<br />&nbsp;&nbsp; &nbsp; &nbsp; }<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;private Boolean checkCode(string theCode)&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;{&nbsp;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;if (theCode == "42 333 495 4493 293")&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;{&nbsp;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;return true;&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;}&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;else&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;{&nbsp;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;return false;&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;}&nbsp;&nbsp; &nbsp; &nbsp;<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;}<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;private void setText(TextBlock textBlock, string textInput)&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;{<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;textBlock.Text = textInput;<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;}<br />&nbsp;&nbsp; &nbsp;}<br />}<br />&nbsp;<p>posted by Joseph Clover</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Day-1-Homework-Assignment#c634321007010000000</link>
		<pubDate>Mon, 31 Jan 2011 19:58:21 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Day-1-Homework-Assignment#c634321007010000000</guid>
		<dc:creator>Joseph Clover</dc:creator>
	</item>
	<item>
		<title>Re: Day 1 Homework Assignment</title>
		<description>
			<![CDATA[@Joseph Clover: sorry about that, formatting seemed to have failed. Here is a clean version :)<br />http://pastebin.com/bBdvmB9R<p>posted by Joseph Clover</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Day-1-Homework-Assignment#c634321007920000000</link>
		<pubDate>Mon, 31 Jan 2011 19:59:52 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Day-1-Homework-Assignment#c634321007920000000</guid>
		<dc:creator>Joseph Clover</dc:creator>
	</item>
	<item>
		<title>Re: Day 1 Homework Assignment</title>
		<description>
			<![CDATA[Thanks Bob! Great lessons!<p>posted by Martin N.</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Day-1-Homework-Assignment#c634327955630000000</link>
		<pubDate>Tue, 08 Feb 2011 20:59:23 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Day-1-Homework-Assignment#c634327955630000000</guid>
		<dc:creator>Martin N.</dc:creator>
	</item>
	<item>
		<title>Re: Day 1 Homework Assignment</title>
		<description>
			<![CDATA[I love the LOST reference xD<p>posted by Brett P.</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Day-1-Homework-Assignment#c634348857430000000</link>
		<pubDate>Sat, 05 Mar 2011 01:35:43 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Day-1-Homework-Assignment#c634348857430000000</guid>
		<dc:creator>Brett P.</dc:creator>
	</item>
</channel>
</rss>