<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>情報学部生のノート</title>
	<atom:link href="http://blog.flaxia.net/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.flaxia.net</link>
	<description>日々プログラミング</description>
	<lastBuildDate>Thu, 02 Sep 2010 07:06:26 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Androidアプリを開発してみて</title>
		<link>http://blog.flaxia.net/archives/485</link>
		<comments>http://blog.flaxia.net/archives/485#comments</comments>
		<pubDate>Thu, 02 Sep 2010 07:06:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[アプリ開発]]></category>
		<category><![CDATA[プログラミング]]></category>

		<guid isPermaLink="false">http://blog.flaxia.net/?p=485</guid>
		<description><![CDATA[8月中，ひたすらAndroidアプリの開発を行なった．
基本的にJavaと同じためか，非常にやりやすい，開発しやすいと思った．
Javaと同名のクラスで，同じような使い方のできるクラス(もちろんパッケージは違う)に少し違 [...]]]></description>
			<content:encoded><![CDATA[<p>8月中，ひたすらAndroidアプリの開発を行なった．</p>
<p>基本的にJavaと同じためか，非常にやりやすい，開発しやすいと思った．</p>
<p>Javaと同名のクラスで，同じような使い方のできるクラス(もちろんパッケージは違う)に少し違いがあって戸惑うことがあった．</p>
<p>例えばPointクラス．</p>
<p>Javaの場合は「java.awt.Point」</p>
<p>Androidの場合は「android.graphics.Point」</p>
<p>Javaの場合はフィールドに直接アクセスすることで，int値，ゲッターを使うことでdouble値を得られたが，Androidの場合はゲッターが無く，int値しか取得することができなかった．</p>
<p>8月の間はそれでも問題なかったため，気がつかなかったが，今調べていたらAndroidには「android.graphics.PointF」があり，これはfloat値を得ることができるようだ．</p>
<p>doubleとfloatの違いはあるが，浮動小数点が必要な時にはこれで代用できそうだ．</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.flaxia.net/archives/485/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twitter記録プログラム</title>
		<link>http://blog.flaxia.net/archives/481</link>
		<comments>http://blog.flaxia.net/archives/481#comments</comments>
		<pubDate>Sun, 20 Jun 2010 04:30:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[プログラミング]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://blog.flaxia.net/?p=481</guid>
		<description><![CDATA[PythonでTwitterの指定したアカウントのツイートを記録するプログラムを書いてみた．
さすがPython，お手軽でした．
KVM上のUbuntuでcronで回して，現在稼働中．
Pythonよりも，cronで苦労 [...]]]></description>
			<content:encoded><![CDATA[<p>PythonでTwitterの指定したアカウントのツイートを記録するプログラムを書いてみた．</p>
<p>さすがPython，お手軽でした．</p>
<p>KVM上のUbuntuでcronで回して，現在稼働中．</p>
<p>Pythonよりも，cronで苦労した気がする．</p>
<p>cronからPythonを直接実行すると，なぜか動いてくれないもんだから，シェルスクリプトを挟んでしまっている．</p>
<p>cronに対する理解が足りていないね．</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.flaxia.net/archives/481/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Activityを継承したクラスをさらに継承したい</title>
		<link>http://blog.flaxia.net/archives/479</link>
		<comments>http://blog.flaxia.net/archives/479#comments</comments>
		<pubDate>Sat, 19 Jun 2010 15:21:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[アプリ開発]]></category>
		<category><![CDATA[プログラミング]]></category>

		<guid isPermaLink="false">http://blog.flaxia.net/?p=479</guid>
		<description><![CDATA[自分用ライブラリにActivityを継承して，メソッドの追加を行ったものを用意して，次から開発するときに，それを継承するようにしたら便利なんじゃないかと考えて，ActivityEXというクラスを作ってみた．
作ってみたの [...]]]></description>
			<content:encoded><![CDATA[<p>自分用ライブラリにActivityを継承して，メソッドの追加を行ったものを用意して，次から開発するときに，それを継承するようにしたら便利なんじゃないかと考えて，ActivityEXというクラスを作ってみた．</p>
<p>作ってみたのだが，それを継承して実行すると「○○は予期せず終了しました．やり直してください」とアプリが強制終了してしまう．</p>
<p>思い当たることもなくお手上げ状態．</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.flaxia.net/archives/479/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>KVMに移行完了</title>
		<link>http://blog.flaxia.net/archives/476</link>
		<comments>http://blog.flaxia.net/archives/476#comments</comments>
		<pubDate>Mon, 07 Jun 2010 13:05:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[サーバー]]></category>

		<guid isPermaLink="false">http://blog.flaxia.net/?p=476</guid>
		<description><![CDATA[VirtualBoxで仮想化していたサーバをKVMへ移行．
今までは，すべてを一つのゲストで行っていたが，今回はWebサーバ，メールサーバ，DNSサーバ等と，それぞれ別のゲストを用意することにした．
]]></description>
			<content:encoded><![CDATA[<p>VirtualBoxで仮想化していたサーバをKVMへ移行．</p>
<p>今までは，すべてを一つのゲストで行っていたが，今回はWebサーバ，メールサーバ，DNSサーバ等と，それぞれ別のゲストを用意することにした．</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.flaxia.net/archives/476/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VirtualBoxからKVMに移行予定</title>
		<link>http://blog.flaxia.net/archives/473</link>
		<comments>http://blog.flaxia.net/archives/473#comments</comments>
		<pubDate>Sat, 22 May 2010 11:43:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[サーバー]]></category>
		<category><![CDATA[仮想化]]></category>

		<guid isPermaLink="false">http://blog.flaxia.net/?p=473</guid>
		<description><![CDATA[今このブログを動かしているサーバはVirtualBox上で動作している．
これをKVMに移したい．
VirtualBoxに特に不満はないが，KVMを使ってみたいという理由で行う．
移行作業中にVirtualBoxでこのブ [...]]]></description>
			<content:encoded><![CDATA[<p>今このブログを動かしているサーバはVirtualBox上で動作している．</p>
<p>これをKVMに移したい．</p>
<p>VirtualBoxに特に不満はないが，KVMを使ってみたいという理由で行う．</p>
<p>移行作業中にVirtualBoxでこのブログを動かすマシンを一台用意しないと．</p>
<p>そうしたら，急がずに作業できるし，KV以外にもXenを試すこともできる．</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.flaxia.net/archives/473/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu10.04を入れてみた</title>
		<link>http://blog.flaxia.net/archives/471</link>
		<comments>http://blog.flaxia.net/archives/471#comments</comments>
		<pubDate>Sat, 08 May 2010 16:24:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[日記]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://blog.flaxia.net/?p=471</guid>
		<description><![CDATA[Mandriva2010.0を消してUbuntu10.04をインストールしてみた．
概ねいい感じに動いてくれている．
気になったのは日本語入力．Mandrivaの時はShiftを押しながら一文字入力すると，確定するまでそ [...]]]></description>
			<content:encoded><![CDATA[<p>Mandriva2010.0を消してUbuntu10.04をインストールしてみた．</p>
<p>概ねいい感じに動いてくれている．</p>
<p>気になったのは日本語入力．Mandrivaの時はShiftを押しながら一文字入力すると，確定するまでその後の入力が半角英数字になっていたが，Ubuntuでは日本語になってしまう．</p>
<p>SCIMとiBusの違いだろうか．</p>
<p>Let&#8217;snoteで音が出ないのは相変わらず．</p>
<p>Windows以外で音が初めからでたのは今のところSolarisだけ．</p>
<p>簡単に出るようにできるから大した問題ではないけど．</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.flaxia.net/archives/471/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>アプリが異常終了してしまう</title>
		<link>http://blog.flaxia.net/archives/468</link>
		<comments>http://blog.flaxia.net/archives/468#comments</comments>
		<pubDate>Mon, 19 Apr 2010 23:04:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[アプリ開発]]></category>
		<category><![CDATA[試行錯誤]]></category>

		<guid isPermaLink="false">http://blog.flaxia.net/?p=468</guid>
		<description><![CDATA[Hello Worldだけじゃ面白くない．
次は動きのあるアプリを作ってみようと思い，ボタンをタップすると，ボタンのテキストが変化する，という簡単な動きをするアプリを作ることにした．
最終的には成功したのだが，なかなかう [...]]]></description>
			<content:encoded><![CDATA[<p>Hello Worldだけじゃ面白くない．</p>
<p>次は動きのあるアプリを作ってみようと思い，ボタンをタップすると，ボタンのテキストが変化する，という簡単な動きをするアプリを作ることにした．</p>
<p>最終的には成功したのだが，なかなかうまくいかなかった．</p>
<p>EclipseでAndroid開発の環境を整えると，RADツールが利用できるのだが，これがいけなかったようだ．</p>
<p>状況は，コンパイルでエラーがでないが，エミュレータで起動すると，アプリが異常終了されてしまう，というものだった．</p>
<p>もしやと思い，Xperiaで実行してみたが，やはりアプリが異常終了．</p>
<p>しかもホームにまで異常をきたすという始末．</p>
<p>再起動で元に戻り事なきを得ましたが．</p>
<p>そして，次にRADツールの使用をやめたら，正常に動作するようになりました．</p>
<p>RADツールを使った方が断然楽なのでできれば使いたいところだけど．</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.flaxia.net/archives/468/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Androidアプリの開発を始める</title>
		<link>http://blog.flaxia.net/archives/465</link>
		<comments>http://blog.flaxia.net/archives/465#comments</comments>
		<pubDate>Mon, 19 Apr 2010 17:02:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[開発]]></category>

		<guid isPermaLink="false">http://blog.flaxia.net/?p=465</guid>
		<description><![CDATA[
とりあえず，Hello Worldを表示してみた．
Xperiaの縦解像度よりもLet&#8217;snoteの縦解像度が低いため，ちょっと不便を感じた．
明日Androidプログラミングの本を買ってこようと思う．
]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-466" title="AndroidHelloWorld" src="http://blog.flaxia.net/wp-content/uploads/2010/04/AndroidHelloWorld.png" alt="" width="286" height="46" /></p>
<p>とりあえず，Hello Worldを表示してみた．</p>
<p>Xperiaの縦解像度よりもLet&#8217;snoteの縦解像度が低いため，ちょっと不便を感じた．</p>
<p>明日Androidプログラミングの本を買ってこようと思う．</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.flaxia.net/archives/465/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Android&#12395;WordPress&#12463;&#12521;&#12452;&#12450;&#12531;&#12488;&#12364;&#12354;&#12387;&#12383;</title>
		<link>http://blog.flaxia.net/archives/464</link>
		<comments>http://blog.flaxia.net/archives/464#comments</comments>
		<pubDate>Mon, 12 Apr 2010 11:04:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[日記]]></category>
		<category><![CDATA[Xperia]]></category>

		<guid isPermaLink="false">http://blog.flaxia.net/archives/464</guid>
		<description><![CDATA[&#26089;&#36895;Xperia&#12391;&#12486;&#12473;&#12488; &#38263;&#25991;&#12398;&#25237;&#31295;&#12399;&#12392;&#12390;&#12418;&#12420;&#12387;&#12390;&#12425;&#12428;&#12394;&#12356; Xperia&#12391;&#12398;&#20837;&#21147;&#12399;Twitter&#12368;&#12425;&#12356;&#12414;&#12391;&#12363;&#12394;]]></description>
			<content:encoded><![CDATA[<p>&#26089;&#36895;Xperia&#12391;&#12486;&#12473;&#12488;<br />
&#38263;&#25991;&#12398;&#25237;&#31295;&#12399;&#12392;&#12390;&#12418;&#12420;&#12387;&#12390;&#12425;&#12428;&#12394;&#12356;<br />
Xperia&#12391;&#12398;&#20837;&#21147;&#12399;Twitter&#12368;&#12425;&#12356;&#12414;&#12391;&#12363;&#12394;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.flaxia.net/archives/464/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Xperia購入</title>
		<link>http://blog.flaxia.net/archives/462</link>
		<comments>http://blog.flaxia.net/archives/462#comments</comments>
		<pubDate>Thu, 01 Apr 2010 15:56:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[日記]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[Xperia X10]]></category>

		<guid isPermaLink="false">http://blog.flaxia.net/?p=462</guid>
		<description><![CDATA[AndroidデビューはXperia X10になりました．
今のところマルチタッチができないことによる不便は感じない．
そもそもWindowsMobileを使っていたときにもマルチタッチしたいと思わなかったオレにはまだま [...]]]></description>
			<content:encoded><![CDATA[<p>AndroidデビューはXperia X10になりました．</p>
<p>今のところマルチタッチができないことによる不便は感じない．</p>
<p>そもそもWindowsMobileを使っていたときにもマルチタッチしたいと思わなかったオレにはまだまだ不要な技術なのかもしれない．</p>
<p>パソコンで使うこともないし．</p>
<p>とりあえず，よさそうなソフトをどんどんインストール中．</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.flaxia.net/archives/462/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
