<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Tokyo's Muslim</title>
	<atom:link href="http://www.tokyomuslim.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.tokyomuslim.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Thu, 11 Mar 2010 04:41:44 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>LOL: Implementing &#8220;Margins&#8221; on an old Docomo phone.</title>
		<link>http://www.tokyomuslim.com/2010/03/lol-implementing-margins-on-an-old-docomo-phone/</link>
		<comments>http://www.tokyomuslim.com/2010/03/lol-implementing-margins-on-an-old-docomo-phone/#comments</comments>
		<pubDate>Thu, 11 Mar 2010 04:40:00 +0000</pubDate>
		<dc:creator>Jawaad</dc:creator>
				<category><![CDATA[Free-For-All]]></category>

		<guid isPermaLink="false">http://www.tokyomuslim.com/?p=1466</guid>
		<description><![CDATA[Docomo phones don&#8217;t recognize margins and are irritating as hell to program for.
The odd thing is that they do recognize table widths.  As a result, you can make the following horrible code (that &#8220;DOEZ THE JOB&#8221;)

&#60;BODY&#62;
&#60;table&#62;
&#60;tr&#62;
&#60;td width=&#8221;(left margin)&#8221;&#62;&#60;/td&#62;
&#60;td&#62;(whatever)&#60;/td&#62;
&#60;td width=&#8221;(right margin)&#8221;&#62;&#60;/td&#62;
&#60;/tr&#62;
&#60;/table&#62;
&#60;/BODY&#62;

Hey don&#8217;t look at me; I haven&#8217;t used Tables since y2k.
]]></description>
			<content:encoded><![CDATA[<p>Docomo phones don&#8217;t recognize margins and are irritating as hell to program for.</p>
<p>The odd thing is that they do recognize table widths.  As a result, you can make the following horrible code (that &#8220;DOEZ THE JOB&#8221;)</p>
<blockquote>
<div id="_mcePaste">&lt;BODY&gt;</div>
<div id="_mcePaste">&lt;table&gt;</div>
<div>&lt;tr&gt;</div>
<div id="_mcePaste" style="padding-left: 30px;">&lt;td width=&#8221;(left margin)&#8221;&gt;&lt;/td&gt;</div>
<div id="_mcePaste" style="padding-left: 30px;">&lt;td&gt;(whatever)&lt;/td&gt;</div>
<div style="padding-left: 30px;">&lt;td width=&#8221;(right margin)&#8221;&gt;&lt;/td&gt;</div>
<div>&lt;/tr&gt;</div>
<div>&lt;/table&gt;</div>
<div>&lt;/BODY&gt;</div>
</blockquote>
<div>Hey don&#8217;t look at me; I haven&#8217;t used Tables since y2k.</div>
]]></content:encoded>
			<wfw:commentRss>http://www.tokyomuslim.com/2010/03/lol-implementing-margins-on-an-old-docomo-phone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Email Validation in Google App Engine</title>
		<link>http://www.tokyomuslim.com/2010/03/email-validation-in-google-app-engine/</link>
		<comments>http://www.tokyomuslim.com/2010/03/email-validation-in-google-app-engine/#comments</comments>
		<pubDate>Thu, 11 Mar 2010 00:20:26 +0000</pubDate>
		<dc:creator>Jawaad</dc:creator>
				<category><![CDATA[Coding]]></category>

		<guid isPermaLink="false">http://www.tokyomuslim.com/?p=1464</guid>
		<description><![CDATA[My current project is building a mobile website for Japanese cellphones that can stand about 10-20k hits within an hour without getting completely trashed.  Admittedly, this isn&#8217;t exactly the easiest thing in the world to do, but Google App engine makes it a lot easier.  In the process, I had to brush up on my [...]]]></description>
			<content:encoded><![CDATA[<p>My current project is building a mobile website for Japanese cellphones that can stand about 10-20k hits within an hour without getting completely trashed.  Admittedly, this isn&#8217;t exactly the easiest thing in the world to do, but Google App engine makes it a lot easier.  In the process, I had to brush up on my Python, and in particular, email validation.</p>
<p>The obvious way to deal with email validation is to use google&#8217;s &#8220;mail.is_email_valid&#8221; function.  Unfortunately, this seems to return true as long as you have a string, as it mentions on <a href="http://aralbalkan.com/1353">Aral Balkan&#8217;s helpful post on the subject</a>.  I had to dig a little more to find out how to use mail_re; here&#8217;s the code for anyone curious.</p>
<blockquote>
<div id="_mcePaste">from django.core.validators import email_re</div>
<div></div>
<div>print (email_re.match(&#8216;test_email@fakedomain.com&#8217;) != None)</div>
<div>
<div>print (email_re.match(&#8216;bademail&#8217;) != None)</div>
</div>
</blockquote>
<div>Seems to work properly.</div>
<blockquote></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.tokyomuslim.com/2010/03/email-validation-in-google-app-engine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>N00b problems with Appengine</title>
		<link>http://www.tokyomuslim.com/2010/03/n00b-problems-with-appengine/</link>
		<comments>http://www.tokyomuslim.com/2010/03/n00b-problems-with-appengine/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 04:43:21 +0000</pubDate>
		<dc:creator>Jawaad</dc:creator>
				<category><![CDATA[Free-For-All]]></category>

		<guid isPermaLink="false">http://www.tokyomuslim.com/?p=1462</guid>
		<description><![CDATA[This problem was stupid, but I&#8217;m sure I&#8217;m not the only one who is going to run into it   

Status: 200 OK
Content-Type: text/html; charset=utf-8
Cache-Control: no-cache
Expires: Fri, 01 Jan 1990 00:00:00 GMT
Content-Length: 3

If you are getting the above message after the output you intended, it is because you are using &#8220;print&#8221; instead of &#8220;self.response.out.write&#8221;. [...]]]></description>
			<content:encoded><![CDATA[<p>This problem was stupid, but I&#8217;m sure I&#8217;m not the only one who is going to run into it  <img src='http://www.tokyomuslim.com/wp-includes/images/smilies/ouch.jpg' alt=':ouch:' class='wp-smiley' /> </p>
<blockquote>
<pre>Status: 200 OK
Content-Type: text/html; charset=utf-8
Cache-Control: no-cache
Expires: Fri, 01 Jan 1990 00:00:00 GMT
Content-Length: 3</pre>
</blockquote>
<p>If you are getting the above message after the output you intended, it is because you are using &#8220;print&#8221; instead of &#8220;self.response.out.write&#8221;.   <img src='http://www.tokyomuslim.com/wp-includes/images/smilies/sick.jpg' alt=':sick:' class='wp-smiley' />  <img src='http://www.tokyomuslim.com/wp-includes/images/smilies/ouch.jpg' alt=':ouch:' class='wp-smiley' />  <img src='http://www.tokyomuslim.com/wp-includes/images/smilies/angry.jpg' alt=':grr:' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.tokyomuslim.com/2010/03/n00b-problems-with-appengine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The C10k problem.</title>
		<link>http://www.tokyomuslim.com/2010/03/the-c10k-problem/</link>
		<comments>http://www.tokyomuslim.com/2010/03/the-c10k-problem/#comments</comments>
		<pubDate>Thu, 04 Mar 2010 07:19:04 +0000</pubDate>
		<dc:creator>Jawaad</dc:creator>
				<category><![CDATA[Free-For-All]]></category>

		<guid isPermaLink="false">http://www.tokyomuslim.com/?p=1454</guid>
		<description><![CDATA[Dealing with a new class of problem :/  How to deal with 10k connections simultaneously? (Google app engine is looking more and more attractive.)
]]></description>
			<content:encoded><![CDATA[<p>Dealing with a new class of problem :/  How to deal with 10k connections simultaneously? (Google app engine is looking more and more attractive.)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tokyomuslim.com/2010/03/the-c10k-problem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Logorama kicks ass.</title>
		<link>http://www.tokyomuslim.com/2010/03/logorama-kicks-ass/</link>
		<comments>http://www.tokyomuslim.com/2010/03/logorama-kicks-ass/#comments</comments>
		<pubDate>Tue, 02 Mar 2010 16:58:40 +0000</pubDate>
		<dc:creator>Jawaad</dc:creator>
				<category><![CDATA[Free-For-All]]></category>

		<guid isPermaLink="false">http://www.tokyomuslim.com/?p=1452</guid>
		<description><![CDATA[Klik hier om het video filmpje te bekijken
]]></description>
			<content:encoded><![CDATA[<p><object id="objectPlayer" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="430" height="369" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" ><param name="movie" value="http://www.garagetv.be/v/S5k!wUapp7BV2oONHOYgA0fA3kKn7cvwkWO59OBMBBswSNtey-igvNmRlbFFQLab-z/v.aspx" /><param name="quality" value="high" /><param name="allowFullScreen" value="true" /><param name="wmode" value="transparent" /><param name="bgcolor" value="#000000" /><param name="allowScriptAccess" value="always"><embed id="embedPlayer" bgcolor="#000000" allowFullScreen="true" width="430" height="369" src="http://www.garagetv.be/v/S5k!wUapp7BV2oONHOYgA0fA3kKn7cvwkWO59OBMBBswSNtey-igvNmRlbFFQLab-z/v.aspx" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" wmode="transparent" type="application/x-shockwave-flash"  ></embed></param></object><noscript>Klik hier om het <a href="http://www.garagetv.be/video-galerij/buzzing_bees/De_kortfilm_der_logo_s.aspx">video filmpje</a> te bekijken</noscript></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tokyomuslim.com/2010/03/logorama-kicks-ass/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I&#8217;ve been reading too much.</title>
		<link>http://www.tokyomuslim.com/2010/02/ive-been-reading-too-much/</link>
		<comments>http://www.tokyomuslim.com/2010/02/ive-been-reading-too-much/#comments</comments>
		<pubDate>Thu, 04 Feb 2010 17:09:20 +0000</pubDate>
		<dc:creator>Jawaad</dc:creator>
				<category><![CDATA[Free-For-All]]></category>

		<guid isPermaLink="false">http://www.tokyomuslim.com/?p=1445</guid>
		<description><![CDATA[I was out bicycling around 1 AM to return a video before paying a late fee, and the only thing I could think was about how I could use the half crooked smile appearance of the moon as a literary allusion.  I blame the books I&#8217;ve been reading lately.  Ever since the &#8220;Classics&#8221; application on [...]]]></description>
			<content:encoded><![CDATA[<p>I was out bicycling around 1 AM to return a video before paying a late fee, and the only thing I could think was about how I could use the half crooked smile appearance of the moon as a literary allusion.  I blame the books I&#8217;ve been reading lately.  Ever since the &#8220;Classics&#8221; application on the iPhone was made free, I&#8217;ve read 4 books; this is in less than a week, and despite me being overwhelmed with work.</p>
<p>For record&#8217;s sake, the four were &#8220;The Art of War&#8221; by Sun Tzu, &#8220;Flatland: A Romance of Many Dimensions&#8221; by Edwin Abbott Abbott, &#8220;The Jungle Book&#8221; by Rudyard Kipling and &#8220;Alice in Wonderland&#8221; by Lewis Carroll.  I gave up on Alice half way through, since it was too irritating to read it on the iPhone screen, but the other three were fantastic.  I think The Art of War worked quite well with the iphone, since the small parables seemed to flow well from page to page.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tokyomuslim.com/2010/02/ive-been-reading-too-much/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Not impressed by the iPad</title>
		<link>http://www.tokyomuslim.com/2010/01/not-impressed-by-the-ipad/</link>
		<comments>http://www.tokyomuslim.com/2010/01/not-impressed-by-the-ipad/#comments</comments>
		<pubDate>Thu, 28 Jan 2010 03:09:00 +0000</pubDate>
		<dc:creator>Jawaad</dc:creator>
				<category><![CDATA[Free-For-All]]></category>

		<guid isPermaLink="false">http://www.tokyomuslim.com/?p=1441</guid>
		<description><![CDATA[The iPad is the horrible Nintendo &#8220;Total lockdown&#8221; theory brought to proper computers.
I don&#8217;t look forward to a future where I can&#8217;t play around with my own machine.  Is it too much to ask for?
&#8211;
After some more thinking, the device suddenly becomes far more interesting.  10 hours of constant use?  With a decent RSS reader [...]]]></description>
			<content:encoded><![CDATA[<p>The iPad is the horrible Nintendo &#8220;Total lockdown&#8221; theory brought to proper computers.</p>
<p>I don&#8217;t look forward to a future where I can&#8217;t play around with my own machine.  Is it too much to ask for?</p>
<p>&#8211;</p>
<p>After some more thinking, the device suddenly becomes far more interesting.  10 hours of constant use?  With a decent RSS reader app, it would be the perfect device to keep me up to date on the train.  Sign me up &#8211; potentially.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tokyomuslim.com/2010/01/not-impressed-by-the-ipad/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Saw Avatar Yesterday</title>
		<link>http://www.tokyomuslim.com/2010/01/saw-avatar-yesterday/</link>
		<comments>http://www.tokyomuslim.com/2010/01/saw-avatar-yesterday/#comments</comments>
		<pubDate>Sun, 24 Jan 2010 07:02:15 +0000</pubDate>
		<dc:creator>Jawaad</dc:creator>
				<category><![CDATA[Entertainment]]></category>

		<guid isPermaLink="false">http://www.tokyomuslim.com/?p=1438</guid>
		<description><![CDATA[Watched Avatar yesterday with the gf in Shinjuku.  A few thoughts ran through my mind.

Hayao Miyazaki is a hack. I&#8217;ve never seen any of the later&#8217;s movies that came close in any sense; any of his movies that are conceptually similar (Mononoke Hime, Nausicaa) suffer from muddled vision and the incapability of forming an opinion. [...]]]></description>
			<content:encoded><![CDATA[<p>Watched Avatar yesterday with the gf in Shinjuku.  A few thoughts ran through my mind.</p>
<ul>
<li>Hayao Miyazaki is a hack. I&#8217;ve never seen any of the later&#8217;s movies that came close in any sense; any of his movies that are conceptually similar (Mononoke Hime, Nausicaa) suffer from muddled vision and the incapability of forming an opinion. None of Miyazaki&#8217;s movies have ever been entertaining AND thought-provoking &#8211; it&#8217;s usually one or the other.  (I think the difference between Mononoke Hime and Avatar represent the difference between Japan and America, but that&#8217;s another story).  Maybe it is just the fact that Miyazaki has never done anything but create, while Cameroon was a truck driver and a working man before he started his career.</li>
<li>2000 yen (24-25$) for a ticket?  Ouch.   <img src='http://www.tokyomuslim.com/wp-includes/images/smilies/angry.jpg' alt=':grr:' class='wp-smiley' />  My friend Usmaan reminded me that I could have purchased the tickets from one of those ticket re-sellers around Shinjuku, but what can you do?</li>
<li>Being able to walk home from a late show in Shinjuku is one of the coolest benefits to living in Tokyo.</li>
<li>The next 10 years will see movie producers concentrating on gimmicks like 3D to keep people coming to theaters.  That&#8217;s depressing.</li>
<li>Isn&#8217;t the reasoning used for stripping Pandora the same as outsourcing manufacturing to countries without environmental laws?</li>
<li>&#8220;Sent back to their dying world&#8221; &#8211; ouch.</li>
</ul>
<p>Glad I saw it, too bad I had to pay almost 55$ (if we include popcorn, 2 tickets and a coke)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tokyomuslim.com/2010/01/saw-avatar-yesterday/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Transformers: War for Cybertron for PS3?</title>
		<link>http://www.tokyomuslim.com/2009/12/transformers-war-for-cybertron-for-ps3/</link>
		<comments>http://www.tokyomuslim.com/2009/12/transformers-war-for-cybertron-for-ps3/#comments</comments>
		<pubDate>Thu, 10 Dec 2009 06:35:35 +0000</pubDate>
		<dc:creator>Jawaad</dc:creator>
				<category><![CDATA[Free-For-All]]></category>

		<guid isPermaLink="false">http://www.tokyomuslim.com/?p=1422</guid>
		<description><![CDATA[Looks like a new wargame for PS3 coming out next year by Activision.  This actually looks quite good; I wonder if Hasbro is being influenced by Halo, whose toys apparently sold quite well?  That&#8217;s what the speculation is like at the source (TFW2005.com).
It might be the end of terrible TF games if true; video gaming [...]]]></description>
			<content:encoded><![CDATA[<p>Looks like a new wargame for PS3 coming out next year by Activision.  This actually looks quite good; I wonder if Hasbro is being influenced by Halo, whose toys apparently sold quite well?  That&#8217;s what the speculation is like at the source (<a href="http://www.tfw2005.com">TFW2005.com</a>).</p>
<p>It might be the end of terrible TF games if true; video gaming as an equal of animation (whereas it has been an afterthought until now).</p>
<p>The Optimus design is a nice break from those awful/busy movie designs.  It seems (at least somewhat) based on TF: War Within Optimus Prime.</p>

<a href='http://www.tokyomuslim.com/2009/12/transformers-war-for-cybertron-for-ps3/game-optimus-prime/' title='Game Optimus Prime'><img width="150" height="150" src="http://www.tokyomuslim.com/wp-content/uploads/2009/12/Game-Optimus-Prime-150x150.jpg" class="attachment-thumbnail" alt="" title="Game Optimus Prime" /></a>
<a href='http://www.tokyomuslim.com/2009/12/transformers-war-for-cybertron-for-ps3/game-megatron/' title='Game Megatron'><img width="150" height="150" src="http://www.tokyomuslim.com/wp-content/uploads/2009/12/Game-Megatron-150x150.jpg" class="attachment-thumbnail" alt="" title="Game Megatron" /></a>
<a href='http://www.tokyomuslim.com/2009/12/transformers-war-for-cybertron-for-ps3/game-optimus-vs-unknown-2/' title='Game Optimus vs Unknown'><img width="150" height="150" src="http://www.tokyomuslim.com/wp-content/uploads/2009/12/Game-Optimus-vs-Unknown1-150x150.jpg" class="attachment-thumbnail" alt="" title="Game Optimus vs Unknown" /></a>
<a href='http://www.tokyomuslim.com/2009/12/transformers-war-for-cybertron-for-ps3/game-optimus-vs-unknown/' title='Game Optimus vs Unknown'><img width="150" height="150" src="http://www.tokyomuslim.com/wp-content/uploads/2009/12/Game-Optimus-vs-Unknown-150x150.jpg" class="attachment-thumbnail" alt="" title="Game Optimus vs Unknown" /></a>
<a href='http://www.tokyomuslim.com/2009/12/transformers-war-for-cybertron-for-ps3/game-ironhide-soundwave-and-possibly-blitzwing/' title='Game Ironhide, Soundwave, and Possibly Blitzwing'><img width="150" height="150" src="http://www.tokyomuslim.com/wp-content/uploads/2009/12/Game-Ironhide-Soundwave-and-Possibly-Blitzwing-150x150.jpg" class="attachment-thumbnail" alt="" title="Game Ironhide, Soundwave, and Possibly Blitzwing" /></a>
<a href='http://www.tokyomuslim.com/2009/12/transformers-war-for-cybertron-for-ps3/game-cybertron/' title='Game Cybertron'><img width="150" height="150" src="http://www.tokyomuslim.com/wp-content/uploads/2009/12/Game-Cybertron-150x150.jpg" class="attachment-thumbnail" alt="" title="Game Cybertron" /></a>
<a href='http://www.tokyomuslim.com/2009/12/transformers-war-for-cybertron-for-ps3/game-megatron-2/' title='Game Megatron 2'><img width="150" height="150" src="http://www.tokyomuslim.com/wp-content/uploads/2009/12/Game-Megatron-2-150x150.jpg" class="attachment-thumbnail" alt="" title="Game Megatron 2" /></a>
<a href='http://www.tokyomuslim.com/2009/12/transformers-war-for-cybertron-for-ps3/game-optimus-prime-2/' title='Game Optimus Prime 2'><img width="150" height="150" src="http://www.tokyomuslim.com/wp-content/uploads/2009/12/Game-Optimus-Prime-2-150x150.jpg" class="attachment-thumbnail" alt="" title="Game Optimus Prime 2" /></a>

]]></content:encoded>
			<wfw:commentRss>http://www.tokyomuslim.com/2009/12/transformers-war-for-cybertron-for-ps3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Array_walk and the userdata variable.</title>
		<link>http://www.tokyomuslim.com/2009/12/array_walk-and-the-userdata-variable/</link>
		<comments>http://www.tokyomuslim.com/2009/12/array_walk-and-the-userdata-variable/#comments</comments>
		<pubDate>Wed, 09 Dec 2009 06:25:36 +0000</pubDate>
		<dc:creator>Jawaad</dc:creator>
				<category><![CDATA[Coding]]></category>

		<guid isPermaLink="false">http://www.tokyomuslim.com/?p=1419</guid>
		<description><![CDATA[I have a horrible issue with the userdata variable.  As it is defined, it does not accept something by reference, leaving me only capable of modifying the original array that I pass to it.
Previously you could have done this:
array_walk($owners, 'OwnerOutput::generate_owner_list', &#38;$output)

array_walk($owners, 'OwnerOutput::generate_owner_list', array(&#38;array_walk($owners, 'OwnerOutput::generate_owner_list', array(&#38;$output));

Unfortunately, this does not work anymore.  I understand that I can [...]]]></description>
			<content:encoded><![CDATA[<p>I have a horrible issue with the userdata variable.  As it is defined, it does not accept something by reference, leaving me only capable of modifying the original array that I pass to it.</p>
<p>Previously you could have done this:</p>
<pre>array_walk($owners, 'OwnerOutput::generate_owner_list', &amp;$output)</pre>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">
<pre>array_walk($owners, 'OwnerOutput::generate_owner_list', array(&amp;array_walk($owners, 'OwnerOutput::generate_owner_list', array(&amp;$output));</pre>
</div>
<div>Unfortunately, this does not work anymore.  I understand that I can simply modify owners if I wanted to, but I&#8217;d much rather keep the text output in $output and owners in $owners.</div>
<div></div>
<div>The solution to this is absurd, but it works:</div>
<div>
<pre>array_walk($owners, 'OwnerOutput::generate_owner_list', array(&amp;$output));</pre>
<div>You need to modify the generate_owner_list function, but otherwise this works and the output is all in the right place.</div>
</div>
<div></div>
<div></div>
]]></content:encoded>
			<wfw:commentRss>http://www.tokyomuslim.com/2009/12/array_walk-and-the-userdata-variable/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 0.799 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2010-03-12 04:56:07 -->
