<?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 ORTHOcoders</title>
	<atom:link href="http://orthocoders.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://orthocoders.com</link>
	<description>U can code it, we can help</description>
	<lastBuildDate>Wed, 08 Jun 2011 19:11:33 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>Comment on Testing with random values: is it really dangerous? by admin</title>
		<link>http://orthocoders.com/2011/03/06/testing-with-random-values-is-it-really-dangerous/comment-page-1/#comment-1083</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Wed, 08 Jun 2011 19:11:33 +0000</pubDate>
		<guid isPermaLink="false">http://orthocoders.com/?p=254#comment-1083</guid>
		<description>Sure, what would you like to know about it?</description>
		<content:encoded><![CDATA[<p>Sure, what would you like to know about it?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Testing with random values: is it really dangerous? by iTegra</title>
		<link>http://orthocoders.com/2011/03/06/testing-with-random-values-is-it-really-dangerous/comment-page-1/#comment-1082</link>
		<dc:creator>iTegra</dc:creator>
		<pubDate>Wed, 08 Jun 2011 18:13:11 +0000</pubDate>
		<guid isPermaLink="false">http://orthocoders.com/?p=254#comment-1082</guid>
		<description>It looks like MB Unit is powerful testing framework and worth to try. Could you please expand a little bit more about it?</description>
		<content:encoded><![CDATA[<p>It looks like MB Unit is powerful testing framework and worth to try. Could you please expand a little bit more about it?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Nuget gotcha: Avoid storing packages in the repository by Amir Barylko</title>
		<link>http://orthocoders.com/2011/03/13/nuget-gotcha-avoid-storing-packages-in-the-repository/comment-page-1/#comment-869</link>
		<dc:creator>Amir Barylko</dc:creator>
		<pubDate>Thu, 17 Mar 2011 17:00:20 +0000</pubDate>
		<guid isPermaLink="false">http://orthocoders.com/?p=322#comment-869</guid>
		<description>It&#039;s a great idea!

However maybe the task by default should grab all the config files and if u want to override it u can....

Also I was wondering about doing just one task to generate all the others, something similar to Jeweler:

Nuget::Tasks.new do &#124;nuget&#124;
    nuget.name = xxxxx
end</description>
		<content:encoded><![CDATA[<p>It&#8217;s a great idea!</p>
<p>However maybe the task by default should grab all the config files and if u want to override it u can&#8230;.</p>
<p>Also I was wondering about doing just one task to generate all the others, something similar to Jeweler:</p>
<p>Nuget::Tasks.new do |nuget|<br />
    nuget.name = xxxxx<br />
end</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Nuget gotcha: Avoid storing packages in the repository by Derick Bailey</title>
		<link>http://orthocoders.com/2011/03/13/nuget-gotcha-avoid-storing-packages-in-the-repository/comment-page-1/#comment-854</link>
		<dc:creator>Derick Bailey</dc:creator>
		<pubDate>Tue, 15 Mar 2011 15:36:12 +0000</pubDate>
		<guid isPermaLink="false">http://orthocoders.com/?p=322#comment-854</guid>
		<description>a thought crossed my mind - this could easily be turned into an albacore / rake task and be re-usable across projects:

nuget :dep do &#124;nuget&#124;
  nuget.command = &quot;nuget.exe&quot;
  nuget.packages FileList[&quot;**/packages.config&quot;]
  nuget.output_directory = &quot;Packages&quot;
end

which could be implemented like this (as a very basic example):

class Nuget
  include Albacore::Task
  include Albacore::RunCommand

  attr_array :packages
  attr_accessor :output_directory

  def execute
    @packages.each { &#124;package&#124;
      params = []
      params &lt;&lt; &quot;install&quot;
      params &lt;&lt; package
      params &lt;&lt; &quot;/OutputDirectory #{@output_directory}&quot;
      run_command &quot;Nuget&quot;, params
    }
  end
end</description>
		<content:encoded><![CDATA[<p>a thought crossed my mind &#8211; this could easily be turned into an albacore / rake task and be re-usable across projects:</p>
<p>nuget :dep do |nuget|<br />
  nuget.command = &#8220;nuget.exe&#8221;<br />
  nuget.packages FileList["**/packages.config"]<br />
  nuget.output_directory = &#8220;Packages&#8221;<br />
end</p>
<p>which could be implemented like this (as a very basic example):</p>
<p>class Nuget<br />
  include Albacore::Task<br />
  include Albacore::RunCommand</p>
<p>  attr_array :packages<br />
  attr_accessor <img src='http://orthocoders.com/wp-includes/images/smilies/icon_surprised.gif' alt=':o' class='wp-smiley' /> utput_directory</p>
<p>  def execute<br />
    @packages.each { |package|<br />
      params = []<br />
      params &lt;&lt; &quot;install&quot;<br />
      params &lt;&lt; package<br />
      params &lt;&lt; &quot;/OutputDirectory #{@output_directory}&quot;<br />
      run_command &quot;Nuget&quot;, params<br />
    }<br />
  end<br />
end</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Testing with random values: is it really dangerous? by Sebastian</title>
		<link>http://orthocoders.com/2011/03/06/testing-with-random-values-is-it-really-dangerous/comment-page-1/#comment-798</link>
		<dc:creator>Sebastian</dc:creator>
		<pubDate>Mon, 07 Mar 2011 15:00:06 +0000</pubDate>
		<guid isPermaLink="false">http://orthocoders.com/?p=254#comment-798</guid>
		<description>We could also generate random palindrome phrases, by generating random strings and concatenating the reverse string (maybe adding some random spaces). 

Also it could be useful to use a fixed random seed, to get repeatable results. Maybe MbUnit does that already.

Great post!</description>
		<content:encoded><![CDATA[<p>We could also generate random palindrome phrases, by generating random strings and concatenating the reverse string (maybe adding some random spaces). </p>
<p>Also it could be useful to use a fixed random seed, to get repeatable results. Maybe MbUnit does that already.</p>
<p>Great post!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on .NET Dependency Management by admin</title>
		<link>http://orthocoders.com/2010/05/08/net-dependency-management/comment-page-1/#comment-339</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Thu, 07 Oct 2010 08:34:15 +0000</pubDate>
		<guid isPermaLink="false">http://orthocoders.com/?p=150#comment-339</guid>
		<description>Just after I wrote the post, OpenWrap was announced :-).
If u want to use gems you could use the Nu project or Noodle  + Bundlers.
NuPack is another OSS option that recently came to my attention.</description>
		<content:encoded><![CDATA[<p>Just after I wrote the post, OpenWrap was announced <img src='http://orthocoders.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> .<br />
If u want to use gems you could use the Nu project or Noodle  + Bundlers.<br />
NuPack is another OSS option that recently came to my attention.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on .NET Dependency Management by Adam</title>
		<link>http://orthocoders.com/2010/05/08/net-dependency-management/comment-page-1/#comment-329</link>
		<dc:creator>Adam</dc:creator>
		<pubDate>Tue, 05 Oct 2010 08:58:59 +0000</pubDate>
		<guid isPermaLink="false">http://orthocoders.com/?p=150#comment-329</guid>
		<description>http://nu.wikispot.org/

Is Gems for .NET</description>
		<content:encoded><![CDATA[<p><a href="http://nu.wikispot.org/" rel="nofollow">http://nu.wikispot.org/</a></p>
<p>Is Gems for .NET</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ASP.NET MVC CONF 2010 by Paul Irvine</title>
		<link>http://orthocoders.com/2010/07/22/asp-net-mvc-conf-2010/comment-page-1/#comment-256</link>
		<dc:creator>Paul Irvine</dc:creator>
		<pubDate>Tue, 27 Jul 2010 12:51:21 +0000</pubDate>
		<guid isPermaLink="false">http://orthocoders.com/?p=194#comment-256</guid>
		<description>Hi, I &#039;attended&#039; MVC CONF and your presentation was fantastic and is definitely going to be something I take forward in to future projects. Your presentation, along with Jimmy Bogard&#039;s &quot;Put your controllers on a diet&quot; were the stand out presentations on the day, for me at least. Great work, and thanks for sharing your expertise and experience.</description>
		<content:encoded><![CDATA[<p>Hi, I &#8216;attended&#8217; MVC CONF and your presentation was fantastic and is definitely going to be something I take forward in to future projects. Your presentation, along with Jimmy Bogard&#8217;s &#8220;Put your controllers on a diet&#8221; were the stand out presentations on the day, for me at least. Great work, and thanks for sharing your expertise and experience.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Real world BDD introduction by How to write a self-executing Ruby script &#171; A Splinter In My Mind</title>
		<link>http://orthocoders.com/2010/05/26/real-world-bdd-introduction/comment-page-1/#comment-244</link>
		<dc:creator>How to write a self-executing Ruby script &#171; A Splinter In My Mind</dc:creator>
		<pubDate>Sun, 27 Jun 2010 02:34:07 +0000</pubDate>
		<guid isPermaLink="false">http://orthocoders.com/?p=162#comment-244</guid>
		<description>[...] Ruby and Rails, our knowledgeable sensei instructed us in the ways of Test Driven Development and Behavior Driven Development. What an eye opener that experience was for me! Ruby, even without Rails, is such a powerful [...]</description>
		<content:encoded><![CDATA[<p>[...] Ruby and Rails, our knowledgeable sensei instructed us in the ways of Test Driven Development and Behavior Driven Development. What an eye opener that experience was for me! Ruby, even without Rails, is such a powerful [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ruby On Rails Training by How to write a self-executing Ruby script &#171; A Splinter In My Mind</title>
		<link>http://orthocoders.com/2010/05/07/ruby-on-rails-training/comment-page-1/#comment-243</link>
		<dc:creator>How to write a self-executing Ruby script &#171; A Splinter In My Mind</dc:creator>
		<pubDate>Sun, 27 Jun 2010 02:22:59 +0000</pubDate>
		<guid isPermaLink="false">http://orthocoders.com/2010/05/07/ruby-on-rails-training/#comment-243</guid>
		<description>[...] I became acquainted with the language and framework when I had the distinct pleasure of attending a five-day Ruby on Rails boot camp. In addition to teaching us Ruby and Rails, our knowledgeable sensei instructed us in the ways of [...]</description>
		<content:encoded><![CDATA[<p>[...] I became acquainted with the language and framework when I had the distinct pleasure of attending a five-day Ruby on Rails boot camp. In addition to teaching us Ruby and Rails, our knowledgeable sensei instructed us in the ways of [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

