<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	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"
	>

<channel>
	<title>映像とその周辺</title>
	<atom:link href="http://www.kalium.net/image/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.kalium.net/image</link>
	<description></description>
	<pubDate>Fri, 05 Sep 2008 03:43:21 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
	<language>ja</language>
			<item>
		<title>_onCastAddedで並列処理をさせる</title>
		<link>http://www.kalium.net/image/2008/09/05/_oncastadded%e3%81%a7%e4%b8%a6%e5%88%97%e5%87%a6%e7%90%86%e3%82%92%e3%81%95%e3%81%9b%e3%82%8b/</link>
		<comments>http://www.kalium.net/image/2008/09/05/_oncastadded%e3%81%a7%e4%b8%a6%e5%88%97%e5%87%a6%e7%90%86%e3%82%92%e3%81%95%e3%81%9b%e3%82%8b/#comments</comments>
		<pubDate>Fri, 05 Sep 2008 03:43:21 +0000</pubDate>
		<dc:creator>araken</dc:creator>
		
		<category><![CDATA[Flash]]></category>

		<category><![CDATA[Progression]]></category>

		<guid isPermaLink="false">http://www.kalium.net/image/?p=705</guid>
		<description><![CDATA[Progressionではまったので、メモ。
CastSpriteクラスなどの_onCastAdded内で、並列処理をさせる方法。例えば、複数個生成したSprite, Shapeを同時にTweenerで変化させる場合など [...]]]></description>
			<content:encoded><![CDATA[<p>Progressionではまったので、メモ。</p>
<p>CastSpriteクラスなどの_onCastAdded内で、並列処理をさせる方法。例えば、複数個生成したSprite, Shapeを同時にTweenerで変化させる場合など。</p>
<p>ポイントは、ParallelList自体を実行するのではなく、ParallelListのインスタンスをaddCommandする必要がある。addCommandしないと、期待した動作が起きない。とくに、_onCastRemovedのときに。</p>
<pre name="code" class="actionscript">

		protected override function _onCastAdded():void {
		    var list:ParallelList = new ParallelList();

		    for each( var s:Shape in _boxies ){
                list.addCommand( new DoTweener( s, {alpha:1.0, time:3.0, transition:&quot;easeInOutSine&quot;} ) );
		    }
		    addCommand( list );
		}
</pre>
<p>Progressionは、確かに必需品になる様な気がする。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kalium.net/image/2008/09/05/_oncastadded%e3%81%a7%e4%b8%a6%e5%88%97%e5%87%a6%e7%90%86%e3%82%92%e3%81%95%e3%81%9b%e3%82%8b/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Progression3.0のdeploy/index.htmlがおかしい</title>
		<link>http://www.kalium.net/image/2008/09/05/progression30%e3%81%aedeployindexhtml%e3%81%8c%e3%81%8a%e3%81%8b%e3%81%97%e3%81%84/</link>
		<comments>http://www.kalium.net/image/2008/09/05/progression30%e3%81%aedeployindexhtml%e3%81%8c%e3%81%8a%e3%81%8b%e3%81%97%e3%81%84/#comments</comments>
		<pubDate>Thu, 04 Sep 2008 18:00:42 +0000</pubDate>
		<dc:creator>araken</dc:creator>
		
		<category><![CDATA[Flash]]></category>

		<category><![CDATA[Progression]]></category>

		<guid isPermaLink="false">http://www.kalium.net/image/?p=702</guid>
		<description><![CDATA[Launching “Progression3″ in Apple Store, Ginzaに行ってきた。
早速、Progressionの素晴らしさに惹かれ、いじっていたのだが、パブリッシュされたindex.htmlがう [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://event.progression.jp/">Launching “Progression3″ in Apple Store, Ginza</a>に行ってきた。</p>
<p>早速、Progressionの素晴らしさに惹かれ、いじっていたのだが、パブリッシュされたindex.htmlがうまく動かない。最新のFlash Playerが入っていても、「最新」を入れろという画面に。</p>
<p>いろいろ探ってみて、こういう風に書き換えたらswfが表示されるようになった。</p>
<pre name="code" class="javascript">
&lt;script type=&quot;text/javascript&quot;&gt;
	// &lt;![CDATA[

	var prog = new Progression( &quot;9.0.45.0&quot; );
	prog.onLoad = function() {
		var so = new SWFObject( &quot;preloader.swf&quot;, &quot;external_flashcontent&quot;, &quot;640&quot;, &quot;480&quot;,&quot;9.0.45.0&quot; );//判定するバージョン情報を追記
		so.addParam( &quot;wmode&quot;, &quot;window&quot; );
		so.addParam( &quot;allowFullScreen&quot;, &quot;false&quot; );
		so.addParam( &quot;allowScriptAccess&quot;, &quot;samedomain&quot; );
		so.write( &quot;flashcontent&quot; );
	};
	prog.init();

	// ]]&gt;
&lt;/script&gt;
</pre>
<p>この現象は、自分だけだろうなのか。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kalium.net/image/2008/09/05/progression30%e3%81%aedeployindexhtml%e3%81%8c%e3%81%8a%e3%81%8b%e3%81%97%e3%81%84/feed/</wfw:commentRss>
		</item>
		<item>
		<title>asでコンポーネントのエフェクト</title>
		<link>http://www.kalium.net/image/2008/09/04/as%e3%81%a7%e3%82%b3%e3%83%b3%e3%83%9d%e3%83%bc%e3%83%8d%e3%83%b3%e3%83%88%e3%81%ae%e3%82%a8%e3%83%95%e3%82%a7%e3%82%af%e3%83%88/</link>
		<comments>http://www.kalium.net/image/2008/09/04/as%e3%81%a7%e3%82%b3%e3%83%b3%e3%83%9d%e3%83%bc%e3%83%8d%e3%83%b3%e3%83%88%e3%81%ae%e3%82%a8%e3%83%95%e3%82%a7%e3%82%af%e3%83%88/#comments</comments>
		<pubDate>Thu, 04 Sep 2008 06:43:03 +0000</pubDate>
		<dc:creator>araken</dc:creator>
		
		<category><![CDATA[Flash]]></category>

		<category><![CDATA[flex]]></category>

		<guid isPermaLink="false">http://www.kalium.net/image/?p=698</guid>
		<description><![CDATA[asでコンポーネントのエフェクトを指定する方法
例えば、myComponentというコンポーネントのshowEffectにFadeエフェクトを指定する方法は、こんな感じ。


    var fade:Fade = ne [...]]]></description>
			<content:encoded><![CDATA[<p>asでコンポーネントのエフェクトを指定する方法</p>
<p>例えば、myComponentというコンポーネントのshowEffectにFadeエフェクトを指定する方法は、こんな感じ。</p>
<pre name="code" class="actionscript">

    var fade:Fade = new Fade();
    fade.alphaFrom = 0.0;
    fade.alphaTo = 1.0;
    fade.duration = 400;

    myComponent.setStyle(&#039;showEffect&#039;, fade );
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.kalium.net/image/2008/09/04/as%e3%81%a7%e3%82%b3%e3%83%b3%e3%83%9d%e3%83%bc%e3%83%8d%e3%83%b3%e3%83%88%e3%81%ae%e3%82%a8%e3%83%95%e3%82%a7%e3%82%af%e3%83%88/feed/</wfw:commentRss>
		</item>
		<item>
		<title>FIT2008@SFC</title>
		<link>http://www.kalium.net/image/2008/09/01/fit2008sfc/</link>
		<comments>http://www.kalium.net/image/2008/09/01/fit2008sfc/#comments</comments>
		<pubDate>Mon, 01 Sep 2008 01:29:39 +0000</pubDate>
		<dc:creator>araken</dc:creator>
		
		<category><![CDATA[お知らせ]]></category>

		<category><![CDATA[全般]]></category>

		<guid isPermaLink="false">http://www.kalium.net/image/?p=696</guid>
		<description><![CDATA[9/2のFIT2008(第7回情報科学技術フォーラム)@SFCにて、池本さんの共同講演者として登壇予定。足を運ばれる方は、ぜひお越しを。
FIT2008
［15:00-15:50］講演3「ユビキタスミュージアム−位置情報 [...]]]></description>
			<content:encoded><![CDATA[<p>9/2のFIT2008(第7回情報科学技術フォーラム)@SFCにて、池本さんの共同講演者として登壇予定。足を運ばれる方は、ぜひお越しを。<br />
<a href="https://secure1.gakkai-web.net/gakkai/fit/program/html/schedule/sche_index.html">FIT2008</a></p>
<blockquote><p>［15:00-15:50］講演3「ユビキタスミュージアム−位置情報システムの活用を含めて−」</p>
<p>［講演概要］<br />
2002年尾道市からスタートした携帯電話を活用した街歩き観光システム「ユビキタスミュージアム（どこでも博物館）」の企画コンセプト，システム概要， これまでの活動，最新状況を紹介する．企画コンセプトとして掲げる，「都市経験のブロードバンド化」「まちの記憶と経験のアーカイブ化」「暗黙知を編集す るソーシャルウェア」に基づくシステムの説明を前半に行い，中盤で下諏訪，伊豆，丸の内などで展開してきたGPS対応のユビキタスミュージアムの変遷を紹 介する．最後に，丸の内で展開する防災・防犯などでの応用的な活用やアプリやFlashなどを活用した地図表示システムとの連動，タッチパネルタイプのデ バイスによる新たな地図ベースの情報環境提供システムの紹介を行う．</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.kalium.net/image/2008/09/01/fit2008sfc/feed/</wfw:commentRss>
		</item>
		<item>
		<title>CakePHP1.2でケータイ向けセッション管理</title>
		<link>http://www.kalium.net/image/2008/08/29/cakephp12%e3%81%a7%e3%82%b1%e3%83%bc%e3%82%bf%e3%82%a4%e5%90%91%e3%81%91%e3%82%bb%e3%83%83%e3%82%b7%e3%83%a7%e3%83%b3%e7%ae%a1%e7%90%86/</link>
		<comments>http://www.kalium.net/image/2008/08/29/cakephp12%e3%81%a7%e3%82%b1%e3%83%bc%e3%82%bf%e3%82%a4%e5%90%91%e3%81%91%e3%82%bb%e3%83%83%e3%82%b7%e3%83%a7%e3%83%b3%e7%ae%a1%e7%90%86/#comments</comments>
		<pubDate>Fri, 29 Aug 2008 05:24:33 +0000</pubDate>
		<dc:creator>araken</dc:creator>
		
		<category><![CDATA[PHP, PostgreSQL]]></category>

		<category><![CDATA[CakePHP]]></category>

		<guid isPermaLink="false">http://www.kalium.net/image/?p=685</guid>
		<description><![CDATA[ケータイではCookieを使えないので、通常のセッション管理ができない。URLにセッションIDを埋め込むなどの対策が必要になる。1.2での設定方法をまとめてみる。
/m/以下をケータイ用に振り分けことを前提に。
app/config/core.php


//Configure::write(&#039;Session.save&#039;, &#039;php&#039;);
Configure::write(&#039;Session.save&#039;, &#039;usersession&#039;); //こちらに修正

セッションを扱う箇所を独自コードに置き換えることができる。コードは、app/config/usersession.phpに記述する。
app/config/usersession.php
新規で作成。


&#60;?php
if (!isset($_SESSION)) {
	if (function_exists(&#039;ini_set&#039;)) {
		if(defined(&#039;MOBILE&#039;)){ //ケータイ用だったら
			ini_set(&#039;session.use_trans_sid&#039;, 1); //GETリクエストにセッションIDを自動的に埋め込む設定を有効
			ini_set(&#039;session.use_cookies&#039;, 0);   //Cookieの使用を無効
		}else{
			ini_set(&#039;session.use_trans_sid&#039;, 0);  //無効
			ini_set(&#039;session.use_cookies&#039;, 1);    //有効
		}
	}
}
?&#62;

MOBILEという変数は、別クラスで設定する
app_controller.php


&#60;?php
class AppController extends Controller {
	var $needAuth = false;
	var $helpers = array(&#039;html&#039;, &#039;form&#039;, &#039;time&#039;);

	function beforeFilter()
	{
	//ケータイ用の振り分け
	if(isset($this-&#62;params[&#039;prefix&#039;])){
		$this-&#62;layout = &#039;mobile_&#039;.$this-&#62;layout;
	}
	$auth = $this-&#62;Session-&#62;read( &#039;auth&#039; );
	$this-&#62;set( &#34;auth&#34;, $auth );

	if( $this-&#62;needAuth ){
		if( empty( $auth ) ){
			if(defined(&#039;MOBILE&#039;)){ //ケータイへの振り分けがされていたら、ケータイ向けのログイン画面へ
				$this-&#62;redirect( &#34;/m/users/login&#34; );
			}else{
				$this-&#62;redirect( &#34;/users/login&#34; );
			}
			return ;
		}
	}
	if(defined(&#039;MOBILE&#039;)){ //ケータイ用にSJISに文字コード変換
		mb_convert_variables(&#039;UTF-8&#039;,&#039;SJIS-win&#039;,$this-&#62;data);
	}

	ob_start(); //文字コード変換用の処理開始
	parent::beforeFilter();
}

function __construct()
{
// /m/がURLの中にあった場合、MOBILE変数を設定。このフラグを各クラスで判別
	if(ereg(&#34;^/m/&#34;,$_SERVER[&#039;REQUEST_URI&#039;])){ [...]]]></description>
			<content:encoded><![CDATA[<p>ケータイではCookieを使えないので、通常のセッション管理ができない。URLにセッションIDを埋め込むなどの対策が必要になる。1.2での設定方法をまとめてみる。</p>
<p>/m/以下をケータイ用に振り分けことを前提に。</p>
<h4>app/config/core.php</h4>
<pre name="code" class="php">

//Configure::write(&#039;Session.save&#039;, &#039;php&#039;);
Configure::write(&#039;Session.save&#039;, &#039;usersession&#039;); //こちらに修正
</pre>
<p>セッションを扱う箇所を独自コードに置き換えることができる。コードは、<code>app/config/usersession.phpに</code>記述する。</p>
<h4>app/config/usersession.php</h4>
<p>新規で作成。</p>
<pre name="code" class="php">

&lt;?php
if (!isset($_SESSION)) {
	if (function_exists(&#039;ini_set&#039;)) {
		if(defined(&#039;MOBILE&#039;)){ //ケータイ用だったら
			ini_set(&#039;session.use_trans_sid&#039;, 1); //GETリクエストにセッションIDを自動的に埋め込む設定を有効
			ini_set(&#039;session.use_cookies&#039;, 0);   //Cookieの使用を無効
		}else{
			ini_set(&#039;session.use_trans_sid&#039;, 0);  //無効
			ini_set(&#039;session.use_cookies&#039;, 1);    //有効
		}
	}
}
?&gt;
</pre>
<p>MOBILEという変数は、別クラスで設定する</p>
<h4>app_controller.php</h4>
<pre name="code" class="php">

&lt;?php
class AppController extends Controller {
	var $needAuth = false;
	var $helpers = array(&#039;html&#039;, &#039;form&#039;, &#039;time&#039;);

	function beforeFilter()
	{
	//ケータイ用の振り分け
	if(isset($this-&gt;params[&#039;prefix&#039;])){
		$this-&gt;layout = &#039;mobile_&#039;.$this-&gt;layout;
	}
	$auth = $this-&gt;Session-&gt;read( &#039;auth&#039; );
	$this-&gt;set( &quot;auth&quot;, $auth );

	if( $this-&gt;needAuth ){
		if( empty( $auth ) ){
			if(defined(&#039;MOBILE&#039;)){ //ケータイへの振り分けがされていたら、ケータイ向けのログイン画面へ
				$this-&gt;redirect( &quot;/m/users/login&quot; );
			}else{
				$this-&gt;redirect( &quot;/users/login&quot; );
			}
			return ;
		}
	}
	if(defined(&#039;MOBILE&#039;)){ //ケータイ用にSJISに文字コード変換
		mb_convert_variables(&#039;UTF-8&#039;,&#039;SJIS-win&#039;,$this-&gt;data);
	}

	ob_start(); //文字コード変換用の処理開始
	parent::beforeFilter();
}

function __construct()
{
// /m/がURLの中にあった場合、MOBILE変数を設定。このフラグを各クラスで判別
	if(ereg(&quot;^/m/&quot;,$_SERVER[&#039;REQUEST_URI&#039;])){ // もし、URLが/&lt;em&gt;servicename&lt;/em&gt;/m/だったら、&quot;^/&lt;em&gt;servicename&lt;/em&gt;/m/&quot;
		define(&#039;MOBILE&#039;,1);
	}

	parent::__construct();
}

function afterFilter()
{
	parent::afterFilter();
	$out = ob_get_clean();

	if(defined(&#039;MOBILE&#039;)){
		$out = mb_convert_encoding($out,&#039;SJIS-win&#039;,&#039;UTF-8&#039;); //ケータイからの入力をSJISからUTF-8に変換
	}

	echo $out;
}

//redirect メソッド書き換え
function redirect($url,$status = null)
{
	if(defined(&#039;MOBILE&#039;)){
		$url = $url.&quot;?&quot;.session_name().&quot;=&quot;.session_id(); //転送先URLにセッションIDを自動付加
	}

		parent::redirect($url,$status);
	}
}
?&gt;
</pre>
<h4>POSTのフォーム</h4>
<p>GETでは、自動的にセッションIDが埋め込まれるが、POSTではセッションIDの埋め込みを明示的に行う必要がある。&lt;form&gt;で以下のように記述する。</p>
<pre name="code" class="php">

&lt;form action=&quot;foo?&lt;?php session_name().&quot;=&quot;.session_id();?&gt;&quot; method=&quot;POST&quot;&gt;
</pre>
<p>参考サイト:</p>
<ul>
<li><a href="http://cakephp.jp/modules/newbb/viewtopic.php?post_id=1398&#038;topic_id=751&#038;forum=3" target="_blank">http://cakephp.jp/modules/newbb/viewtopic.php?post_id=1398&#038;topic_id=751&#038;forum=3</a></li>
<li><a href="http://www.okushin.co.jp/kodanuki_note/2008/08/cakephp-1.html" target="_blank">http://www.okushin.co.jp/kodanuki_note/2008/08/cakephp-1.html</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.kalium.net/image/2008/08/29/cakephp12%e3%81%a7%e3%82%b1%e3%83%bc%e3%82%bf%e3%82%a4%e5%90%91%e3%81%91%e3%82%bb%e3%83%83%e3%82%b7%e3%83%a7%e3%83%b3%e7%ae%a1%e7%90%86/feed/</wfw:commentRss>
		</item>
		<item>
		<title>玄箱に入れたFedora8のサービス一覧とその設定</title>
		<link>http://www.kalium.net/image/2008/08/27/%e7%8e%84%e7%ae%b1%e3%81%ab%e5%85%a5%e3%82%8c%e3%81%9ffedora8%e3%81%ae%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9%e4%b8%80%e8%a6%a7%e3%81%a8%e3%81%9d%e3%81%ae%e8%a8%ad%e5%ae%9a/</link>
		<comments>http://www.kalium.net/image/2008/08/27/%e7%8e%84%e7%ae%b1%e3%81%ab%e5%85%a5%e3%82%8c%e3%81%9ffedora8%e3%81%ae%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9%e4%b8%80%e8%a6%a7%e3%81%a8%e3%81%9d%e3%81%ae%e8%a8%ad%e5%ae%9a/#comments</comments>
		<pubDate>Wed, 27 Aug 2008 05:18:59 +0000</pubDate>
		<dc:creator>araken</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<category><![CDATA[fedora8]]></category>

		<category><![CDATA[玄箱]]></category>

		<guid isPermaLink="false">http://www.kalium.net/image/?p=682</guid>
		<description><![CDATA[#/sbin/chkconfig --list
ConsoleKit      0:off   1:off   2:on    3:off   4:on    5:on    6:off
NetworkManager   [...]]]></description>
			<content:encoded><![CDATA[<pre>#/sbin/chkconfig --list
ConsoleKit      0:off   1:off   2:on    3:off   4:on    5:on    6:off
NetworkManager  0:off   1:off   2:on    3:off   4:on    5:on    6:off
anacron         0:off   1:off   2:on    3:on    4:on    5:on    6:off
atd             0:off   1:off   2:off   3:on    4:on    5:on    6:off
autofs          0:off   1:off   2:off   3:on    4:on    5:on    6:off
avahi-daemon    0:off   1:off   2:off   3:on    4:on    5:on    6:off
bluetooth       0:off   1:off   2:on    3:off   4:on    5:on    6:off
cpuspeed        0:off   1:on    2:on    3:off   4:on    5:on    6:off
crond           0:off   1:off   2:on    3:on    4:on    5:on    6:off
cups            0:off   1:off   2:on    3:off   4:on    5:on    6:off
dund            0:off   1:off   2:off   3:off   4:off   5:off   6:off
firstboot       0:off   1:off   2:off   3:on    4:off   5:on    6:off
haldaemon       0:off   1:off   2:off   3:on    4:on    5:on    6:off
httpd           0:off   1:off   2:on    3:on    4:on    5:off   6:off
ip6tables       0:off   1:off   2:off   3:off   4:off   5:off   6:off
iptables        0:off   1:off   2:on    3:on    4:on    5:on    6:off
irda            0:off   1:off   2:off   3:off   4:off   5:off   6:off
irqbalance      0:off   1:off   2:off   3:off   4:off   5:off   6:off
kudzu           0:off   1:off   2:off   3:off   4:off   5:off   6:off
mcstrans        0:off   1:off   2:off   3:off   4:off   5:off   6:off
mdmonitor       0:off   1:off   2:off   3:off   4:off   5:off   6:off
messagebus      0:off   1:off   2:off   3:on    4:on    5:on    6:off
multipathd      0:off   1:off   2:off   3:off   4:off   5:off   6:off
mysqld          0:off   1:off   2:on    3:on    4:on    5:off   6:off
netconsole      0:off   1:off   2:off   3:off   4:off   5:off   6:off
netfs           0:off   1:off   2:off   3:off   4:off   5:off   6:off
netplugd        0:off   1:off   2:off   3:off   4:off   5:off   6:off
network         0:off   1:off   2:on    3:on    4:on    5:on    6:off
nfs             0:off   1:off   2:off   3:off   4:off   5:off   6:off
nfslock         0:off   1:off   2:off   3:off   4:off   5:off   6:off
nscd            0:off   1:off   2:off   3:off   4:off   5:off   6:off
ntpd            0:off   1:off   2:off   3:off   4:off   5:off   6:off
pand            0:off   1:off   2:off   3:off   4:off   5:off   6:off
pcscd           0:off   1:off   2:on    3:off   4:on    5:on    6:off
psacct          0:off   1:off   2:off   3:off   4:off   5:off   6:off
rdisc           0:off   1:off   2:off   3:off   4:off   5:off   6:off
rpcbind         0:off   1:off   2:off   3:off   4:off   5:off   6:off
rpcgssd         0:off   1:off   2:off   3:off   4:off   5:off   6:off
rpcidmapd       0:off   1:off   2:off   3:off   4:off   5:off   6:off
rpcsvcgssd      0:off   1:off   2:off   3:off   4:off   5:off   6:off
saslauthd       0:off   1:off   2:off   3:off   4:off   5:off   6:off
sendmail        0:off   1:off   2:off   3:off   4:off   5:off   6:off
smartd          0:off   1:off   2:off   3:off   4:off   5:off   6:off
sshd            0:off   1:off   2:on    3:on    4:on    5:on    6:off
syslog-ng       0:off   1:off   2:on    3:on    4:on    5:on    6:off
udev-post       0:off   1:off   2:off   3:off   4:off   5:off   6:off
vsftpd          0:off   1:off   2:off   3:off   4:off   5:off   6:off
wpa_supplicant  0:off   1:off   2:off   3:off   4:off   5:off   6:off
ypbind          0:off   1:off   2:off   3:off   4:off   5:off   6:off
yum-updatesd    0:off   1:off   2:on    3:on    4:on    5:on    6:off</pre>
<p>pcscdというサービスが悪さをして、ネットワーク接続がハングするという現象が。再起動後、速攻でプロセスを落とした。現在は、安定動作。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kalium.net/image/2008/08/27/%e7%8e%84%e7%ae%b1%e3%81%ab%e5%85%a5%e3%82%8c%e3%81%9ffedora8%e3%81%ae%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9%e4%b8%80%e8%a6%a7%e3%81%a8%e3%81%9d%e3%81%ae%e8%a8%ad%e5%ae%9a/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Loaderクラスで読込んだ画像をスムーズに拡大・縮小する</title>
		<link>http://www.kalium.net/image/2008/08/27/loader%e3%82%af%e3%83%a9%e3%82%b9%e3%81%a7%e8%aa%ad%e8%be%bc%e3%82%93%e3%81%a0%e7%94%bb%e5%83%8f%e3%82%92%e3%82%b9%e3%83%a0%e3%83%bc%e3%82%ba%e3%81%ab%e6%8b%a1%e5%a4%a7%e3%83%bb%e7%b8%ae%e5%b0%8f/</link>
		<comments>http://www.kalium.net/image/2008/08/27/loader%e3%82%af%e3%83%a9%e3%82%b9%e3%81%a7%e8%aa%ad%e8%be%bc%e3%82%93%e3%81%a0%e7%94%bb%e5%83%8f%e3%82%92%e3%82%b9%e3%83%a0%e3%83%bc%e3%82%ba%e3%81%ab%e6%8b%a1%e5%a4%a7%e3%83%bb%e7%b8%ae%e5%b0%8f/#comments</comments>
		<pubDate>Wed, 27 Aug 2008 05:10:10 +0000</pubDate>
		<dc:creator>araken</dc:creator>
		
		<category><![CDATA[Flash]]></category>

		<category><![CDATA[loader bitmap]]></category>

		<guid isPermaLink="false">http://www.kalium.net/image/?p=680</guid>
		<description><![CDATA[

loader:Loader



var bmp:Bitmap = Bitmap(loader.content);
bmp.smoothing = true;

contentがBitmap型になっているとは知らなかった。
]]></description>
			<content:encoded><![CDATA[<pre name="code" class="actionscript">

loader:Loader
</pre>
<pre name="code" class="actionscript">

var bmp:Bitmap = Bitmap(loader.content);
bmp.smoothing = true;
</pre>
<p>contentがBitmap型になっているとは知らなかった。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kalium.net/image/2008/08/27/loader%e3%82%af%e3%83%a9%e3%82%b9%e3%81%a7%e8%aa%ad%e8%be%bc%e3%82%93%e3%81%a0%e7%94%bb%e5%83%8f%e3%82%92%e3%82%b9%e3%83%a0%e3%83%bc%e3%82%ba%e3%81%ab%e6%8b%a1%e5%a4%a7%e3%83%bb%e7%b8%ae%e5%b0%8f/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Progression3　ラウンチイベント</title>
		<link>http://www.kalium.net/image/2008/08/18/progression3%e3%80%80%e3%83%a9%e3%82%a6%e3%83%b3%e3%83%81%e3%82%a4%e3%83%99%e3%83%b3%e3%83%88/</link>
		<comments>http://www.kalium.net/image/2008/08/18/progression3%e3%80%80%e3%83%a9%e3%82%a6%e3%83%b3%e3%83%81%e3%82%a4%e3%83%99%e3%83%b3%e3%83%88/#comments</comments>
		<pubDate>Mon, 18 Aug 2008 01:53:55 +0000</pubDate>
		<dc:creator>araken</dc:creator>
		
		<category><![CDATA[Flash]]></category>

		<category><![CDATA[イベント情報]]></category>

		<guid isPermaLink="false">http://www.kalium.net/image/2008/08/18/progression3%e3%80%80%e3%83%a9%e3%82%a6%e3%83%b3%e3%83%81%e3%82%a4%e3%83%99%e3%83%b3%e3%83%88/</guid>
		<description><![CDATA[Launching &#8220;Progression 3&#8243; in Apple Store, Ginza



日付
2008 年 9 月 4 日（木）


時間
開会 18:45 ～ 20:00　（開場  [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://event.progression.jp/">Launching &#8220;Progression 3&#8243; in Apple Store, Ginza</a></p>
<blockquote><table>
<tbody>
<tr>
<th>日付</th>
<td>2008 年 9 月 4 日（木）</td>
</tr>
<tr>
<th>時間</th>
<td>開会 18:45 ～ 20:00　（開場 18:30 ～）</td>
</tr>
<tr>
<th>定員</th>
<td>200 人　（座席 84 席）
						</td>
</tr>
<tr>
<th>入場料</th>
<td>無料</td>
</tr>
<tr>
<th>会場</th>
<td><a href="http://www.apple.com/jp/retail/ginza/">アップルストア銀座</a></td>
</tr>
</tbody>
</table>
</blockquote>
<p>Flexに対応していないので、まだ未着手ですが、気になるフレームワークです。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kalium.net/image/2008/08/18/progression3%e3%80%80%e3%83%a9%e3%82%a6%e3%83%b3%e3%83%81%e3%82%a4%e3%83%99%e3%83%b3%e3%83%88/feed/</wfw:commentRss>
		</item>
		<item>
		<title>中村 勇吾 曰く、</title>
		<link>http://www.kalium.net/image/2008/08/11/%e4%b8%ad%e6%9d%91-%e5%8b%87%e5%90%be-%e6%9b%b0%e3%81%8f%e3%80%81/</link>
		<comments>http://www.kalium.net/image/2008/08/11/%e4%b8%ad%e6%9d%91-%e5%8b%87%e5%90%be-%e6%9b%b0%e3%81%8f%e3%80%81/#comments</comments>
		<pubDate>Mon, 11 Aug 2008 01:06:17 +0000</pubDate>
		<dc:creator>araken</dc:creator>
		
		<category><![CDATA[イベント情報]]></category>

		<category><![CDATA[デザイン]]></category>

		<guid isPermaLink="false">http://www.kalium.net/image/2008/08/11/%e4%b8%ad%e6%9d%91-%e5%8b%87%e5%90%be-%e6%9b%b0%e3%81%8f%e3%80%81/</guid>
		<description><![CDATA[中村 勇吾 曰く、
The 266th Exhibition : NOW UPDATING&#8230;The Interactive Design of tha/Yugo Nakamura
ネットに解き放たれたプログラ [...]]]></description>
			<content:encoded><![CDATA[<p>中村 勇吾 曰く、</p>
<p><a href="http://www.dnp.co.jp/gallery/ggg/gki/g266/g266ki.html">The 266th Exhibition : NOW UPDATING&#8230;The Interactive Design of tha/Yugo Nakamura</a><br />
<blockquote>ネットに解き放たれたプログラムが、世界中のそれぞれの場所、それぞれの瞬間に、それぞれの来訪者との一期一会を重ねながら、ただ淡々と更新され続けていく。そこには、はじまりも、終わりも、存在せず、ただそれぞれの瞬間が連続するばかり。そんな感じが好きなんです。</p></blockquote>
<p>この感覚に共鳴する。</p>
<blockquote><table border="0" cellpadding="0" cellspacing="2" width="600">
<tbody>
<tr>
<td nowrap="nowrap" valign="top"><b>■ タイトル</b></td>
<td><img src="http://www.dnp.co.jp/gallery/image/shim.gif" alt="" height="2" width="5" /></td>
<td width="90%">ギンザ・グラフィック・ギャラリー第266回企画展<br />
NOW UPDATING…　THA ／ 中村勇吾のインタラクティブデザイン</td>
</tr>
<tr>
<td nowrap="nowrap" valign="top"><b>■ 会 期</b></td>
<td><img src="http://www.dnp.co.jp/gallery/image/shim.gif" alt="" height="2" width="5" /></td>
<td>2008年8月5日（火）− 8月28日(木）　<br />
日曜・祝祭日休館　11:00a.m.−7:00p.m.（土曜日は6:00p.m.まで）　入場無料</td>
</tr>
<tr>
<td nowrap="nowrap" valign="top"><b>■ 会 場</b></td>
<td><img src="http://www.dnp.co.jp/gallery/image/shim.gif" alt="" height="2" width="5" /></td>
<td>ギンザ・グラフィック・ギャラリー（ggg）<br />
〒104-0061　中央区銀座7−7−2　DNP銀座ビル</td>
</tr>
</tbody>
</table>
</blockquote>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kalium.net/image/2008/08/11/%e4%b8%ad%e6%9d%91-%e5%8b%87%e5%90%be-%e6%9b%b0%e3%81%8f%e3%80%81/feed/</wfw:commentRss>
		</item>
		<item>
		<title>finalizeの後に、dispatchEvent</title>
		<link>http://www.kalium.net/image/2008/08/09/finalize%e3%81%ae%e5%be%8c%e3%81%ab%e3%80%81dispatchevent/</link>
		<comments>http://www.kalium.net/image/2008/08/09/finalize%e3%81%ae%e5%be%8c%e3%81%ab%e3%80%81dispatchevent/#comments</comments>
		<pubDate>Sat, 09 Aug 2008 00:52:28 +0000</pubDate>
		<dc:creator>araken</dc:creator>
		
		<category><![CDATA[Flash]]></category>

		<category><![CDATA[thread]]></category>

		<guid isPermaLink="false">http://www.kalium.net/image/2008/08/09/finalize%e3%81%ae%e5%be%8c%e3%81%ab%e3%80%81dispatchevent/</guid>
		<description><![CDATA[MASDA » 非同期処理いろいろ
Threadを使っていろいろと処理した後に、続きの処理はイベントドリブンにしたいとか万が一あれば、EventDispatcherThreadを継承してdispatchEventする感じ [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.metaphor.co.jp/masuda/blog/?p=24">MASDA » 非同期処理いろいろ</a><br />
<blockquote>Threadを使っていろいろと処理した後に、続きの処理はイベントドリブンにしたいとか万が一あれば、EventDispatcherThreadを継承してdispatchEventする感じになると思われる。</p></blockquote>
<p>finalize処理をして、Threadを継承していないインスタンスに、処理を完了を通知するには、この方法が良いようだ。</p>
<p>それにしても、増田さんのドキュメントはまとまっていてためになる。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kalium.net/image/2008/08/09/finalize%e3%81%ae%e5%be%8c%e3%81%ab%e3%80%81dispatchevent/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
