<?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: Acropop</title>
	<atom:link href="http://spoken-for.org/archives/2005/02/23/811/feed/" rel="self" type="application/rss+xml" />
	<link>http://spoken-for.org/archives/2005/02/23/811/</link>
	<description>hmmm... what?</description>
	<lastBuildDate>Mon, 30 Jan 2012 02:01:14 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Val</title>
		<link>http://spoken-for.org/archives/2005/02/23/811/comment-page-1/#comment-4112</link>
		<dc:creator>Val</dc:creator>
		<pubDate>Thu, 24 Feb 2005 15:35:40 +0000</pubDate>
		<guid isPermaLink="false">http://spoken-for.org/archives/2005/02/23/811/#comment-4112</guid>
		<description>Yeah so far it only works for FireFox as I discovered later.  It doesn&#039;t work in Opera or IE either.  It&#039;s something having to do with the CSS, but I can&#039;t figure it out - I&#039;ve tried every method that I know of to hack it to get it to work, but so far, no dice.  &gt;:&#124;</description>
		<content:encoded><![CDATA[<p>Yeah so far it only works for FireFox as I discovered later.  It doesn&#8217;t work in Opera or IE either.  It&#8217;s something having to do with the CSS, but I can&#8217;t figure it out &#8211; I&#8217;ve tried every method that I know of to hack it to get it to work, but so far, no dice.  &gt;:|</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jawa</title>
		<link>http://spoken-for.org/archives/2005/02/23/811/comment-page-1/#comment-4108</link>
		<dc:creator>jawa</dc:creator>
		<pubDate>Thu, 24 Feb 2005 08:58:20 +0000</pubDate>
		<guid isPermaLink="false">http://spoken-for.org/archives/2005/02/23/811/#comment-4108</guid>
		<description>IT doesn&#039;t work for me. The roll over name image pop up..
</description>
		<content:encoded><![CDATA[<p>IT doesn&#8217;t work for me. The roll over name image pop up..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tuure</title>
		<link>http://spoken-for.org/archives/2005/02/23/811/comment-page-1/#comment-4100</link>
		<dc:creator>Tuure</dc:creator>
		<pubDate>Wed, 23 Feb 2005 19:04:53 +0000</pubDate>
		<guid isPermaLink="false">http://spoken-for.org/archives/2005/02/23/811/#comment-4100</guid>
		<description>Nifty thing! :D
*makes a mental note: remember to add the dash between &#039;spoken&#039; and &#039;for&#039; the next time...*</description>
		<content:encoded><![CDATA[<p>Nifty thing! :D<br />
*makes a mental note: remember to add the dash between &#8216;spoken&#8217; and &#8216;for&#8217; the next time&#8230;*</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: owen</title>
		<link>http://spoken-for.org/archives/2005/02/23/811/comment-page-1/#comment-4099</link>
		<dc:creator>owen</dc:creator>
		<pubDate>Wed, 23 Feb 2005 16:53:30 +0000</pubDate>
		<guid isPermaLink="false">http://spoken-for.org/archives/2005/02/23/811/#comment-4099</guid>
		<description>Oops.  That should be:

&lt;code&gt;$b[$key] = &quot;modified $item&quot;;&lt;/code&gt;

Duh.

I am so totally geeking out all over the place today.</description>
		<content:encoded><![CDATA[<p>Oops.  That should be:</p>
<p><code>$b[$key] = "modified $item";</code></p>
<p>Duh.</p>
<p>I am so totally geeking out all over the place today.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: owen</title>
		<link>http://spoken-for.org/archives/2005/02/23/811/comment-page-1/#comment-4098</link>
		<dc:creator>owen</dc:creator>
		<pubDate>Wed, 23 Feb 2005 16:51:21 +0000</pubDate>
		<guid isPermaLink="false">http://spoken-for.org/archives/2005/02/23/811/#comment-4098</guid>
		<description>What&#039;s funny is that I wrote the whole tutorial before I put down a line of code.  So I basically followed my own tutorial to create the pluigin.

array_map() is a pretty goofy function, but I find it very useful.  The &lt;a href=&quot;http://php.net/array_map&quot; rel=&quot;nofollow&quot;&gt;PHP documentation&lt;/a&gt; for it does a decent job of explaining it.  array_map() basically does the same thing as this:

&lt;code&gt;$a=array(&#039;one&#039;, &#039;two&#039;, &#039;three&#039;);
foreach($a as $key =&gt; $item) {
$b[$key] = &quot;modified $a&quot;;
}
return $b;&lt;/code&gt;

You send an array ($a) to array_map with the name of a function that will modify each array item, and you get back a new array with modified items ($b).</description>
		<content:encoded><![CDATA[<p>What&#8217;s funny is that I wrote the whole tutorial before I put down a line of code.  So I basically followed my own tutorial to create the pluigin.</p>
<p>array_map() is a pretty goofy function, but I find it very useful.  The <a href="http://php.net/array_map" rel="nofollow">PHP documentation</a> for it does a decent job of explaining it.  array_map() basically does the same thing as this:</p>
<p><code>$a=array('one', 'two', 'three');<br />
foreach($a as $key =&gt; $item) {<br />
$b[$key] = "modified $a";<br />
}<br />
return $b;</code></p>
<p>You send an array ($a) to array_map with the name of a function that will modify each array item, and you get back a new array with modified items ($b).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Val</title>
		<link>http://spoken-for.org/archives/2005/02/23/811/comment-page-1/#comment-4097</link>
		<dc:creator>Val</dc:creator>
		<pubDate>Wed, 23 Feb 2005 16:36:35 +0000</pubDate>
		<guid isPermaLink="false">http://spoken-for.org/archives/2005/02/23/811/#comment-4097</guid>
		<description>Ooooh cool, I will have to check tha tout.  :D
I understood most of the tutorial, although I got a little bit lost with that map thing.  Maybe if I went over it anothr time...</description>
		<content:encoded><![CDATA[<p>Ooooh cool, I will have to check tha tout.  :D<br />
I understood most of the tutorial, although I got a little bit lost with that map thing.  Maybe if I went over it anothr time&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>

