<?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://krks.net/wp</link>
	<description />
	<lastBuildDate>Mon, 08 Feb 2010 14:04:17 +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/krks-net-wp" /><feedburner:info uri="krks-net-wp" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><feedburner:browserFriendly></feedburner:browserFriendly><item>
		<title>Androidでデータの読み書きをするときに一番早いのはSQLiteを使うことだよ</title>
		<link>http://feedproxy.google.com/~r/krks-net-wp/~3/BjvIMjVHkkU/</link>
		<comments>http://krks.net/wp/2010/02/08/android%e3%81%a7%e3%83%87%e3%83%bc%e3%82%bf%e3%81%ae%e8%aa%ad%e3%81%bf%e6%9b%b8%e3%81%8d%e3%82%92%e3%81%99%e3%82%8b%e3%81%a8%e3%81%8d%e3%81%ab%e4%b8%80%e7%95%aa%e6%97%a9%e3%81%84%e3%81%ae%e3%81%afsqli/#comments</comments>
		<pubDate>Mon, 08 Feb 2010 14:02:17 +0000</pubDate>
		<dc:creator>kakkyz</dc:creator>
				<category><![CDATA[開発]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[development]]></category>

		<guid isPermaLink="false">http://krks.net/wp/?p=210</guid>
		<description><![CDATA[結論はタイトルどおりです。
実際にコードを書いて
１.ObjectInputStream/ObjectOutputStreamを使う
２.BufferdReaderで読み込み，XmlPullParserで解析/XmlSerializerでXML化し、BufferedWriterで書き込み
３.SQLiteを使って読み込み/書き込み
で時間を測って見たところ、読み込み、書き込みともにSQLiteを使うのが一番早かったです。
特に、読み込み処理での早さは群を抜いてました。
以下、結果です。
   1000バイトのテキストデータを持つオブジェクトを50件処理した時間(ms)  1 2 3 4 5 平均    writeObject 510 341 353 360 451 403    writeXML 612 504 536 523 523 539.6    writeSQLite 553 290 283 304 318 349.6    readObject 423 314 317 208 309 314.2    readXML [...]]]></description>
			<content:encoded><![CDATA[<p>結論はタイトルどおりです。</p>
<p>実際にコードを書いて</p>
<p>１.ObjectInputStream/ObjectOutputStreamを使う<br />
２.BufferdReaderで読み込み，XmlPullParserで解析/XmlSerializerでXML化し、BufferedWriterで書き込み<br />
３.SQLiteを使って読み込み/書き込み</p>
<p>で時間を測って見たところ、読み込み、書き込みともにSQLiteを使うのが一番早かったです。<br />
特に、読み込み処理での早さは群を抜いてました。</p>
<p>以下、結果です。</p>
<p><TABLE FRAME=VOID CELLSPACING=0 COLS=8 RULES=NONE BORDER=0> <TBODY> <TR> <TD   ALIGN=LEFT>1000バイトのテキストデータを持つオブジェクトを50件処理した時間(ms)</TD> <TD  ALIGN=LEFT><BR></TD> <TD  ALIGN=RIGHT >1</TD> <TD  ALIGN=RIGHT >2</TD> <TD  ALIGN=RIGHT >3</TD> <TD  ALIGN=RIGHT >4</TD> <TD  ALIGN=RIGHT >5</TD> <TD  ALIGN=LEFT>平均</TD> </TR> <TR> <TD  ALIGN=LEFT><BR></TD> <TD ALIGN=LEFT>writeObject</TD> <TD ALIGN=RIGHT >510</TD> <TD ALIGN=RIGHT >341</TD> <TD ALIGN=RIGHT >353</TD> <TD ALIGN=RIGHT >360</TD> <TD ALIGN=RIGHT >451</TD> <TD ALIGN=RIGHT >403</TD> </TR> <TR> <TD  ALIGN=LEFT><BR></TD> <TD ALIGN=LEFT>writeXML</TD> <TD ALIGN=RIGHT >612</TD> <TD ALIGN=RIGHT >504</TD> <TD ALIGN=RIGHT >536</TD> <TD ALIGN=RIGHT >523</TD> <TD ALIGN=RIGHT >523</TD> <TD ALIGN=RIGHT >539.6</TD> </TR> <TR> <TD  ALIGN=LEFT><BR></TD> <TD ALIGN=LEFT>writeSQLite</TD> <TD ALIGN=RIGHT  >553</TD> <TD ALIGN=RIGHT  >290</TD> <TD ALIGN=RIGHT  >283</TD> <TD ALIGN=RIGHT  >304</TD> <TD ALIGN=RIGHT  >318</TD> <TD ALIGN=RIGHT  >349.6</TD> </TR> <TR> <TD  ALIGN=LEFT><BR></TD> <TD ALIGN=LEFT>readObject</TD> <TD ALIGN=RIGHT  >423</TD> <TD ALIGN=RIGHT  >314</TD> <TD ALIGN=RIGHT  >317</TD> <TD ALIGN=RIGHT  >208</TD> <TD ALIGN=RIGHT  >309</TD> <TD ALIGN=RIGHT >314.2</TD> </TR> <TR> <TD  ALIGN=LEFT><BR></TD> <TD ALIGN=LEFT>readXML</TD> <TD ALIGN=RIGHT  >258</TD> <TD ALIGN=RIGHT  >173</TD> <TD ALIGN=RIGHT  >269</TD> <TD ALIGN=RIGHT  >180</TD> <TD ALIGN=RIGHT  >177</TD> <TD ALIGN=RIGHT  >211.4</TD> </TR> <TR> <TD  ALIGN=LEFT><BR></TD> <TD ALIGN=LEFT>readSQLite</TD> <TD ALIGN=RIGHT  >52</TD> <TD ALIGN=RIGHT  >47</TD> <TD ALIGN=RIGHT  >51</TD> <TD ALIGN=RIGHT  >149</TD> <TD ALIGN=RIGHT  >147</TD> <TD ALIGN=RIGHT  >89.2</TD> </TR> <TR> <TD  ALIGN=LEFT><BR></TD> <TD ALIGN=LEFT><BR></TD> <TD ALIGN=LEFT><BR></TD> <TD ALIGN=LEFT><BR></TD> <TD ALIGN=LEFT><BR></TD> <TD ALIGN=LEFT><BR></TD> <TD ALIGN=LEFT><BR></TD> <TD ALIGN=LEFT><BR></TD> </TR> <TR> <TD  ALIGN=LEFT>1000バイトのテキストデータを持つオブジェクトを500件処理した時間</TD> <TD ALIGN=LEFT><BR></TD> <TD ALIGN=RIGHT  >1</TD> <TD ALIGN=RIGHT  >2</TD> <TD ALIGN=RIGHT  >3</TD> <TD ALIGN=RIGHT  >4</TD> <TD ALIGN=RIGHT  >5</TD> <TD  ALIGN=LEFT>平均</TD> </TR> <TR> <TD  ALIGN=LEFT><BR></TD> <TD ALIGN=LEFT>writeObject</TD> <TD ALIGN=RIGHT  >3756</TD> <TD ALIGN=RIGHT  >3726</TD> <TD ALIGN=RIGHT  >3607</TD> <TD ALIGN=RIGHT  >3710</TD> <TD ALIGN=RIGHT  >3663</TD> <TD ALIGN=RIGHT >3692.4</TD> </TR> <TR> <TD  ALIGN=LEFT><BR></TD> <TD ALIGN=LEFT>writeXML</TD> <TD ALIGN=RIGHT  >6220</TD> <TD ALIGN=RIGHT  >5477</TD> <TD ALIGN=RIGHT  >6202</TD> <TD ALIGN=RIGHT  >6392</TD> <TD ALIGN=RIGHT  >8021</TD> <TD ALIGN=RIGHT >6462.4</TD> </TR> <TR> <TD  ALIGN=LEFT><BR></TD> <TD ALIGN=LEFT>writeSQLite</TD> <TD ALIGN=RIGHT  >1863</TD> <TD ALIGN=RIGHT  >2720</TD> <TD ALIGN=RIGHT  >3577</TD> <TD ALIGN=RIGHT  >2561</TD> <TD ALIGN=RIGHT  >2908</TD> <TD ALIGN=RIGHT >2725.8</TD> </TR> <TR> <TD  ALIGN=LEFT><BR></TD> <TD ALIGN=LEFT>readObject</TD> <TD ALIGN=RIGHT  >2788</TD> <TD ALIGN=RIGHT  >2574</TD> <TD ALIGN=RIGHT  >2552</TD> <TD ALIGN=RIGHT  >2542</TD> <TD ALIGN=RIGHT  >2398</TD> <TD ALIGN=RIGHT  >2570.8</TD> </TR> <TR> <TD  ALIGN=LEFT><BR></TD> <TD ALIGN=LEFT>readXML</TD> <TD ALIGN=RIGHT  >2139</TD> <TD ALIGN=RIGHT  >2092</TD> <TD ALIGN=RIGHT  >2098</TD> <TD ALIGN=RIGHT  >2038</TD> <TD ALIGN=RIGHT  >2061</TD> <TD ALIGN=RIGHT >2085.6</TD> </TR> <TR> <TD  ALIGN=LEFT><BR></TD> <TD ALIGN=LEFT>readSQLite</TD> <TD ALIGN=RIGHT  >644</TD> <TD ALIGN=RIGHT  >583</TD> <TD ALIGN=RIGHT  >585</TD> <TD ALIGN=RIGHT  >576</TD> <TD ALIGN=RIGHT  >569</TD> <TD ALIGN=RIGHT >591.4</TD> </TR> </TBODY> </TABLE></p>
<p>テストに使用したコードは，githubにあげていますので、よろしければ見てみてください.</p>
<p>http://github.com/kakkyz81/SerializePerformanceCheck</p>
<img src="http://feeds.feedburner.com/~r/krks-net-wp/~4/BjvIMjVHkkU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://krks.net/wp/2010/02/08/android%e3%81%a7%e3%83%87%e3%83%bc%e3%82%bf%e3%81%ae%e8%aa%ad%e3%81%bf%e6%9b%b8%e3%81%8d%e3%82%92%e3%81%99%e3%82%8b%e3%81%a8%e3%81%8d%e3%81%ab%e4%b8%80%e7%95%aa%e6%97%a9%e3%81%84%e3%81%ae%e3%81%afsqli/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://krks.net/wp/2010/02/08/android%e3%81%a7%e3%83%87%e3%83%bc%e3%82%bf%e3%81%ae%e8%aa%ad%e3%81%bf%e6%9b%b8%e3%81%8d%e3%82%92%e3%81%99%e3%82%8b%e3%81%a8%e3%81%8d%e3%81%ab%e4%b8%80%e7%95%aa%e6%97%a9%e3%81%84%e3%81%ae%e3%81%afsqli/</feedburner:origLink></item>
		<item>
		<title>Android用TumblrクライアントTumblryaをリリースしました</title>
		<link>http://feedproxy.google.com/~r/krks-net-wp/~3/WVT0a0QXxLY/</link>
		<comments>http://krks.net/wp/2010/01/31/android%e7%94%a8tumblr%e3%82%af%e3%83%a9%e3%82%a4%e3%82%a2%e3%83%b3%e3%83%88tumblrya%e3%82%92%e3%83%aa%e3%83%aa%e3%83%bc%e3%82%b9%e3%81%97%e3%81%be%e3%81%97%e3%81%9f/#comments</comments>
		<pubDate>Sun, 31 Jan 2010 12:34:34 +0000</pubDate>
		<dc:creator>kakkyz</dc:creator>
				<category><![CDATA[開発]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[tumblrya]]></category>

		<guid isPermaLink="false">http://krks.net/wp/?p=207</guid>
		<description><![CDATA[
ダッシュボードを見ながら、ReblogとLikeの追加ができます。
バックグラウンドである程度先読みを行いますので、快適にTumblrできます。
Android用マーケットで「Tumblrya」で検索してダウンロードできます。無料です。
ぜひぜひ、ご利用ください。
]]></description>
			<content:encoded><![CDATA[<p><a href="http://krks.net/wp/wp-content/uploads/2010/01/tumblr01.ja_.png"><img src="http://krks.net/wp/wp-content/uploads/2010/01/tumblr01.ja_.png" alt="" title="tumblr01.ja" width="320" height="480" class="alignnone size-full wp-image-208" /></a></p>
<p>ダッシュボードを見ながら、ReblogとLikeの追加ができます。</p>
<p>バックグラウンドである程度先読みを行いますので、快適にTumblrできます。</p>
<p>Android用マーケットで「Tumblrya」で検索してダウンロードできます。無料です。</p>
<p>ぜひぜひ、ご利用ください。</p>
<img src="http://feeds.feedburner.com/~r/krks-net-wp/~4/WVT0a0QXxLY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://krks.net/wp/2010/01/31/android%e7%94%a8tumblr%e3%82%af%e3%83%a9%e3%82%a4%e3%82%a2%e3%83%b3%e3%83%88tumblrya%e3%82%92%e3%83%aa%e3%83%aa%e3%83%bc%e3%82%b9%e3%81%97%e3%81%be%e3%81%97%e3%81%9f/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://krks.net/wp/2010/01/31/android%e7%94%a8tumblr%e3%82%af%e3%83%a9%e3%82%a4%e3%82%a2%e3%83%b3%e3%83%88tumblrya%e3%82%92%e3%83%aa%e3%83%aa%e3%83%bc%e3%82%b9%e3%81%97%e3%81%be%e3%81%97%e3%81%9f/</feedburner:origLink></item>
		<item>
		<title>ソニエリのAndroid端末 Xperia X10のエミュレータを動かす方法</title>
		<link>http://feedproxy.google.com/~r/krks-net-wp/~3/L3OYn48T2e4/</link>
		<comments>http://krks.net/wp/2010/01/24/%e3%82%bd%e3%83%8b%e3%82%a8%e3%83%aa%e3%81%aeandroid%e7%ab%af%e6%9c%ab-xperia-x10%e3%81%ae%e3%82%a8%e3%83%9f%e3%83%a5%e3%83%ac%e3%83%bc%e3%82%bf%e3%82%92%e5%8b%95%e3%81%8b%e3%81%99%e6%96%b9%e6%b3%95/#comments</comments>
		<pubDate>Sun, 24 Jan 2010 08:40:22 +0000</pubDate>
		<dc:creator>kakkyz</dc:creator>
				<category><![CDATA[メモ]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[Xperia]]></category>

		<guid isPermaLink="false">http://krks.net/wp/?p=193</guid>
		<description><![CDATA[自分の環境はUbuntu 9.04ですが、他の環境でも同じで動くと思います。

前提
既にAndroid SDKで、ノーマルのエミュレータが動かせる状況になっていること。
Sony Ericsson Xperia X10 add-on for the Android SDKのダウンロード
http://developer.sonyericsson.com/getDocument.do?docId=102216
開発者登録をしていない場合は、registerから登録を行う。
登録後に、SDKをダウンロード
ダウンロードしたzipを解凍して、androidSDKのaddonsフォルダに置く。
androidSDKのある場所を調べるのは，eclipseを起動して
ウィンドウ -> Android SDK and AVD Manager -> Installed Packagesで見れる。

コマンドラインから、android list targetを実行して、X10のidを調べる

androidコマンドは，androidSDKのtoolsフォルダに入っているので，別途Pathの設定はしておくこと。
対象のidで、エミュレータを作成する
android create avd -n X10 -t [id]
を実行する
エミュレータを起動。eclipseから起動するとこんな感じ(画面がでかい！生サイズは画像をクリック。）


]]></description>
			<content:encoded><![CDATA[<p>自分の環境はUbuntu 9.04ですが、他の環境でも同じで動くと思います。</p>
<ol>
<li>前提</li>
<p>既にAndroid SDKで、ノーマルのエミュレータが動かせる状況になっていること。</p>
<li>Sony Ericsson Xperia X10 add-on for the Android SDKのダウンロード</li>
<p>http://developer.sonyericsson.com/getDocument.do?docId=102216</p>
<p>開発者登録をしていない場合は、registerから登録を行う。<br />
登録後に、SDKをダウンロード</p>
<li>ダウンロードしたzipを解凍して、androidSDKのaddonsフォルダに置く。</li>
<p>androidSDKのある場所を調べるのは，eclipseを起動して<br />
ウィンドウ -> Android SDK and AVD Manager -> Installed Packagesで見れる。<br />
<a href="http://krks.net/wp/wp-content/uploads/2010/01/Screenshot-Android-SDK-and-AVD-Manager-.png"><img src="http://krks.net/wp/wp-content/uploads/2010/01/Screenshot-Android-SDK-and-AVD-Manager--300x205.png" alt="" title="Screenshot-Android SDK and AVD Manager" width="300" height="205" class="alignnone size-medium wp-image-203" /></a></p>
<li>コマンドラインから、android list targetを実行して、X10のidを調べる</li>
<p><a href="http://krks.net/wp/wp-content/uploads/2010/01/screenshot-3.png"><img src="http://krks.net/wp/wp-content/uploads/2010/01/screenshot-3.png" alt="" title="screenshot-3" width="589" height="285" class="alignnone size-full wp-image-191" /></a><br />
androidコマンドは，androidSDKのtoolsフォルダに入っているので，別途Pathの設定はしておくこと。</p>
<li>対象のidで、エミュレータを作成する</li>
<p><code>android create avd -n X10 -t [id]</code><br />
を実行する</p>
<li>エミュレータを起動。eclipseから起動するとこんな感じ(画面がでかい！生サイズは画像をクリック。）</li>
<p><a href="http://krks.net/wp/wp-content/uploads/2010/01/screenshot-4.png"><img src="http://krks.net/wp/wp-content/uploads/2010/01/screenshot-4-195x300.png" alt="" title="screenshot-4" width="195" height="300" class="alignnone size-medium wp-image-192" /></a></p>
</ol>
<img src="http://feeds.feedburner.com/~r/krks-net-wp/~4/L3OYn48T2e4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://krks.net/wp/2010/01/24/%e3%82%bd%e3%83%8b%e3%82%a8%e3%83%aa%e3%81%aeandroid%e7%ab%af%e6%9c%ab-xperia-x10%e3%81%ae%e3%82%a8%e3%83%9f%e3%83%a5%e3%83%ac%e3%83%bc%e3%82%bf%e3%82%92%e5%8b%95%e3%81%8b%e3%81%99%e6%96%b9%e6%b3%95/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://krks.net/wp/2010/01/24/%e3%82%bd%e3%83%8b%e3%82%a8%e3%83%aa%e3%81%aeandroid%e7%ab%af%e6%9c%ab-xperia-x10%e3%81%ae%e3%82%a8%e3%83%9f%e3%83%a5%e3%83%ac%e3%83%bc%e3%82%bf%e3%82%92%e5%8b%95%e3%81%8b%e3%81%99%e6%96%b9%e6%b3%95/</feedburner:origLink></item>
		<item>
		<title>Ubuntuで任意の範囲の画面スクリーンキャプチャを取る方法</title>
		<link>http://feedproxy.google.com/~r/krks-net-wp/~3/NknlV8MzZSA/</link>
		<comments>http://krks.net/wp/2010/01/24/ubuntu%e3%81%a7%e4%bb%bb%e6%84%8f%e3%81%ae%e7%af%84%e5%9b%b2%e3%81%ae%e7%94%bb%e9%9d%a2%e3%82%b9%e3%82%af%e3%83%aa%e3%83%bc%e3%83%b3%e3%82%ad%e3%83%a3%e3%83%97%e3%83%81%e3%83%a3%e3%82%92%e5%8f%96/#comments</comments>
		<pubDate>Sun, 24 Jan 2010 02:21:35 +0000</pubDate>
		<dc:creator>kakkyz</dc:creator>
				<category><![CDATA[メモ]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://krks.net/wp/?p=178</guid>
		<description><![CDATA[Windowsだと、winshotというツールでできていた，
任意のスクリーンキャプチャを取る方法をメモ。
まずは、こちらのサイトで紹介されているシェルを作成。
スクリーンショットを任意の範囲で手軽に撮る方法
（自分はシェルの~/Desktopを~/デスクトップに置換しました）
作成後に，こちらのサイトで紹介されている方法でキーボードショートカットを登録。
1.gconf-editorを起動

2.app->metacity->global_keybindingsを修正
shift+Prtscnで取得できるようにした

3.app->metacity->keybinding_commandsを修正
作成したシェルのフルパスを設定

これはすごく便利です！
]]></description>
			<content:encoded><![CDATA[<p>Windowsだと、<a href="http://www.woodybells.com/winshot.html">winshot</a>というツールでできていた，<br />
任意のスクリーンキャプチャを取る方法をメモ。</p>
<p>まずは、こちらのサイトで紹介されているシェルを作成。</p>
<p><a href="http://d.hatena.ne.jp/tettou77-2/20091125">スクリーンショットを任意の範囲で手軽に撮る方法</a></p>
<p>（自分はシェルの~/Desktopを~/デスクトップに置換しました）</p>
<p>作成後に，こちらのサイトで紹介されている方法でキーボードショートカットを登録。</p>
<p>1.gconf-editorを起動<br />
<a href="http://krks.net/wp/wp-content/uploads/2010/01/screenshot.png"><img src="http://krks.net/wp/wp-content/uploads/2010/01/screenshot.png" alt="" title="gconfeditor" width="656" height="232" class="alignnone size-full wp-image-179" /></a></p>
<p>2.app->metacity->global_keybindingsを修正<br />
shift+Prtscnで取得できるようにした<br />
<a href="http://krks.net/wp/wp-content/uploads/2010/01/screenshot-1.png"><img src="http://krks.net/wp/wp-content/uploads/2010/01/screenshot-1.png" alt="" title="screenshot-1" width="709" height="575" class="alignnone size-full wp-image-181" /></a></p>
<p>3.app->metacity->keybinding_commandsを修正<br />
作成したシェルのフルパスを設定<br />
<a href="http://krks.net/wp/wp-content/uploads/2010/01/screenshot-2.png"><img src="http://krks.net/wp/wp-content/uploads/2010/01/screenshot-2.png" alt="" title="screenshot-2" width="741" height="572" class="alignnone size-full wp-image-182" /></a></p>
<p>これはすごく便利です！</p>
<img src="http://feeds.feedburner.com/~r/krks-net-wp/~4/NknlV8MzZSA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://krks.net/wp/2010/01/24/ubuntu%e3%81%a7%e4%bb%bb%e6%84%8f%e3%81%ae%e7%af%84%e5%9b%b2%e3%81%ae%e7%94%bb%e9%9d%a2%e3%82%b9%e3%82%af%e3%83%aa%e3%83%bc%e3%83%b3%e3%82%ad%e3%83%a3%e3%83%97%e3%83%81%e3%83%a3%e3%82%92%e5%8f%96/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://krks.net/wp/2010/01/24/ubuntu%e3%81%a7%e4%bb%bb%e6%84%8f%e3%81%ae%e7%af%84%e5%9b%b2%e3%81%ae%e7%94%bb%e9%9d%a2%e3%82%b9%e3%82%af%e3%83%aa%e3%83%bc%e3%83%b3%e3%82%ad%e3%83%a3%e3%83%97%e3%83%81%e3%83%a3%e3%82%92%e5%8f%96/</feedburner:origLink></item>
		<item>
		<title>AndroidからTumblrのdashboardを見るためのアプリ、Tumblryaをリリースしました</title>
		<link>http://feedproxy.google.com/~r/krks-net-wp/~3/p_zMGNX2WMc/</link>
		<comments>http://krks.net/wp/2010/01/23/android%e3%81%8b%e3%82%89tumblr%e3%81%aedashboard%e3%82%92%e8%a6%8b%e3%82%8b%e3%81%9f%e3%82%81%e3%81%ae%e3%82%a2%e3%83%97%e3%83%aa%e3%80%81tumblrya%e3%82%92%e3%83%aa%e3%83%aa%e3%83%bc%e3%82%b9/#comments</comments>
		<pubDate>Sat, 23 Jan 2010 01:17:12 +0000</pubDate>
		<dc:creator>kakkyz</dc:creator>
				<category><![CDATA[開発]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[tumblrya]]></category>

		<guid isPermaLink="false">http://krks.net/wp/?p=173</guid>
		<description><![CDATA[Android端末からTumblrを利用することができます。

AndroLibの紹介ページはこちら
まだまだ粗削りですが、
どんどんバージョンアップ予定なので、よろしくおねがいします。
]]></description>
			<content:encoded><![CDATA[<p>Android端末からTumblrを利用することができます。</p>
<p><a href="http://krks.net/wp/wp-content/uploads/2010/01/tumblr021.png"><img src="http://krks.net/wp/wp-content/uploads/2010/01/tumblr021.png" alt="" title="tumblr02" width="320" height="480" class="size-full wp-image-172" /></a></p>
<p><a href="http://jp.androlib.com/android.application.net-krks-android-tumblrya-pEBD.aspx">AndroLibの紹介ページはこちら</a></p>
<p>まだまだ粗削りですが、<br />
どんどんバージョンアップ予定なので、よろしくおねがいします。</p>
<img src="http://feeds.feedburner.com/~r/krks-net-wp/~4/p_zMGNX2WMc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://krks.net/wp/2010/01/23/android%e3%81%8b%e3%82%89tumblr%e3%81%aedashboard%e3%82%92%e8%a6%8b%e3%82%8b%e3%81%9f%e3%82%81%e3%81%ae%e3%82%a2%e3%83%97%e3%83%aa%e3%80%81tumblrya%e3%82%92%e3%83%aa%e3%83%aa%e3%83%bc%e3%82%b9/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://krks.net/wp/2010/01/23/android%e3%81%8b%e3%82%89tumblr%e3%81%aedashboard%e3%82%92%e8%a6%8b%e3%82%8b%e3%81%9f%e3%82%81%e3%81%ae%e3%82%a2%e3%83%97%e3%83%aa%e3%80%81tumblrya%e3%82%92%e3%83%aa%e3%83%aa%e3%83%bc%e3%82%b9/</feedburner:origLink></item>
		<item>
		<title>２０１０あけましておめでとうございます</title>
		<link>http://feedproxy.google.com/~r/krks-net-wp/~3/Jlkyhhc3j7o/</link>
		<comments>http://krks.net/wp/2010/01/03/%ef%bc%92%ef%bc%90%ef%bc%91%ef%bc%90%e3%81%82%e3%81%91%e3%81%be%e3%81%97%e3%81%a6%e3%81%8a%e3%82%81%e3%81%a7%e3%81%a8%e3%81%86%e3%81%94%e3%81%96%e3%81%84%e3%81%be%e3%81%99/#comments</comments>
		<pubDate>Sun, 03 Jan 2010 02:19:36 +0000</pubDate>
		<dc:creator>kakkyz</dc:creator>
				<category><![CDATA[メモ]]></category>
		<category><![CDATA[daily]]></category>

		<guid isPermaLink="false">http://krks.net/wp/2010/01/03/%ef%bc%92%ef%bc%90%ef%bc%91%ef%bc%90%e3%81%82%e3%81%91%e3%81%be%e3%81%97%e3%81%a6%e3%81%8a%e3%82%81%e3%81%a7%e3%81%a8%e3%81%86%e3%81%94%e3%81%96%e3%81%84%e3%81%be%e3%81%99/</guid>
		<description><![CDATA[去年も何とか終わりました。
今年も何とかなるといいな。
]]></description>
			<content:encoded><![CDATA[<p>去年も何とか終わりました。<br />
今年も何とかなるといいな。</p>
<img src="http://feeds.feedburner.com/~r/krks-net-wp/~4/Jlkyhhc3j7o" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://krks.net/wp/2010/01/03/%ef%bc%92%ef%bc%90%ef%bc%91%ef%bc%90%e3%81%82%e3%81%91%e3%81%be%e3%81%97%e3%81%a6%e3%81%8a%e3%82%81%e3%81%a7%e3%81%a8%e3%81%86%e3%81%94%e3%81%96%e3%81%84%e3%81%be%e3%81%99/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://krks.net/wp/2010/01/03/%ef%bc%92%ef%bc%90%ef%bc%91%ef%bc%90%e3%81%82%e3%81%91%e3%81%be%e3%81%97%e3%81%a6%e3%81%8a%e3%82%81%e3%81%a7%e3%81%a8%e3%81%86%e3%81%94%e3%81%96%e3%81%84%e3%81%be%e3%81%99/</feedburner:origLink></item>
		<item>
		<title>eclipseで、checkstyleを使ったときにゲッターセッターに警告が出て困る場合</title>
		<link>http://feedproxy.google.com/~r/krks-net-wp/~3/eFFaRlkJSgw/</link>
		<comments>http://krks.net/wp/2009/11/15/eclipse%e3%81%a7%e3%80%81checkstyle%e3%82%92%e4%bd%bf%e3%81%a3%e3%81%9f%e3%81%a8%e3%81%8d%e3%81%ab%e3%82%b2%e3%83%83%e3%82%bf%e3%83%bc%e3%82%bb%e3%83%83%e3%82%bf%e3%83%bc%e3%81%ab%e8%ad%a6%e5%91%8a/#comments</comments>
		<pubDate>Sun, 15 Nov 2009 14:53:25 +0000</pubDate>
		<dc:creator>kakkyz</dc:creator>
				<category><![CDATA[開発]]></category>
		<category><![CDATA[checkstyle]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[java]]></category>

		<guid isPermaLink="false">http://krks.net/wp/?p=160</guid>
		<description><![CDATA[たとえば、&#8217;hoge&#8217;がフィールドを隠していますとか、Parameter hoge sohuld be finalなどといった警告が出ます。
この場合は，基本的には警告を有効にしたまま，対象となるゲッターセッター部分だけを無効にしたいものです。
このように、ソースの一部だけcheckstyleの警告を無視させるためには，以下のように、
Filters->Suppresson Comment Filterを有効に設定(Addする)して，

無効にしたいソースコードのスタート部分に
    // CHECKSTYLE:OFF
チェックを再度有効にしたいところに
    // CHECKSTYLE:ON
と言うコメントを入れるといいです。
]]></description>
			<content:encoded><![CDATA[<p>たとえば、&#8217;hoge&#8217;がフィールドを隠していますとか、Parameter hoge sohuld be finalなどといった警告が出ます。<br />
この場合は，基本的には警告を有効にしたまま，対象となるゲッターセッター部分だけを無効にしたいものです。</p>
<p>このように、ソースの一部だけcheckstyleの警告を無視させるためには，以下のように、<br />
Filters->Suppresson Comment Filterを有効に設定(Addする)して，</p>
<p><a href="http://krks.net/wp/wp-content/uploads/2009/11/Screenshot-Checkstyle-Configuration-1.png"><img src="http://krks.net/wp/wp-content/uploads/2009/11/Screenshot-Checkstyle-Configuration-1.png" alt="Screenshot-Checkstyle Configuration" title="Screenshot-Checkstyle Configuration" width="789" height="641" class="alignnone size-full wp-image-162" /></a></p>
<p>無効にしたいソースコードのスタート部分に</p>
<div class="code">    // CHECKSTYLE:OFF</div>
<p>チェックを再度有効にしたいところに</p>
<div class="code">    // CHECKSTYLE:ON</div>
<p>と言うコメントを入れるといいです。</p>
<img src="http://feeds.feedburner.com/~r/krks-net-wp/~4/eFFaRlkJSgw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://krks.net/wp/2009/11/15/eclipse%e3%81%a7%e3%80%81checkstyle%e3%82%92%e4%bd%bf%e3%81%a3%e3%81%9f%e3%81%a8%e3%81%8d%e3%81%ab%e3%82%b2%e3%83%83%e3%82%bf%e3%83%bc%e3%82%bb%e3%83%83%e3%82%bf%e3%83%bc%e3%81%ab%e8%ad%a6%e5%91%8a/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://krks.net/wp/2009/11/15/eclipse%e3%81%a7%e3%80%81checkstyle%e3%82%92%e4%bd%bf%e3%81%a3%e3%81%9f%e3%81%a8%e3%81%8d%e3%81%ab%e3%82%b2%e3%83%83%e3%82%bf%e3%83%bc%e3%82%bb%e3%83%83%e3%82%bf%e3%83%bc%e3%81%ab%e8%ad%a6%e5%91%8a/</feedburner:origLink></item>
		<item>
		<title>Roidcastをアップデートしました（ファイルがダウンロードできるようになりました）</title>
		<link>http://feedproxy.google.com/~r/krks-net-wp/~3/KgsTOKPCrSY/</link>
		<comments>http://krks.net/wp/2009/11/14/roidcast%e3%82%92%e3%82%a2%e3%83%83%e3%83%97%e3%83%87%e3%83%bc%e3%83%88%e3%81%97%e3%81%be%e3%81%97%e3%81%9f%ef%bc%88%e3%83%95%e3%82%a1%e3%82%a4%e3%83%ab%e3%81%8c%e3%83%80%e3%82%a6%e3%83%b3%e3%83%ad/#comments</comments>
		<pubDate>Sat, 14 Nov 2009 14:30:50 +0000</pubDate>
		<dc:creator>kakkyz</dc:creator>
				<category><![CDATA[メモ]]></category>

		<guid isPermaLink="false">http://krks.net/wp/?p=156</guid>
		<description><![CDATA[androidでpodcastを利用するアプリ、Roidcastをアップデートしてファイルがダウンロードできる機能を追加しました。
http://krks.net/android/roidcast/index.ja.php
]]></description>
			<content:encoded><![CDATA[<p>androidでpodcastを利用するアプリ、Roidcastをアップデートしてファイルがダウンロードできる機能を追加しました。</p>
<p><a href="http://krks.net/android/roidcast/index.ja.php">http://krks.net/android/roidcast/index.ja.php</a></p>
<img src="http://feeds.feedburner.com/~r/krks-net-wp/~4/KgsTOKPCrSY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://krks.net/wp/2009/11/14/roidcast%e3%82%92%e3%82%a2%e3%83%83%e3%83%97%e3%83%87%e3%83%bc%e3%83%88%e3%81%97%e3%81%be%e3%81%97%e3%81%9f%ef%bc%88%e3%83%95%e3%82%a1%e3%82%a4%e3%83%ab%e3%81%8c%e3%83%80%e3%82%a6%e3%83%b3%e3%83%ad/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://krks.net/wp/2009/11/14/roidcast%e3%82%92%e3%82%a2%e3%83%83%e3%83%97%e3%83%87%e3%83%bc%e3%83%88%e3%81%97%e3%81%be%e3%81%97%e3%81%9f%ef%bc%88%e3%83%95%e3%82%a1%e3%82%a4%e3%83%ab%e3%81%8c%e3%83%80%e3%82%a6%e3%83%b3%e3%83%ad/</feedburner:origLink></item>
		<item>
		<title>ブラック・ラグーン９巻</title>
		<link>http://feedproxy.google.com/~r/krks-net-wp/~3/IJJYGWPo8iI/</link>
		<comments>http://krks.net/wp/2009/10/19/%e3%83%96%e3%83%a9%e3%83%83%e3%82%af%e3%83%bb%e3%83%a9%e3%82%b0%e3%83%bc%e3%83%b3%ef%bc%99%e5%b7%bb/#comments</comments>
		<pubDate>Mon, 19 Oct 2009 14:35:28 +0000</pubDate>
		<dc:creator>kakkyz</dc:creator>
				<category><![CDATA[本]]></category>
		<category><![CDATA[ブラック・ラグーン]]></category>
		<category><![CDATA[漫画]]></category>

		<guid isPermaLink="false">http://krks.net/wp/?p=147</guid>
		<description><![CDATA[登場人物の気持ちというか情感と言うか、
すごいものが伝わってくる絵で、これはすごい。
途中のバラライカが少佐に問いかけるシーンの表情が凄すぎる。



ブラック・ラグーン 9 (サンデーGXコミックス)
posted with amazlet at 09.10.19

広江 礼威 小学館 (2009-10-19)
Amazon.co.jp で詳細を見る



]]></description>
			<content:encoded><![CDATA[<p>登場人物の気持ちというか情感と言うか、<br />
すごいものが伝わってくる絵で、これはすごい。</p>
<p>途中のバラライカが少佐に問いかけるシーンの表情が凄すぎる。</p>
<div class="amazlet-box" style="margin-bottom:0px;">
<div class="amazlet-image" style="float:left;"><a href="http://www.amazon.co.jp/exec/obidos/ASIN/4091571891/wxmgl5b-22/ref=nosim/" name="amazletlink" target="_blank"><img src="http://ecx.images-amazon.com/images/I/61GugIjRQUL._SL160_.jpg" alt="ブラック・ラグーン 9 (サンデーGXコミックス)" style="border: none;" /></a></div>
<div class="amazlet-info" style="float:left;margin-left:15px;line-height:120%">
<div class="amazlet-name" style="margin-bottom:10px;line-height:120%"><a href="http://www.amazon.co.jp/exec/obidos/ASIN/4091571891/wxmgl5b-22/ref=nosim/" name="amazletlink" target="_blank">ブラック・ラグーン 9 (サンデーGXコミックス)</a>
<div class="amazlet-powered-date" style="font-size:7pt;margin-top:5px;font-family:verdana;line-height:120%">posted with <a href="http://www.amazlet.com/browse/ASIN/4091571891/wxmgl5b-22/ref=nosim/" title="ブラック・ラグーン 9 (サンデーGXコミックス)" target="_blank">amazlet</a> at 09.10.19</div>
</div>
<div class="amazlet-detail">広江 礼威 <br />小学館 (2009-10-19)</div>
<div class="amazlet-link" style="margin-top: 5px"><a href="http://www.amazon.co.jp/exec/obidos/ASIN/4091571891/wxmgl5b-22/ref=nosim/" name="amazletlink" target="_blank">Amazon.co.jp で詳細を見る</a></div>
</div>
<div class="amazlet-footer" style="clear: left"></div>
</div>
<img src="http://feeds.feedburner.com/~r/krks-net-wp/~4/IJJYGWPo8iI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://krks.net/wp/2009/10/19/%e3%83%96%e3%83%a9%e3%83%83%e3%82%af%e3%83%bb%e3%83%a9%e3%82%b0%e3%83%bc%e3%83%b3%ef%bc%99%e5%b7%bb/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://krks.net/wp/2009/10/19/%e3%83%96%e3%83%a9%e3%83%83%e3%82%af%e3%83%bb%e3%83%a9%e3%82%b0%e3%83%bc%e3%83%b3%ef%bc%99%e5%b7%bb/</feedburner:origLink></item>
		<item>
		<title>Android用アプリケーションRoidcastをリリースしました</title>
		<link>http://feedproxy.google.com/~r/krks-net-wp/~3/IXxx_at8fRw/</link>
		<comments>http://krks.net/wp/2009/10/12/android%e7%94%a8%e3%82%a2%e3%83%97%e3%83%aa%e3%82%b1%e3%83%bc%e3%82%b7%e3%83%a7%e3%83%b3roidcast%e3%82%92%e3%83%aa%e3%83%aa%e3%83%bc%e3%82%b9%e3%81%97%e3%81%be%e3%81%97%e3%81%9f/#comments</comments>
		<pubDate>Mon, 12 Oct 2009 07:47:54 +0000</pubDate>
		<dc:creator>kakkyz</dc:creator>
				<category><![CDATA[開発]]></category>
		<category><![CDATA[development]]></category>

		<guid isPermaLink="false">http://krks.net/wp/?p=126</guid>
		<description><![CDATA[
Android端末でPodcastを聞けるととっても便利だと思ったので、
アプリケーションを作ってみました。

どうぞ、利用してみてください。
詳細はこちら。
Githubで、ソースコードも公開しています。
ライセンスはGPLです。
]]></description>
			<content:encoded><![CDATA[<p><img src="http://krks.net/wp/wp-content/uploads/2009/10/roidcast_icon_01.png" alt="roidcast_icon_01" title="roidcast_icon_01" width="48" height="48" class="alignnone size-full wp-image-133" /></p>
<p>Android端末でPodcastを聞けるととっても便利だと思ったので、</p>
<p>アプリケーションを作ってみました。</p>
<p><img src="http://krks.net/wp/wp-content/uploads/2009/10/device07.ja.jpg" alt="roidcast" title="device07.ja" width="224" height="336" class="size-full wp-image-127" /></p>
<p>どうぞ、利用してみてください。</p>
<p>詳細は<a href="http://krks.net/android/roidcast/index.ja.php">こちら</a>。</p>
<p><a href="http://github.com/kakkyz81/Roidcast">Github</a>で、ソースコードも公開しています。</p>
<p>ライセンスはGPLです。</p>
<img src="http://feeds.feedburner.com/~r/krks-net-wp/~4/IXxx_at8fRw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://krks.net/wp/2009/10/12/android%e7%94%a8%e3%82%a2%e3%83%97%e3%83%aa%e3%82%b1%e3%83%bc%e3%82%b7%e3%83%a7%e3%83%b3roidcast%e3%82%92%e3%83%aa%e3%83%aa%e3%83%bc%e3%82%b9%e3%81%97%e3%81%be%e3%81%97%e3%81%9f/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://krks.net/wp/2009/10/12/android%e7%94%a8%e3%82%a2%e3%83%97%e3%83%aa%e3%82%b1%e3%83%bc%e3%82%b7%e3%83%a7%e3%83%b3roidcast%e3%82%92%e3%83%aa%e3%83%aa%e3%83%bc%e3%82%b9%e3%81%97%e3%81%be%e3%81%97%e3%81%9f/</feedburner:origLink></item>
	</channel>
</rss>
