<?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: Step by step perfect maze generation with php</title>
	<atom:link href="http://www.emanueleferonato.com/2006/08/20/step-by-step-perfect-maze-generation-with-php/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.emanueleferonato.com/2006/08/20/step-by-step-perfect-maze-generation-with-php/</link>
	<description>italian geek and PROgrammer</description>
	<lastBuildDate>Sun, 14 Mar 2010 01:06:50 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Darty</title>
		<link>http://www.emanueleferonato.com/2006/08/20/step-by-step-perfect-maze-generation-with-php/comment-page-1/#comment-487336</link>
		<dc:creator>Darty</dc:creator>
		<pubDate>Wed, 19 Aug 2009 01:46:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.emanueleferonato.com/2006/08/20/step-by-step-perfect-maze-generation-with-php/#comment-487336</guid>
		<description>Nice tutorial, takes me back to my second year of university where we had to do the exact same thing in c++</description>
		<content:encoded><![CDATA[<p>Nice tutorial, takes me back to my second year of university where we had to do the exact same thing in c++</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Perfect maze generation with AS3 : Emanuele Feronato</title>
		<link>http://www.emanueleferonato.com/2006/08/20/step-by-step-perfect-maze-generation-with-php/comment-page-1/#comment-344952</link>
		<dc:creator>Perfect maze generation with AS3 : Emanuele Feronato</dc:creator>
		<pubDate>Fri, 28 Nov 2008 14:38:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.emanueleferonato.com/2006/08/20/step-by-step-perfect-maze-generation-with-php/#comment-344952</guid>
		<description>[...] already talked about perfect mazes a couple of years ago with Step by step perfect maze generation with php and Perfect maze generation with Flash actionscript, but now it&#039;s time to make it with AS3 and [...]</description>
		<content:encoded><![CDATA[<p>[...] already talked about perfect mazes a couple of years ago with Step by step perfect maze generation with php and Perfect maze generation with Flash actionscript, but now it&#8217;s time to make it with AS3 and [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jahn</title>
		<link>http://www.emanueleferonato.com/2006/08/20/step-by-step-perfect-maze-generation-with-php/comment-page-1/#comment-2967</link>
		<dc:creator>Jahn</dc:creator>
		<pubDate>Sun, 28 Jan 2007 00:43:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.emanueleferonato.com/2006/08/20/step-by-step-perfect-maze-generation-with-php/#comment-2967</guid>
		<description>$maze is the variable.
[$pos] is the area of the array
{2} designates one character versus the whole string at postition 2.</description>
		<content:encoded><![CDATA[<p>$maze is the variable.<br />
[$pos] is the area of the array<br />
{2} designates one character versus the whole string at postition 2.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Leo</title>
		<link>http://www.emanueleferonato.com/2006/08/20/step-by-step-perfect-maze-generation-with-php/comment-page-1/#comment-368</link>
		<dc:creator>Leo</dc:creator>
		<pubDate>Thu, 02 Nov 2006 16:18:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.emanueleferonato.com/2006/08/20/step-by-step-perfect-maze-generation-with-php/#comment-368</guid>
		<description>Hey... im not a expert in PHP, but i wanna ask:

Whats does $maze[$pos]{0} = 1; do?
and $maze[$pos]{2} = 0;?
and $maze[$pos+1]{4} = 0;?
etc...

i dont catch those lines!

please, help!</description>
		<content:encoded><![CDATA[<p>Hey&#8230; im not a expert in PHP, but i wanna ask:</p>
<p>Whats does $maze[$pos]{0} = 1; do?<br />
and $maze[$pos]{2} = 0;?<br />
and $maze[$pos+1]{4} = 0;?<br />
etc&#8230;</p>
<p>i dont catch those lines!</p>
<p>please, help!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: T Munk</title>
		<link>http://www.emanueleferonato.com/2006/08/20/step-by-step-perfect-maze-generation-with-php/comment-page-1/#comment-52</link>
		<dc:creator>T Munk</dc:creator>
		<pubDate>Fri, 01 Sep 2006 19:10:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.emanueleferonato.com/2006/08/20/step-by-step-perfect-maze-generation-with-php/#comment-52</guid>
		<description>Excellent bit of work! I was looking for something to randomly generate a dungeon for each user for one of the quests in my game, and your code turns out to be a really nice jumping-off point. (:

Note: firefox doesn&#039;t like class names that start with a number in stylesheets, and thus doesn&#039;t render your pretty maze correctly. You can fix this in your code by adding a letter to the class name:

Line 78: 
Line 81: 
Line 98: .c00{width:50px;
ditto with line 99,100,101.

Thanks!</description>
		<content:encoded><![CDATA[<p>Excellent bit of work! I was looking for something to randomly generate a dungeon for each user for one of the quests in my game, and your code turns out to be a really nice jumping-off point. (:</p>
<p>Note: firefox doesn&#8217;t like class names that start with a number in stylesheets, and thus doesn&#8217;t render your pretty maze correctly. You can fix this in your code by adding a letter to the class name:</p>
<p>Line 78:<br />
Line 81:<br />
Line 98: .c00{width:50px;<br />
ditto with line 99,100,101.</p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
