<?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: Script For Counting Number Of Lines Of Code In Your Website; Composite Design Pattern</title>
	<atom:link href="http://codingrecipes.com/script-for-counting-number-of-lines-of-code-in-your-website-composite-design-pattern/feed" rel="self" type="application/rss+xml" />
	<link>http://codingrecipes.com/script-for-counting-number-of-lines-of-code-in-your-website-composite-design-pattern</link>
	<description></description>
	<lastBuildDate>Tue, 01 May 2012 00:54:10 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.1</generator>
	<item>
		<title>By: Max van Straaten</title>
		<link>http://codingrecipes.com/script-for-counting-number-of-lines-of-code-in-your-website-composite-design-pattern/comment-page-1#comment-4383</link>
		<dc:creator>Max van Straaten</dc:creator>
		<pubDate>Thu, 08 Mar 2012 22:04:13 +0000</pubDate>
		<guid isPermaLink="false">http://blog.code-head.com/?p=798#comment-4383</guid>
		<description>194078 lines of code is no problem.
Thanks for the script</description>
		<content:encoded><![CDATA[<p>194078 lines of code is no problem.<br />
Thanks for the script</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Johan Eliasson</title>
		<link>http://codingrecipes.com/script-for-counting-number-of-lines-of-code-in-your-website-composite-design-pattern/comment-page-1#comment-2293</link>
		<dc:creator>Johan Eliasson</dc:creator>
		<pubDate>Sat, 16 Jul 2011 09:05:31 +0000</pubDate>
		<guid isPermaLink="false">http://blog.code-head.com/?p=798#comment-2293</guid>
		<description>Working great, thanks!</description>
		<content:encoded><![CDATA[<p>Working great, thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aden Fraser</title>
		<link>http://codingrecipes.com/script-for-counting-number-of-lines-of-code-in-your-website-composite-design-pattern/comment-page-1#comment-1808</link>
		<dc:creator>Aden Fraser</dc:creator>
		<pubDate>Thu, 07 Apr 2011 22:53:40 +0000</pubDate>
		<guid isPermaLink="false">http://blog.code-head.com/?p=798#comment-1808</guid>
		<description>To use an INCLUDE file list rather than an exclude file list, just alter the &#039;exclude_extensions&#039; to your include extensions list and then reverse the function of:

in_array($file -&gt; ext, $this -&gt; exclude_extensions) 

!in_array($file -&gt; ext, $this -&gt; exclude_extensions) 

Should work fine, it did here.</description>
		<content:encoded><![CDATA[<p>To use an INCLUDE file list rather than an exclude file list, just alter the &#8216;exclude_extensions&#8217; to your include extensions list and then reverse the function of:</p>
<p>in_array($file -&gt; ext, $this -&gt; exclude_extensions) </p>
<p>!in_array($file -&gt; ext, $this -&gt; exclude_extensions) </p>
<p>Should work fine, it did here.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Wookie</title>
		<link>http://codingrecipes.com/script-for-counting-number-of-lines-of-code-in-your-website-composite-design-pattern/comment-page-1#comment-1660</link>
		<dc:creator>Wookie</dc:creator>
		<pubDate>Fri, 25 Feb 2011 14:27:22 +0000</pubDate>
		<guid isPermaLink="false">http://blog.code-head.com/?p=798#comment-1660</guid>
		<description>Nice, but wouldn&#039;t have been better to INCLUDE file extensions rather than to exclude them? If I just want to read the .php files, I shouldn&#039;t have to exclude every other extension under the sun.</description>
		<content:encoded><![CDATA[<p>Nice, but wouldn&#8217;t have been better to INCLUDE file extensions rather than to exclude them? If I just want to read the .php files, I shouldn&#8217;t have to exclude every other extension under the sun.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom</title>
		<link>http://codingrecipes.com/script-for-counting-number-of-lines-of-code-in-your-website-composite-design-pattern/comment-page-1#comment-1651</link>
		<dc:creator>Tom</dc:creator>
		<pubDate>Sun, 20 Feb 2011 01:43:26 +0000</pubDate>
		<guid isPermaLink="false">http://blog.code-head.com/?p=798#comment-1651</guid>
		<description>Great script, it was exactly what I was looking for - and it being in PHP was a huge plus. :)</description>
		<content:encoded><![CDATA[<p>Great script, it was exactly what I was looking for &#8211; and it being in PHP was a huge plus. <img src='http://codingrecipes.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Codehead</title>
		<link>http://codingrecipes.com/script-for-counting-number-of-lines-of-code-in-your-website-composite-design-pattern/comment-page-1#comment-1632</link>
		<dc:creator>Codehead</dc:creator>
		<pubDate>Wed, 02 Feb 2011 18:30:29 +0000</pubDate>
		<guid isPermaLink="false">http://blog.code-head.com/?p=798#comment-1632</guid>
		<description>I know it&#039;s not, it doesn&#039;t claim to be either, it gives you a rough estimate and it&#039;s a great demonstration of the composite design pattern, you can extend it and make more accurate though and if you do, I will post a link to yours :)</description>
		<content:encoded><![CDATA[<p>I know it&#8217;s not, it doesn&#8217;t claim to be either, it gives you a rough estimate and it&#8217;s a great demonstration of the composite design pattern, you can extend it and make more accurate though and if you do, I will post a link to yours <img src='http://codingrecipes.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: phpwebdeveloper</title>
		<link>http://codingrecipes.com/script-for-counting-number-of-lines-of-code-in-your-website-composite-design-pattern/comment-page-1#comment-1631</link>
		<dc:creator>phpwebdeveloper</dc:creator>
		<pubDate>Wed, 02 Feb 2011 08:55:37 +0000</pubDate>
		<guid isPermaLink="false">http://blog.code-head.com/?p=798#comment-1631</guid>
		<description>your counter is not accurate lol!</description>
		<content:encoded><![CDATA[<p>your counter is not accurate lol!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ben Duffin</title>
		<link>http://codingrecipes.com/script-for-counting-number-of-lines-of-code-in-your-website-composite-design-pattern/comment-page-1#comment-1612</link>
		<dc:creator>Ben Duffin</dc:creator>
		<pubDate>Fri, 21 Jan 2011 14:18:41 +0000</pubDate>
		<guid isPermaLink="false">http://blog.code-head.com/?p=798#comment-1612</guid>
		<description>PS: for a giggle, do a SLOC count on a Joomla or Magento installation - YIKES!!!</description>
		<content:encoded><![CDATA[<p>PS: for a giggle, do a SLOC count on a Joomla or Magento installation &#8211; YIKES!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ben Duffin</title>
		<link>http://codingrecipes.com/script-for-counting-number-of-lines-of-code-in-your-website-composite-design-pattern/comment-page-1#comment-1611</link>
		<dc:creator>Ben Duffin</dc:creator>
		<pubDate>Fri, 21 Jan 2011 14:17:51 +0000</pubDate>
		<guid isPermaLink="false">http://blog.code-head.com/?p=798#comment-1611</guid>
		<description>I have been using this for well over a year - it awesome for keeping a track on the general size of a project. I have added several other file extensions and directories to exclude such as JS library dirs etc etc.

It really begins to feel good when you can hit 100,000 lines of YOUR OWN CODE!!! ( dont make the same mistake i did at first - it was counting all of the library files too which i didn&#039;t write, hence the modding!)

Thank you for releasing this to the world, most useful utility page. I have a simple file in the root of my server the contins this script and a drop down listing all of the project folders available ( built on the fly). I just select the relevant project and hit count!</description>
		<content:encoded><![CDATA[<p>I have been using this for well over a year &#8211; it awesome for keeping a track on the general size of a project. I have added several other file extensions and directories to exclude such as JS library dirs etc etc.</p>
<p>It really begins to feel good when you can hit 100,000 lines of YOUR OWN CODE!!! ( dont make the same mistake i did at first &#8211; it was counting all of the library files too which i didn&#8217;t write, hence the modding!)</p>
<p>Thank you for releasing this to the world, most useful utility page. I have a simple file in the root of my server the contins this script and a drop down listing all of the project folders available ( built on the fly). I just select the relevant project and hit count!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Naeem</title>
		<link>http://codingrecipes.com/script-for-counting-number-of-lines-of-code-in-your-website-composite-design-pattern/comment-page-1#comment-1597</link>
		<dc:creator>Naeem</dc:creator>
		<pubDate>Tue, 11 Jan 2011 07:43:05 +0000</pubDate>
		<guid isPermaLink="false">http://blog.code-head.com/?p=798#comment-1597</guid>
		<description>Thanks alot, Great work.... Its working and working very fine... Thank you so much again</description>
		<content:encoded><![CDATA[<p>Thanks alot, Great work&#8230;. Its working and working very fine&#8230; Thank you so much again</p>
]]></content:encoded>
	</item>
</channel>
</rss>

