<?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 tail -f findings.out</title>
	<atom:link href="http://dancingpenguinsoflight.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://dancingpenguinsoflight.com</link>
	<description></description>
	<lastBuildDate>Sat, 19 May 2012 07:40:26 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on Converting multiple images into one PDF on Linux by johu</title>
		<link>http://dancingpenguinsoflight.com/2010/02/converting-multiple-images-to-one-pdf-on-linux/comment-page-1/#comment-84866</link>
		<dc:creator>johu</dc:creator>
		<pubDate>Sat, 19 May 2012 07:40:26 +0000</pubDate>
		<guid isPermaLink="false">http://dancingpenguinsoflight.com/?p=1440#comment-84866</guid>
		<description>Linux is great! It&#039;s just the convert command I looked for.  Thanks...</description>
		<content:encoded><![CDATA[<p>Linux is great! It&#8217;s just the convert command I looked for.  Thanks&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Finding the smallest or largest value across multiple columns in MySQL by Dieter Köhler</title>
		<link>http://dancingpenguinsoflight.com/2009/03/finding-the-smallest-or-largest-value-across-multiple-columns-in-mysql/comment-page-1/#comment-84386</link>
		<dc:creator>Dieter Köhler</dc:creator>
		<pubDate>Wed, 09 May 2012 16:24:24 +0000</pubDate>
		<guid isPermaLink="false">http://dancingpenguinsoflight.com/?p=716#comment-84386</guid>
		<description>The code can be improved to take care for the case when all dates are NULL:
&lt;code&gt;
SELECT id, date1, date2, date3, date4,
nullif(
least(
ifnull(date1, &#039;9999-99-99&#039;),
ifnull(date2, &#039;9999-99-99&#039;),
ifnull(date3, &#039;9999-99-99&#039;),
ifnull(date4, &#039;9999-99-99&#039;)
), 
&#039;9999-99-99&#039;) AS first_date
FROM my_db.my_table
GROUP BY id;
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>The code can be improved to take care for the case when all dates are NULL:</p>
<div class="codecolorer-container text blackboard" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br />10<br />11<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">SELECT id, date1, date2, date3, date4,<br />
nullif(<br />
least(<br />
ifnull(date1, '9999-99-99'),<br />
ifnull(date2, '9999-99-99'),<br />
ifnull(date3, '9999-99-99'),<br />
ifnull(date4, '9999-99-99')<br />
), <br />
'9999-99-99') AS first_date<br />
FROM my_db.my_table<br />
GROUP BY id;</div></td></tr></tbody></table></div>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to completely reset an Apache instance in Ubuntu by Claus Conrad</title>
		<link>http://dancingpenguinsoflight.com/2009/02/how-to-completely-reset-an-apache-instance-in-ubuntu/comment-page-2/#comment-84186</link>
		<dc:creator>Claus Conrad</dc:creator>
		<pubDate>Tue, 08 May 2012 10:23:34 +0000</pubDate>
		<guid isPermaLink="false">http://dancingpenguinsoflight.com/?p=640#comment-84186</guid>
		<description>Thank you - this was just what I needed, you saved me a lot of time.</description>
		<content:encoded><![CDATA[<p>Thank you &#8211; this was just what I needed, you saved me a lot of time.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Dealing with &#8220;could not create shared memory segment&#8221; from postgres on Ubuntu by Gary Yao</title>
		<link>http://dancingpenguinsoflight.com/2010/03/dealing-with-could-not-create-shared-memory-segment-from-postgres-on-ubuntu/comment-page-1/#comment-83147</link>
		<dc:creator>Gary Yao</dc:creator>
		<pubDate>Tue, 01 May 2012 13:06:18 +0000</pubDate>
		<guid isPermaLink="false">http://dancingpenguinsoflight.com/?p=1458#comment-83147</guid>
		<description>Thanks, 
Happened to me after upgrade to 12.04 LTS Polished Penguin.</description>
		<content:encoded><![CDATA[<p>Thanks,<br />
Happened to me after upgrade to 12.04 LTS Polished Penguin.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to completely reset an Apache instance in Ubuntu by sam</title>
		<link>http://dancingpenguinsoflight.com/2009/02/how-to-completely-reset-an-apache-instance-in-ubuntu/comment-page-2/#comment-83099</link>
		<dc:creator>sam</dc:creator>
		<pubDate>Mon, 30 Apr 2012 23:04:58 +0000</pubDate>
		<guid isPermaLink="false">http://dancingpenguinsoflight.com/?p=640#comment-83099</guid>
		<description>Mate!!! Thanks so much!!! It worked like a dream! Thanks again :)</description>
		<content:encoded><![CDATA[<p>Mate!!! Thanks so much!!! It worked like a dream! Thanks again <img src='http://dancingpenguinsoflight.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Handy Excel Tip: Open workbook in new instance by Chakri</title>
		<link>http://dancingpenguinsoflight.com/2011/05/handy-excel-tip-open-workbook-in-new-instance/comment-page-1/#comment-78618</link>
		<dc:creator>Chakri</dc:creator>
		<pubDate>Sat, 31 Mar 2012 20:36:52 +0000</pubDate>
		<guid isPermaLink="false">http://dancingpenguinsoflight.com/?p=1924#comment-78618</guid>
		<description>The following would work for Win7 64 bit,(right click excel and open in new instance submenu)
Open a notepad and paste the following and save it as:- Excel OpenInNewInstance.reg
and right click merge…. you are done.. right click your excels and open in new instance

Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\Excel.Sheet.12\shell\OpenInNewInstance]
@=”Open In NewInstance”

[HKEY_CLASSES_ROOT\Excel.Sheet.12\shell\OpenInNewInstance\command]
@=”\”C:\\Program Files (x86)\\Microsoft Office\\Office14\\EXCEL.EXE\” \”%1\”&quot;

[HKEY_CLASSES_ROOT\Excel.Sheet.8\shell\OpenInNewInstance]
@=”Open In NewInstance”

[HKEY_CLASSES_ROOT\Excel.Sheet.8\shell\OpenInNewInstance\command]
@=”\”C:\\Program Files (x86)\\Microsoft Office\\Office14\\EXCEL.EXE\” \”%1\”&quot;</description>
		<content:encoded><![CDATA[<p>The following would work for Win7 64 bit,(right click excel and open in new instance submenu)<br />
Open a notepad and paste the following and save it as:- Excel OpenInNewInstance.reg<br />
and right click merge…. you are done.. right click your excels and open in new instance</p>
<p>Windows Registry Editor Version 5.00</p>
<p>[HKEY_CLASSES_ROOT\Excel.Sheet.12\shell\OpenInNewInstance]<br />
@=”Open In NewInstance”</p>
<p>[HKEY_CLASSES_ROOT\Excel.Sheet.12\shell\OpenInNewInstance\command]<br />
@=”\”C:\\Program Files (x86)\\Microsoft Office\\Office14\\EXCEL.EXE\” \”%1\”&#8221;</p>
<p>[HKEY_CLASSES_ROOT\Excel.Sheet.8\shell\OpenInNewInstance]<br />
@=”Open In NewInstance”</p>
<p>[HKEY_CLASSES_ROOT\Excel.Sheet.8\shell\OpenInNewInstance\command]<br />
@=”\”C:\\Program Files (x86)\\Microsoft Office\\Office14\\EXCEL.EXE\” \”%1\”&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to completely reset an Apache instance in Ubuntu by Zaur</title>
		<link>http://dancingpenguinsoflight.com/2009/02/how-to-completely-reset-an-apache-instance-in-ubuntu/comment-page-2/#comment-78413</link>
		<dc:creator>Zaur</dc:creator>
		<pubDate>Fri, 30 Mar 2012 14:36:15 +0000</pubDate>
		<guid isPermaLink="false">http://dancingpenguinsoflight.com/?p=640#comment-78413</guid>
		<description>Super! Works!</description>
		<content:encoded><![CDATA[<p>Super! Works!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Dealing with &#8220;could not create shared memory segment&#8221; from postgres on Ubuntu by Sandeep Gholve</title>
		<link>http://dancingpenguinsoflight.com/2010/03/dealing-with-could-not-create-shared-memory-segment-from-postgres-on-ubuntu/comment-page-1/#comment-76469</link>
		<dc:creator>Sandeep Gholve</dc:creator>
		<pubDate>Tue, 20 Mar 2012 09:13:44 +0000</pubDate>
		<guid isPermaLink="false">http://dancingpenguinsoflight.com/?p=1458#comment-76469</guid>
		<description>Thank you Samuel.
This worked for me.</description>
		<content:encoded><![CDATA[<p>Thank you Samuel.<br />
This worked for me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to completely reset an Apache instance in Ubuntu by sudhir</title>
		<link>http://dancingpenguinsoflight.com/2009/02/how-to-completely-reset-an-apache-instance-in-ubuntu/comment-page-2/#comment-75515</link>
		<dc:creator>sudhir</dc:creator>
		<pubDate>Fri, 16 Mar 2012 21:54:57 +0000</pubDate>
		<guid isPermaLink="false">http://dancingpenguinsoflight.com/?p=640#comment-75515</guid>
		<description>you made me breath easy!!!! thanks!!!!</description>
		<content:encoded><![CDATA[<p>you made me breath easy!!!! thanks!!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Needs more cow&#8230;say! by Micheal Declue</title>
		<link>http://dancingpenguinsoflight.com/2008/07/needs-more-cowsay/comment-page-1/#comment-74104</link>
		<dc:creator>Micheal Declue</dc:creator>
		<pubDate>Mon, 12 Mar 2012 13:13:13 +0000</pubDate>
		<guid isPermaLink="false">http://dancingpenguinsoflight.com/2008/07/16/needs-more-cowsay/#comment-74104</guid>
		<description>A final test of an leader is he results in him in other men the conviction and the will to carry on.
If you don&#039;t drive your company, you will end up driven bankrupt.</description>
		<content:encoded><![CDATA[<p>A final test of an leader is he results in him in other men the conviction and the will to carry on.<br />
If you don&#8217;t drive your company, you will end up driven bankrupt.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

