<?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 on: Quick tip: Counting lines of code</title>
	<atom:link href="http://www.sharms.org/blog/2009/03/quick-tip-counting-lines-of-code/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.sharms.org/blog/2009/03/quick-tip-counting-lines-of-code/</link>
	<description>Life, Linux and Technology</description>
	<lastBuildDate>Thu, 26 Jan 2012 02:40:20 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Jamie</title>
		<link>http://www.sharms.org/blog/2009/03/quick-tip-counting-lines-of-code/comment-page-1/#comment-5992</link>
		<dc:creator>Jamie</dc:creator>
		<pubDate>Fri, 23 Sep 2011 07:06:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.sharms.org/blog/2009/03/11/quick-tip-counting-lines-of-code/#comment-5992</guid>
		<description>For my current symfony project, i&#039;m at 31,000 lines of code.

Including the JS (not including jquery, jquery ui etc ) i&#039;m at 7,000


so about 38,000 lines of code for php and js :-)</description>
		<content:encoded><![CDATA[<p>For my current symfony project, i&#8217;m at 31,000 lines of code.</p>
<p>Including the JS (not including jquery, jquery ui etc ) i&#8217;m at 7,000</p>
<p>so about 38,000 lines of code for php and js <img src='http://www.sharms.org/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Evan Plaice</title>
		<link>http://www.sharms.org/blog/2009/03/quick-tip-counting-lines-of-code/comment-page-1/#comment-1075</link>
		<dc:creator>Evan Plaice</dc:creator>
		<pubDate>Fri, 02 Apr 2010 00:37:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.sharms.org/blog/2009/03/11/quick-tip-counting-lines-of-code/#comment-1075</guid>
		<description>grep -v &#039;^ *$&#039; `find . -iname &quot;*.cs&quot;` &#124; wc -l
68497

:p. This is, of course, a C# project. Which means, half is probably auto-generated .designer GUI files and the language itself is a lot more verbose.

BTW, thanks for this. I&#039;ve been looking for a simple/easy tool to do LOC counts for a while but most include compiling/installing binaries.

Now... If I could only get one that works in windows too. :)</description>
		<content:encoded><![CDATA[<p>grep -v &#8216;^ *$&#8217; `find . -iname &#8220;*.cs&#8221;` | wc -l<br />
68497</p>
<p>:p. This is, of course, a C# project. Which means, half is probably auto-generated .designer GUI files and the language itself is a lot more verbose.</p>
<p>BTW, thanks for this. I&#8217;ve been looking for a simple/easy tool to do LOC counts for a while but most include compiling/installing binaries.</p>
<p>Now&#8230; If I could only get one that works in windows too. <img src='http://www.sharms.org/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dom</title>
		<link>http://www.sharms.org/blog/2009/03/quick-tip-counting-lines-of-code/comment-page-1/#comment-1074</link>
		<dc:creator>Dom</dc:creator>
		<pubDate>Thu, 12 Mar 2009 08:45:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.sharms.org/blog/2009/03/11/quick-tip-counting-lines-of-code/#comment-1074</guid>
		<description>I prefer cloc, based on sloccount but imo better, http://cloc.sourceforge.net/</description>
		<content:encoded><![CDATA[<p>I prefer cloc, based on sloccount but imo better, <a href="http://cloc.sourceforge.net/" rel="nofollow">http://cloc.sourceforge.net/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thibauld Favre</title>
		<link>http://www.sharms.org/blog/2009/03/quick-tip-counting-lines-of-code/comment-page-1/#comment-1073</link>
		<dc:creator>Thibauld Favre</dc:creator>
		<pubDate>Thu, 12 Mar 2009 07:47:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.sharms.org/blog/2009/03/11/quick-tip-counting-lines-of-code/#comment-1073</guid>
		<description>Like Marius said, you might want to give sloccount a try. It will give the number of lines of code, an estimation of the development effort and the estimated project cost (based on the COCOMO model) : http://www.allmyapps.com/app/sloccount</description>
		<content:encoded><![CDATA[<p>Like Marius said, you might want to give sloccount a try. It will give the number of lines of code, an estimation of the development effort and the estimated project cost (based on the COCOMO model) : <a href="http://www.allmyapps.com/app/sloccount" rel="nofollow">http://www.allmyapps.com/app/sloccount</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Edward A Robinson</title>
		<link>http://www.sharms.org/blog/2009/03/quick-tip-counting-lines-of-code/comment-page-1/#comment-1072</link>
		<dc:creator>Edward A Robinson</dc:creator>
		<pubDate>Thu, 12 Mar 2009 04:03:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.sharms.org/blog/2009/03/11/quick-tip-counting-lines-of-code/#comment-1072</guid>
		<description>grep -v &#039;^ *$&#039; `find . -iname &quot;*.py&quot;` &#124; wc -l
545</description>
		<content:encoded><![CDATA[<p>grep -v &#8216;^ *$&#8217; `find . -iname &#8220;*.py&#8221;` | wc -l<br />
545</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marius Gedminas</title>
		<link>http://www.sharms.org/blog/2009/03/quick-tip-counting-lines-of-code/comment-page-1/#comment-1071</link>
		<dc:creator>Marius Gedminas</dc:creator>
		<pubDate>Wed, 11 Mar 2009 19:41:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.sharms.org/blog/2009/03/11/quick-tip-counting-lines-of-code/#comment-1071</guid>
		<description>sudo apt-get install sloccount</description>
		<content:encoded><![CDATA[<p>sudo apt-get install sloccount</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nuno Araujo</title>
		<link>http://www.sharms.org/blog/2009/03/quick-tip-counting-lines-of-code/comment-page-1/#comment-1070</link>
		<dc:creator>Nuno Araujo</dc:creator>
		<pubDate>Wed, 11 Mar 2009 17:45:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.sharms.org/blog/2009/03/11/quick-tip-counting-lines-of-code/#comment-1070</guid>
		<description>You can also use ohcount from OhLoh.
Take a look here: http://labs.ohloh.net/ohcount/</description>
		<content:encoded><![CDATA[<p>You can also use ohcount from OhLoh.<br />
Take a look here: <a href="http://labs.ohloh.net/ohcount/" rel="nofollow">http://labs.ohloh.net/ohcount/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff Schroeder</title>
		<link>http://www.sharms.org/blog/2009/03/quick-tip-counting-lines-of-code/comment-page-1/#comment-1069</link>
		<dc:creator>Jeff Schroeder</dc:creator>
		<pubDate>Wed, 11 Mar 2009 16:18:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.sharms.org/blog/2009/03/11/quick-tip-counting-lines-of-code/#comment-1069</guid>
		<description>Another quick tip, try using egrep -v.
jeff@jschroeder2:~$ echo -e &#039;1\n2\n3\n4&#039; &#124; grep -v 1 &#124; grep -v 3
2
4
jeff@jschroeder2:~$ echo -e &#039;1\n2\n3\n4&#039; &#124; egrep -v &#039;1&#124;3&#039;
2
4</description>
		<content:encoded><![CDATA[<p>Another quick tip, try using egrep -v.<br />
jeff@jschroeder2:~$ echo -e &#8217;1\n2\n3\n4&#8242; | grep -v 1 | grep -v 3<br />
2<br />
4<br />
jeff@jschroeder2:~$ echo -e &#8217;1\n2\n3\n4&#8242; | egrep -v &#8217;1|3&#8242;<br />
2<br />
4</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sharms</title>
		<link>http://www.sharms.org/blog/2009/03/quick-tip-counting-lines-of-code/comment-page-1/#comment-1068</link>
		<dc:creator>sharms</dc:creator>
		<pubDate>Wed, 11 Mar 2009 15:32:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.sharms.org/blog/2009/03/11/quick-tip-counting-lines-of-code/#comment-1068</guid>
		<description>Smurphy - I am using Symfony as a framework, what are you using?  So far symfony has been excellent for me, really made development easy once I got the whole &quot;programming by convention&quot; method down.</description>
		<content:encoded><![CDATA[<p>Smurphy &#8211; I am using Symfony as a framework, what are you using?  So far symfony has been excellent for me, really made development easy once I got the whole &#8220;programming by convention&#8221; method down.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Smurphy</title>
		<link>http://www.sharms.org/blog/2009/03/quick-tip-counting-lines-of-code/comment-page-1/#comment-1067</link>
		<dc:creator>Smurphy</dc:creator>
		<pubDate>Wed, 11 Mar 2009 15:18:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.sharms.org/blog/2009/03/11/quick-tip-counting-lines-of-code/#comment-1067</guid>
		<description>21749 for my main php-website, and about 2500 lines per module I wrote on it. 7 Modules ~17500 for the modules ;) Also all in php :)</description>
		<content:encoded><![CDATA[<p>21749 for my main php-website, and about 2500 lines per module I wrote on it. 7 Modules ~17500 for the modules <img src='http://www.sharms.org/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  Also all in php <img src='http://www.sharms.org/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>

