<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
    <title>Junk Blog</title>
    <link rel="alternate" type="text/html" href="http://web.sfc.wide.ad.jp/~irino/blog/" />
    <link rel="self" type="application/atom+xml" href="http://web.sfc.wide.ad.jp/~irino/blog/atom.xml" />
    <id>tag:web.sfc.wide.ad.jp,2008-08-16:/~irino/blog//1</id>
    <updated>2011-12-03T16:57:21Z</updated>
    <subtitle>自分にしか役立たない雑記</subtitle>
    <generator uri="http://www.sixapart.com/movabletype/">Movable Type 4.37</generator>

<entry>
    <title>(l)ubuntuのLXCでdebian環境構築</title>
    <link rel="alternate" type="text/html" href="http://web.sfc.wide.ad.jp/~irino/blog/2011/12/lubuntulxcdebian.html" />
    <id>tag:web.sfc.wide.ad.jp,2011:/~irino/blog//1.435</id>

    <published>2011-12-03T16:18:10Z</published>
    <updated>2011-12-03T16:57:21Z</updated>

    <summary>普段(l)ubuntu使っているが、パッケージをごちゃごちゃ入れたくないため生活...</summary>
    <author>
        <name>irino</name>
        
    </author>
    
        <category term="Linux" scheme="http://www.sixapart.com/ns/types#category" />
    
    
    <content type="html" xml:lang="ja" xml:base="http://web.sfc.wide.ad.jp/~irino/blog/">
        <![CDATA[普段(l)ubuntu使っているが、パッケージをごちゃごちゃ入れたくないため生活環境と試験環境・開発環境を分けたいと思っている。でも外出できるノートPCはVT非対応のためKVM入らない。Xenも試したけど動かなかった。そんなわけでLXCを使う事にした。<div><br /></div><div>当初、LXC上にubuntu環境を構築したかったのだがplymouthdの起動待ちでconsoleまで上がってこないので諦めた。</div><div><br /></div><div>そんなわけで(l)ubuntuのLXCでdebian環境構築した記録。</div><div><br /></div>]]>
        <![CDATA[<div>LXCパッケージのインストール</div><blockquote class="webkit-indent-blockquote" style="margin-bottom: 0px; margin-left: 40px; border-style: initial; border-color: initial; border-width: initial; border-color: initial; "><div><div>sudo aptitude install lxc</div></div></blockquote><div>debian環境の作成</div><blockquote class="webkit-indent-blockquote" style="margin-bottom: 0px; margin-left: 40px; border-style: initial; border-color: initial; border-width: initial; border-color: initial; "><div>sudo&nbsp;lxc-create -n lxc-debian -t debian</div></blockquote><div>この状態で、</div><blockquote class="webkit-indent-blockquote" style="margin-bottom: 0px; margin-left: 40px; border-style: initial; border-color: initial; border-width: initial; border-color: initial; "><div>sudo lxc-start -n lxc-debian</div></blockquote><div>すると起動する。しかも何も設定していないのに、ホスト側のインタフェースが見えてネットワークが使えた。ただ、ちゃんとネットワークを設定したい。しかも、単なるブリッジを設定してしまうと、外向きインタフェースを指定しなければいけないが、外向きインタフェースは有線/無線で変わる可能性があるため、NATすることにした。<a href="http://alfie.ist.org/blog/2011/03/23">LXC and NAT on notebook</a>を参照した。</div><div><br /></div><div><div>bridge-utilsパッケージのインストール</div></div><blockquote class="webkit-indent-blockquote" style="margin-bottom: 0px; margin-left: 40px; border-style: initial; border-color: initial; border-width: initial; border-color: initial; "><div><div><div><div>sudo aptitude install bridge-utils</div></div></div></div></blockquote>/etc/network/interfaceに以下を追記<br /><blockquote class="webkit-indent-blockquote" style="margin-bottom: 0px; margin-left: 40px; border-style: initial; border-color: initial; border-width: initial; border-color: initial; "><div><div><div># LXC bridge</div><div>auto br0</div><div>iface br0 inet static</div><div>&nbsp; &nbsp;bridge_maxwait 0</div><div>&nbsp; &nbsp;bridge_ports dummy0</div><div>&nbsp; &nbsp;address 10.255.255.1</div><div>&nbsp; &nbsp;netmask 255.255.255.0</div></div></div></blockquote><div><div><br /></div><div>上記のblogでは、fermというパッケージをインストールしてNATを実現しているが、余り余計なパッケージは入れたくなかったのでufwを使ってNATをすることにした。参考にしたのは<a href="http://d.hatena.ne.jp/ubuntu-nikki/20100921/1285077768">ufw でルータをつくる</a>のページ。</div><div><br /></div><div>パケット転送許可のための/etc/default/ufw,&nbsp;/etc/ufw/sysctl.confの編集</div></div><blockquote class="webkit-indent-blockquote" style="margin: 0 0 0 40px; border: none; padding: 0px;"><div><div>sudo vi /etc/default/ufw</div></div></blockquote><blockquote class="webkit-indent-blockquote" style="margin: 0 0 0 40px; border: none; padding: 0px;"><blockquote class="webkit-indent-blockquote" style="margin: 0 0 0 40px; border: none; padding: 0px;"><div><div><div>DEFAULT_FORWARD_POLICY="ACCEPT"</div></div></div></blockquote></blockquote><blockquote class="webkit-indent-blockquote" style="margin: 0 0 0 40px; border: none; padding: 0px;"><div><div>sudo vi /etc/ufw/sysctl.conf</div></div></blockquote><blockquote class="webkit-indent-blockquote" style="margin: 0 0 0 40px; border: none; padding: 0px;"><blockquote class="webkit-indent-blockquote" style="margin: 0 0 0 40px; border: none; padding: 0px;"><div><div>net/ipv4/ip_forward=1 (＊コメントアウトを外す)</div></div></blockquote></blockquote><div><div>NAPT(IP&nbsp;masquerade)設定として、/etc/ufw/before.rulesの末尾に以下を追記</div><div><blockquote class="webkit-indent-blockquote" style="margin-bottom: 0px; margin-left: 40px; border-style: initial; border-color: initial; border-width: initial; border-color: initial; "><div><div>sudo vi /etc/ufw/before.rules</div></div></blockquote></div></div><blockquote class="webkit-indent-blockquote" style="margin: 0 0 0 40px; border: none; padding: 0px;"><div><div><blockquote class="webkit-indent-blockquote" style="margin-bottom: 0px; margin-left: 40px; border-style: initial; border-color: initial; border-width: initial; border-color: initial; "><div><div># nat Table rules</div><div>*nat</div><div>:POSTROUTING ACCEPT [0:0]</div><div># Forward traffic from 10.0.0.0.</div><div>-A POSTROUTING -s 10.255.255.0/24 -j MASQUERADE</div><div># don't delete the 'COMMIT' line or these rules won't be processed</div><div>COMMIT</div></div></blockquote></div></div></blockquote><div><div><div><br /></div><div>ちなみにこの設定はufw disable &amp;&amp; ufw enableやservice ufw restartなどやっても、うまく反映されず、再起動したら正しく動作しました。</div><div><br /></div><div>ゲスト側debianの設定。</div></div></div><blockquote class="webkit-indent-blockquote" style="margin: 0 0 0 40px; border: none; padding: 0px;"><div><div><div>sudo vi /var/lib/lxc/lxc-debian/config (＊以下を末尾に追加)</div></div></div></blockquote><blockquote class="webkit-indent-blockquote" style="margin: 0 0 0 40px; border: none; padding: 0px;"><blockquote class="webkit-indent-blockquote" style="margin: 0 0 0 40px; border: none; padding: 0px;"><div><div><div>#network</div><div>lxc.network.type = veth</div><div>lxc.network.flags = up</div><div>lxc.network.link = br0</div><div>lxc.network.hwaddr = 00:FF:80:FF:FF:02</div><div>lxc.network.ipv4 = 10.255.255.2/24</div></div></div></blockquote></blockquote><blockquote class="webkit-indent-blockquote" style="margin: 0 0 0 40px; border: none; padding: 0px;"><div><div><div>sudo vi /var/lib/lxc/lxc-debian/rootfs/etc/network/interfaces</div></div></div></blockquote><blockquote class="webkit-indent-blockquote" style="margin: 0 0 0 40px; border: none; padding: 0px;"><blockquote class="webkit-indent-blockquote" style="margin: 0 0 0 40px; border: none; padding: 0px;"><div><div><div><div>auto lo</div><div>iface lo inet loopback</div><div>auto eth0</div><div>iface eth0 inet static</div><div>&nbsp; address 10.255.255.2</div><div>&nbsp; netmask 255.255.255.0</div><div>&nbsp; gateway 10.255.255.1</div></div></div></div></blockquote></blockquote><div><div><div><blockquote class="webkit-indent-blockquote" style="margin-bottom: 0px; margin-left: 40px; border-style: initial; border-color: initial; border-width: initial; border-color: initial; "><div><div><div>sudo vi /var/lib/lxc/lxc-debian/rootfs/etc/network/resolv.conf</div></div></div><div>(＊上記blogではdnsmasqを使っているが、面倒なのでgoogle public dnsを使用)</div></blockquote></div></div></div><blockquote class="webkit-indent-blockquote" style="margin: 0 0 0 40px; border: none; padding: 0px;"><blockquote class="webkit-indent-blockquote" style="margin: 0 0 0 40px; border: none; padding: 0px;"><div><div><div>nameserver 8.8.8.8</div></div></div></blockquote></blockquote><br /><div><div><div><blockquote class="webkit-indent-blockquote" style="margin-bottom: 0px; margin-left: 40px; border-style: initial; border-color: initial; border-width: initial; border-color: initial; "><blockquote class="webkit-indent-blockquote" style="margin-bottom: 0px; margin-left: 40px; border-style: initial; border-color: initial; border-width: initial; border-color: initial; "><div><div><div></div></div></div></blockquote></blockquote></div><blockquote class="webkit-indent-blockquote" style="margin-bottom: 0px; margin-left: 40px; border-style: initial; border-color: initial; border-width: initial; border-color: initial; "><blockquote class="webkit-indent-blockquote" style="margin-bottom: 0px; margin-left: 40px; border-style: initial; border-color: initial; border-width: initial; border-color: initial; "><div></div></blockquote></blockquote></div><div></div></div><div>以上でうまく行きました。</div>]]>
    </content>
</entry>

<entry>
    <title>Aspire One AOA150をlubuntu化</title>
    <link rel="alternate" type="text/html" href="http://web.sfc.wide.ad.jp/~irino/blog/2011/11/aspire-one-aoa150lubuntu.html" />
    <id>tag:web.sfc.wide.ad.jp,2011:/~irino/blog//1.434</id>

    <published>2011-11-27T04:52:43Z</published>
    <updated>2011-11-27T05:11:48Z</updated>

    <summary>やはり自分は忘れっぽい。記録を付けなければ。ということで、久しぶりに書いてみる。...</summary>
    <author>
        <name>irino</name>
        
    </author>
    
        <category term="Linux" scheme="http://www.sixapart.com/ns/types#category" />
    
    
    <content type="html" xml:lang="ja" xml:base="http://web.sfc.wide.ad.jp/~irino/blog/">
        <![CDATA[やはり自分は忘れっぽい。記録を付けなければ。ということで、久しぶりに書いてみる。<div>昨年くらいからAspire One AOA150というnetbookでubuntuで常用していた。メモリ1GBと低スペックであり、Windows XPだとしょっちゅうSWAPして遅いので、ubuntuに乗り換えた。</div><div>なのだが、11.10移行なんだか標準のUIであるunityはあまり使いやすいとはいえないし、全体に動作が遅い感じがしていた。(それでもWindwos XPよりかは軽快だけど)</div><div>そんなわけでlubuntuに乗り換えることにした。ブラウザ(余りpluginに依存していないので、firefoxでもchromiumでもいい)、メーラ(thunderbird)、gnucash(お小遣い帳)、libreofficeが動けば基本的に問題ないので、全然lubuntuで問題ないだろうという考えで。</div><div><br /></div><div>で、色々と依存しているものもあるだろうからと、パッケージ郡を綺麗にしたかったので、最終的に行き着いた方法は以下の通り。</div><div><br /></div><div><ol><li>single user mode(recovery mode)で立ち上げ、netrootでnetworkの接続性を持ちつつroot shellを得る。</li><li>aptitude show ubuntu-desktopでpackage一覧を出力させ、削除すべきパッケージを得る。ubuntudesk.txtとして保存</li><li>aptitude purge `cat ubuntudesk.txt`として一斉削除</li><li>aptitude purge `aptitude search \[a-zA-Z0-9\] | grep -E '^c|^id'| cut -c5- | cut -f1 -d' '` としてゴミ(残ってる不要なconfig等)を削除</li><li>aptitude install lubuntu-desktop する</li><li>必要なものを入れる</li></ol><ul><li></li><li>sudo aptitude install ibus ibus-mozc</li><li>sudo aptitude install thunderbird thunderbird-locale-ja</li><li>sudo aptitude install gnucash</li><li>sudo aptitude install libreoffice libreoffice-l10n-ja</li><li>sudo aptitude install emacs emacs-mozc</li><li>sudo aptitude install flashplugin-nonfree</li></ul></div>]]>
        
    </content>
</entry>

<entry>
    <title>Creative ZEN Touch2 購入検討</title>
    <link rel="alternate" type="text/html" href="http://web.sfc.wide.ad.jp/~irino/blog/2011/08/creative-zen-touch2.html" />
    <id>tag:web.sfc.wide.ad.jp,2011:/~irino/blog//1.433</id>

    <published>2011-08-04T14:30:00Z</published>
    <updated>2011-08-10T12:34:45Z</updated>

    <summary>こんな流れでCreative ZEN Touch2に物欲中      ...</summary>
    <author>
        <name>irino</name>
        
    </author>
    
        <category term="Computer" scheme="http://www.sixapart.com/ns/types#category" />
    
    
    <content type="html" xml:lang="ja" xml:base="http://web.sfc.wide.ad.jp/~irino/blog/">
        こんな流れでCreative ZEN Touch2に物欲中
     
        <![CDATA[<ol><li>MP3プレーヤが見当たらない</li><li>MP3プレーヤ買いたい。条件は以下の通り
<ol><li>AAC聞ける</li><li>Outlookの予定表と連携出来そうなもの</li><li>SDカードで容量が増やせるもの</li></ol></li><li>Sound Blasterシリーズで有名なCreative社に注目</li><ol><li>ZEN Style M100: ￥3,780(4GB), AAC×, Outlook×, SD○</li><li>Zen Style 100: ￥6980(16GB), AAC×, Outlook○, SD×</li><li>Zen X-Fi Style: ￥8800(8GB), AAC○, Outlook○, SD×</li></ol></ol><p>どれも条件に合わない(Outlookの条件が厳しいのかもしれない)。<br />
そんな中、ZEN Touch2(<a href="http://jp.creative.com/products/product.asp?category=948&amp;subcategory=957&amp;product=20275&amp;nav=1">http://jp.creative.com/products/product.asp?category=948&amp;subcategory=957...</a>)を発見。Android2.2(にアップグレード可能)で￥9,800 (<a href="http://store.shopping.yahoo.co.jp/creative-store/zn-t28g-nnn.html">http://store.shopping.yahoo.co.jp/creative-store/zn-t28g-nnn.html</a>)<br />
先程あげた条件で行くと、AAC OK, Outlookは不明, SD OKです。</p><p>これのAndroid端末としてのデメリットはAndroid Marketが使えないことですがrootを取ってAndorid Marketに対応させる方法がこちらにありました。(<a href="http://furfrog.com/category/3">http://furfrog.com/category/3</a>)<br />
後は電池の持ちが悪いとの話です。<br />
ただそれ以上に、回線に紐づかずにAndroidのお試し環境が持てるならばということに物欲が出ています。Android開発環境に良いかもと考えています。</p>]]>
    </content>
</entry>

<entry>
    <title>REGZA Blueray RD-BR610</title>
    <link rel="alternate" type="text/html" href="http://web.sfc.wide.ad.jp/~irino/blog/2011/08/regza-blueray-rd-br610.html" />
    <id>tag:web.sfc.wide.ad.jp,2011:/~irino/blog//1.432</id>

    <published>2011-08-02T12:22:45Z</published>
    <updated>2011-08-10T12:25:27Z</updated>

    <summary>     昨日購入したREGZA Blueray RD-BR610を使い始めまし...</summary>
    <author>
        <name>irino</name>
        
    </author>
    
        <category term="TV" scheme="http://www.sixapart.com/ns/types#category" />
    
    
    <content type="html" xml:lang="ja" xml:base="http://web.sfc.wide.ad.jp/~irino/blog/">
        <![CDATA[<div class="content clearfix">
    <div class="field field-name-body field-type-text-with-summary field-label-hidden"><div class="field-items"><div class="field-item even"><p>昨日購入したREGZA Blueray <a href="http://www.toshiba.co.jp/regza/bd_dvd/lineup/rd-b10/index_j.htm">RD-BR610</a>を使い始めました。なお、本機種を選んだのは今持っているTVがREGZA 32A950Sだからです。</p>
<p>まず購入価格はヨドバシカメラにて￥41,800の15%還元。価格.comの最安値が￥37,100なのでポイント還元分を考慮すると安いです。
またTVを買ったときのエコポイントから交換した商品券及びANAのマイルから交換したEdyを使いたかったというのもありヨドバシカメラで購入しまし
た。</p>
<p>使用感ですが慣れていないせいか、正直、番組を探すのがなかなか難しいです。<br />
画質は別にこだわらない番組であれば、H.264の2.4Mbpsでも問題ない感じです。場面場面によって若干ブロックが出ますが。</p>
<p>実際に予約録画をすると５分程度前から起動して待機してます。<br />
起動時間は正確に計測していませんが、１分強待たされます。高速起動はまだ試していません。</p>
<p>とりあえず、次回実家に帰ったら、ビデオテープをなるべくDVD/Bluerayに移してビデオテープを破棄してしまおうと思います。</p>
</div></div></div>  </div>
     ]]>
        
    </content>
</entry>

<entry>
    <title>コクリコ坂から</title>
    <link rel="alternate" type="text/html" href="http://web.sfc.wide.ad.jp/~irino/blog/2011/08/post-113.html" />
    <id>tag:web.sfc.wide.ad.jp,2011:/~irino/blog//1.431</id>

    <published>2011-08-01T14:17:32Z</published>
    <updated>2011-08-10T12:22:02Z</updated>

    <summary>     ヨドバシにてブルーレイレコーダ&quot;RD-BR610&quot;を購入した(これにつ...</summary>
    <author>
        <name>irino</name>
        
    </author>
    
        <category term="Movie" scheme="http://www.sixapart.com/ns/types#category" />
    
    
    <content type="html" xml:lang="ja" xml:base="http://web.sfc.wide.ad.jp/~irino/blog/">
        <![CDATA[<div class="content clearfix">
    <div class="field field-name-body field-type-text-with-summary field-label-hidden"><div class="field-items"><div class="field-item even"><p>ヨドバシにてブルーレイレコーダ"RD-BR610"を購入した(これについては別途記載)あと、１日なので映画が安いということで「<a href="http://kokurikozaka.jp/">コクリコ坂から</a>」を見てきました。</p>
<p>正直な感想は、「それで?」という感想です。愛しあった二人が兄弟かもしれず、許されない愛かもしれないという話ですが、なんというかジブリ作品はメッセージ性があるから良いと考えていますが、そのメッセージ性が薄く感じました。<br />
ジブリの名前がついたから映画になっているって感じを受けました。</p>
<p>ただ、古い桜木町や山下公園の風景が描かれていたのは、個人的に良かったです。</p>
</div></div></div>  </div>
     ]]>
        
    </content>
</entry>

<entry>
    <title>chat noir</title>
    <link rel="alternate" type="text/html" href="http://web.sfc.wide.ad.jp/~irino/blog/2011/07/chat-noir.html" />
    <id>tag:web.sfc.wide.ad.jp,2011:/~irino/blog//1.430</id>

    <published>2011-07-30T12:11:43Z</published>
    <updated>2011-08-10T12:15:41Z</updated>

    <summary>午後は黒猫のオブジェで有名?とうわさに聞いていたchat noirにか行きました...</summary>
    <author>
        <name>irino</name>
        
    </author>
    
        <category term="Restaurant" scheme="http://www.sixapart.com/ns/types#category" />
    
    
    <content type="html" xml:lang="ja" xml:base="http://web.sfc.wide.ad.jp/~irino/blog/">
        <![CDATA[午後は黒猫のオブジェで有名?とうわさに聞いていたchat noirにか行きました。大きなパイシューが180円、名前を忘れてしまいましたが雪見大福風の抹茶のスフレ・クリームが入ったケーキが320円くらいでした。おいしくて、コストパフォーマンス良い感じです。<br />
家に帰って紅茶を入れて堪能しました。
     ]]>
        <![CDATA[<a href="http://web.sfc.wide.ad.jp/%7Eirino/blog/assets_c/2011/08/20110730_chatnoir-824.php" onclick="window.open('http://web.sfc.wide.ad.jp/~irino/blog/assets_c/2011/08/20110730_chatnoir-824.php','popup','width=1200,height=1600,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false"><img src="http://web.sfc.wide.ad.jp/%7Eirino/blog/assets_c/2011/08/20110730_chatnoir-thumb-320x426-824.jpg" alt="20110730_chatnoir.JPG" class="mt-image-center" style="text-align: center; display: block; margin: 0 auto 20px;" width="320" height="426" /></a><div><a href="http://web.sfc.wide.ad.jp/%7Eirino/blog/assets_c/2011/08/20110730_chatnoir_cake-827.php" onclick="window.open('http://web.sfc.wide.ad.jp/~irino/blog/assets_c/2011/08/20110730_chatnoir_cake-827.php','popup','width=1600,height=1200,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false"><img src="http://web.sfc.wide.ad.jp/%7Eirino/blog/assets_c/2011/08/20110730_chatnoir_cake-thumb-320x240-827.jpg" alt="20110730_chatnoir_cake.JPG" class="mt-image-center" style="text-align: center; display: block; margin: 0 auto 20px;" width="320" height="240" /></a></div><div><br /></div>]]>
    </content>
</entry>

<entry>
    <title>一富久</title>
    <link rel="alternate" type="text/html" href="http://web.sfc.wide.ad.jp/~irino/blog/2011/07/post-112.html" />
    <id>tag:web.sfc.wide.ad.jp,2011:/~irino/blog//1.429</id>

    <published>2011-07-30T04:03:38Z</published>
    <updated>2011-08-10T12:10:36Z</updated>

    <summary>お昼から花園町近くのたこ焼き屋一富久に行きました。 たこ焼き6つとところてんセッ...</summary>
    <author>
        <name>irino</name>
        
    </author>
    
        <category term="Restaurant" scheme="http://www.sixapart.com/ns/types#category" />
    
    
    <content type="html" xml:lang="ja" xml:base="http://web.sfc.wide.ad.jp/~irino/blog/">
        <![CDATA[お昼から花園町近くのたこ焼き屋一富久に行きました。<br />
たこ焼き6つとところてんセットで400円。 ]]>
        <![CDATA[<a href="http://web.sfc.wide.ad.jp/%7Eirino/blog/assets_c/2011/08/20110730_ichifuku_takoyaki-818.php" onclick="window.open('http://web.sfc.wide.ad.jp/~irino/blog/assets_c/2011/08/20110730_ichifuku_takoyaki-818.php','popup','width=2592,height=1944,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false"><img src="http://web.sfc.wide.ad.jp/%7Eirino/blog/assets_c/2011/08/20110730_ichifuku_takoyaki-thumb-320x240-818.jpg" alt="20110730_ichifuku_takoyaki.JPG" class="mt-image-center" style="text-align: center; display: block; margin: 0 auto 20px;" width="320" height="240" /></a><a href="http://web.sfc.wide.ad.jp/%7Eirino/blog/assets_c/2011/08/20110730_ichifuku_tokoroten-821.php" onclick="window.open('http://web.sfc.wide.ad.jp/~irino/blog/assets_c/2011/08/20110730_ichifuku_tokoroten-821.php','popup','width=2592,height=1944,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false"><img src="http://web.sfc.wide.ad.jp/%7Eirino/blog/assets_c/2011/08/20110730_ichifuku_tokoroten-thumb-320x240-821.jpg" alt="20110730_ichifuku_tokoroten.JPG" class="mt-image-center" style="text-align: center; display: block; margin: 0 auto 20px;" width="320" height="240" /></a><div><br /></div>]]>
    </content>
</entry>

<entry>
    <title>行動する会</title>
    <link rel="alternate" type="text/html" href="http://web.sfc.wide.ad.jp/~irino/blog/2011/07/post-111.html" />
    <id>tag:web.sfc.wide.ad.jp,2011:/~irino/blog//1.428</id>

    <published>2011-07-28T14:50:16Z</published>
    <updated>2011-08-10T12:02:32Z</updated>

    <summary>     mixiの行動する会コミュニティに参加して、コーチングの技術について学...</summary>
    <author>
        <name>irino</name>
        
    </author>
    
        <category term="Life" scheme="http://www.sixapart.com/ns/types#category" />
    
    
    <content type="html" xml:lang="ja" xml:base="http://web.sfc.wide.ad.jp/~irino/blog/">
        <![CDATA[<div class="content clearfix">
    <div class="field field-name-body field-type-text-with-summary field-label-hidden"><div class="field-items"><div class="field-item even"><p>mixiの行動する会コミュニティに参加して、コーチングの技術について学んできました。</p>
<p>そもそもティーチングとコーチングは違いますよ、というところから新発見でした。ティーチングはそのとおり相手に対して教えinputすること。一
方のコーチングは、人は「自分の気付いた事ならば行動できる」という特性に基づいて、相手の意識・能力を引き出すことに主眼をおいた質問の技術です。</p>
<p>具体的に目標を設定するときにはSMARTの法則に基づくと良いようです。</p>
<ul><li>Specific: 具体的、わかりやすい、明確</li><li>Measureable: 計測可能、定量的</li><li>Agreed upon: 同意して、達成可能に思える</li><li>Realistic: 現実的で結果嗜好</li><li>Timely: 期限が明確</li></ul><p>達成後の状況になりきって、達成前の自分を振り返ってみるというのが重要で、なぜ今回は成功したのか?ということを問いかけることにより成功する手段を考えさえ手気付かせる事が重要なようです。</p>
</div></div></div>  </div> ]]>
        <![CDATA[<br />]]>
    </content>
</entry>

<entry>
    <title>英語の勉強</title>
    <link rel="alternate" type="text/html" href="http://web.sfc.wide.ad.jp/~irino/blog/2011/07/post-109.html" />
    <id>tag:web.sfc.wide.ad.jp,2011:/~irino/blog//1.427</id>

    <published>2011-07-27T14:56:10Z</published>
    <updated>2011-08-10T11:57:45Z</updated>

    <summary>9月末まで節電を目的に残業ができないこと、有給休暇の残余があり、夏期休暇を含めて...</summary>
    <author>
        <name>irino</name>
        
    </author>
    
        <category term="Life" scheme="http://www.sixapart.com/ns/types#category" />
    
    
    <content type="html" xml:lang="ja" xml:base="http://web.sfc.wide.ad.jp/~irino/blog/">
        <![CDATA[<p>9月末まで節電を目的に残業ができないこと、有給休暇の残余があり、夏期休暇を含めて確か12日休む必要があり、これらの余暇時間の増大を考えると、何かしら取り組まないといけないと思いました。</p>
<p>何を取り組むか考えた結果、英語、とすることにしました。</p> ]]>
        <![CDATA[今の会社では英語を使う場面は殆ど無いです。ただ、元々企業研究者属性としては研究者属性に戻った際に論文等広く情報収集するためには英語が必要ですし、英語のプレゼンなども有り得ます。<br />
また先日softflowdのpatchを送った時に、コミュニケーションツールとしての英語は必要だと感じました。(softflowdに対しての返事が未だにないですが。)<br />
また何より汎用的な能力であり、社内・外に関わらず持っていれば役に立つ能力だと思っているからです。<br />
いつまで今その気があるわけではないけど、今の会社に属するかも不明瞭なので、時間を投資するに当たって社内的価値と社外的価値の両方を高めれる内容に時間を投資しようと思いました。<br />
なので、この2ヶ月間はTOEICのスコアアップに励むことを目標にしたいと思います。]]>
    </content>
</entry>

<entry>
    <title>Migration from MTOS4 to drupal7</title>
    <link rel="alternate" type="text/html" href="http://web.sfc.wide.ad.jp/~irino/blog/2011/07/migration-from-mtos4-to-drupal7.html" />
    <id>tag:web.sfc.wide.ad.jp,2011:/~irino/blog//1.426</id>

    <published>2011-07-25T21:30:36Z</published>
    <updated>2011-08-10T12:21:38Z</updated>

    <summary>MTOS4で書いていたblogのentryをdrupal7に移行したいと思い、試...</summary>
    <author>
        <name>irino</name>
        
    </author>
    
        <category term="Movable Type" scheme="http://www.sixapart.com/ns/types#category" />
    
        <category term="Web" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="drupal" label="Drupal" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="ja" xml:base="http://web.sfc.wide.ad.jp/~irino/blog/">
        <![CDATA[<p>MTOS4で書いていたblogのentryをdrupal7に移行したいと思い、試行錯誤をした。条件はSQLiteを用いる事。</p>
]]>
        <![CDATA[結果的に、wordpressを経由してインポートする方法で行った。<br />

wordpress 2.9.2にPDO (SQLite) For WordPress plungin 2.7.0(<a href="http://wordpress.org/extend/plugins/pdo-for-wordpress/">http://wordpress.org/extend/plugins/pdo-for-wordpress/</a>)を用いてインストール。wordpress 2.9.2という古いバージョンを用いたのは、このバージョン以降は上記のSQLiteを使うためのpluginが対応していないため。<br />

ログインし、ツール→エクスポート→エクスポートする作成者:すべての作成者→エクスポートファイルをダウンロードをクリックし、WXRのファイルをエクスポートする。<br />

その後、drupal7 Migrate module(<a href="http://drupal.org/project/migrate">http://drupal.org/project/migrate</a>)とWordPress Migrate module(<a href="http://drupal.org/project/wordpress_migrate">http://drupal.org/project/wordpress_migrate</a>)をインストール。<br />

WordPress Migrateはいったん設定をしないと利用できない<br />

コンテンツを探す→WORDPRESS MIGRATION→設定で<br />

Type of node to hold WordPress posts: ブログエントリー<br />

Type of node to hold WordPress pages: ブログエントリー<br />

Format for text fields: Full HTML<br />

Vocabulary for WordPress tags: タグ<br />

Vocabulary for WordPress categories: タグ<br />

で設定を行う<br /><br />その後インポート画面に移動し、WordPress exported (WXR) file to import into Drupalで先程エクスポートしたファイルを選択してImport WordPress blogをクリックする。
<p>以上でインポートできます。<br />
ただ、自分の場合は一部のエントリが文字コードなどがおかしくなっていたため、特別な対応(エクスポートしたXMLを直接いじる)が必要でした。</p><br />]]>
    </content>
</entry>

<entry>
    <title>新型Macbook air </title>
    <link rel="alternate" type="text/html" href="http://web.sfc.wide.ad.jp/~irino/blog/2011/07/macbook-air.html" />
    <id>tag:web.sfc.wide.ad.jp,2011:/~irino/blog//1.425</id>

    <published>2011-07-25T14:56:23Z</published>
    <updated>2011-08-10T11:30:01Z</updated>

    <summary>先日、7/20 新型Macbook airが発表された。CPUがSandy Br...</summary>
    <author>
        <name>irino</name>
        
    </author>
    
        <category term="Computer" scheme="http://www.sixapart.com/ns/types#category" />
    
    
    <content type="html" xml:lang="ja" xml:base="http://web.sfc.wide.ad.jp/~irino/blog/">
        <![CDATA[先日、7/20 新型Macbook airが発表された。CPUがSandy Bridgeこと第2世代のCore iシリーズに変更されている。(<a href="http://www.apple.com/jp/macbookair/specs.html">http://www.apple.com/jp/macbookair/specs.html</a>)<br />
僕のTwitter TLは、購入したい＆購入したっていうので溢れた。
     ]]>
        <![CDATA[BSD系Unix Kernelの上でOfficeが動くっていうが、それならWindowsの上でVirtual Box使って(UnixというかPOSIXにあたるが)Linuxを動かすなりLinuxの上でKVMを使ってWindowsを動かせば良い。<br />
逆にMacでWindowsが必要になったときにWindowsのライセンスが必要。<br />
僕がMacを使っていた2003〜2005年の経験では、Officeが使えると言っても互換性が低かった。<br />
あれならばOpen/Libre Office(<a href="http://ja.libreoffice.org/">http://ja.libreoffice.org/</a>)を使えば良いと思う。<br />
Libre Officeはマクロさえ使わなければ十分WordとExcelの代替にはなると思う。
<p>またブラウジングとメールだけならばubuntu linux(<a href="http://www.ubuntu.com/">http://www.ubuntu.com/</a>)で十分である。今この内容を書いているときもubuntu linuxを使ってる。</p>
<p>とは言うものの、やはりMacBook Airの薄さと軽さとスペックは気になる。<br />
11インチMacBook Air最廉価モデル: ￥84,800/Core i5 1.6GHz/2GB/SSD 64GB/30x1.7x19.2cm/1.08kg<br />
正直64GBのdisk容量と2GBのMemoryでは不十分。</p>
<p>対抗馬となるPCはないかと思い、重量1.08kgの対抗馬はないので、1.25kgでWindows 64bi(Atomを弾くため)<a href="http://kakaku.com/">http://kakaku.com</a>を検索すると、<br />
FMV LIFEBOOK PH74/CN P74CN37 ￥75,280/Core i3 2310M 2.1GHz/4GB/HDD 320GB/28.2x3.07x21.5cm/1.23kg<br />
Let's note J10 ￥78,000/Core i3 380M 2.53GHz/2GB/HDD 160GB/25.9x4.8x18.5cm/1.185kg<br />
であり、これならばハードウェアスペックとしてMacかっていいくらいの感じに思えた。</p>
<p>条件を1.5Kgまで広げると<br />
IdeaPad S205 1038J2J ¥36,150/AMD Dual-Core E 350 1.6GHz/2GB/HDD 320GB/29x3.06x19.3cm/1.3kg<br />
UL20FT-2X380 ¥45,787/Core i3 380UM 1.33GHz/4GB/HDD 500GB/29.6x3.09x21cm/1.5kg<br />
ThinkPad Edge 11 0328P4J ¥48,312/Core i3 380UM 1.33GHz/2GB/HDD 250GB/28.4x2.95x21.1cm/1.33kg</p>
<p>買うならば恐らくThinkPad Edge 11 0328P4Jになるだろう。<br />
実際はまだ買いません(WIndows8リリース狙い)。<br />
ただ見てしまって時間を浪費したのでせめて記録に残しておこうと思ったので書きました。</p>]]>
    </content>
</entry>

<entry>
    <title>ディベート勉強会</title>
    <link rel="alternate" type="text/html" href="http://web.sfc.wide.ad.jp/~irino/blog/2011/07/post-108.html" />
    <id>tag:web.sfc.wide.ad.jp,2011:/~irino/blog//1.424</id>

    <published>2011-07-24T14:54:20Z</published>
    <updated>2011-08-10T11:25:30Z</updated>

    <summary>ディベート勉強会、「昔の恋人との思い出の品は捨てるべきか」という論題で、個人的感...</summary>
    <author>
        <name>irino</name>
        
    </author>
    
        <category term="Life" scheme="http://www.sixapart.com/ns/types#category" />
    
    
    <content type="html" xml:lang="ja" xml:base="http://web.sfc.wide.ad.jp/~irino/blog/">
        <![CDATA[ディベート勉強会、「昔の恋人との思い出の品は捨てるべきか」という論題で、個人的感情は反対ですが、自分自身はじゃんけんの結果賛成側として立論しました。なお賛成側に回った人は全員反対意見でした。<br />
そんな本心と建前が違う状態でやりましたが、ディベートというゲームにおいては、上手に定義さえすれば審判に納得してもらえるものだなと思いました。なお
今回の内容は、「異性とは本心は分かり合えないものだから、相手を不快にさせないリスク管理のため、恋人関係であるとはっきりわかるもの(名前入り、写真
入)のものは捨てる。」と、とにかく相手を不快にさせないために相手を推測させるものだけを限定して捨てるという風にしました。その結果2対1で勝てまし
た。 ]]>
        <![CDATA[なお、ディベート勉強会とは関係ありませんが、<br />
今日の失敗は上司からの呼び出しの電話に気が付かなかったこと。マナーモード状態で歩いていると、バイブレーションが震えたことに気が付きません。定期的に携帯は見ないといけないですね。<br />
それから今日の出来事は散髪してきました。]]>
    </content>
</entry>

<entry>
    <title>プレゼン練習会(オブザーバ参加) </title>
    <link rel="alternate" type="text/html" href="http://web.sfc.wide.ad.jp/~irino/blog/2011/07/post-107.html" />
    <id>tag:web.sfc.wide.ad.jp,2011:/~irino/blog//1.423</id>

    <published>2011-07-22T14:54:52Z</published>
    <updated>2011-08-10T11:11:43Z</updated>

    <summary>mixiのコミュニティでプレゼン練習会に参加してきました。プレゼンテータオブザー...</summary>
    <author>
        <name>irino</name>
        
    </author>
    
        <category term="Life" scheme="http://www.sixapart.com/ns/types#category" />
    
    
    <content type="html" xml:lang="ja" xml:base="http://web.sfc.wide.ad.jp/~irino/blog/">
        <![CDATA[<p>mixiのコミュニティでプレゼン練習会に参加してきました。プレゼンテータオブザーバ(聴講)参加してきました。</p>
<p>プレゼン内容は以下のとおり。</p>
<ul><li>twitterについて</li><li>有名企業の問題を問いてみた</li><li>態度能力</li><li>大阪の紹介</li><li>関西人と関東人のリアクションの違い</li><li>彩都</li><li>習慣化させる方法</li><li>恋愛</li></ul><p>以下はプレゼンの要約。各々が好きなことを喋っているのでプレゼンテータの主観になってます。</p> ]]>
        <![CDATA[<p><strong>twitterについて</strong><br />
マズローの欲求段階説(下位の欲求が満たされないと上位の欲求に向かわない。欲求の段階とは生理-&gt;安全-&gt;社会的-&gt;承認-&gt;
自己実現)と照らし合わせると、twitterは仲間を作る事=社会的欲求、発言が認められる事=承認欲求を満たしていると考えている。<br />
twitterのTLはmixi/Facebookと違って、ひとつの発言がスレッド化されないので、時間を感じられる。<br />
非公式RT/QTを想定して、コミュニケーション化されるのを狙って、最初のメッセージを短くすることを心がけている。<br />
-&gt;個人的感想：twitterのみならずインターネットそのものが社会的以上の欲求を満たす物(自己実現も満たしうる)。twitterのTLと
mixi/Facebookの表示方法のどちらが良いかは好み次第。設計思想によるもの。コミュニケーションを想定されるのを前提にして最初のメッセージ
を短くするというのは、そういう考え方もあるのだと新しい気づきだった。</p>
<p><strong>有名企業の問題を問いてみた</strong><br /><em>Yahoo Japan: ロングのヘアースタイルが流行すると牛丼が98円になる。</em><br />
という論題に対して4つの論理展開を挟んで回答してください。という思考能力を問う問題。プレゼンテータの回答も模範解答も無理があるといえば無理があるのだが、こういう思考を問う問題が出されるのかと言うことは新発見でした。</p><p><strong>態度能力</strong><br />
第1印象が悪いとその後も損をするので第1印象を良くする。そのためにまずは挨拶の仕方を良くする。<br />
挨拶を良くするためには、猫背にせず、背中を伸ばしたまま腰を引いて頭を下げる。しかしながら頭から下げようとはしない。<br />
また1動作ずつ行い、「よろしくお願いします」と声を発しながら頭を下げるのではなく、声を発した後に頭を下げる。</p>
<p><strong>関西人と関東人のリアクションの違い</strong><br />
関西人は色々指摘されることを暖かく感じ、逆に指摘されないことに対しては冷たく感じてしまう。<br />
-&gt;個人的感想; 逆に関東人は親しくない間柄では、色々と踏み込まれると「イジラれた」感を感じるので、適度な距離をとってる。</p><p><strong>彩都</strong><br />
彩都の魅力は3つ</p>
<ol><li>街並みが綺麗(電柱がない)</li><li>自然豊か</li><li>コミュニティ活動</li></ol><p><strong>習慣化させる方法</strong></p>
<ol><li>摩擦をゼロに近づける</li><li>プロセスを自動化</li><li>お金をかける</li></ol><p>-&gt;個人的感想：以下の本を持っていたので読み返そうと思います。<br /><a href="http://www.amazon.co.jp/gp/product/4894512432/ref=as_li_qf_sp_asin_il?ie=UTF8&amp;tag=ilinog-22&amp;linkCode=as2&amp;camp=247&amp;creative=1211&amp;creativeASIN=4894512432"><img src="http://ws.assoc-amazon.jp/widgets/q?_encoding=UTF8&amp;Format=_SL110_&amp;ASIN=4894512432&amp;MarketPlace=JP&amp;ID=AsinImage&amp;WS=1&amp;tag=ilinog-22&amp;ServiceVersion=20070822" border="0" /></a><img src="http://www.assoc-amazon.jp/e/ir?t=ilinog-22&amp;l=as2&amp;o=9&amp;a=4894512432" alt="" style="border:none !important; margin:0px !important;" width="1" border="0" height="1" /></p><p><strong>恋愛</strong><br />
恋愛というのは13世紀ごろに人工的に作られた。障壁が発生するから恋愛が作られる。18世紀あたりの小説は全て不倫(社会的障壁)<br />
恋愛のきっかけにはある程度の障壁を持たせて妄想の余地を作る事が必要。<br />
逆に毎日会える結婚というのは恋愛の墓場である。<br />
優しい・楽しい人・自信がある・話を聞けるというのは恋愛の継続の条件ではあるけど、恋愛の発生には強く働かない。<br />
-&gt;個人的感想: 主催者のプレゼンテーションということもあり、これには非常に納得してしまった。</p>
<p>自分のノートを見直すと、コメントを言うためのメモが全てネガティブな面を記録していました。発表者を批評するためにはひとつネガティブな面を記録したらひとつポジティブな面を記録する様に心がけたいと思います。</p>]]>
    </content>
</entry>

<entry>
    <title>視覚的・聴覚的・体感覚的、読解型 </title>
    <link rel="alternate" type="text/html" href="http://web.sfc.wide.ad.jp/~irino/blog/2011/07/post-106.html" />
    <id>tag:web.sfc.wide.ad.jp,2011:/~irino/blog//1.422</id>

    <published>2011-07-21T14:34:14Z</published>
    <updated>2011-08-10T10:35:18Z</updated>

    <summary>     以下は聞いた話です。物事をとらえる場合に、どの感覚を中心的に利用するか...</summary>
    <author>
        <name>irino</name>
        
    </author>
    
        <category term="Life" scheme="http://www.sixapart.com/ns/types#category" />
    
    
    <content type="html" xml:lang="ja" xml:base="http://web.sfc.wide.ad.jp/~irino/blog/">
        <![CDATA[<div class="content clearfix">
    <div class="field field-name-body field-type-text-with-summary field-label-hidden"><div class="field-items"><div class="field-item even"><p>以下は聞いた話です。物事をとらえる場合に、どの感覚を中心的に利用するかは人によって異なるのですが、その主要な感覚の違いによる口癖です。</p>
<p>視覚的な人の口癖:見たところ、～～な形、～～にみえる, 傾向:見栄えの良い資料好き、胸で息<br />
聴覚的な人の口癖:お聞きしたところ、バーン、まるっと, 傾向:プレゼン好き、横文字好き<br />
体感覚的な人の口癖:～～な感じ、～～思う、なんとなく、～～したら, 傾向:急かない、ブレスト得意、おなかで息</p>
<p>持っているスピード感は以下のとおりになるようです。<br />
視覚的＞聴覚的＞対感覚的</p>
<p>また、別枠として以下のようなタイプもあるそうです。<br />
読解型の口癖:読ませてもらったところ、数字が, 傾向:ロジカル。</p>
</div></div></div>  </div>
     ]]>
        
    </content>
</entry>

<entry>
    <title>怒りの感情(怒られやすい人) </title>
    <link rel="alternate" type="text/html" href="http://web.sfc.wide.ad.jp/~irino/blog/2011/07/post-105.html" />
    <id>tag:web.sfc.wide.ad.jp,2011:/~irino/blog//1.421</id>

    <published>2011-07-20T14:29:35Z</published>
    <updated>2011-08-10T10:31:09Z</updated>

    <summary>何故怒られる人は怒られやすいのか？を考えてみることにしました。 ...</summary>
    <author>
        <name>irino</name>
        
    </author>
    
        <category term="Life" scheme="http://www.sixapart.com/ns/types#category" />
    
    
    <content type="html" xml:lang="ja" xml:base="http://web.sfc.wide.ad.jp/~irino/blog/">
        何故怒られる人は怒られやすいのか？を考えてみることにしました。 
        <![CDATA[<p>"ためしてガッテン"の"一触即発！夫婦ゲンカ　怒りの心理学"(<a href="http://www9.nhk.or.jp/gatten/archives/P20071107.html">http://www9.nhk.or.jp/gatten/archives/P20071107.html</a>)より<br /><strong>怒りの悪循環</strong>: 怒りには、怒り自身がエスカレートしていく仕組みがある。<br />
脳は「ノルアドレナリン（ノルエピネフリン）」という怒りのホルモンを分泌するよう命令-&gt;心拍数や血圧の増加などの体の変化-&gt;再び脳が感知し、怒りはさらに増幅。<br />
(<strong>認知的再評価</strong>: 心理学用語で、いわば「自分への言い聞かせ」を意味する言葉。扁桃体によって起こる感情は、前頭前野の働きで鎮めることができる。)<br /><strong>怒りの本来の目的は「警告」</strong>: 怒っている猿に「笑顔」「怒り顔」で接すると警告が伝わっていないと思い攻撃をするが、「怖がっている顔」で接すると警告が伝わっていると思い攻撃はしない。<br /><strong>アサーション</strong>: ムッとしたら一呼吸おいて、自分の感じている気持ちを「私は...」の形で相手に伝える、怒りのコントロール法<br /><strong>表情フィードバック</strong>: 自分の表情によって、物事に対する感じ方や感情までもが影響を受ける現象</p>
<p>あと、OKWaveとかYahoo知恵袋とか教えてgooとかその辺りの投稿サイトを見ると、仕事場で怒られやすい人の特徴としてあげられているのは</p><ol><li>怒られている原因を理解していない人
</li><li>怒られたことを認める(謝る)前に、弁解を先にしようとする人
</li><li>自信がなさそうな人、萎縮し何も発言しない人
</li><li>上司にいきなり答えを求める人
</li><li>改善案を言えない人
</li></ol><p>等でした。</p>
<p>怒られる人を想像した場合、上記の特徴をおおよそそなえているように思えます。<br />
特に「怒られている原因を理解していない人」「怒られたことを認める(謝る)前に、弁解を先にしようとする」というのは、上記の「怒り＝警告」が相手に対して効いていないから、怒りが増大していくのではないかと思います。<br />
ただ、もう一方で常に怒られているので、怒っているがわからすると、実は視覚的に見ただけ体の変化があって、「怒りの悪循環」の状態に入っているんではな
いかと想像してます。つまりターゲットを見る-&gt;何か分からないけどイライラ・ムカムカする-&gt;怒れるポイントを探し、あらを見つけるとすか
さず怒る、という想像です。<br />
なので個人的な推論も交えた結論は、怒られやすい人はその運命にあり対人関係が変わらない限りそのポジションから逃れられない、ということになりました。</p>]]>
    </content>
</entry>

</feed>

