<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
    <channel>
        <title>公開できないようなデザイン・プログラムのメモ帳：Design Remix SEED</title>
        <link>http://seed.d-remix.net/</link>
        <description>Design Remix SEEDは公開できないようなデザイン・プログラムのメモ帳です。</description>
        <language>ja</language>
        <copyright>Copyright 2008</copyright>
        <lastBuildDate>Mon, 18 Aug 2008 18:02:26 +0900</lastBuildDate>
        <generator>http://www.sixapart.com/movabletype/</generator>
        <docs>http://www.rssboard.org/rss-specification</docs>
        
        <item>
            <title>さらに高機能（へなちょこ）になった偽Mac OS X</title>
            <description><![CDATA[偽Macがさらに高機能になりました。<br />スタイルをちょこっと変更してランチャーがが動くようになりました。<br />動きのぎこちなさはご愛敬ということで。<br /><br />ちゃんとSafariもついています。検索だってできます。でもメニューは装飾なのでクリックしないでください。<br /><br />さあ！<br /><a target="_blank" href="http://newflow.heteml.jp/login/">偽Macはコチラ！！</a>（ちなみにIE系は対象外です。）<br /><br />-----------------------------------------------------------------------------------------<br />過去分<br /><br />一年前に作ったwebデスクトップをまたいじりはじめて偽Macを作ってみた。<br />（まだ作り途中・・・）<br /><br /><a target="_blank" href="http://newflow.heteml.jp/login/">偽Macはコチラ！！</a>（ちなみにIE系は対象外です。）<br /><br />というかMacもってないからデザインがわからない（笑）<br />だれかキャプチャくれたらうれしいな～～。<br /><br />追記：中のパスが間違ってて見られなくなってました。<br />]]></description>
            <link>http://seed.d-remix.net/2008/08/mac.html</link>
            <guid>http://seed.d-remix.net/2008/08/mac.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">CSS</category>
            
                <category domain="http://www.sixapart.com/ns/types#category">Javascript</category>
            
            
            <pubDate>Mon, 18 Aug 2008 18:02:26 +0900</pubDate>
        </item>
        
        <item>
            <title>Flashのz-indexを操作する方法</title>
            <description><![CDATA[プルダウンメニューを作る際にFlashとかぶってしまう場合がある。<br />なぜか通常の状態だとz-indexを操作してもFlashは背面に移動しない。<br /><br />そこで、Flashの位置を背面に移動する方法として以下の内容をobjectタグ内に追加する。<br /><br /><br />
<pre class="syntax-highlight"><span class="synIdentifier">&lt;</span>embed<span class="synIdentifier"> </span><span class="synType">src</span><span class="synIdentifier">=</span><span class="synConstant">"xxxx.swf"</span><span class="synIdentifier"> <b>wmode=</b></span><b><span class="synConstant">"transparent"</span></b><span class="synIdentifier"> /&gt;</span><br /><b><span class="synIdentifier">&lt;</span><span class="synStatement">param</span><span class="synIdentifier"> </span><span class="synType">name</span><span class="synIdentifier">=</span><span class="synConstant">"wmode"</span><span class="synIdentifier"> </span><span class="synType">value</span><span class="synIdentifier">=</span><span class="synConstant">"transparent"</span><span class="synIdentifier">/&gt;</span></b></pre> <br />これでも背面に移動しない場合はobjectタグのz-indexをマイナス等していじってみると良い。
]]></description>
            <link>http://seed.d-remix.net/2008/08/flashzindexwo.html</link>
            <guid>http://seed.d-remix.net/2008/08/flashzindexwo.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">CSS</category>
            
                <category domain="http://www.sixapart.com/ns/types#category">Flash</category>
            
            
                <category domain="http://www.sixapart.com/ns/types#tag">CSS</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">Flash</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">z-index</category>
            
            <pubDate>Wed, 13 Aug 2008 21:44:54 +0900</pubDate>
        </item>
        
        <item>
            <title>prototype.jsでフォーカス時に入力フォームを拡大する</title>
            <description><![CDATA[下記のソースを読み込むだけでサンプルのようなフォームにすることができます。<br />CSSは任意で設定してください。<br />（JSは適当に書いたのでもっと効率的な書き方があったらコメントで教えてください。）<br /><br /><a href="http://classmethod.jp/form/service/index.php" target="_blank">フォームサンプル</a>
<pre class="syntax-highlight"><span class="synStatement">window</span>.onload = <span class="synIdentifier">function</span>()<span class="synIdentifier">{</span>
	<span class="synIdentifier">var</span> Elements = <span class="synStatement">document</span>.getElementsByTagName(<span class="synConstant">"input"</span>);
	<span class="synStatement">for</span>(<span class="synIdentifier">var</span> i = 0; i &lt; Elements.length; i++)<span class="synIdentifier">{</span>

		<span class="synStatement">if</span>(Elements<span class="synIdentifier">[</span>i<span class="synIdentifier">]</span>.type == <span class="synConstant">"text"</span>)<span class="synIdentifier">{</span>
			<span class="synStatement">Event</span>.observe( Elements<span class="synIdentifier">[</span>i<span class="synIdentifier">]</span>, <span class="synConstant">'focus'</span>, BgChenge );
			<span class="synStatement">Event</span>.observe( Elements<span class="synIdentifier">[</span>i<span class="synIdentifier">]</span>, <span class="synConstant">'blur'</span>, BackBgChenge );
		<span class="synIdentifier">}</span>

	<span class="synIdentifier">}</span>
	
	Elements = <span class="synStatement">document</span>.getElementsByTagName(<span class="synConstant">"textarea"</span>);
	<span class="synStatement">for</span>(<span class="synIdentifier">var</span> i = 0; i &lt; Elements.length; i++)<span class="synIdentifier">{</span>

		<span class="synStatement">Event</span>.observe( Elements<span class="synIdentifier">[</span>i<span class="synIdentifier">]</span>, <span class="synConstant">'focus'</span>, TxBgChenge );
		<span class="synStatement">Event</span>.observe( Elements<span class="synIdentifier">[</span>i<span class="synIdentifier">]</span>, <span class="synConstant">'blur'</span>, TxBackBgChenge );	
	<span class="synIdentifier">}</span>

<span class="synIdentifier">}</span>

<span class="synIdentifier">function</span> BgChenge()<span class="synIdentifier">{</span>
	$(<span class="synIdentifier">this</span>).style.border = <span class="synConstant">"2px solid #888"</span>;
	$(<span class="synIdentifier">this</span>).style.padding = <span class="synConstant">"10px"</span>;
	$(<span class="synIdentifier">this</span>).style.fontSize = <span class="synConstant">"150%"</span>;
	$(<span class="synIdentifier">this</span>).style.fontWeight = <span class="synConstant">"600"</span>;
	$(<span class="synIdentifier">this</span>).style.position = <span class="synConstant">"relative"</span>;
	$(<span class="synIdentifier">this</span>).style.margin = <span class="synConstant">"-10px 0 -10px 0"</span>;

<span class="synIdentifier">}</span>
<span class="synIdentifier">function</span> BackBgChenge()<span class="synIdentifier">{</span>
	$(<span class="synIdentifier">this</span>).style.border = <span class="synConstant">"1px solid #bbb"</span>;
	$(<span class="synIdentifier">this</span>).style.padding = <span class="synConstant">"3px"</span>;
	$(<span class="synIdentifier">this</span>).style.fontSize = <span class="synConstant">"110%"</span>;
	$(<span class="synIdentifier">this</span>).style.fontWeight = <span class="synConstant">"400"</span>;
	$(<span class="synIdentifier">this</span>).style.position = <span class="synConstant">"static"</span>;
	$(<span class="synIdentifier">this</span>).style.margin = <span class="synConstant">"0"</span>;

<span class="synIdentifier">}</span>
<span class="synIdentifier">function</span> TxBgChenge()<span class="synIdentifier">{</span>
	$(<span class="synIdentifier">this</span>).style.border = <span class="synConstant">"2px solid #888"</span>;
	$(<span class="synIdentifier">this</span>).style.padding = <span class="synConstant">"10px"</span>;
	$(<span class="synIdentifier">this</span>).style.fontSize = <span class="synConstant">"130%"</span>;
	$(<span class="synIdentifier">this</span>).style.fontWeight = <span class="synConstant">"600"</span>;
	$(<span class="synIdentifier">this</span>).style.position = <span class="synConstant">"relative"</span>;
	$(<span class="synIdentifier">this</span>).style.margin = <span class="synConstant">"-8px 0 -8px 0"</span>;

<span class="synIdentifier">}</span>
<span class="synIdentifier">function</span> TxBackBgChenge()<span class="synIdentifier">{</span>
	$(<span class="synIdentifier">this</span>).style.border = <span class="synConstant">"1px solid #bbb"</span>;
	$(<span class="synIdentifier">this</span>).style.padding = <span class="synConstant">"3px"</span>;
	$(<span class="synIdentifier">this</span>).style.fontSize = <span class="synConstant">"110%"</span>;
	$(<span class="synIdentifier">this</span>).style.fontWeight = <span class="synConstant">"400"</span>;
	$(<span class="synIdentifier">this</span>).style.position = <span class="synConstant">"static"</span>;
	$(<span class="synIdentifier">this</span>).style.margin = <span class="synConstant">"0"</span>;

<span class="synIdentifier">}</span>
</pre>]]></description>
            <link>http://seed.d-remix.net/2008/08/prototypejs.html</link>
            <guid>http://seed.d-remix.net/2008/08/prototypejs.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">Javascript</category>
            
                <category domain="http://www.sixapart.com/ns/types#category">ユーザビリティ</category>
            
            
                <category domain="http://www.sixapart.com/ns/types#tag">prototype.js</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">フォーム</category>
            
            <pubDate>Fri, 08 Aug 2008 23:37:29 +0900</pubDate>
        </item>
        
        <item>
            <title>MT4でカテゴリーごとに表示内容を切り替える方法</title>
            <description><![CDATA[<h2 class="h2">ひとつのカテゴリーのみ表示を切り替える</h2>
<pre>MT4でカテゴリーごとに表示内容を切り替える方法は&lt;MTIfCategory&gt;というタグを利用します。<br /><b><br />&lt;MTIfCategory name="カテゴリー名"&gt;<br />任意のカテゴリーの場合表示される内容。<br />&lt;/MTIfCategory&gt;</b><br /><br />
<h2 class="h2">複数のカテゴリーのみ表示を切り替える</h2>
複数のカテゴリーで表示を切り替えたい場合は以下のやり方です。<br /><br /><b><br />&lt;MTIfCategory name="カテゴリー１"&gt;</b><br />カテゴリー１の場合に表示する内容<br /><b>&lt;MTElse&gt;<br />    &lt;MTIfCategory name="カテゴリー２"&gt;</b><br />        カテゴリー２の場合に表示する内容<br /><b>    &lt;/MTIfCategory&gt;<br />&lt;/MTIfCategory&gt;</b><br /><br /><br /><br /><br /></pre> ]]></description>
            <link>http://seed.d-remix.net/2008/06/mt4.html</link>
            <guid>http://seed.d-remix.net/2008/06/mt4.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">ムーバブルタイプ</category>
            
            
                <category domain="http://www.sixapart.com/ns/types#tag">MTタグ</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">ムーバブルタイプ</category>
            
            <pubDate>Sun, 22 Jun 2008 15:33:17 +0900</pubDate>
        </item>
        
        <item>
            <title>MTでも絵文字を使えるプラグイン</title>
            <description><![CDATA[<span class="mt-enclosure mt-enclosure-image" style="display: inline;"><img alt="Ci080617165441.jpg" src="http://seed.d-remix.net/2008/06/17/Ci080617165441-thumb-500x325.jpg" class="mt-image-none" style="" height="325" width="500" /></span><br /><a href="http://www.luckypines.com/mt/2008/05/mt.html" target="_blank">MTでも絵文字使おうぜプラグイン、アリマス</a>
<br />こちらで紹介されてるプラグインを利用することで、MTから絵文字を利用できるようになるそうです。<br /><br />以下が絵文字テスト<br /><img class="emoticon bleah" src="http://newflow.heteml.jp/mt4/mt-static/plugins/EmoticonButton/images/emoticons/bleah.gif" alt="bleah" style="border: 0pt none ;" /><img class="emoticon sun" src="http://newflow.heteml.jp/mt4/mt-static/plugins/EmoticonButton/images/emoticons/sun.gif" alt="sun" style="border: 0pt none ;" /><img class="emoticon wink" src="http://newflow.heteml.jp/mt4/mt-static/plugins/EmoticonButton/images/emoticons/wink.gif" alt="wink" style="border: 0pt none ;" /><img class="emoticon sign02" src="http://newflow.heteml.jp/mt4/mt-static/plugins/EmoticonButton/images/emoticons/sign02.gif" alt="sign02" style="border: 0pt none ;" /><img class="emoticon shock" src="http://newflow.heteml.jp/mt4/mt-static/plugins/EmoticonButton/images/emoticons/shock.gif" alt="shock" style="border: 0pt none ;" /><br /><br /> <div><br /></div><div><br /></div><div><br /></div><div><br /></div><div><br /></div><div><br /></div>]]></description>
            <link>http://seed.d-remix.net/2008/06/mt.html</link>
            <guid>http://seed.d-remix.net/2008/06/mt.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">ムーバブルタイプ</category>
            
            
                <category domain="http://www.sixapart.com/ns/types#tag">プラグイン</category>
            
            <pubDate>Tue, 17 Jun 2008 16:49:33 +0900</pubDate>
        </item>
        
        <item>
            <title>I LOVE RSSからはき出す配列JSを使ったブログパーツテスト</title>
            <description><![CDATA[下のリンクはI LOVE RSSの機能を使ってJavascriptで生成しています。<br />


<script type="text/javascript" src="http://love-rss.d-remix.net/rssjs.php?feed=http://love-rss.d-remix.net/atom.xml&code=2">
</script>
<script type="text/javascript">
var LoveRssData = "";
var LoveRssCount = 15;
if(LoveRssCount > LoveRssArray.length){
LoveRssCount = LoveRssArray.length
}
for(var i = 0; i < LoveRssCount; i++){
LoveRssData = LoveRssData + "<dd><a href='" + LoveRssArray[i][0] + "' style='display:block; padding:3px;'>" + LoveRssArray[i][1] + "</a></dd>";
}
document.open();
document.write("<dl>");
document.write("<dt style='margin:10px;'>" + LoveRSSTitle + "</dt>");
document.write(LoveRssData);
document.write("</dl>");
document.write("<p style='text-align:right;'><a href='#'>作る</a>&nbsp<a href='#'>見る</a></p>");
document.close();
</script>]]></description>
            <link>http://seed.d-remix.net/2008/06/i-love-rssjs.html</link>
            <guid>http://seed.d-remix.net/2008/06/i-love-rssjs.html</guid>
            
            
                <category domain="http://www.sixapart.com/ns/types#tag">I LOVE RSS</category>
            
            <pubDate>Sat, 07 Jun 2008 18:23:30 +0900</pubDate>
        </item>
        
        <item>
            <title>Webサイトの問題点を見つけ改善するプロセスメモ</title>
            <description><![CDATA[Web担当者として、webサイトの問題点を発見し、その対策を行うためのプロセスをメモ。<br /><br />まず、webサイトに何らかの問題が無ければ、webサイトを改善する必要はありませんね。<br />なぜwebサイトを改善する必要があるのかを考えてみる。<br /><br /><font style="font-size: 1.5625em;">コンバージョン率・数を増やしたい</font><br /><br />コンバージョンというのはwebサイトの目的によって色々と種類があるけれどこれがすべてに共通する最終的な目的じゃないだろうか。<br />（コンバージョンの後に成約につなげるというのはweb上でも完結できるが、営業側にシフトする場合もあるので、ここではweb上で可能な範囲に対して考えていく）<br /><br /><br /><br /><br /><font style="font-size: 1.5625em;">そこで、まずPDCAサイクルが大事になってくる。</font><br /><br /><ul><li>Plan ：目標を設定して、それを実現するためのプロセスを設計</li><li>Do&nbsp;&nbsp; ：計画を実施し、そのパフォーマンスを測定する</li><li>Check：測定結果を評価し、結果を目標と比較するなど分析を行う</li><li>Act&nbsp; ：プロセスの継続的改善・向上に必要な措置を実施する</li></ul>@IT：<a target="_blank" href="http://www.atmarkit.co.jp/aig/04biz/pdca.html">PDCAサイクル</a>より引用<br /><br /><br />上記のPDCAサイクルを継続的に行い、改善を行っていく。<br /><br /><br /><br /><br />]]></description>
            <link>http://seed.d-remix.net/2008/05/web.html</link>
            <guid>http://seed.d-remix.net/2008/05/web.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">Webマーケティング</category>
            
            
                <category domain="http://www.sixapart.com/ns/types#tag">プロセス</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">問題点</category>
            
            <pubDate>Mon, 19 May 2008 15:48:50 +0900</pubDate>
        </item>
        
        <item>
            <title>I LOVE RSSの基礎コーディングが終わった。</title>
            <description><![CDATA[PHPで中のシステムも作ろうと思ったんだけど、PHPで作るのもめんどくさくなったので、MTのカスタムフィールドを使ってやってみようかなってことで、MTで構築しています。<br /><br />まずは、基礎部分のコーディングが終了。<br />明日中にはエントリーでカラムが追加されるように設定したい。<br /><br /><span class="mt-enclosure mt-enclosure-image" style="display: inline;"><a href="http://love-rss.d-remix.net/"><img alt="Ci080501133455.jpg" src="http://seed.d-remix.net/2008/05/01/Ci080501133455-thumb-500x297.jpg" class="mt-image-none" style="" height="297" width="500" /></a></span> <div><br /></div>]]></description>
            <link>http://seed.d-remix.net/2008/05/i-love-rss-1.html</link>
            <guid>http://seed.d-remix.net/2008/05/i-love-rss-1.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">その他</category>
            
                <category domain="http://www.sixapart.com/ns/types#category">デザインの勉強</category>
            
            
                <category domain="http://www.sixapart.com/ns/types#tag">RSS</category>
            
            <pubDate>Thu, 01 May 2008 13:33:15 +0900</pubDate>
        </item>
        
        <item>
            <title>新コンテンツI LOVE RSSのデザイン</title>
            <description><![CDATA[<span class="mt-enclosure mt-enclosure-image" style="display: inline;"><a href="http://seed.d-remix.net/2008/04/30/site_rss.jpg" rel="lightbox"><img alt="site_rss.jpg" src="http://seed.d-remix.net/2008/04/30/site_rss-thumb-500x395.jpg" class="mt-image-none" style="" height="395" width="500" /></a></span> <div><br />デザインだけなんとかできました。<br />I LOVE RSSのコンセプトは購読しているRSSを公開して、みんなにもそのRSSを購読して情報収集に役立てて貰おうと言うものです。<br /><br />これから少しずつ中のシステムも作っていきます。<br /><br /><br /></div>]]></description>
            <link>http://seed.d-remix.net/2008/04/i-love-rss.html</link>
            <guid>http://seed.d-remix.net/2008/04/i-love-rss.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">デザインの勉強</category>
            
            
                <category domain="http://www.sixapart.com/ns/types#tag">デザイン</category>
            
            <pubDate>Wed, 30 Apr 2008 18:21:57 +0900</pubDate>
        </item>
        
        <item>
            <title>Flash ActionScript 3.0 メモ：フレーム再生のイベント</title>
            <description><![CDATA[フレーム再生イベントはフレームが再生されている限り実行される。<br />
<pre class="syntax-highlight"><span class="synComment">//フレームが再生されている限りonRoteMeが実行される</span>
my_mc.addEventListener(<span class="synStatement">Event</span>.ENTER_FRAME, onRoteMe);
var_mc2.addEventListener(<span class="synStatement">Event</span>.ENTER_FRAME, onRoteMe);

<span class="synComment">//関数</span>
<span class="synIdentifier">function</span> onRoteMe(<span class="synStatement">event</span>:<span class="synStatement">Event</span>):void <span class="synIdentifier">{</span>

	<span class="synIdentifier">var</span> targetMC:MovieClip = <span class="synStatement">event</span>.target as MovieClip;
	<span class="synComment">//インスタンスの回転</span>
	targetMC.rotation += 30;
<span class="synIdentifier">}</span>
</pre>
<br />
<br />
サンプルを動かしてるけど何となくしかわからない（笑）]]></description>
            <link>http://seed.d-remix.net/2008/04/flash-actionscript-30-2.html</link>
            <guid>http://seed.d-remix.net/2008/04/flash-actionscript-30-2.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">ActionScript 3.0</category>
            
                <category domain="http://www.sixapart.com/ns/types#category">Flash</category>
            
            
                <category domain="http://www.sixapart.com/ns/types#tag">ActionScript 3.0</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">Flash</category>
            
            <pubDate>Fri, 25 Apr 2008 18:44:16 +0900</pubDate>
        </item>
        
        <item>
            <title>Flash ActionScript 3.0 メモ：イベント処理</title>
            <description><![CDATA[ActionScript3.0（以後AS3）のイベント処理はActionScript2.0とは全然違います。<br />
<pre class="syntax-highlight"><span class="synComment">//イベントリスナーを使う。</span>
<span class="synComment">//my_mcはインスタンス名、EventListener(イベント処理, 関数名)</span>
my_mc.addEventListener(MouseEvent.CLICK, onclick);

<span class="synComment">//関数</span>
<span class="synComment">//onclick(event:MouseEvent)は引数を利用しませんが、書かないとエラーになるようです。</span>
<span class="synIdentifier">function</span> onclick(<span class="synStatement">event</span>:MouseEvent):void <span class="synIdentifier">{</span>
	trace(<span class="synConstant">"クリックされました。"</span>);
<span class="synIdentifier">}</span>
</pre>]]></description>
            <link>http://seed.d-remix.net/2008/04/flash-actionscript-30-1.html</link>
            <guid>http://seed.d-remix.net/2008/04/flash-actionscript-30-1.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">ActionScript 3.0</category>
            
                <category domain="http://www.sixapart.com/ns/types#category">Flash</category>
            
            
                <category domain="http://www.sixapart.com/ns/types#tag">ActionScript 3.0</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">Flash</category>
            
            <pubDate>Fri, 25 Apr 2008 18:13:14 +0900</pubDate>
        </item>
        
        <item>
            <title>Flash ActionScript 3.0 メモ</title>
            <description><![CDATA[スクリプトのテストに使えるtrace<br />
<pre class="syntax-highlight">trace(<span class="synConstant">"こんにちは"</span>,<span class="synConstant">"traceは「,」で区切って複数行書くこともできます。"</span>);
</pre>]]></description>
            <link>http://seed.d-remix.net/2008/04/flash-actionscript-30.html</link>
            <guid>http://seed.d-remix.net/2008/04/flash-actionscript-30.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">ActionScript 3.0</category>
            
                <category domain="http://www.sixapart.com/ns/types#category">Flash</category>
            
            
                <category domain="http://www.sixapart.com/ns/types#tag">ActionScript 3.0</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">Flash</category>
            
            <pubDate>Fri, 25 Apr 2008 18:06:27 +0900</pubDate>
        </item>
        
        <item>
            <title>ネタ公開用ブログのDesign Remix</title>
            <description><![CDATA[<a target="_blank" href="http://d-remix.net/">Design Remix</a><br />
<span class="mt-enclosure mt-enclosure-image" style="display: inline;"><img alt="Ci080423010141.jpgのサムネール画像" src="http://seed.d-remix.net/Ci080423010141-thumb-500x276.jpg" class="mt-image-none" style="" height="276" width="500" /></span> <div><br />Design Remixはweb系のネタを公開するためのブログです。<br /></div>]]></description>
            <link>http://seed.d-remix.net/2008/04/test.html</link>
            <guid>http://seed.d-remix.net/2008/04/test.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">その他</category>
            
            
                <category domain="http://www.sixapart.com/ns/types#tag">ブログ</category>
            
            <pubDate>Tue, 22 Apr 2008 23:24:32 +0900</pubDate>
        </item>
        
    </channel>
</rss>
