<?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 AndrewBlogs</title>
	<atom:link href="http://andrewblogs.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://andrewblogs.com/blog</link>
	<description></description>
	<lastBuildDate>Thu, 22 Dec 2011 07:12:45 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on Css Syntax Highlighting for Scss by teebot</title>
		<link>http://andrewblogs.com/blog/css-syntax-highlighting-for-scss/comment-page-1/#comment-6576</link>
		<dc:creator>teebot</dc:creator>
		<pubDate>Thu, 22 Dec 2011 07:12:45 +0000</pubDate>
		<guid isPermaLink="false">http://andrewblogs.com/blog/?p=659#comment-6576</guid>
		<description>Thanks!</description>
		<content:encoded><![CDATA[<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on JavaScript, Part 1: Objects, Functions, Scoping &amp; Closure. by Cornelius Bertsch</title>
		<link>http://andrewblogs.com/blog/javascript-part1-objects-functions-scoping-closure/comment-page-1/#comment-6078</link>
		<dc:creator>Cornelius Bertsch</dc:creator>
		<pubDate>Sat, 03 Dec 2011 22:08:36 +0000</pubDate>
		<guid isPermaLink="false">http://andrewblogs.com/blog/?p=759#comment-6078</guid>
		<description>Very informative post here. Thanks for sharing your knowledge with me. I will definitely be back.</description>
		<content:encoded><![CDATA[<p>Very informative post here. Thanks for sharing your knowledge with me. I will definitely be back.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Consume a WordPress RSS Feed in C# and cache it. by Jason M</title>
		<link>http://andrewblogs.com/blog/consume-wordpress-rss-feed-in-c-sharp-and-cache-it/comment-page-1/#comment-5815</link>
		<dc:creator>Jason M</dc:creator>
		<pubDate>Mon, 21 Nov 2011 22:11:01 +0000</pubDate>
		<guid isPermaLink="false">http://cowfarm.net/?p=396#comment-5815</guid>
		<description>Here is a function to get the 5 fields of the feed:


static IList GetBlogFeed(string feedUrl, int feedCount)
{
  XNamespace content = XNamespace.Get(&quot;http://purl.org/rss/1.0/modules/content/&quot;);

  var doc = XDocument.Load(feedUrl);
  var feeds = doc.Descendants(&quot;item&quot;).Select(x =&gt;
    new FeedViewModel
    {
      Title = x.Element(&quot;title&quot;).Value,
      PublishedDate = DateTime.Parse(x.Element(&quot;pubDate&quot;).Value),
      Url = x.Element(&quot;link&quot;).Value,
      Description = x.Element(&quot;description&quot;).Value,
      Content = x.Element(content + &quot;encoded&quot;).Value
    }).OrderByDescending(x =&gt; x.PublishedDate).Take(feedCount);
  return feeds.ToList();
}</description>
		<content:encoded><![CDATA[<p>Here is a function to get the 5 fields of the feed:</p>
<p>static IList GetBlogFeed(string feedUrl, int feedCount)<br />
{<br />
  XNamespace content = XNamespace.Get(&#8220;http://purl.org/rss/1.0/modules/content/&#8221;);</p>
<p>  var doc = XDocument.Load(feedUrl);<br />
  var feeds = doc.Descendants(&#8220;item&#8221;).Select(x =&gt;<br />
    new FeedViewModel<br />
    {<br />
      Title = x.Element(&#8220;title&#8221;).Value,<br />
      PublishedDate = DateTime.Parse(x.Element(&#8220;pubDate&#8221;).Value),<br />
      Url = x.Element(&#8220;link&#8221;).Value,<br />
      Description = x.Element(&#8220;description&#8221;).Value,<br />
      Content = x.Element(content + &#8220;encoded&#8221;).Value<br />
    }).OrderByDescending(x =&gt; x.PublishedDate).Take(feedCount);<br />
  return feeds.ToList();<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Consume a WordPress RSS Feed in C# and cache it. by Jason M</title>
		<link>http://andrewblogs.com/blog/consume-wordpress-rss-feed-in-c-sharp-and-cache-it/comment-page-1/#comment-5814</link>
		<dc:creator>Jason M</dc:creator>
		<pubDate>Mon, 21 Nov 2011 22:09:53 +0000</pubDate>
		<guid isPermaLink="false">http://cowfarm.net/?p=396#comment-5814</guid>
		<description>This is great, but you should point out there is a &quot;trick&quot; to getting the content:encoded.

// Declare this
XNamespace content = XNamespace.Get(&quot;http://purl.org/rss/1.0/modules/content/&quot;);

// Then later:
Content = x.Element(content + &quot;encoded&quot;).Value</description>
		<content:encoded><![CDATA[<p>This is great, but you should point out there is a &#8220;trick&#8221; to getting the content:encoded.</p>
<p>// Declare this<br />
XNamespace content = XNamespace.Get(&#8220;http://purl.org/rss/1.0/modules/content/&#8221;);</p>
<p>// Then later:<br />
Content = x.Element(content + &#8220;encoded&#8221;).Value</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on OpenID for ASP.NET MVC, A Quick Setup by Gimble</title>
		<link>http://andrewblogs.com/blog/openid-for-asp-net-mvc-a-quick-setup/comment-page-1/#comment-5017</link>
		<dc:creator>Gimble</dc:creator>
		<pubDate>Sat, 01 Oct 2011 14:55:44 +0000</pubDate>
		<guid isPermaLink="false">http://andrewblogs.com/blog/?p=709#comment-5017</guid>
		<description>This looks just like what I was looking for. Quick question though, is this all that&#039;s needed or are additions required in the web.config?</description>
		<content:encoded><![CDATA[<p>This looks just like what I was looking for. Quick question though, is this all that&#8217;s needed or are additions required in the web.config?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Css Syntax Highlighting for Scss by TempestSA</title>
		<link>http://andrewblogs.com/blog/css-syntax-highlighting-for-scss/comment-page-1/#comment-4946</link>
		<dc:creator>TempestSA</dc:creator>
		<pubDate>Mon, 26 Sep 2011 06:29:25 +0000</pubDate>
		<guid isPermaLink="false">http://andrewblogs.com/blog/?p=659#comment-4946</guid>
		<description>Thanks, great work.</description>
		<content:encoded><![CDATA[<p>Thanks, great work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Zen Coding PHP (Pre 0.7), Zen Coding custom snippet example. by hamster</title>
		<link>http://andrewblogs.com/blog/zen-coding-php-zen-coding-custom-snippet-example/comment-page-1/#comment-4465</link>
		<dc:creator>hamster</dc:creator>
		<pubDate>Fri, 12 Aug 2011 13:54:00 +0000</pubDate>
		<guid isPermaLink="false">http://andrewblogs.com/blog/?p=577#comment-4465</guid>
		<description>its still possible, just copy paste the php snippets into the html snippets section of the new Zen Coding.js,
and change filter from &quot;html&quot; to &quot;html, php&quot;</description>
		<content:encoded><![CDATA[<p>its still possible, just copy paste the php snippets into the html snippets section of the new Zen Coding.js,<br />
and change filter from &#8220;html&#8221; to &#8220;html, php&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on BDD for .NET, Behavior-Driven Development by Johnelle</title>
		<link>http://andrewblogs.com/blog/bdd-net-c-sharp-behavior-driven-development/comment-page-1/#comment-4280</link>
		<dc:creator>Johnelle</dc:creator>
		<pubDate>Tue, 26 Jul 2011 12:51:31 +0000</pubDate>
		<guid isPermaLink="false">http://andrewblogs.com/blog/?p=647#comment-4280</guid>
		<description>Wham bam thank you, ma&#039;am, my quetisnos are answered!</description>
		<content:encoded><![CDATA[<p>Wham bam thank you, ma&#8217;am, my quetisnos are answered!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Moq Testing Tutorial by Andrew Kharlamov</title>
		<link>http://andrewblogs.com/blog/moq-testing-tutorial/comment-page-1/#comment-4155</link>
		<dc:creator>Andrew Kharlamov</dc:creator>
		<pubDate>Fri, 15 Jul 2011 17:19:32 +0000</pubDate>
		<guid isPermaLink="false">http://cowfarm.net/?p=156#comment-4155</guid>
		<description>@Zakhar

Make sure to use to compatible version of Moq and Moq.Contrib. I will update this post in the future, however as of right now I don&#039;t have any time.</description>
		<content:encoded><![CDATA[<p>@Zakhar</p>
<p>Make sure to use to compatible version of Moq and Moq.Contrib. I will update this post in the future, however as of right now I don&#8217;t have any time.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Moq Testing Tutorial by Zakhar</title>
		<link>http://andrewblogs.com/blog/moq-testing-tutorial/comment-page-1/#comment-4122</link>
		<dc:creator>Zakhar</dc:creator>
		<pubDate>Wed, 13 Jul 2011 15:17:53 +0000</pubDate>
		<guid isPermaLink="false">http://cowfarm.net/?p=156#comment-4122</guid>
		<description>The type or namespace name &#039;Contrib&#039; does not exist in the namespace &#039;Moq&#039;
Neither Moc.dll, nor Moc.Contrib contain &#039;Moq.Contrib&#039; namespace. 
Is this post still alive? Can the author please check and update it? Thanks</description>
		<content:encoded><![CDATA[<p>The type or namespace name &#8216;Contrib&#8217; does not exist in the namespace &#8216;Moq&#8217;<br />
Neither Moc.dll, nor Moc.Contrib contain &#8216;Moq.Contrib&#8217; namespace.<br />
Is this post still alive? Can the author please check and update it? Thanks</p>
]]></content:encoded>
	</item>
</channel>
</rss>

