<?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/"
	xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule"
>

<channel>
	<title>Al Hoang &#187; japan</title>
	<atom:link href="http://blogs.law.harvard.edu/hoanga/category/japan/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogs.law.harvard.edu/hoanga</link>
	<description>Just another weblog</description>
	<lastBuildDate>Wed, 09 Sep 2009 06:52:48 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<creativeCommons:license>http://creativecommons.org/licenses/by-sa/3.0/</creativeCommons:license>
		<item>
		<title>Getting Ruby 1.9.1p243 to work on OS X 10.5.8 with Japanese input support on irb</title>
		<link>http://blogs.law.harvard.edu/hoanga/2009/09/08/getting-ruby-191p243-to-work-on-os-x-1058-with-japanese-input-support-on-irb/</link>
		<comments>http://blogs.law.harvard.edu/hoanga/2009/09/08/getting-ruby-191p243-to-work-on-os-x-1058-with-japanese-input-support-on-irb/#comments</comments>
		<pubDate>Tue, 08 Sep 2009 08:47:13 +0000</pubDate>
		<dc:creator>hoanga</dc:creator>
				<category><![CDATA[fixes]]></category>
		<category><![CDATA[japan]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[ruby]]></category>

		<guid isPermaLink="false">http://blogs.law.harvard.edu/hoanga/?p=761</guid>
		<description><![CDATA[Awhile back I installed Ruby 1.9.1 in such a way as to co-exist with my current Ruby installation [1], [2] (I should use rvm [3] these days&#8230;)
However, one issue that cropped up during an IRB session was I could not copy and paste Japanese characters into the IRB repl.  This is very very painful [...]]]></description>
			<content:encoded><![CDATA[<p>Awhile back I installed Ruby 1.9.1 in such a way as to co-exist with my current Ruby installation [1], [2] (I should use rvm [3] these days&#8230;)</p>
<p>However, one issue that cropped up during an IRB session was I could not copy and paste Japanese characters into the IRB repl.  This is very very painful for my day to day use with Ruby (Imagine not being able to use the &#8216;|&#8217; character while writing UNIX pipelines). </p>
<p>Below is an example of me trying to enter the character あ into IRB and watching it fail.</p>
<blockquote>
<pre>
$ irb
irb(main):001:0&gt; ab = "?"    &lt;---- Tried entering the character あ
SyntaxError: (irb):1: invalid multibyte char (UTF-8)
(irb):1: unterminated string meets end of file
from /usr/local/bin/irb19:12:in `'
</pre>
</blockquote>
<p>After a lot of head scritching I was able to narrow it down to something with readline:</p>
<blockquote>
<pre>
$ irb --noreadline
irb(main):002:0&gt; ab = "あ"
=&gt; "あ"
irb(main):003:0&gt;
</pre>
</blockquote>
<p>After some more digging into the issue.  The root cause seems to be the lack of GNU readline.  By default, Ruby will link in the system installed readline library on OS X which is called <a href="http://thrysoee.dk/editline/">editline</a> [4].  Unfortunately, editline does not support UTF8 or multi-byte character sets which makes this a no-go for daily usage.</p>
<p>Most of the other references suggest downloading readline from source and installing into <em>/usr/local</em> however I believe this defeats the purpose of using something like <a href="http://www.macports.org">MacPorts</a>.  After a bit of finagling I found that this is the invocation to get things working.</p>
<blockquote>
<pre>
wget&nbsp;<a href="ftp://ftp.ruby-lang.org/pub/ruby/1.9/ruby-1.9.1-p243.tar.gz" title="ftp://ftp.ruby-lang.org/pub/ruby/1.9/ruby-1.9.1-p243.tar.gz" target="_blank">ftp://ftp.ruby-lang.org/pub/ruby/1.9/rub...</a>
tar xvzf ruby-1.9.1-p243.tar.gz
cd ruby-1.9.1-p243
# Don't trust MacPorts version of autoconf because it somehow nuked the
# --with-readline-dir option
/usr/bin/autoconf
./configure --with-readline-dir=/opt/local --enable-shared --program-suffix=19 --enable-pthread
make
sudo make install
</pre>
</blockquote>
<p>I have it wrapped up in a script which you can <a href="http://gist.github.com/180805">see here</a>.</p>
<p>References</p>
<p>[1]&nbsp;<a href="http://wonko.com/post/how-to-compile-ruby-191" title="http://wonko.com/post/how-to-compile-ruby-191" target="_blank">http://wonko.com/post/how-to-compile-rub&#8230;</a><br />
[2]&nbsp;<a href="http://frozenplague.net/2009/01/ruby-191-rubygems-rails/" title="http://frozenplague.net/2009/01/ruby-191-rubygems-rails/" target="_blank">http://frozenplague.net/2009/01/ruby-191&#8230;</a><br />
[3]&nbsp;<a href="http://rvm.beginrescueend.com/" title="http://rvm.beginrescueend.com/" target="_blank">http://rvm.beginrescueend.com/</a><br />
[4]&nbsp;<a href="http://thrysoee.dk/editline/" title="http://thrysoee.dk/editline/" target="_blank">http://thrysoee.dk/editline/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.law.harvard.edu/hoanga/2009/09/08/getting-ruby-191p243-to-work-on-os-x-1058-with-japanese-input-support-on-irb/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-sa/3.0/</creativeCommons:license>
	</item>
		<item>
		<title>Nihon Town</title>
		<link>http://blogs.law.harvard.edu/hoanga/2009/02/27/nihon-town/</link>
		<comments>http://blogs.law.harvard.edu/hoanga/2009/02/27/nihon-town/#comments</comments>
		<pubDate>Fri, 27 Feb 2009 13:04:19 +0000</pubDate>
		<dc:creator>hoanga</dc:creator>
				<category><![CDATA[japan]]></category>

		<guid isPermaLink="false">http://blogs.law.harvard.edu/hoanga/?p=715</guid>
		<description><![CDATA[Nice town&#8230;

Thanks Pink Tentacle
]]></description>
			<content:encoded><![CDATA[<p>Nice town&#8230;</p>
<p><a href="http://www.pinktentacle.com/2009/02/mashup-madness-nihon-town-by-ken-taya/"><img src="http://www.pinktentacle.com/images/nihon_town_1.jpg"></a></p>
<p>Thanks <a href="http://www.pinktentacle.com">Pink Tentacle</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.law.harvard.edu/hoanga/2009/02/27/nihon-town/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-sa/3.0/</creativeCommons:license>
	</item>
		<item>
		<title>Zoorasia and the Yokohama Greenery Foundation.  It&#8217;s not all Dogs &amp; Demons</title>
		<link>http://blogs.law.harvard.edu/hoanga/2008/12/31/zoorasia-and-the-yokohama-greenery-foundation-its-not-all-dogs-demons/</link>
		<comments>http://blogs.law.harvard.edu/hoanga/2008/12/31/zoorasia-and-the-yokohama-greenery-foundation-its-not-all-dogs-demons/#comments</comments>
		<pubDate>Wed, 31 Dec 2008 12:53:27 +0000</pubDate>
		<dc:creator>hoanga</dc:creator>
				<category><![CDATA[japan]]></category>

		<guid isPermaLink="false">http://blogs.law.harvard.edu/hoanga/?p=709</guid>
		<description><![CDATA[If you have ever heard of Alex Kerr and have read his book Dogs &#38; Demonsyou would think much less of Japan as a country.  Some of the things in that book refer to many pork-barrel politic government projects that include such monstrosities as huge concrete damns in the middle of nowhere.  From [...]]]></description>
			<content:encoded><![CDATA[<p>If you have ever heard of Alex Kerr and have read his book <a href="http://www.alex-kerr.com/html/dogs___demons__english_.html">Dogs &amp; Demons</a>you would think much less of Japan as a country.  Some of the things in that book refer to many pork-barrel politic government projects that include such monstrosities as huge concrete damns in the middle of nowhere.  From personal experience, I have seen a couple of these concrete machinations when I did some hiking just outside of the Tokyo area.  Very mind boggling indeed.</p>
<p>However, not all government projects are pork-barrel political showcases (I hope).  One interesting project located in Yokohama is called <a href="http://www.zoorasia.org">Zoorasia</a>.  Zoorasia is a large zoo with a multitude of animals from around the planet.  The Zoo itself is divided into 7 areas at present that match certain geographic areas of the world.  In each area are a set of representative animals from that region.   For example there is an Oceanian Grassland area and one of the prominent animals there are kangaroos.</p>
<p>The zoo is run by the Yokohama Greenery Foundation which was established as far back in the mid 70s.  Back then it originally called itself the (sorry if I mistranslate here&#8230;)  The Yokohama City Park Foundation (Nin-idantai Yokohama-shi Kouen Kyoukai &#8211; 任意団体横浜市公園協会)  however renamed itself to the Yokohama Greenery Foundation in 1984.</p>
<p>The zoo itself is a little inconvenient to reach by public transportation (aka it takes awhile by bus and train).  But from what I have seen the park is extremely nice with a very reasonable entrance fee (600Y).  One thing I do wonder is whether Zoorasia can support itself in the long run since it is a great resource for families around the area.  It would be a shame if maintaining such a nice zoo is actually not sustainable with the budget that they have.  But it does seem that Zoorasia&#8217;s parent organization has some backing by the Yokohama government which I hope is a good thing.  (At least I can feel some of the tax I pay is going to something interesting)</p>
<h4>References (In Japanese)</h4>
<ul>
<li><a href="http://www.zoorasia.org">Zoorasia&#8217;s website</a> (English available!)</li>
<li><a href="http://www.zoorasia.org/about/coment.html">Some words on the philosophy of Zoorasia from the Zoorasia President</a>
<li><a href="http://ja.wikipedia.org/wiki/よこはま動物園ズーラシア">Japanese Wikipedia Page on Zoorasia</a></li>
<li><a href="http://www.hama-midorinokyokai.or.jp/">The Yokohama Greenery Foundation</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blogs.law.harvard.edu/hoanga/2008/12/31/zoorasia-and-the-yokohama-greenery-foundation-its-not-all-dogs-demons/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-sa/3.0/</creativeCommons:license>
	</item>
		<item>
		<title>On the origins of the name Akihabara</title>
		<link>http://blogs.law.harvard.edu/hoanga/2008/12/22/on-the-origins-of-the-name-akihabara/</link>
		<comments>http://blogs.law.harvard.edu/hoanga/2008/12/22/on-the-origins-of-the-name-akihabara/#comments</comments>
		<pubDate>Tue, 23 Dec 2008 02:37:11 +0000</pubDate>
		<dc:creator>hoanga</dc:creator>
				<category><![CDATA[geek]]></category>
		<category><![CDATA[japan]]></category>

		<guid isPermaLink="false">http://blogs.law.harvard.edu/hoanga/?p=707</guid>
		<description><![CDATA[Akihabara as many people in Japan know was originally the home for buying electronic goods in the Tokyo area.   It still holds that reputation however the Anime Otaku crowd have changed the face of Akihabara to also accomodate their needs and desires.
One thing that is interesting is the origin of place name Akihabara. [...]]]></description>
			<content:encoded><![CDATA[<p>Akihabara as many people in Japan know was originally the home for buying electronic goods in the Tokyo area.   It still holds that reputation however the Anime Otaku crowd have changed the face of Akihabara to also accomodate their needs and desires.</p>
<p>One thing that is interesting is the origin of place name Akihabara.   A friend of mine has an excellent post <a href="http://www.iknow.co.jp/users/xaky/journal/2008/11/21/105542-where-does-the-name-akihabara-come-from">here</a></p>
<p><a href="http://www.iknow.co.jp/users/xaky/journal/2008/11/21/105542-where-does-the-name-akihabara-come-from">Read more!</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.law.harvard.edu/hoanga/2008/12/22/on-the-origins-of-the-name-akihabara/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-sa/3.0/</creativeCommons:license>
	</item>
		<item>
		<title>Japanese declining population rates?  How come I can&#8217;t find a doctor?</title>
		<link>http://blogs.law.harvard.edu/hoanga/2008/11/15/japanese-declining-population-rates-how-come-i-cant-find-a-doctor/</link>
		<comments>http://blogs.law.harvard.edu/hoanga/2008/11/15/japanese-declining-population-rates-how-come-i-cant-find-a-doctor/#comments</comments>
		<pubDate>Sat, 15 Nov 2008 12:27:48 +0000</pubDate>
		<dc:creator>hoanga</dc:creator>
				<category><![CDATA[gripe]]></category>
		<category><![CDATA[japan]]></category>
		<category><![CDATA[stupid]]></category>

		<guid isPermaLink="false">http://blogs.law.harvard.edu/hoanga/?p=700</guid>
		<description><![CDATA[少子化 is the term used to describe the shrinking population in Japan and the many hardships that will bring to the country economically.  I remember hearing some analyses on why this is happening on a social standpoint.  I&#8217;ve not heard (or really bothered that hard to search for) many proposals on how to [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://ja.wikipedia.org/wiki/%E5%B0%91%E5%AD%90%E5%8C%96">少子化</a> is the term used to describe the shrinking population in Japan and the many hardships that will bring to the country economically.  I remember hearing some analyses on why this is happening on a social standpoint.  I&#8217;ve not heard (or really bothered that hard to search for) many proposals on how to fix the problem.  However when I read stories like <a href="http://search.japantimes.co.jp/cgi-bin/nn20081115f2.html">this</a>.  </p>
<p>It makes me wonder if some policy makers are out of touch with reality, sometimes.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.law.harvard.edu/hoanga/2008/11/15/japanese-declining-population-rates-how-come-i-cant-find-a-doctor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-sa/3.0/</creativeCommons:license>
	</item>
		<item>
		<title>A moment of silence for Prof Jun-ichiro Hagino</title>
		<link>http://blogs.law.harvard.edu/hoanga/2007/11/03/a-moment-of-silence-for-prof-jun-ichiro-hagino/</link>
		<comments>http://blogs.law.harvard.edu/hoanga/2007/11/03/a-moment-of-silence-for-prof-jun-ichiro-hagino/#comments</comments>
		<pubDate>Sat, 03 Nov 2007 08:11:00 +0000</pubDate>
		<dc:creator>hoanga</dc:creator>
				<category><![CDATA[japan]]></category>
		<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://blogs.law.harvard.edu/hoanga/2007/11/03/a-moment-of-silence-for-prof-jun-ichir</guid>
		<description><![CDATA[	I ran across the news on the passing
of Professor Jun-ichiro Hagino aka &#8216;Itojun&#8217;.  
Although I never knew &#8216;Itojun&#8217; personally I
was always impressed by someone who was able
to hold commit rights to the main 3 families
of the *BSD trees and make a real difference
in trying to push out the adoption of IPv6 out
far and wide.
My [...]]]></description>
			<content:encoded><![CDATA[<p>	I ran across the news on the passing<br />
of Professor Jun-ichiro Hagino aka &#8216;Itojun&#8217;.  </p>
<p>Although I never knew &#8216;Itojun&#8217; personally I<br />
was always impressed by someone who was able<br />
to hold commit rights to the main 3 families<br />
of the *BSD trees and make a real difference<br />
in trying to push out the adoption of IPv6 out<br />
far and wide.</p>
<p>My understanding is that parts of the kame stack<br />
that he had a major hand in were at one point<br />
used as the basic for the IPv6 stack in the Linux<br />
kernel.  I&#8217;m not sure if that is the case anymore<br />
with the IPv6 stack in Linux but I thought that<br />
was an interesting tidbit in Linux networking<br />
implementation history.</p>
<p>May he rest in peace.</p>
<ul>
<li><a>The Wide Announcement</a></li>
<li><a href="http://undeadly.org/cgi?action=article&amp;sid=20071030220114&amp;mode=flat">Undeadly.org&#8217;s News Post on it</a></li>
<li><a href="http://marc.info/?l=openbsd-misc&amp;m=119388876209736&amp;w=2">OpenBSD 4.2 Commemorating Itojun</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blogs.law.harvard.edu/hoanga/2007/11/03/a-moment-of-silence-for-prof-jun-ichiro-hagino/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-sa/3.0/</creativeCommons:license>
	</item>
		<item>
		<title>Getting a Ruby C extension to compile on Windows</title>
		<link>http://blogs.law.harvard.edu/hoanga/2006/12/14/getting-a-ruby-c-extension-to-compile-on-windows/</link>
		<comments>http://blogs.law.harvard.edu/hoanga/2006/12/14/getting-a-ruby-c-extension-to-compile-on-windows/#comments</comments>
		<pubDate>Thu, 14 Dec 2006 05:39:55 +0000</pubDate>
		<dc:creator>hoanga</dc:creator>
				<category><![CDATA[japan]]></category>
		<category><![CDATA[ruby]]></category>

		<guid isPermaLink="false">http://blogs.law.harvard.edu/hoanga/2006/12/14/getting-a-ruby-c-extension-to-compile-</guid>
		<description><![CDATA[
The Programming Ruby book is one of those must have references if you&#8217;re going to program Ruby.  I still use it all the time when I&#8217;m looking up information on Ruby.  One thing I&#8217;ve started playing with is getting a C extension to work with Ruby.  Chapter 21 of Volume 2 of [...]]]></description>
			<content:encoded><![CDATA[<p>
The <a href="http://www.pragmaticprogrammer.com/titles/ruby/index.html">Programming Ruby</a> book is one of those must have references if you&#8217;re going to program Ruby.  I still use it all the time when I&#8217;m looking up information on Ruby.  One thing I&#8217;ve started playing with is getting a C extension to work with Ruby.  Chapter 21 of Volume 2 of <a href="http://www.pragmaticprogrammer.com/titles/ruby/index.html">Programming Ruby</a> gives you a great example for writing a C extension from scratch and getting it to compile and work in a UNIX-based environment however it falls short on handholding you through the Windows process.   Here&#8217;s my notes on what you need:
</p>
<h3>Executive Summary</h3>
<ol>
<li>Install <a href="http://msdn.microsoft.com/vstudio/express/">Visual Studio Express</a> or some other Visual C++ variant</li>
<li>Install the <a href="http://www.microsoft.com/msdownload/platformsdk/sdkupdate/">Platform SDK</a> (You need this if you want <em>windows.h</em> and you DO)</li>
<li>Make minor changes in Ruby config.h (Not necessary for all versions of Visual Studio)</li>
<li>Write the MyTest code and extconf.rb file from the book</li>
<li>Run <em>ruby extconf.rb</em> to generate a nmake-based Makefile</li>
<li>Startup a command prompt with the SDK environment variables set</li>
<li>Run <em>nmake</em> to compile the library</li>
<li>Done!</li>
</ol>
<h3>The detailed version</h3>
<h4>Download Visual Studio</h4>
<p>Unless you&#8217;re using cygwin or mingw as your compiler you&#8217;ll probably want to get Visual Studio.  The latest incarnation is <a href="http://msdn.microsoft.com/vstudio/express/">Visual Studio 2005</a> which is a free download.  I&#8217;ve found that it&#8217;s a pain to find the right URL to download it from on Microsoft but that&#8217;s Microsoft for you.</p>
<h4>Download the Windows Platform SDK</h4>
<p>Since the Windows version of Ruby ties in with many Win32 libraries it&#8217;s necessary to get the <a href="http://msdn.microsoft.com/platformsdk/">Platform SDK</a>.  If you DON&#8217;T download it you will see strange error messages when trying to compile your Ruby extension such as this:</p>
<blockquote>
<pre>
c:\ruby\lib\ruby\1.8\i386-mswin32\win32/win32.h(32) : fatal error C1083: Cannot
open include file: 'windows.h': No such file or directory
NMAKE : fatal error U1077: '"C:\Program Files\Microsoft Visual Studio 8\VC\BIN\cl.EXE"' : return code '0x2'
Stop.
</pre>
</blockquote>
<p><em>windows.h</em> is NOT included by default in Visual Studio 2005 (but I believe it is in older versions of Visual Studio) so you need the platform SDKs to get the right development libraries.  While it would be nice if the C-based version of Ruby could easily hook into the .Net platform, this would probably require significant hacking the <em>mkmf</em> library in Ruby to get it to work transparently.  I doubt that will happen soon.</p>
<p>
Once again, I found Microsoft&#8217;s website really annoying to navigate in order to try to find the Platform SDK so you might want to click <a href="http://msdn.microsoft.com/platformsdk/">here</a> then make sure you have the latest platform SDK (As of this writing the latest was R1)
</p>
<h4>Tweak $RUBY_HOME/lib/ruby/1.8/i386-mswin32/config.h</h4>
<p>For some versions Visual Studio (noteably Visual Studio 2005), the config file located in  $RUBY_HOME/lib/ruby/1.8/i386-mswin32/config.h  (Usually $RUBY_HOME installs to C:/Ruby) will  require a tweak to allow compilation.  Or you could rebuild Ruby from scratch yourself but I prefer to use the <a href="http://www.ruby-lang.org/en/downloads/">All-in-one installer</a>.  In the config.h file delete or comment out the following lines:</p>
<blockquote>
<pre>
#if _MSC_VER != 1200
#error MSC version unmatch
#endif
</pre>
</blockquote>
<h4>Finally!  Let&#8217;s compile it already</h4>
<p>Okay now you&#8217;re ready to finally to actually compile your code.  In order to get all the environment variables set properly you might want to launch a command prompt from the shortcuts the Platform SDK makes in the Start Menu then make sure to run vsvars32.bat from Visual Studio&#8217;s directory (Usually in <em>C:\Program Files\Microsoft Visual Studio 8\VC\bin</em>).  Now with that all set you can finally compile something!  (whew!):</p>
<blockquote>
<pre>
C:\cygwin\home\foo\exttest&gt;ruby extconf.rb
creating Makefile

C:\cygwin\home\foo\exttest&gt;nmake

Microsoft (R) Program Maintenance Utility Version 8.00.50727.42
Copyright (C) Microsoft Corporation.  All rights reserved.

        cl -nologo -I. -Ic:/ruby/lib/ruby/1.8/i386-mswin32 -Ic:/ruby/lib/ruby/1.
8/i386-mswin32 -I. -MD -Zi -O2b2xg- -G6  -c -Tcmy_test.c
cl : Command line warning D9035 : option 'Og-' has been deprecated and will be r
emoved in a future release
cl : Command line warning D9002 : ignoring unknown option '-G6'
my_test.c
        cl -nologo -LD -Femy_test.so my_test.obj msvcrt-ruby18.lib  oldnames.lib
 user32.lib advapi32.lib wsock32.lib  -link -incremental:no -debug -opt:ref -opt
:icf -dll -libpath:"c:/ruby/lib" -def:my_test-i386-mswin32.def -implib:my_test-i
386-mswin32.lib -pdb:my_test-i386-mswin32.pdb
   Creating library my_test-i386-mswin32.lib and object my_test-i386-mswin32.exp

C:\cygwin\foo\exttest&gt;irb
irb(main):001:0&gt; require 'my_test'
=&gt; true
irb(main):002:0&gt; test = MyTest.new
=&gt; #
</pre>
</blockquote>
<h3>References</h3>
<ul>
<li><a href="http://msdn.microsoft.com/vstudio/express/">Visual Studio Express</a></li>
<li><a href="http://www.microsoft.com/msdownload/platformsdk/sdkupdate/">Windows Platform SDK</a> (This will point you to SP1 but you want a more recent version)</li>
<li><a href="http://www.turnofthecrank.com/2006/09/11/ruby-ldap-and-win32/">Ruby LDAP and Windows</a></li>
<li><a href="http://www.joeygibson.com/blog/tech/ruby/RubyMySQL.html">Ruby + Mysql on Windows</a></li>
<li><a href="http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-talk/80862">A Ruby talk thread on build issues</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blogs.law.harvard.edu/hoanga/2006/12/14/getting-a-ruby-c-extension-to-compile-on-windows/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-sa/3.0/</creativeCommons:license>
	</item>
		<item>
		<title>Linux powered Mp3 player</title>
		<link>http://blogs.law.harvard.edu/hoanga/2006/11/28/linux-powered-mp3-player/</link>
		<comments>http://blogs.law.harvard.edu/hoanga/2006/11/28/linux-powered-mp3-player/#comments</comments>
		<pubDate>Tue, 28 Nov 2006 15:55:02 +0000</pubDate>
		<dc:creator>hoanga</dc:creator>
				<category><![CDATA[japan]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://blogs.law.harvard.edu/hoanga/2006/11/28/linux-powered-mp3-player/</guid>
		<description><![CDATA[About time&#8230;




Got to wait until Feb 2007 to get your hands on one though.   Hope it doesn&#8217;t cost too much
]]></description>
			<content:encoded><![CDATA[<p>About time&#8230;</p>
<p><a href="http://www.reghardware.co.uk/2006/11/23/wizpy_linux_media_player/"><br />
<img src="http://regmedia.co.uk/2006/11/23/wizpy_1.jpg" alt="Linux Mp3 Player" /><br />
</a><br />
<br />
Got to wait until Feb 2007 to get your hands on one though.   Hope it doesn&#8217;t cost too much</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.law.harvard.edu/hoanga/2006/11/28/linux-powered-mp3-player/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-sa/3.0/</creativeCommons:license>
	</item>
		<item>
		<title>PS3 Launch a mess in Japan?</title>
		<link>http://blogs.law.harvard.edu/hoanga/2006/11/14/ps3-launch-a-mess-in-japan/</link>
		<comments>http://blogs.law.harvard.edu/hoanga/2006/11/14/ps3-launch-a-mess-in-japan/#comments</comments>
		<pubDate>Tue, 14 Nov 2006 09:41:22 +0000</pubDate>
		<dc:creator>hoanga</dc:creator>
				<category><![CDATA[japan]]></category>

		<guid isPermaLink="false">http://blogs.law.harvard.edu/hoanga/2006/11/14/ps3-launch-a-mess-in-japan/</guid>
		<description><![CDATA[Here&#8217;s something you probably won&#8217;t read in the local Japanese newspapers:

  This is the true face of the PlayStation 3 debut in Japan. Hardcore gamers are not here waiting in line overnight, buying a first-run PS3, and running home to play some good old next-gen gaming. Rather, opportunistic Japanese businessmen have the largest presence, [...]]]></description>
			<content:encoded><![CDATA[<p><a name="a678"></a>Here&#8217;s something you probably won&#8217;t read in the local Japanese newspapers:</p>
<p>
<em>  This is the true face of the PlayStation 3 debut in Japan. Hardcore gamers are not here waiting in line overnight, buying a first-run PS3, and running home to play some good old next-gen gaming. Rather, opportunistic Japanese businessmen have the largest presence, hiring poor Chinese men and women to wait in line for a PS3  </em>
</p>
<p>Frankly, this is yet another blunder for Sony but I bet it will be silenced  by the Japanese media so the only people who will know about it are:</p>
<ul>
<li>People reading this blog (All 3 of you!)</li>
<li>Gamers not in Japan</li>
<li>All the <a href="http://www.kotaku.com">Kotaku.com</a> readers</li>
</ul>
<p>A very sad thing this is.  It really makes me wonder whether it&#8217;s even fun  anymore to sit in line for these launch events if some enterprising people  are just going to hire some homeless folk to wait in line for them.  Anyways, if you&#8217;re reading this.  Spread the word far and wide, please.<a href="http://www.kotaku.com/gaming/top/foreigners-and-fights-ps3-jpn-launchs-dark-side-214130.php">Read it yourself on Kotaku</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.law.harvard.edu/hoanga/2006/11/14/ps3-launch-a-mess-in-japan/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-sa/3.0/</creativeCommons:license>
	</item>
		<item>
		<title>Onna Otaku</title>
		<link>http://blogs.law.harvard.edu/hoanga/2006/11/01/onna-otaku/</link>
		<comments>http://blogs.law.harvard.edu/hoanga/2006/11/01/onna-otaku/#comments</comments>
		<pubDate>Wed, 01 Nov 2006 15:16:12 +0000</pubDate>
		<dc:creator>hoanga</dc:creator>
				<category><![CDATA[japan]]></category>

		<guid isPermaLink="false">http://blogs.law.harvard.edu/hoanga/2006/11/01/onna-otaku/</guid>
		<description><![CDATA[    
]]></description>
			<content:encoded><![CDATA[<p><a name="a670"></a><a href="http://wired.com/wired/archive/14.03/play.html?pg=3">  <img src="http://www.wired.com/ly/wired/wired/archive/14.03/images/PL_53_street1_t.gif" />  </a></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.law.harvard.edu/hoanga/2006/11/01/onna-otaku/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-sa/3.0/</creativeCommons:license>
	</item>
		<item>
		<title>Voice over IP adoption in Japan</title>
		<link>http://blogs.law.harvard.edu/hoanga/2004/01/01/voice-over-ip-adoption-in-japan/</link>
		<comments>http://blogs.law.harvard.edu/hoanga/2004/01/01/voice-over-ip-adoption-in-japan/#comments</comments>
		<pubDate>Thu, 01 Jan 2004 16:05:26 +0000</pubDate>
		<dc:creator>hoanga</dc:creator>
				<category><![CDATA[japan]]></category>
		<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://blogs.law.harvard.edu/hoanga/2004/01/01/voice-over-ip-adoption-in-japan/</guid>
		<description><![CDATA[
Happy New Year&#8217;s all.    Slashdot linked to an article on Voice over IP Adoption in Japan.


I&#8217;ve looked over the pricing structure of Voice over IP and found it not that useful if you&#8217;re a light phone caller (me) as you must factor in the costs of an Internet connection monthly which costs [...]]]></description>
			<content:encoded><![CDATA[<p><a name='a279'></a></p>
<p>Happy New Year&#8217;s all.    Slashdot linked to an article on <a href="http://www.redherring.com/article.aspx?f=Articles/2003%2F12%2Ff5ec5f4b-522b-429a-8524-ed71ae6a7dbf%2Ff5ec5f4b-522b-429a-8524-ed71ae6a7dbf.xml&amp;hed=VoIP%20for%20the%20masses">Voice over IP Adoption</a> in Japan.
</p>
<p>
I&#8217;ve looked over the pricing structure of Voice over IP and found it not that useful if you&#8217;re a light phone caller (me) as you must factor in the costs of an Internet connection monthly which costs around 5000Y or so for a broadband connection that can support VoIP practically.  On top of which you are topped a surcharge monthyl fee to activate Voice over IP and of course you are charged for usage time.   After doing the math out, a phone line is slightly cheaper. . . go figure.</p>
<p><p>
 <a href="http://www.redherring.com/article.aspx?f=Articles/2003%2F12%2Ff5ec5f4b-522b-429a-8524-ed71ae6a7dbf%2Ff5ec5f4b-522b-429a-8524-ed71ae6a7dbf.xml&amp;hed=VoIP%20for%20the%20masses">Link to Story</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.law.harvard.edu/hoanga/2004/01/01/voice-over-ip-adoption-in-japan/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-sa/3.0/</creativeCommons:license>
	</item>
		<item>
		<title>Fleep</title>
		<link>http://blogs.law.harvard.edu/hoanga/2003/12/21/fleep/</link>
		<comments>http://blogs.law.harvard.edu/hoanga/2003/12/21/fleep/#comments</comments>
		<pubDate>Sun, 21 Dec 2003 08:19:06 +0000</pubDate>
		<dc:creator>hoanga</dc:creator>
				<category><![CDATA[japan]]></category>

		<guid isPermaLink="false">http://blogs.law.harvard.edu/hoanga/2003/12/21/fleep/</guid>
		<description><![CDATA[

 


It&#8217;s about a boy who wakes up in a telephone booth which has been mysteriously selaed in an envelope of concrete. Using only the contents of his pockets (two pens, a paperback novel, three coins and 20 ft of unwaxed dental floss) our hero must fashion and execute an escape plan before he runs [...]]]></description>
			<content:encoded><![CDATA[<p><a name='a252'></a></p>
<p>
 <a href="http://www.shigabooks.com/"><img src="http://www.shigabooks.com/shigabooks/csfolder/fleep.gif"></a></p>
<p>
<em><br />
It&#8217;s about a boy who wakes up in a telephone booth which has been mysteriously selaed in an envelope of concrete. Using only the contents of his pockets (two pens, a paperback novel, three coins and 20 ft of unwaxed dental floss) our hero must fashion and execute an escape plan before he runs out of oxygen.<br />
</em></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.law.harvard.edu/hoanga/2003/12/21/fleep/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-sa/3.0/</creativeCommons:license>
	</item>
		<item>
		<title>Japanese homeless beat up by kids?</title>
		<link>http://blogs.law.harvard.edu/hoanga/2003/12/17/japanese-homeless-beat-up-by-kids/</link>
		<comments>http://blogs.law.harvard.edu/hoanga/2003/12/17/japanese-homeless-beat-up-by-kids/#comments</comments>
		<pubDate>Wed, 17 Dec 2003 14:21:57 +0000</pubDate>
		<dc:creator>hoanga</dc:creator>
				<category><![CDATA[japan]]></category>

		<guid isPermaLink="false">http://blogs.law.harvard.edu/hoanga/2003/12/17/japanese-homeless-beat-up-by-kids/</guid>
		<description><![CDATA[
There&#8217;s an article on the New York Times on the Japanese homeless and some of the problems they have to deal with.  Many of them are out of work salary men who through some unfortunate twist lost their jobs and became homeless due to not being able to find a replacement job.   [...]]]></description>
			<content:encoded><![CDATA[<p><a name='a241'></a></p>
<p>There&#8217;s an article on the <a href="http://www.nytimes.com">New York Times</a> on the Japanese homeless and some of the problems they have to deal with.  Many of them are out of work salary men who through some unfortunate twist lost their jobs and became homeless due to not being able to find a replacement job.   It seems teen boys and young boys gang up and then go out hunting for them and beat them up.</p>
<p>
Ick.   They&#8217;re justification?  &#8220;We&#8217;re cleaning up the garbage.&#8221;   I&#8217;m not a fan of people not attempting to be productive to society but I&#8217;m not sure about outright hostility.   That gets me incensed.  Preying on the weak is a poor excuse.   A better way would be to help find ways to educate these people and try to put wind in their sails again so they can float in wild ocean of life.</p>
<p><a href="http://www.nytimes.com/2003/12/17/international/asia/17JAPA.html">Link to story</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.law.harvard.edu/hoanga/2003/12/17/japanese-homeless-beat-up-by-kids/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-sa/3.0/</creativeCommons:license>
	</item>
		<item>
		<title>Why do phone and cable companies make it so hard to&#8230;</title>
		<link>http://blogs.law.harvard.edu/hoanga/2003/12/13/why-do-phone-and-cable-companies-make-it-so-hard-to/</link>
		<comments>http://blogs.law.harvard.edu/hoanga/2003/12/13/why-do-phone-and-cable-companies-make-it-so-hard-to/#comments</comments>
		<pubDate>Sun, 14 Dec 2003 04:32:08 +0000</pubDate>
		<dc:creator>hoanga</dc:creator>
				<category><![CDATA[gripe]]></category>
		<category><![CDATA[japan]]></category>
		<category><![CDATA[stupid]]></category>
		<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://blogs.law.harvard.edu/hoanga/2003/12/13/why-do-phone-and-cable-companies-make-</guid>
		<description><![CDATA[
Why is that everyime I try looking on a phone or cable companies website for information for their brick &#38; mortar stores I can&#8217;t find anything?  It requires seaching and searching.   Instead they&#8217;ve jumped on this notion of &#8220;Use the Online Services!!!&#8221;   That&#8217;s great when things are workign as they [...]]]></description>
			<content:encoded><![CDATA[<p><a name='a234'></a></p>
<p>Why is that everyime I try looking on a phone or cable companies website for information for their brick &amp; mortar stores I can&#8217;t find anything?  It requires seaching and searching.   Instead they&#8217;ve jumped on this notion of &#8220;Use the Online Services!!!&#8221;   That&#8217;s great when things are workign as they planned.  But how abuot when they aren&#8217;t?    That&#8217;s where interacting with a human in person can be much more clarifying about the problem.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.law.harvard.edu/hoanga/2003/12/13/why-do-phone-and-cable-companies-make-it-so-hard-to/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-sa/3.0/</creativeCommons:license>
	</item>
		<item>
		<title>Why localization and internationalization is important</title>
		<link>http://blogs.law.harvard.edu/hoanga/2003/12/12/why-localization-and-internationalization-is-important/</link>
		<comments>http://blogs.law.harvard.edu/hoanga/2003/12/12/why-localization-and-internationalization-is-important/#comments</comments>
		<pubDate>Sat, 13 Dec 2003 03:00:01 +0000</pubDate>
		<dc:creator>hoanga</dc:creator>
				<category><![CDATA[gripe]]></category>
		<category><![CDATA[japan]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://blogs.law.harvard.edu/hoanga/2003/12/12/why-localization-and-internationalizat</guid>
		<description><![CDATA[
This article is mainly covering the Open Source movement and its local heroes.   But this quote really caught my eye:

&#x201C;An English-only or even an English-mainly policy necessarily condemns most people, and thus the country as a whole, to a permanent state of mediocrity, since people are unable to be spontaneous, creative and self-confident [...]]]></description>
			<content:encoded><![CDATA[<p><a name='a233'></a></p>
<p>This <a href="http://www.economist.com/science/tq/displaystory.cfm?story_id=2246308">article</a> is mainly covering the Open Source movement and its local heroes.   But this quote really caught my eye:</p>
<p><em><br />
&#x201C;An English-only or even an English-mainly policy necessarily condemns most people, and thus the country as a whole, to a permanent state of mediocrity, since people are unable to be spontaneous, creative and self-confident if they cannot use their first language,&#x201D;<br />
</em></p>
<p>Most Americans probably won&#8217;t even think about this at all.  The ones that probably really get it are ones that have spent some time abroad and have to use a computer that has been localized or speak another language at home.   All of a sudden you can&#8217;t read the menus and dialogues and many of the interactions with the computer.  You&#8217;re a little lost in what to do.  Now imagine trying to &#8216;get work&#8217; done in this environment.   This is what many many people deal with when having to deal with a non-localized computer.   On top of dealing with computing for the first time they are forced to use a language they have no internal sense of.</p>
<p> <a href="http://www.economist.com/science/tq/displaystory.cfm?story_id=2246308">Link to story</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.law.harvard.edu/hoanga/2003/12/12/why-localization-and-internationalization-is-important/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-sa/3.0/</creativeCommons:license>
	</item>
		<item>
		<title>New York Times on Cel Phone Hacking</title>
		<link>http://blogs.law.harvard.edu/hoanga/2003/11/30/new-york-times-on-cel-phone-hacking/</link>
		<comments>http://blogs.law.harvard.edu/hoanga/2003/11/30/new-york-times-on-cel-phone-hacking/#comments</comments>
		<pubDate>Sun, 30 Nov 2003 05:44:16 +0000</pubDate>
		<dc:creator>hoanga</dc:creator>
				<category><![CDATA[japan]]></category>
		<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://blogs.law.harvard.edu/hoanga/2003/11/30/new-york-times-on-cel-phone-hacking/</guid>
		<description><![CDATA[
The New York Times has an article about Japanese cel companies combatting spam and viruses today.    With the impending standardization of cel phone software this could prove to a nasty ground for virus writers as bascially today&#8217;s cel phones are basically computers.. just with specialized software.   However, if the software [...]]]></description>
			<content:encoded><![CDATA[<p><a name='a220'></a></p>
<p>The New York Times has an article about Japanese cel companies combatting spam and viruses today.    With the impending standardization of cel phone software this could prove to a nasty ground for virus writers as bascially today&#8217;s cel phones are basically computers.. just with specialized software.   However, if the software becomes semi standardized then affecting lots of phones just got easier.</p>
<p>On a side note.  Microsoft wants to get into the cel phone / PDA market with their OS.  And looking at their fabulous track record for getting nailed with viruses AND also the prolificness of their development toolsets what do you think is going to happen?   Thanks M$!   We need more viruses.  (not)</p>
<p> <a href="http://www.nytimes.com/2003/11/28/technology/28cell.html?adxnnl=1&amp;adxnnlx=1070168846-Q3Rf29EfnOnmJ6YrulMwgw">Link to Story</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.law.harvard.edu/hoanga/2003/11/30/new-york-times-on-cel-phone-hacking/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-sa/3.0/</creativeCommons:license>
	</item>
		<item>
		<title>Job Search Dishonesty</title>
		<link>http://blogs.law.harvard.edu/hoanga/2003/11/19/job-search-dishonesty/</link>
		<comments>http://blogs.law.harvard.edu/hoanga/2003/11/19/job-search-dishonesty/#comments</comments>
		<pubDate>Wed, 19 Nov 2003 07:30:51 +0000</pubDate>
		<dc:creator>hoanga</dc:creator>
				<category><![CDATA[gripe]]></category>
		<category><![CDATA[japan]]></category>
		<category><![CDATA[stupid]]></category>

		<guid isPermaLink="false">http://blogs.law.harvard.edu/hoanga/2003/11/19/job-search-dishonesty/</guid>
		<description><![CDATA[
Recently at an interview for a company I noticed that when they pulled out my resume and were using it as the standard template for what to ask me about.   I noticed that all of my job titles were changed!    They were interested in a UNIX Sys Admin type and [...]]]></description>
			<content:encoded><![CDATA[<p><a name='a204'></a></p>
<p>Recently at an interview for a company I noticed that when they pulled out my resume and were using it as the standard template for what to ask me about.   I noticed that all of my job titles were changed!    They were interested in a UNIX Sys Admin type and it seems the recruiter I was working through ended up changing my job titles to pass through the keyword searches.</p>
<p>This ended up causing a lot of problems when the interviewer asked me about my job history and what I had done.   For the past few years I have been working as a Systems QA guy for network equipment.  I used a lot UNIX systems and administrated them for our lab on the side to ensure we could get work done.   My main job was doing QA of course but I ended up picking up the slack of local network admin and UNIX admin on the side.   When asked about what my job title was I honestly answered I was doing QA which caused the interviewer to backpeddle as they were staring at the title UNIX Sys Admin on my resume and wondering what was up.   I ended up trying my best to explain I had nothing to do with changing my resume job titles and explained it must have been the recruitment agency that changed it.   I do not believe in modifying something like your job title  just to get into an interview however it seems the recruiter I work with does.  This really got me annoyed as I like being up front with where I&#8217;ve been and what I&#8217;ve done.</p>
<p>It made me start thinking, &#8220;Do people do this regularly just to get their foot in the door?&#8221;   If so, that really disgusts me.   The job search/hiring process is not easy for both ends of the equation (for both the employer AND job searcher) without having to add in the extra variable of what I feel is dishonesty.   I have warned my recruiter that if they do this again I will not work with them as this is akin to dishonesty.   At first the recruiter didn&#8217;t think so however I really pushed the screws into them explaining that your job history is you.  If you change around your job titles JUST to get an interview then that is dishonest to oneself and to the company you are applying for.   This is not a valid way to try to get your resume through the door.  Yes it is A way but if I have to start distorting myself just to get a job with company X.   Perhaps, I shouldn&#8217;t work for that company since I&#8217;d like to believe that most people want to do GOOD working for a company not bad.</p>
<p>In the end I didn&#8217;t get the job because of &#8216;experience&#8217; as a UNIX sys admin working on super large systems.   I feel a little bummed about it but I guess they wanted to take the safe path and find someone who can claim they have UNIX sys admin on their resume for X years on large systems rather than take a chance.  I find my skills section sometimes the hardest part to explain to interviewers that interview me since they want to compartmentalize me as one thing or another based on JUST my job title I&#8217;ve noticed and expect when I describe my work history to back up these conclusions.  I guess there are people that do have that experience but how do you get started working on &#8216;large systems&#8217;?   This isn&#8217;t something you can all of a sudden get without having worked in that type of environment.  But I guess from the employer&#8217;s standpoint it&#8217;s easier to just match up the checkpoints and decide.  Ah well&#8230;<br />
Whatever happened to the job interview being a chance to show why you would work well in that position in spite of what might look like obstacles?  Perhaps that is more my fault for not showing them?</p>
<p>In the end I still believe in honesty is the best policy.   Leave distortions to the politicians.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.law.harvard.edu/hoanga/2003/11/19/job-search-dishonesty/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-sa/3.0/</creativeCommons:license>
	</item>
		<item>
		<title>Akihabara&#8217;s Linux Cafe</title>
		<link>http://blogs.law.harvard.edu/hoanga/2003/11/17/akihabaras-linux-cafe/</link>
		<comments>http://blogs.law.harvard.edu/hoanga/2003/11/17/akihabaras-linux-cafe/#comments</comments>
		<pubDate>Mon, 17 Nov 2003 11:49:56 +0000</pubDate>
		<dc:creator>hoanga</dc:creator>
				<category><![CDATA[geek]]></category>
		<category><![CDATA[japan]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://blogs.law.harvard.edu/hoanga/2003/11/17/akihabaras-linux-cafe/</guid>
		<description><![CDATA[
When I was in Akihabara a month or so back I found The Linux Cafe.  No I&#8217;m not joking!   I bet if you google for it you might be able to find it.  But here&#8217;s some pics showing proof:



]]></description>
			<content:encoded><![CDATA[<p><a name='a196'></a></p>
<p>When I was in Akihabara a month or so back I found The Linux Cafe.  No I&#8217;m not joking!   I bet if you google for it you might be able to find it.  But here&#8217;s some pics showing proof:<br />
<img src="http://cyber.law.harvard.edu/blogs/static/hoanga/031025172800.jpg" height="320" width="240" border="0" alt=""><br />
<br />
<img src="http://cyber.law.harvard.edu/blogs/static/hoanga/031025172801.jpg" height="320" width="240" border="0" alt=""></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.law.harvard.edu/hoanga/2003/11/17/akihabaras-linux-cafe/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-sa/3.0/</creativeCommons:license>
	</item>
		<item>
		<title>The Flying Drive</title>
		<link>http://blogs.law.harvard.edu/hoanga/2003/11/17/the-flying-drive/</link>
		<comments>http://blogs.law.harvard.edu/hoanga/2003/11/17/the-flying-drive/#comments</comments>
		<pubDate>Mon, 17 Nov 2003 11:48:13 +0000</pubDate>
		<dc:creator>hoanga</dc:creator>
				<category><![CDATA[geek]]></category>
		<category><![CDATA[humor]]></category>
		<category><![CDATA[japan]]></category>

		<guid isPermaLink="false">http://blogs.law.harvard.edu/hoanga/2003/11/17/the-flying-drive/</guid>
		<description><![CDATA[
I&#8217;ve seen USB flash drives in the U.S. and they&#8217;re okay.  But in Japan you can get lots of cool designed ones.  There is one for Gundam fans (picture pending), probably even for for Hello Kitty.  However I found this one pretty neat:

]]></description>
			<content:encoded><![CDATA[<p><a name='a195'></a></p>
<p>I&#8217;ve seen USB flash drives in the U.S. and they&#8217;re okay.  But in Japan you can get lots of cool designed ones.  There is one for Gundam fans (picture pending), probably even for for Hello Kitty.  However I found this one pretty neat:<br />
<img src="http://cyber.law.harvard.edu/blogs/static/hoanga/0310251717.jpg" height="320" width="240" border="0" alt=""></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.law.harvard.edu/hoanga/2003/11/17/the-flying-drive/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-sa/3.0/</creativeCommons:license>
	</item>
		<item>
		<title>Japanese  English Electronic Dictionaries Reviews</title>
		<link>http://blogs.law.harvard.edu/hoanga/2003/11/14/japanese-english-electronic-dictionaries-reviews/</link>
		<comments>http://blogs.law.harvard.edu/hoanga/2003/11/14/japanese-english-electronic-dictionaries-reviews/#comments</comments>
		<pubDate>Fri, 14 Nov 2003 16:51:53 +0000</pubDate>
		<dc:creator>hoanga</dc:creator>
				<category><![CDATA[japan]]></category>
		<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://blogs.law.harvard.edu/hoanga/2003/11/14/japanese-english-electronic-dictionari</guid>
		<description><![CDATA[
If you&#8217;re a student of Japanese at some point you&#8217;ve probably come across the need for a dictionary.   In Japan, Electronic dictionaries are very very very popular.  They&#8217;re small, light, have amazing battery life (none of this hours nonsense.   Let&#8217;s talk about months!), and depending on the model have excellent [...]]]></description>
			<content:encoded><![CDATA[<p><a name='a189'></a></p>
<p>If you&#8217;re a student of Japanese at some point you&#8217;ve probably come across the need for a dictionary.   In Japan, Electronic dictionaries are very very very popular.  They&#8217;re small, light, have amazing battery life (none of this hours nonsense.   Let&#8217;s talk about months!), and depending on the model have excellent dictionaries/thesaurus&#8217; included in them.  This is all in about the size of something a little bit bigger than a Palm Pilot and usually much more durable (I&#8217;ve dropped a few quite a few times and they keep going).  And the prices aren&#8217;t too bad.  The range from real cheap ($50) to hundreds of dollars.   However, shopping for one can be really confusing if you&#8217;re at the store.<br />
There is literally a whole isle full of these things (I&#8217;ll have a pic in the future) with the whole price range and far too little information on what the differences are (unless you can read Japanese and even then it&#8217;s not easy to find all the relevant information). <br />
<a href="http://www.bornplaydie.com/japan/dictionary/dictionary.htm">This site</a> that I found has a really wonderful breakdown of what to look for in an Electronic dictionary.   If chosen well it can be a really powerful tool for the Japanese learner.   If chosen poorly it will be just another paperweight to add to your desk.<br />
</a></p>
<p><a href="http://www.bornplaydie.com/japan/dictionary/dictionary.htm">Link to Reviews</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.law.harvard.edu/hoanga/2003/11/14/japanese-english-electronic-dictionaries-reviews/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-sa/3.0/</creativeCommons:license>
	</item>
	</channel>
</rss>
