<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xml:lang="en"
   xmlns:atom="http://www.w3.org/2005/Atom"
   xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>kwkbtr&#8217;s log</title>
    <link>http://kwkbtr.info/log</link>
    <atom:link rel="self" type="application/rss+xml" href="http://kwkbtr.info/log/feed/rss" />
    <description>kwkbtr&#8217;s log</description>
    <language>en</language>
    <copyright>Copyright 2009, KAWAKUBO Toru &#x3C;kwkbtr at gmail dot com></copyright>
    <ttl>60</ttl>
    <pubDate>Wed, 20 Jul 2011 18:23:29 GMT</pubDate>
    <generator>PyBlosxom http://pyblosxom.sourceforge.net/ 1.4.3 01/10/2008</generator>
    <item>
      <title xml:lang="ja">intのかけ算には気をつけよう</title>
      <link>http://kwkbtr.info/log/201107210305</link>
      <guid isPermaLink="true">http://kwkbtr.info/log/201107210305</guid>
      <description xml:lang="ja">意外と簡単にオーバーフローします。</description>
      <content:encoded><![CDATA[<div lang="ja" xml:lang="ja">
<p>レアケースかもしれないし、当たり前の常識かもしれないが、ちょっとハマったので書き留めておく。</p>
<p>C/C++で<code>int</code>を使うとたいていは32ビットになるだろう。符号ビットがあるので実質31ビットで、log<sub>10</sub>2が0.3ぐらいだから、十進では31×0.3=10桁くらいが最大値である。したがって10<sup>3</sup>=1000ぐらいの<code>int</code>を4つかけ算するとオーバーフローしてしまう。<ins>（しかも全くエラーが出ない。）</ins>ちょっと大きめの<code>int</code>をちょっとたくさんかけるときはちゃんと大きい整数型にキャストしよう。（Googleは<code>stdint.h</code>で定義されているサイズが明示された整数型の使用を<a href="http://www.textdrop.net/google-styleguide-ja/cppguide.xml#整数型">勧めている</a>。）</p>
<span class="tags">Tags <a href="http://kwkbtr.info/log/tags/Programming" rel="tag">Programming</a>, <a href="http://kwkbtr.info/log/tags/C" rel="tag">C</a>, <a href="http://kwkbtr.info/log/tags/C%2B%2B" rel="tag">C++</a> </span></div>]]></content:encoded>
      <pubDate>Wed, 20 Jul 2011 18:23:29 GMT</pubDate>
    </item>
    <item>
      <title xml:lang="ja">Mac OS XでCanonのスキャナーがうんともすんとも言わなくて困ったら</title>
      <link>http://kwkbtr.info/log/201011040220</link>
      <guid isPermaLink="true">http://kwkbtr.info/log/201011040220</guid>
      <description xml:lang="ja">こうしたらせいせいするかもしれません。</description>
      <content:encoded><![CDATA[<div lang="ja" xml:lang="ja">
<p>Mac OS Xの<a href="http://macosxgloss.seesaa.net/article/16666486.html">case sensitiveなファイルシステム</a>を使っていて、Canonのスキャナー（<a href="http://cweb.canon.jp/canoscan/lineup/index.html">CanoScan LiDE</a>とか）をつないでもうんともすんとも言わなかったり、コンピューター様に</p>
<blockquote><pre>252.0.0</pre></blockquote>
<p>とか言い放たれるような時は、<a href="http://forums.macnn.com/57/consumer-hardware-and-components/400898/cant-use-canon-lide-70-scanner/#post3987891">Can't use Canon LiDE 70 scanner anymore - scanner already in use? - MacNN Forums</a>にあるように、ターミナルを開いて</p>
<blockquote cite="http://forums.macnn.com/57/consumer-hardware-and-components/400898/cant-use-canon-lide-70-scanner/#post3987891"><pre>cd /Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ4807
sudo ln -s CNQ4807.DAT CNQ4807.dat
sudo ln -s CNQ4807M.DAT CNQ4807M.dat
sudo ln -s CNQ4807N.DAT CNQ4807N.dat
sudo ln -s CNQ4807P.DAT CNQ4807P.dat
sudo ln -s CNQ4807R.DAT CNQ4807R.dat</pre></blockquote>
<p>とするとちゃんと仕事をしてくれてせいせいするかもしれません。（パスワードを求められた場合は入力する必要があります）</p>
<span class="tags">Tags <a href="http://kwkbtr.info/log/tags/Canon" rel="tag">Canon</a>, <a href="http://kwkbtr.info/log/tags/Mac%20OS%20X" rel="tag">Mac OS X</a>, <a href="http://kwkbtr.info/log/tags/%E3%82%B9%E3%82%AD%E3%83%A3%E3%83%8A%E3%83%BC" rel="tag">スキャナー</a>, <a href="http://kwkbtr.info/log/tags/%E3%82%A8%E3%83%A9%E3%83%BC" rel="tag">エラー</a> </span></div>]]></content:encoded>
      <pubDate>Wed, 03 Nov 2010 18:17:42 GMT</pubDate>
    </item>
    <item>
      <title xml:lang="en">MathJax+Showdown</title>
      <link>http://kwkbtr.info/log/201010050320</link>
      <guid isPermaLink="true">http://kwkbtr.info/log/201010050320</guid>
      <description xml:lang="en">The combination of MathJax and Showdown brought me a simple solution for research notes.</description>
      <content:encoded><![CDATA[<div lang="en" xml:lang="en">
<p>Once I mentioned <a href="http://kwkbtr.info/log/201003302359">TiddlyWiki+MathJax</a> for writing research notes containing mathematical expressions in HTML. Yesterday I invented a simpler solution using <a href="http://attacklab.net/showdown/">Showdown</a> and <a href="http://www.mathjax.org">MathJax</a>.</p>
<ul>
<li>Showdown+MathJax example: <a href="http://kwkbtr.info/notes/20101005-mathdown.html">20101005-mathdown.html</a> (An incomplete summary of <a href="http://www.amazon.com/dp/0521804426">&#8220;Quantum Measurement and Control&#8221; by Wiseman and Milburn</a>)</li>
</ul>
<p>Some remarks:</p>
<ul>
<li>Modify the script paths before you use it.</li>
<li>Uncomment the <code>meta</code> tag for auto-refreshing, if you want. With this feature, changes you make on the file are reflected to the output on the browser almost in real time. Nevertheless, the auto-refreshing always show the top of the page (at least with Safari), which is annoying.</li>
<li>Showdown's syntax is the same as <a href="http://daringfireball.net/projects/markdown/syntax">that of Markdown</a>. There are some conflicts between the Markdown syntax and LaTeX commands, you need to know some workarounds.
<ul>
<li><em>Single backslashes</em> in the commands for opening/closing mathematical expressions (<code>\(</code> <code>\)</code> <code>\[ </code><code>\]</code>) must be replaced by <em>double backslashes</em> since there is a <a href="http://daringfireball.net/projects/markdown/syntax#backslash">backslash escape rule</a>.</li>
<li>The <del datetime="2010-10-05T17:10:00+09:00">superscript command (<code>^</code>)</del> <ins datetime="2010-10-05T17:10:00+09:00">subscript command (<code>_</code>)</ins> and the asterisk (<code>*</code>) are interpreted as <a href="http://daringfireball.net/projects/markdown/syntax#em">emphasis</a> by Showdown. To avoid this issue, you can put a space in front of the character or escape them with backslashes.</li>
</ul>
</li>
</ul>
<p>Enjoy!</p>
<p lang="ja" xml:lang="ja">以前、数式を含むノートをHTMLを使って作る方法として<a href="http://kwkbtr.info/log/201003302359">「TiddlyWiki+MathJax+Dropboxで開ける明るい未来」</a>を書きましたが、昨日<a href="http://attacklab.net/showdown/">Showdown</a>と<a href="http://www.mathjax.org">MathJax</a>を使ったもっとシンプルな方法を考えました。上述の通り、サンプルのファイルを<a href="http://kwkbtr.info/notes/20101005-mathdown.html">置いてあります</a>。注意点をいくつか。</p>
<ul>
<li>使う前にJavascriptのパスを修正してください。</li>
<li><code>meta</code>タグのコメントを外せば自動更新するようになります。これを設定するとほぼリアルタイムにファイルへの変更が出力に反映されて便利です。</li>
<li>Showdownは<a href="http://daringfireball.net/projects/markdown/syntax">Markdownの記法</a>に基づいて文書を整形するので、少しLaTeXコマンドと衝突します。以下のように回避できます。
<ul>
<li>数式の開始・終了のコマンド(<code>\(</code> <code>\)</code> <code>\[ </code><code>\]</code>)の中のバックスラッシュを1つから2つにしてください。これは<a href="http://daringfireball.net/projects/markdown/syntax#backslash">バックスラッシュによるエスケープルール</a>のためです。</li>
<li><del datetime="2010-10-05T17:10:00+09:00">上つき文字(<code>^</code>)</del><ins datetime="2010-10-05T17:10:00+09:00">下つき文字(<code>_</code>)</ins>とアスタリスク(<code>*</code>)は<a href="http://daringfireball.net/projects/markdown/syntax#em">強調と解釈される</a>ので、直前にスペースを入れるかバックスラッシュでエスケープしてください。</li>
</ul>
</li>
</ul>
<p lang="ja" xml:lang="ja">これで勝つる！</p>
<span class="tags">Tags <a href="http://kwkbtr.info/log/tags/MathJax" rel="tag">MathJax</a>, <a href="http://kwkbtr.info/log/tags/Showdown" rel="tag">Showdown</a>, <a href="http://kwkbtr.info/log/tags/LaTeX" rel="tag">LaTeX</a>, <a href="http://kwkbtr.info/log/tags/lang%3D%22en%22" rel="tag">lang="en"</a> </span></div>]]></content:encoded>
      <pubDate>Mon, 11 Oct 2010 03:36:45 GMT</pubDate>
    </item>
    <item>
      <title xml:lang="en">A note on interference between independent bosonic fields under U(1) superselection rule</title>
      <link>http://kwkbtr.info/log/201009241426</link>
      <guid isPermaLink="true">http://kwkbtr.info/log/201009241426</guid>
      <description xml:lang="en">I uploaded a note on interference of indepedent BECs.</description>
      <content:encoded><![CDATA[<div lang="en" xml:lang="en">
<p>There has been a controversy concerning a question &#8220;why two independently prepared Bose-Einstein condensates interferes?&#8221; I once considered the problem, and after surveying many related works, doing some calculations myself, and giving a couple of talks about the topic, I feel the problem is now well understood. Still, this question keeps making people confused. I decided to post a note on the subject, which is a slightly modified version of a manuscript I wrote for <a href="http://staff.aist.go.jp/s-kawabata/qit/qit21/index_e.html">QIT21</a>. I also uploaded a presentation file I used in a seminar held in <a href="http://cat.phys.s.u-tokyo.ac.jp/index-e.html">Ueda group</a>. I hope these articles help you understanding the problem.</p>
<ul>
<li><a href="http://kwkbtr.info/pdf/bec-interference.pdf">A note on interference between independent bosonic fields under U(1) superselection rule (PDF, 168KB)</a></li>
<li><a href="http://kwkbtr.info/pdf/bec-seminar.pdf">Interference between independently prepared Bose particles (PDF, 1.8MB)</a></li>
</ul>
<p lang="ja" xml:lang="ja">独立なBECの干渉に関するノートとプレゼンテーションファイルをアップロードしました。</p>
<p lang="ja" xml:lang="ja">参考：日々の雑感的なもの <a href="http://www.gakushuin.ac.jp/~881791/d/0011.html#12">11/12/2000（日）</a> <a href="http://www.gakushuin.ac.jp/~881791/d/0011.html#13">11/13/2000（月）</a> <a href="http://www.gakushuin.ac.jp/~881791/d/0011.html#14">11/14/2000（火）</a> <a href="http://www.gakushuin.ac.jp/~881791/d/0011.html#15">11/15/2000（水）</a> <a href="http://www.gakushuin.ac.jp/~881791/d/0011.html#20">11/20/2000（月）</a> <a href="http://www.gakushuin.ac.jp/~881791/d/0912.html#22">2009/12/22（火）</a></p>
<span class="tags">Tags <a href="http://kwkbtr.info/log/tags/physics" rel="tag">physics</a>, <a href="http://kwkbtr.info/log/tags/BEC" rel="tag">BEC</a>, <a href="http://kwkbtr.info/log/tags/lang%3D%22en%22" rel="tag">lang="en"</a> </span></div>]]></content:encoded>
      <pubDate>Fri, 24 Sep 2010 05:29:01 GMT</pubDate>
    </item>
    <item>
      <title xml:lang="ja">Evernote Site Memoryを付けました。</title>
      <link>http://kwkbtr.info/log/201009182244</link>
      <guid isPermaLink="true">http://kwkbtr.info/log/201009182244</guid>
      <description xml:lang="ja">ただそれだけです。</description>
      <content:encoded><![CDATA[<div lang="ja" xml:lang="ja">
<p>ほとんど需要はないような気がしますが。</p>
<span class="tags">Tags <a href="http://kwkbtr.info/log/tags/Evernote" rel="tag">Evernote</a> </span></div>]]></content:encoded>
      <pubDate>Sat, 18 Sep 2010 13:46:42 GMT</pubDate>
    </item>
    <item>
      <title xml:lang="ja">TiddlyWiki+MathJax+Dropboxで開ける明るい未来</title>
      <link>http://kwkbtr.info/log/201003302359</link>
      <guid isPermaLink="true">http://kwkbtr.info/log/201003302359</guid>
      <description xml:lang="ja">TiddlyWiki+MathJax+Dropboxでいい感じのノートが作れそうです。</description>
      <content:encoded><![CDATA[<div lang="ja" xml:lang="ja">
<p>（<a href="http://pha22.net/hotentry/">ホッテントリメーカー</a>は使ってないです）</p>
<p>研究や勉強のノートの作り方を考えていたのです。例えばEvernoteだと、</p>
<ul>
<li>他のノートやローカルのファイルにリンクを張れない（と思う）</li>
<li>ノートブックやタグで関連ノートを集めても、表示される順番をうまく制御できない</li>
<li>どうもインターフェースがあんまり使いやすくない（気がする。うまく文章にできないけど。サムネイル表示だと長いタイトルが全部表示できないとか、タグを付けるとかの編集作業に対するキーバインドがない（できない）とか。あと、クイックルックができたら結構いいんじゃないかと思う）</li>
<li>当然数式が入力できない</li>
<li>動作がとろい</li>
</ul>
<p>とかいう不満があるわけです。じゃあ普通にLaTeXとかでノートを作ればどうかというと、もちろん数式はばっちり入力できるけども、</p>
<ul>
<li>ソースファイルをコンパイルして.dvi, .aux, .logファイルができてさらにPDFに変換、ファイルがいっぱいできてうざい</li>
<li>編集するファイルと出来上がりのファイルが別だから、編集する画面と出来上がりを見る画面が別々に必要で、うざい</li>
<li>ローカルのファイルにリンクを張れるかどうかは調べてないから知らないから、うざい</li>
</ul>
<p>とこれまたうざさが風呂釜いっぱいとまではいかないけれどコップ一杯くらいは溢れている。そこで僕は<strong>「えいやっ」</strong>と、</p>
<h4><a href="http://www.tiddlywiki.com">TiddlyWiki</a>+<a href="http://www.mathjax.org">MathJax</a>(+<a href="https://www.dropbox.com">Dropbox</a>)</h4>
<p>を試してみたんです。</p>
<p><strong>これはいい。</strong></p>
<p><a href="http://kwkbtr.tumblr.com/photo/1280/484454708/1/tumblr_l03rw8IMve1qa2spq"><img src="http://27.media.tumblr.com/tumblr_l03rw8IMve1qa2spqo1_500.png" width="500" height="424" alt="Screenshot of Tiddlywiki + MathJax" /></a> かっこいい。</p>
<p>リンクは張り放題だし、ファイルはHTML一つだし、Dropboxに放り込んどけばどのPCでもブラウザ上で編集できてその場で見られるわけですよ。素晴らしい！MathJaxをダウンロードして展開し、TiddlyWikiのMarkupPostHeadに一行 <code>&lt;script src="../MathJax/MathJax.js" type="text/javascript"&gt;&lt;/script&gt;</code> と入れるだけ！あら簡単！</p>
<p>ということでこの素晴らしい発見を皆さんにお伝えしようと思って書きました。某ブログの雰囲気を真似たんだけど似てないかもしれないからどことは言わないでおきます。</p>
<span class="tags">Tags <a href="http://kwkbtr.info/log/tags/TiddlyWiki" rel="tag">TiddlyWiki</a>, <a href="http://kwkbtr.info/log/tags/MathJax" rel="tag">MathJax</a>, <a href="http://kwkbtr.info/log/tags/Dropbox" rel="tag">Dropbox</a>, <a href="http://kwkbtr.info/log/tags/Evernote" rel="tag">Evernote</a>, <a href="http://kwkbtr.info/log/tags/LaTeX" rel="tag">LaTeX</a> </span></div>]]></content:encoded>
      <pubDate>Wed, 31 Mar 2010 01:05:10 GMT</pubDate>
    </item>
    <item>
      <title xml:lang="ja">フランス映画</title>
      <link>http://kwkbtr.info/log/201003272344</link>
      <guid isPermaLink="true">http://kwkbtr.info/log/201003272344</guid>
      <description xml:lang="ja">『ずっとあなたを愛してる』を観てきた。</description>
      <content:encoded><![CDATA[<div lang="ja" xml:lang="ja">
<p><a href="http://www.zutto-movie.jp">『ずっとあなたを愛してる』</a>(Il y a longtemps que je t&#8217;aime/I&#8217;ve Loved You So Long)を観に行った。てっきり原題とは違う臭い邦題が付けられているのかと思ったら、そういうわけでもないようだ。</p>
<p>インターネット上の感想を少し眺めてみると、（別に悪い意味ではなく）「暗い」「重い」と評されているようだが、暗さや重さはほとんど感じなかった。感情移入する鍛錬が足りていないのかもしれない（笑）。むしろ、登場人物のやりとりを見ていて、無意識に微笑んでしまうようなシーンが多かった。端から見ればにやついているように見えたであろう。また、「謎」が読めてしまうとかいう批評もあったが、個人的にはそこを期待する映画ではないと思う。純粋に雰囲気に浸れる映画で、なかなかよかった。</p>
<p>それにしても、インターネット上のユーザーレビューを読んでいたら、いろいろ細かいところを見逃しあるいは忘れているような気がしてきて、もう一度観たいなあと思ってしまうな。</p>
<span class="tags">Tags <a href="http://kwkbtr.info/log/tags/%E6%98%A0%E7%94%BB" rel="tag">映画</a> </span></div>]]></content:encoded>
      <pubDate>Tue, 30 Mar 2010 16:12:45 GMT</pubDate>
    </item>
    <item>
      <title xml:lang="ja">旅立ちの季節</title>
      <link>http://kwkbtr.info/log/201003262343</link>
      <guid isPermaLink="true">http://kwkbtr.info/log/201003262343</guid>
      <description xml:lang="ja">後輩と飲みに行った。</description>
      <content:encoded><![CDATA[<div lang="ja" xml:lang="ja">
<p>この春大学を卒業して就職する部活の後輩と飲みに行った。</p>
<p>私が四回生の年に入ってきた後輩で、素直な性格だけど少し頼りないかな、という印象を持っていたのだが、実際は頼りになるキャプテンとして部を取り仕切っていたようだ。もともと部の勧誘活動がうまくいかず部員数が少なかったので、彼には負担をかけてしまうなと責任を感じていたのだが、むしろその状況を利用して人間的に成長してくれたようで、うれしかった。</p>
</div>]]></content:encoded>
      <pubDate>Tue, 30 Mar 2010 15:17:16 GMT</pubDate>
    </item>
    <item>
      <title xml:lang="ja">2010年の目標（その二、その三）</title>
      <link>http://kwkbtr.info/log/201001102338</link>
      <guid isPermaLink="true">http://kwkbtr.info/log/201001102338</guid>
      <description xml:lang="ja">週に一回勉強したことや考えたことをアウトプットする、論文を四本投稿する</description>
      <content:encoded><![CDATA[<div lang="ja" xml:lang="ja">
<p><a href="http://kwkbtr.info/log/201001011225">2010年の目標その一</a>が<a href="http://kwkbtr.tumblr.com/post/311873707/sleep-statistics-for-01-02-1-went-to-bed">一</a><a href="http://kwkbtr.tumblr.com/post/313551182/sleep-statistics-for-02-03-1-went-to-bed">回</a><a href="http://kwkbtr.tumblr.com/post/315331639/sleep-statistics-for-03-04-1-went-to-bed">も</a><a href="http://kwkbtr.tumblr.com/post/316988086/sleep-statistics-for-04-05-1-went-to-bed">守</a><a href="http://kwkbtr.tumblr.com/post/318724976/sleep-statistics-for-05-06-1-went-to-bed">ら</a><a href="http://kwkbtr.tumblr.com/post/320471766/sleep-statistics-for-06-07-1-went-to-bed">れ</a><a href="http://kwkbtr.tumblr.com/post/322239704/sleep-statistics-for-07-08-1-went-to-bed">て</a><a href="http://kwkbtr.tumblr.com/post/324223731/sleep-statistics-for-08-09-1-went-to-bed">な</a><a href="http://kwkbtr.tumblr.com/post/325953407/sleep-statistics-for-09-10-1-went-to-bed">い</a>という失態の中、残りの目標を記録しておきたいと思います。</p>
<p>まず、（少なくとも）週に一回、勉強したことや考えたことを何らかの形でアウトプットしたいと思います。本や論文を読んでも、自分できちんと考えてアウトプットしなければすぐ忘れてしまうということに最近気付きました（遅いか）。なのでこれは、自分の勉強と成長のためです。今のところ、このブログ（かな？）に載せる予定です。</p>
<p>それから、<strong>論文を四本投稿する。</strong>（「出版する」じゃなくて「投稿する」です。）ちょっと無茶かな…。でも、一本は七割方くらい書けているし、現在進行中のも含めて今までのネタで二本は書けるはずなので、新しいテーマで一本書ければOKのはず。</p>
<p>ここを読んでる人はそんなにいないだろうけど、とりあえず公にしておいた方が実現しやすいかと思って書きました。皆様、どうぞじゃんじゃん私の尻を叩いてやってください。</p>
</div>]]></content:encoded>
      <pubDate>Sun, 10 Jan 2010 15:05:40 GMT</pubDate>
    </item>
    <item>
      <title xml:lang="ja">2010年の目標（その一）</title>
      <link>http://kwkbtr.info/log/201001011225</link>
      <guid isPermaLink="true">http://kwkbtr.info/log/201001011225</guid>
      <description xml:lang="ja">「毎晩12:30までに寝る」</description>
      <content:encoded><![CDATA[<div lang="ja" xml:lang="ja">
<p>2010年の一つ目、かつ最優先目標: <strong>「毎晩12:30までに寝る」</strong></p>
<p>私の眠りの状況は<a href="http://kwkbtr.tumblr.com">Tumblr</a>や<a href="http://www.hayaoki-seikatsu.com/users/kwkbtr/">早起き生活</a>で見ることができます。目標の達成度に応じてご褒美とかペナルティが発生する仕組みがあった方がいいなあ。何かアイデアがある人はぜひ、教えてください。</p>
</div>]]></content:encoded>
      <pubDate>Fri, 01 Jan 2010 03:33:09 GMT</pubDate>
    </item>
    <item>
      <title xml:lang="ja">日本学術振興会特別研究員DC2</title>
      <link>http://kwkbtr.info/log/200912302359</link>
      <guid isPermaLink="true">http://kwkbtr.info/log/200912302359</guid>
      <description xml:lang="ja">おかげさまで、採用内定しました</description>
      <content:encoded><![CDATA[<div lang="ja" xml:lang="ja">
<p>来年の四月から、日本学術振興会特別研究員DC2に採用されることが内定しました（<a href="http://twitter.com/kwkbtr/status/7116367293">つぶやき</a>）。いろいろな形でサポートしていただいた皆さん、ありがとうございました。</p>
</div>]]></content:encoded>
      <pubDate>Wed, 30 Dec 2009 17:32:16 GMT</pubDate>
    </item>
    <item>
      <title xml:lang="ja">Sleep Cycle alarm clock</title>
      <link>http://kwkbtr.info/log/200912072321</link>
      <guid isPermaLink="true">http://kwkbtr.info/log/200912072321</guid>
      <description xml:lang="ja">Sleep Cycle alarm clockはすごいです</description>
      <content:encoded><![CDATA[<div lang="ja" xml:lang="ja">
<p>一ヶ月半ぶりですね。更新しなかった間のできごとを、Twitter等から拾って手短に書きます。</p>
<ul>
<li>10/26 <a href="http://twitter.com/kwkbtr/status/5161410596">iPod touch（第二世代）購入。</a></li>
<li>10/27 <a href="http://twitter.com/kwkbtr/status/5201166976">iPod touch（第二世代）到着。</a></li>
<li>11/4 <a href="http://staff.aist.go.jp/s-kawabata/qit/qit21/">QIT21</a>参加。</li>
<li>11/8 <a href="http://www.amazon.co.jp/ゴーストライター-柴田淳/dp/B002M5P6P0">柴田淳の新アルバム</a>、<a href="http://twitter.com/kwkbtr/status/5508473618">良い意味で予想が裏切られた。</a></li>
<li>11/13 <a href="http://twitter.com/kwkbtr/status/5671973738">事業仕分け。</a><a href="http://twitter.com/kwkbtr/status/5675266489">『まさに13日の金曜日』。</a></li>
<li>11/19 母校での講演会。</li>
<li>12/3 <a href="http://twitter.com/kwkbtr/status/6291080865">学振DC2面接。</a>最後は「ここまで来たら開き直ってやるしかない。自分ならできるはず」と必死に言い聞かせてました。帰りに六本木の<a href="http://twitter.com/kwkbtr/status/6293775128">国立新美術館に行ってきました。</a></li>
</ul>
<p>さて、昨日<a href="http://www.lexwarelabs.com/sleepcycle/">Sleep Cycle alarm clock</a>なるiPhoneアプリを発見。なんとiPhoneの加速度センサーを使って眠りの深さを割り出し、眠りが浅いときにアラーム（音楽）を鳴らして起こしてくれるという。「iPod touchでは使えない」と書いてあったが、とりあえず使ってみた。その結果がこれ。</p>
<p><img src="http://12.media.tumblr.com/tumblr_ku9923Zo4r1qa2spqo1_400.jpg" title="Sleep statistics for 06 - 07 12月 (月)." alt="Sleep statistics for 06 - 07 12月 (月)." width="280" height="201" /></p>
<p><strong>すごいなこれ。</strong>すっきり目覚められました。この発想はなかった。同じ目的の専用品が二万円くらいすることを考えたら、お買い得感がすごい。</p>
<p>早く起きたのでジョギングもして、日中はさぞ仕事がはかどるだろうと思ったが、甘かった。一年半ほど置いたままの仕事があって、年内にまとめてしまおうと思っているのだが、なかなか筆が進まず。今夜も早寝早起きして、気合いを入れてがんばろう。</p>
<span class="tags">Tags <a href="http://kwkbtr.info/log/tags/Apple" rel="tag">Apple</a>, <a href="http://kwkbtr.info/log/tags/iPod%20touch" rel="tag">iPod touch</a>, <a href="http://kwkbtr.info/log/tags/Twitter" rel="tag">Twitter</a> </span></div>]]></content:encoded>
      <pubDate>Sat, 27 Feb 2010 08:11:27 GMT</pubDate>
    </item>
    <item>
      <title xml:lang="ja">歳をとったようです</title>
      <link>http://kwkbtr.info/log/200910200222</link>
      <guid isPermaLink="true">http://kwkbtr.info/log/200910200222</guid>
      <description xml:lang="ja">四捨五入すると…</description>
      <content:encoded><![CDATA[<div lang="ja" xml:lang="ja">
<p>四捨五入すると…</p>
</div>]]></content:encoded>
      <pubDate>Mon, 19 Oct 2009 17:23:46 GMT</pubDate>
    </item>
    <item>
      <title xml:lang="en">Long time no see</title>
      <link>http://kwkbtr.info/log/200910101403</link>
      <guid isPermaLink="true">http://kwkbtr.info/log/200910101403</guid>
      <description xml:lang="en">I didn't post entries during last few weeks. I have some notices.</description>
      <content:encoded><![CDATA[<div lang="en" xml:lang="en">
<p>I didn't post entries during last few weeks. As you might notice from my Twitter posts, I came back from Rome without troubles. It was great being in Rome! I want to say thank you to all people I met in Rome. <a href="http://www.flickr.com/photos/kwkbtr/sets/72157622464600518/">I uploaded photos I took in Rome</a>, though some of these are missing titles and descriptions. I hope you enjoy these photos!</p>
<p>As I twitted, I stopped updating my Tumblr and started using <a href="http://delicious.com/kwkbtr">Delicious</a>. My <a href="http://friendfeed.com/kwkbtr">FriendFeed</a> now feeds kwkbtr&#8217;s log (this blog), Twitter, Flickr and Delicious <ins>(and Last.fm)</ins>. If you want to keep track of my activities with one feed, I recommend using it.</p>
<p>As I wrote on the <a href="http://kwkbtr.info">homepage</a>, I will present a poster <em>&#8220;Interference between independent bosonic fields under U(1) superselection rule&#8221;</em> at <a href="http://staff.aist.go.jp/s-kawabata/qit/qit21/index_e.html">QIT 21</a> in <a href="http://maps.google.com/maps?q=35.655954,139.544091">Tokyo</a> on 4 Nov 2009. If you have time, please check it out!</p>
<p>I realized that it is hard to start writing in the diary again after stopped for a while. But anyway I finished one entry! I hope I can establish my pace, not only of updating this web site but also of my everyday life.</p>
<p><em>As I am not a native English speaker, there might be some grammatical mistakes in my English writings. If you find them, please let me know. I appreciate any comment :-)</em></p>
<span class="tags">Tags <a href="http://kwkbtr.info/log/tags/Physics" rel="tag">Physics</a>, <a href="http://kwkbtr.info/log/tags/%E7%89%A9%E7%90%86" rel="tag">物理</a>, <a href="http://kwkbtr.info/log/tags/lang%3D%22en%22" rel="tag">lang="en"</a> </span></div>]]></content:encoded>
      <pubDate>Mon, 12 Oct 2009 12:56:01 GMT</pubDate>
    </item>
    <item>
      <title xml:lang="ja">Mathematica地獄</title>
      <link>http://kwkbtr.info/log/200909142300</link>
      <guid isPermaLink="true">http://kwkbtr.info/log/200909142300</guid>
      <description xml:lang="ja">Mathematicaむずいっす</description>
      <content:encoded><![CDATA[<div lang="ja" xml:lang="ja">
      <p>Mathematicaで数値計算をやろうと思い超短時間での習得を試みるも、いまいちすっきり理解できず。本当は時間をかけてちゃんと勉強すればいいんだろうけどなあ。でも、<a href="http://www.amazon.co.jp/dp/4894711613">プログラミングMathematica（Roman E.&#160;Maeder 著、時田 節 訳）</a>の日本語が読みにくくてしょうがないのは私だけでしょうか。誰か、Mathematicaの精神がきちんと理解でき、かつ読みやすい本を教えてください。</p>
      <p>QIPCのsocial programの申込を忘れていた。危ない。というか全然準備できてない。焦る。</p>
      <p>堺にAmazonの物流拠点ができたようだ。今日注文したが、発送元がアマ堺店になっていた。明日の午前には届いたりするのかな。</p>
<span class="tags">Tags <a href="http://kwkbtr.info/log/tags/%E7%89%A9%E7%90%86" rel="tag">物理</a> </span></div>]]></content:encoded>
      <pubDate>Mon, 12 Oct 2009 06:34:48 GMT</pubDate>
    </item>
    <item>
      <title xml:lang="en">Set up Flickr account</title>
      <link>http://kwkbtr.info/log/200909132300</link>
      <guid isPermaLink="true">http://kwkbtr.info/log/200909132300</guid>
      <description xml:lang="en">I set up a Flickr account.</description>
      <content:encoded><![CDATA[<div lang="en" xml:lang="en">
      <p>I set up <a href="http://www.flickr.com/photos/kwkbtr/">my account for Flickr</a>.</p>
<span class="tags">Tags <a href="http://kwkbtr.info/log/tags/web" rel="tag">web</a>, <a href="http://kwkbtr.info/log/tags/lang%3D%22en%22" rel="tag">lang="en"</a> </span></div>]]></content:encoded>
      <pubDate>Mon, 14 Sep 2009 17:37:54 GMT</pubDate>
    </item>
    <item>
      <title xml:lang="ja">京都観光</title>
      <link>http://kwkbtr.info/log/200909122300</link>
      <guid isPermaLink="true">http://kwkbtr.info/log/200909122300</guid>
      <description xml:lang="ja">高校の同級生と京都観光をしました。</description>
      <content:encoded><![CDATA[<div lang="ja" xml:lang="ja">
      <p>高校の同級生が三人京都に遊びに来たので、二条城、金閣寺、龍安寺、京都大学を回った。あいにくの雨だったが、なかなか楽しめた。夜の飲み会は、懐かしい人たちへの電話大会になっていた（笑）。みんなそれぞれがんばっとるなあ。後半は一日歩き回った疲れからか、ちょっと変な酔い方をしてしまった。皆さんごめんなさい。いつか海外で一緒にマラソン走れたらいいですね。</p>
</div>]]></content:encoded>
      <pubDate>Sun, 13 Sep 2009 16:00:01 GMT</pubDate>
    </item>
    <item>
      <title xml:lang="ja">今日の出来事</title>
      <link>http://kwkbtr.info/log/200909092300</link>
      <guid isPermaLink="true">http://kwkbtr.info/log/200909092300</guid>
      <description xml:lang="ja">2009/08/29の出来事</description>
      <content:encoded><![CDATA[<div lang="ja" xml:lang="ja">
      <p>ここ数日デジタルカメラを買うべくいろいろ調べていた。本日LUMIX DMC-FX150購入。在庫処分で結構安く買えた。この機種にしたのは、RAWで記録できる機種のうち一番安かったから。</p>
      <p>国際学生証を受け取りに行った。なんと提出した写真をそのまま貼り付けて（しかも微妙に傾いている）上からフィルムを被せてあるだけというお粗末な作り。文字の印刷も少し斜めだし、フィルムはそのうちはがれてきそう。どうりで早いわけだ。</p>
      <p>マウスの調子が悪いのでロジクールのサポートに問い合わせていたのだが、対応が酷すぎる。回答のメールなど届いていなかったのに、「回答を送ってから120時間以内に連絡がなかったので解決済みにした」だと。ふざけている。</p>
      <p>新iPodとiTunes 9発表。Genius Mixは使えるかも。「Twitterとの連携機能」に期待したが、<abbr title="iTunes Music Store">iTMS</abbr>へのリンクを張り付けることができるだけのようだ。</p>
<span class="tags">Tags <a href="http://kwkbtr.info/log/tags/Apple" rel="tag">Apple</a> </span></div>]]></content:encoded>
      <pubDate>Wed, 09 Sep 2009 21:33:38 GMT</pubDate>
    </item>
    <item>
      <title xml:lang="ja">日経サイエンス</title>
      <link>http://kwkbtr.info/log/200909052300</link>
      <guid isPermaLink="true">http://kwkbtr.info/log/200909052300</guid>
      <description xml:lang="ja">Weak measurementの特集が載っている日経サイエンスを書店で眺めた。</description>
      <content:encoded><![CDATA[<div lang="ja" xml:lang="ja">
      <p>髪を切った。少し買い物。</p>
      <p>日経サイエンスを書店で眺めた。Weak measurementの特集。まあ、two-state formalism（って言うんだっけ）自体は面白い考え方だと思うので、いい意味で妄想を膨らませて何か出てきたらいいですね。「負の確率」を強調するのはなんだかな、と思うけど。</p>
<span class="tags">Tags <a href="http://kwkbtr.info/log/tags/%E7%89%A9%E7%90%86" rel="tag">物理</a> </span></div>]]></content:encoded>
      <pubDate>Sat, 05 Sep 2009 16:12:28 GMT</pubDate>
    </item>
    <item>
      <title xml:lang="en">Exploring some web services</title>
      <link>http://kwkbtr.info/log/200909042300</link>
      <guid isPermaLink="true">http://kwkbtr.info/log/200909042300</guid>
      <description xml:lang="en">I started using Facebook and FriendFeed (and Tumblr).</description>
      <content:encoded><![CDATA[<div lang="en" xml:lang="en">
      <p>I set up my accounts for <a href="http://www.facebook.com/kwkbtr">Facebook</a> and <a href="http://friendfeed.com/kwkbtr">FriendFeed</a> <ins>(and <a href="http://kwkbtr.tumblr.com">Tumblr</a>)</ins>. Settings of the Facebook account were complicated and I was confused. I believe everything is alright now, though.</p>
<span class="tags">Tags <a href="http://kwkbtr.info/log/tags/web" rel="tag">web</a>, <a href="http://kwkbtr.info/log/tags/lang%3D%22en%22" rel="tag">lang="en"</a> </span></div>]]></content:encoded>
      <pubDate>Fri, 04 Sep 2009 19:05:00 GMT</pubDate>
    </item>
</channel>
</rss>

