<?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 for Blog of a LAMP Developer based in Richmond, Surrey</title>
	<atom:link href="http://www.lampdeveloper.co.uk/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://www.lampdeveloper.co.uk</link>
	<description>A day in the life of a Lamp Developer</description>
	<lastBuildDate>Fri, 15 Apr 2011 18:58:01 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Detecting a videos dimensions using PHP and FFMPEG by Andrew</title>
		<link>http://www.lampdeveloper.co.uk/linux/detecting-a-videos-dimensions-using-php-and-ffmpeg.html/comment-page-1#comment-863</link>
		<dc:creator>Andrew</dc:creator>
		<pubDate>Fri, 15 Apr 2011 18:58:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.lampdeveloper.co.uk/?p=97#comment-863</guid>
		<description>Great function, works great, but depends on deprecated ereg. To fix, replace line 14 with:

$regex = &quot;/([0-9]{1,4})x([0-9]{1,4})/&quot;;
if (preg_match($regex, $output, $regs)) {
	$result = $regs[0];
}else {
	$result = &quot;&quot;;
}

This could be re-factored if you choose. Thanks Jamie, this code was really helpful.</description>
		<content:encoded><![CDATA[<p>Great function, works great, but depends on deprecated ereg. To fix, replace line 14 with:</p>
<p>$regex = &#8220;/([0-9]{1,4})x([0-9]{1,4})/&#8221;;<br />
if (preg_match($regex, $output, $regs)) {<br />
	$result = $regs[0];<br />
}else {<br />
	$result = &#8220;&#8221;;<br />
}</p>
<p>This could be re-factored if you choose. Thanks Jamie, this code was really helpful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Converting a Doc to PDF, txt or HTML using PHP and Linux by Brijesh Pant</title>
		<link>http://www.lampdeveloper.co.uk/linux/converting-doc-to-pdf-txt-or-html-using-php-and-linux.html/comment-page-1#comment-392</link>
		<dc:creator>Brijesh Pant</dc:creator>
		<pubDate>Wed, 08 Dec 2010 20:20:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.lampdeveloper.co.uk/?p=16#comment-392</guid>
		<description>I have used unoconv library and this article was really help full for me.</description>
		<content:encoded><![CDATA[<p>I have used unoconv library and this article was really help full for me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Get Google Page Rank using PHP by CoolKoon</title>
		<link>http://www.lampdeveloper.co.uk/php/get-google-page-rank-using-php.html/comment-page-1#comment-305</link>
		<dc:creator>CoolKoon</dc:creator>
		<pubDate>Mon, 08 Nov 2010 18:45:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.lampdeveloper.co.uk/linux/get-google-page-rank-using-php.html#comment-305</guid>
		<description>Yes you can. It just opens up as a plain textfile. So you just click &quot;view source&quot; and voila! there&#039;s the code.

Oh and thanks for the code, it works like a charm (on Windows 7 at least). ;)</description>
		<content:encoded><![CDATA[<p>Yes you can. It just opens up as a plain textfile. So you just click &#8220;view source&#8221; and voila! there&#8217;s the code.</p>
<p>Oh and thanks for the code, it works like a charm (on Windows 7 at least). <img src='http://www.lampdeveloper.co.uk/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Generating a file list, for a Joomla Component XML info file by Nicola Lunghi</title>
		<link>http://www.lampdeveloper.co.uk/linux/generating-a-file-list-for-a-joomla-component-xml-info-file.html/comment-page-1#comment-268</link>
		<dc:creator>Nicola Lunghi</dc:creator>
		<pubDate>Sun, 03 Oct 2010 09:40:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.lampdeveloper.co.uk/?p=161#comment-268</guid>
		<description>great tip!

but I modified this with -maxdepth option

find * -maxdepth 0 -type f -exec  echo &#039;&#039;{}&#039;&#039; \;
find * -maxdepth 0 -type d -exec  echo &#039;&#039;{}&#039;&#039; \;

folder includes also subfolders!</description>
		<content:encoded><![CDATA[<p>great tip!</p>
<p>but I modified this with -maxdepth option</p>
<p>find * -maxdepth 0 -type f -exec  echo &#8221;{}&#8221; \;<br />
find * -maxdepth 0 -type d -exec  echo &#8221;{}&#8221; \;</p>
<p>folder includes also subfolders!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Converting a PDF file to text. Indexing a PDF file using poppler by ads</title>
		<link>http://www.lampdeveloper.co.uk/linux/converting-a-pdf-to-text-or-html-indexing-a-pdf-file.html/comment-page-1#comment-262</link>
		<dc:creator>ads</dc:creator>
		<pubDate>Sat, 18 Sep 2010 21:57:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.lampdeveloper.co.uk/?p=68#comment-262</guid>
		<description>for converting a pdf file called symbol i wrote the command pdftotext symbol.pdf symbol.txt 
is there anything that i am missing /</description>
		<content:encoded><![CDATA[<p>for converting a pdf file called symbol i wrote the command pdftotext symbol.pdf symbol.txt<br />
is there anything that i am missing /</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Converting a PDF file to text. Indexing a PDF file using poppler by ads</title>
		<link>http://www.lampdeveloper.co.uk/linux/converting-a-pdf-to-text-or-html-indexing-a-pdf-file.html/comment-page-1#comment-261</link>
		<dc:creator>ads</dc:creator>
		<pubDate>Sat, 18 Sep 2010 21:56:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.lampdeveloper.co.uk/?p=68#comment-261</guid>
		<description>i really dont understand how to convert pdf to txt in ubuntu.. i was able to intall pdftotext using the sudo apt-et command.. but after that not being able to move forward at all.. i have tried to write the command in 10 different ways but still it says ... no such file or directory ..and sometimes it gives me options for -f, -l etc ...</description>
		<content:encoded><![CDATA[<p>i really dont understand how to convert pdf to txt in ubuntu.. i was able to intall pdftotext using the sudo apt-et command.. but after that not being able to move forward at all.. i have tried to write the command in 10 different ways but still it says &#8230; no such file or directory ..and sometimes it gives me options for -f, -l etc &#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Get Google Page Rank using PHP by Buzzknow</title>
		<link>http://www.lampdeveloper.co.uk/php/get-google-page-rank-using-php.html/comment-page-1#comment-244</link>
		<dc:creator>Buzzknow</dc:creator>
		<pubDate>Sun, 05 Sep 2010 07:06:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.lampdeveloper.co.uk/linux/get-google-page-rank-using-php.html#comment-244</guid>
		<description>we cant download script :(</description>
		<content:encoded><![CDATA[<p>we cant download script <img src='http://www.lampdeveloper.co.uk/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Get Google Page Rank using PHP by endless beginning</title>
		<link>http://www.lampdeveloper.co.uk/php/get-google-page-rank-using-php.html/comment-page-1#comment-230</link>
		<dc:creator>endless beginning</dc:creator>
		<pubDate>Mon, 23 Aug 2010 19:26:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.lampdeveloper.co.uk/linux/get-google-page-rank-using-php.html#comment-230</guid>
		<description>Excellent script. This is what i was looking for :)</description>
		<content:encoded><![CDATA[<p>Excellent script. This is what i was looking for <img src='http://www.lampdeveloper.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Smudge IT is no more. (Well kinda) by Jamie</title>
		<link>http://www.lampdeveloper.co.uk/linux/smudge-it-is-no-more-well-kinda.html/comment-page-1#comment-227</link>
		<dc:creator>Jamie</dc:creator>
		<pubDate>Sun, 22 Aug 2010 09:44:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.lampdeveloper.co.uk/?p=205#comment-227</guid>
		<description>It will be soon</description>
		<content:encoded><![CDATA[<p>It will be soon</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Smudge IT is no more. (Well kinda) by Lucian</title>
		<link>http://www.lampdeveloper.co.uk/linux/smudge-it-is-no-more-well-kinda.html/comment-page-1#comment-226</link>
		<dc:creator>Lucian</dc:creator>
		<pubDate>Sat, 21 Aug 2010 18:36:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.lampdeveloper.co.uk/?p=205#comment-226</guid>
		<description>Hehe.

I take it the vps web management thing is still on?</description>
		<content:encoded><![CDATA[<p>Hehe.</p>
<p>I take it the vps web management thing is still on?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

