<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" 
  xmlns:dc="http://purl.org/dc/elements/1.1/"
  xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
  xmlns:admin="http://webns.net/mvcb/"
  xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">

<channel>
<title>Blog - Tetsuya Kitahata</title>
<link>http://www.terra-intl.com/tetsuya/</link>
<description></description>
<dc:language>ja</dc:language>
<dc:creator>tetsuya@apache.org</dc:creator>
<dc:date>2006-01-01T12:25:29+09:00</dc:date>
<admin:generatorAgent rdf:resource="http://www.movabletype.org/?v=3.122-ja" />
<sy:updatePeriod>hourly</sy:updatePeriod>
<sy:updateFrequency>1</sy:updateFrequency>
<sy:updateBase>2000-01-01T12:00+00:00</sy:updateBase>

<item>
<title>С Новым 2006 Годом!</title>
<link>http://www.terra-intl.com/tetsuya/2006/01/new_year.html</link>
<description><![CDATA[謹賀新年 
<p/>
Я (Тэцуя Китахата) поздравляю Вас с наступающи новым годом -- 2006. 
<p/>
皆様にとって来るべき2006年が良い年となりますように。  
<p/>
Happy New Year!
<p/> 
]]></description>
<guid isPermaLink="false">821@http://www.terra-intl.com/tetsuya/</guid>
<dc:subject>Miscs</dc:subject>
<dc:date>2006-01-01T12:25:29+09:00</dc:date>
</item>
<item>
<title>HOWTO: Apache Forrest + Japanese (PDF rendering)</title>
<link>http://www.terra-intl.com/tetsuya/2005/11/forrest_japanese.html</link>
<description><![CDATA[HOWTO: Apache Forrest + Japanese (PDF rendering)
<p/>
<u><em>Feedbacks welcome. (tetsuya at apache dot org)</em></u>
<p/>
<u><em><strong>0. Download <a href="http://forrest.apache.org/">Apache Forrest</a> :-)</strong></em></u>
<p/>
<em>blaｈ-blah ... (run "forrest seed" whereever you want: /$PATH/$TO/ --  edit/create xdocs/***.xml in japanese ... etc. etc.)</em>
<p/>
<u><em><strong>1. Download Free Japanese Fonts</strong></em></u> (&quot;Sazanami Fonts&quot; might be the best).<br/>
<a href="http://www.terra-intl.com/fonts/sazanami-gothic.ttf">http://www.terra-intl.com/fonts/sazanami-gothic.ttf</a> (1)<br/>
<a href="http://www.terra-intl.com/fonts/sazanami-mincho.ttf">http://www.terra-intl.com/fonts/sazanami-mincho.ttf</a> (2)<br/>
<p/>
<u><em><strong>2. Create Font-Metric Files</strong></em></u> (XML)<br/>
% java -cp $FORREST_HOME/lib/core/fop-0.20.5.jar org.apache.fop.fonts.apps.TTFReader /$PATH/$TO/sazanami-gothic.ttf /$PATH/$TO/sazanami-gothic.xml<br/>
% java -cp $FORREST_HOME/lib/core/fop-0.20.5.jar org.apache.fop.fonts.apps.TTFReader /$PATH/$TO/sazanami-mincho.ttf /$PATH/$TO/sazanami-mincho.xml<br/>
Note: You can download and use <a href="http://www.terra-intl.com/fonts/sazanami-gothic.xml">sazanami-gothic.xml</a> and <a href="http://www.terra-intl.com/fonts/sazanami-mincho.xml">sazanami-mincho.xml</a> if you use (1) and (2) above. If you download other font files or use Windows default fonts (MS-Mincho/MS-Gothic), you should create font-metric files equivalent for them by yourself.<br/>
<p/>
<u><em><strong>3. Create new &quot;userconfig.xml&quot; file</strong></em></u> -- e.g. /$PATH/$TO/font/userconfig.xml<br/>
<br/>
&lt;configuration&gt;<br/>
&lt;fonts&gt;<br/>
  &lt;font metrics-file=&quot;/$PATH/$TO/sazanami-gothic.xml&quot; embed-file=&quot;/$PATH/$TO/sazanami-gothic.ttf&quot; kerning=&quot;yes&quot;&gt;<br/>
    &lt;font-triplet name=&quot;Gothic&quot; style=&quot;normal&quot; weight=&quot;normal&quot;/&gt;<br/>
    &lt;font-triplet name=&quot;Gothic&quot; style=&quot;normal&quot; weight=&quot;bold&quot;/&gt;<br/>
    &lt;font-triplet name=&quot;Gothic&quot; style=&quot;italic&quot; weight=&quot;normal&quot;/&gt;<br/>
    &lt;font-triplet name=&quot;Gothic&quot; style=&quot;italic&quot; weight=&quot;bold&quot;/&gt;<br/>
  &lt;/font&gt;<br/>
  &lt;font metrics-file=&quot;/$PATH/$TO/sazanami-mincho.xml&quot; embed-file=&quot;/$PATH/$TO/sazanami-mincho.ttf&quot; kerning=&quot;yes&quot;&gt;<br/>
    &lt;font-triplet name=&quot;Mincho&quot; style=&quot;normal&quot; weight=&quot;normal&quot;/&gt;<br/>
    &lt;font-triplet name=&quot;Mincho&quot; style=&quot;normal&quot; weight=&quot;bold&quot;/&gt;<br/>
    &lt;font-triplet name=&quot;Mincho&quot; style=&quot;italic&quot; weight=&quot;normal&quot;/&gt;<br/>
    &lt;font-triplet name=&quot;Mincho&quot; style=&quot;italic&quot; weight=&quot;bold&quot;/&gt;<br/>
  &lt;/font&gt;<br/>
&lt;/fonts&gt;<br/>
&lt;/configuration&gt;<br/>
<p/>
<u><em><strong>4. Edit /$PATH/$TO/resources/conf/sitemap.xmap</strong></em></u> (&quot;fo2pdf&quot; section)<br/>
&lt;map:serializer name=&quot;fo2pdf&quot; src=&quot;org.apache.cocoon.serialization.FOPSerializer&quot; mime-type=&quot;application/pdf&quot;&gt;<br/>
    &lt;user-config src=&quot;/$PATH/$TO/font/userconfig.xml&quot;/&gt;<br/>
&lt;/map:serializer&gt;<p/>
Note: Apache Forrest 0.7 provides PLUGIN functionality, so perhaps you should do above for these 2 files<br/>
$FORREST_HOME/build/plugins/org.apache.forrest.plugin.output.pdf/output.xmap<br/>
$FORREST_HOME/plugins/org.apache.forrest.plugin.output.pdf/output.xmap<br/>
<p/>
<u><em><strong>5. Change &quot;Skin&quot; config</strong></em></u>-- edit $FORREST_HOME/main/webapp/skins/common/xslt/fo/document2fo.xsl<br/>
REPLACE:  font-family=&quot;serif&quot; -&gt; font-family=&quot;Gothic&quot;<br/>
REPLACE:  font-family=&quot;sans-serif&quot; -&gt; font-family=&quot;Mincho&quot;<br/>
REPLACE:  &lt;fo:root xmlns:fo=&quot;http://www.w3.org/1999/XSL/Format&quot;&gt; into &lt;fo:root xmlns:fo=&quot;http://www.w3.org/1999/XSL/Format&quot; language=&quot;ja&quot;&gt;<br/>
<p/>
<u><em><strong>6. Yell out!</strong></em></u> &quot;Run Forrest! Run!&quot; with girlish voice --- :-)<br/>
% cd /$PATH/$TO/<br/>
% forrest site<br/>
<p/>
]]></description>
<guid isPermaLink="false">780@http://www.terra-intl.com/tetsuya/</guid>
<dc:subject>English</dc:subject>
<dc:date>2005-11-05T10:19:28+09:00</dc:date>
</item>
<item>
<title>SC UniPad - The Unicode Plain Text Editor</title>
<link>http://www.terra-intl.com/tetsuya/2005/11/unipad.html</link>
<description><![CDATA[SC UniPad - The Unicode Plain Text Editor
<p/>
It was very nice for me to find <a href="http://www.unipad.org/main/">"SC UniPad"</a>. I had been wondering how to deal with Cyrillics using keyboard (Should I buy another keyboard merely for the input of Cyrillic letters?). "SC UniPad" provides virtual keyboards.
<p/>
The wonderful thing is -- UniPad is also able to convert Unicode characters into XML character reference, easily.<br/>
e.g. &#1052;&#1077;&#1085;&#1103;&#32;&#1079;&#1086;&#1074;&#1091;&#1090;&#32;&#1058;&#1101;&#1094;&#1091;&#1103;&#46; (&amp;#1052;&amp;#1077;&amp;#1085;&amp;#1103;&amp;#32;&amp;#1079;&amp;#1086;&amp;#1074;&amp;#1091; &amp;#1090;&amp;#32;&amp;#1058;&amp;#1101;&amp;#1094;&amp;#1091;&amp;#1103;&amp;#46;)<br/>
e.g. &#2325;&#2367;&#2340;&#2366;&#2361;&#2366;&#2340;&#2366;&#32;&#2340;&#2375;&#2340;&#2369;&#2351;&#2366; (&amp;#2325;&amp;#2367;&amp;#2340;&amp;#2366;&amp;#2361;&amp;#2366;&amp;#2340;&amp;#2366; &amp;#32;&amp;#2340;&amp;#2375;&amp;#2340;&amp;#2369;&amp;#2351;&amp;#2366;)
<p/>
--- ah, plus UniPad can convert them into UCN (\u...). Java engineers who should deal with "Resource Bundles" can reap the maximum fruit from it.<br/>
e.g. &#x0649;&#x064A;&#x062A;&#x0627;&#xFEA6;&#x0627;&#x062B;&#x0627; (\u0649\u064a\u062a\u0627\ufea6\u0627\u062b\u0627)
<p/>
I learned Russian/Hindi/Arabic etc... @ the university (more than 10 years ago). Perhaps, I will remember them.
<p/>
]]></description>
<guid isPermaLink="false">779@http://www.terra-intl.com/tetsuya/</guid>
<dc:subject>English</dc:subject>
<dc:date>2005-11-05T08:53:17+09:00</dc:date>
</item>
<item>
<title>Line Breaking Properties</title>
<link>http://www.terra-intl.com/tetsuya/2005/10/punctuation.html</link>
<description><![CDATA[Line Breaking Properties
<p/>
<a href="http://www.unicode.org/unicode/reports/tr14/">http://www.unicode.org/unicode/reports/tr14/</a>
<p/>
Are these implemented by <a href="http://xmlgraphics.apache.org/fop/">Apache FOP</a>?
<p/>
I am now seeking the way to deal with "Japanese hyphenation" (<i>kinsoku shori</i>: <a href="http://ja.wikipedia.org/wiki/%E7%A6%81%E5%89%87">http://ja.wikipedia.org/wiki/%E7%A6%81%E5%89%87</a>) and "Punctuation" (<a href="http://en.wikipedia.org/wiki/Punctuation">http://en.wikipedia.org/wiki/Punctuation</a>) .... hack, hack.
<p/>
]]></description>
<guid isPermaLink="false">777@http://www.terra-intl.com/tetsuya/</guid>
<dc:subject>English</dc:subject>
<dc:date>2005-10-27T09:05:06+09:00</dc:date>
</item>
<item>
<title>ApacheNews + PDF</title>
<link>http://www.terra-intl.com/tetsuya/2005/10/pdf_news.html</link>
<description><![CDATA[ApacheNews + PDF
<p/>
For What It Worth :-), I've just added category based PDF files to "<a href="http://www.apachenews.org/">Apache News Online</a>". For fun ;)
<p/>
ex.1 <a href="http://www.apachenews.org/archives/news_apache_jakarta.pdf">http://www.apachenews.org/archives/news_apache_jakarta.pdf</a><br/>
ex.2 <a href="http://www.apachenews.org/archives/news_apache_webservices.pdf">http://www.apachenews.org/archives/news_apache_webservices.pdf</a><br/>
ex.3 <a href="http://www.apachenews.org/archives/news_apache_xml.pdf">http://www.apachenews.org/archives/news_apache_xml.pdf</a><br/>
ex.4 <a href="http://www.apachenews.org/archives/news_apache_http.pdf">http://www.apachenews.org/archives/news_apache_http.pdf</a><br/>
<p/>
powered by <a href="http://forrest.apache.org/">Apache Forrest</a>
<p/>
]]></description>
<guid isPermaLink="false">769@http://www.terra-intl.com/tetsuya/</guid>
<dc:subject>English</dc:subject>
<dc:date>2005-10-19T12:27:02+09:00</dc:date>
</item>
<item>
<title>Backslash ..</title>
<link>http://www.terra-intl.com/tetsuya/2005/10/backslash.html</link>
<description><![CDATA[<img alt="maven.gif" src="http://www.terra-intl.com/tetsuya/maven.gif" width="640" height="400" />
<p/>
I think this tells everything ;-)
<p/>
]]></description>
<guid isPermaLink="false">762@http://www.terra-intl.com/tetsuya/</guid>
<dc:subject>English</dc:subject>
<dc:date>2005-10-15T03:40:55+09:00</dc:date>
</item>
<item>
<title>PL/SQL + PDF = PL/PDF</title>
<link>http://www.terra-intl.com/tetsuya/2005/10/plpdf.html</link>
<description><![CDATA[Generate PDF files / Oracle HTML DB
<p/>
<a href="http://plpdf.com/">http://plpdf.com/</a>
<p/>
Memo, memo ...
<p/>
]]></description>
<guid isPermaLink="false">758@http://www.terra-intl.com/tetsuya/</guid>
<dc:subject>English</dc:subject>
<dc:date>2005-10-13T13:55:40+09:00</dc:date>
</item>
<item>
<title>Donation to Gmane</title>
<link>http://www.terra-intl.com/tetsuya/2005/10/gmane.html</link>
<description><![CDATA[Donation to Gmane
<p/>
<a href="http://gmane.org/donate.php">http://gmane.org/donate.php</a>
<p/>
I made a <a href="http://gmane.org/donate.php">donation</a> to <a href="http://gmane.org/">Gmane</a> (To be precise -- Gmane Hardware Fund) a few days ago. My name appeared on the list <a href="http://gmane.org/donors.php">here</a>, soon. (Tusen takk, Lars!)
<p/>
]]></description>
<guid isPermaLink="false">748@http://www.terra-intl.com/tetsuya/</guid>
<dc:subject>English</dc:subject>
<dc:date>2005-10-06T21:53:03+09:00</dc:date>
</item>
<item>
<title>Donation to the Python Software Foundation</title>
<link>http://www.terra-intl.com/tetsuya/2005/09/python.html</link>
<description><![CDATA[Donation to the Python Software Foundation
<p/>
<a href="http://www.python.org/psf/donations.html">http://www.python.org/psf/donations.html</a>
<p/>
I donated some money to <a href="http://www.python.org/">the Python Software Foundation</a> the other day. Surprisingly, my name has been listed <a href="http://www.python.org/psf/donations.html">here</a> within 24 hours. 24-HOURS! I could not believe it! (On the contrary, there are some Foundations which *NEVER* contacted me ... plus, my name listed nowhere -- I am still not sure where my donations might have gone :-( )
<p/>
Needless to say, today I made an additional donation to the PSF -- with my sincere gratitude to the Foundation.
<p/>
]]></description>
<guid isPermaLink="false">741@http://www.terra-intl.com/tetsuya/</guid>
<dc:subject>English</dc:subject>
<dc:date>2005-09-30T02:37:54+09:00</dc:date>
</item>
<item>
<title>Women@apache announcement / Japanized</title>
<link>http://www.terra-intl.com/tetsuya/2005/08/women_apache.html</link>
<description><![CDATA[<a href="http://japan.cnet.com/news/ent/story/0,2000047623,20086628,00.htm">http://japan.cnet.com/news/ent/story/0,2000047623,20086628,00.htm</a>]]></description>
<guid isPermaLink="false">713@http://www.terra-intl.com/tetsuya/</guid>
<dc:subject>English</dc:subject>
<dc:date>2005-08-25T05:34:10+09:00</dc:date>
</item>
<item>
<title>Disk Stakka - CD/DVD Manager / MSDN</title>
<link>http://www.terra-intl.com/tetsuya/2005/08/diskstakka.html</link>
<description><![CDATA[Disk Stakka - CD/DVD Manager / MSDN
<p/>
<a href="http://msdn.imation.com/">http://msdn.imation.com/</a>
<p/>
As I mentioned <a href="http://www.terra-intl.com/tetsuya/2005/06/msdn.html">before</a>, I am now MSDN (Microsoft Developer Network) Subscriber. Luckily enough, I could get it from MSDN for gift campaign of this subscription -- comprehensive CD/DVD manager, "Disk Stakka".
<p/>
Really nice tool. I often felt that managing CD/DVDs had been really boring. I love "Disk Stakka". According to the blurb :) -- "Disk Stakka makes traditional disc management obsolete". Perhaps, it would be true.
<p/>
]]></description>
<guid isPermaLink="false">707@http://www.terra-intl.com/tetsuya/</guid>
<dc:subject>English</dc:subject>
<dc:date>2005-08-18T01:18:29+09:00</dc:date>
</item>
<item>
<title>San Diego</title>
<link>http://www.terra-intl.com/tetsuya/2005/08/sandiego.html</link>
<description><![CDATA[San Diego
<p/>
For some reason, I found a nice website about San Diego, California written in Japanese. :-)<br/>
<a href="http://www.sandiegotown.com/">http://www.sandiegotown.com/</a>
<p/>
Note: <a href="http://www.apachecon.com/2005/US/index.html">ApacheCon US 2005</a> -- 10-14 December 2005
<p/>
]]></description>
<guid isPermaLink="false">698@http://www.terra-intl.com/tetsuya/</guid>
<dc:subject>English</dc:subject>
<dc:date>2005-08-15T04:16:13+09:00</dc:date>
</item>
<item>
<title>Orkut / Japanese</title>
<link>http://www.terra-intl.com/tetsuya/2005/08/orkut.html</link>
<description><![CDATA[Orkut / Japanese
<p/>
Seems that we can switch <a href="http://www.orkut.com/">orkut.com</a>'s interface language to other than English (Portuguese, French, Italian, German, Spanish, Traditional & Simplified Chinese, Japanese, Korean, Dutch and Russian).
<p/>
In order to switch orkut's interface language, go to "home page" and click on the "settings" button.
<p/>
]]></description>
<guid isPermaLink="false">686@http://www.terra-intl.com/tetsuya/</guid>
<dc:subject>English</dc:subject>
<dc:date>2005-08-08T00:45:42+09:00</dc:date>
</item>
<item>
<title>Reality Mining</title>
<link>http://www.terra-intl.com/tetsuya/2005/08/realitymining.html</link>
<description><![CDATA[Reality Mining : MIT
<p/>
<a href="http://reality.media.mit.edu/">http://reality.media.mit.edu/</a>
<p/>
Cool. For some reason, this reminded me of <a href="http://people.apache.org/~stefano/agora/">Apache Agora</a> (Project).
<p/>
]]></description>
<guid isPermaLink="false">682@http://www.terra-intl.com/tetsuya/</guid>
<dc:subject>English</dc:subject>
<dc:date>2005-08-02T23:46:28+09:00</dc:date>
</item>
<item>
<title>Flash Mental Calculation</title>
<link>http://www.terra-intl.com/tetsuya/2005/07/calc.html</link>
<description><![CDATA[<a href="http://www.soroban.com/fanzan/indexE.html">http://www.soroban.com/fanzan/indexE.html</a>
<p/>
It might be very interesting to challenge "championship number 3 digit 10 rows" calc. Try it out!
<p/>
]]></description>
<guid isPermaLink="false">669@http://www.terra-intl.com/tetsuya/</guid>
<dc:subject>English</dc:subject>
<dc:date>2005-07-07T04:16:19+09:00</dc:date>
</item>
<item>
<title>JavaOne Tokyo 2005 (15 - 17, November)</title>
<link>http://www.terra-intl.com/tetsuya/2005/06/javaone.html</link>
<description><![CDATA[<a href="http://jp.sun.com/javaone/index_e.html">http://jp.sun.com/javaone/index_e.html</a>
]]></description>
<guid isPermaLink="false">664@http://www.terra-intl.com/tetsuya/</guid>
<dc:subject>English</dc:subject>
<dc:date>2005-06-30T05:39:07+09:00</dc:date>
</item>
<item>
<title>MSDN Subscription - activated</title>
<link>http://www.terra-intl.com/tetsuya/2005/06/msdn.html</link>
<description><![CDATA[MSDN Subscription - activated
<p/>
I activated my MSDN Subscription account, again. I had been a member of MSDN Universal for three years (paid US$6,000 or more for it! year 2000 - 2003), and had left because I'd completely lost my motivation to work for information technology for the last three years.
<p/>
Still expensive! - oldie but goodie
<p/>
]]></description>
<guid isPermaLink="false">654@http://www.terra-intl.com/tetsuya/</guid>
<dc:subject>English</dc:subject>
<dc:date>2005-06-17T14:48:12+09:00</dc:date>
</item>
<item>
<title>Fortune 1000 Web Sites</title>
<link>http://www.terra-intl.com/tetsuya/2005/06/iis.html</link>
<description><![CDATA[<a href="http://www.port80software.com/surveys/">http://www.port80software.com/surveys/</a>
<p/>
... Really?
<p/>
]]></description>
<guid isPermaLink="false">646@http://www.terra-intl.com/tetsuya/</guid>
<dc:subject>English</dc:subject>
<dc:date>2005-06-12T03:11:54+09:00</dc:date>
</item>
<item>
<title>Bye-bye &quot;Sub-Marine&quot;</title>
<link>http://www.terra-intl.com/tetsuya/2005/06/.html</link>
<description><![CDATA[Bye-bye "Sub-Marine"
<p/>
<a href="http://news.com.com/2100-1028_3-5737961.html">http://news.com.com/2100-1028_3-5737961.html</a>
<p/>
Seems that America is now trying to change the bad patend system, granting the patent to the first inventor, into the opposite system - principle of first-to-file - "Global Standard".
<p/>
Good news, indeed. We are in the days of 21st century, not in the days of Christopher Columbus.
<p/>
]]></description>
<guid isPermaLink="false">645@http://www.terra-intl.com/tetsuya/</guid>
<dc:subject>English</dc:subject>
<dc:date>2005-06-11T13:40:55+09:00</dc:date>
</item>
<item>
<title>Google Sitemaps</title>
<link>http://www.terra-intl.com/tetsuya/2005/06/google_sitemaps.html</link>
<description><![CDATA[<a href="https://www.google.com/webmasters/sitemaps/">https://www.google.com/webmasters/sitemaps/</a>
<p/>
Great! By using this, perhaps I will never be annoyed by "GOOGLE BOT ATTACKS" -- I'd upgraded my web server several times  ($350/month now! -- <font color="red">structural/cumulative fiscal deficit!</font>) because I have had so many bots coming.
<p/>
Relieved. :-)
<p/>
]]></description>
<guid isPermaLink="false">644@http://www.terra-intl.com/tetsuya/</guid>
<dc:subject>English</dc:subject>
<dc:date>2005-06-11T02:11:01+09:00</dc:date>
</item>
<item>
<title>Microsoft Update</title>
<link>http://www.terra-intl.com/tetsuya/2005/06/msupdate.html</link>
<description><![CDATA[<a href="http://update.microsoft.com/microsoftupdate/">http://update.microsoft.com/microsoftupdate/</a>
<p/>
plus ... seems that Mr. Furukawa, the Founder of Microsoft Japan, <a href="http://japan.cnet.com/news/biz/story/0,2000050156,20084339,00.htm">resigned</a> MS-J CTO at last ... (sad) ... The end of MS era.
<p/>
]]></description>
<guid isPermaLink="false">643@http://www.terra-intl.com/tetsuya/</guid>
<dc:subject>English</dc:subject>
<dc:date>2005-06-11T00:25:52+09:00</dc:date>
</item>
<item>
<title>Vacation</title>
<link>http://www.terra-intl.com/tetsuya/2005/06/journey.html</link>
<description><![CDATA[I will attend the <a href="http://apachecon.com/">ApacheCon EU 2005</a> (in Germany, July 20-22, 2005).
<p/>
Plus, go to chicago in order to participate in another conference at Illinois, USA (August 17-21, 2005 -- plus summer vacation)
<p/>
Journey-- :-)
<p/>
]]></description>
<guid isPermaLink="false">642@http://www.terra-intl.com/tetsuya/</guid>
<dc:subject>English</dc:subject>
<dc:date>2005-06-08T13:11:46+09:00</dc:date>
</item>
<item>
<title>Tech-On</title>
<link>http://www.terra-intl.com/tetsuya/2005/06/techon.html</link>
<description><![CDATA[Tech-On! tech news--straight from Asia
<p/>
<a href="http://techon.nikkeibp.co.jp/english/">http://techon.nikkeibp.co.jp/english/</a>
<p/>
]]></description>
<guid isPermaLink="false">640@http://www.terra-intl.com/tetsuya/</guid>
<dc:subject>English</dc:subject>
<dc:date>2005-06-07T14:38:03+09:00</dc:date>
</item>
<item>
<title>JBoss and NEC</title>
<link>http://www.terra-intl.com/tetsuya/2005/05/jboss_nec.html</link>
<description><![CDATA[JBoss and NEC

<a href="http://nikkeibp.jp/wcs/show/leaf/CID/onair/jp/flash_rss/378008/">http://nikkeibp.jp/wcs/show/leaf/CID/onair/jp/flash_rss/378008/</a><br/>
(Japanese)
<p/>
and
<p/>
<a href="http://jboss.org/jbossBlog/blog/mfleury/2005/05/30/I_am_in_tokyo.txt">http://jboss.org/jbossBlog/blog/mfleury/2005/05/30/I_am_in_tokyo.txt</a>
<p/>
----
<p/>
Congratulations.
<p/>
I, personally, would like to recommend Marc to set up, launch "certification" and "education" programs (like SJC-P, SJC-WC) for the products of JBoss Federation (JBoss AS, JBoss Cache, Javassist ... ) in Japan.
(I once suggested such a kind of thing to the Board of Directors, Apache Software Foundation -- October 2003, if i remember correctly ---- They'd REJECTED, though :-( )
<p/>
Japanese IT engineers DO like "certification"s. Big Market. Good Luck.
<p/>
]]></description>
<guid isPermaLink="false">636@http://www.terra-intl.com/tetsuya/</guid>
<dc:subject>English</dc:subject>
<dc:date>2005-05-31T17:20:51+09:00</dc:date>
</item>
<item>
<title>MailingList Archives, News Server, and RSS</title>
<link>http://www.terra-intl.com/tetsuya/2005/05/automated.html</link>
<description><![CDATA[MailingList Archives, News Server, and RSS
<p/>
I am still wondering which would be "smart" choice for us to convert among MailingList Archives (e.g. ezmlm archives), News Server Archives, and RSS feeds.
<p/>
I once tried (experimantal) to setup "colobus" and to convert targeted mbox archives to (semi-automatic) news server archives. Plus, converted them to HTML and RSS -- by using (hacked :-) some PHP scripts found at <a href="http://www.php.net/">PHP.net</a>
<p/>
I know that there are strong needs for "automated cross-convert" system. You do not have to rely upon "blog", if there are nice converters from MailingList archives to RSS -- as Content Management System (CMS). Mmmmm ... Consulting <a href="http://james.apache.org/">Apache James</a> would be the smarter choice? :-)
<p/>
]]></description>
<guid isPermaLink="false">633@http://www.terra-intl.com/tetsuya/</guid>
<dc:subject>English</dc:subject>
<dc:date>2005-05-28T22:59:02+09:00</dc:date>
</item>
<item>
<title>Additional Donation to the ASF</title>
<link>http://www.terra-intl.com/tetsuya/2005/05/additional_donation.html</link>
<description><![CDATA[<a href="http://www.terra-intl.com/tetsuya/2005/05/donation.html">Additional Donation</a> to the ASF
<p/>
Today, I've made out a check for US$750.00 at <a href="http://www.citibank.co.jp/">Citibank N.A.</a> (Shibuya, Tokyo)
for the purpose of my personal donation to the ASF (<a href="http://www.apache.org/">The Apache Software Foundation</a>).
<p/>
This was the first time (in my life) I issued a remittance check. (Transfer) <br/>
# We are not accustomed to use "CHECK"s.
<p/>
I will write a message/letter to the treasurer in order to tell him/her the specific targets and projects that I wish to directly support by these donations - US$1,500.00 (donation via this CHECK plus <a href="http://www.terra-intl.com/tetsuya/2005/05/donation.html">donation via PAYPAL</a> that I've made 3 weeks ago) , and will enclose a check for US$750.00 with the letter, physical mail -- in the middle of June, 2005.
<p/>
Hope these donations to be harmonized with the <a href="http://www.guidestar.org/controller/searchResults.gs?action_gsReport=1&npoId=1166096">current assets</a> of <a href="http://www.apache.org/">the ASF</a>.
<p/>
]]></description>
<guid isPermaLink="false">628@http://www.terra-intl.com/tetsuya/</guid>
<dc:subject>English</dc:subject>
<dc:date>2005-05-25T14:00:50+09:00</dc:date>
</item>
<item>
<title>Fear of POVERTY, Fear of CRITICISM</title>
<link>http://www.terra-intl.com/tetsuya/2005/05/fear.html</link>
<description><![CDATA[Fear of POVERTY, Fear of CRITICISM
<p/>
I'd been sick for these 3 years -- Fear of POVERTY.
<p/>
I'd been sick for these 30 years -- Fear of CRITICISM (from the others).
<p/>
I've completely lost my enthusiasm for works early in 2002 -- with frightful plastic debts. <br/>
I had to confess I had been at severe stage of alcoholism. I had to overcome.
<p/>
----
<p/>
NOW -- I am free! Free from these fears!
<p/>
GOT OVER AT LAST!!
<p/>
Love.
<p/>
]]></description>
<guid isPermaLink="false">618@http://www.terra-intl.com/tetsuya/</guid>
<dc:subject>English</dc:subject>
<dc:date>2005-05-10T10:42:03+09:00</dc:date>
</item>
<item>
<title>Donations to Apache (ASF)</title>
<link>http://www.terra-intl.com/tetsuya/2005/05/donation.html</link>
<description><![CDATA[Donations to Apache (ASF)
<p/>
This is the first time I contributed to the ASF (<a href="http://www.apache.org/">The Apache Software Foundation</a>) via donations, financially - US$750. This is what I'd wanted to do for a long time.
<p/>
Perhaps other people and so many companies in our country (Japan) can / want to donate and support the ASF, financially, because many people feel "thanx" to the continuous activities and great products created by the foundation. However, there seem less fully worked-out ideas for it. -- I am still wondering how (tax deduction? listing up donator's names?) to raise the funds from our country.<br/>
# E.g. In our country, people prefer to use "Remittion-by-BANK-Draft" rather than "CHECK" -- normal business practice in Japan
<p/>
<a href="http://www.apache.org/foundation/contributing.html">http://www.apache.org/foundation/contributing.html</a>
<p/>
]]></description>
<guid isPermaLink="false">613@http://www.terra-intl.com/tetsuya/</guid>
<dc:subject>English</dc:subject>
<dc:date>2005-05-05T12:42:41+09:00</dc:date>
</item>
<item>
<title>1st anniversary of apachenews.org</title>
<link>http://www.terra-intl.com/tetsuya/2005/03/1st_anniversary.html</link>
<description><![CDATA[1st anniversary of apachenews.org
<p/>
Seems that it is the 1st anniversary of <a href="http://www.apachenews.org/">apachenews.org</a>.
<p/>
Now, <a href="http://www.apachenews.org/">this</a> has over 20,000 PVs per day.
<p/>
I hope more apache folks (including the apache committers/members) to use this website -- especially, people in apache <a href="http://xml.apache.org/">xml</a>/<a href="http://ws.apache.org/">webservices</a> area.
<p/>
----
<p/>
<a href="http://www.apachenews.org/archives/cat_apache_jakarta_index.html">http://www.apachenews.org/archives/cat_apache_jakarta_index.html</a><br/>
<a href="http://www.apachenews.org/archives/cat_apache_xml_index.html">http://www.apachenews.org/archives/cat_apache_xml_index.html</a><br/>
<a href="http://www.apachenews.org/archives/cat_apache_webservices_index.html">http://www.apachenews.org/archives/cat_apache_webservices_index.html</a><br/>
]]></description>
<guid isPermaLink="false">582@http://www.terra-intl.com/tetsuya/</guid>
<dc:subject>English</dc:subject>
<dc:date>2005-03-13T04:58:28+09:00</dc:date>
</item>
<item>
<title>Jakarta.JP Launched</title>
<link>http://www.terra-intl.com/tetsuya/2005/01/jakarta.jp.html</link>
<description><![CDATA[FYI:
<p/>
<a href="http://jakarta.terra-intl.com/">http://jakarta.terra-intl.com/</a>
<p/>
->
<p/>
(JAKARTA.JP)<br/>
<a href="http://jakarta.jp/">http://jakarta.jp/</a>
<p/>

]]></description>
<guid isPermaLink="false">548@http://www.terra-intl.com/tetsuya/</guid>
<dc:subject>English</dc:subject>
<dc:date>2005-01-17T15:19:17+09:00</dc:date>
</item>


</channel>
</rss>
