<?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>jonathanjulian.com &#187; Java</title>
	<atom:link href="http://jonathanjulian.com/category/java/feed/" rel="self" type="application/rss+xml" />
	<link>http://jonathanjulian.com</link>
	<description>Ruby, Rails, JavaScript, software development</description>
	<lastBuildDate>Wed, 30 Jun 2010 21:40:38 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Rails LOC vs Java LOC</title>
		<link>http://jonathanjulian.com/2008/04/rails-loc-vs-java-loc/</link>
		<comments>http://jonathanjulian.com/2008/04/rails-loc-vs-java-loc/#comments</comments>
		<pubDate>Fri, 25 Apr 2008 18:53:34 +0000</pubDate>
		<dc:creator>jonathan</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Rails]]></category>

		<guid isPermaLink="false">http://jonathanjulian.com/?p=7</guid>
		<description><![CDATA[At my last client, we wrote a webservice in Java, it had perhaps 30 service calls and 3 endpoints. We worked on it for about 6 months.

$ find services -name *.java -exec wc {} \; &#124; 
    awk '{a+=$1;print a}' &#124;tail -1
64793


At my current client, we are writing a Rails web application. [...]]]></description>
			<content:encoded><![CDATA[<p>At my last client, we wrote a webservice in Java, it had perhaps 30 service calls and 3 endpoints. We worked on it for about 6 months.</p>

<pre><code>$ find services -name *.java -exec wc {} \; | 
    awk '{a+=$1;print a}' |tail -1
64793
</code></pre>

<p>At my current client, we are writing a Rails web application. It&#8217;s been a living project for almost 2 years.</p>

<pre><code>$ find app -name *.rb -exec wc {} \; | 
    awk '{a+=$1;print a}' |tail -1
5133
$ find lib -name *.rb -exec wc {} \; | 
    awk '{a+=$1;print a}' |tail -1
1141
$ find app -name *.erb -exec wc {} \; | 
    awk '{a+=$1;print a}' |tail -1
3104
</code></pre>
]]></content:encoded>
			<wfw:commentRss>http://jonathanjulian.com/2008/04/rails-loc-vs-java-loc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
