<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
    <title>gracearrow.net:blog</title>
    <link rel="alternate" type="text/html" href="http://www.gracearrow.net/blog/" />
    <link rel="self" type="application/atom+xml" href="http://www.gracearrow.net/blog/atom.xml" />
    <id>tag:www.gracearrow.net,2009-10-29:/blog//2</id>
    <updated>2011-02-16T15:58:35Z</updated>
    
    <generator uri="http://www.sixapart.com/movabletype/">Movable Type 5.031</generator>

<entry>
    <title>ほぼ2週間でWebサービスを作ってみる on GAE - 最新刊.comができるまで</title>
    <link rel="alternate" type="text/html" href="http://www.gracearrow.net/blog/2011/02/create-web-service-2-weeks-on-gae-saishinkan.html" />
    <id>tag:www.gracearrow.net,2011:/blog//2.221</id>

    <published>2011-02-16T14:29:23Z</published>
    <updated>2011-02-16T15:58:35Z</updated>

    <summary> きっかけ 1/22 映画「ソーシャルネットワーク」を見て、ぼーっと過ごしてる場...</summary>
    <author>
        <name>gracearrow</name>
        
    </author>
    
        <category term="MAC/PC" scheme="http://www.sixapart.com/ns/types#category" />
    
    
    <content type="html" xml:lang="en" xml:base="http://www.gracearrow.net/blog/">
        <![CDATA[<p><img src="http://www.saishinkan.com/images/logo_small.png" /></p>

<p><big><strong>きっかけ</strong></big><br />
1/22 映画「ソーシャルネットワーク」を見て、ぼーっと過ごしてる場合じゃないなと思い始めました。</p>

<p><br />
<big><strong>アイデア</strong></big><br />
少し前に個人でWebサービスを作るのが流行っていたので、自分もやってみることにしました。ということで何か面白いアイデアがないかと本屋をぶらついていると、コミックの発売日情報が羅列されたポスター?を発見。</p>

<p>いつも買ってるコミックを買う時って、それまでの周期からそろそろ新刊出たかなと思ってコミックコーナーの平積みを見ることが多いので、発売のタイミングをメールか何かで通知してくれるとうれしいな。</p>

<p>ということでネタを決定しました。</p>

<p>あわよくばアフィリエイト収入も、、、</p>

<p><br />
<big><strong>準備開始</strong></big><br />
まずは開発環境の選択。中島聡さんのブログを読んでGoogle App Engine(GAE)がおもしろそうなのでGAEに。実は1年以上前にちょっとだけ試して挫折したことがありリベンジでもあります。</p>

<p>1/29 Pythonもほとんど触ったことがないので、Google App Engineのヘルプにあるhelloworldのチュートリアルから始めました。</p>

<p>バージョン管理はGit、タスク管理はさくらVPS上に立てたRedmineを使います。</p>

<p>2/2 ドメインを取りました。saishinkan.com があいていたのでその場で取得。</p>

<p>2/3〜 Cacooで画面デザインを考え始めました。<br />
<a href="http://www.gracearrow.net/blog/assets_c/2011/02/saishinkan_01-336.html" onclick="window.open('http://www.gracearrow.net/blog/assets_c/2011/02/saishinkan_01-336.html','popup','width=958,height=736,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false"><img src="http://www.gracearrow.net/blog/assets_c/2011/02/saishinkan_01-thumb-480x368-336.jpg" width="480" height="368" alt="saishinkan_01.jpg" class="mt-image-none" style="" /></a></p>

<p><br />
<big><strong>データはどこから？</strong></big><br />
毎日本屋さんへ行って発売情報を仕入れるわけにもいかないので発売情報をを集める方法を考えます。<br />
各出版社のサイトをクロールする、同じように発売日情報を集めてるサイトをクロールする、Amazon APIを利用する等考えましたが、順当にAmazonのAPIを利用することに。<br />
ただよく見てみるとコミック名と巻数、ジャンプコミックスなどの情報がタイトルとして一緒に入っています。<br />
これをよくあるパターンから正規表現を使って抜き出しています。<br />
Amazon Product Advertising APIについてはまた後日かきたいと思います。</p>

<p><br />
<big><strong>ユーザー</strong></big><br />
ユーザー情報はあまりもちたくないので、外部のアカウントで利用できるようにしました。まずはOAuthを使ってTwitterアカウントによるログインに対応しました。</p>

<p>でもTwitterだけだとちょっと障壁が高いかなとおもいパスワードによる認証も加えました。</p>

<p><br />
<big><strong>メール送信</strong></big><br />
Google App Engineではメール送信機能があります。SMTPサーバーの心配をしなくてもいいのはありがたいです。</p>

<p>ただしそのメール送信プログラムのエントリポイントはHTTPリクエストで、1リクエストが長いと失敗するようなので、タスクキューに分割してメール送信キューを投げています。</p>

<p><br />
<big><strong>公開</strong></big><br />
2/13 ログインもできるようになり、メールも飛ぶようになったので公開してみました。</p>

<p><a href="http://www.saishinkan.com/"><img src="http://www.gracearrow.net/blog/assets_c/2011/02/saishinkan_02-thumb-480x397-339.jpg" width="480" height="397" alt="saishinkan_02.jpg" class="mt-image-none" style="" /></a></p>

<p>Google App Engine + Pyathonをほぼ初めて触りましたが、思ったより悩むことが少なくWebサービスを構築することができました。</p>

<p>まだまだやりたいことがあるので引き続き開発を続けたいと思います。</p>

<p>ぜひ使ってみて意見ください。</p>

<p><a href="http://satoshi.blogs.com/life/2010/11/google-appengine.html">Life is beautiful - google appengine に関してひと言</a><br />
<a href="https://affiliate.amazon.co.jp/gp/advertising/api/detail/main.html">Amazon Product Advertising API</a><br />
<a href="http://code.google.com/intl/ja/appengine/">Google App Engine</a><br />
<a href="http://cacoo.com/">Cacoo</a><br />
<a href="http://0-oo.net/sbox/python-box/appengine-oauth">[[Google App Engineで手軽にOAuthアプリを作成！（Twitterとか！） - AppEngine-OAuth]] ゼロと無限の間に</a><br />
<a href="http://www.saishinkan.com/">最新刊.com</a></p>]]>
        <![CDATA[<p><br />
</p>]]>
    </content>
</entry>

<entry>
    <title>「片眼の猿―One-eyed monkeys」</title>
    <link rel="alternate" type="text/html" href="http://www.gracearrow.net/blog/2011/01/one-eyed-monkeys.html" />
    <id>tag:www.gracearrow.net,2011:/blog//2.220</id>

    <published>2011-01-26T14:12:08Z</published>
    <updated>2011-01-26T14:18:43Z</updated>

    <summary> 道尾 秀介「片眼の猿―One-eyed monkeys (新潮文庫 み 40-...</summary>
    <author>
        <name>gracearrow</name>
        
    </author>
    
        <category term="読書" scheme="http://www.sixapart.com/ns/types#category" />
    
    
    <content type="html" xml:lang="en" xml:base="http://www.gracearrow.net/blog/">
        <![CDATA[<p><a href="http://www.amazon.co.jp/gp/product/4101355525?ie=UTF8&tag=gracearrow-22&linkCode=as2&camp=247&creative=7399&creativeASIN=4101355525"><img src="http://ec2.images-amazon.com/images/I/41TDEilVYDL._SL500_AA300_.jpg"/></a><img src="http://www.assoc-amazon.jp/e/ir?t=gracearrow-22&l=as2&o=9&a=4101355525" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /></p>

<p>道尾 秀介「<a href="http://www.amazon.co.jp/gp/product/4101355525?ie=UTF8&tag=gracearrow-22&linkCode=as2&camp=247&creative=7399&creativeASIN=4101355525">片眼の猿―One-eyed monkeys (新潮文庫 み 40-2)</a><img src="http://www.assoc-amazon.jp/e/ir?t=gracearrow-22&l=as2&o=9&a=4101355525" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" />」</p>

<p>最近直木賞を受賞した著者、テレビ「情熱大陸」でも取り上げられていました。</p>

<p>この作品は全体に渡るミスリードを最後にまとめて回収。</p>

<p><a href="http://www.mbs.jp/jounetsu/2011/01_23.shtml">情熱大陸</a><br />
<a href="http://michioshusuke.cocolog-nifty.com/">道尾秀介＠あらびき双生児</a></p>]]>
        
    </content>
</entry>

<entry>
    <title>ホンダコレクションホール</title>
    <link rel="alternate" type="text/html" href="http://www.gracearrow.net/blog/2011/01/honda-collection-hall.html" />
    <id>tag:www.gracearrow.net,2011:/blog//2.219</id>

    <published>2011-01-25T15:36:15Z</published>
    <updated>2011-01-25T15:57:27Z</updated>

    <summary> ツインリンクもてぎにあるホンダコレクションホールへ行ってきました。 子供の頃で...</summary>
    <author>
        <name>gracearrow</name>
        
    </author>
    
        <category term="くるま・バイク" scheme="http://www.sixapart.com/ns/types#category" />
    
    
    <content type="html" xml:lang="en" xml:base="http://www.gracearrow.net/blog/">
        <![CDATA[<p><a href="http://www.gracearrow.net/blog/assets_c/2011/01/hch2011_01-303.html" onclick="window.open('http://www.gracearrow.net/blog/assets_c/2011/01/hch2011_01-303.html','popup','width=2000,height=1336,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false"><img src="http://www.gracearrow.net/blog/assets_c/2011/01/hch2011_01-thumb-480x320-303.jpg" width="480" height="320" alt="hch2011_01.jpg" class="mt-image-none" style="" /></a><br />
ツインリンクもてぎにあるホンダコレクションホールへ行ってきました。<br />
子供の頃ですが鈴鹿サーキットにあった時代には1度行ったことがありますがもてぎに移転してからははじめてです。</p>

<p><a href="http://www.gracearrow.net/blog/assets_c/2011/01/hch2011_02-306.html" onclick="window.open('http://www.gracearrow.net/blog/assets_c/2011/01/hch2011_02-306.html','popup','width=2000,height=1336,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false"><img src="http://www.gracearrow.net/blog/assets_c/2011/01/hch2011_02-thumb-480x320-306.jpg" width="480" height="320" alt="hch2011_02.jpg" class="mt-image-none" style="" /></a><br />
<a href="http://www.gracearrow.net/blog/assets_c/2011/01/hch2011_03-309.html" onclick="window.open('http://www.gracearrow.net/blog/assets_c/2011/01/hch2011_03-309.html','popup','width=2000,height=1336,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false"><img src="http://www.gracearrow.net/blog/assets_c/2011/01/hch2011_03-thumb-480x320-309.jpg" width="480" height="320" alt="hch2011_03.jpg" class="mt-image-none" style="" /></a><br />
エントランスにはカーチス号と初期の頃のF1、2輪レーサー</p>

<p><a href="http://www.gracearrow.net/blog/assets_c/2011/01/hch2011_04-312.html" onclick="window.open('http://www.gracearrow.net/blog/assets_c/2011/01/hch2011_04-312.html','popup','width=1336,height=2000,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false"><img src="http://www.gracearrow.net/blog/assets_c/2011/01/hch2011_04-thumb-480x718-312.jpg" width="480" height="718" alt="hch2011_04.jpg" class="mt-image-none" style="" /></a><br />
2階に上がって市販2輪車、ホンダ以外のメーカーもたくさん展示されています。</p>

<p><a href="http://www.gracearrow.net/blog/assets_c/2011/01/hch2011_05-315.html" onclick="window.open('http://www.gracearrow.net/blog/assets_c/2011/01/hch2011_05-315.html','popup','width=2000,height=1336,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false"><img src="http://www.gracearrow.net/blog/assets_c/2011/01/hch2011_05-thumb-480x320-315.jpg" width="480" height="320" alt="hch2011_05.jpg" class="mt-image-none" style="" /></a><br />
次は市販4輪</p>

<p><a href="http://www.gracearrow.net/blog/assets_c/2011/01/hch2011_06-318.html" onclick="window.open('http://www.gracearrow.net/blog/assets_c/2011/01/hch2011_06-318.html','popup','width=2000,height=1336,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false"><img src="http://www.gracearrow.net/blog/assets_c/2011/01/hch2011_06-thumb-480x320-318.jpg" width="480" height="320" alt="hch2011_06.jpg" class="mt-image-none" style="" /></a><br />
3階はレーサー、この赤いタンク&シルバーのカウルは区別がつきません。</p>

<p><a href="http://www.gracearrow.net/blog/assets_c/2011/01/hch2011_07-321.html" onclick="window.open('http://www.gracearrow.net/blog/assets_c/2011/01/hch2011_07-321.html','popup','width=2000,height=1336,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false"><img src="http://www.gracearrow.net/blog/assets_c/2011/01/hch2011_07-thumb-480x320-321.jpg" width="480" height="320" alt="hch2011_07.jpg" class="mt-image-none" style="" /></a></p>

<p><a href="http://www.gracearrow.net/blog/assets_c/2011/01/hch2011_08-324.html" onclick="window.open('http://www.gracearrow.net/blog/assets_c/2011/01/hch2011_08-324.html','popup','width=2000,height=1336,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false"><img src="http://www.gracearrow.net/blog/assets_c/2011/01/hch2011_08-thumb-480x320-324.jpg" width="480" height="320" alt="hch2011_08.jpg" class="mt-image-none" style="" /></a></p>

<p><a href="http://www.gracearrow.net/blog/assets_c/2011/01/hch2011_09-327.html" onclick="window.open('http://www.gracearrow.net/blog/assets_c/2011/01/hch2011_09-327.html','popup','width=2000,height=1336,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false"><img src="http://www.gracearrow.net/blog/assets_c/2011/01/hch2011_09-thumb-480x320-327.jpg" width="480" height="320" alt="hch2011_09.jpg" class="mt-image-none" style="" /></a></p>

<p><a href="http://www.gracearrow.net/blog/assets_c/2011/01/hch2011_10-330.html" onclick="window.open('http://www.gracearrow.net/blog/assets_c/2011/01/hch2011_10-330.html','popup','width=2000,height=1336,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false"><img src="http://www.gracearrow.net/blog/assets_c/2011/01/hch2011_10-thumb-480x320-330.jpg" width="480" height="320" alt="hch2011_10.jpg" class="mt-image-none" style="" /></a></p>

<p><br />
<a href="http://www.gracearrow.net/blog/assets_c/2011/01/hch2011_11-333.html" onclick="window.open('http://www.gracearrow.net/blog/assets_c/2011/01/hch2011_11-333.html','popup','width=2000,height=1336,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false"><img src="http://www.gracearrow.net/blog/assets_c/2011/01/hch2011_11-thumb-480x320-333.jpg" width="480" height="320" alt="hch2011_11.jpg" class="mt-image-none" style="" /></a><br />
3階の別サイドはレーシングカー、F1をメインにフォーミュラが中心でした。<br />
</p>]]>
        
    </content>
</entry>

<entry>
    <title>OLYMPUS μTOUGH-6020</title>
    <link rel="alternate" type="text/html" href="http://www.gracearrow.net/blog/2010/12/olympus-tough-6020.html" />
    <id>tag:www.gracearrow.net,2010:/blog//2.218</id>

    <published>2010-12-29T01:38:09Z</published>
    <updated>2010-12-29T02:06:55Z</updated>

    <summary> デジカメを買いました。スノーボードなどアウトドアで利用するために防水、耐衝撃を...</summary>
    <author>
        <name>gracearrow</name>
        
    </author>
    
        <category term="雑記" scheme="http://www.sixapart.com/ns/types#category" />
    
    
    <content type="html" xml:lang="en" xml:base="http://www.gracearrow.net/blog/">
        <![CDATA[<p><a href="http://www.gracearrow.net/blog/assets_c/2010/12/mjutough6020_1-294.html" onclick="window.open('http://www.gracearrow.net/blog/assets_c/2010/12/mjutough6020_1-294.html','popup','width=2000,height=1497,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false"><img src="http://www.gracearrow.net/blog/assets_c/2010/12/mjutough6020_1-thumb-480x359-294.jpg" width="480" height="359" alt="mjutough6020_1.jpg" class="mt-image-none" style="" /></a><br />
デジカメを買いました。スノーボードなどアウトドアで利用するために防水、耐衝撃を備えたオリンパス μTOUGH-6020です。最近はコンパクトデジカメがびっくりするほど安いので目的に応じて買い足すことができてしまいます。</p>

<p>ネット上の評判を見ると、起動が遅いのが欠点として上がっていましたが、ファームウェアのアップデートで改善したという情報もありました。実際に購入直後に試してみるとそれほど遅くは感じませんでした。すでに最新ファームになっているのかと思い調べてみると最新ファームではありませんでした。過去もっと起動が遅いデジカメを使っていたため気にならなかったのですが、近頃のデジカメの基準では高速起動が当たり前のようです。 そこで最新ファームにアップデートしてみるとたしかに一瞬で起動するようになりました。</p>

<p><a href="http://www.gracearrow.net/blog/assets_c/2010/12/mjutough6020_2-297.html" onclick="window.open('http://www.gracearrow.net/blog/assets_c/2010/12/mjutough6020_2-297.html','popup','width=2000,height=1336,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false"><img src="http://www.gracearrow.net/blog/assets_c/2010/12/mjutough6020_2-thumb-480x320-297.jpg" width="480" height="320" alt="mjutough6020_2.jpg" class="mt-image-none" style="" /></a><br />
背面、隣は以前使用していたミノルタ DiMAGE Xt、初期の頃の屈曲型デジカメです。液晶が大きくなりファインダーがありませんが、レンズの位置など基本的なレイアウトはよく似ています。</p>

<p><a href="http://www.gracearrow.net/blog/assets_c/2010/12/mjutough6020_%EF%BC%93-300.html" onclick="window.open('http://www.gracearrow.net/blog/assets_c/2010/12/mjutough6020_%EF%BC%93-300.html','popup','width=2000,height=1500,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false"><img src="http://www.gracearrow.net/blog/assets_c/2010/12/mjutough6020_%EF%BC%93-thumb-480x360-300.jpg" width="480" height="360" alt="mjutough6020_３.jpg" class="mt-image-none" style="" /></a><br />
イルミネーションを試し撮り、予想より綺麗に取れました。</p>

<p><a href="http://olympus-imaging.jp/product/compact/mjutough6020/index.html">OLYMPUS μTOUGH-6020</.a></p>

<p><iframe src="http://rcm-jp.amazon.co.jp/e/cm?lt1=_blank&bc1=000000&IS2=1&bg1=FFFFFF&fc1=000000&lc1=0000FF&t=gracearrow-22&o=9&p=8&l=as1&m=amazon&f=ifr&md=1X69VDGQCMF7Z30FM082&asins=B0038OLMLQ" style="width:120px;height:240px;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"></iframe><iframe src="http://rcm-jp.amazon.co.jp/e/cm?lt1=_blank&bc1=000000&IS2=1&bg1=FFFFFF&fc1=000000&lc1=0000FF&t=gracearrow-22&o=9&p=8&l=as1&m=amazon&f=ifr&md=1X69VDGQCMF7Z30FM082&asins=B0036MDFAG" style="width:120px;height:240px;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"></iframe><iframe src="http://rcm-jp.amazon.co.jp/e/cm?lt1=_blank&bc1=000000&IS2=1&bg1=FFFFFF&fc1=000000&lc1=0000FF&t=gracearrow-22&o=9&p=8&l=as1&m=amazon&f=ifr&md=1X69VDGQCMF7Z30FM082&asins=B003CN6RP4" style="width:120px;height:240px;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"></iframe></p>]]>
        
    </content>
</entry>

<entry>
    <title>「ハリー・ポッターと秘密の部屋」</title>
    <link rel="alternate" type="text/html" href="http://www.gracearrow.net/blog/2010/12/HarryPotterandtheChamberofSecrets.html" />
    <id>tag:www.gracearrow.net,2010:/blog//2.217</id>

    <published>2010-12-05T01:30:36Z</published>
    <updated>2010-12-29T01:37:51Z</updated>

    <summary> J.K. ローリング「ハリー・ポッターと秘密の部屋」...</summary>
    <author>
        <name>gracearrow</name>
        
    </author>
    
        <category term="読書" scheme="http://www.sixapart.com/ns/types#category" />
    
    
    <content type="html" xml:lang="en" xml:base="http://www.gracearrow.net/blog/">
        <![CDATA[<p><a href="http://www.amazon.co.jp/gp/product/4915512398?ie=UTF8&tag=gracearrow-22&linkCode=as2&camp=247&creative=7399&creativeASIN=4915512398"><img src="http://ec2.images-amazon.com/images/I/511X2B00B0L._SL500_AA300_.jpg" /></a><img src="http://www.assoc-amazon.jp/e/ir?t=gracearrow-22&l=as2&o=9&a=4915512398" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /></p>

<p>J.K. ローリング「<a href="http://www.amazon.co.jp/gp/product/4915512398?ie=UTF8&tag=gracearrow-22&linkCode=as2&camp=247&creative=7399&creativeASIN=4915512398">ハリー・ポッターと秘密の部屋</a><img src="http://www.assoc-amazon.jp/e/ir?t=gracearrow-22&l=as2&o=9&a=4915512398" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" />」</p>]]>
        
    </content>
</entry>

<entry>
    <title>四国自動車博物館 &amp; 世界クラシックカー博物館</title>
    <link rel="alternate" type="text/html" href="http://www.gracearrow.net/blog/2010/10/post-87.html" />
    <id>tag:www.gracearrow.net,2010:/blog//3.593</id>

    <published>2010-10-17T15:51:36Z</published>
    <updated>2010-10-20T15:28:34Z</updated>

    <summary>高知へ行く機会があり、観光する時間をもらったので、観光地を調べていると車の博物館...</summary>
    <author>
        <name>gracearrow</name>
        
    </author>
    
        <category term="くるま・バイク" scheme="http://www.sixapart.com/ns/types#category" />
    
    
    <content type="html" xml:lang="en" xml:base="http://www.gracearrow.net/blog/">
        <![CDATA[<p>高知へ行く機会があり、観光する時間をもらったので、観光地を調べていると車の博物館があったので行ってみました。</p>

<p>「四国自動車博物館」と「世界クラシックカー博物館」です。この2つの博物館はすぐとなりにありますが、運営は全く別なようです。</p>

<p>併設されている龍馬歴史館には目もくれず、世界クラシックカー博物館から。<br />
<a href="http://www.gracearrow.net/blog/assets_c/2010/10/w-classic_01-393.html" onclick="window.open('http://www.gracearrow.net/blog/assets_c/2010/10/w-classic_01-393.html','popup','width=2000,height=1500,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false"><img src="http://www.gracearrow.net/blog/assets_c/2010/10/w-classic_01-thumb-480x360-393.jpg" width="480" height="360" alt="w-classic_01.jpg" class="mt-image-none" style="" /></a><br />
殆どの車に高知ナンバーが付いていたので、公道を走行できる状態なのでしょう。</p>

<p><a href="http://www.gracearrow.net/blog/assets_c/2010/10/w-classic_02-396.html" onclick="window.open('http://www.gracearrow.net/blog/assets_c/2010/10/w-classic_02-396.html','popup','width=2000,height=1124,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false"><img src="http://www.gracearrow.net/blog/assets_c/2010/10/w-classic_02-thumb-480x269-396.jpg" width="480" height="269" alt="w-classic_02.jpg" class="mt-image-none" style="" /></a><br />
私がクラシックカーに詳しくないのが残念。<br />
<a href="http://www.gracearrow.net/blog/assets_c/2010/10/w-classic_03-399.html" onclick="window.open('http://www.gracearrow.net/blog/assets_c/2010/10/w-classic_03-399.html','popup','width=2000,height=1500,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false"><img src="http://www.gracearrow.net/blog/assets_c/2010/10/w-classic_03-thumb-480x360-399.jpg" width="480" height="360" alt="w-classic_03.jpg" class="mt-image-none" style="" /></a></p>

<p><br />
<a href="http://www.gracearrow.net/blog/assets_c/2010/10/shikoku_car_01-402.html" onclick="window.open('http://www.gracearrow.net/blog/assets_c/2010/10/shikoku_car_01-402.html','popup','width=2000,height=1500,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false"><img src="http://www.gracearrow.net/blog/assets_c/2010/10/shikoku_car_01-thumb-480x360-402.jpg" width="480" height="360" alt="shikoku_car_01.jpg" class="mt-image-none" style="" /></a><br />
次に四国自動車博物館。こちらはトヨタ系のディーラーが運営しているようです。</p>

<p>写真でしか見たことのない車がたくさん。</p>

<p><a href="http://www.gracearrow.net/blog/assets_c/2010/10/shikoku_car_02-405.html" onclick="window.open('http://www.gracearrow.net/blog/assets_c/2010/10/shikoku_car_02-405.html','popup','width=2000,height=1500,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false"><img src="http://www.gracearrow.net/blog/assets_c/2010/10/shikoku_car_02-thumb-480x360-405.jpg" width="480" height="360" alt="shikoku_car_02.jpg" class="mt-image-none" style="" /></a><br />
コブラ</p>

<p><a href="http://www.gracearrow.net/blog/assets_c/2010/10/shikoku_car_03-408.html" onclick="window.open('http://www.gracearrow.net/blog/assets_c/2010/10/shikoku_car_03-408.html','popup','width=2000,height=1500,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false"><img src="http://www.gracearrow.net/blog/assets_c/2010/10/shikoku_car_03-thumb-480x360-408.jpg" width="480" height="360" alt="shikoku_car_03.jpg" class="mt-image-none" style="" /></a><br />
DTMに参戦していたアルファロメオ 155 V6 Ti 漫画「<a href="http://www.amazon.co.jp/gp/product/457583596X?ie=UTF8&tag=gracearrow-22&linkCode=as2&camp=247&creative=7399&creativeASIN=457583596X">クアドリフォリオ</a><img src="http://www.assoc-amazon.jp/e/ir?t=gracearrow-22&l=as2&o=9&a=457583596X" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /><br />
」では峠を走っていましたが、実際に日本にあったのですね。ヘッドライトはステッカーだと思っていましたが、表面に線は描かれているものの、中には実際のヘッドライトがありました。</p>

<p><a href="http://www.gracearrow.net/blog/assets_c/2010/10/shikoku_car_04-411.html" onclick="window.open('http://www.gracearrow.net/blog/assets_c/2010/10/shikoku_car_04-411.html','popup','width=2000,height=1500,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false"><img src="http://www.gracearrow.net/blog/assets_c/2010/10/shikoku_car_04-thumb-480x360-411.jpg" width="480" height="360" alt="shikoku_car_04.jpg" class="mt-image-none" style="" /></a><br />
LP400</p>

<p><a href="http://www.gracearrow.net/blog/assets_c/2010/10/shikoku_car_05-414.html" onclick="window.open('http://www.gracearrow.net/blog/assets_c/2010/10/shikoku_car_05-414.html','popup','width=1500,height=2000,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false"><img src="http://www.gracearrow.net/blog/assets_c/2010/10/shikoku_car_05-thumb-480x640-414.jpg" width="480" height="640" alt="shikoku_car_05.jpg" class="mt-image-none" style="" /></a><br />
最近毎週2000GTを見ています。</p>

<p><a href="http://www.gracearrow.net/blog/assets_c/2010/10/shikoku_car_06-417.html" onclick="window.open('http://www.gracearrow.net/blog/assets_c/2010/10/shikoku_car_06-417.html','popup','width=2000,height=1500,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false"><img src="http://www.gracearrow.net/blog/assets_c/2010/10/shikoku_car_06-thumb-480x360-417.jpg" width="480" height="360" alt="shikoku_car_06.jpg" class="mt-image-none" style="" /></a><br />
オートバイもたくさんあり、大満足でした。</p>

<p><a href="http://www.w-classic-car-museum.com/">世界クラシックカー博物館</a><br />
<a href="http://www.baobab.or.jp/~ryoma/">龍馬歴史館</a><br />
<a href="http://www.vistanet.co.jp/museum.htm">四国自動車博物館</a></p>

<p><a href="http://www.amazon.co.jp/gp/product/457583596X?ie=UTF8&tag=gracearrow-22&linkCode=as2&camp=247&creative=7399&creativeASIN=457583596X"><img src="http://ec2.images-amazon.com/images/I/51dS9OBKqmL._SL500_AA300_.jpg"/></a><img src="http://www.assoc-amazon.jp/e/ir?t=gracearrow-22&l=as2&o=9&a=457583596X" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /><a href="http://www.amazon.co.jp/gp/product/4575836680?ie=UTF8&tag=gracearrow-22&linkCode=as2&camp=247&creative=7399&creativeASIN=4575836680"><img src="http://ecx.images-amazon.com/images/I/51atUt8q38L._SL500_AA300_.jpg"/></a><img src="http://www.assoc-amazon.jp/e/ir?t=gracearrow-22&l=as2&o=9&a=4575836680" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /></p>]]>
        
    </content>
</entry>

<entry>
    <title>伊香保おもちゃと人形自動車博物館</title>
    <link rel="alternate" type="text/html" href="http://www.gracearrow.net/blog/2010/10/post-86.html" />
    <id>tag:www.gracearrow.net,2010:/blog//3.592</id>

    <published>2010-10-12T14:30:26Z</published>
    <updated>2010-10-12T14:45:32Z</updated>

    <summary>群馬県にある博物館に行ってきました。 おもちゃ、人形、昔のアイドルの写真、リスと...</summary>
    <author>
        <name>gracearrow</name>
        
    </author>
    
        <category term="くるま・バイク" scheme="http://www.sixapart.com/ns/types#category" />
    
    
    <content type="html" xml:lang="en" xml:base="http://www.gracearrow.net/blog/">
        <![CDATA[<p>群馬県にある博物館に行ってきました。</p>

<p>おもちゃ、人形、昔のアイドルの写真、リスと自動車というよくわからない組み合わせの博物館。</p>

<p>ただ展示車両は2000GTが2台やハコスカ、ケンメリのGTR、Z432など日本の名車がずらり。</p>

<p>また、すこし離れた場所にF40がありました。</p>

<p><a href="http://www.gracearrow.net/blog/assets_c/2010/10/ikaho_01-387.html" onclick="window.open('http://www.gracearrow.net/blog/assets_c/2010/10/ikaho_01-387.html','popup','width=2000,height=1500,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false"><img src="http://www.gracearrow.net/blog/assets_c/2010/10/ikaho_01-thumb-480x360-387.jpg" width="480" height="360" alt="ikaho_01.jpg" class="mt-image-none" style="" /></a></p>

<p><a href="http://www.gracearrow.net/blog/assets_c/2010/10/ikaho_02-390.html" onclick="window.open('http://www.gracearrow.net/blog/assets_c/2010/10/ikaho_02-390.html','popup','width=2000,height=1500,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false"><img src="http://www.gracearrow.net/blog/assets_c/2010/10/ikaho_02-thumb-480x360-390.jpg" width="480" height="360" alt="ikaho_02.jpg" class="mt-image-none" style="" /></a></p>

<p><a href="http://www.ikaho-omocha.jp/">伊香保おもちゃと人形自動車博物館</a></p>]]>
        
    </content>
</entry>

<entry>
    <title>モータースポーツジャパン フェスティバル 2010</title>
    <link rel="alternate" type="text/html" href="http://www.gracearrow.net/blog/2010/10/-2010-2.html" />
    <id>tag:www.gracearrow.net,2010:/blog//3.591</id>

    <published>2010-10-03T11:16:42Z</published>
    <updated>2010-10-03T11:21:20Z</updated>

    <summary>今年もお台場で開催されたこのイベント。 ホンダ・トヨタがF1から撤退してしまった...</summary>
    <author>
        <name>gracearrow</name>
        
    </author>
    
        <category term="くるま・バイク" scheme="http://www.sixapart.com/ns/types#category" />
    
    
    <content type="html" xml:lang="en" xml:base="http://www.gracearrow.net/blog/">
        <![CDATA[<p>今年もお台場で開催されたこのイベント。</p>

<p>ホンダ・トヨタがF1から撤退してしまったためF1の走行がないのが残念でした。</p>

<p><a href="http://www.gracearrow.net/blog/assets_c/2010/10/msj2010_1-381.html" onclick="window.open('http://www.gracearrow.net/blog/assets_c/2010/10/msj2010_1-381.html','popup','width=2000,height=1500,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false"><img src="http://www.gracearrow.net/blog/assets_c/2010/10/msj2010_1-thumb-480x360-381.jpg" width="480" height="360" alt="msj2010_1.jpg" class="mt-image-none" style="" /></a></p>

<p><a href="http://www.gracearrow.net/blog/assets_c/2010/10/msj2010_2-384.html" onclick="window.open('http://www.gracearrow.net/blog/assets_c/2010/10/msj2010_2-384.html','popup','width=2000,height=1500,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false"><img src="http://www.gracearrow.net/blog/assets_c/2010/10/msj2010_2-thumb-480x360-384.jpg" width="480" height="360" alt="msj2010_2.jpg" class="mt-image-none" style="" /></a></p>

<p><a href="http://motorsport-japan.com/msjf/">モータースポーツジャパン フェスティバル</a></p>]]>
        
    </content>
</entry>

<entry>
    <title>「ハリー・ポッターと賢者の石」</title>
    <link rel="alternate" type="text/html" href="http://www.gracearrow.net/blog/2010/09/post-85.html" />
    <id>tag:www.gracearrow.net,2010:/blog//3.590</id>

    <published>2010-09-12T14:22:57Z</published>
    <updated>2010-09-12T14:28:46Z</updated>

    <summary> J.K. ローリング「ハリー・ポッターと賢者の石」 完結したことなので最初から...</summary>
    <author>
        <name>gracearrow</name>
        
    </author>
    
        <category term="読書" scheme="http://www.sixapart.com/ns/types#category" />
    
    
    <content type="html" xml:lang="en" xml:base="http://www.gracearrow.net/blog/">
        <![CDATA[<p><a href="http://www.amazon.co.jp/gp/product/4915512371?ie=UTF8&tag=gracearrow-22&linkCode=as2&camp=247&creative=7399&creativeASIN=4915512371"><img src="http://ec2.images-amazon.com/images/I/51VPFSM57AL._SL500_AA300_.jpg"></a></p>

<p>J.K. ローリング「<a href="http://www.amazon.co.jp/gp/product/4915512371?ie=UTF8&tag=gracearrow-22&linkCode=as2&camp=247&creative=7399&creativeASIN=4915512371">ハリー・ポッターと賢者の石</a><img src="http://www.assoc-amazon.jp/e/ir?t=gracearrow-22&l=as2&o=9&a=4915512371" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" />」</p>

<p>完結したことなので最初から読んでみることにしました。</p>

<p>実はかなり以前に英語の勉強になるかと思い、英語版を買って読み始めたことがあるのですが、ホグワーツへ行く前くらいで挫折してしまっています。</p>]]>
        
    </content>
</entry>

<entry>
    <title>「密室殺人ゲーム王手飛車取り」</title>
    <link rel="alternate" type="text/html" href="http://www.gracearrow.net/blog/2010/09/post-84.html" />
    <id>tag:www.gracearrow.net,2010:/blog//3.589</id>

    <published>2010-09-01T14:00:43Z</published>
    <updated>2010-09-01T14:04:35Z</updated>

    <summary> 歌野 晶午「密室殺人ゲーム王手飛車取り」 終盤になっても話が終わる気配がないな...</summary>
    <author>
        <name>gracearrow</name>
        
    </author>
    
        <category term="読書" scheme="http://www.sixapart.com/ns/types#category" />
    
    
    <content type="html" xml:lang="en" xml:base="http://www.gracearrow.net/blog/">
        <![CDATA[<p><a href="http://www.amazon.co.jp/gp/product/4062765497?ie=UTF8&tag=gracearrow-22&linkCode=as2&camp=247&creative=7399&creativeASIN=4062765497"><img src="http://ecx.images-amazon.com/images/I/5163oXDgVkL._SL500_AA300_.jpg"></a></p>

<p>歌野 晶午「<a href="http://www.amazon.co.jp/gp/product/4062765497?ie=UTF8&tag=gracearrow-22&linkCode=as2&camp=247&creative=7399&creativeASIN=4062765497">密室殺人ゲーム王手飛車取り</a><img src="http://www.assoc-amazon.jp/e/ir?t=gracearrow-22&l=as2&o=9&a=4062765497" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" />」</p>

<p>終盤になっても話が終わる気配がないなと思ったら続きがあるようです。</p>]]>
        
    </content>
</entry>

<entry>
    <title>「死神の精度」</title>
    <link rel="alternate" type="text/html" href="http://www.gracearrow.net/blog/2010/08/post-83.html" />
    <id>tag:www.gracearrow.net,2010:/blog//3.588</id>

    <published>2010-08-26T15:32:23Z</published>
    <updated>2010-08-26T15:43:48Z</updated>

    <summary> 伊坂 幸太郎「死神の精度」 もうすぐ死ぬということがテーマなので漫画の「イキガ...</summary>
    <author>
        <name>gracearrow</name>
        
    </author>
    
        <category term="読書" scheme="http://www.sixapart.com/ns/types#category" />
    
    
    <content type="html" xml:lang="en" xml:base="http://www.gracearrow.net/blog/">
        <![CDATA[<p><a href="http://www.amazon.co.jp/gp/product/4167745011?ie=UTF8&tag=gracearrow-22&linkCode=as2&camp=247&creative=7399&creativeASIN=4167745011"><img src="http://ec2.images-amazon.com/images/I/51D%2BOTeu69L._BO2,204,203,TopRight,35,-76_AA300_SH20_OU09_.jpg"></a></p>

<p>伊坂 幸太郎「<a href="http://www.amazon.co.jp/gp/product/4167745011?ie=UTF8&tag=gracearrow-22&linkCode=as2&camp=247&creative=7399&creativeASIN=4167745011">死神の精度</a><img src="http://www.assoc-amazon.jp/e/ir?t=gracearrow-22&l=as2&o=9&a=4167745011" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" />」</p>

<p>もうすぐ死ぬということがテーマなので漫画の「<a href="http://www.amazon.co.jp/gp/product/4091532810?ie=UTF8&tag=gracearrow-22&linkCode=as2&camp=247&creative=7399&creativeASIN=4091532810">イキガミ</a><img src="http://www.assoc-amazon.jp/e/ir?t=gracearrow-22&l=as2&o=9&a=4091532810" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /><br />
」のような感じかなと予想していましたが、そうではありませんでした。。</p>

<p>短篇としていくつかのエピソードで構成されており、エピソードごとにサスペンスだったり恋愛だったりとさまざまな作風を楽しめました。</p>]]>
        
    </content>
</entry>

<entry>
    <title>「向日葵の咲かない夏」</title>
    <link rel="alternate" type="text/html" href="http://www.gracearrow.net/blog/2010/08/post-82.html" />
    <id>tag:www.gracearrow.net,2010:/blog//3.587</id>

    <published>2010-08-26T15:26:22Z</published>
    <updated>2010-08-26T15:31:53Z</updated>

    <summary> 道尾 秀介「向日葵の咲かない夏」 2冊連続で道尾 秀介作品 最後にそういうこと...</summary>
    <author>
        <name>gracearrow</name>
        
    </author>
    
        <category term="読書" scheme="http://www.sixapart.com/ns/types#category" />
    
    
    <content type="html" xml:lang="en" xml:base="http://www.gracearrow.net/blog/">
        <![CDATA[<p><a href="http://www.amazon.co.jp/gp/product/4101355517?ie=UTF8&tag=gracearrow-22&linkCode=as2&camp=247&creative=7399&creativeASIN=4101355517"><img src="http://ec2.images-amazon.com/images/I/51z6yTd%2BJgL._SL500_AA300_.jpg"></a></p>

<p>道尾 秀介「<a href="http://www.amazon.co.jp/gp/product/4101355517?ie=UTF8&tag=gracearrow-22&linkCode=as2&camp=247&creative=7399&creativeASIN=4101355517">向日葵の咲かない夏</a><img src="http://www.assoc-amazon.jp/e/ir?t=gracearrow-22&l=as2&o=9&a=4101355517" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" />」</p>

<p>2冊連続で道尾 秀介作品</p>

<p>最後にそういうことかー、という仕掛けがあります。それが分かった上でもう一回読んでみたいです。</p>

<p><a href="http://michioshusuke.cocolog-nifty.com/">道尾秀介＠あらびき双生児</a><br />
<a href="http://www.gracearrow.net/blog/2010/08/post-81.html">「ラットマン」</a></p>]]>
        
    </content>
</entry>

<entry>
    <title>「ラットマン」</title>
    <link rel="alternate" type="text/html" href="http://www.gracearrow.net/blog/2010/08/post-81.html" />
    <id>tag:www.gracearrow.net,2010:/blog//3.586</id>

    <published>2010-08-13T11:56:09Z</published>
    <updated>2010-08-13T12:06:47Z</updated>

    <summary> 道尾 秀介「ラットマン」 たまたま見たNHKのTopRunnerという番組で作...</summary>
    <author>
        <name>gracearrow</name>
        
    </author>
    
        <category term="読書" scheme="http://www.sixapart.com/ns/types#category" />
    
    
    <content type="html" xml:lang="en" xml:base="http://www.gracearrow.net/blog/">
        <![CDATA[<p><a href="http://www.amazon.co.jp/gp/product/4334748074?ie=UTF8&tag=gracearrow-22&linkCode=as2&camp=247&creative=7399&creativeASIN=4334748074"><img src="http://ec2.images-amazon.com/images/I/41Sp-w%2B%2BmiL._BO2,204,203,TopRight,35,-76_AA300_SH20_OU09_.jpg"/></a></p>

<p>道尾 秀介「<a href="http://www.amazon.co.jp/gp/product/4334748074?ie=UTF8&tag=gracearrow-22&linkCode=as2&camp=247&creative=7399&creativeASIN=4334748074">ラットマン</a><img src="http://www.assoc-amazon.jp/e/ir?t=gracearrow-22&l=as2&o=9&a=4334748074" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" />」</p>

<p>たまたま見たNHKのTopRunnerという番組で作者が取り上げられていたので、読んでみました。結末が気になってほとんど一気に読んでしまいました。</p>

<p><a href="http://michioshusuke.cocolog-nifty.com/">道尾秀介＠あらびき双生児</a><br />
<a href="http://www.nhk.or.jp/tr/">トップランナー -TOP RUNNER- | NHK</a></p>]]>
        
    </content>
</entry>

<entry>
    <title>iPhone 4</title>
    <link rel="alternate" type="text/html" href="http://www.gracearrow.net/blog/2010/08/iphone-4.html" />
    <id>tag:www.gracearrow.net,2010:/blog//3.585</id>

    <published>2010-08-13T11:12:30Z</published>
    <updated>2010-08-13T11:53:51Z</updated>

    <summary> iPhone 3Gを購入して2年弱、iPhone 4に乗り換えました。 6月1...</summary>
    <author>
        <name>gracearrow</name>
        
    </author>
    
        <category term="MAC/PC" scheme="http://www.sixapart.com/ns/types#category" />
    
    
    <content type="html" xml:lang="en" xml:base="http://www.gracearrow.net/blog/">
        <![CDATA[<p><a href="http://www.gracearrow.net/blog/assets_c/2010/08/iphone4-378.html" onclick="window.open('http://www.gracearrow.net/blog/assets_c/2010/08/iphone4-378.html','popup','width=1024,height=743,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false"><img src="http://www.gracearrow.net/blog/assets_c/2010/08/iphone4-thumb-480x348-378.jpg" width="480" height="348" alt="iphone4.jpg" class="mt-image-none" style="" /></a></p>

<p>iPhone 3Gを購入して2年弱、iPhone 4に乗り換えました。</p>

<p>6月15日 予約受付初日<br />
<blockquote> 会社帰りに大井町のヤマダ電機へ。<br />
 システムトラブルで予約できず。</blockquote></p>

<p>6月16日<br />
<blockquote>昼休みに大井町のヤマダ電機へ。<br />
すでに行列、1時間弱並んでいざ予約と思ったら。契約者本人でないいうことで予約を受け付けてもらえず。学生時代から持っているので親の名義になっていました。前回iPhone 3Gに機種変更したときには委任状で機種変更できたのに。</blockquote></p>

<p> 7月4日<br />
<blockquote>たまたま実家に帰る用があったので、父とともに近くのソフトバンクショップ員弁店へ。<br />
1時間くらいまってようやく手続き。<br />
当初、親子を証明できる書類がないと手数料がかかるかもといわれるが、以前支払いを分けたときに提出していたので手数料はかからず。<br />
料金プランをパケットし放題フラットに。</blockquote></p>

<p>7月7日<br />
<blockquote>昼休みにソフトバンクショップ品川駅前店でようやくiPhone4を予約</blockquote></p>

<p>7月27日<br />
<blockquote>午前中に入荷連絡があったので昼休みにソフトバンクショップへ。<br />
7/4にパケットし放題フラットにするときに必要だということで2年縛りありのホワイトプランWに変更した(適用は8/1)が実は変更する必要がないことが発覚。<br />
手続きがややこしくて時間がかかりそうだったが、昼休みが終わりそうになったので一旦切り上げ。<br />
その後電話がかかってきて手続きをすすめておいてもらえたようで、もう一度いけばスムーズに手続きが進むらしい。<br />
夕方ようやく機種変更完了。機種変更がこんなに大変だとは思いませんでした。</blockquote></p>

<p>苦労して手に入れたiPhone 4ですが噂通り動作はサクサクで、快適なiPhone生活を送っています。<br />
iPhone 3Gの時はSafariでフォームに文字入力しようと思うとキーボタンがでるまで30秒以上待つことがあったのですが、iPhone 4ではほとんどそんなことはありません。</p>

<p>アンテナ問題により無償配布されることなったバンパー or ケースを早速専用アプリから申し込んだのですが、発送が1ヶ月後とのことで、それまでのつなぎとしてケースを購入しました。<br />
<a href="http://www.amazon.co.jp/gp/product/B003R4IM6K?ie=UTF8&tag=gracearrow-22&linkCode=as2&camp=247&creative=7399&creativeASIN=B003R4IM6K"><img src="http://ec2.images-amazon.com/images/I/31432v1A59L._SL500_AA300_.jpg"/></a><br />
<a href="http://www.amazon.co.jp/gp/product/B003R4IM6K?ie=UTF8&tag=gracearrow-22&linkCode=as2&camp=247&creative=7399&creativeASIN=B003R4IM6K">BUFFALO iPhone 4 (16GB・32GB)用 TPUケース クリア BSIPP5CCR</a><img src="http://www.assoc-amazon.jp/e/ir?t=gracearrow-22&l=as2&o=9&a=B003R4IM6K" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /></p>

<p>シリコンは使っているうちに伸びてくるのとポケットの中で引っかかるのであまり好きじゃないので、シリコン以外で適当に選択。ちょっと見た目が安っぽいですが今のところ不満はないです。</p>

<p><a href="http://www.amazon.co.jp/gp/product/4873114616?ie=UTF8&tag=gracearrow-22&linkCode=as2&camp=247&creative=7399&creativeASIN=4873114616"><img src="http://ecx.images-amazon.com/images/I/51qb8cLjHyL._SL500_AA300_.jpg"/></a><br />
<a href="http://www.amazon.co.jp/gp/product/4873114616?ie=UTF8&tag=gracearrow-22&linkCode=as2&camp=247&creative=7399&creativeASIN=4873114616">iPhoneアプリケーション開発ガイド　―HTML+CSS+JavaScript による開発手法</a><img src="http://www.assoc-amazon.jp/e/ir?t=gracearrow-22&l=as2&o=9&a=4873114616" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /></p>]]>
        
    </content>
</entry>

<entry>
    <title>WERIDE 三宅島 2010 お台場プレイベント</title>
    <link rel="alternate" type="text/html" href="http://www.gracearrow.net/blog/2010/06/weride-2010.html" />
    <id>tag:www.gracearrow.net,2010:/blog//3.584</id>

    <published>2010-06-12T12:27:23Z</published>
    <updated>2010-06-12T12:50:12Z</updated>

    <summary>2010/06/06 お台場船の科学館前で開催されたイベントに行ってきました。 ...</summary>
    <author>
        <name>gracearrow</name>
        
    </author>
    
        <category term="くるま・バイク" scheme="http://www.sixapart.com/ns/types#category" />
    
    
    <content type="html" xml:lang="en" xml:base="http://www.gracearrow.net/blog/">
        <![CDATA[<p>2010/06/06 お台場船の科学館前で開催されたイベントに行ってきました。</p>

<p>まずは試乗会から<br />
<a href="http://www.gracearrow.net/blog/assets_c/2010/06/weride2010_1-360.html" onclick="window.open('http://www.gracearrow.net/blog/assets_c/2010/06/weride2010_1-360.html','popup','width=2000,height=1336,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false"><img src="http://www.gracearrow.net/blog/assets_c/2010/06/weride2010_1-thumb-480x320-360.jpg" width="480" height="320" alt="weride2010_1.jpg" class="mt-image-none" style="" /></a><br />
<a href="http://www.gracearrow.net/blog/assets_c/2010/06/weride2010_2-363.html" onclick="window.open('http://www.gracearrow.net/blog/assets_c/2010/06/weride2010_2-363.html','popup','width=1336,height=2000,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false"><img src="http://www.gracearrow.net/blog/assets_c/2010/06/weride2010_2-thumb-480x718-363.jpg" width="480" height="718" alt="weride2010_2.jpg" class="mt-image-none" style="" /></a><br />
Ducati Super Bike 848。ドゥカティ初体験です。雑誌やネットの記事で読んでましたが、予想以上に細いです。ニーグリップの感じが以前乗っていたTZR 50と変わらない感じです。試乗コースが狭いので2速に入れられませんでしたが、低速でも十分な載りやすさがありました。</p>

<p><a href="http://www.gracearrow.net/blog/assets_c/2010/06/weride2010_3-366.html" onclick="window.open('http://www.gracearrow.net/blog/assets_c/2010/06/weride2010_3-366.html','popup','width=2000,height=1336,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false"><img src="http://www.gracearrow.net/blog/assets_c/2010/06/weride2010_3-thumb-480x320-366.jpg" width="480" height="320" alt="weride2010_3.jpg" class="mt-image-none" style="" /></a><br />
エンデューロの模擬レース。昨年からドラッグレースに代わりメインのイベントになった模様。スタート地点の真後ろだったのでスタート直後に土が飛んできました。そういうことのが映像ではなく現地で見る楽しさだと思います。</p>

<p><a href="http://www.gracearrow.net/blog/assets_c/2010/06/weride2010_4-369.html" onclick="window.open('http://www.gracearrow.net/blog/assets_c/2010/06/weride2010_4-369.html','popup','width=2000,height=1336,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false"><img src="http://www.gracearrow.net/blog/assets_c/2010/06/weride2010_4-thumb-480x320-369.jpg" width="480" height="320" alt="weride2010_4.jpg" class="mt-image-none" style="" /></a><br />
<a href="http://www.gracearrow.net/blog/assets_c/2010/06/weride2010_5-372.html" onclick="window.open('http://www.gracearrow.net/blog/assets_c/2010/06/weride2010_5-372.html','popup','width=2000,height=1336,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false"><img src="http://www.gracearrow.net/blog/assets_c/2010/06/weride2010_5-thumb-480x320-372.jpg" width="480" height="320" alt="weride2010_5.jpg" class="mt-image-none" style="" /></a><br />
FMX。何度見ても人間業とは思えないです。</p>

<p><a href="http://www.gracearrow.net/blog/assets_c/2010/06/weride2010_6-375.html" onclick="window.open('http://www.gracearrow.net/blog/assets_c/2010/06/weride2010_6-375.html','popup','width=2000,height=1500,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false"><img src="http://www.gracearrow.net/blog/assets_c/2010/06/weride2010_6-thumb-480x360-375.jpg" width="480" height="360" alt="weride2010_6.jpg" class="mt-image-none" style="" /></a><br />
女性白バイ隊クイーンスターズを少し見て撤収しました。</p>]]>
        
    </content>
</entry>

</feed>

