<?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"
	>

<channel>
	<title>Jun Araki's Blog</title>
	<atom:link href="http://junaraki.net/blog/en/feed" rel="self" type="application/rss+xml" />
	<link>http://junaraki.net/blog/en</link>
	<description></description>
	<pubDate>Fri, 30 Jul 2010 20:06:13 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.3</generator>
	<language>en</language>
			<item>
		<title>English tokenizer</title>
		<link>http://junaraki.net/blog/en/2010/07/17/353.html</link>
		<comments>http://junaraki.net/blog/en/2010/07/17/353.html#comments</comments>
		<pubDate>Sun, 18 Jul 2010 06:32:44 +0000</pubDate>
		<dc:creator>araki</dc:creator>
		
		<category><![CDATA[Research]]></category>

		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://junaraki.net/blog/en/?p=353</guid>
		<description><![CDATA[When I build statistical language models (e.g. bigrams and trigrams) trained on a particular corpus or some set of documents, firstly I feel like taking a look at some statistical properties of the set, such as the total number of tokens, the average number of tokens per sentence or per utterance, and so on.  [...]]]></description>
			<content:encoded><![CDATA[<p>When I build statistical language models (e.g. bigrams and trigrams) trained on a particular corpus or some set of documents, firstly I feel like taking a look at some statistical properties of the set, such as the total number of tokens, the average number of tokens per sentence or per utterance, and so on.  Any set of documents, even one consisting of a tremendous number of newspaper articles, is biased in some manner from a statistical perspective, mainly because people collect the data in a particular domain or domains.</p>
<p>Suppose that I need a list of unique words from English sentences described in a text file sentences.txt.  Then my initial step is often to use a crude shell command like this:</p>
<pre name="code" class="python">

$ cat sentences.txt | tr &#039; &#039; &#039;\n&#039; | sed &#039;/^$/ d&#039; | sort | uniq &gt; unique_words.txt
</pre>
<p>The list I obtain with this command is neither tokenized nor lemmatized, but it could be sufficient for a quick analysis where I try to get a handle on approximately how many unique words occur in the target document.</p>
<p>If I need a more complicated analysis like extracting a list of unique words with their frequencies, the next step is likely to involve tokenization.  A range of tokenization algorithms have so far been proposed according to respective natural languages.  As for English, it seems that the simplest way is to build a tokenizer with regular expressions, as mentioned in Jurafsky and Martin 2000.  For future reference, I will attach my Java code for English tokenization to this post.</p>
<pre name="code" class="java">

import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.regex.Pattern;
import java.util.regex.Matcher;

/**
 * Tokenizes strings described in English.
 *
 * @author Jun Araki
 */
public class EnglishTokenizer {
    /** A string to be tokenized. */
    private String str;

    /** Tokens. */
    private ArrayList&lt;String&gt; tokenList;

    /** A regular expression for letters and numbers. */
    private static final String regexLetterNumber = &quot;[a-zA-Z0-9]&quot;;

    /** A regular expression for non-letters and non-numbers. */
    private static final String regexNotLetterNumber = &quot;[^a-zA-Z0-9]&quot;;

    /** A regular expression for separators. */
    private static final String regexSeparator = &quot;[\\?!()\&quot;;/\\|`]&quot;;

    /** A regular expression for separators. */
    private static final String regexClitics =
        &quot;&#039;|:|-|&#039;S|&#039;D|&#039;M|&#039;LL|&#039;RE|&#039;VE|N&#039;T|&#039;s|&#039;d|&#039;m|&#039;ll|&#039;re|&#039;ve|n&#039;t&quot;;

    /** Abbreviations. */
    private static final List&lt;String&gt; abbrList =
        Arrays.asList(&quot;Co.&quot;, &quot;Corp.&quot;, &quot;vs.&quot;, &quot;e.g.&quot;, &quot;etc.&quot;, &quot;ex.&quot;, &quot;cf.&quot;,
            &quot;eg.&quot;, &quot;Jan.&quot;, &quot;Feb.&quot;, &quot;Mar.&quot;, &quot;Apr.&quot;, &quot;Jun.&quot;, &quot;Jul.&quot;, &quot;Aug.&quot;,
            &quot;Sept.&quot;, &quot;Oct.&quot;, &quot;Nov.&quot;, &quot;Dec.&quot;, &quot;jan.&quot;, &quot;feb.&quot;, &quot;mar.&quot;,
            &quot;apr.&quot;, &quot;jun.&quot;, &quot;jul.&quot;, &quot;aug.&quot;, &quot;sept.&quot;, &quot;oct.&quot;, &quot;nov.&quot;,
            &quot;dec.&quot;, &quot;ed.&quot;, &quot;eds.&quot;, &quot;repr.&quot;, &quot;trans.&quot;, &quot;vol.&quot;, &quot;vols.&quot;,
            &quot;rev.&quot;, &quot;est.&quot;, &quot;b.&quot;, &quot;m.&quot;, &quot;bur.&quot;, &quot;d.&quot;, &quot;r.&quot;, &quot;M.&quot;, &quot;Dept.&quot;,
            &quot;MM.&quot;, &quot;U.&quot;, &quot;Mr.&quot;, &quot;Jr.&quot;, &quot;Ms.&quot;, &quot;Mme.&quot;, &quot;Mrs.&quot;, &quot;Dr.&quot;,
            &quot;Ph.D.&quot;);

    /**
     * Constructs a string to be tokenized and an empty list for tokens.
     *
     * @param  str  a string to be tokenized
     */
    public EnglishTokenizer(String str) {
        this.str = str;
        tokenList = new ArrayList&lt;String&gt;();
    }

    /**
     * Tokenizes a string using the algorithms by Grefenstette (1999) and
     * Palmer (2000).
     */
    public void tokenize() {
        // Changes tabs into spaces.
        str = str.replaceAll(&quot;\\t&quot;, &quot; &quot;);

        // Put blanks around unambiguous separators
        str = str.replaceAll(&quot;(&quot; + regexSeparator + &quot;)&quot;, &quot; $1 &quot;);

        // Put blanks around commas that are not inside numbers
        str = str.replaceAll(&quot;([^0-9]),&quot;, &quot;$1 , &quot;);
        str = str.replaceAll(&quot;,([^0-9])&quot;, &quot; , $1&quot;);

        // Distinguishes single quotes from apstrophes by segmenting off
        // single quotes not preceded by letters
        str = str.replaceAll(&quot;^(&#039;)&quot;, &quot;$1 &quot;);
        str = str.replaceAll(&quot;(&quot; + regexNotLetterNumber + &quot;)&#039;&quot;, &quot;$1 &#039;&quot;);

        // Segments off unambiguous word-final clitics and punctuations
        str = str.replaceAll(&quot;(&quot; + regexClitics + &quot;)$&quot;, &quot; $1&quot;);
        str = str.replaceAll(
                &quot;(&quot; + regexClitics + &quot;)(&quot; + regexNotLetterNumber + &quot;)&quot;,
                &quot; $1 $2&quot;);

        // Deals with periods.
        String[] words = str.trim().split(&quot;\\s+&quot;);
        Pattern p1 = Pattern.compile(&quot;.*&quot; + regexLetterNumber + &quot;\\.&quot;);
        Pattern p2 = Pattern.compile(
            &quot;^([A-Za-z]\\.([A-Za-z]\\.)+|[A-Z][bcdfghj-nptvxz]+\\.)$&quot;);
        for (String word : words) {
            Matcher m1 = p1.matcher(word);
            Matcher m2 = p2.matcher(word);
            if (m1.matches() &amp;&amp; !abbrList.contains(word) &amp;&amp; !m2.matches()) {
                // Segments off the period.
                tokenList.add(word.substring(0, word.length() - 1));
                tokenList.add(word.substring(word.length() - 1));
            } else {
                tokenList.add(word);
            }
        }
    }

    /**
     * Returns tokenized strings.
     *
     * @return  a list of tokenized strings
     */
    public String[] getTokens() {
        String[] tokens = new String[tokenList.size()];
        tokenList.toArray(tokens);
        return tokens;
    }
}
</pre>
<p>References:</p>
<p>Daniel Jurafsky and James H. Martin. 2000. Speech and Language Processing: An Introduction to Natural Language Processing, Computational Linguistics and Speech Recognition (Prentice Hall Series in Artificial Intelligence). Prentice Hall.</p>
<p>Gregory Grefenstette. 1999. Tokenization. In van Halteren, H. (Ed.), Syntactic Wordclass Tagging. Kluwer.</p>
<p>David D. Palmer. 2000. Tokenisation and sentence segmentation. In Dale, R., Moisl, H., and Somers, H. L. (Eds.), Handbook of Natural Language Processing. Marcel Dekker.</p>
]]></content:encoded>
			<wfw:commentRss>http://junaraki.net/blog/en/2010/07/17/353.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Japan Day</title>
		<link>http://junaraki.net/blog/en/2010/05/15/318.html</link>
		<comments>http://junaraki.net/blog/en/2010/05/15/318.html#comments</comments>
		<pubDate>Sat, 15 May 2010 23:03:44 +0000</pubDate>
		<dc:creator>araki</dc:creator>
		
		<category><![CDATA[Event]]></category>

		<guid isPermaLink="false">http://junaraki.net/blog/en/?p=318</guid>
		<description><![CDATA[Japan Day is an event held at the Bechtel International Center at Stanford University on Saturday, May 8 by Stanford Japanese Association (SJA) and Stanford University Nikkei (SUN).  Since I was interested in what was going on in the event but had little time to enjoy it on that day, I just dropped by [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.stanford.edu/~thoshi/japanday">Japan Day</a> is an event held at the <a href="http://icenter.stanford.edu/">Bechtel International Center</a> at Stanford University on Saturday, May 8 by Stanford Japanese Association (SJA) and Stanford University Nikkei (SUN).  Since I was interested in what was going on in the event but had little time to enjoy it on that day, I just dropped by after lunch and walked around to look at some demonstrations.</p>
<p>There were several corners for presenting Japanese culture.  Out of them, the tea ceremony seemed to be the most popular.  Two Japanese women wearing traditional garment, <em><a href="http://en.wikipedia.org/wiki/Kimono">kimonos</a></em>, demonstrated how to make and have Japanese tea in a formal way.  In addition, some Japanese people tried to teach how to write Japanese calligraphy, <em><a href="http://en.wikipedia.org/wiki/Japanese_calligraphy">shodo</a></em>, and how to do Japanese paper folding, <em><a href="http://en.wikipedia.org/wiki/Origami">origami</a></em>.  Just being there for about ten minutes, I was struck by a sense of nostalgia.</p>
<p><a href="http://junaraki.net/blog/en/wp-content/uploads/2010/05/cimg0369.jpg"><img src="http://junaraki.net/blog/en/wp-content/uploads/2010/05/cimg0369-300x225.jpg" alt="" title="Tea ceremony" width="300" height="225" class="alignnone size-medium wp-image-320" /></a><br />
Two Japanese women demonstrating how to make and have Japanese tea.</p>
<p><a href="http://junaraki.net/blog/en/wp-content/uploads/2010/05/cimg0371.jpg"><img src="http://junaraki.net/blog/en/wp-content/uploads/2010/05/cimg0371-300x225.jpg" alt="" title="Some ornaments for the Boys&#039; Festival" width="300" height="225" class="alignnone size-medium wp-image-321" /></a><br />
Some ornaments for the Boy&#8217;s Festival in Japan.</p>
]]></content:encoded>
			<wfw:commentRss>http://junaraki.net/blog/en/2010/05/15/318.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Running in the U.S.</title>
		<link>http://junaraki.net/blog/en/2010/03/23/281.html</link>
		<comments>http://junaraki.net/blog/en/2010/03/23/281.html#comments</comments>
		<pubDate>Tue, 23 Mar 2010 07:02:19 +0000</pubDate>
		<dc:creator>araki</dc:creator>
		
		<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://junaraki.net/blog/en/?p=281</guid>
		<description><![CDATA[We finished final exams for the winter quarter last week, and now we have a one-week spring break.  Yesterday I started running again.  I ran around campus just for a while, and felt great after running.  A few months ago, thankfully my father sent me my sportswear and armband for an iPod [...]]]></description>
			<content:encoded><![CDATA[<p>We finished final exams for the winter quarter last week, and now we have a one-week spring break.  Yesterday I started running again.  I ran around campus just for a while, and felt great after running.  A few months ago, thankfully my father sent me my sportswear and armband for an iPod shuffle that I had been using when running in Tokyo. So I could enjoy running here at Stanford just as I had been doing there.</p>
<p>As I wrote in a <a href="http://junaraki.net/blog/en/2009/09/03/174.html">previous post</a>, some people around Stanford University are very active.  I always see several people enjoying their exercise on campus.  Some of them are such avid runners that they push a baby carriage with their baby or babies while running, though I think this is a little dangerous.</p>
<p>Once the spring quarter begins, probably I will be very busy again.  But I&#8217;d like to enjoy myself doing exercise as much as possible.   Incidentally, I am somewhat interested in the general relationships between physical activities and our brains.  A suggestive (but informal) article on this topic is from PhDs.org: <a href="http://blog.phds.org/2010/1/20/pe-for-grad-students">PE for grad students</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://junaraki.net/blog/en/2010/03/23/281.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Reading a text file with Java</title>
		<link>http://junaraki.net/blog/en/2010/02/20/270.html</link>
		<comments>http://junaraki.net/blog/en/2010/02/20/270.html#comments</comments>
		<pubDate>Sun, 21 Feb 2010 04:49:53 +0000</pubDate>
		<dc:creator>araki</dc:creator>
		
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://junaraki.net/blog/en/?p=270</guid>
		<description><![CDATA[Recently I regularly use Java in some classes and my research.  In particular, I often implement a similar code to read a text file for the purpose of some text processing.  So I will attach the trivial code to this post for future reference.  I confirmed that it works with Java 1.6.0_16.


import [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I regularly use Java in some classes and my research.  In particular, I often implement a similar code to read a text file for the purpose of some text processing.  So I will attach the trivial code to this post for future reference.  I confirmed that it works with Java 1.6.0_16.</p>
<pre name="code" class="java">

import java.io.BufferedReader;
import java.io.FileReader;
import java.io.FileNotFoundException;
import java.io.IOException;

class SomeClass {
    public static void readFromFile(String filename) {
        BufferedReader fin = null;

        try {
            fin = new BufferedReader(new FileReader(filename));
            String line = null;
            while ((line = fin.readLine()) != null) {
                // Do something
            }
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            try {
                if (fin != null) fin.close();
            } catch (Exception e) {
                e.printStackTrace();
            }
        }
    }

    public static void main(String args[]) {
        readFromFile(&quot;sample.txt&quot;);
    }
}
</pre>
<p>Incidentally I have used BufferedReader rather than BufferedInputStream simply because BufferedReader is more suitable to the text processing that I need to do right now.</p>
]]></content:encoded>
			<wfw:commentRss>http://junaraki.net/blog/en/2010/02/20/270.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>CSV to HTML converter</title>
		<link>http://junaraki.net/blog/en/2010/02/13/257.html</link>
		<comments>http://junaraki.net/blog/en/2010/02/13/257.html#comments</comments>
		<pubDate>Sun, 14 Feb 2010 01:30:13 +0000</pubDate>
		<dc:creator>araki</dc:creator>
		
		<category><![CDATA[Software]]></category>

		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://junaraki.net/blog/en/?p=257</guid>
		<description><![CDATA[I have spent some time implementing a small script with Python 2.6.2 to help my trivial work: concerting CSV to HTML (more precisely a CSV file to an HTML table).  The CSV format for its input depends on what the csv module in Python specifies.  The code is pretty straightforward:


#!/usr/bin/python

# csv2html.py
# CSV to [...]]]></description>
			<content:encoded><![CDATA[<p>I have spent some time implementing a small script with Python 2.6.2 to help my trivial work: concerting CSV to HTML (more precisely a CSV file to an HTML table).  The CSV format for its input depends on what the csv module in Python specifies.  The code is pretty straightforward:</p>
<pre name="code" class="python">

#!/usr/bin/python

# csv2html.py
# CSV to HTML Converter

import csv
import sys

table_indent_num = 2
tr_indent_num = 4
td_indent_num = 6
white_space = &quot; &quot;

def main():
    csv_reader = csv.reader(open(sys.argv[1]))
    table_indent = white_space * table_indent_num
    tr_indent = white_space * tr_indent_num
    td_indent = white_space * td_indent_num

    print table_indent + &quot;&lt;table&gt;&quot;
    for i, row in enumerate(csv_reader):
        print tr_indent + &quot;&lt;tr&gt;&quot;

        # Uncomment the following two lines if you don&#039;t
        # want a column for indexes
        if i == 0: print td_indent + &quot;&lt;th&gt;#&lt;/th&gt;&quot;
        else: print td_indent + &quot;&lt;td&gt;&quot; + str(i) + &quot;&lt;/td&gt;&quot;

        # Assume that the first line is a header
        for column in row:
            if i == 0: print td_indent + &quot;&lt;th&gt;&quot; + column + &quot;&lt;/th&gt;&quot;
            else: print td_indent + &quot;&lt;td&gt;&quot; + column + &quot;&lt;/td&gt;&quot;

        print tr_indent + &quot;&lt;/tr&gt;&quot;

    print table_indent + &quot;&lt;/table&gt;&quot;

if __name__ == &quot;__main__&quot;:
    argn = len(sys.argv)
    if argn != 2:
        print &quot;Usage: python csv2html.py &lt;CSV file&gt;&quot;
        exit(1)

    main()
</pre>
<p>An example of usage is as follows:</p>
<pre name="code" class="python">

$ more sample.csv
title1,title2,title3
&quot;test11&quot;,test12,test13
test21,&quot;test,22&quot;,test23
$ python csv2html.py sample.csv &gt; sample.html
$ more sample.html
  &lt;table&gt;
    &lt;tr&gt;
      &lt;th&gt;#&lt;/th&gt;
      &lt;th&gt;title1&lt;/th&gt;
      &lt;th&gt;title2&lt;/th&gt;
      &lt;th&gt;title3&lt;/th&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;1&lt;/td&gt;
      &lt;td&gt;test11&lt;/td&gt;
      &lt;td&gt;test12&lt;/td&gt;
      &lt;td&gt;test13&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;2&lt;/td&gt;
      &lt;td&gt;test21&lt;/td&gt;
      &lt;td&gt;test,22&lt;/td&gt;
      &lt;td&gt;test23&lt;/td&gt;
    &lt;/tr&gt;
  &lt;/table&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://junaraki.net/blog/en/2010/02/13/257.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Research methods in computer science</title>
		<link>http://junaraki.net/blog/en/2009/12/27/248.html</link>
		<comments>http://junaraki.net/blog/en/2009/12/27/248.html#comments</comments>
		<pubDate>Mon, 28 Dec 2009 00:48:24 +0000</pubDate>
		<dc:creator>araki</dc:creator>
		
		<category><![CDATA[Book]]></category>

		<category><![CDATA[Research]]></category>

		<guid isPermaLink="false">http://junaraki.net/blog/en/?p=248</guid>
		<description><![CDATA[During this winter break, I have been reading two books on doing research and publishing papers besides some textbooks for my classes next quarter.  One book is Wayne C. Booth, Gregory G. Colomb, and Joseph M. Williams, The Craft of Research (3rd Edition), and the other is Robert A. Day and Barbara Gastel, How [...]]]></description>
			<content:encoded><![CDATA[<p>During this winter break, I have been reading two books on doing research and publishing papers besides some textbooks for my classes next quarter.  One book is Wayne C. Booth, Gregory G. Colomb, and Joseph M. Williams, <a href="http://www.amazon.co.jp/gp/product/0226065669?ie=UTF8&#038;tag=junaraki-22&#038;linkCode=as2&#038;camp=247&#038;creative=1211&#038;creativeASIN=0226065669">The Craft of Research (3rd Edition)</a>, and the other is Robert A. Day and Barbara Gastel, <a href="http://www.amazon.co.jp/gp/product/0313330409?ie=UTF8&#038;tag=junaraki-22&#038;linkCode=as2&#038;camp=247&#038;creative=1211&#038;creativeASIN=0313330409">How to Write and Publish a Scientific Paper (6th Edition)</a>.  Though I have published a few papers so far, these books are of benefit to me in that I can regain an appreciation of appropriate ways of research.</p>
<p>When reading these books, I came to think of research methods particularly in the field of my major, computer science.  Probably the only way to truly acquire the methods is to go through several years of actual research in computer science, but it is good to know some methodologies that are systematized to some extent.  I found out about useful information on Dr. Vasant Honavar&#8217;s website: <a href="http://www.cs.iastate.edu/~honavar/grad-advice.html">Graduate Research, Writing, and Careers in Computer Science</a>.  This web page contains a whole bunch of helpful links over various topics for computer science graduate students like me.  I would be appreciate if you would be willing to leave your comments about other information on these topics.</p>
]]></content:encoded>
			<wfw:commentRss>http://junaraki.net/blog/en/2009/12/27/248.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>My first Thanksgiving Day</title>
		<link>http://junaraki.net/blog/en/2009/11/27/237.html</link>
		<comments>http://junaraki.net/blog/en/2009/11/27/237.html#comments</comments>
		<pubDate>Fri, 27 Nov 2009 07:06:13 +0000</pubDate>
		<dc:creator>araki</dc:creator>
		
		<category><![CDATA[Event]]></category>

		<guid isPermaLink="false">http://junaraki.net/blog/en/?p=237</guid>
		<description><![CDATA[Today was my first Thanksgiving Day.  The Stanford Graduate Student Council provided free Thanksgiving dinner, and I was happy to join the event.  Of course, this was the first time for me to eat traditional Thanksgiving dishes such as turkey and pumpkin pie, but I liked them.  It seemed like a number [...]]]></description>
			<content:encoded><![CDATA[<p>Today was my first Thanksgiving Day.  The <a href="http://gsc.stanford.edu/">Stanford Graduate Student Council</a> provided free Thanksgiving dinner, and I was happy to join the event.  Of course, this was the first time for me to eat traditional Thanksgiving dishes such as turkey and pumpkin pie, but I liked them.  It seemed like a number of first-year international students joined the event, including me.  I got to know some students around me, and enjoyed a little chat with them.  Since my last two months were really hectic, this event was a good relaxing time for me.</p>
]]></content:encoded>
			<wfw:commentRss>http://junaraki.net/blog/en/2009/11/27/237.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>My classes and homework</title>
		<link>http://junaraki.net/blog/en/2009/10/24/223.html</link>
		<comments>http://junaraki.net/blog/en/2009/10/24/223.html#comments</comments>
		<pubDate>Sat, 24 Oct 2009 17:04:42 +0000</pubDate>
		<dc:creator>araki</dc:creator>
		
		<category><![CDATA[Studying Abroad]]></category>

		<guid isPermaLink="false">http://junaraki.net/blog/en/?p=223</guid>
		<description><![CDATA[My classes started late last month.  It is approximately seven years since I took regular classes at the University of Tokyo. There is a substantial difference in the amount of homework assignments between the two, although I knew this before taking classes.  Sometimes they are really hard, but also valuable intellectual excitement.
]]></description>
			<content:encoded><![CDATA[<p>My classes started late last month.  It is approximately seven years since I took regular classes at the University of Tokyo. There is a substantial difference in the amount of homework assignments between the two, although I knew this before taking classes.  Sometimes they are really hard, but also valuable intellectual excitement.</p>
]]></content:encoded>
			<wfw:commentRss>http://junaraki.net/blog/en/2009/10/24/223.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Japanese cuisine in California</title>
		<link>http://junaraki.net/blog/en/2009/09/10/191.html</link>
		<comments>http://junaraki.net/blog/en/2009/09/10/191.html#comments</comments>
		<pubDate>Fri, 11 Sep 2009 05:17:02 +0000</pubDate>
		<dc:creator>araki</dc:creator>
		
		<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://junaraki.net/blog/en/?p=191</guid>
		<description><![CDATA[The other day I eventually missed Japanese cuisine because I hadn&#8217;t eaten any Japanese food since I entered the United States on July 26.  So when I fortunately got some help to go to the Japantown in San Jose last Saturday, I was happy to purchase some Japanese food and enjoy tofu cuisine in [...]]]></description>
			<content:encoded><![CDATA[<p>The other day I eventually missed Japanese cuisine because I hadn&#8217;t eaten any Japanese food since I entered the United States on July 26.  So when I fortunately got some help to go to the <a href="http://www.japantownsanjose.org/">Japantown in San Jose</a> last Saturday, I was happy to purchase some Japanese food and enjoy tofu cuisine in a restaurant there.</p>
<p>On the following day, I cooked rice and <a href="http://en.wikipedia.org/wiki/Pacific_saury">pacific sauries</a> myself.  They are typical Japanese autumnal fish called &#8220;sanma&#8221; in Japan.  I was really astonished at the taste of the rice because it was exactly the same as the one in Japan.  This is in part because of my Zojiruji rice cooker which I bought online after arriving here, but probably it depends greatly on the result of some breed improvement in Californian rice.  My roommate and his friends were also pleased with my cooking.  Here is a picture of the cooking:</p>
<p><a href="http://junaraki.net/blog/en/wp-content/uploads/2009/09/cimg0349.jpg"><img class="alignnone size-medium wp-image-192" title="cimg0349" src="http://junaraki.net/blog/en/wp-content/uploads/2009/09/cimg0349-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p>I know that once my classes start on September 21, I will be so busy that I may not make much time to cook my own food.  I, however, would like to continue to do so as far as possible because basically I like eating at home and believe that Japanese food is the secret of the longevity of Japanese people.</p>
]]></content:encoded>
			<wfw:commentRss>http://junaraki.net/blog/en/2009/09/10/191.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>My life in Palo Alto</title>
		<link>http://junaraki.net/blog/en/2009/09/03/174.html</link>
		<comments>http://junaraki.net/blog/en/2009/09/03/174.html#comments</comments>
		<pubDate>Thu, 03 Sep 2009 17:28:07 +0000</pubDate>
		<dc:creator>araki</dc:creator>
		
		<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://junaraki.net/blog/en/?p=174</guid>
		<description><![CDATA[I have lived in graduate housing on campus at Stanford University since the end of last month, and enjoyed the process of organizing my life here little by little.  Usually I get up in the morning, and study English and computer science, and cook some simple dishes, and sometimes go to some stores around [...]]]></description>
			<content:encoded><![CDATA[<p>I have lived in graduate housing on campus at Stanford University since the end of last month, and enjoyed the process of organizing my life here little by little.  Usually I get up in the morning, and study English and computer science, and cook some simple dishes, and sometimes go to some stores around campus by bike. Of course, I have been doing a range of things besides these to settle in this place, and take care of some administrative things for the university, and prepare for my study and so on.  Last night I enjoyed chatting with my family in Tokyo on Skype, and was amazed at their technology which offered high speech quality and little time difference in our speeches between California and Tokyo.</p>
<p>I recently noticed that some people around Stanford University are very active.  While riding my bike on and off campus, I always see several people running or riding their bikes just for exercise.  Stanford is teeming with natural treasures such as a lake, trees, birds and even squirrels, and has pedestrian-and-bike-friendly campus on top of that, so all those people probably find pleasure in their daily exercise.  When I have more free time someday, I would like to enjoy exercise just like them.</p>
]]></content:encoded>
			<wfw:commentRss>http://junaraki.net/blog/en/2009/09/03/174.html/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
