<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
    <title>INOLOG Ver.2</title>
    <link rel="alternate" type="text/html" href="http://blog.grimonet.com/" />
    <link rel="self" type="application/atom+xml" href="http://blog.grimonet.com/atom.xml" />
   <id>tag:blog.grimonet.com,2006://1</id>
    <link rel="service.post" type="application/atom+xml" href="http://www.grimonet.com/sys/mt/mt-atom.cgi/weblog/blog_id=1" title="INOLOG Ver.2" />
    <updated>2012-02-02T07:29:06Z</updated>
    <subtitle>パソコンとか、音楽のネタをダラダラと･･･
お勧めの CD とか、楽器とかも紹介します。</subtitle>
    <generator uri="http://www.sixapart.com/movabletype/">Movable Type  5.12</generator>
 

<entry>
    <title>phpのセッションのガーベッジコレクションとかあれこれ</title>
    <link rel="alternate" type="text/html" href="http://blog.grimonet.com/articles/2012/02/php_514.php" />
    <link rel="service.edit" type="application/atom+xml" href="http://www.grimonet.com/sys/mt/mt-atom.cgi/weblog/blog_id=1/entry_id=632" title="phpのセッションのガーベッジコレクションとかあれこれ" />
    <id>tag:blog.grimonet.com,2012://1.632</id>
    
    <published>2012-02-02T11:20:48Z</published>
    <updated>2012-02-02T07:29:06Z</updated>
    
    <summary>phpでセッションを使う時に設定できる項目とか、ガーベッジコレクションをテストする際の設定項目とか。</summary>
    <author>
        <name>道草</name>
        <uri>http://www.grimonet.com/</uri>
    </author>
    
        <category term="PHP" />
    
    <content type="html" xml:lang="ja" xml:base="http://blog.grimonet.com/">
        <![CDATA[php で利用するセッション情報を MySQL に保存する方式に変更しようとしていたら、結構いろいろな設定があることに気が付いたので備忘録的な意味も込めてメモ。

今回のネタはだいたい以下の3つ。

<div class="source">

//	セッションで利用するクッキーの有効期間を1日に
ini_set("session.cookie_lifetime", 86400);

//	1日以上たったセッション情報を消去
ini_set("session.gc_maxlifetime", 86400);

//	ガーベッジコレクションを毎回発生させる
ini_set('session.gc_probability', 100);

</div>]]>
    </content>
</entry>

<entry>
    <title>include/requireを使った時のパスの扱い - PHP</title>
    <link rel="alternate" type="text/html" href="http://blog.grimonet.com/articles/2012/01/includerequire_-_php.php" />
    <link rel="service.edit" type="application/atom+xml" href="http://www.grimonet.com/sys/mt/mt-atom.cgi/weblog/blog_id=1/entry_id=631" title="include/requireを使った時のパスの扱い - PHP" />
    <id>tag:blog.grimonet.com,2012://1.631</id>
    
    <published>2012-01-27T12:11:10Z</published>
    <updated>2012-01-27T08:25:59Z</updated>
    
    <summary>PHPでincludeやrequireを使う時、パスの扱い方が分からなくなることが多いので備忘録的な感じで・・・</summary>
    <author>
        <name>道草</name>
        <uri>http://www.grimonet.com/</uri>
    </author>
    
        <category term="PHP" />
    
    <content type="html" xml:lang="ja" xml:base="http://blog.grimonet.com/">
        <![CDATA[PHP で include や require を使う時、パスの扱い方が良く分からなくなること無いですか？

一応<a href="http://php.net/manual/ja/function.include.php" target="_blank">マニュアル</a>に書かれている事が全てなんですが、毎回分からなくなるので備忘録も兼ねて一回まとめてみたいと思います。]]>
    </content>
</entry>

<entry>
    <title>Apache が起動しない - Address already in use: make_sock: could not bind to address</title>
    <link rel="alternate" type="text/html" href="http://blog.grimonet.com/articles/2012/01/apache_-_address_already_in_us.php" />
    <link rel="service.edit" type="application/atom+xml" href="http://www.grimonet.com/sys/mt/mt-atom.cgi/weblog/blog_id=1/entry_id=629" title="Apache が起動しない - Address already in use: make_sock: could not bind to address" />
    <id>tag:blog.grimonet.com,2012://1.629</id>
    
    <published>2012-01-23T12:08:21Z</published>
    <updated>2012-01-23T05:11:44Z</updated>
    
    <summary>Address already in use: make_sock: could not bind to address [::]:80という感じのエラーが出てApacheが起動できない場合の対処。</summary>
    <author>
        <name>道草</name>
        <uri>http://www.grimonet.com/</uri>
    </author>
    
        <category term="サーバー" />
    
    <content type="html" xml:lang="ja" xml:base="http://blog.grimonet.com/">
        <![CDATA[DB サーバーの負荷が異常に高い状態が数日続いていることに気がついたので、サーバーにログインして調べてみたら以下のような状態に。

<div class="cmd">

# top
PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  COMMAND
16103 apache    25   0 33688 4276 1268 R 32.7  0.1   1106:33 perl
16098 apache    25   0 33688 4280 1268 R 29.8  0.1   1106:27 perl
16107 apache    25   0 33688 4280 1268 R 26.8  0.1   1106:25 perl
・
・
・

</div>

DB サーバーなのに apache ユーザーで perl が叩かれてそれが合計で 100% 近く消費している状態。
一応、<a href="http://www.phpmyadmin.net/" target="_blank">phpMyAdmin</a> 用に Apache が動いているので、http経由で Perl のスクリプトか何かが叩かれてるんだろうと。

まぁ、サービスに影響ない部分なので、とりあえず Apache を再起動しようかなぁっと思い、実行すると変なエラーが・・・]]>
    </content>
</entry>

<entry>
    <title>Born Blanchir ライブレポート - 11.12.17@横浜 7th Avenue</title>
    <link rel="alternate" type="text/html" href="http://blog.grimonet.com/articles/2012/01/born_blanchir_-_111217_7th_ave.php" />
    <link rel="service.edit" type="application/atom+xml" href="http://www.grimonet.com/sys/mt/mt-atom.cgi/weblog/blog_id=1/entry_id=628" title="Born Blanchir ライブレポート - 11.12.17@横浜 7th Avenue" />
    <id>tag:blog.grimonet.com,2012://1.628</id>
    
    <published>2012-01-13T11:21:11Z</published>
    <updated>2012-01-13T10:28:04Z</updated>
    
    <summary>昨年12月17日に横浜7th AvenueでやったBorn Blanchirのライブレポートです。</summary>
    <author>
        <name>道草</name>
        <uri>http://www.grimonet.com/</uri>
    </author>
    
        <category term="ライブレポート" />
    
    <content type="html" xml:lang="ja" xml:base="http://blog.grimonet.com/">
        <![CDATA[時間がたってしまいましたが、次のライブが明日なので、さくっとレポートを書きたいと思います(笑)

<strong>セットリスト</strong>

<ol>
<li>ハイサルタイム</li>
<li>54</li>
<li>S01 bo.T</li>
<li>新しい種</li>
<li>Love Freedom</li>
<li>エルレイン</li>
</ol>

約1年ぶりのライブだった訳ですが、まぁ、やはりライブは楽しいですね。

新曲は無かったんですが、1年間レコーディングしたり曲を作ったりして来たのが良い感じで出たライブだったと思います。]]>
    </content>
</entry>

<entry>
    <title>ライブ告知 1/14(土)＠西荻窪FLAT - Born Blanchir</title>
    <link rel="alternate" type="text/html" href="http://blog.grimonet.com/articles/2012/01/_114flat_-_born_blanchir.php" />
    <link rel="service.edit" type="application/atom+xml" href="http://www.grimonet.com/sys/mt/mt-atom.cgi/weblog/blog_id=1/entry_id=627" title="ライブ告知 1/14(土)＠西荻窪FLAT - Born Blanchir" />
    <id>tag:blog.grimonet.com,2012://1.627</id>
    
    <published>2012-01-10T11:40:22Z</published>
    <updated>2012-01-10T10:43:02Z</updated>
    
    <summary>今週の土曜日に西荻窪FLATと言うライブハウスでBorn Blanchirのライブがあります！</summary>
    <author>
        <name>道草</name>
        <uri>http://www.grimonet.com/</uri>
    </author>
    
        <category term="Born Blanchir" />
    
    <content type="html" xml:lang="ja" xml:base="http://blog.grimonet.com/">
        <![CDATA[あけましておめでとうございます。

前回のライブのレポートもアップできてないのですが、今週の土曜日に<a href="" target="_blank">西荻窪FLAT</a> と言うライブハウスで <a href="http://www.bornblanchir.com/" target="_blank">Born Blanchir</a> のライブがありますので、お時間がありましたら是非是非お越しください！

ちなみに、Born Blanchir は 18時30分からの予定ですので、お早めに！

<blockquote>

1/14(SAT)<a href="" target="_blank">西荻窪FLAT</a>
VATO Presents 【無呼吸宇宙遊泳Ⅱ】 

<a href="http://www.yukomusic.com/" target="_blank">yukö</a>
<a href="http://www.myspace.com/goizon" target="_blank">Goizon</a>
<a href="http://frills.web.fc2.com/" target="_blank">Frills</a>
<a href="http://www.vato-official.com/" target="_blank">VATO</a>
<a href="http://www.bornblanchir.com/" target="_blank">Born Blanchir</a>

OPEN 18:00 / START 18:30
￥1,000（ドリンク別） 

西荻窪FLAT
〒167-0053　東京都杉並区西荻南3-17-2

</blockquote>

今回は、<a href="http://www.vato-official.com/" target="_blank">VATO</a>企画で、<a href="http://www.myspace.com/goizon" target="_blank">ゴイゾン</a>と対バンという、何か何処かで見たような見たことないような組み合わせですが、愉快な仲間とライブ出来るので今から楽しみです。

まぁ、このメンツが集まったら飲まない訳はないので、乾杯しに来てください！
]]>
    </content>
</entry>

<entry>
    <title>ライブ告知 12/17(土)＠横浜7th Avenue - Born Blanchir</title>
    <link rel="alternate" type="text/html" href="http://blog.grimonet.com/articles/2011/12/_12177th_avenue_-_born_blanchi.php" />
    <link rel="service.edit" type="application/atom+xml" href="http://www.grimonet.com/sys/mt/mt-atom.cgi/weblog/blog_id=1/entry_id=625" title="ライブ告知 12/17(土)＠横浜7th Avenue - Born Blanchir" />
    <id>tag:blog.grimonet.com,2011://1.625</id>
    
    <published>2011-12-14T12:26:45Z</published>
    <updated>2011-12-14T05:34:37Z</updated>
    
    <summary>12/17(土)＠横浜7th AvenueのBorn Blanchirのライブの詳細です！</summary>
    <author>
        <name>道草</name>
        <uri>http://www.grimonet.com/</uri>
    </author>
    
        <category term="Born Blanchir" />
    
    <content type="html" xml:lang="ja" xml:base="http://blog.grimonet.com/">
        <![CDATA[何だかんだで、今週末ですが、<a href="http://www.bornblanchir.com/" target="_blank">Born Blanchir</a> のライブが横浜で有ります！

今年も最初で最後のライブになりそうですが、ご都合が尽きましたら是非見に来て下さい！

<blockquote>

2011.12.17(土)@<a href="http://www2.big.or.jp/~7th/" target="_blank">横浜7th Avenue</a>

<strong>glad presents デコレーションズシャワシャワ 《 A Night Flight Before Christmas 》</strong>

OPEN 16:00 / START 16:30
前売￥2,000 / 当日￥2,300

- 出演 -
<a href="http://www.gladweb.net/" target="_blank">glad</a> / Platinum Cats / I's / <a href="http://sound.jp/tai-on/" target="_blank">TAI-ON</a> / Sweet Suite Sheeps / <strong>Born Blanchir</strong>

- DJ -
Life Line

</blockquote>

Born Blanchir は 17:40 頃出演の予定です！]]>
    </content>
</entry>

<entry>
    <title>B3 Metal XSへの道</title>
    <link rel="alternate" type="text/html" href="http://blog.grimonet.com/articles/2011/11/b3_metal_xs.php" />
    <link rel="service.edit" type="application/atom+xml" href="http://www.grimonet.com/sys/mt/mt-atom.cgi/weblog/blog_id=1/entry_id=624" title="B3 Metal XSへの道" />
    <id>tag:blog.grimonet.com,2011://1.624</id>
    
    <published>2011-11-28T11:58:35Z</published>
    <updated>2011-11-28T10:11:23Z</updated>
    
    <summary>3年以上も探し回って、やっと買った新しいギターB3 Metal XS、如何にしてB3 Metal XSに辿り着いたのか？その第一回(笑)</summary>
    <author>
        <name>道草</name>
        <uri>http://www.grimonet.com/</uri>
    </author>
    
        <category term="ギター" />
    
    <content type="html" xml:lang="ja" xml:base="http://blog.grimonet.com/">
        <![CDATA[<div class="fRight">
<embed type="application/x-shockwave-flash" src="https://picasaweb.google.com/s/c/bin/slideshow.swf" width="288" height="192" flashvars="host=picasaweb.google.com&hl=ja&feat=flashalbum&RGB=0x000000&feed=https%3A%2F%2Fpicasaweb.google.com%2Fdata%2Ffeed%2Fapi%2Fuser%2FMiCiKuSa%2Falbumid%2F5662244732263827121%3Falt%3Drss%26kind%3Dphoto%26hl%3Dja" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed>
</div>

さて、一応<a href="http://blog.grimonet.com/articles/2011/10/b3_metal_xs_-.php">前回</a>は B3 Metal XS の特徴やらを中心に書きましたけど、<a href="http://blog.grimonet.com/articles/2010/02/taylor_314ce.php">Taylor 314ce の時</a>と同じように如何にして B3 Metal XS へたどり着いたのかを書いていこうと思います。

が、なにせ 3年くらい探していたので長くなってしまう可能性大。

っということで、何回かに分けるかも知れませんが、まぁ、それだけ苦悩したんです(笑)

一部、以前書いた「<a href="http://blog.grimonet.com/articles/2011/08/post_116.php">ギター探しの旅に出る事にしたきっかけ</a>」と重複する部分があるのですが、こちらはあくまでもギター本体に的を絞った感じで書いていこうと思います。]]>
    </content>
</entry>

<entry>
    <title>ＹＵＩＧＯＮ もはや最期だ。すべてを明かそう。 - 浜田 幸一</title>
    <link rel="alternate" type="text/html" href="http://blog.grimonet.com/articles/2011/11/_-_14.php" />
    <link rel="service.edit" type="application/atom+xml" href="http://www.grimonet.com/sys/mt/mt-atom.cgi/weblog/blog_id=1/entry_id=623" title="ＹＵＩＧＯＮ もはや最期だ。すべてを明かそう。 - 浜田 幸一" />
    <id>tag:blog.grimonet.com,2011://1.623</id>
    
    <published>2011-11-25T11:46:37Z</published>
    <updated>2011-11-25T06:53:31Z</updated>
    
    <summary> 言わずと知れたハマコーこと浜田幸一元衆議院議員の書いた「ＹＵＩＧＯＮ」。 読んで始めに思ったのは、自分はハマコーが政治家だった頃を殆ど知らないなぁっと言う事。...</summary>
    <author>
        <name>道草</name>
        <uri>http://www.grimonet.com/</uri>
    </author>
    
        <category term="書籍" />
    
    <content type="html" xml:lang="ja" xml:base="http://blog.grimonet.com/">
        <![CDATA[<div class="fLeft">
<a href="http://www.amazon.co.jp/gp/product/4591124460/ref=as_li_ss_il?ie=UTF8&tag=grimo-22&linkCode=as2&camp=247&creative=7399&creativeASIN=4591124460"><img border="0" src="http://ws.assoc-amazon.jp/widgets/q?_encoding=UTF8&Format=_SL160_&ASIN=4591124460&MarketPlace=JP&ID=AsinImage&WS=1&tag=grimo-22&ServiceVersion=20070822" ></a><img src="http://www.assoc-amazon.jp/e/ir?t=grimo-22&l=as2&o=9&a=4591124460" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" />
</div>

言わずと知れたハマコーこと浜田幸一元衆議院議員の書いた「ＹＵＩＧＯＮ」。

読んで始めに思ったのは、自分はハマコーが政治家だった頃を殆ど知らないなぁっと言う事。

そして、ハマコーの過激な発言や行動は知っていても、その裏にある政治的な哲学と言うか、政策なんかに関しては全く知らなかったなぁっと言う事。

内容的には、今まで公表出来なかったことも含めて、人生を振り返る様な感じの本です。

浜田幸一という人物をバラエティ番組で怒鳴っている人という印象で捉えていた私にとっては、殆どが初めて知る内容ばかりだったので非常に興味深く読ませていただきました。]]>
    </content>
</entry>

<entry>
    <title>BATTLES@SHIBUYA-AX - 2011.11.11</title>
    <link rel="alternate" type="text/html" href="http://blog.grimonet.com/articles/2011/11/battlesshibuya-ax_-_20111111.php" />
    <link rel="service.edit" type="application/atom+xml" href="http://www.grimonet.com/sys/mt/mt-atom.cgi/weblog/blog_id=1/entry_id=622" title="BATTLES@SHIBUYA-AX - 2011.11.11" />
    <id>tag:blog.grimonet.com,2011://1.622</id>
    
    <published>2011-11-24T11:57:40Z</published>
    <updated>2011-11-24T08:17:59Z</updated>
    
    <summary>SHIBUYA-AXでBATTLESのライブを見てきたので、そのレポートです。</summary>
    <author>
        <name>道草</name>
        <uri>http://www.grimonet.com/</uri>
    </author>
    
        <category term="ライブレポート" />
    
    <content type="html" xml:lang="ja" xml:base="http://blog.grimonet.com/">
        <![CDATA[前後してしまいますが、11月11日（金）<a href="http://www.shibuya-ax.com/" target="_blank">SHIBUYA-AX</a> に <a href="http://bttls.com/" target="_blank">BATTLES</a> を見に行ってきました。

で<a href="http://blog.grimonet.com/articles/2011/11/michel_camilo_tomatitoblue_not.php">次の日に Michel Camilo & Tomatito を BLUE NOTE TOKYO で見てきた</a>わけですが、なぜ BATTLES の記事を後に書いているのか？

それは、あまり良くなかったから。

良くなかったと言ったら失礼かもしれないけど、でも本当に良くなかったから仕方がない。

なので、あんまりライブレポートを書く気分になれないんだけど、一応記録として書いておこうと思います。]]>
    </content>
</entry>

<entry>
    <title>Michel Camilo &amp; Tomatito@BLUE NOTE TOKYO - 2011.11.12.1st</title>
    <link rel="alternate" type="text/html" href="http://blog.grimonet.com/articles/2011/11/michel_camilo_tomatitoblue_not.php" />
    <link rel="service.edit" type="application/atom+xml" href="http://www.grimonet.com/sys/mt/mt-atom.cgi/weblog/blog_id=1/entry_id=621" title="Michel Camilo &amp; Tomatito@BLUE NOTE TOKYO - 2011.11.12.1st" />
    <id>tag:blog.grimonet.com,2011://1.621</id>
    
    <published>2011-11-15T11:56:02Z</published>
    <updated>2011-11-15T10:07:05Z</updated>
    
    <summary>11月12日（土）Michel Camilo &amp; Tomatitoのライブをブルーノート東京に見に行ってきました。</summary>
    <author>
        <name>道草</name>
        <uri>http://www.grimonet.com/</uri>
    </author>
    
        <category term="ライブレポート" />
    
    <content type="html" xml:lang="ja" xml:base="http://blog.grimonet.com/">
        <![CDATA[<div class="fLeft">
<a href="https://picasaweb.google.com/lh/photo/ahN6oRLT7mTUXnfCJm6o0Q?feat=embedwebsite" target="_blank"><img src="https://lh6.googleusercontent.com/-NfUxZo91yBA/TsItx-OseHI/AAAAAAAAAa8/TZKSEm8K9_o/s144/DVC00760.JPG" height="144" width="108" /></a>
</div>

<a href="http://blog.grimonet.com/articles/2009/09/200998_-2nd-_michel_camilo_tom.php">2年前に Billboard Live TOKYO で見た以来</a>の Michel Camilo & Tomatito のライブ。

前回のライブレポでは「結構良かった」みたいな事が書いてあるんだけど、記憶に残ってる印象をたどると、実はあまり良い印象は無いんですよね。

それはカミロやトマティートの演奏に問題があるわけではなくて会場に問題があることは分かりきってるんだけど、それでも何となく今回 <a href="http://www.bluenote.co.jp/" target="_blank">Blue Note</a> に来るという情報を聴いても、少し見に行くのを躊躇ってしまいました。

躊躇いつつも「やっぱり BlueNote で見てみたい！」と思い見に行ってきた訳ですが、結果的には<strong>本当に凄く良いライブ</strong>でした。

一瞬でも行くのを躊躇ってすみませんでした。]]>
    </content>
</entry>

<entry>
    <title>Belden 8412/Mogami 2534, 2549 - シールドによる音の違い</title>
    <link rel="alternate" type="text/html" href="http://blog.grimonet.com/articles/2011/11/belden_8412mogami_2534_2549_-.php" />
    <link rel="service.edit" type="application/atom+xml" href="http://www.grimonet.com/sys/mt/mt-atom.cgi/weblog/blog_id=1/entry_id=620" title="Belden 8412/Mogami 2534, 2549 - シールドによる音の違い" />
    <id>tag:blog.grimonet.com,2011://1.620</id>
    
    <published>2011-11-07T11:30:55Z</published>
    <updated>2011-11-22T03:05:57Z</updated>
    
    <summary>Belden 8412とMogami 2534/2549を使ってエレアコのフレーズを録音して聞き比べてみたら意外に違いがわかりやすかったので公開します(笑)</summary>
    <author>
        <name>道草</name>
        <uri>http://www.grimonet.com/</uri>
    </author>
    
        <category term="ギター" />
    
    <content type="html" xml:lang="ja" xml:base="http://blog.grimonet.com/">
        <![CDATA[<a href="http://www.bornblanchir.com/" target="_blank">Born Blanchir</a> のレコーディングでアコギを録音する機会があり、ふと思い立ち何本かのシールドで録音してみたら、予想以上に違いが分かりました。

今までもシールド関係の話は何度も書いてきましたけど、考えてみたら音を紹介したことがなかったので良い機会なので音を UP してみようと思います。

細かい話は後で詳しく書きますが、今回の録音でついに<a href="http://blog.grimonet.com/articles/2008/04/belden_mogami.php">セミバランス</a>の意味と言うか、音の違いが分かりました(笑)
更に、Belden 8412 の良さも(笑)

本当に今更ですけどね(笑)

なんで Mogami 2534 の方が良いと感じていたのかも何となく理由がありそうなので、その辺りも含めて書いていこうと思います。]]>
    </content>
</entry>

<entry>
    <title>終わらざる夏 - 浅田 次郎</title>
    <link rel="alternate" type="text/html" href="http://blog.grimonet.com/articles/2011/10/_-_13.php" />
    <link rel="service.edit" type="application/atom+xml" href="http://www.grimonet.com/sys/mt/mt-atom.cgi/weblog/blog_id=1/entry_id=619" title="終わらざる夏 - 浅田 次郎" />
    <id>tag:blog.grimonet.com,2011://1.619</id>
    
    <published>2011-10-29T16:48:36Z</published>
    <updated>2011-11-22T03:58:02Z</updated>
    
    <summary>前々から読もうと思っていた浅田 次郎さんの「終わらざる夏」。とてもいい本でした。</summary>
    <author>
        <name>道草</name>
        <uri>http://www.grimonet.com/</uri>
    </author>
    
        <category term="書籍" />
    
    <content type="html" xml:lang="ja" xml:base="http://blog.grimonet.com/">
        <![CDATA[<div class="fLeft">
<iframe src="http://rcm-jp.amazon.co.jp/e/cm?lt1=_blank&bc1=FFFFFF&IS2=1&bg1=FFFFFF&fc1=000000&lc1=0000FF&t=grimo-22&o=9&p=8&l=as4&m=amazon&f=ifr&ref=ss_til&asins=4087713466" style="width:120px;height:240px;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"></iframe>
</div>

<div class="fLeft">
<iframe src="http://rcm-jp.amazon.co.jp/e/cm?lt1=_blank&bc1=FFFFFF&IS2=1&bg1=FFFFFF&fc1=000000&lc1=0000FF&t=grimo-22&o=9&p=8&l=as4&m=amazon&f=ifr&ref=ss_til&asins=4087713474" style="width:120px;height:240px;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"></iframe>
</div>

この本を「面白い」と表現することが正しいのか分からないけど、素晴らしい本だと思います。

久しぶりに心に響いたと言うか、読んでいて結構応えました。

もちろん、これは小説です。
ノンフィクションではないので、事実だけが書いてあるわけではない事は承知の上で読んでいるわけですが、それでも考えさせられるものが多い内容に感じました。

当たり前の事なんですが、戦争は嫌だと感じる作品です。
ともすれば忘れがちな事ですけどね。]]>
    </content>
</entry>

<entry>
    <title>SIAM SHADE 〝SIAM SHADE SPRITS Return The Favor〟 @さいたまスーパーアリーナ 2011.10.21</title>
    <link rel="alternate" type="text/html" href="http://blog.grimonet.com/articles/2011/10/siam_shade_siam_shade_sprits_r.php" />
    <link rel="service.edit" type="application/atom+xml" href="http://www.grimonet.com/sys/mt/mt-atom.cgi/weblog/blog_id=1/entry_id=618" title="SIAM SHADE 〝SIAM SHADE SPRITS Return The Favor〟 @さいたまスーパーアリーナ 2011.10.21" />
    <id>tag:blog.grimonet.com,2011://1.618</id>
    
    <published>2011-10-29T01:33:31Z</published>
    <updated>2011-11-22T04:35:21Z</updated>
    
    <summary>10月21日さいたまスーパーアリーナにSIAM SHADEを見に行ってきました。そのレポートです。</summary>
    <author>
        <name>道草</name>
        <uri>http://www.grimonet.com/</uri>
    </author>
    
        <category term="ライブレポート" />
    
    <content type="html" xml:lang="ja" xml:base="http://blog.grimonet.com/">
        <![CDATA[<div class="fRight">
<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab" id="Player_e6b20967-2ab7-421c-8bc4-ab335e090904"  WIDTH="250px" HEIGHT="250px"> <PARAM NAME="movie" VALUE="http://ws.amazon.co.jp/widgets/q?rt=tf_ssw&ServiceVersion=20070822&MarketPlace=JP&ID=V20070822%2FJP%2Fgrimo-22%2F8003%2Fe6b20967-2ab7-421c-8bc4-ab335e090904&Operation=GetDisplayTemplate"><PARAM NAME="quality" VALUE="high"><PARAM NAME="bgcolor" VALUE="#FFFFFF"><PARAM NAME="allowscriptaccess" VALUE="always"><PARAM NAME="WMODE" VALUE="transparent"><embed src="http://ws.amazon.co.jp/widgets/q?rt=tf_ssw&ServiceVersion=20070822&MarketPlace=JP&ID=V20070822%2FJP%2Fgrimo-22%2F8003%2Fe6b20967-2ab7-421c-8bc4-ab335e090904&Operation=GetDisplayTemplate" id="Player_e6b20967-2ab7-421c-8bc4-ab335e090904" quality="high" bgcolor="#ffffff" name="Player_e6b20967-2ab7-421c-8bc4-ab335e090904" allowscriptaccess="always"  WMODE="transparent"  type="application/x-shockwave-flash" align="middle" height="250px" width="250px"></embed></OBJECT> <NOSCRIPT><A HREF="http://ws.amazon.co.jp/widgets/q?rt=tf_ssw&ServiceVersion=20070822&MarketPlace=JP&ID=V20070822%2FJP%2Fgrimo-22%2F8003%2Fe6b20967-2ab7-421c-8bc4-ab335e090904&Operation=NoScript">Amazon.co.jp ウィジェット</A></NOSCRIPT>
</div>

一言で言えば素晴らしいライブでした。
全員が音楽活動をそれぞれの形で続けているバンドなので、今でもみんな上手い。

<a href="http://siamshade.jp/" target="_blank">SIAM SHADE</a> は 18～20歳くらいの頃に影響を受けたバンドです。
コピーしまくったとかは無いんですが、オリジナルで曲を書くときとかアレンジする時によく参考にしてました。

なので、いつ頃だったか覚えてないんですが、解散前に2回ほどライブを見に行きましたが、その2回よりも今回のほうが良いライブだったように思います。

欲を言えばこのまま復活して活動してくれないかなぁっと思いつつも、それは無いんだろうなぁっと言うのを再確認してしまうライブでもありましたが、見ている方としては純粋に楽しめる良いライブだったと思います。]]>
    </content>
</entry>

<entry>
    <title>Je m&apos;appelle - TOKYO BOOT UP@新宿Motion / シネシティ広場 - 2011.10.23 - ライブレポート</title>
    <link rel="alternate" type="text/html" href="http://blog.grimonet.com/articles/2011/10/je_mappelle_-_tokyo_boot_upmot.php" />
    <link rel="service.edit" type="application/atom+xml" href="http://www.grimonet.com/sys/mt/mt-atom.cgi/weblog/blog_id=1/entry_id=617" title="Je m'appelle - TOKYO BOOT UP@新宿Motion / シネシティ広場 - 2011.10.23 - ライブレポート" />
    <id>tag:blog.grimonet.com,2011://1.617</id>
    
    <published>2011-10-28T11:02:14Z</published>
    <updated>2011-11-17T10:27:41Z</updated>
    
    <summary>2011.10.23、Je m&apos;appelleの新宿Motionとシネシティ広場でのライブにサポートして参加した時のレポートです。</summary>
    <author>
        <name>道草</name>
        <uri>http://www.grimonet.com/</uri>
    </author>
    
        <category term="音楽活動" />
    
    <content type="html" xml:lang="ja" xml:base="http://blog.grimonet.com/">
        <![CDATA[<div class="fLeft">
<a href="https://picasaweb.google.com/lh/photo/r2fULGEBLYcnJWvWEDEDR7jRFBhCAS8q8E63-vfFFps?feat=embedwebsite" target="_blank"><img src="https://lh4.googleusercontent.com/-5wTOdxiAWKQ/Tqs6K5Ld2yI/AAAAAAAAAQM/QExxVI1wTho/s144/R0012294.JPG" height="108" width="144" /></a>
</div>

<a href="http://tokyobootup.jp/tbu/" target="_blank">TOKYO BOOT UP</a> という音楽見本市？に参加する <a href="http://jemappelle.info/" target="_blank">Je m'appelle</a> のサポートでギターを弾きました。

当日は、<a href="http://motion-web.jp/" target="_blank">新宿Motion</a>とシネシティ広場での2ステージだったのですが、ライブハウスと野外、1日2回、別々の場所でライブということでハードかつトラブル続きでしたが、それなりに収穫のあったらライブだったので良しとしたいです。]]>
    </content>
</entry>

<entry>
    <title>ライブ告知 - 10/23(日) Je m&apos;appelle - TOKYO BOOT UP!</title>
    <link rel="alternate" type="text/html" href="http://blog.grimonet.com/articles/2011/10/_-_1023_je_mappelle_-_tokyo_bo.php" />
    <link rel="service.edit" type="application/atom+xml" href="http://www.grimonet.com/sys/mt/mt-atom.cgi/weblog/blog_id=1/entry_id=616" title="ライブ告知 - 10/23(日) Je m'appelle - TOKYO BOOT UP!" />
    <id>tag:blog.grimonet.com,2011://1.616</id>
    
    <published>2011-10-17T11:52:31Z</published>
    <updated>2011-11-22T04:10:56Z</updated>
    
    <summary>今度の日曜日、10月23日、新宿Motionとシネシティ広場でJe m&apos;appelleのサポートでギターを弾くので是非見に来て下さい。</summary>
    <author>
        <name>道草</name>
        <uri>http://www.grimonet.com/</uri>
    </author>
    
        <category term="音楽活動" />
    
    <content type="html" xml:lang="ja" xml:base="http://blog.grimonet.com/">
        <![CDATA[今度の日曜日、10月23日、新宿で開催される <a href="http://tokyobootup.jp/" target="_blank">TOKYO BOOT UP</a> というイベントに参加する <a href="http://jemappelle.info/" target="_blank">Je m'appelle</a> のサポートでギターを弾きます。

16時40分～ ＠<a href="http://motion-web.jp/" target="_blank">新宿Motion</a>
19時30分～ ＠シネシティ広場（旧コマ劇前）

Motion でのライブは、チケット2000円（前売り価格ドリンク別）が必要ですが、その日は Motion / <a href="http://www.marz.jp/" target="_blank">MARZ</a> / <a href="http://marble-web.jp/" target="_blank">Marble</a> を自由に行き来できるそうです。
シネシティのライブは無料。

ということで、お暇だったら是非見に来てください。]]>
    </content>
</entry>

</feed> 


