<?xml version="1.0" encoding="utf-8" ?>

<rss version="2.0" 
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:admin="http://webns.net/mvcb/"
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
   xmlns:wfw="http://wellformedweb.org/CommentAPI/"
   xmlns:content="http://purl.org/rss/1.0/modules/content/"
   >
<channel>
    <title>Serious Sam's Serious Thoughts</title>
    <link>http://www.serious-sam.net/serendipity/</link>
    <description>Random ramblings</description>
    <dc:language>en</dc:language>
    <generator>Serendipity 1.1.4 - http://www.s9y.org/</generator>
    <pubDate>Mon, 07 Jan 2008 04:26:27 GMT</pubDate>

    <image>
        <url>http://www.serious-sam.net/serendipity/templates/default/img/s9y_banner_small.png</url>
        <title>RSS: Serious Sam's Serious Thoughts - Random ramblings</title>
        <link>http://www.serious-sam.net/serendipity/</link>
        <width>100</width>
        <height>21</height>
    </image>

<item>
    <title>All About Python and Unicode</title>
    <link>http://www.serious-sam.net/serendipity/index.php?/archives/40-All-About-Python-and-Unicode.html</link>
    
    <comments>http://www.serious-sam.net/serendipity/index.php?/archives/40-All-About-Python-and-Unicode.html#comments</comments>
    <wfw:comment>http://www.serious-sam.net/serendipity/wfwcomment.php?cid=40</wfw:comment>

    <slash:comments>2</slash:comments>
    <wfw:commentRss>http://www.serious-sam.net/serendipity/rss.php?version=2.0&amp;type=comments&amp;cid=40</wfw:commentRss>
    

    <author>nospam@example.com (Misha)</author>
    <content:encoded>
    I got caught on a weird issue comparing two strings in Python:&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;bb-code-title&quot;&gt;CODE:&lt;/div&gt;&lt;div class=&quot;bb-code&quot;&gt;/home/misha/python/wav2mp3.py&amp;#58;45&amp;#58;&amp;#160;UnicodeWarning&amp;#58;&amp;#160;Unicode&amp;#160;equal&amp;#160;comparison&amp;#160;failed&lt;br /&gt;
&amp;#160;to&amp;#160;convert&amp;#160;both&amp;#160;arguments&amp;#160;to&amp;#160;Unicode&amp;#160;-&amp;#160;interpreting&amp;#160;them&amp;#160;as&amp;#160;being&amp;#160;unequal&lt;br /&gt;
&amp;#160;&amp;#160;if&amp;#160;candidate&amp;#160;==&amp;#160;outname.lower&amp;#40;&amp;#41;&amp;#58;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
I took a while before I could figure out what the problem was, but only after having a more or less thorough read through &lt;a href=&quot;http://boodebr.org/main/python/all-about-python-and-unicode&quot;  class=&quot;bb-url&quot;&gt;this site&lt;/a&gt;.  &lt;br /&gt;
&lt;blockquote&gt;Two weeks before I started writing this document, my knowledge of using Python and Unicode was about like this: All there is to using Unicode in Python is just passing your strings to unicode()...&lt;/blockquote&gt;&lt;br /&gt;
The &quot;weird issue&quot; was that the LHS in my comparison was a UTF string, while the RHS was a UTF-8 encoded string.  My lame print debugging statements did nothing to highlight the issue, as print was correctly interpreting both the encoded and un-encoded strings.  The repr() method proved quite useful in this case. 
    </content:encoded>

    <pubDate>Wed, 26 Dec 2007 01:10:18 +1100</pubDate>
    <guid isPermaLink="false">http://www.serious-sam.net/serendipity/index.php?/archives/40-guid.html</guid>
    
</item>
<item>
    <title>MinGW hanging on compilation</title>
    <link>http://www.serious-sam.net/serendipity/index.php?/archives/39-MinGW-hanging-on-compilation.html</link>
    
    <comments>http://www.serious-sam.net/serendipity/index.php?/archives/39-MinGW-hanging-on-compilation.html#comments</comments>
    <wfw:comment>http://www.serious-sam.net/serendipity/wfwcomment.php?cid=39</wfw:comment>

    <slash:comments>1</slash:comments>
    <wfw:commentRss>http://www.serious-sam.net/serendipity/rss.php?version=2.0&amp;type=comments&amp;cid=39</wfw:commentRss>
    

    <author>nospam@example.com (Misha)</author>
    <content:encoded>
    Recently, I&#039;ve had to install &lt;a href=&quot;http://www.mingw.org&quot;  class=&quot;bb-url&quot;&gt;MinGW&lt;/a&gt; and play around with it.  When building a project, the compiler seemed to hang after a couple of seconds, and I had to kill the process.  I could restart the build, but after a couple of seconds it would hang again.  Googling the problem yielded a surprising fix:&lt;br /&gt;
&lt;br /&gt;
From &lt;a href=&quot;http://lists-archives.org/mingw-users/03939-as-exe-hanging-intermittently-solved.html&quot;  class=&quot;bb-url&quot;&gt;http://lists-archives.org/mingw-users/03939-as-exe-hanging-intermittently-solved.html&lt;/a&gt;:&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;bb-code-title&quot;&gt;QUOTE:&lt;div class=&quot;bb-code&quot;&gt;When I compile programs - even trivial test programs - it usually works&lt;br /&gt;
fine, but some of the time gcc/g++ hang indefinitely. A bit of&lt;br /&gt;
investigation with Process Explorer revealed that the instance of as.exe&lt;br /&gt;
&lt;br /&gt;
exec&#039;d by gcc is always running when the hang occurs. `ps -aW&#039; also shows it, but interestingly it has a pid of 0, with only the winpid being non 0. Process Explorer suggests that `as.exe&#039; is not using any CPU time, nor is its memory allocation changing at all. I strongly suspect it&#039;s deadlocked somewhere. With more testing I found that the hang occurs whether as is run from gcc, or directly from the shell.&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;bb-code-title&quot;&gt;QUOTE:&lt;div class=&quot;bb-code&quot;&gt;Killing LVPrcSrv.exe does not cause hung as.exe processes to resume execution, but after it is killed new as.exe processes will not hang.&lt;/div&gt;&lt;/div&gt; 
    </content:encoded>

    <pubDate>Mon, 17 Dec 2007 11:08:40 +1100</pubDate>
    <guid isPermaLink="false">http://www.serious-sam.net/serendipity/index.php?/archives/39-guid.html</guid>
    
</item>
<item>
    <title>Cross-compiling pwsafe for ARM</title>
    <link>http://www.serious-sam.net/serendipity/index.php?/archives/37-Cross-compiling-pwsafe-for-ARM.html</link>
            <category>Development</category>
    
    <comments>http://www.serious-sam.net/serendipity/index.php?/archives/37-Cross-compiling-pwsafe-for-ARM.html#comments</comments>
    <wfw:comment>http://www.serious-sam.net/serendipity/wfwcomment.php?cid=37</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.serious-sam.net/serendipity/rss.php?version=2.0&amp;type=comments&amp;cid=37</wfw:commentRss>
    

    <author>nospam@example.com (Misha)</author>
    <content:encoded>
    I&#039;ve spent a good part of this weekend playing around with my shiny new Sharp Zaurus SL-C3200.  I&#039;m not going to give it any more of an introduction, because it would be impossible to top what &lt;a href=&quot;http://www.users.on.net/~hluc/myZaurus/custom.html&quot;  class=&quot;bb-url&quot;&gt;this guy has written&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
Instead, what I&#039;m going to focus on is cross-compiling one of the apps I consider quite useful -- &lt;a href=&quot;http://nsd.dyndns.org/pwsafe&quot;  class=&quot;bb-url&quot;&gt;pwsafe&lt;/a&gt;.  Pwsafe is a password manager (originally for Windows) which has clones for Linux, which is great for me, since I use Windows at work, and Linux at home.  It stores passwords in an encrypted database which you can take with you wherever you go.&lt;br /&gt;
&lt;br /&gt;
So, to put this thing onto a Zaurus, you need a couple of things to start with:&lt;br /&gt;
&lt;br /&gt;
&lt;ul class=&quot;bb-list-unordered&quot;&gt;&lt;li class=&quot;bb-listitem&quot;&gt; Embedix SDK (&lt;a href=&quot;http://qtopia.net/sdk/Embedix-sdk.tgz&quot;  class=&quot;bb-url&quot;&gt;Embedix-sdk.tgz&lt;/a&gt;) for cross-compiler, libraries, etc.&lt;br /&gt;
&lt;/li&gt;&lt;br /&gt;
&lt;li class=&quot;bb-listitem&quot;&gt; OpenSSL source (&lt;a href=&quot;http://www.openssl.org/source/openssl-0.9.7d.tar.gz&quot;  class=&quot;bb-url&quot;&gt;openssl-0.9.7d.tar.gz&lt;/a&gt;) -- libssl and libcrypto are pre-requisites for pwsafe.  Get 0.9.7 because that still has configure targets for ARM (newer versions seem not to have this).&lt;br /&gt;
&lt;/li&gt;&lt;br /&gt;
&lt;li class=&quot;bb-listitem&quot;&gt; Pwsafe source (&lt;a href=&quot;http://nsd.dyndns.org/pwsafe/releases/pwsafe-0.2.0.tar.gz&quot;  class=&quot;bb-url&quot;&gt;pwsafe-2.0.0&lt;/a&gt;)&lt;br /&gt;
&lt;/li&gt;&lt;br /&gt;
&lt;li class=&quot;bb-listitem&quot;&gt; Standard Linux build tools (autoconf, make, etc).&lt;br /&gt;
&lt;/li&gt;&lt;br /&gt;
&lt;/ul&gt;Build and install the Embedix SDK.  By default, it will go into /opt/QtPalmtop.&lt;br /&gt;
&lt;br /&gt;
Now, you will need to build and install OpenSSL.  I used &lt;a href=&quot;http://doc.readmen.com/14/150334.shtml&quot;  class=&quot;bb-url&quot;&gt;these instructions&lt;/a&gt; to guide me.  I couldn&#039;t really follow them to the letter, though -- something seems fishy with their patch file.&lt;br /&gt;
&lt;br /&gt;
Anyway, configure the library for ARM, specifying the preferred install directory.  Use the ARM cross-compiler:&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;bb-code-title&quot;&gt;CODE:&lt;/div&gt;&lt;div class=&quot;bb-code&quot;&gt;export&amp;#160;PATH=/opt/Embedix/tools/arm-linux/bin&amp;#58;$PATH&lt;br /&gt;
./Configure&amp;#160;linux-elf-arm&amp;#160;--prefix=/home/misha/zaurus/arm&lt;/div&gt;&lt;br /&gt;
You&#039;ll need to hand edit the Makefile (or, if you&#039;re feeling lucky, try and patch it).  All I had to change was add -ldl to the list of libraries to use.&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;bb-code-title&quot;&gt;CODE:&lt;/div&gt;&lt;div class=&quot;bb-code&quot;&gt;EX_LIBS=&amp;#160;-ldl&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
All should be good to make and install the OpenSLL library now.&lt;br /&gt;
&lt;br /&gt;
Now, it&#039;s time for pwsafe.&lt;br /&gt;
&lt;br /&gt;
&lt;ul class=&quot;bb-list-unordered&quot;&gt;&lt;li class=&quot;bb-listitem&quot;&gt; Open acinclude.m4 and surround &lt;span style=&quot;font-weight:bold&quot;&gt;jm_CHECK_TYPE_STRUCT_UTIMBUF&lt;/span&gt; with the M4 quotation marks (`[&#039; and `]&#039;).  My aclocal bitched about this and led to a malformed makefile being generated at the end.&lt;br /&gt;
&lt;/li&gt;&lt;br /&gt;
&lt;li class=&quot;bb-listitem&quot;&gt; Open configure.ac and replace &lt;span style=&quot;font-weight:bold&quot;&gt;AM_SYS_POSIX_TERMIOS&lt;/span&gt; (apparently, this is &lt;a href=&quot;http://sourceware.org/automake/automake.html&quot;  class=&quot;bb-url&quot;&gt;obsolete&lt;/a&gt;) with &lt;span style=&quot;font-weight:bold&quot;&gt;AC_SYS_POSIX_TERMIOS&lt;/span&gt;.  Without this, the configure script had problems with detecting some glibc stuff for me.&lt;br /&gt;
&lt;/li&gt;&lt;br /&gt;
&lt;li class=&quot;bb-listitem&quot;&gt; Configure&lt;br /&gt;
&lt;/li&gt;&lt;br /&gt;
&lt;/ul&gt;&lt;div class=&quot;bb-code-title&quot;&gt;CODE:&lt;/div&gt;&lt;div class=&quot;bb-code&quot;&gt;CXXFLAGS=-fpermissive&amp;#160;./configure&amp;#160;--host=arm&amp;#160;\&lt;br /&gt;
--with-openssl-dir=/home/misha/src/zaurus/openssl-0.9.7d/dist&amp;#160;--with-readline=no&amp;#160;--with-x=no&lt;/div&gt;&lt;br /&gt;
&lt;ul class=&quot;bb-list-unordered&quot;&gt;&lt;li class=&quot;bb-listitem&quot;&gt; You need -fpermissive because otherwise the compiler bitches&lt;br /&gt;
&lt;/li&gt;&lt;br /&gt;
&lt;li class=&quot;bb-listitem&quot;&gt; You need --with-readline=no if you&#039;re like me and can&#039;t be bothered building readline&lt;br /&gt;
&lt;/li&gt;&lt;br /&gt;
&lt;li class=&quot;bb-listitem&quot;&gt; You need --with-x=no if you&#039;re building this for QTopia, which doesn&#039;t have an X server&lt;br /&gt;
&lt;/li&gt;&lt;br /&gt;
&lt;/ul&gt;&lt;br /&gt;
At this point, all you have left to do is make and deploy to the Zaurus.  Libs (libssl and libcrypto) go in /opt/QtPalmtop/lib and the binary (pwsafe) goes into /opt/QtPalmtop/bin.&lt;br /&gt;
&lt;br /&gt;
I&#039;ll wrap this up in an ipk a bit later to make deployment easier. 
    </content:encoded>

    <pubDate>Sat, 27 Oct 2007 22:12:33 +1000</pubDate>
    <guid isPermaLink="false">http://www.serious-sam.net/serendipity/index.php?/archives/37-guid.html</guid>
    
</item>
<item>
    <title>New Japanese dictionary for ZBEDICT</title>
    <link>http://www.serious-sam.net/serendipity/index.php?/archives/36-New-Japanese-dictionary-for-ZBEDICT.html</link>
            <category>Announcements</category>
    
    <comments>http://www.serious-sam.net/serendipity/index.php?/archives/36-New-Japanese-dictionary-for-ZBEDICT.html#comments</comments>
    <wfw:comment>http://www.serious-sam.net/serendipity/wfwcomment.php?cid=36</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.serious-sam.net/serendipity/rss.php?version=2.0&amp;type=comments&amp;cid=36</wfw:commentRss>
    

    <author>nospam@example.com (Misha)</author>
    <content:encoded>
    Check it out &lt;a href=&quot;http://serious-sam.net/stuff.php&quot;  class=&quot;bb-url&quot;&gt;here&lt;/a&gt;.  It&#039;s always so hard to resist writing code... 
    </content:encoded>

    <pubDate>Thu, 18 Oct 2007 00:06:05 +1000</pubDate>
    <guid isPermaLink="false">http://www.serious-sam.net/serendipity/index.php?/archives/36-guid.html</guid>
    
</item>
<item>
    <title>PAdict and Palm T|X</title>
    <link>http://www.serious-sam.net/serendipity/index.php?/archives/35-PAdict-and-Palm-TX.html</link>
            <category>Random Stuff</category>
    
    <comments>http://www.serious-sam.net/serendipity/index.php?/archives/35-PAdict-and-Palm-TX.html#comments</comments>
    <wfw:comment>http://www.serious-sam.net/serendipity/wfwcomment.php?cid=35</wfw:comment>

    <slash:comments>2</slash:comments>
    <wfw:commentRss>http://www.serious-sam.net/serendipity/rss.php?version=2.0&amp;type=comments&amp;cid=35</wfw:commentRss>
    

    <author>nospam@example.com (Misha)</author>
    <content:encoded>
    I&#039;ve recently forked out some cash and bought myself a new Palm T|X to replace my aging second-hand Tungsten E.  It finally arrived on Friday.  Everything was good until on Saturday morning, I tried starting up &lt;a href=&quot;http://padict.sourceforge.net&quot;  class=&quot;bb-url&quot;&gt;PAdict&lt;/a&gt; and got the error message -- &quot;The last PAdict session was not terminated properly.&quot;  I was a little bit surprised, but hey, this happened a few times on my old Tungsten E, so I wasn&#039;t too alarmed and pressed the OK button to proceed.  I went through a moment of silent shock when instead of starting PAdict as normal, the Palm just rebooted.  Trying to start PAdict again yielded the same results.&lt;br /&gt;
&lt;br /&gt;
Googling didn&#039;t come up with all too much, with the exception of one user complaining about the &lt;a href=&quot;http://forum.brighthand.com/showthread.php?t=100746&amp;page=12&quot;  class=&quot;bb-url&quot;&gt;same problem&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;bb-code-title&quot;&gt;QUOTE:&lt;div class=&quot;bb-code&quot;&gt;Even PAdict sometimes goes down (that&#039;s especially ugly, since its crashes require full reinstallation of the app, although the authors can&#039;t understand why).&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
This pissed me off -- PAdict is the main reason why I use a Palm in the first place.  It&#039;s a great Japanese dictionary, and, what&#039;s better, it allows Kanji-illiterate people like me to get by with it&#039;s Kanji recognition feature.  It&#039;s awesome.&lt;br /&gt;
&lt;br /&gt;
Things were looking rather grim.  I wasn&#039;t particuarly in the mood for reinstalling PAdict everytime it has a crash.  I didn&#039;t particularly feel like going back to using the Tungsten E after splurging all this money on a T|X.  So off I went, looking through the PAdict bug database to see if this has been addressed or at least reported.&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://sourceforge.net/tracker/index.php?func=detail&amp;aid=1653666&amp;group_id=45384&amp;atid=442730&quot;  class=&quot;bb-url&quot;&gt;This bug report&lt;/a&gt; saved my Saturday.  To start off with, it&#039;s the sort of bug report any developer dreams of.  And while it was reported on a Treo, it was a similar issue.&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;bb-code-title&quot;&gt;QUOTE:&lt;div class=&quot;bb-code&quot;&gt;... you should be able to fix the problem by deleting the &quot;KJPADScratchPadDB&quot; database using a tool like FileZ.&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
I happened to have my Palm plugged in to my Linux desktop while I was reading that, and decided to give the work-around a go using &lt;a href=&quot;http://pilot-link.org&quot;  class=&quot;bb-url&quot;&gt;pilot-link&lt;/a&gt;:&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;bb-code-title&quot;&gt;QUOTE:&lt;div class=&quot;bb-code&quot;&gt;pilot-xfer -p /dev/pilot --delete KJPADScratchPadDB&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
It worked like a charm...  PAdict works again.  I ended up installing &lt;a href=&quot;http://software.palminfocenter.com/product.asp?id=6011&quot;  class=&quot;bb-url&quot;&gt;FileZ&lt;/a&gt; as well, for cases when PAdict tanks while I&#039;m on the road. 
    </content:encoded>

    <pubDate>Sat, 29 Sep 2007 16:46:35 +1000</pubDate>
    <guid isPermaLink="false">http://www.serious-sam.net/serendipity/index.php?/archives/35-guid.html</guid>
    
</item>
<item>
    <title>Kuril Islands Dispute on MSN Encarta</title>
    <link>http://www.serious-sam.net/serendipity/index.php?/archives/34-Kuril-Islands-Dispute-on-MSN-Encarta.html</link>
            <category>Japan</category>
    
    <comments>http://www.serious-sam.net/serendipity/index.php?/archives/34-Kuril-Islands-Dispute-on-MSN-Encarta.html#comments</comments>
    <wfw:comment>http://www.serious-sam.net/serendipity/wfwcomment.php?cid=34</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.serious-sam.net/serendipity/rss.php?version=2.0&amp;type=comments&amp;cid=34</wfw:commentRss>
    

    <author>nospam@example.com (Misha)</author>
    <content:encoded>
    Recently, I&#039;ve resumed spending some of my time researching the &lt;a href=&quot;http://en.wikipedia.org/wiki/Kuril_Islands_dispute&quot;  class=&quot;bb-url&quot;&gt;Kuril Islands Dispute&lt;/a&gt;. I&#039;ve come across the following article from &lt;a href=&quot;http://encarta.msn.com/encyclopedia_761566658/Kuril_Islands.html&quot;  class=&quot;bb-url&quot;&gt;MSN Encarta&lt;/a&gt;:&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;bb-code-title&quot;&gt;QUOTE:&lt;div class=&quot;bb-code&quot;&gt;Kuril Islands (Japanese Chishima-rett&amp;#333;, Russian Kuril&#039;skiye Ostrova, from the word kurit, &quot;to smoke&quot;)&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
Smokin...  great to know that they are getting their information from a quality source.  I&#039;m surprised no-one over there had the initiative to look up the Kuriles on &lt;a href=&quot;http://en.wikipedia.org/wiki/Kuril_Islands&quot;  class=&quot;bb-url&quot;&gt;Wikipedia&lt;/a&gt; to see the real origins of the name. 
    </content:encoded>

    <pubDate>Thu, 27 Sep 2007 13:19:47 +1000</pubDate>
    <guid isPermaLink="false">http://www.serious-sam.net/serendipity/index.php?/archives/34-guid.html</guid>
    
</item>
<item>
    <title>Polonez (Полонез -- Чиж и Ко)</title>
    <link>http://www.serious-sam.net/serendipity/index.php?/archives/33-Polonez.html</link>
            <category>Announcements</category>
    
    <comments>http://www.serious-sam.net/serendipity/index.php?/archives/33-Polonez.html#comments</comments>
    <wfw:comment>http://www.serious-sam.net/serendipity/wfwcomment.php?cid=33</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.serious-sam.net/serendipity/rss.php?version=2.0&amp;type=comments&amp;cid=33</wfw:commentRss>
    

    <author>nospam@example.com (Misha)</author>
    <content:encoded>
    My first attempt to record this was foiled by the premature arrival of the pizza dude.  There was no stopping me this time (even mixing up the lyrics didn&#039;t stop me).  Check it out &lt;a href=&quot;http://youtube.com/watch?v=zHIREORxlo0&quot;  class=&quot;bb-url&quot;&gt;here&lt;/a&gt;. 
    </content:encoded>

    <pubDate>Wed, 26 Sep 2007 20:01:03 +1000</pubDate>
    <guid isPermaLink="false">http://www.serious-sam.net/serendipity/index.php?/archives/33-guid.html</guid>
    
</item>
<item>
    <title>Programming can ruin your life</title>
    <link>http://www.serious-sam.net/serendipity/index.php?/archives/32-Programming-can-ruin-your-life.html</link>
            <category>Development</category>
    
    <comments>http://www.serious-sam.net/serendipity/index.php?/archives/32-Programming-can-ruin-your-life.html#comments</comments>
    <wfw:comment>http://www.serious-sam.net/serendipity/wfwcomment.php?cid=32</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.serious-sam.net/serendipity/rss.php?version=2.0&amp;type=comments&amp;cid=32</wfw:commentRss>
    

    <author>nospam@example.com (Misha)</author>
    <content:encoded>
    A colleague at work sent this &lt;a href=&quot;http://www.devizen.com/blog/2007/09/11/ruin/&quot;  class=&quot;bb-url&quot;&gt;this link&lt;/a&gt; around.  I must admit, I felt a slight shock while reading it.  &quot;Wow, this is kind what is happening to me,&quot; I thought.  At the same time, I entertained brief thoughts of relief...  &quot;Whew, at least I&#039;m not a complete geek&quot;.  At times like this I generally seek salvation in sports, or hobbies that have as little to do with programming as possible.&lt;br /&gt;
&lt;br /&gt;
I remember second year uni, where in a desperate attempt to not burn out in computing I took Japanese as an elective.  It helped, and I made it through second year and managed to eventually graduate, but I can&#039;t help thinking that learning a foreign language isn&#039;t completely unrelated to programming...  Now that I think about it, the majority of the things I do are in someway programming related.  And even if they are not, I find myself taking a programmer&#039;s approach to them.  While it works, and I tend to achieve most of the goals that I set, it&#039;s kind of concerning to acknowledge that my choice of profession has resulted in a mind-altering experience.&lt;br /&gt;
&lt;br /&gt;
Then again, if I think back to my days as a gamer back in high school, I distinctly recall a brief period of time where I was obsessed with completing a stage of a game in the most perfect way I could find.  If I screwed up, then I re-loaded from a &quot;perfect&quot; save-point and tried again.  I do remember acknowledging to myself that in a way it was ridiculous, it didn&#039;t really matter that much, cause I was having fun.  I find some consolation in that those those days were years before I even thought about programming -- so, in a way, it could be that my behavioral pattern matched my career choice, as opposed to my career choice altering my behavioural patterns...&lt;br /&gt;
&lt;br /&gt;
If that is so, then the title of the above-mentioned article doesn&#039;t really apply to me, because in essence my life was &quot;ruined&quot; well before programming managed to get it&#039;s claws on it &lt;img src=&quot;http://www.serious-sam.net/serendipity/templates/default/img/emoticons/smile.png&quot; alt=&quot;:-)&quot; style=&quot;display: inline; vertical-align: bottom;&quot; class=&quot;emoticon&quot; /&gt;.&lt;br /&gt;
&lt;br /&gt;
As I&#039;m writing about this, I&#039;m chatting with my father, who has also been blessed with the experience of treating programming as a profession.  &quot;That&#039;s like saying that life leads you to death,&quot; was his opinion of the article.  While I agree, it was an interesting and thought provoking read.&lt;br /&gt;
 
    </content:encoded>

    <pubDate>Thu, 13 Sep 2007 22:05:29 +1000</pubDate>
    <guid isPermaLink="false">http://www.serious-sam.net/serendipity/index.php?/archives/32-guid.html</guid>
    
</item>
<item>
    <title>Notes of a Japanese POW</title>
    <link>http://www.serious-sam.net/serendipity/index.php?/archives/31-Notes-of-a-Japanese-POW.html</link>
            <category>Random Stuff</category>
    
    <comments>http://www.serious-sam.net/serendipity/index.php?/archives/31-Notes-of-a-Japanese-POW.html#comments</comments>
    <wfw:comment>http://www.serious-sam.net/serendipity/wfwcomment.php?cid=31</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.serious-sam.net/serendipity/rss.php?version=2.0&amp;type=comments&amp;cid=31</wfw:commentRss>
    

    <author>nospam@example.com (Misha)</author>
    <content:encoded>
    In my leisurely nightly wanderings across the web, I&#039;ve come across a surprisingly &lt;a href=&quot;http://kiuchi.jpn.org/en/nobindex.htm&quot;  class=&quot;bb-url&quot;&gt;moving site&lt;/a&gt;.  It is told, mostly in pictures, from the eyes of a Japanese POW and details his captivity in the USSR after WW2.  Although it is related to war, it sends a message of peace.  I&#039;d recommend anyone have a look at it. 
    </content:encoded>

    <pubDate>Thu, 13 Sep 2007 21:36:41 +1000</pubDate>
    <guid isPermaLink="false">http://www.serious-sam.net/serendipity/index.php?/archives/31-guid.html</guid>
    
</item>
<item>
    <title>Recordings on YouTube</title>
    <link>http://www.serious-sam.net/serendipity/index.php?/archives/30-Recordings-on-YouTube.html</link>
            <category>Announcements</category>
    
    <comments>http://www.serious-sam.net/serendipity/index.php?/archives/30-Recordings-on-YouTube.html#comments</comments>
    <wfw:comment>http://www.serious-sam.net/serendipity/wfwcomment.php?cid=30</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.serious-sam.net/serendipity/rss.php?version=2.0&amp;type=comments&amp;cid=30</wfw:commentRss>
    

    <author>nospam@example.com (Misha)</author>
    <content:encoded>
    Well, this was bound to happen eventually.  One of my mates, Roman and I recorded some music and put it up on YouTube for the whole world to see.  You can check it out &lt;a href=&quot;http://www.youtube.com/profile_videos?user=serioussam1983&quot;  class=&quot;bb-url&quot;&gt;here&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
Haven&#039;t received any hate mail yet... 
    </content:encoded>

    <pubDate>Thu, 06 Sep 2007 18:00:46 +1000</pubDate>
    <guid isPermaLink="false">http://www.serious-sam.net/serendipity/index.php?/archives/30-guid.html</guid>
    
</item>
<item>
    <title> Bug in System.Uri constructor?</title>
    <link>http://www.serious-sam.net/serendipity/index.php?/archives/29-Bug-in-System.Uri-constructor.html</link>
            <category>Development</category>
    
    <comments>http://www.serious-sam.net/serendipity/index.php?/archives/29-Bug-in-System.Uri-constructor.html#comments</comments>
    <wfw:comment>http://www.serious-sam.net/serendipity/wfwcomment.php?cid=29</wfw:comment>

    <slash:comments>1</slash:comments>
    <wfw:commentRss>http://www.serious-sam.net/serendipity/rss.php?version=2.0&amp;type=comments&amp;cid=29</wfw:commentRss>
    

    <author>nospam@example.com (Misha)</author>
    <content:encoded>
    I&#039;m using the System.Uri class to clean up some the URLs we&#039;re passing around, e.g. compacting http://hostname//somefolder//somefile to http://hostname/somefolder/somefile.&lt;br /&gt;
&lt;br /&gt;
  The documentation clearly states that the Uri constructor takes care of this:  &lt;a href=&quot;http://msdn2.microsoft.com/en-us/library/system.uri.aspx&quot;  class=&quot;bb-url&quot;&gt;MSDN&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
  This works fine on my machine.  However, when I try this on our server box (Win 2003), I just get back the string I passed to the constructor.&lt;br /&gt;
&lt;br /&gt;
  I&#039;ve checked the .NET versions and the assembly versions on both the target machine and my workstation.  They match.&lt;br /&gt;
&lt;br /&gt;
  Here&#039;s the code:&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;bb-code-title&quot;&gt;CODE:&lt;/div&gt;&lt;div class=&quot;bb-code&quot;&gt;using&amp;#160;System;&lt;br /&gt;
&lt;br /&gt;
namespace&amp;#160;sandpit&lt;br /&gt;
{&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;class&amp;#160;Program&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;{&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;public&amp;#160;static&amp;#160;void&amp;#160;Main&amp;#40;string&amp;#91;&amp;#93;&amp;#160;args&amp;#41;&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;{&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;Type&amp;#160;type&amp;#160;=&amp;#160;typeof&amp;#40;Uri&amp;#41;;&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;Console.WriteLine&amp;#40;type.ToString&amp;#40;&amp;#41;&amp;#41;;&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;Console.WriteLine&amp;#40;type.Assembly&amp;#41;;&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;Console.WriteLine&amp;#40;type.AssemblyQualifiedName&amp;#41;;&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;Console.WriteLine&amp;#40;type.UnderlyingSystemType&amp;#41;;&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;Uri&amp;#160;uri&amp;#160;=&amp;#160;new&amp;#160;Uri&amp;#40;args.Length&amp;#160;==&amp;#160;0&amp;#160;?&amp;#160;&quot;http&amp;#58;//hostname///&lt;br /&gt;
somefile.txt&quot;&amp;#160;&amp;#58;&amp;#160;args&amp;#91;0&amp;#93;&amp;#41;;&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;Console.WriteLine&amp;#40;uri.ToString&amp;#40;&amp;#41;&amp;#41;;&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;}&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;}&lt;br /&gt;
&lt;br /&gt;
}&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
I&#039;ve posted this on &lt;a href=&quot;http://groups.google.com.au/group/microsoft.public.dotnet.framework/browse_thread/thread/b8a6b9ed3b530309/066e3c9c22f44481?hl=en#066e3c9c22f44481&quot;  class=&quot;bb-url&quot;&gt;Google Groups&lt;/a&gt; but so far, to no avail. 
    </content:encoded>

    <pubDate>Tue, 04 Sep 2007 14:09:28 +1000</pubDate>
    <guid isPermaLink="false">http://www.serious-sam.net/serendipity/index.php?/archives/29-guid.html</guid>
    
</item>
<item>
    <title>The operation is not valid due to the current state of the object</title>
    <link>http://www.serious-sam.net/serendipity/index.php?/archives/28-The-operation-is-not-valid-due-to-the-current-state-of-the-object.html</link>
            <category>Development</category>
    
    <comments>http://www.serious-sam.net/serendipity/index.php?/archives/28-The-operation-is-not-valid-due-to-the-current-state-of-the-object.html#comments</comments>
    <wfw:comment>http://www.serious-sam.net/serendipity/wfwcomment.php?cid=28</wfw:comment>

    <slash:comments>2</slash:comments>
    <wfw:commentRss>http://www.serious-sam.net/serendipity/rss.php?version=2.0&amp;type=comments&amp;cid=28</wfw:commentRss>
    

    <author>nospam@example.com (Misha)</author>
    <content:encoded>
    I&#039;ve recently become re-united with an old friend -- that&#039;s right, I&#039;m back to working with SharePoint.  Since this time I&#039;m armed with a little bit more time and resources, I&#039;m hoping it will be less painful than it was last time.&lt;br /&gt;
&lt;br /&gt;
The first major snag I&#039;ve hit so far is the issue of how to deploy custom web services on the SharePoint server.  The docs from the SDK recommend the approach of adding the web service to SharePoint so that it can be accessed from _vti_bin/servicename.asmx.  From my relatively inexperienced point of view, this is good for a number of reasons, the main one being that the custom web service runs as part of SharePoint, and things like permissions, privileges and access control seem to be handled for you.  Great.&lt;br /&gt;
&lt;br /&gt;
There&#039;s a catch though.  The main one is that you need to dump the WS assembly into the server&#039;s GAC.  There are other pains in getting the disco and wsdl files set up for your custom WS, but the SDK walks you through those.&lt;br /&gt;
&lt;br /&gt;
An alternative to the recommended approach is to deploy your custom web service to an IIS web site separate from SharePoint (obviously, this is still on the SharePoint server).   This seems to opens up a whole new can of worms with privileges.  The fun begins.&lt;br /&gt;
&lt;br /&gt;
The problem I ran into was an &quot;The operation is not valid due to the current state of the object&quot; exception being thrown when adding files or updating items.  Google saved the day rather quickly -- &lt;a href=&quot;http://howtocode.blogspot.com/2007_06_01_archive.html&quot;  class=&quot;bb-url&quot;&gt;http://howtocode.blogspot.com/2007_06_01_archive.html&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;bb-code-title&quot;&gt;QUOTE:&lt;div class=&quot;bb-code&quot;&gt;You must not call the SPListItem.Update inside the RunWithElevatedPrivileges block. Instead you should only instantiate the SPSite or SPWeb there and call Update afterwards...&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
The strange thing is that this seemed to work last year, when I was bashing my head against the WSS Beta TR2.  I guess things change...&lt;br /&gt;
&lt;br /&gt;
 
    </content:encoded>

    <pubDate>Thu, 16 Aug 2007 17:39:16 +1000</pubDate>
    <guid isPermaLink="false">http://www.serious-sam.net/serendipity/index.php?/archives/28-guid.html</guid>
    
</item>
<item>
    <title>Motobook</title>
    <link>http://www.serious-sam.net/serendipity/index.php?/archives/27-Motobook.html</link>
            <category>Development</category>
    
    <comments>http://www.serious-sam.net/serendipity/index.php?/archives/27-Motobook.html#comments</comments>
    <wfw:comment>http://www.serious-sam.net/serendipity/wfwcomment.php?cid=27</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.serious-sam.net/serendipity/rss.php?version=2.0&amp;type=comments&amp;cid=27</wfw:commentRss>
    

    <author>nospam@example.com (Misha)</author>
    <content:encoded>
    I&#039;ve finally uploaded a small app I&#039;ve been writing in my spare time -- &lt;a href=&quot;http://serious-sam.net/stuff.php&quot;  class=&quot;bb-url&quot;&gt;get it here&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;bb-code-title&quot;&gt;QUOTE:&lt;div class=&quot;bb-code&quot;&gt;This is a command-line utility that can be used to backup and restore the phonebook on a Motorola phone. I was motivated to write it as I couldn&#039;t find a way to backup my phonebook without booting into Windows. I use it with my RAZR V3, and haven&#039;t tested it with any other model, so your mileage may vary. &lt;/div&gt;&lt;/div&gt; 
    </content:encoded>

    <pubDate>Wed, 18 Jul 2007 22:23:48 +1000</pubDate>
    <guid isPermaLink="false">http://www.serious-sam.net/serendipity/index.php?/archives/27-guid.html</guid>
    
</item>
<item>
    <title>Motorola stuff on Linux</title>
    <link>http://www.serious-sam.net/serendipity/index.php?/archives/26-Motorola-stuff-on-Linux.html</link>
    
    <comments>http://www.serious-sam.net/serendipity/index.php?/archives/26-Motorola-stuff-on-Linux.html#comments</comments>
    <wfw:comment>http://www.serious-sam.net/serendipity/wfwcomment.php?cid=26</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.serious-sam.net/serendipity/rss.php?version=2.0&amp;type=comments&amp;cid=26</wfw:commentRss>
    

    <author>nospam@example.com (Misha)</author>
    <content:encoded>
    I&#039;ve owned my trust Motorola RAZR V3 for a while now, and have gotten used to many of its&#039; shortcomings (the sluggish GUI is my biggest gripe).  One thing I&#039;ve always been putting off is connecting it to my Linux desktop at home.  Finally, yesterday I mustered the courage to go out and confront this momentuous task.&lt;br /&gt;
&lt;br /&gt;
To be honest, I was rather dissapointed.  Everything is so much easier than I expected...  Uploading and downloading of files is handled by the moto4lin application.  I use FC6, so I was able to get it just by using:&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;bb-code-title&quot;&gt;CODE:&lt;/div&gt;&lt;div class=&quot;bb-code&quot;&gt;sudo&amp;#160;yum&amp;#160;-y&amp;#160;install&amp;#160;moto4lin&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
If that doesn&#039;t do the trick for you, then &lt;a href=&quot;http://google.com&quot;  class=&quot;bb-url&quot;&gt;Google&lt;/a&gt; is your friend.&lt;br /&gt;
&lt;br /&gt;
I was able to download photos and other crap from my phone in minutes.&lt;br /&gt;
&lt;br /&gt;
Excited at the prospect of writing my own apps for the RAZR, I also went to the &lt;a href=&quot;http://developer.motorola.com&quot;  class=&quot;bb-url&quot;&gt;Motorola dev site&lt;/a&gt; and signed up to use their SDK.  Unfortunately, the SDK comes packaged as a Windows executable -- interestingly, they don&#039;t supply a Linux version of the SDK even for their Linux-based phones.  Go figure.&lt;br /&gt;
&lt;br /&gt;
Oh well, it was time for &lt;a href=&quot;http://wine.org&quot;  class=&quot;bb-url&quot;&gt;Wine&lt;/a&gt; to save the day once again.  The SDK installer nagged about me needing Java SDK and JRE installed and ran away the first time I ran it.  Tried installing Java 5 SDK -- the install looked a little shaky, but completed till the end -- unfortunately, the Moto SDK installer still bitched about me not having an installed JRE.  I fired up regedit -- there were JRE entries in sight.  In desperation, I tried installing Java SDK 1.4.2 -- the install bombed halfway through but left me with the required registry entries.  I promptly used Wine to  install the SDK and get at the goodies inside.&lt;br /&gt;
&lt;br /&gt;
The SDK contained pretty much everything I expected -- more or less abundant documentation, plenty of samples.  There are emulators there, too, but they don&#039;t seem to run very well under Wine.  The executables fail to start with an error code of c0000135.  I haven&#039;t looked into this error code, but there seem to be a couple of hits from Google on it.  I&#039;ll follow it up later.&lt;br /&gt;
&lt;br /&gt;
The first thing I really wanted to do was to chuck a sample app onto the RAZR.  There are generally two ways of doing that:&lt;br /&gt;
&lt;ul class=&quot;bb-list-unordered&quot;&gt;&lt;li class=&quot;bb-listitem&quot;&gt; USB transfer&lt;br /&gt;
&lt;/li&gt;&lt;br /&gt;
&lt;li class=&quot;bb-listitem&quot;&gt; WAP transfer&lt;br /&gt;
&lt;/li&gt;&lt;br /&gt;
&lt;/ul&gt;I don&#039;t have a GPRS modem, so that kind of narrowed down the options for me eventually.&lt;br /&gt;
&lt;br /&gt;
First I tried using Midway, from Motorola&#039;s SDK through Wine.  It bitched about COM ports being unavailable.  Fine.&lt;br /&gt;
&lt;br /&gt;
Using `dmesg | tail&#039;, you can find which dev corresponds to the modem on the phone.  It my case, it was /dev/ttyACM0.&lt;br /&gt;
&lt;br /&gt;
Allow Wine to access the device through a COM port of your choosing.  I chose 3.&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;bb-code-title&quot;&gt;CODE:&lt;/div&gt;&lt;div class=&quot;bb-code&quot;&gt;ln&amp;#160;-s&amp;#160;&amp;#160;/dev/ttyACM0&amp;#160;~/.wine/dosdevices/com&amp;#160;3&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
I then fired up Midway again -- it still wouldn&#039;t talk to the device, so I tried running it as root.  Voila!  I could connect.&lt;br /&gt;
&lt;br /&gt;
Unfortunately, progress came to a brief halt there.  I was able to open up the JAD files from the SDK samples, but couldn&#039;t upload them to the phone.  It would always time out.  Some googling revealed that you need the follow the following steps in strict order:&lt;br /&gt;
&lt;ul class=&quot;bb-list-unordered&quot;&gt;&lt;li class=&quot;bb-listitem&quot;&gt; Start with the USB cable disconnected&lt;br /&gt;
&lt;/li&gt;&lt;br /&gt;
&lt;li class=&quot;bb-listitem&quot;&gt; On your phone, go to Settings/Java Settings/Java App Loader&lt;br /&gt;
&lt;/li&gt;&lt;br /&gt;
&lt;li class=&quot;bb-listitem&quot;&gt; When you see `Insert cable now&#039;, do what it says.&lt;br /&gt;
&lt;/li&gt;&lt;br /&gt;
&lt;li class=&quot;bb-listitem&quot;&gt; Open up the COM port for Wine (see above)&lt;br /&gt;
&lt;/li&gt;&lt;br /&gt;
&lt;li class=&quot;bb-listitem&quot;&gt; Fire up Midway through Wine&lt;br /&gt;
&lt;/li&gt;&lt;br /&gt;
&lt;/ul&gt;If you&#039;re not into Wine, there&#039;s a really cool command line app that you can use instead of Midway.  It&#039;s located &lt;a href=&quot;http://www.softmile.com/&quot;  class=&quot;bb-url&quot;&gt;here&lt;/a&gt;.  It also comes with a GUI version, but that requires QT4 and I couldn&#039;t be bothered installing it.&lt;br /&gt;
&lt;br /&gt;
Well that&#039;s about it for now.  When I have nothing better to do I might actually write something trivial for my phone.  A metronome to help me with my back exercises would really be super. 
    </content:encoded>

    <pubDate>Mon, 14 May 2007 21:58:34 +1000</pubDate>
    <guid isPermaLink="false">http://www.serious-sam.net/serendipity/index.php?/archives/26-guid.html</guid>
    
</item>
<item>
    <title>Kanji study</title>
    <link>http://www.serious-sam.net/serendipity/index.php?/archives/25-Kanji-study.html</link>
    
    <comments>http://www.serious-sam.net/serendipity/index.php?/archives/25-Kanji-study.html#comments</comments>
    <wfw:comment>http://www.serious-sam.net/serendipity/wfwcomment.php?cid=25</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.serious-sam.net/serendipity/rss.php?version=2.0&amp;type=comments&amp;cid=25</wfw:commentRss>
    

    <author>nospam@example.com (Misha)</author>
    <content:encoded>
    I managed to goof up and leave my Palm at work for the Easter break...  Damn.  I&#039;ve really grown quite used to it in helping me remember the Kanji from &lt;a href=&quot;http://en.wikipedia.org/wiki/Remembering_the_Kanji_I&quot;  class=&quot;bb-url&quot;&gt;Heisig&#039;s book&lt;/a&gt;.   Since I had absolutely grandiose plans for Japanese study over the weekend (and, as of 1am on Friday morning, I still do), I decided to look for an alternative study tool for the next few days...  (I really don&#039;t feel like driving all the way to work just to fetch my Palm).  So, I found &lt;a href=&quot;http://kanji.koohii.com&quot;  class=&quot;bb-url&quot;&gt;this site&lt;/a&gt; -- I think it&#039;s really cool and deserves a mention.  Basically, you register (for free) and as you progress through the Kanji list, you add flash cards.  It keeps track of the Kanji that you remembered, and ones that are not.  It&#039;s great for reviewing -- I foresee an exciting weekend... 
    </content:encoded>

    <pubDate>Fri, 06 Apr 2007 01:06:36 +1000</pubDate>
    <guid isPermaLink="false">http://www.serious-sam.net/serendipity/index.php?/archives/25-guid.html</guid>
    
</item>

</channel>
</rss>