<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments for Quack-Ware.com</title>
	<atom:link href="http://www.quack-ware.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.quack-ware.com</link>
	<description>Free Software &#38; Tutorials</description>
	<lastBuildDate>Thu, 16 Feb 2012 17:21:08 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2</generator>
	<item>
		<title>Comment on My Microsoft Intern Interview Experience by C Sharp</title>
		<link>http://www.quack-ware.com/2012/my-microsoft-intern-interview-experience/#comment-766</link>
		<dc:creator>C Sharp</dc:creator>
		<pubDate>Thu, 16 Feb 2012 17:21:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.quack-ware.com/?p=459#comment-766</guid>
		<description>thanks for sharing your experience. I admire your open strength, this kind of info helps so many people whether the tell you it does or not.  I&#039;ve just recently started watching your videos and have learned so much, thank you, thank you, thank you! and keep them coming.

I&#039;m in self training trying to teach myself VB.Net, C#.Net, and SQL using Visual Studio 2008/2010 in hopes to build a program very similar to MS Outlook or Mozilla&#039;s Thunderbird.  I an idea I think will help revolutionize Text Messaging from a business perspective.  I understand it will take sometime to build such a program at my skill level but someone like yourself can build it within months.  If you&#039;re interested please contact me at: jonahtm20@gmail.com and I&#039;ll be glad to share the idea with you.</description>
		<content:encoded><![CDATA[<p>thanks for sharing your experience. I admire your open strength, this kind of info helps so many people whether the tell you it does or not.  I&#8217;ve just recently started watching your videos and have learned so much, thank you, thank you, thank you! and keep them coming.</p>
<p>I&#8217;m in self training trying to teach myself VB.Net, C#.Net, and SQL using Visual Studio 2008/2010 in hopes to build a program very similar to MS Outlook or Mozilla&#8217;s Thunderbird.  I an idea I think will help revolutionize Text Messaging from a business perspective.  I understand it will take sometime to build such a program at my skill level but someone like yourself can build it within months.  If you&#8217;re interested please contact me at: <a href="mailto:jonahtm20@gmail.com">jonahtm20@gmail.com</a> and I&#8217;ll be glad to share the idea with you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Welcome to the new Quack-Ware.com by Matt</title>
		<link>http://www.quack-ware.com/2011/welcome-to-the-new-quack-ware-com/#comment-749</link>
		<dc:creator>Matt</dc:creator>
		<pubDate>Mon, 13 Feb 2012 19:22:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.quack-ware.com/?p=155#comment-749</guid>
		<description>Hey Great Tutorials,

I was hoping you could do one on having your C# program start automatically after login.

Thanks!</description>
		<content:encoded><![CDATA[<p>Hey Great Tutorials,</p>
<p>I was hoping you could do one on having your C# program start automatically after login.</p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on My Microsoft Intern Interview Experience by Fuad</title>
		<link>http://www.quack-ware.com/2012/my-microsoft-intern-interview-experience/#comment-701</link>
		<dc:creator>Fuad</dc:creator>
		<pubDate>Thu, 02 Feb 2012 15:12:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.quack-ware.com/?p=459#comment-701</guid>
		<description>thanks a lot for sharing. although you didn&#039;t get the position, you definitely experienced along the way and surely that would help you next time. better luck next time.........

P.S: we need more visual C# 2010 tutorials from you in depth and some projects on WinForms...............</description>
		<content:encoded><![CDATA[<p>thanks a lot for sharing. although you didn&#8217;t get the position, you definitely experienced along the way and surely that would help you next time. better luck next time&#8230;&#8230;&#8230;</p>
<p>P.S: we need more visual C# 2010 tutorials from you in depth and some projects on WinForms&#8230;&#8230;&#8230;&#8230;&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on My Microsoft Intern Interview Experience by Math</title>
		<link>http://www.quack-ware.com/2012/my-microsoft-intern-interview-experience/#comment-667</link>
		<dc:creator>Math</dc:creator>
		<pubDate>Mon, 23 Jan 2012 03:16:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.quack-ware.com/?p=459#comment-667</guid>
		<description>thanks for sharing your experience ! and thanks for all your videos really helpful</description>
		<content:encoded><![CDATA[<p>thanks for sharing your experience ! and thanks for all your videos really helpful</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Interview Questions #3 &#8211; Reversing a String &#8211; C Sharp C# Visual Studio 2010 by Bruce</title>
		<link>http://www.quack-ware.com/2011/interview-questions-3-reversing-a-string-c-sharp-c-visual-studio-2010/#comment-655</link>
		<dc:creator>Bruce</dc:creator>
		<pubDate>Thu, 19 Jan 2012 08:27:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.quack-ware.com/2011/interview-questions-3-reversing-a-string-c-sharp-c-visual-studio-2010/#comment-655</guid>
		<description>I just had to note that if you were to simply split the original string into a new array of strings all you would need to do would be to create a loop for the words themselves making it much more efficient using a much smaller array length.
It could get even more complicated if you were to use generics etc.
Here is my snippet although I am sure you can do better.

private static string newReverse(string str)
	{
		string[] newStr = str.Split(&#039; &#039;);;
			int j = newStr.Length -1;
		for (int i = 0; i &lt; newStr.Length/2; i++)
		{
			
			string temp = newStr[i];
			newStr[i] = newStr[j];
			newStr[j] = temp;
			
		}
		string revStr = &quot;&quot;;
		for (int x = 0; x &lt; newStr.Length; x++)
		{
			revStr += &quot; &quot;;
			revStr += newStr[x];
		}
		return revStr;
	}</description>
		<content:encoded><![CDATA[<p>I just had to note that if you were to simply split the original string into a new array of strings all you would need to do would be to create a loop for the words themselves making it much more efficient using a much smaller array length.<br />
It could get even more complicated if you were to use generics etc.<br />
Here is my snippet although I am sure you can do better.</p>
<p>private static string newReverse(string str)<br />
	{<br />
		string[] newStr = str.Split(&#8216; &#8216;);;<br />
			int j = newStr.Length -1;<br />
		for (int i = 0; i &lt; newStr.Length/2; i++)<br />
		{</p>
<p>			string temp = newStr[i];<br />
			newStr[i] = newStr[j];<br />
			newStr[j] = temp;</p>
<p>		}<br />
		string revStr = &quot;&quot;;<br />
		for (int x = 0; x &lt; newStr.Length; x++)<br />
		{<br />
			revStr += &quot; &quot;;<br />
			revStr += newStr[x];<br />
		}<br />
		return revStr;<br />
	}</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Android Activity Lifecycle &#8211; Android Tutorial by Music Downloader for Android</title>
		<link>http://www.quack-ware.com/2011/android-activity-lifecycle-android-tutorial/#comment-593</link>
		<dc:creator>Music Downloader for Android</dc:creator>
		<pubDate>Thu, 12 Jan 2012 13:25:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.quack-ware.com/2011/android-activity-lifecycle-android-tutorial/#comment-593</guid>
		<description>Awesome</description>
		<content:encoded><![CDATA[<p>Awesome</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Properties &amp; Indexers &#8211; C# C Sharp Visual Studio 2010 by jana</title>
		<link>http://www.quack-ware.com/2011/properties-indexers-c-c-sharp-visual-studio-2010/#comment-559</link>
		<dc:creator>jana</dc:creator>
		<pubDate>Sat, 07 Jan 2012 03:43:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.quack-ware.com/2011/properties-indexers-c-c-sharp-visual-studio-2010/#comment-559</guid>
		<description>videos are helpful...browser support disable...irritating..</description>
		<content:encoded><![CDATA[<p>videos are helpful&#8230;browser support disable&#8230;irritating..</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Install Google Wallet on Samsung Galaxy Nexus (4.0.2) Stock NO ROOT by admin</title>
		<link>http://www.quack-ware.com/2011/install-google-wallet-on-samsung-galaxy-nexus-4-0-2-stock-no-root/#comment-393</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Thu, 22 Dec 2011 04:19:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.quack-ware.com/?p=203#comment-393</guid>
		<description>I just went into settings-&gt;Apps and uninstalled from there.</description>
		<content:encoded><![CDATA[<p>I just went into settings-&gt;Apps and uninstalled from there.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Install Google Wallet on Samsung Galaxy Nexus (4.0.2) Stock NO ROOT by esuohe</title>
		<link>http://www.quack-ware.com/2011/install-google-wallet-on-samsung-galaxy-nexus-4-0-2-stock-no-root/#comment-386</link>
		<dc:creator>esuohe</dc:creator>
		<pubDate>Wed, 21 Dec 2011 17:30:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.quack-ware.com/?p=203#comment-386</guid>
		<description>How did you uninstall your first Google Wallet installation? The only options I see are Disable and Info... Grr.</description>
		<content:encoded><![CDATA[<p>How did you uninstall your first Google Wallet installation? The only options I see are Disable and Info&#8230; Grr.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Some Trouble with Tabs by Nouman</title>
		<link>http://www.quack-ware.com/2011/some-trouble-with-tabs/#comment-354</link>
		<dc:creator>Nouman</dc:creator>
		<pubDate>Mon, 19 Dec 2011 10:48:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.quack-ware.com/?p=182#comment-354</guid>
		<description>Thanks Friend, it helped though I burnt my a** for couple of hours figuring out this problem. Thanks again =D</description>
		<content:encoded><![CDATA[<p>Thanks Friend, it helped though I burnt my a** for couple of hours figuring out this problem. Thanks again =D</p>
]]></content:encoded>
	</item>
</channel>
</rss>

