<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2japanesefull.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>SOOHEI.NET_BLOG</title>
	
	<link>http://soohei.net/blog</link>
	<description>SOHEI KITADA DIARY</description>
	<lastBuildDate>Fri, 13 Aug 2010 02:44:55 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/sooheinetblog" /><feedburner:info uri="sooheinetblog" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:feedFlare href="http://www.bloglines.com/sub/http://feeds.feedburner.com/sooheinetblog" src="http://www.bloglines.com/images/sub_modern11.gif">Bloglines???</feedburner:feedFlare><feedburner:feedFlare href="http://fusion.google.com/add?feedurl=http%3A%2F%2Ffeeds.feedburner.com%2Fsooheinetblog" src="http://buttons.googlesyndication.com/fusion/add.gif">Google???</feedburner:feedFlare><feedburner:feedFlare href="http://r.hatena.ne.jp/append/http://feeds.feedburner.com/sooheinetblog" src="http://r.hatena.ne.jp/images/addto_w.gif">???RSS???</feedburner:feedFlare><feedburner:feedFlare href="http://reader.livedoor.com/subscribe/http://feeds.feedburner.com/sooheinetblog" src="http://image.reader.livedoor.com/img/banner/91_17_1.gif">Livedoor???????</feedburner:feedFlare><item>
		<title>JS (1) : JavaScriptでのクラス定義</title>
		<link>http://feedproxy.google.com/~r/sooheinetblog/~3/1tZCo6N0lJ0/12212045.html</link>
		<comments>http://soohei.net/blog/archives/2010/08/12212045.html#comments</comments>
		<pubDate>Thu, 12 Aug 2010 12:20:45 +0000</pubDate>
		<dc:creator>soohei</dc:creator>
				<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://soohei.net/blog/?p=441</guid>
		<description>■ クラスの定義方法
例えばASだと、このような定義になると思いますが、

package{
	public class MyClass{

		public var myValue;

		//コンストラクタ
		pu [...]</description>
			<content:encoded><![CDATA[<p>■ クラスの定義方法</p>
<p>例えばASだと、このような定義になると思いますが、</p>
<pre class="brush: as3;">
package{
	public class MyClass{

		public var myValue;

		//コンストラクタ
		public function MyClass(value1, value2){
			var newValue = value1 + value2;
			test1(newValue);
		}

		public fucntion test1(value3){
			myValue = value3;
			trace(&quot;myValue:&quot;, myValue);
		}

		public fucntion test2(){

		}
	}
}
</pre>
<p>&#8211;<br />
JSではこのように書くと良いと思います。</p>
<pre class="brush: jscript;">
var MyClass = function(){
	this.myValue;
	this.initialize.apply(this, arguments);
}

MyClass.prototype = {
	//コンストラクタ
	initialize: function(value1, value2) {
		var newValue = value1 + value2;
		test1(newValue);
	},

	test1: function(value3){
		this.myValue = value3;
		console.log(&quot;myValue:&quot;, myValue);
	},

	test2: function(){

	}
}
</pre>
<p>&#8211;<br />
説明 :<br />
・JSに変数の型指定はありません。<br />
・この書き方をすると、関数内で定義した変数を除いて、全てpublicになります。クラス内でprivate変数はつくれません｡<br />
・イベント処理っぽいことが入って来た時にさらに掘り下げますが、14行目の「this」は必須です。<br />
・console.logはfirebugや、WebKitのコンソールで確認。</p>
<p>&#8211;<br />
■ サンプル</p>
<p>できるだけASっぽく、1クラス1ファイルで考えてみます。<br />
ドキュメントクラス風にMainクラスを実行して、SampleClassクラスのインスタンスをつくり、<br />
その中の関数を呼んで終わり。という簡単なプログラムです。</p>
<p>まずHTMLファイルでmain.jsを読み込む。</p>
<pre class="brush: xml;">
&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt;
&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;

&lt;head&gt;
&lt;title&gt;&lt;/title&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;main.js&quot;&gt;&lt;/script&gt;
&lt;/head&gt;

&lt;body&gt;
	&lt;div id=&quot;content&quot;&gt;&lt;/div&gt;
&lt;/body&gt;

&lt;/html&gt;
</pre>
<p>&#8211;<br />
main.jsの中身</p>
<pre class="brush: jscript;">
document.write('&lt;script type=&quot;text/javascript&quot; src=&quot;sampleClass.js&quot;&gt;&lt;/script&gt;');

onload = function(){
	var main = new Main();
}

//Mainクラス
var Main = function(){
	this.initialize.apply(this, arguments);
}
Main.prototype = {
	//コンストラクタ
	initialize: function() {
		var sampleInstance = new SampleClass(&quot;Hello World!&quot;);
		sampleInstance.talk();
	}
}
</pre>
<p>&#8211;<br />
sampleClass.jsの中身</p>
<pre class="brush: jscript;">
//SampleClassクラス
var SampleClass = function(){
	this.myMessage = &quot;&quot;;
	this.initialize.apply(this, arguments);
}
SampleClass.prototype = {
	//コンストラクタ
	initialize: function(message) {
		this.myMessage = message;
	},

	//this.myMessageを出力
	talk: function(){
		console.log(this.myMessage);
		document.getElementById(&quot;content&quot;).innerHTML = this.myMessage;
	}
}
</pre>
<p>&#8211;<br />
説明 :<br />
・main.jsの1行目はASでいうimportっぽい書き方をしてみたくてやっています。<br />
 (HTMLをいじらずJSだけで完結できるので便利)<br />
・実際はJQueryのonLoadから処理を始めて行くと色々できるようになります。（次回以降）</p>
<p>ダウンロード :<br />
<a href="http://soohei.net/blog/files/js_01.zip">http://soohei.net/blog/files/js_01.zip</a></p>
<p>&#8211;<br />
参考 :<br />
・<a href="http://d.hatena.ne.jp/amachang/20060516/1147778600" target="_blank">http://d.hatena.ne.jp/amachang/20060516/1147778600</a><br />
・<a href="http://d.hatena.ne.jp/vividcode/20090706/1246905260" target="_blank">http://d.hatena.ne.jp/vividcode/20090706/1246905260</a></p>
<p>&#8211;<br />
<a href="http://twitter.com/share" class="twitter-share-button" data-count="horizontal">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/sooheinetblog?a=1tZCo6N0lJ0:wBvdDTjCUOk:spdCosxkSQE"><img src="http://feeds.feedburner.com/~ff/sooheinetblog?d=spdCosxkSQE" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sooheinetblog?a=1tZCo6N0lJ0:wBvdDTjCUOk:OAQBO0PjnPA"><img src="http://feeds.feedburner.com/~ff/sooheinetblog?d=OAQBO0PjnPA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sooheinetblog?a=1tZCo6N0lJ0:wBvdDTjCUOk:2V2C0W9ye1I"><img src="http://feeds.feedburner.com/~ff/sooheinetblog?i=1tZCo6N0lJ0:wBvdDTjCUOk:2V2C0W9ye1I" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/sooheinetblog/~4/1tZCo6N0lJ0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://soohei.net/blog/archives/2010/08/12212045.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://soohei.net/blog/archives/2010/08/12212045.html</feedburner:origLink></item>
		<item>
		<title>JS (0) :</title>
		<link>http://feedproxy.google.com/~r/sooheinetblog/~3/7sqQ9g9XMtM/12200004.html</link>
		<comments>http://soohei.net/blog/archives/2010/08/12200004.html#comments</comments>
		<pubDate>Thu, 12 Aug 2010 11:00:04 +0000</pubDate>
		<dc:creator>soohei</dc:creator>
				<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://soohei.net/blog/?p=407</guid>
		<description>一年に一度のフェス日記と化していたブログですが、せっかく心新たにJavaScriptを覚えているので、Flashに本格的に足を踏み入れるキッカケとなった緒方さんのFLASH OOP 最終章のような素敵な内容を目指します。 [...]</description>
			<content:encoded><![CDATA[<p>一年に一度のフェス日記と化していたブログですが、せっかく心新たにJavaScriptを覚えているので、Flashに本格的に足を踏み入れるキッカケとなった緒方さんの<a href="http://www.flashoop.jp/book/" target="_blank">FLASH OOP</a> 最終章のような素敵な内容を目指します。</p>
<p>■ Flashを覚えた時のように、JSを覚える</p>
<p>・(1) <a href="http://soohei.net/blog/archives/2010/08/12212045.html">JavaScriptでのクラス定義</a><br />
・(2) JSONデータの読み込み<br />
・(3) 表示部分を準備<br />
・(4) スライドショーのプログラム<br />
・(5) アニメーションをつける</p>
<p>ActionScriptを使える人が脳内で仕組みを置き換えながら理解できるようにします。ベストな実装方法かはわかりません。逆に教えて頂きたい。今日から少しずつまとめます。</p>
<p>&#8211;<br />
<a href="http://twitter.com/share" class="twitter-share-button" data-count="horizontal">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/sooheinetblog?a=7sqQ9g9XMtM:QIbLmVLsAFg:spdCosxkSQE"><img src="http://feeds.feedburner.com/~ff/sooheinetblog?d=spdCosxkSQE" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sooheinetblog?a=7sqQ9g9XMtM:QIbLmVLsAFg:OAQBO0PjnPA"><img src="http://feeds.feedburner.com/~ff/sooheinetblog?d=OAQBO0PjnPA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sooheinetblog?a=7sqQ9g9XMtM:QIbLmVLsAFg:2V2C0W9ye1I"><img src="http://feeds.feedburner.com/~ff/sooheinetblog?i=7sqQ9g9XMtM:QIbLmVLsAFg:2V2C0W9ye1I" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/sooheinetblog/~4/7sqQ9g9XMtM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://soohei.net/blog/archives/2010/08/12200004.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://soohei.net/blog/archives/2010/08/12200004.html</feedburner:origLink></item>
		<item>
		<title>2009 – 2010</title>
		<link>http://feedproxy.google.com/~r/sooheinetblog/~3/4CKEpwsKYlw/31182504.html</link>
		<comments>http://soohei.net/blog/archives/2009/12/31182504.html#comments</comments>
		<pubDate>Thu, 31 Dec 2009 09:25:04 +0000</pubDate>
		<dc:creator>soohei</dc:creator>
				<category><![CDATA[Diary]]></category>

		<guid isPermaLink="false">http://soohei.net/blog/?p=388</guid>
		<description>大晦日らしく1年をまとめます。
1月～4月
・ニセコ
・スノボ三昧
・iida公開
5月～8月
・骨展
・FUJI ROCK
・FUJI ROCKメンバーと飲む日々
・オトダマ
9月～10月
・Prodigy@幕張
・朝 [...]</description>
			<content:encoded><![CDATA[<p>大晦日らしく1年をまとめます。</p>
<p>1月～4月<br />
・ニセコ<br />
・スノボ三昧<br />
・iida公開</p>
<p>5月～8月<br />
・骨展<br />
・FUJI ROCK<br />
・FUJI ROCKメンバーと飲む日々<br />
・オトダマ</p>
<p>9月～10月<br />
・Prodigy@幕張<br />
・朝霧JAM<br />
・渋谷の櫻坂の店員が変わった (味も変わった)</p>
<p>11月～12月<br />
・DROPCLOCK@ISSEY MIYAKE<br />
・自宅引越し<br />
・FPM公開 (<a href="http://www.fpmnet.com/" target="_blank">http://www.fpmnet.com/</a>)<br />
・初YCAM (セミトラ展へ)</p>
<p>今年一番聞いたアルバムは<br />
<a href="http://www.amazon.co.jp/exec/obidos/ASIN/B001EBLAZI/sooheinet55-22/ref=nosim/" name="amazletlink" target="_blank">FABRICLIVE.43 &#8211; SWITCH &#038; SINDEN PRESENT GET FAMILIAR MIXED BY SINDEN</a></p>
<p>一番ハマった曲は<br />
ドッグンドール / ゆらゆら帝国<br />
今頃ゆら帝をちゃんと聴きました。</p>
<p>ベストアクトは<br />
BASEMENT JAXX @ FRF と<br />
SINDEN @ 朝霧</p>
<p>でした。</p>
<p>皆様良いお年を。<br />
来年もよろしくお願いします。</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/sooheinetblog?a=4CKEpwsKYlw:Hc9I-U7MQ5Y:spdCosxkSQE"><img src="http://feeds.feedburner.com/~ff/sooheinetblog?d=spdCosxkSQE" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sooheinetblog?a=4CKEpwsKYlw:Hc9I-U7MQ5Y:OAQBO0PjnPA"><img src="http://feeds.feedburner.com/~ff/sooheinetblog?d=OAQBO0PjnPA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sooheinetblog?a=4CKEpwsKYlw:Hc9I-U7MQ5Y:2V2C0W9ye1I"><img src="http://feeds.feedburner.com/~ff/sooheinetblog?i=4CKEpwsKYlw:Hc9I-U7MQ5Y:2V2C0W9ye1I" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/sooheinetblog/~4/4CKEpwsKYlw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://soohei.net/blog/archives/2009/12/31182504.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://soohei.net/blog/archives/2009/12/31182504.html</feedburner:origLink></item>
		<item>
		<title>DROPCLOCK @ ISSEY MIYAKE</title>
		<link>http://feedproxy.google.com/~r/sooheinetblog/~3/88B0oDcLXU4/26020757.html</link>
		<comments>http://soohei.net/blog/archives/2009/10/26020757.html#comments</comments>
		<pubDate>Sun, 25 Oct 2009 17:07:57 +0000</pubDate>
		<dc:creator>soohei</dc:creator>
				<category><![CDATA[Works]]></category>

		<guid isPermaLink="false">http://soohei.net/blog/?p=363</guid>
		<description>最近のTHAでの仕事です。
DROPCLOCKの4面バージョンをISSEY MIYAKEの南青山の路面店で展示中です。
WOMEN, MEN, PLEATS PLEASEの各店舗でPARIS, NEW YORK, TO [...]</description>
			<content:encoded><![CDATA[<p><img src="http://soohei.net/blog/wp-content/uploads/2009/10/dropclock-isseymiyake.jpg" alt="" width="550" height="733" /></p>
<p>最近のTHAでの仕事です。<br />
DROPCLOCKの4面バージョンをISSEY MIYAKEの南青山の路面店で展示中です。</p>
<p>WOMEN, MEN, PLEATS PLEASEの各店舗でPARIS, NEW YORK, TOKYOの時計になっています。お近くをお通りの際はよろしくお願いします。毎日10時〜23時、12月下旬まで展示予定です。</p>
<p>みなさま、ありがとうございました。</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/sooheinetblog?a=88B0oDcLXU4:_SAUD_HPFIA:spdCosxkSQE"><img src="http://feeds.feedburner.com/~ff/sooheinetblog?d=spdCosxkSQE" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sooheinetblog?a=88B0oDcLXU4:_SAUD_HPFIA:OAQBO0PjnPA"><img src="http://feeds.feedburner.com/~ff/sooheinetblog?d=OAQBO0PjnPA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sooheinetblog?a=88B0oDcLXU4:_SAUD_HPFIA:2V2C0W9ye1I"><img src="http://feeds.feedburner.com/~ff/sooheinetblog?i=88B0oDcLXU4:_SAUD_HPFIA:2V2C0W9ye1I" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/sooheinetblog/~4/88B0oDcLXU4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://soohei.net/blog/archives/2009/10/26020757.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://soohei.net/blog/archives/2009/10/26020757.html</feedburner:origLink></item>
		<item>
		<title>2009 fes</title>
		<link>http://feedproxy.google.com/~r/sooheinetblog/~3/IBjiYp45n8E/26020043.html</link>
		<comments>http://soohei.net/blog/archives/2009/10/26020043.html#comments</comments>
		<pubDate>Sun, 25 Oct 2009 17:00:43 +0000</pubDate>
		<dc:creator>soohei</dc:creator>
				<category><![CDATA[Diary]]></category>

		<guid isPermaLink="false">http://soohei.net/blog/?p=336</guid>
		<description>今頃振り返り。
FUJI ROCK FESTIVAL 09



前半ずーっと雨。フル装備で行ったので無事だった。
帰りの高速で虹が見えた。
・SIMIAN MOBILE DISCO 良かった。
・卓球@岩盤ブース 飲ん [...]</description>
			<content:encoded><![CDATA[<p>今頃振り返り。</p>
<p><strong>FUJI ROCK FESTIVAL 09</strong></p>
<p><img src="http://soohei.net/blog/wp-content/uploads/2009/10/frf002.jpg" alt="" width="550" height="413" /></p>
<p><img src="http://soohei.net/blog/wp-content/uploads/2009/10/frf001.jpg" alt="" width="550" height="413" /></p>
<p><img src="http://soohei.net/blog/wp-content/uploads/2009/10/frf003.jpg" alt="" width="550" height="733" /></p>
<p>前半ずーっと雨。フル装備で行ったので無事だった。<br />
帰りの高速で虹が見えた。<br />
・SIMIAN MOBILE DISCO 良かった。<br />
・卓球@岩盤ブース 飲んで踊ってFRFで初オール。<br />
・OASIS もう2度と見れないのでは。。Don&#8217;t Look Back In Anger はアコースティック。<br />
・FRANZ FERDINAND アレックスの目からビームが。<br />
・80KIDZ 初めて見た。楽しくて最前で踊ってた。<br />
・ソカバン みんなで歌ってた。<br />
・BASEMENT JAXX 最強の締め。ベストアクト。</p>
<p><strong>朝霧JAM</strong></p>
<p><img src="http://soohei.net/blog/wp-content/uploads/2009/10/asagiri002.jpg" alt="" width="550" height="733" /></p>
<p><img src="http://soohei.net/blog/wp-content/uploads/2009/10/asagiri001.jpg" alt="" width="550" height="733" /></p>
<p>富士山が素晴らしい。夜中からカセットコンロでキムチ鍋。次の日も朝からキムチ鍋&#038;うどん。<br />
・SINDEN 超-楽しかった。One More Time かけてた。ベストアクト。<br />
・ゆらゆら帝国 かっこよかった。ブーム到来の予感。<br />
・SPECIAL OTHERS みんなふわふわ。<br />
・YOUR SONG IS GOOD 楽しい締め。</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/sooheinetblog?a=IBjiYp45n8E:oB3t1V1wPA8:spdCosxkSQE"><img src="http://feeds.feedburner.com/~ff/sooheinetblog?d=spdCosxkSQE" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sooheinetblog?a=IBjiYp45n8E:oB3t1V1wPA8:OAQBO0PjnPA"><img src="http://feeds.feedburner.com/~ff/sooheinetblog?d=OAQBO0PjnPA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sooheinetblog?a=IBjiYp45n8E:oB3t1V1wPA8:2V2C0W9ye1I"><img src="http://feeds.feedburner.com/~ff/sooheinetblog?i=IBjiYp45n8E:oB3t1V1wPA8:2V2C0W9ye1I" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/sooheinetblog/~4/IBjiYp45n8E" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://soohei.net/blog/archives/2009/10/26020043.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://soohei.net/blog/archives/2009/10/26020043.html</feedburner:origLink></item>
		<item>
		<title>32</title>
		<link>http://feedproxy.google.com/~r/sooheinetblog/~3/PWtMlrmBzEg/21171435.html</link>
		<comments>http://soohei.net/blog/archives/2009/06/21171435.html#comments</comments>
		<pubDate>Sun, 21 Jun 2009 08:14:35 +0000</pubDate>
		<dc:creator>soohei</dc:creator>
				<category><![CDATA[Diary]]></category>
		<category><![CDATA[Works]]></category>

		<guid isPermaLink="false">http://soohei.net/blog/?p=268</guid>
		<description>最近雨が多いので、フジロックでの雨対策のことばかり考えています。
フジロックまであと32日です。今年はスノボで冬の苗場にも2度行き、
かぐら、みつまた、田代、ドラゴンドラの地理的理解もばっちりです。
もちろん狙うは「場内 [...]</description>
			<content:encoded><![CDATA[<p>最近雨が多いので、フジロックでの雨対策のことばかり考えています。<br />
フジロックまであと32日です。今年はスノボで冬の苗場にも2度行き、<br />
かぐら、みつまた、田代、ドラゴンドラの地理的理解もばっちりです。<br />
もちろん狙うは「場内１」です。</p>
<p>&#8211;<br />
<a href="http://tha.jp/456" target="_blank">CRASH</a></p>
<p><img src="http://soohei.net/blog/wp-content/uploads/2009/06/crash.jpg" alt="" width="550" height="978" /></p>
<p>山中先生の骨展に、THAメンバーとして参加させて頂きました。<br />
Ephyra～卒業～色々って有り、今こうして骨展のみなさんと<br />
仲良くさせてもらえて、本当に感謝です。展示は8/30までです。<br />
よろしくお願いします。</p>
<p>21_21 DESIGN SIGHT第5回企画展　山中俊治ディレクション「骨」展<br />
会期：2009年5月29日(金) &#8211; 8月30日(日)　<br />
時間：11:00～20:00（入場は19:30まで）<br />
休日：火曜日<br />
<a href="http://www.2121designsight.jp/" target="_blank">http://www.2121designsight.jp/</a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/sooheinetblog?a=PWtMlrmBzEg:Pw95Lk-jOP0:spdCosxkSQE"><img src="http://feeds.feedburner.com/~ff/sooheinetblog?d=spdCosxkSQE" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sooheinetblog?a=PWtMlrmBzEg:Pw95Lk-jOP0:OAQBO0PjnPA"><img src="http://feeds.feedburner.com/~ff/sooheinetblog?d=OAQBO0PjnPA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sooheinetblog?a=PWtMlrmBzEg:Pw95Lk-jOP0:2V2C0W9ye1I"><img src="http://feeds.feedburner.com/~ff/sooheinetblog?i=PWtMlrmBzEg:Pw95Lk-jOP0:2V2C0W9ye1I" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/sooheinetblog/~4/PWtMlrmBzEg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://soohei.net/blog/archives/2009/06/21171435.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://soohei.net/blog/archives/2009/06/21171435.html</feedburner:origLink></item>
		<item>
		<title>Metasequoia, Blendar</title>
		<link>http://feedproxy.google.com/~r/sooheinetblog/~3/vJSefvxP1c4/24214544.html</link>
		<comments>http://soohei.net/blog/archives/2009/01/24214544.html#comments</comments>
		<pubDate>Sat, 24 Jan 2009 12:45:44 +0000</pubDate>
		<dc:creator>soohei</dc:creator>
				<category><![CDATA[3D]]></category>

		<guid isPermaLink="false">http://soohei.net/blog/?p=192</guid>
		<description>3Dでモデル作って、テクスチャ貼って、
アニメーションつける作業を一気に身につけたので、
忘れないようにメモ。
目次
-
■ MetasequoiaでモデリングしてBlendarでアニメーション
1) メタセコでモデルデ [...]</description>
			<content:encoded><![CDATA[<p>3Dでモデル作って、テクスチャ貼って、<br />
アニメーションつける作業を一気に身につけたので、<br />
忘れないようにメモ。</p>
<p>目次<br />
-<br />
■ MetasequoiaでモデリングしてBlendarでアニメーション<br />
1) メタセコでモデルデータ作成<br />
2) DXF書き出し<br />
3) Blendarで読み込み<br />
4) アニメーションつける</p>
<p>■ Metasequoiaでモデリングしてテクスチャ貼って、Blendarにインポート<br />
1) メタセコでモデルデータ作成<br />
2) UVマップのデータ書き出し<br />
3) UVマップのデータ割り当て<br />
4) 保存、Blendarで読み込み</p>
<p>環境 : Windows xp<br />
使ったツール : Metasequoia, Bendar<br />
-</p>
<p><span id="more-192"></span><br />
■ MetasequoiaでモデリングしてBlendarでアニメーション<br />
メタセコはモデリングツールとして優れているが、アニメーション機能がないので<br />
メタセコでモデリング後にBlendarでアニメーションをつけます。</p>
<p>1) メタセコでモデルデータ作成<br />
・基本図形などを駆使してつくる。</p>
<p><a href="http://soohei.net/blog/wp-content/uploads/2009/01/090124_001.jpg"><img src="http://soohei.net/blog/wp-content/uploads/2009/01/090124_001-300x176.jpg" alt="090124_001" title="090124_001" width="300" height="176" class="alignnone size-medium wp-image-221" /></a></p>
<p>・オブジェクトパネルがフォトショのグループ・レイヤー機能的なので活用する<br />
・「選択・接続面」、「範囲」、「ナイフ」あたりが使うツール<br />
（参考: <a href="http://ktg.xii.jp/mqo/" target="_blank">メタセコイア初心者講座 &#8211; KT爺メタセコイア指南書</a>）<br />
（参考: <a href="http://wbs.nsf.tc/tutorial/tutorial_blender.html" target="_blank">チュートリアル(本当に初めての方のために作成したBlenderチュートリアル) &#8211; WBS+(Web/Blender Studio+)</a>）</p>
<p>2) DXF書き出し<br />
・名前を付けて保存で「AutoCAD(*.dxf)」を選択、保存　(＊無償版だとできない)</p>
<p><a href="http://soohei.net/blog/wp-content/uploads/2009/01/090124_002.jpg"><img src="http://soohei.net/blog/wp-content/uploads/2009/01/090124_002-300x174.jpg" alt="090124_002" title="090124_002" width="300" height="174" class="alignnone size-medium wp-image-222" /></a></p>
<p>・保存設定でサイズ・拡大率を「0.01」、座標軸を「Blendar」にする</p>
<p><a href="http://soohei.net/blog/wp-content/uploads/2009/01/090124_003.jpg"><img src="http://soohei.net/blog/wp-content/uploads/2009/01/090124_003-300x276.jpg" alt="090124_003" title="090124_003" width="300" height="276" class="alignnone size-medium wp-image-223" /></a></p>
<p>・「OK」</p>
<p>3) Blendarで読み込み<br />
・File→Import→DXF→ファイル選択して→Import DXF</p>
<p><a href="http://soohei.net/blog/wp-content/uploads/2009/01/090124_004.jpg"><img src="http://soohei.net/blog/wp-content/uploads/2009/01/090124_004-300x213.jpg" alt="090124_004" title="090124_004" width="300" height="213" class="alignnone size-medium wp-image-224" /></a></p>
<p>・表示される。おそらく大きさも座標系もバッチリ。</p>
<p><a href="http://soohei.net/blog/wp-content/uploads/2009/01/090124_005.jpg"><img src="http://soohei.net/blog/wp-content/uploads/2009/01/090124_005-300x213.jpg" alt="090124_005" title="090124_005" width="300" height="213" class="alignnone size-medium wp-image-225" /></a></p>
<p>・Zキーでワイヤーフレーム、ソリッドの切り替えが可能<br />
・Tabキーで編集モードに<br />
・まれにワイヤーフレームが表示されないときはTabキー2回連打<br />
・基本的に動きをつける単位や、テクスチャの単位ごとにパーツをDXF書き出し、Importを繰り返す<br />
（まとめてDXFにするとBlendar上でオブジェクトを分割する方法がわからなかった）</p>
<p>4) アニメーションつける<br />
・右クリックでオブジェクト選択<br />
・Mキーで配置するレイヤーを変更<br />
・PキーでParentを登録でき、子は親のアニメーションに従う。<br />
・よって、複数のパーツを一緒に動かしたいときは同じ親に登録し、親にアニメーションをつける。<br />
・タイムライン機能もTabキーで編集可。<br />
・Xで削除<br />
・Cで視点の中心変更<br />
・テンキーの1～9で視点切り替えショートカット<br />
・Gで移動モード、X,Y,Zを押すと移動の方向がロックされる。<br />
・Ctrlキーを押すと整数倍の移動になる<br />
・レンダリング設定パネルのFormatをPNG、RGBAにすると背景透明PNGも書き出せる</p>
<p><a href="http://soohei.net/blog/wp-content/uploads/2009/01/090124_006.jpg"><img src="http://soohei.net/blog/wp-content/uploads/2009/01/090124_006-300x213.jpg" alt="090124_006" title="090124_006" width="300" height="213" class="alignnone size-medium wp-image-226" /></a></p>
<p>（参考: <a href="http://wbs.nsf.tc/tutorial/tutorial2_alpha.html" target="_blank">Blenderチュートリアル(背景が透明な静止画、動画の出力方法) &#8211; WBS+(Web/Blender Studio+)</a>）</p>
<p>■ Metasequoiaでモデリングしてテクスチャ貼って、Blendarにインポート<br />
Blendarでマテリアルの設定詰めればだいぶキレイになるが、テクスチャの効果は偉大です。<br />
（参考: <a href="http://wbs.nsf.tc/tutorial/tute_beginner20.html" target="_blank">Blenderチュートリアル(本当に初めての方のために・・・マテリアル１ &#8211; WBS+(Web/Blender Studio+)) &#8211; WBS+(Web/Blender Studio+</a>)</p>
<p>1) メタセコでモデルデータ作成<br />
上と同じ。</p>
<p>2) UVマップのデータ書き出し<br />
・オブジェクト選択して、「UV操作」<br />
・「UV操作」パネルで「面」選択<br />
・オブジェクトパネルでも同じオブジェクトが選択されている必要有り<br />
・「Fit」→「Apply」→「自動展開」→「ファイル出力」</p>
<p><a href="http://soohei.net/blog/wp-content/uploads/2009/01/090124_017.jpg"><img src="http://soohei.net/blog/wp-content/uploads/2009/01/090124_017-300x231.jpg" alt="090124_017" title="090124_017" width="300" height="231" class="alignnone size-medium wp-image-252" /></a></p>
<p><a href="http://soohei.net/blog/wp-content/uploads/2009/01/090124_007.jpg"><img src="http://soohei.net/blog/wp-content/uploads/2009/01/090124_007-300x174.jpg" alt="090124_007" title="090124_007" width="300" height="174" class="alignnone size-medium wp-image-227" /></a></p>
<p><a href="http://soohei.net/blog/wp-content/uploads/2009/01/090124_008.jpg"><img src="http://soohei.net/blog/wp-content/uploads/2009/01/090124_008-264x300.jpg" alt="090124_008" title="090124_008" width="264" height="300" class="alignnone size-medium wp-image-234" /></a></p>
<p>・自由に編集、保存</p>
<p><a href="http://soohei.net/blog/wp-content/uploads/2009/01/090124_010.jpg"><img src="http://soohei.net/blog/wp-content/uploads/2009/01/090124_010-264x300.jpg" alt="090124_010" title="090124_010" width="264" height="300" class="alignnone size-medium wp-image-236" /></a></p>
<p>（参考: <a href="http://ktg.xii.jp/mqo/mqo-basic/mqobsc_007.html" target="_blank">イノシシのモデリング（6） &#8211; KT爺メタセコイア指南書</a>）</p>
<p>3) UVマップのデータ割り当て<br />
・材質パネル、「新規」、「マッピング」「模様」「参照」で選択<br />
・オブジェクトを選択して、「選択部処理」→「面に現在の材質を設定」</p>
<p><a href="http://soohei.net/blog/wp-content/uploads/2009/01/090124_009.jpg"><img src="http://soohei.net/blog/wp-content/uploads/2009/01/090124_009-300x226.jpg" alt="090124_009" title="090124_009" width="300" height="226" class="alignnone size-medium wp-image-235" /></a></p>
<p>・Ctrl+Shift+Rでレンダリング、確認。</p>
<p><a href="http://soohei.net/blog/wp-content/uploads/2009/01/090124_011.jpg"><img src="http://soohei.net/blog/wp-content/uploads/2009/01/090124_011-300x210.jpg" alt="090124_011" title="090124_011" width="300" height="210" class="alignnone size-medium wp-image-237" /></a></p>
<p>4) 保存、Blendarで読み込み<br />
・*.mqo形式（メタセコ標準）で書き出し</p>
<p><a href="http://soohei.net/blog/wp-content/uploads/2009/01/090124_014.jpg"><img src="http://soohei.net/blog/wp-content/uploads/2009/01/090124_014-300x174.jpg" alt="090124_014" title="090124_014" width="300" height="174" class="alignnone size-medium wp-image-240" /></a></p>
<p>・Blendarにmqoインポータを追加<br />
&#8211;<br />
<a href="http://blender.jp/modules/newbb/viewtopic.php?viewmode=thread&#038;topic_id=267&#038;forum=5&#038;post_id=3542#3542" target="_blank">http://blender.jp/modules/newbb/viewtopic.php?viewmode=thread&#038;topic_id=267&#038;forum=5&#038;post_id=3542#3542</a> からダウンロードして、<br />
「C:\Program Files\Blender Foundation\Blender\.blender\scripts」に置く。<br />
インストールの設定によっては「C:\Documents and Settings\ユーザ名\Application Data\Blender Foundation\Blender\.blender\scripts」 （自分はこちら）。<br />
&#8211;<br />
・Blendarで「File」→「Import」→「Metasequoiad(*.mqo)」</p>
<p><a href="http://soohei.net/blog/wp-content/uploads/2009/01/090124_013.jpg"><img src="http://soohei.net/blog/wp-content/uploads/2009/01/090124_013-300x221.jpg" alt="090124_013" title="090124_013" width="300" height="221" class="alignnone size-medium wp-image-239" /></a></p>
<p>・Scale 「0.01」<br />
・AlphaMap, NormalMap, ColorMap, Targetは全て先ほど書き出したmqoを選択</p>
<p><a href="http://soohei.net/blog/wp-content/uploads/2009/01/090124_015.jpg"><img src="http://soohei.net/blog/wp-content/uploads/2009/01/090124_015-300x221.jpg" alt="090124_015" title="090124_015" width="300" height="221" class="alignnone size-medium wp-image-241" /></a></p>
<p>・「Import」<br />
・カメラや照明、映り込みの調整<br />
・レンダリング<br />
（参考: <a href="http://www18.ocn.ne.jp/~robo3dcg/light01.html" target="_blank">ロボットの作り方　＜ライティング編01＞</a>）</p>
<p><a href="http://soohei.net/blog/wp-content/uploads/2009/01/090124_016.jpg"><img src="http://soohei.net/blog/wp-content/uploads/2009/01/090124_016-300x239.jpg" alt="090124_016" title="090124_016" width="300" height="239" class="alignnone size-medium wp-image-242" /></a></p>
<p>ここまで振り返ってわかったのですが、<br />
テクスチャの有無に関わらず、mqoで書き出し・インポートを行えば、1つめの手順は不要でした。</p>
<p>-</p>
<p><a href="http://www.amazon.co.jp/exec/obidos/ASIN/4274065723/sooheinet55-22/ref=nosim/" name="amazletlink" target="_blank"><img src="http://ecx.images-amazon.com/images/I/51ZN019GBXL._SL160_.jpg" alt="Metasequoia―3D CG メタセコイア入門" style="border: none;" /></a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/sooheinetblog?a=vJSefvxP1c4:CaXvHkY1aQ0:spdCosxkSQE"><img src="http://feeds.feedburner.com/~ff/sooheinetblog?d=spdCosxkSQE" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sooheinetblog?a=vJSefvxP1c4:CaXvHkY1aQ0:OAQBO0PjnPA"><img src="http://feeds.feedburner.com/~ff/sooheinetblog?d=OAQBO0PjnPA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sooheinetblog?a=vJSefvxP1c4:CaXvHkY1aQ0:2V2C0W9ye1I"><img src="http://feeds.feedburner.com/~ff/sooheinetblog?i=vJSefvxP1c4:CaXvHkY1aQ0:2V2C0W9ye1I" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/sooheinetblog/~4/vJSefvxP1c4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://soohei.net/blog/archives/2009/01/24214544.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://soohei.net/blog/archives/2009/01/24214544.html</feedburner:origLink></item>
		<item>
		<title>2008-2009</title>
		<link>http://feedproxy.google.com/~r/sooheinetblog/~3/fpLtSschYs8/05022233.html</link>
		<comments>http://soohei.net/blog/archives/2009/01/05022233.html#comments</comments>
		<pubDate>Sun, 04 Jan 2009 17:22:33 +0000</pubDate>
		<dc:creator>soohei</dc:creator>
				<category><![CDATA[Diary]]></category>

		<guid isPermaLink="false">http://soohei.net/blog/?p=188</guid>
		<description>2008年振り返り (仕事以外)
行ったライブ
・Justice / 新木場
・Rage Against The Machine / 幕張メッセ
・Brahman / Zepp
・Primal Scream, Under [...]</description>
			<content:encoded><![CDATA[<p>2008年振り返り (仕事以外)</p>
<p>行ったライブ<br />
・Justice / 新木場<br />
・Rage Against The Machine / 幕張メッセ<br />
・Brahman / Zepp<br />
・Primal Scream, Underworld, The Music,<br />
　Foals, The Cribs, The Zutons, etc / Fuji Rock<br />
・Sex Pistols, Fat Boy Slim, Justice, Fratellis, MGMT,<br />
　The Teenagers, Crystal Castles, Does It Offend You Yeah, etc / Summer Sonic<br />
・Radiohead / さいたまスーパーアリーナ<br />
・The Music / 新木場<br />
・<a href="http://www.myspace.com/lovebohemians" target="_blank">The Bohemians</a> / 下北沢Daisy Bar</p>
<p>大ざっぱにここ数年をまとめると、<br />
(200?)・・Strokes, Libertines・・(2007)・・Justice, Battles・・Underworld, Daftpunk, DexPistols, <a href="http://www.jetsetrecords.net/jp/product/711003198602" target="_blank">BangGangDeejays</a>・・(2008)・・RATM・・<a href="http://www.myspace.com/thetingtings" target="_blank">TingTings</a>, <a href="http://www.myspace.com/theteenagers" target="_blank">Teenagers</a>, Modular, Kitsune系・・<a href="http://xc528.eccart.jp/x859/item_detail/itemCode,gMODCD080/" target="_blank">BangGangDeejays 2nd</a>・・<a href="http://www.myspace.com/80kidz" target="_blank">80Kidz</a>, <a href="http://www.myspace.com/thelowbrows" target="_blank">Lowbrows</a>, <a href="http://www.myspace.com/dexpistolstokyo" target="_blank">DexPistols</a>・・<a href="http://www.myspace.com/lovebohemians" target="_blank">Bohemians</a><br />
という感じ。</p>
<p>2曲挙げなさいと言われたら<br />
<a href="http://jp.youtube.com/watch?v=PGvWuQUbShs" target="_blank">Stay The Same (80kidz Remix) / Autokratz</a><br />
<a href="http://jp.youtube.com/watch?v=1mu9oCXGpX4" target="_blank">Dirty Liberty Baby Please -THE BOHEMIANS</a></p>
<p>今年も仕事頑張ってたくさんライブ行きます。どうぞよろしくお願いします。</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/sooheinetblog?a=fpLtSschYs8:TDJT972cP2g:spdCosxkSQE"><img src="http://feeds.feedburner.com/~ff/sooheinetblog?d=spdCosxkSQE" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sooheinetblog?a=fpLtSschYs8:TDJT972cP2g:OAQBO0PjnPA"><img src="http://feeds.feedburner.com/~ff/sooheinetblog?d=OAQBO0PjnPA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sooheinetblog?a=fpLtSschYs8:TDJT972cP2g:2V2C0W9ye1I"><img src="http://feeds.feedburner.com/~ff/sooheinetblog?i=fpLtSschYs8:TDJT972cP2g:2V2C0W9ye1I" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/sooheinetblog/~4/fpLtSschYs8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://soohei.net/blog/archives/2009/01/05022233.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://soohei.net/blog/archives/2009/01/05022233.html</feedburner:origLink></item>
		<item>
		<title>ProcessingでWebカメラ (Windows)</title>
		<link>http://feedproxy.google.com/~r/sooheinetblog/~3/hbDrZV-N_XM/05022205.html</link>
		<comments>http://soohei.net/blog/archives/2009/01/05022205.html#comments</comments>
		<pubDate>Sun, 04 Jan 2009 17:22:05 +0000</pubDate>
		<dc:creator>soohei</dc:creator>
				<category><![CDATA[Processing]]></category>

		<guid isPermaLink="false">http://soohei.net/blog/?p=189</guid>
		<description>ちょうどProcessingが1.0になった頃に
Processingを1週間くらい触っていて、
Windows(xp)でWebカメラを使おうとしたら
相変わらず素直には動かなかった。Macは最初から何も問題なし。
WI [...]</description>
			<content:encoded><![CDATA[<p>ちょうどProcessingが1.0になった頃に<br />
Processingを1週間くらい触っていて、<br />
Windows(xp)でWebカメラを使おうとしたら<br />
相変わらず素直には動かなかった。Macは最初から何も問題なし。</p>
<p>WINVDIG 1.01 をインストール<br />
(最新版ではなく、1.01である必要がある)<br />
<a href="http://www.eden.net.nz/7/20071008/" target="_blank">http://www.eden.net.nz/7/20071008/</a></p>
<p><span id="more-189"></span>ほぼ最小サンプル<br />
&#8211;</p>
<pre>
//ライブラリの取り込み
import processing.video.*;
//キャプチャする映像のオブジェクトを用意
Capture video;
int videoW = 120;
int videoH = 90;
int attachX;
int attachY;
int attachW;
int attachH;

void setup() {
  size(800, 600, P2D);
  //キャプチャする映像の設定
  video = new Capture(this, videoW, videoH, 24);
  attachW = height / 3 * 4;
  attachH = height;
  attachX = - (attachW - width) / 2;
  attachY = - (attachH - height) / 2;
}

void draw() {
 if (video.available()) {
    video.read();
    //映像を画面に配置

    image(video, attachX, attachY, attachW, attachH);
 }
}
</pre>
<p>&#8211;</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/sooheinetblog?a=hbDrZV-N_XM:VuDIzLG_mo0:spdCosxkSQE"><img src="http://feeds.feedburner.com/~ff/sooheinetblog?d=spdCosxkSQE" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sooheinetblog?a=hbDrZV-N_XM:VuDIzLG_mo0:OAQBO0PjnPA"><img src="http://feeds.feedburner.com/~ff/sooheinetblog?d=OAQBO0PjnPA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sooheinetblog?a=hbDrZV-N_XM:VuDIzLG_mo0:2V2C0W9ye1I"><img src="http://feeds.feedburner.com/~ff/sooheinetblog?i=hbDrZV-N_XM:VuDIzLG_mo0:2V2C0W9ye1I" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/sooheinetblog/~4/hbDrZV-N_XM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://soohei.net/blog/archives/2009/01/05022205.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://soohei.net/blog/archives/2009/01/05022205.html</feedburner:origLink></item>
		<item>
		<title>CARE</title>
		<link>http://feedproxy.google.com/~r/sooheinetblog/~3/e6vSttxfH-g/29224545.html</link>
		<comments>http://soohei.net/blog/archives/2008/11/29224545.html#comments</comments>
		<pubDate>Sat, 29 Nov 2008 13:45:45 +0000</pubDate>
		<dc:creator>soohei</dc:creator>
				<category><![CDATA[Diary]]></category>

		<guid isPermaLink="false">http://soohei.net/blog/?p=184</guid>
		<description>・自転車
念願のロード。ANCHORでマット黒にしてもらいました。
前のチャリが何度かパンクした時、
「2週間に1度は空気入れてあげないと、もうボロボロだよ」
と自転車屋さんに行くたびに怒られました。
その心、大事にしま [...]</description>
			<content:encoded><![CDATA[<p>・自転車<br />
念願のロード。ANCHORでマット黒にしてもらいました。<br />
前のチャリが何度かパンクした時、<br />
「2週間に1度は空気入れてあげないと、もうボロボロだよ」<br />
と自転車屋さんに行くたびに怒られました。<br />
その心、大事にします。</p>
<p>・VINES<br />
<a href="http://soohei.net/blog/archives/2008/08/23202555.html">FUJIROCK08</a>で奇跡の来日を果たすも、<br />
金曜だったので見れなかった<a href="http://www.myspace.com/thevines" target="_blank">VINES</a>。<br />
さらに奇跡の単独ライブが決まり、ばっちりチケット買ったのだけれど、<br />
やはりキャンセルに… がんばれ！！</p>
<p>・Mac Book Pro<br />
最近忙しい波が来て、ずっと会社のPCで作業してて、<br />
昨日 さぁ Macでも開発やるぞ と思ったら、キーボード、トラックパッドが反応しなくなってた。<br />
仕事の谷間的に、今しかないと思い Apple Store 渋谷へ行くと、<br />
ジニアスバーが昼の時点で予約一杯。<br />
Pro Care の資格を買って、一番前に割り込ませてもらい、<br />
「修理1週間です、あ、プロケアの方ですね。12/2にできます。」<br />
という優遇を受け、修理に預けた。修理代も AppleCare で保証内。<br />
お金をかけた分、手厚い。</p>
<p>※追記 : しかも今日(11/30)に修理終わった。</p>
<p>・Mighty Mouse<br />
会社で使っていた Mighty Mouse。<br />
締め切り近くなると、力んで手に汗かくみたいで、<br />
そのたびにホイールが悪影響受けて利かなくなり、忙しさが増す。<br />
<a href="http://support.apple.com/kb/HT1537?viewlocale=ja_JP&#038;locale=ja_JP" target="_blank">掃除</a>しても直らなくなってきたので、乗り換えた。<br />
MSの一番スタンダードなやつが、一番良かった。</p>
<p><a href="http://www.amazon.co.jp/exec/obidos/ASIN/B00008B4BP/sooheinet55-22/ref=nosim/" name="amazletlink" target="_blank"><img src="http://ecx.images-amazon.com/images/I/112FTR55JNL._SL160_.jpg" alt="Microsoft Wheel Mouse Optical" style="border: none;" /></a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/sooheinetblog?a=e6vSttxfH-g:Rqk0MNZ1MMo:spdCosxkSQE"><img src="http://feeds.feedburner.com/~ff/sooheinetblog?d=spdCosxkSQE" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sooheinetblog?a=e6vSttxfH-g:Rqk0MNZ1MMo:OAQBO0PjnPA"><img src="http://feeds.feedburner.com/~ff/sooheinetblog?d=OAQBO0PjnPA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sooheinetblog?a=e6vSttxfH-g:Rqk0MNZ1MMo:2V2C0W9ye1I"><img src="http://feeds.feedburner.com/~ff/sooheinetblog?i=e6vSttxfH-g:Rqk0MNZ1MMo:2V2C0W9ye1I" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/sooheinetblog/~4/e6vSttxfH-g" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://soohei.net/blog/archives/2008/11/29224545.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://soohei.net/blog/archives/2008/11/29224545.html</feedburner:origLink></item>
	</channel>
</rss>
