<?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 adam mokan</title>
	<atom:link href="http://www.adammokan.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.adammokan.com</link>
	<description>ramblings of a software developer, mad scientist, geek, and father</description>
	<lastBuildDate>Wed, 09 Nov 2011 16:19:17 +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 Looking for feedback on future content by Rob Jones</title>
		<link>http://www.adammokan.com/2011/07/18/looking-for-feedback-on-future-content/comment-page-1/#comment-110</link>
		<dc:creator>Rob Jones</dc:creator>
		<pubDate>Wed, 09 Nov 2011 16:19:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.adammokan.com/?p=74#comment-110</guid>
		<description>I would love to discuss a direct hire full time opening I have with you.  Please give me a call 602.273.7100

Rob</description>
		<content:encoded><![CDATA[<p>I would love to discuss a direct hire full time opening I have with you.  Please give me a call 602.273.7100</p>
<p>Rob</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on NuGet.Server sample project by adam.mokan</title>
		<link>http://www.adammokan.com/2011/10/12/nuget-server-sample-project/comment-page-1/#comment-109</link>
		<dc:creator>adam.mokan</dc:creator>
		<pubDate>Thu, 03 Nov 2011 01:28:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.adammokan.com/?p=80#comment-109</guid>
		<description>I&#039;m actually running this on IIS 7.5 on Win Server 2008R2. I used the same approach, minus some of the config hacks I had to make for IIS Express. The main difference, for me on Windows Server, is that I have a CNAME setup and a unique site dedicated to NuGet.</description>
		<content:encoded><![CDATA[<p>I&#8217;m actually running this on IIS 7.5 on Win Server 2008R2. I used the same approach, minus some of the config hacks I had to make for IIS Express. The main difference, for me on Windows Server, is that I have a CNAME setup and a unique site dedicated to NuGet.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on NuGet.Server sample project by Anthony Mastrean</title>
		<link>http://www.adammokan.com/2011/10/12/nuget-server-sample-project/comment-page-1/#comment-108</link>
		<dc:creator>Anthony Mastrean</dc:creator>
		<pubDate>Thu, 13 Oct 2011 20:33:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.adammokan.com/?p=80#comment-108</guid>
		<description>I was trying to startup a NuGet Gallery on full IIS, a bit different. And I figured it out, kinda :)

[1]: https://github.com/NuGet/NuGetGallery
[2]: http://anthonymastrean.tumblr.com/post/11405529860/getting-a-nuget-gallery-running</description>
		<content:encoded><![CDATA[<p>I was trying to startup a NuGet Gallery on full IIS, a bit different. And I figured it out, kinda <img src='http://www.adammokan.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>[1]: <a href="https://github.com/NuGet/NuGetGallery" rel="nofollow">https://github.com/NuGet/NuGetGallery</a><br />
[2]: <a href="http://anthonymastrean.tumblr.com/post/11405529860/getting-a-nuget-gallery-running" rel="nofollow">http://anthonymastrean.tumblr.com/post/11405529860/getting-a-nuget-gallery-running</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Removing a corrupt Project Collection in TFS2010 by Carlos</title>
		<link>http://www.adammokan.com/2010/03/22/removing-a-corrupt-project-collection-in-tfs2010/comment-page-1/#comment-93</link>
		<dc:creator>Carlos</dc:creator>
		<pubDate>Wed, 27 Jul 2011 21:29:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.adammokan.com/2010/03/22/removing-a-corrupt-project-collection-in-tfs2010/#comment-93</guid>
		<description>I had a similar issue and the above solution worked for me too.

Thank you!</description>
		<content:encoded><![CDATA[<p>I had a similar issue and the above solution worked for me too.</p>
<p>Thank you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on node.js running in a Windows Azure Worker Role by Hernan Garcia</title>
		<link>http://www.adammokan.com/2011/07/20/node-js-in-a-windows-azure-worker-role/comment-page-1/#comment-91</link>
		<dc:creator>Hernan Garcia</dc:creator>
		<pubDate>Tue, 26 Jul 2011 13:38:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.adammokan.com/?p=76#comment-91</guid>
		<description>FYI: npm doesn&#039;t work yet, since spawn child_process is not done for windows. There is an alternative ryppi (https://github.com/japj/ryppi). It&#039;s a python base package module for now. 
Express works fine, as well as the ejs templates (not sure on complex scenarios since I was only able to do some basic testing).
If you don&#039;t want to use ryppi you can always install modules manually. You will have to open each package.json and install dependencies as well.
Great post!</description>
		<content:encoded><![CDATA[<p>FYI: npm doesn&#8217;t work yet, since spawn child_process is not done for windows. There is an alternative ryppi (<a href="https://github.com/japj/ryppi" rel="nofollow">https://github.com/japj/ryppi</a>). It&#8217;s a python base package module for now.<br />
Express works fine, as well as the ejs templates (not sure on complex scenarios since I was only able to do some basic testing).<br />
If you don&#8217;t want to use ryppi you can always install modules manually. You will have to open each package.json and install dependencies as well.<br />
Great post!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Looking for feedback on future content by adam.mokan</title>
		<link>http://www.adammokan.com/2011/07/18/looking-for-feedback-on-future-content/comment-page-1/#comment-86</link>
		<dc:creator>adam.mokan</dc:creator>
		<pubDate>Mon, 18 Jul 2011 22:47:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.adammokan.com/?p=74#comment-86</guid>
		<description>Sounds like #1 is going to take the win in a landslide at this rate.

I will plan on splitting it up in a multi-part and maybe just walkthrough the basics of handling repositories with EF 4.1 and MVC3 without getting all &quot;academic&quot; like most info I run into does. But in the first part I will at least cover my generic repository implementation, scaffolding, and the lifecycle of the DbContext with a touch on the EntityFrameworkProfiler tool. After that initial post, I will go over the unit testing aspect using the same repository along with SQL Compact and NBuilder, to generate fake data, for testing.

My goal is to keep it as simple as possible, yet flexible enough to scale and be used in high transaction environments.</description>
		<content:encoded><![CDATA[<p>Sounds like #1 is going to take the win in a landslide at this rate.</p>
<p>I will plan on splitting it up in a multi-part and maybe just walkthrough the basics of handling repositories with EF 4.1 and MVC3 without getting all &#8220;academic&#8221; like most info I run into does. But in the first part I will at least cover my generic repository implementation, scaffolding, and the lifecycle of the DbContext with a touch on the EntityFrameworkProfiler tool. After that initial post, I will go over the unit testing aspect using the same repository along with SQL Compact and NBuilder, to generate fake data, for testing.</p>
<p>My goal is to keep it as simple as possible, yet flexible enough to scale and be used in high transaction environments.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Looking for feedback on future content by Michael Duddles</title>
		<link>http://www.adammokan.com/2011/07/18/looking-for-feedback-on-future-content/comment-page-1/#comment-85</link>
		<dc:creator>Michael Duddles</dc:creator>
		<pubDate>Mon, 18 Jul 2011 21:04:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.adammokan.com/?p=74#comment-85</guid>
		<description>Hi, Adam.  We met at Desert Code in April. Your helpful attitude really stood out there, so much thanks. (I&#039;m back living in Chicago now, btw).  

Though these are all interesting topics, I&#039;m going to give a vote for the first one on listed:  Detailed post on generic repository pattern for MVC 3.  The more detail the better...

-Mike</description>
		<content:encoded><![CDATA[<p>Hi, Adam.  We met at Desert Code in April. Your helpful attitude really stood out there, so much thanks. (I&#8217;m back living in Chicago now, btw).  </p>
<p>Though these are all interesting topics, I&#8217;m going to give a vote for the first one on listed:  Detailed post on generic repository pattern for MVC 3.  The more detail the better&#8230;</p>
<p>-Mike</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Looking for feedback on future content by Roger Stepper</title>
		<link>http://www.adammokan.com/2011/07/18/looking-for-feedback-on-future-content/comment-page-1/#comment-84</link>
		<dc:creator>Roger Stepper</dc:creator>
		<pubDate>Mon, 18 Jul 2011 20:00:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.adammokan.com/?p=74#comment-84</guid>
		<description>I would like either the first or last choice.  I have seen some of the MVC3, EF 4.1 with DI and seeding data, but a more complete code sample would be good. TeamCity in the cloud also interests me.</description>
		<content:encoded><![CDATA[<p>I would like either the first or last choice.  I have seen some of the MVC3, EF 4.1 with DI and seeding data, but a more complete code sample would be good. TeamCity in the cloud also interests me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Looking for feedback on future content by aendenne</title>
		<link>http://www.adammokan.com/2011/07/18/looking-for-feedback-on-future-content/comment-page-1/#comment-83</link>
		<dc:creator>aendenne</dc:creator>
		<pubDate>Mon, 18 Jul 2011 19:31:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.adammokan.com/?p=74#comment-83</guid>
		<description>I&#039;d like number one to be the item at top (generic repo pattern for MVC 3 &amp; EF 4.1) and the other item that stands out/interests me is the HTML Helpers post. I don&#039;t blame you for not getting to them though. My blog is bleak. So much code, so little time............</description>
		<content:encoded><![CDATA[<p>I&#8217;d like number one to be the item at top (generic repo pattern for MVC 3 &amp; EF 4.1) and the other item that stands out/interests me is the HTML Helpers post. I don&#8217;t blame you for not getting to them though. My blog is bleak. So much code, so little time&#8230;&#8230;&#8230;&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Co-admin weirdness in the Windows Azure dashboard by adam.mokan</title>
		<link>http://www.adammokan.com/2011/06/27/co-admin-weirdness-in-the-windows-azure-dashboard/comment-page-1/#comment-82</link>
		<dc:creator>adam.mokan</dc:creator>
		<pubDate>Mon, 18 Jul 2011 19:02:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.adammokan.com/?p=72#comment-82</guid>
		<description>Thanks for the comment. At least I&#039;m not the only one that is confused!

I really do like Azure and see lots of future potential. However, they need to take a lesson from Amazon in some ways. Amazon has a consistent dashboard, although it&#039;s not perfect. Right now, with the various Azure CTP&#039;s and special CTP dashboards (I&#039;m looking at you Sync Services) make it feel like a patchwork admin system where there is a lack of internal communication between the various teams. Having said that, the big upside to Azure, from my point of view, is that it is more &quot;developer friendly&quot; (at least for the .NET folks) and for those looking to dip their toes in the cloud. With Amazon, OS-level knowledge (security, firewalls, patching) is paramount. Azure allows a developer to just deploy and not worry about OS details, unless needed.</description>
		<content:encoded><![CDATA[<p>Thanks for the comment. At least I&#8217;m not the only one that is confused!</p>
<p>I really do like Azure and see lots of future potential. However, they need to take a lesson from Amazon in some ways. Amazon has a consistent dashboard, although it&#8217;s not perfect. Right now, with the various Azure CTP&#8217;s and special CTP dashboards (I&#8217;m looking at you Sync Services) make it feel like a patchwork admin system where there is a lack of internal communication between the various teams. Having said that, the big upside to Azure, from my point of view, is that it is more &#8220;developer friendly&#8221; (at least for the .NET folks) and for those looking to dip their toes in the cloud. With Amazon, OS-level knowledge (security, firewalls, patching) is paramount. Azure allows a developer to just deploy and not worry about OS details, unless needed.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

