<?xml version="1.0" encoding="UTF-8"?> <rss
version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:wfw="http://wellformedweb.org/CommentAPI/"
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/"
xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
> <channel><title>Slash Dot Dash &#187; .NET</title> <atom:link href="http://www.slashdotdash.net/category/net/feed/" rel="self" type="application/rss+xml" /><link>http://www.slashdotdash.net</link> <description>Rolling on Rails</description> <lastBuildDate>Tue, 28 Sep 2010 15:49:37 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.2.1</generator> <item><title>Using Subversion with a Windows .NET C# project</title><link>http://www.slashdotdash.net/2006/12/11/using-subversion-with-a-windows-net-c-project/</link> <comments>http://www.slashdotdash.net/2006/12/11/using-subversion-with-a-windows-net-c-project/#comments</comments> <pubDate>Mon, 11 Dec 2006 13:49:00 +0000</pubDate> <dc:creator>Ben</dc:creator> <category><![CDATA[.NET]]></category> <guid
isPermaLink="false"></guid> <description><![CDATA[The following guide has been adapted from the blog posting referenced below. Note: To use Subversion with web projects you will need to enable the Subversion hack to use _svn directory names instead of the default .svn (which are incompatible with ASP.NET web projects). 1. Import the existing C# project(s) into Subversion. svn import svn://svn.url/ProjectName/trunk [...]]]></description> <content:encoded><![CDATA[<p>The following guide has been adapted from the blog posting referenced below.</p><p><strong>Note:</strong> To use Subversion with web projects you will need to enable the Subversion  hack to use <code>_svn</code> directory names instead of the default <code>.svn</code> (which are incompatible with <span
class="caps">ASP</span>.NET web projects).</p><p>1. Import the existing C# project(s) into Subversion.</p><pre>
svn import svn://svn.url/ProjectName/trunk -m "Initial import of ProjectName"
</pre><p>2. Once imported you must delete the existing code (or move to a backup location) and then checkout the source from Subversion.</p><pre>
svn checkout svn://svn.url/ProjectName/trunk .
</pre><p>This will create a working copy in the current folder.</p><p>The next step is to ignore certain files and directories that should not be stored under version control. These include user-specific files (*.suo) and the <code>bin</code> and <code>obj</code> directories (where the compiled output goes).</p><p>3. Change directory to the folder than contains the solution file and issue the following command (note the dot at the end):</p><pre>
svn propedit svn:ignore .
</pre><p>Subversion should pop up Notepad (by default) for you to edit the value of the property. If it doesn&#8217;t, set an environment variable called <span
class="caps">SVN</span>_EDITOR to notepad.exe.  In Notepad, type in the following:</p><pre>
*.suo
Ankh.*
</pre><p>4. You&#8217;ll also need to make sure some files and folders are ignored for each of the projects referenced by the solution. To do this, type in the following command, once for each of your project folders:</p><pre>
svn propedit svn:ignore &lt;ProjectName&gt;
</pre><p>In the Notepad window, type the following:</p><pre>
*.user
bin
obj
Bin
</pre><p>5. Finally all of these changes need to be commited via the following command:</p><pre>
svn commit -m "Set files and folders to be ignored"
</pre><h4>References</h4><p><a
href="http://staff.interesource.com/james/feb06/svnwin4.htm">Subversion on Windows</a></p> ]]></content:encoded> <wfw:commentRss>http://www.slashdotdash.net/2006/12/11/using-subversion-with-a-windows-net-c-project/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Why Would a .NET Programmer Learn Ruby on Rails?</title><link>http://www.slashdotdash.net/2006/08/17/why-would-a-net-programmer-learn-ruby-on-rails/</link> <comments>http://www.slashdotdash.net/2006/08/17/why-would-a-net-programmer-learn-ruby-on-rails/#comments</comments> <pubDate>Thu, 17 Aug 2006 18:25:00 +0000</pubDate> <dc:creator>Ben</dc:creator> <category><![CDATA[.NET]]></category> <category><![CDATA[Ruby on Rails]]></category> <guid
isPermaLink="false"></guid> <description><![CDATA[Why Would a .NET Programmer Learn Ruby on Rails? I&#8217;d recommend reading this to any .NET programmers, a good article on how learning Ruby (or any &#8216;other&#8217; language) helps to make you a better programmer. A couple of his points mentioned, do not compile and dynamically enhance the behavior of a class &#8211; without a [...]]]></description> <content:encoded><![CDATA[<p><a
href="http://www.infoq.com/articles/Netter-on-Rails">Why Would a .NET Programmer Learn Ruby on Rails?</a></p><p>I&#8217;d recommend reading this to any .NET programmers, a good article on how learning Ruby (or any &#8216;other&#8217; language) helps to make you a better programmer. A couple of his points mentioned, <em>do not compile</em> and <em>dynamically enhance the behavior of a class &#8211; without a Decorator</em>, highlight the benefits I have experienced with Ruby.</p><p>I am currently employed working on an <span
class="caps">ASP</span>.NET 2 web project and coding a Ruby on Rails project (<a
href="http://www.trawlr.com">www.trawlr.com</a>) in my spare time. I quite often find myself in the .NET world thinking &#8220;this would be so much easier, quicker and fewer lines of code with Ruby&#8221;. In fact the Ruby on Rails  knowledge has helped to make me realise just how important it is to choose the right tool for a given job. I&#8217;ve also dabbled with <span
class="caps">PHP</span> in the past (before discovering the joy of Ruby on Rails) and have always enjoyed the very quick code / run cycle. It makes changing and testing code much less tiresome than with .NET where you have to recompile after each change (and it always seems to takes an age).</p> ]]></content:encoded> <wfw:commentRss>http://www.slashdotdash.net/2006/08/17/why-would-a-net-programmer-learn-ruby-on-rails/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Ruby to .NET bridge</title><link>http://www.slashdotdash.net/2006/02/21/ruby-to-net-bridge/</link> <comments>http://www.slashdotdash.net/2006/02/21/ruby-to-net-bridge/#comments</comments> <pubDate>Tue, 21 Feb 2006 19:22:00 +0000</pubDate> <dc:creator>Ben</dc:creator> <category><![CDATA[.NET]]></category> <guid
isPermaLink="false"></guid> <description><![CDATA[John Lam has just released the second drop of his RubyCLR bridge. This second release of my RubyCLR bridge contains a non-trivial Windows Forms 2.0 application written entirely in Ruby. I haven&#8217;t yet had time to play with this, but the idea is pretty impressive. When I&#8217;m using C# at work I&#8217;m constantly thinking if [...]]]></description> <content:encoded><![CDATA[<p>John Lam has just released the second drop of his <a
href="http://www.iunknown.com/articles/2006/02/20/second-drop-of-rubyclr">RubyCLR bridge</a>.</p><blockquote><p>This second release of my RubyCLR bridge contains a non-trivial Windows Forms 2.0 application written entirely in Ruby.</p></blockquote><p>I haven&#8217;t yet had time to play with this, but the idea is pretty impressive. When I&#8217;m using C# at work I&#8217;m constantly thinking <em>if I were doing this in Ruby it would be so much quicker (shorter, more elegant code)</em>.</p> ]]></content:encoded> <wfw:commentRss>http://www.slashdotdash.net/2006/02/21/ruby-to-net-bridge/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>
