<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>天使やカイザーと呼ばれて</title>
	
	<link>http://www.eisbahn.jp/yoichiro</link>
	<description>思ってることってこんなもんだよ</description>
	<lastBuildDate>Thu, 07 Jan 2010 12:04:37 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/eisbahn/yoichiro/feed/rss" /><feedburner:info uri="eisbahn/yoichiro/feed/rss" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
		<title>package-info.javaをコンパイルするために</title>
		<link>http://feedproxy.google.com/~r/eisbahn/yoichiro/feed/rss/~3/8rEx3VskqKU/package_info_compile.html</link>
		<comments>http://www.eisbahn.jp/yoichiro/2010/01/package_info_compile.html#comments</comments>
		<pubDate>Thu, 07 Jan 2010 12:04:37 +0000</pubDate>
		<dc:creator>yoichiro</dc:creator>
				<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://www.eisbahn.jp/yoichiro/?p=770</guid>
		<description><![CDATA[Javaにおいて、パッケージにいくつかのアノテーションを指定することができます。これをするために、パッケージ定義のみを持つpackage-info.javaファイルを作成する必要があります。例えば、以下のような感じです。 [...]]]></description>
			<content:encoded><![CDATA[<p>Javaにおいて、パッケージにいくつかのアノテーションを指定することができます。これをするために、パッケージ定義のみを持つpackage-info.javaファイルを作成する必要があります。例えば、以下のような感じです。</p>
<pre name="code" class="java">
/**
 * This package includes ... classes.
 * @author Yoichiro Tanaka
 */
package jp.eisbahn.foo.bar;
</pre>
<p>このpackage-info.javaファイルは、コンパイルすることができます。しかし、上記のケースでは、このファイルは不幸にもコンパイルされないでしょう。その理由は、それが実行時に必要とはjavacコマンドが判断しないからです。それ故に、もしpackage-info.classファイルが欲しい場合は、RUNTIME値を持つ何らかのアノテーションを配置する必要があります。</p>
<pre name="code" class="java">
/**
 * This package includes ... classes.
 * @author Yoichiro Tanaka
 */
@RuntimeAnnotation
package jp.eisbahn.foo.bar;

import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Retention;

@Retention(RetentionPolicy.RUNTIME)
@interface RuntimeAnnotation {}
</pre>
<p>同じファイルの中で、RetentionPolicyクラスのRUNTIME属性を持つアノテーションを定義できます。そのアノテーションをパッケージに追加することで、そのパッケージは実行時に必要とされることになります。その結果として、そのファイルはjavacコマンドによってコンパイルされるでしょう。</p>

<p><a href="http://feedads.g.doubleclick.net/~a/cZsSQbkRE6YO46uhbdvc-UvZPeY/0/da"><img src="http://feedads.g.doubleclick.net/~a/cZsSQbkRE6YO46uhbdvc-UvZPeY/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/cZsSQbkRE6YO46uhbdvc-UvZPeY/1/da"><img src="http://feedads.g.doubleclick.net/~a/cZsSQbkRE6YO46uhbdvc-UvZPeY/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/eisbahn/yoichiro/feed/rss/~4/8rEx3VskqKU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.eisbahn.jp/yoichiro/2010/01/package_info_compile.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.eisbahn.jp/yoichiro/2010/01/package_info_compile.html</feedburner:origLink></item>
		<item>
		<title>PluginやFeatureのファイルを自由に配置する</title>
		<link>http://feedproxy.google.com/~r/eisbahn/yoichiro/feed/rss/~3/NfTSt6Hcz90/set_plugin_and_feature_freely.html</link>
		<comments>http://www.eisbahn.jp/yoichiro/2010/01/set_plugin_and_feature_freely.html#comments</comments>
		<pubDate>Mon, 04 Jan 2010 04:33:12 +0000</pubDate>
		<dc:creator>yoichiro</dc:creator>
				<category><![CDATA[Eclipse]]></category>

		<guid isPermaLink="false">http://www.eisbahn.jp/yoichiro/?p=766</guid>
		<description><![CDATA[基本的に、もしアップデートサイトにPluginやFeatureのJarファイルを配置したい場合、Eclipseアップデートサイトにて定義されたルールに従う必要があります。そのルールとは、site.xmlファイルを作成し、 [...]]]></description>
			<content:encoded><![CDATA[<p>基本的に、もしアップデートサイトにPluginやFeatureのJarファイルを配置したい場合、Eclipseアップデートサイトにて定義されたルールに従う必要があります。そのルールとは、site.xmlファイルを作成し、PluginのJarファイルを「plugins」という名前のサブディレクトリに置き、そしてFeatureのJarファイルを「features」という名前のサブディレクトリに置くことです。ユーザがこのアップデートサイトにアクセスしてプラグインをインストールする際に、EclipseはこのルールによってこれらのJarファイルを見つけることができます。</p>
<p>しかし、もしアップデートサイトを作りたいとき、何らかの理由でこれらのサブディレクトリを作れないかもしれません。そのとき、あなたは自由にこれらのファイルを配置したいと考えるでしょう。</p>
<p>このケースの場合、site.xmlファイル内で&lt;archive&gt;タグを使用することができます。このタグの指定により、PluginのJarファイルを任意の場所に配置することができるようになります。もちろん、FeatureのJarファイルは、URLを記述することによって場所を指定できるので、任意の場所に配置することが可能です。</p>
<pre name="code" class="xml" cols="80" rows="5">
<?xml version="1.0" encoding="UTF-8"?>
<site>
  <feature id="jp.eisbahn.foo.feature" version="1.0.0"
      url="http://www.eisbahn.jp/any/foo-feature.jar">
    <category name="foobar" />
  </feature>
  <archive path="plugins/jp.eisbahn.foo_1.0.0.jar"
      url="http://www.eisbahn.jp/any/foo-plugin.jar" />
  ...
</site>
</pre>
<p>Featureが「jp.eisbahn.foo」という名前のPluginを持っているとき、Eclipseは「plugins」という名前のサブディレクトリからそのPluginを探そうとするでしょう。そのとき、PluginのJarファイルのパスは、「plugins/jp.eisbahn.foo_1.0.0.jar」となります（バージョン番号が1.0.0の例）。そして、&lt;archive&gt;タグを使うことで、そのパスを任意のURLに置き換えることができます。上記の例では、そのパスは「http://www.eisbahn.jp/any/foo-plugin.jar」に置き換えられています。</p>
<p>このテクニックは、OSDEのアップデートサイトで使用されました。そのsite.xmlファイルは以下となります。</p>
<p><a href="http://opensocial-development-environment.googlecode.com/svn/update-site-candidate/site.xml">http://opensocial-development-environment.googlecode.com/svn/update-site-candidate/site.xml</a></p>

<p><a href="http://feedads.g.doubleclick.net/~a/-YSi5wfrG5vu12XiTDQoThs38is/0/da"><img src="http://feedads.g.doubleclick.net/~a/-YSi5wfrG5vu12XiTDQoThs38is/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/-YSi5wfrG5vu12XiTDQoThs38is/1/da"><img src="http://feedads.g.doubleclick.net/~a/-YSi5wfrG5vu12XiTDQoThs38is/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/eisbahn/yoichiro/feed/rss/~4/NfTSt6Hcz90" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.eisbahn.jp/yoichiro/2010/01/set_plugin_and_feature_freely.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.eisbahn.jp/yoichiro/2010/01/set_plugin_and_feature_freely.html</feedburner:origLink></item>
		<item>
		<title>OSDE 0.7.0 Candidate 1をリリースしました</title>
		<link>http://feedproxy.google.com/~r/eisbahn/yoichiro/feed/rss/~3/DXBcU8m1q5I/osde_0_7_0_c1.html</link>
		<comments>http://www.eisbahn.jp/yoichiro/2010/01/osde_0_7_0_c1.html#comments</comments>
		<pubDate>Sun, 03 Jan 2010 04:30:12 +0000</pubDate>
		<dc:creator>yoichiro</dc:creator>
				<category><![CDATA[OpenSocial]]></category>

		<guid isPermaLink="false">http://www.eisbahn.jp/yoichiro/?p=751</guid>
		<description><![CDATA[OSDE 0.7.0 Candidate 1をリリースしました。このリリースでは、以下の機能追加を行っています。

Jettyのポート番号を変更するための設定 (Issue 104).
レイテンシ削減ツール &#8211 [...]]]></description>
			<content:encoded><![CDATA[<p>OSDE 0.7.0 Candidate 1をリリースしました。このリリースでは、以下の機能追加を行っています。</p>
<ul>
<li>Jettyのポート番号を変更するための設定 (Issue 104).</li>
<li>レイテンシ削減ツール &#8211; Evaluator for web performance (Issue 127).</li>
<li>レイテンシ削減ツール &#8211; JS Compiler (Issue 180).</li>
<li>iGoogle上でのガジェット管理/削除 (Issue 155).</li>
<li>HasAppフィルタのサポートと、アプリケーションの情報や管理をするっためのApplicationビューの提供 (Issue 106).</li>
<li>いくつかのバグフィックス</li>
</ul>
<p>以下の候補版向けのアップデートサイトを使って、このバージョンをインストールすることができます。<br />
<a href="http://opensocial-development-environment.googlecode.com/svn/update-site-candidate/site.xml">http://opensocial-development-environment.googlecode.com/svn/update-site-candidate/site.xml</a></p>
<p>バージョン0.7.0から、フィーチャーやプラグインの名前が「com.googlecode.osde」に変更されています。もし0.5.0やそれよりも古いバージョンを使用している場合は、自動で0.7.0にアップデートすることはできません。古いバージョンをアンインストールしてから、0.7.0 Candidate 1をインストールしてください。</p>
<p>このバージョンをテストしていただき、何か問題があれば気軽にフィードバックをください。</p>

<p><a href="http://feedads.g.doubleclick.net/~a/AQx_Sa0lDAkqxu4khDuz26l1NIg/0/da"><img src="http://feedads.g.doubleclick.net/~a/AQx_Sa0lDAkqxu4khDuz26l1NIg/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/AQx_Sa0lDAkqxu4khDuz26l1NIg/1/da"><img src="http://feedads.g.doubleclick.net/~a/AQx_Sa0lDAkqxu4khDuz26l1NIg/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/eisbahn/yoichiro/feed/rss/~4/DXBcU8m1q5I" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.eisbahn.jp/yoichiro/2010/01/osde_0_7_0_c1.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.eisbahn.jp/yoichiro/2010/01/osde_0_7_0_c1.html</feedburner:origLink></item>
		<item>
		<title>後編も公開されました</title>
		<link>http://feedproxy.google.com/~r/eisbahn/yoichiro/feed/rss/~3/eA4fB_ynPnc/%e5%be%8c%e7%b7%a8%e3%82%82%e5%85%ac%e9%96%8b%e3%81%95%e3%82%8c%e3%81%be%e3%81%97%e3%81%9f.html</link>
		<comments>http://www.eisbahn.jp/yoichiro/2010/01/%e5%be%8c%e7%b7%a8%e3%82%82%e5%85%ac%e9%96%8b%e3%81%95%e3%82%8c%e3%81%be%e3%81%97%e3%81%9f.html#comments</comments>
		<pubDate>Sat, 02 Jan 2010 03:30:30 +0000</pubDate>
		<dc:creator>yoichiro</dc:creator>
				<category><![CDATA[OpenSocial]]></category>

		<guid isPermaLink="false">http://www.eisbahn.jp/yoichiro/?p=746</guid>
		<description><![CDATA[「2010年のソーシャルWeb」後編も公開されました。
2010年のソーシャルWeb (後編)
http://gihyo.jp/dev/column/newyear/2010/socialweb-prospect-02
 [...]]]></description>
			<content:encoded><![CDATA[<p>「2010年のソーシャルWeb」後編も公開されました。</p>
<p>2010年のソーシャルWeb (後編)<br />
<a href="http://gihyo.jp/dev/column/newyear/2010/socialweb-prospect-02">http://gihyo.jp/dev/column/newyear/2010/socialweb-prospect-02</a></p>
<p>広告といくつかの標準仕様に言及しています。</p>

<p><a href="http://feedads.g.doubleclick.net/~a/-V_NLm0vkbn1glRNWtTe-wt8nFY/0/da"><img src="http://feedads.g.doubleclick.net/~a/-V_NLm0vkbn1glRNWtTe-wt8nFY/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/-V_NLm0vkbn1glRNWtTe-wt8nFY/1/da"><img src="http://feedads.g.doubleclick.net/~a/-V_NLm0vkbn1glRNWtTe-wt8nFY/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/eisbahn/yoichiro/feed/rss/~4/eA4fB_ynPnc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.eisbahn.jp/yoichiro/2010/01/%e5%be%8c%e7%b7%a8%e3%82%82%e5%85%ac%e9%96%8b%e3%81%95%e3%82%8c%e3%81%be%e3%81%97%e3%81%9f.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.eisbahn.jp/yoichiro/2010/01/%e5%be%8c%e7%b7%a8%e3%82%82%e5%85%ac%e9%96%8b%e3%81%95%e3%82%8c%e3%81%be%e3%81%97%e3%81%9f.html</feedburner:origLink></item>
		<item>
		<title>2010年のソーシャルWeb</title>
		<link>http://feedproxy.google.com/~r/eisbahn/yoichiro/feed/rss/~3/BRkUtSVIWgE/social_web_2010.html</link>
		<comments>http://www.eisbahn.jp/yoichiro/2010/01/social_web_2010.html#comments</comments>
		<pubDate>Thu, 31 Dec 2009 15:38:32 +0000</pubDate>
		<dc:creator>yoichiro</dc:creator>
				<category><![CDATA[OpenSocial]]></category>

		<guid isPermaLink="false">http://www.eisbahn.jp/yoichiro/?p=742</guid>
		<description><![CDATA[あけまして、おめでとうございます！2010年も、よろしくお願いいたします！
というわけで、今年のソーシャルWebがどうなっていくのか、昨年末に考えてみました。gihyo.jpに掲載されていますので、ぜひお読みください。
 [...]]]></description>
			<content:encoded><![CDATA[<p>あけまして、おめでとうございます！2010年も、よろしくお願いいたします！</p>
<p>というわけで、今年のソーシャルWebがどうなっていくのか、昨年末に考えてみました。gihyo.jpに掲載されていますので、ぜひお読みください。</p>
<p>2010年のソーシャルWeb（前編）<br />
<a href="http://gihyo.jp/dev/column/newyear/2010/socialweb-prospect-01">http://gihyo.jp/dev/column/newyear/2010/socialweb-prospect-01</a></p>
<p>後編は、2日の10時頃に公開される予定です。</p>

<p><a href="http://feedads.g.doubleclick.net/~a/MqFPp4XCxb4Aj8sE2-yqmTN5M3A/0/da"><img src="http://feedads.g.doubleclick.net/~a/MqFPp4XCxb4Aj8sE2-yqmTN5M3A/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/MqFPp4XCxb4Aj8sE2-yqmTN5M3A/1/da"><img src="http://feedads.g.doubleclick.net/~a/MqFPp4XCxb4Aj8sE2-yqmTN5M3A/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/eisbahn/yoichiro/feed/rss/~4/BRkUtSVIWgE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.eisbahn.jp/yoichiro/2010/01/social_web_2010.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.eisbahn.jp/yoichiro/2010/01/social_web_2010.html</feedburner:origLink></item>
		<item>
		<title>2009を振り返って</title>
		<link>http://feedproxy.google.com/~r/eisbahn/yoichiro/feed/rss/~3/xM7m_S4zv70/about_2009.html</link>
		<comments>http://www.eisbahn.jp/yoichiro/2009/12/about_2009.html#comments</comments>
		<pubDate>Thu, 31 Dec 2009 12:24:53 +0000</pubDate>
		<dc:creator>yoichiro</dc:creator>
				<category><![CDATA[Other]]></category>

		<guid isPermaLink="false">http://www.eisbahn.jp/yoichiro/?p=739</guid>
		<description><![CDATA[2009年があと少しで終わります。今年を振り返ると、いろいろと動きがありました。その中でも大きなこととしては、「転職」「書籍出版」「OSDE」です。
最も大きな変化は、やはり転職です。まさか自分が某大手SNSサイト(とぼ [...]]]></description>
			<content:encoded><![CDATA[<p>2009年があと少しで終わります。今年を振り返ると、いろいろと動きがありました。その中でも大きなこととしては、「転職」「書籍出版」「OSDE」です。</p>
<p>最も大きな変化は、やはり転職です。まさか自分が某大手SNSサイト(とぼかす必要もないか)に入社するとは全く思ってなかったですが、大きなSNSのプラットフォーム化に関われて良かったなと。それはそれはいろいろとありましたが、自分でも貴重な経験をさせてもらってると思ってます。もちろん、プラットフォームは公開するだけでなく、いろんな意味でそれを維持していくことが大事であり、大変なことです。来年からが勝負です。</p>
<p>その転職のちょっと前の2月に、OpenSocial本の出版を無事迎えられたことも大きな出来事でした。自分の本を出せるとは、これも数年前までは思いもしなかったことです。今ではOpenSocialをベースにしたアプリケーションが日本の多くの開発者によって開発されていますが、ちょっとでもそれに貢献できたのなら嬉しいですね。</p>
<p>ずっとOSDEの開発は一人でやってきたけど、今年からメンバーが増えたことも大きな事件です。今では、僕よりもアクティブに開発をしてくれています。やはり自分で作ったものを評価してくれるのはとても嬉しいことです。OSDEは既に僕一人のものではなくなったので、責任感を持ってちゃんと進化させていかなければなりません。今年以上にOSDEは来年開発を進めたいと思っています。</p>
<p>このOSDEのメンバー追加のおかげで、英語でのコミュニケーションの機会は非常に増えました。メールはもちろん、コードレビュー、仕様調整など、OSDEのプロジェクトサイト上では英語が公用語です。そして、メンバーが10月の終わりに来日し、僕とOSDEに関する打ち合わせを実施しました。通訳はなく、英語でなんとかOSDEのロードマップ作りをこなした経験は、僕にとってすごい経験になっています。なんとかなるもんだなぁ、と。</p>
<p>これら以外にも、Google Developer Dayの基調講演でのプレゼンや執筆活動なども、今年の充実感の元となっています。とにかく、今年はいろいろと動きがあり、充実した楽しい内容でした。そして、いろいろな人にお世話になった年でもありました。</p>
<p>来年は、いろいろな施策を自分から仕掛けていき、いろいろな波を起こしていきたいですね。</p>
<p>では、引き続き来年もよろしくお願いいたします！</p>

<p><a href="http://feedads.g.doubleclick.net/~a/vJaHV0kVFviNN9bmcWcAeFfgGaM/0/da"><img src="http://feedads.g.doubleclick.net/~a/vJaHV0kVFviNN9bmcWcAeFfgGaM/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/vJaHV0kVFviNN9bmcWcAeFfgGaM/1/da"><img src="http://feedads.g.doubleclick.net/~a/vJaHV0kVFviNN9bmcWcAeFfgGaM/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/eisbahn/yoichiro/feed/rss/~4/xM7m_S4zv70" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.eisbahn.jp/yoichiro/2009/12/about_2009.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.eisbahn.jp/yoichiro/2009/12/about_2009.html</feedburner:origLink></item>
		<item>
		<title>今シーズン初スキー</title>
		<link>http://feedproxy.google.com/~r/eisbahn/yoichiro/feed/rss/~3/q7drX0fccw4/%e4%bb%8a%e3%82%b7%e3%83%bc%e3%82%ba%e3%83%b3%e5%88%9d%e3%82%b9%e3%82%ad%e3%83%bc.html</link>
		<comments>http://www.eisbahn.jp/yoichiro/2009/12/%e4%bb%8a%e3%82%b7%e3%83%bc%e3%82%ba%e3%83%b3%e5%88%9d%e3%82%b9%e3%82%ad%e3%83%bc.html#comments</comments>
		<pubDate>Wed, 30 Dec 2009 04:18:56 +0000</pubDate>
		<dc:creator>yoichiro</dc:creator>
				<category><![CDATA[Ski]]></category>

		<guid isPermaLink="false">http://www.eisbahn.jp/yoichiro/?p=724</guid>
		<description><![CDATA[昨日、今シーズン初スキーに妻と行ってきました。

雪質はとても締まっていて、滑りやすかったです。そして、昨日はとても晴れてました。

昨シーズン一回も行ってなかったのでうまく滑れるか不安だったけど、新しいウェアとブーツは [...]]]></description>
			<content:encoded><![CDATA[<p>昨日、今シーズン初スキーに妻と行ってきました。</p>
<p><a href="http://www.eisbahn.jp/yoichiro/images/2009/12/IMG_0439.jpg"><img src="http://www.eisbahn.jp/yoichiro/images/2009/12/IMG_0439.jpg" alt="" title="IMG_0439" width="350" height="467" class="alignnone size-full wp-image-727" border="0" /></a></p>
<p>雪質はとても締まっていて、滑りやすかったです。そして、昨日はとても晴れてました。</p>
<p><a href="http://www.eisbahn.jp/yoichiro/images/2009/12/IMG_0440.jpg"><img src="http://www.eisbahn.jp/yoichiro/images/2009/12/IMG_0440.jpg" alt="" title="IMG_0440" width="350" height="467" class="alignnone size-full wp-image-730" border="0" /></a></p>
<p>昨シーズン一回も行ってなかったのでうまく滑れるか不安だったけど、新しいウェアとブーツは僕を刺激してくれました。</p>
<p><a href="http://www.eisbahn.jp/yoichiro/images/2009/12/IMG_0442.jpg"><img src="http://www.eisbahn.jp/yoichiro/images/2009/12/IMG_0442.jpg" alt="" title="IMG_0442" width="350" height="467" class="alignnone size-full wp-image-731" border="0" /></a></p>
<p>初スキーを楽しめました。それにしても、レストハウスで売ってるカレーは、今年も高かった。。。</p>

<p><a href="http://feedads.g.doubleclick.net/~a/f8xbRt_YRhqZTxwFbBu_uCbQx98/0/da"><img src="http://feedads.g.doubleclick.net/~a/f8xbRt_YRhqZTxwFbBu_uCbQx98/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/f8xbRt_YRhqZTxwFbBu_uCbQx98/1/da"><img src="http://feedads.g.doubleclick.net/~a/f8xbRt_YRhqZTxwFbBu_uCbQx98/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/eisbahn/yoichiro/feed/rss/~4/q7drX0fccw4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.eisbahn.jp/yoichiro/2009/12/%e4%bb%8a%e3%82%b7%e3%83%bc%e3%82%ba%e3%83%b3%e5%88%9d%e3%82%b9%e3%82%ad%e3%83%bc.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.eisbahn.jp/yoichiro/2009/12/%e4%bb%8a%e3%82%b7%e3%83%bc%e3%82%ba%e3%83%b3%e5%88%9d%e3%82%b9%e3%82%ad%e3%83%bc.html</feedburner:origLink></item>
		<item>
		<title>OSDE v0.5.0 stable1がリリースされました!</title>
		<link>http://feedproxy.google.com/~r/eisbahn/yoichiro/feed/rss/~3/phnAno6r_QA/osde-v0-5-0-stable.html</link>
		<comments>http://www.eisbahn.jp/yoichiro/2009/12/osde-v0-5-0-stable.html#comments</comments>
		<pubDate>Fri, 18 Dec 2009 00:27:23 +0000</pubDate>
		<dc:creator>yoichiro</dc:creator>
				<category><![CDATA[OpenSocial]]></category>

		<guid isPermaLink="false">http://www.eisbahn.jp/yoichiro/?p=722</guid>
		<description><![CDATA[OSDE Ver. 0.5.0 Stableをリリースしました！OSDEのアップデートサイトを使って、簡単に更新をすることができます。
http://opensocial-development-environment. [...]]]></description>
			<content:encoded><![CDATA[<p>OSDE Ver. 0.5.0 Stableをリリースしました！OSDEのアップデートサイトを使って、簡単に更新をすることができます。</p>
<p>http://opensocial-development-environment.googlecode.com/svn/update-site/site.xml</p>
<p>このバージョンにより、開発しているガジェットをiGoogleにてプレビューおよび配布することが可能となります。この機能は、台北にいるAlbertと数人のメンバーによって開発されました。おめでとうと言いたいと共に、日々の助けと開発作業に対して感謝しています！ <img src='http://www.eisbahn.jp/yoichiro/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  もしiGoogleガジェットを開発したいときには、OSDEは内部で持つShindigサーバと、iGoogleのプロダクションサーバの両方で動作確認をすることができます。</p>
<p>私たちは、多くの改善や新機能の開発を続けます。もしロードマップを知りたいときは、以下のページをご覧ください。</p>
<p>http://code.google.com/p/opensocial-development-environment/wiki/Roadmap</p>
<p>ぜひ、コーディングを楽しんでください！</p>

<p><a href="http://feedads.g.doubleclick.net/~a/ZOoJTngFqn5PHfCED1WsTD9XeME/0/da"><img src="http://feedads.g.doubleclick.net/~a/ZOoJTngFqn5PHfCED1WsTD9XeME/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/ZOoJTngFqn5PHfCED1WsTD9XeME/1/da"><img src="http://feedads.g.doubleclick.net/~a/ZOoJTngFqn5PHfCED1WsTD9XeME/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/eisbahn/yoichiro/feed/rss/~4/phnAno6r_QA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.eisbahn.jp/yoichiro/2009/12/osde-v0-5-0-stable.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.eisbahn.jp/yoichiro/2009/12/osde-v0-5-0-stable.html</feedburner:origLink></item>
		<item>
		<title>Hibernateは何をする？</title>
		<link>http://feedproxy.google.com/~r/eisbahn/yoichiro/feed/rss/~3/4u1X-kmB6NA/what_task_hibernate.html</link>
		<comments>http://www.eisbahn.jp/yoichiro/2009/12/what_task_hibernate.html#comments</comments>
		<pubDate>Wed, 16 Dec 2009 13:29:16 +0000</pubDate>
		<dc:creator>yoichiro</dc:creator>
				<category><![CDATA[Other]]></category>

		<guid isPermaLink="false">http://www.eisbahn.jp/yoichiro/?p=717</guid>
		<description><![CDATA[Hibernateの意味を知っていますか？そうです、冬眠を意味しています。では、Javaで書かれたHibernateがどんな仕事を持っているか、あなたはご存じですか？
はぃ、Hibernateは、あなたのデータベースに「 [...]]]></description>
			<content:encoded><![CDATA[<p>Hibernateの意味を知っていますか？そうです、冬眠を意味しています。では、Javaで書かれたHibernateがどんな仕事を持っているか、あなたはご存じですか？</p>
<p>はぃ、Hibernateは、あなたのデータベースに「冬の間」いかなる情報も永続的に格納します。もちろん、データベースに格納された全ての情報は、春が来たら外に逃げていくでしょう！</p>
<p>・・・なんちゃって。 <img src='http://www.eisbahn.jp/yoichiro/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>

<p><a href="http://feedads.g.doubleclick.net/~a/17ZHzdu-QrlbmBf0mlAXha1JAhI/0/da"><img src="http://feedads.g.doubleclick.net/~a/17ZHzdu-QrlbmBf0mlAXha1JAhI/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/17ZHzdu-QrlbmBf0mlAXha1JAhI/1/da"><img src="http://feedads.g.doubleclick.net/~a/17ZHzdu-QrlbmBf0mlAXha1JAhI/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/eisbahn/yoichiro/feed/rss/~4/4u1X-kmB6NA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.eisbahn.jp/yoichiro/2009/12/what_task_hibernate.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.eisbahn.jp/yoichiro/2009/12/what_task_hibernate.html</feedburner:origLink></item>
		<item>
		<title>C-C-B</title>
		<link>http://feedproxy.google.com/~r/eisbahn/yoichiro/feed/rss/~3/axJcyhoJOrE/c-c-b.html</link>
		<comments>http://www.eisbahn.jp/yoichiro/2009/12/c-c-b.html#comments</comments>
		<pubDate>Sat, 12 Dec 2009 13:14:58 +0000</pubDate>
		<dc:creator>yoichiro</dc:creator>
				<category><![CDATA[Other]]></category>

		<guid isPermaLink="false">http://www.eisbahn.jp/yoichiro/?p=714</guid>
		<description><![CDATA[C-C-Bを知ってますか？もしあなたが日本人なら、C-C-Bが有名なバンドで、そのリーダーの髪はカラフルであることを知ってるでしょう。
では、C-C-Bは何の略か、知ってますか？
それは、”Coconut Boy”です。 [...]]]></description>
			<content:encoded><![CDATA[<p>C-C-Bを知ってますか？もしあなたが日本人なら、C-C-Bが有名なバンドで、そのリーダーの髪はカラフルであることを知ってるでしょう。</p>
<p>では、C-C-Bは何の略か、知ってますか？</p>
<p>それは、”Coconut Boy”です。</p>
<p>Please see: <a href="http://ja.wikipedia.org/wiki/C-C-B">http://ja.wikipedia.org/wiki/C-C-B</a></p>

<p><a href="http://feedads.g.doubleclick.net/~a/nIqZ5FVdaIVb_LxJ3l2elroYkV8/0/da"><img src="http://feedads.g.doubleclick.net/~a/nIqZ5FVdaIVb_LxJ3l2elroYkV8/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/nIqZ5FVdaIVb_LxJ3l2elroYkV8/1/da"><img src="http://feedads.g.doubleclick.net/~a/nIqZ5FVdaIVb_LxJ3l2elroYkV8/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/eisbahn/yoichiro/feed/rss/~4/axJcyhoJOrE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.eisbahn.jp/yoichiro/2009/12/c-c-b.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.eisbahn.jp/yoichiro/2009/12/c-c-b.html</feedburner:origLink></item>
	</channel>
</rss>
