<?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: Turn your Nintendo DS into a Dictionary</title>
	<atom:link href="http://www.alutz.com/streetstatic/?feed=rss2&#038;p=16" rel="self" type="application/rss+xml" />
	<link>http://www.alutz.com/streetstatic/?p=16</link>
	<description>Bringing clarity to a fuzzy world</description>
	<lastBuildDate>Tue, 12 Jan 2010 22:50:39 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Street Static &#187; Blog Archive &#187; Dealing with comment spam</title>
		<link>http://www.alutz.com/streetstatic/?p=16&#038;cpage=1#comment-4985</link>
		<dc:creator>Street Static &#187; Blog Archive &#187; Dealing with comment spam</dc:creator>
		<pubDate>Sun, 05 Oct 2008 02:32:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.alutz.com/streetstatic/?p=16#comment-4985</guid>
		<description>[...] before I left for China this summer, I wrote an article about how to turn your Nintendo DS into a dictionary.  Well the post got picked up on Lifehacker, a productivity blog that&#8217;s entirely more [...]</description>
		<content:encoded><![CDATA[<p>[...] before I left for China this summer, I wrote an article about how to turn your Nintendo DS into a dictionary.  Well the post got picked up on Lifehacker, a productivity blog that&#8217;s entirely more [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: oby</title>
		<link>http://www.alutz.com/streetstatic/?p=16&#038;cpage=1#comment-753</link>
		<dc:creator>oby</dc:creator>
		<pubDate>Sat, 06 Sep 2008 05:08:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.alutz.com/streetstatic/?p=16#comment-753</guid>
		<description>i need help when i go in it said can not find any dictionary. i am chinese too. i need a eng one.</description>
		<content:encoded><![CDATA[<p>i need help when i go in it said can not find any dictionary. i am chinese too. i need a eng one.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peder</title>
		<link>http://www.alutz.com/streetstatic/?p=16&#038;cpage=1#comment-70</link>
		<dc:creator>Peder</dc:creator>
		<pubDate>Wed, 20 Aug 2008 22:00:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.alutz.com/streetstatic/?p=16#comment-70</guid>
		<description>Hmm... posting perlcode didnt work all that well... so here we go again:

for my $base (@ARGV) {
    $base =~ s/\.idx$//i;
    unless (open IDX, &quot;&lt;&quot;, &quot;$base.idx&quot;) {
	warn &quot;Couldn&#039;t open $base.idx: $!\n&quot;;
	next;
    }
    open AOI, &quot;&gt;&quot;, &quot;$base.aoi&quot;;
    open WRD, &quot;&gt;&quot;, &quot;$base.wrd&quot;;
    my $fpos = 0;
    my $data;
    while (read IDX, $data, 1) {
	if ($data eq &quot;\x00&quot;) {
	    print AOI pack &quot;N&quot;, $fpos;
	    print WRD &quot;\r\n&quot;;
	    read IDX, $data, 8;
	    $fpos = tell IDX;
	}
	else {
	    print WRD $data;
	}
    }
}</description>
		<content:encoded><![CDATA[<p>Hmm&#8230; posting perlcode didnt work all that well&#8230; so here we go again:</p>
<p>for my $base (@ARGV) {<br />
    $base =~ s/\.idx$//i;<br />
    unless (open IDX, &#8220;&lt;&#8221;, &#8220;$base.idx&#8221;) {<br />
	warn &#8220;Couldn&#8217;t open $base.idx: $!\n&#8221;;<br />
	next;<br />
    }<br />
    open AOI, &#8220;&gt;&#8221;, &#8220;$base.aoi&#8221;;<br />
    open WRD, &#8220;&gt;&#8221;, &#8220;$base.wrd&#8221;;<br />
    my $fpos = 0;<br />
    my $data;<br />
    while (read IDX, $data, 1) {<br />
	if ($data eq &#8220;\x00&#8243;) {<br />
	    print AOI pack &#8220;N&#8221;, $fpos;<br />
	    print WRD &#8220;\r\n&#8221;;<br />
	    read IDX, $data, 8;<br />
	    $fpos = tell IDX;<br />
	}<br />
	else {<br />
	    print WRD $data;<br />
	}<br />
    }<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peder</title>
		<link>http://www.alutz.com/streetstatic/?p=16&#038;cpage=1#comment-69</link>
		<dc:creator>Peder</dc:creator>
		<pubDate>Wed, 20 Aug 2008 21:53:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.alutz.com/streetstatic/?p=16#comment-69</guid>
		<description>Searched a bit and found some info, so I wrote a small perl-script for converting idx to aoi and wrd.  Guess it should work on any platform that has perl.  

for my $base (@ARGV) {
    $base =~ s/\.idx$//i;
    unless (open IDX, &quot;&quot;, &quot;$base.aoi&quot;;
    open WRD, &quot;&gt;&quot;, &quot;$base.wrd&quot;;
    my $fpos = 0;
    my $data;
    while (read IDX, $data, 1) {
	if ($data eq &quot;\x00&quot;) {
	    print AOI pack &quot;N&quot;, $fpos;
	    print WRD &quot;\r\n&quot;;
	    read IDX, $data, 8;
	    $fpos = tell IDX;
	}
	else {
	    print WRD $data;
	}
    }
}</description>
		<content:encoded><![CDATA[<p>Searched a bit and found some info, so I wrote a small perl-script for converting idx to aoi and wrd.  Guess it should work on any platform that has perl.  </p>
<p>for my $base (@ARGV) {<br />
    $base =~ s/\.idx$//i;<br />
    unless (open IDX, &#8220;&#8221;, &#8220;$base.aoi&#8221;;<br />
    open WRD, &#8220;&gt;&#8221;, &#8220;$base.wrd&#8221;;<br />
    my $fpos = 0;<br />
    my $data;<br />
    while (read IDX, $data, 1) {<br />
	if ($data eq &#8220;\x00&#8243;) {<br />
	    print AOI pack &#8220;N&#8221;, $fpos;<br />
	    print WRD &#8220;\r\n&#8221;;<br />
	    read IDX, $data, 8;<br />
	    $fpos = tell IDX;<br />
	}<br />
	else {<br />
	    print WRD $data;<br />
	}<br />
    }<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex</title>
		<link>http://www.alutz.com/streetstatic/?p=16&#038;cpage=1#comment-37</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Mon, 11 Aug 2008 12:37:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.alutz.com/streetstatic/?p=16#comment-37</guid>
		<description>:)</description>
		<content:encoded><![CDATA[<p> <img src='http://www.alutz.com/streetstatic/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joey</title>
		<link>http://www.alutz.com/streetstatic/?p=16&#038;cpage=1#comment-30</link>
		<dc:creator>Joey</dc:creator>
		<pubDate>Sat, 09 Aug 2008 16:52:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.alutz.com/streetstatic/?p=16#comment-30</guid>
		<description>Thank you so much for this tutorial. I tried very hard to find a spanish dictionary for my nds and I&#039;m so happy that I found this useful tip. I works like a charm!</description>
		<content:encoded><![CDATA[<p>Thank you so much for this tutorial. I tried very hard to find a spanish dictionary for my nds and I&#8217;m so happy that I found this useful tip. I works like a charm!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andy</title>
		<link>http://www.alutz.com/streetstatic/?p=16&#038;cpage=1#comment-29</link>
		<dc:creator>Andy</dc:creator>
		<pubDate>Tue, 05 Aug 2008 10:24:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.alutz.com/streetstatic/?p=16#comment-29</guid>
		<description>Sorry I haven&#039;t been able to get back to some of you.  I&#039;m currently out of the country, and away from my computer.  As soon as I have access to a decent computer, I&#039;ll try to help as best as possible.</description>
		<content:encoded><![CDATA[<p>Sorry I haven&#8217;t been able to get back to some of you.  I&#8217;m currently out of the country, and away from my computer.  As soon as I have access to a decent computer, I&#8217;ll try to help as best as possible.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: olivia</title>
		<link>http://www.alutz.com/streetstatic/?p=16&#038;cpage=1#comment-22</link>
		<dc:creator>olivia</dc:creator>
		<pubDate>Thu, 31 Jul 2008 14:04:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.alutz.com/streetstatic/?p=16#comment-22</guid>
		<description>to sad for me cause i aint got any boyfriend because i need 1 anyone said they need a girlfriend</description>
		<content:encoded><![CDATA[<p>to sad for me cause i aint got any boyfriend because i need 1 anyone said they need a girlfriend</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: olivia</title>
		<link>http://www.alutz.com/streetstatic/?p=16&#038;cpage=1#comment-21</link>
		<dc:creator>olivia</dc:creator>
		<pubDate>Thu, 31 Jul 2008 14:03:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.alutz.com/streetstatic/?p=16#comment-21</guid>
		<description>to sad for me cause i aint got any boyfriend</description>
		<content:encoded><![CDATA[<p>to sad for me cause i aint got any boyfriend</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: olivia</title>
		<link>http://www.alutz.com/streetstatic/?p=16&#038;cpage=1#comment-20</link>
		<dc:creator>olivia</dc:creator>
		<pubDate>Thu, 31 Jul 2008 14:01:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.alutz.com/streetstatic/?p=16#comment-20</guid>
		<description>i have absolutely no idea on how to do this so wow thats amazing who ever figures out how to do cutoes or brovo or CONGRATS</description>
		<content:encoded><![CDATA[<p>i have absolutely no idea on how to do this so wow thats amazing who ever figures out how to do cutoes or brovo or CONGRATS</p>
]]></content:encoded>
	</item>
</channel>
</rss>
