<?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>thecrumb.com &#187; diff</title>
	<atom:link href="http://thecrumb.com/tag/diff/feed/" rel="self" type="application/rss+xml" />
	<link>http://thecrumb.com</link>
	<description>developer &#124; thinker &#124; tinkerer</description>
	<lastBuildDate>Sat, 04 Feb 2012 01:28:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Developer Toolbox &#8211; Diff</title>
		<link>http://thecrumb.com/2008/01/09/developer-toolbox-diff/</link>
		<comments>http://thecrumb.com/2008/01/09/developer-toolbox-diff/#comments</comments>
		<pubDate>Wed, 09 Jan 2008 12:55:29 +0000</pubDate>
		<dc:creator>Jim Priest</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[diff]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://www.thecrumb.com/2008/01/09/developer-toolbox-diff/</guid>
		<description><![CDATA[Ever have a file and wonder what changed? You need a diff tool! In computing, diff is a file comparison utility that outputs the differences between two files. The program displays the changes made per line for text files. There &#8230; <a href="http://thecrumb.com/2008/01/09/developer-toolbox-diff/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Ever have a file and wonder what changed?  You need a diff tool!</p>
<blockquote><p>In computing, diff is a file comparison utility that outputs the differences between two files. The program displays the changes made per line for text files.</p></blockquote>
<p>There are diff tools available for <a href="http://en.wikipedia.org/wiki/Comparison_of_file_comparison_tools">almost any platform</a> you can think of ranging from simple command line utilities to complex GUI based applications.</p>
<p><img src='http://thecrumb.com/wp-content/uploads/2008/01/bc-screenshot.gif' alt='Beyond Compare screenshot' align="right" /> Here is a screenshot using Beyond Compare comparing my current project build file to the original one when I started the project.  Red means changes occurred! :)</p>
<p>If you use Eclipse there is a diff tool built in!  Right click any file and select &#8220;Compare With&#8221;.  You can compare files in your local history, and if you are using source control, you can compare with previous revisions.   (In the screenshot below I have a BeyondCVS plugin installed which allows me to use <a href="http://www.thecrumb.com/2007/10/31/using-beyond-compare-in-cfeclipse/">Beyond Compare within Eclipse</a>).</p>
<p><img src='http://thecrumb.com/wp-content/uploads/2008/01/bc-screenshot2.gif' alt='Beyond Compare within Eclipse' /></p>
<p>Many tools will also let you compare not only files but directories as well. Beyond Compare can compare a local directory and a remote directory via FTP. Very handy when moving files to remote servers!</p>
<p>Whether you use one of the many freely available utilities or purchase one of the more advanced applications a diff tool is essential in any developers toolbox.</p>
<ul>
<li>A <a href="http://en.wikipedia.org/wiki/Comparison_of_file_comparison_tools">list of available diff tools</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://thecrumb.com/2008/01/09/developer-toolbox-diff/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Using Beyond Compare In CFEclipse</title>
		<link>http://thecrumb.com/2007/10/31/using-beyond-compare-in-cfeclipse/</link>
		<comments>http://thecrumb.com/2007/10/31/using-beyond-compare-in-cfeclipse/#comments</comments>
		<pubDate>Wed, 31 Oct 2007 18:01:58 +0000</pubDate>
		<dc:creator>Jim Priest</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[diff]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://www.thecrumb.com/2007/10/31/using-beyond-compare-in-cfeclipse/</guid>
		<description><![CDATA[My favorite diff tool (and it does so much more) for a long time has been Beyond Compare. When I started using SVN and Eclipse &#8211; I looked for a way to integrate Beyond Compare into the mix so I &#8230; <a href="http://thecrumb.com/2007/10/31/using-beyond-compare-in-cfeclipse/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>My favorite diff tool (and it does so much more) for a long time has been <a href="http://www.scootersoftware.com/">Beyond Compare</a>.</p>
<p>When I started using SVN and Eclipse &#8211; I looked for a way to integrate Beyond Compare into the mix so I could use it to compare my working copy against the repository.  I found <a href="http://sourceforge.net/projects/beyondcvs/">Beyond CVS</a> &#8211; but unfortunately it only supported CVS.  :(   There were a few comments on there asking for SVN support and I added one myself and promptly forgot about it.</p>
<p>Well a few days ago I got an email from the plugin author informing me he had finally updated things and added support for SVN!!!  Woot!</p>
<p>To install &#8211; simply download the ZIP (make sure you grab the one with SVN support!), extract the ZIP and copy the /features and /plugins directories to your existing Eclipse directory.</p>
<p>Crank up CFEclipse and you should have some shiney buttons as well as some additional options in your right click menu when you go to compare a file:</p>
<p><img src="http://thecrumb.com/wp-content/uploads/2007/10/beyondcompare.png" alt="Beyond Compare" /></p>
<p>Update: Looks like the new 0.8.x version requires Eclipse 3.4.</p>
]]></content:encoded>
			<wfw:commentRss>http://thecrumb.com/2007/10/31/using-beyond-compare-in-cfeclipse/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>

