<?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 AquilaX's development blog</title>
	<atom:link href="http://dev.horemag.net/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://dev.horemag.net</link>
	<description>code and so on...</description>
	<lastBuildDate>Sun, 17 Jul 2011 12:30:24 +0300</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Perlin noise generator in PHP by Joseph</title>
		<link>http://dev.horemag.net/2008/03/02/perlin-noise-generator-in-php/comment-page-1/#comment-55519</link>
		<dc:creator>Joseph</dc:creator>
		<pubDate>Sun, 17 Jul 2011 12:30:24 +0000</pubDate>
		<guid isPermaLink="false">http://dev.horemag.net/2008/03/02/perlin-noise-generator-in-php/#comment-55519</guid>
		<description>Yep, same here, only the two top rows are getting random data. After that, it evens out to a solid color.</description>
		<content:encoded><![CDATA[<p>Yep, same here, only the two top rows are getting random data. After that, it evens out to a solid color.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on MySQL UNION DISTINCT with result priority by rye coder</title>
		<link>http://dev.horemag.net/2008/07/31/mysql-union-distinct-with-result-priority/comment-page-1/#comment-54140</link>
		<dc:creator>rye coder</dc:creator>
		<pubDate>Sun, 09 Jan 2011 16:03:22 +0000</pubDate>
		<guid isPermaLink="false">http://dev.horemag.net/?p=59#comment-54140</guid>
		<description>wow, great solution. This saved me a lot of time. thanks alot</description>
		<content:encoded><![CDATA[<p>wow, great solution. This saved me a lot of time. thanks alot</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on MySQL UNION DISTINCT with result priority by AquilaX</title>
		<link>http://dev.horemag.net/2008/07/31/mysql-union-distinct-with-result-priority/comment-page-1/#comment-53360</link>
		<dc:creator>AquilaX</dc:creator>
		<pubDate>Wed, 17 Nov 2010 13:02:59 +0000</pubDate>
		<guid isPermaLink="false">http://dev.horemag.net/?p=59#comment-53360</guid>
		<description>Yes there is just enclose everything in one select:

SELECT(
  SELECT... whatever
) as outer LIMIT 10;</description>
		<content:encoded><![CDATA[<p>Yes there is just enclose everything in one select:</p>
<p>SELECT(<br />
  SELECT&#8230; whatever<br />
) as outer LIMIT 10;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on MySQL UNION DISTINCT with result priority by Sunny</title>
		<link>http://dev.horemag.net/2008/07/31/mysql-union-distinct-with-result-priority/comment-page-1/#comment-53359</link>
		<dc:creator>Sunny</dc:creator>
		<pubDate>Wed, 17 Nov 2010 12:24:14 +0000</pubDate>
		<guid isPermaLink="false">http://dev.horemag.net/?p=59#comment-53359</guid>
		<description>Actually, I tested it:
By default first query in union has top priority and so on.

The problem I am facing now is:
I want 12 results on every page.
So, Is there a method by which I can give Limit to whole query not just in every union query.</description>
		<content:encoded><![CDATA[<p>Actually, I tested it:<br />
By default first query in union has top priority and so on.</p>
<p>The problem I am facing now is:<br />
I want 12 results on every page.<br />
So, Is there a method by which I can give Limit to whole query not just in every union query.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on MySQL UNION DISTINCT with result priority by Sunny</title>
		<link>http://dev.horemag.net/2008/07/31/mysql-union-distinct-with-result-priority/comment-page-1/#comment-53358</link>
		<dc:creator>Sunny</dc:creator>
		<pubDate>Wed, 17 Nov 2010 12:17:42 +0000</pubDate>
		<guid isPermaLink="false">http://dev.horemag.net/?p=59#comment-53358</guid>
		<description>Not working</description>
		<content:encoded><![CDATA[<p>Not working</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on MySQL UNION DISTINCT with result priority by AquilaX</title>
		<link>http://dev.horemag.net/2008/07/31/mysql-union-distinct-with-result-priority/comment-page-1/#comment-53357</link>
		<dc:creator>AquilaX</dc:creator>
		<pubDate>Wed, 17 Nov 2010 11:33:18 +0000</pubDate>
		<guid isPermaLink="false">http://dev.horemag.net/?p=59#comment-53357</guid>
		<description>Just use * instead of the column it should work.</description>
		<content:encoded><![CDATA[<p>Just use * instead of the column it should work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on MySQL UNION DISTINCT with result priority by Sunny</title>
		<link>http://dev.horemag.net/2008/07/31/mysql-union-distinct-with-result-priority/comment-page-1/#comment-53356</link>
		<dc:creator>Sunny</dc:creator>
		<pubDate>Wed, 17 Nov 2010 11:21:53 +0000</pubDate>
		<guid isPermaLink="false">http://dev.horemag.net/?p=59#comment-53356</guid>
		<description>Nice post!

But what if I need to select * instead of one column  ????</description>
		<content:encoded><![CDATA[<p>Nice post!</p>
<p>But what if I need to select * instead of one column  ????</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Perlin noise generator in PHP by Dylan</title>
		<link>http://dev.horemag.net/2008/03/02/perlin-noise-generator-in-php/comment-page-1/#comment-51495</link>
		<dc:creator>Dylan</dc:creator>
		<pubDate>Fri, 23 Jul 2010 06:55:13 +0000</pubDate>
		<guid isPermaLink="false">http://dev.horemag.net/2008/03/02/perlin-noise-generator-in-php/#comment-51495</guid>
		<description>Hmm it seems this doesn&#039;t work. There is minimal randomness produced... try copying/pasting all your own code into it&#039;s own area and see for yourself. I also ported this to javascript and am getting weird results... the noise doesn&#039;t spread over the entire area, but eventually maxes out at -1</description>
		<content:encoded><![CDATA[<p>Hmm it seems this doesn&#8217;t work. There is minimal randomness produced&#8230; try copying/pasting all your own code into it&#8217;s own area and see for yourself. I also ported this to javascript and am getting weird results&#8230; the noise doesn&#8217;t spread over the entire area, but eventually maxes out at -1</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Datecs FP-550T by CodingCat</title>
		<link>http://dev.horemag.net/2007/11/04/datecs-fp-550t/comment-page-1/#comment-50851</link>
		<dc:creator>CodingCat</dc:creator>
		<pubDate>Tue, 04 May 2010 21:46:24 +0000</pubDate>
		<guid isPermaLink="false">http://dev.horemag.net/2007/11/04/datecs-fp-550t/#comment-50851</guid>
		<description>Url should be:
ftp://ftp.datecs.bg/pub/

Their servers are so damn slow :D</description>
		<content:encoded><![CDATA[<p>Url should be:<br />
<a href="ftp://ftp.datecs.bg/pub/" rel="nofollow" onclick="javascript:urchinTracker('/outbound/comment/ftp://ftp.datecs.bg/pub/');">ftp://ftp.datecs.bg/pub/</a></p>
<p>Their servers are so damn slow <img src='http://dev.horemag.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on chomp for bash by Ganneff</title>
		<link>http://dev.horemag.net/2008/10/28/chomp-for-bash/comment-page-1/#comment-50694</link>
		<dc:creator>Ganneff</dc:creator>
		<pubDate>Fri, 23 Apr 2010 14:33:13 +0000</pubDate>
		<guid isPermaLink="false">http://dev.horemag.net/?p=61#comment-50694</guid>
		<description>A little late, but why not simply use bash itself for this? It is powerful enough, no need to have an external tool called:

var1=&quot;something with
space and

linefeeds&quot;
var1=${var1//
/_}

echo $var1

(I only used _ to make it more visible here)</description>
		<content:encoded><![CDATA[<p>A little late, but why not simply use bash itself for this? It is powerful enough, no need to have an external tool called:</p>
<p>var1=&#8221;something with<br />
space and</p>
<p>linefeeds&#8221;<br />
var1=${var1//<br />
/_}</p>
<p>echo $var1</p>
<p>(I only used _ to make it more visible here)</p>
]]></content:encoded>
	</item>
</channel>
</rss>

