<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
		xmlns:xhtml="http://www.w3.org/1999/xhtml"
>

<channel>
	<title>ホームページ製作・グラフィックデザインならCASTAGE：キャストエイジ｜ブログ &#187; CASTAGE</title>
	<atom:link href="http://castage.net/blog/category/castage/feed/" rel="self" type="application/rss+xml" />
	<link>http://castage.net/blog</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Sun, 17 Apr 2011 07:34:30 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.1</generator>
<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://castage.net/blog/category/castage/feed/" />
		<item>
		<title>WordPressをホームページの更新システムとして使う</title>
		<link>http://castage.net/blog/update_via_wordpress/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=update_via_wordpress</link>
		<comments>http://castage.net/blog/update_via_wordpress/#comments</comments>
		<pubDate>Sun, 17 Apr 2011 06:51:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CASTAGE]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[チュートリアル]]></category>
		<category><![CDATA[CMS]]></category>
		<category><![CDATA[Google AJAX Feed API]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[更新システム]]></category>
		<category><![CDATA[更新履歴]]></category>

		<guid isPermaLink="false">http://castage.net/blog/?p=176</guid>
		<description><![CDATA[ホームページの更新システムを一から構築するのは骨が折れるのでBlogを使ってしまおう。 今回ご紹介するのは弊社のブログでも採用しているWordpress。 最近のサーバーは簡単インストールと銘打ち、Wordpressをワ [...]]]></description>
			<content:encoded><![CDATA[				<p>ホームページの更新システムを一から構築するのは骨が折れるのでBlogを使ってしまおう。<br />
				今回ご紹介するのは弊社のブログでも採用しているWordpress。  最近のサーバーは簡単インストールと銘打ち、Wordpressをワンクリックでインストールするサービスが多い。<br />
				GMOインターネットサービスのお名前.comレンタルサーバーがスペック・サービス面でコストパフォーマンスが良いです。</p>
				<p><iframe frameborder="0" allowtransparency="true" height="60" width="468" marginheight="0" scrolling="no" src="http://ad.jp.ap.valuecommerce.com/servlet/htmlbanner?sid=2628168&#038;pid=879977912" marginwidth="0"><script language="javascript" src="http://ad.jp.ap.valuecommerce.com/servlet/jsbanner?sid=2628168&#038;pid=879977912"></script><noscript><a href="http://ck.jp.ap.valuecommerce.com/servlet/referral?sid=2628168&#038;pid=879977912" target="_blank" ><img src="http://ad.jp.ap.valuecommerce.com/servlet/gifbanner?sid=2628168&#038;pid=879977912" height="60" width="468" border="0"></a></noscript></iframe></p>
				<p>さて、本題です。<br />
				■必要なもの<br />
				１．WordpressのRSSフィードURL…【インストール先のURL】+【?feed=rss2】です。（<a title="CASTAGE Weblog RSS" href="../../?feed=rss2" target="_blank">ここのブログ</a>の場合）<br />
				２．Google AJAX Feed APIのキー…<a title="Google API Key取得" href="http://code.google.com/intl/ja/apis/loader/signup.html" target="_blank">ココ</a>から取得してください　※英語ですがURLを入れてGenerate API Keyボタンを押すだけ<br />
				３．表示させるHTML…設置をお考えのトップページ等<br />
				４．取得コード…後記</p>
				<p>■設置方法<br />
				１．&lt;/head&gt;直前に</p>
				<p>&lt;script type=&#8221;text/javascript&#8221; src=&#8221;http://www.google.com/jsapi?key=【取得したキー】&#8221;&gt;<br />
				&lt;/script&gt;<br />
				&lt;script type=&#8221;text/javascript&#8221;&gt;<br />
				google.load(&#8220;feeds&#8221;, &#8220;1&#8243;);<br />
				&lt;/script&gt;</p>
				<p>を挿入。</p>
				<p>２．表示させるHTMLの希望箇所に下記ソース</p>
				<p>&lt;div id=&#8221;feed&#8221;&gt;&lt;/div&gt;<br />
				&lt;script type=&#8221;text/javascript&#8221;&gt;<br />
				function initialize() {<br />
				//RSSフィードの取得<br />
				var feed = new google.feeds.Feed(&#8220;【WordpressのRSSフィードURL】&#8221;);</p>
				<p>//取得するフィード数<br />
				feed.setNumEntries(10);</p>
				<p>//実際に読む込む<br />
				feed.load(function(result) {</p>
				<p>//読み込めたか判別<br />
				if (!result.error) {</p>
				<p>//表示部分を選択<br />
				var container = document.getElementById(&#8220;feed&#8221;);</p>
				<p>//変数の初期化<br />
				var useFeed = &#8220;&#8221;;</p>
				<p>//Feedの処理<br />
				for (var i = 0; i &lt; result.feed.entries.length; i++) {</p>
				<p>//Feedを一つ抽出<br />
				var entry = result.feed.entries[i];</p>
				<p>//リストに挿入<br />
				useFeed +=<br />
				&#8216;&lt;li&gt;&lt;a href=&#8221;&#8216; + entry.link + &#8216;&#8221;&gt;&#8217; + entry.title + &#8216;&lt;/a&gt;&#8217;;<br />
				}</p>
				<p>//リストを表示させる<br />
				container.innerHTML = &#8216;&lt;ul&gt;&#8217; + useFeed + &#8216;&lt;/ul&gt;&#8217;;<br />
				}<br />
				});<br />
				}<br />
				google.setOnLoadCallback(initialize);<br />
				&lt;/script&gt;<br />
				&lt;/div&gt;</p>
				<p>を挿入。</p>
				<p>■CSS装飾<br />
				CSSで背景色やPaddingや下線をデザインすれば既存のHPのデザインとマッチします。</p>
				<p>動きましたか？<br />
				時間があるときにWordpressで登録した画像の取得も書こうと思います。</p>
]]></content:encoded>
			<wfw:commentRss>http://castage.net/blog/update_via_wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://castage.net/blog/update_via_wordpress/" />
	</item>
		<item>
		<title>アールベルアンジェMie様HP完成しました。</title>
		<link>http://castage.net/blog/aba-mie/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=aba-mie</link>
		<comments>http://castage.net/blog/aba-mie/#comments</comments>
		<pubDate>Sun, 17 Apr 2011 06:19:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CASTAGE]]></category>
		<category><![CDATA[実績紹介]]></category>
		<category><![CDATA[アールベルアンジェ]]></category>
		<category><![CDATA[アールベルアンジェMie]]></category>
		<category><![CDATA[アールベルアンジェ三重]]></category>

		<guid isPermaLink="false">http://castage.net/blog/?p=167</guid>
		<description><![CDATA[&#160; アールベルアンジェMie様のHP完成しました。 &#160;]]></description>
			<content:encoded><![CDATA[				<p>&nbsp;</p>
				<div id="attachment_173" class="wp-caption alignnone" style="width: 310px"><a href="http://castage.net/blog/wp/wp-content/uploads/2011/04/abamie.jpg" rel="lightbox[167]"><img src="http://castage.net/blog/wp/wp-content/uploads/2011/04/abamie-300x195.jpg" alt="アールベルアンジェMieトップページ" title="アールベルアンジェMie" width="300" height="195" class="size-medium wp-image-173" /></a><p class="wp-caption-text">アールベルアンジェMie様</p></div>
				<p><a title="アールベルアンジェ三重" href="http://aba-mie.com/" target="_blank">アールベルアンジェMie</a>様のHP完成しました。</p>
				<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://castage.net/blog/aba-mie/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://castage.net/blog/aba-mie/" />
	</item>
		<item>
		<title>東京の出張マッサージ　Mana&amp;Moana（マナ＆モアナ）様HP公開開始</title>
		<link>http://castage.net/blog/mana-moana/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=mana-moana</link>
		<comments>http://castage.net/blog/mana-moana/#comments</comments>
		<pubDate>Mon, 21 Jun 2010 08:09:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CASTAGE]]></category>
		<category><![CDATA[実績紹介]]></category>
		<category><![CDATA[運営保守]]></category>
		<category><![CDATA[23区]]></category>
		<category><![CDATA[mana&moana]]></category>
		<category><![CDATA[mana-moana.jp]]></category>
		<category><![CDATA[マッサージ]]></category>
		<category><![CDATA[マナ]]></category>
		<category><![CDATA[モアナ]]></category>
		<category><![CDATA[出張]]></category>
		<category><![CDATA[出張マッサージ]]></category>
		<category><![CDATA[東京]]></category>

		<guid isPermaLink="false">http://castage.net/blog/?p=149</guid>
		<description><![CDATA[東京都23区で出張マッサージをやっているMana&#38;Moana様のHPがまもなく完成を迎え、Webサーバーにアップロードをしました。 サービスの実稼働は24日（木）という事で、興味がある方は後連絡下さい。「キャスト [...]]]></description>
			<content:encoded><![CDATA[				<p>東京都23区で出張マッサージをやっているMana&amp;Moana様のHPがまもなく完成を迎え、Webサーバーにアップロードをしました。</p>
				<p>サービスの実稼働は24日（木）という事で、興味がある方は後連絡下さい。「キャストエイジの紹介です。」と言えば何かいいことがあるかもしれません。</p>
				<div id="attachment_152" class="wp-caption alignnone" style="width: 232px"><a href="http://mana-moana.jp" class="broken_link"><img src="http://castage.net/blog/wp/wp-content/uploads/2010/06/mana-moana-222x300.jpg" alt="出張マッサージ　東京　Mana &amp; Moana　（マナ＆モアナ）" title="mana-moana" width="222" height="300" class="size-medium wp-image-152" /></a><p class="wp-caption-text">トップページ</p></div>
]]></content:encoded>
			<wfw:commentRss>http://castage.net/blog/mana-moana/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://castage.net/blog/mana-moana/" />
	</item>
		<item>
		<title>住環境ジャパン</title>
		<link>http://castage.net/blog/%e4%bd%8f%e7%92%b0%e5%a2%83%e3%82%b8%e3%83%a3%e3%83%91%e3%83%b3/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=%25e4%25bd%258f%25e7%2592%25b0%25e5%25a2%2583%25e3%2582%25b8%25e3%2583%25a3%25e3%2583%2591%25e3%2583%25b3</link>
		<comments>http://castage.net/blog/%e4%bd%8f%e7%92%b0%e5%a2%83%e3%82%b8%e3%83%a3%e3%83%91%e3%83%b3/#comments</comments>
		<pubDate>Wed, 26 May 2010 03:20:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CASTAGE]]></category>
		<category><![CDATA[運営保守]]></category>
		<category><![CDATA[ジャパン]]></category>
		<category><![CDATA[住環境]]></category>
		<category><![CDATA[住環境ジャパン]]></category>

		<guid isPermaLink="false">http://castage.net/blog/%e4%bd%8f%e7%92%b0%e5%a2%83%e3%82%b8%e3%83%a3%e3%83%91%e3%83%b3/</guid>
		<description><![CDATA[住環境ジャパン様のサーチエンジンオプティマイズを施工しております。]]></description>
			<content:encoded><![CDATA[				<p><a title="住環境ジャパン" href="http://www.jkj.co.jp/index.html" target="_blank">住環境ジャパン</a>様のサーチエンジンオプティマイズを施工しております。</p>
]]></content:encoded>
			<wfw:commentRss>http://castage.net/blog/%e4%bd%8f%e7%92%b0%e5%a2%83%e3%82%b8%e3%83%a3%e3%83%91%e3%83%b3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://castage.net/blog/%e4%bd%8f%e7%92%b0%e5%a2%83%e3%82%b8%e3%83%a3%e3%83%91%e3%83%b3/" />
	</item>
		<item>
		<title>IEで画像に隙間ができる</title>
		<link>http://castage.net/blog/ie_css/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=ie_css</link>
		<comments>http://castage.net/blog/ie_css/#comments</comments>
		<pubDate>Thu, 11 Feb 2010 10:01:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CASTAGE]]></category>
		<category><![CDATA[トラブルシュート]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[FireFox]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[vertical-align]]></category>
		<category><![CDATA[キャストエイジ]]></category>
		<category><![CDATA[画像]]></category>
		<category><![CDATA[隙間]]></category>

		<guid isPermaLink="false">http://castage.net/blog/?p=142</guid>
		<description><![CDATA[Web制作の動作確認は基本的にFirefoxで行っているのですが、余裕こいて最終的にIEでテストをすると痛い目に遭う。 今回はFirefoxでは正常に見えたテーブル内の画像達ですが、IEだとスキマスイッチ。 こちらはFi [...]]]></description>
			<content:encoded><![CDATA[				<p>Web制作の動作確認は基本的に<a title="Firefox" href="http://mozilla.jp/firefox/" target="_blank">Firefox</a>で行っているのですが、余裕こいて最終的に<a title="IE" href="http://www.microsoft.com/japan/windows/products/winfamily/ie/default.mspx" target="_blank">IE</a>でテストをすると痛い目に遭う。</p>
				<p>今回はFirefoxでは正常に見えたテーブル内の画像達ですが、IEだと<a title="スキマスイッチ" href="http://www.office-augusta.com/sukimaswitch/" target="_blank">スキマスイッチ</a>。</p>
				<p>こちらはFirefoxで<a title="株式会社キャストエイジ" href="http://castage.net/" target="_blank">CASTAGE</a>のトップページを開いた時の画像。</p>
				<div id="attachment_346" class="wp-caption alignnone" style="width: 376px;"><a rel="lightbox[345]" href="http://castage.net/blog/wp/wp-content/uploads/2010/02/ff_sukima.jpg" rel="lightbox[142]"><img src="http://castage.net/blog/wp/wp-content/uploads/2010/02/ff_sukima.jpg" alt="Firefoxで表示" title="Firefoxで表示" width="366" height="192" class="size-full wp-image-346" /></a></p>
				<p class="wp-caption-text">Firefoxで表示</p>
				</div>
				<p>こちらはIEで開いた時の画像。</p>
				<div id="attachment_347" class="wp-caption alignnone" style="width: 376px;"><a rel="lightbox[345]" href="http://castage.net/blog/wp/wp-content/uploads/2010/02/ie_sukima.jpg" rel="lightbox[142]"><img src="http://castage.net/blog/wp/wp-content/uploads/2010/02/ie_sukima.jpg" alt="IEで表示" title="IEで表示" width="366" height="192" class="size-full wp-image-347" /></a></p>
				<p class="wp-caption-text">IEで表示</p>
				</div>
				<p>何のことはない、CSSでimgの属性にvertical-align:top;をインしてあげればよい。</p>
				<p>CASTAGEで使用しているCSSのimgはこちら</p>
				<div class="igBar"><span id="lcss-1"><a onclick="javascript:showPlainTxt('css-1'); return false;" href="#">PLAIN TEXT</a></span></div>
				<div class="syntax_hilite">
				<p><span class="langName">CSS:</span></p>
				<div id="css-1">
				<div class="css">
				<ol>
				<li style="font-family: 'Courier New', Courier, monospace; color: #3a6a8b; font-weight: normal; font-style: normal;">
				<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">img <span style="color: #66cc66;">{</span></div>
				</li>
				<li style="font-weight: bold; color: #26536a;">
				<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #000000; font-weight: bold;">border</span>:0px;</div>
				</li>
				<li style="font-family: 'Courier New', Courier, monospace; color: #3a6a8b; font-weight: normal; font-style: normal;">
				<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #000000; font-weight: bold;">vertical-align</span>:<span style="color: #000000; font-weight: bold;">top</span>;</div>
				</li>
				<li style="font-weight: bold; color: #26536a;">
				<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #66cc66;">}</span></div>
				</li>
				</ol>
				</div>
				</div>
				</div>
				<p>原因は画像もインラインなのでそのままで使うとbaselineが適用されているので下がちょっと空いてしまうからだそうです。</p>
]]></content:encoded>
			<wfw:commentRss>http://castage.net/blog/ie_css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://castage.net/blog/ie_css/" />
	</item>
		<item>
		<title>FlickrのIDって</title>
		<link>http://castage.net/blog/flickr_i/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=flickr_i</link>
		<comments>http://castage.net/blog/flickr_i/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 10:17:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CASTAGE]]></category>
		<category><![CDATA[日記]]></category>
		<category><![CDATA[flickr]]></category>
		<category><![CDATA[id]]></category>
		<category><![CDATA[キャストエイジ]]></category>
		<category><![CDATA[クリス]]></category>
		<category><![CDATA[クリス松村]]></category>
		<category><![CDATA[ラクダ]]></category>
		<category><![CDATA[松村]]></category>

		<guid isPermaLink="false">http://castage.net/blog/?p=144</guid>
		<description><![CDATA[画像ギャラリー関連のスクリプトでFlickrにUPされた画像を呼び出すというものがあったのでアカウントを作りました。 スクリプトにIDとパスを埋め込まなければならんとのことで探したのですが見あたらず、「Flickr　ID [...]]]></description>
			<content:encoded><![CDATA[				<p>画像ギャラリー関連のスクリプトで<a title="フリッカー" href="http://www.flickr.com/" target="_blank">Flickr</a>にUPされた画像を呼び出すというものがあったのでアカウントを作りました。</p>
				<p>スクリプトにIDとパスを埋め込まなければならんとのことで探したのですが見あたらず、「Flickr　ID」で<a title="午後った" href="http://www.google.co.jp/search?q=Flickr%E3%80%80ID&amp;lr=lang_ja&amp;ie=utf-8&amp;oe=utf-8&amp;aq=t&amp;rls=org.mozilla:ja:official&amp;client=firefox-a" target="_blank">午後った</a>ら<a title="http://flickr-id.cohga.net/" href="http://flickr-id.cohga.net/" target="_blank">flickr ID Checker</a>なるものがでてきました。</p>
				<p>人生においてそれほど使う機会は無いと思いますが便利ですね。</p>
				<p>ちなみに全然関係ないんですが、「ら　く　だ」は<a title="Google" href="http://google.com" target="_blank">ググ</a>ってもダメですが<a title="Yahoo" href="http://yahoo.co.jp" target="_blank">Yahoo</a>だとワード予測的にクリス松村が出てきました。</p>
]]></content:encoded>
			<wfw:commentRss>http://castage.net/blog/flickr_i/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://castage.net/blog/flickr_i/" />
	</item>
		<item>
		<title>CASTAGE FLOWを公開</title>
		<link>http://castage.net/blog/castage_flow/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=castage_flow</link>
		<comments>http://castage.net/blog/castage_flow/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 09:52:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CASTAGE]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[フリー素材]]></category>
		<category><![CDATA[iTunes]]></category>
		<category><![CDATA[swf]]></category>
		<category><![CDATA[WEB素材]]></category>
		<category><![CDATA[xml]]></category>
		<category><![CDATA[キャストエイジ]]></category>
		<category><![CDATA[無料素材]]></category>

		<guid isPermaLink="false">http://castage.net/blog/?p=138</guid>
		<description><![CDATA[CASTAGE FLOWをホームページのフリー素材に公開。 サンプルはこんな感じです。 CASTAGE FLOW]]></description>
			<content:encoded><![CDATA[				<p><a title="CASTAGE　FLOW" href="http://castage.net/download/caflow/index.html" target="_blank">CASTAGE FLOW</a>をホームページのフリー素材に公開。</p>
				<p>サンプルはこんな感じです。</p>
				<div id="attachment_343" class="wp-caption alignnone" style="width: 570px;"><a rel="lightbox[341]" href="http://castage.net/blog/wp/wp-content/uploads/2010/02/caflow_smaple.jpg" rel="lightbox[138]"><img src="http://castage.net/blog/wp/wp-content/uploads/2010/02/caflow_smaple.jpg" alt="CASTAGE FLOW" title="CASTAGE FLOW" width="560" height="240" class="size-full wp-image-343" /></a></p>
				<p class="wp-caption-text">CASTAGE FLOW</p>
				</div>
]]></content:encoded>
			<wfw:commentRss>http://castage.net/blog/castage_flow/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://castage.net/blog/castage_flow/" />
	</item>
		<item>
		<title>フリーのデフラグツール</title>
		<link>http://castage.net/blog/free_defra/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=free_defra</link>
		<comments>http://castage.net/blog/free_defra/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 09:40:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CASTAGE]]></category>
		<category><![CDATA[日記]]></category>
		<category><![CDATA[キャストエイジ]]></category>
		<category><![CDATA[デフラグ]]></category>
		<category><![CDATA[デフラグツール]]></category>
		<category><![CDATA[フリーソフト]]></category>
		<category><![CDATA[フリーツール]]></category>
		<category><![CDATA[無料ソフト]]></category>

		<guid isPermaLink="false">http://castage.net/blog/?p=132</guid>
		<description><![CDATA[昔はDiskeeperとか使ってましたけど今は無料でもよさげなのがありますね。 「デフラグ　フリー」でググったらUltimateDefragがでてきました。 早速使ってみたのですが以下の環境でPhotoshopやOffi [...]]]></description>
			<content:encoded><![CDATA[				<p>昔は<a title="Diskeeper" href="http://www.sohei.co.jp/" target="_blank">Diskeeper</a>とか使ってましたけど今は無料でもよさげなのがありますね。</p>
				<p>「デフラグ　フリー」でググったら<a title="UltimateDefrag" href="http://itpro.nikkeibp.co.jp/article/COLUMN/20090128/323645/" target="_blank">UltimateDefrag</a>がでてきました。</p>
				<p>早速使ってみたのですが以下の環境でPhotoshopやOffice系を動かしてても（いいのか？）ストレス無くデフラグメンテーションしてくれました。</p>
				<p>［PC環境］</p>
				<p>OS　・・・・・・・Windows XP SP3</p>
				<p>CPU・・・・・・・ Intel Core2 Duo 3.16GHz</p>
				<p>Memory・・・ 3GB</p>
				<p>それでは結果。</p>
				<div id="attachment_331" class="wp-caption alignnone" style="width: 633px;"><a rel="lightbox[330]" href="http://castage.net/blog/wp/wp-content/uploads/2010/02/cbefore.jpg" rel="lightbox[132]"><img src="http://castage.net/blog/wp/wp-content/uploads/2010/02/cbefore.jpg" alt="Cドライブ　Before" title="Cドライブ　Before" width="623" height="378" class="size-full wp-image-331" /></a></p>
				<p class="wp-caption-text">Cドライブ　Before</p>
				</div>
				<div id="attachment_332" class="wp-caption alignnone" style="width: 633px;"><a rel="lightbox[330]" href="http://castage.net/blog/wp/wp-content/uploads/2010/02/cafter.jpg" rel="lightbox[132]"><img src="http://castage.net/blog/wp/wp-content/uploads/2010/02/cafter.jpg" alt="Cドライブ　After" title="Cドライブ　After" width="623" height="378" class="size-full wp-image-332" /></a></p>
				<p class="wp-caption-text">Cドライブ　After</p>
				</div>
				<div id="attachment_333" class="wp-caption alignnone" style="width: 633px;"><a rel="lightbox[330]" href="http://castage.net/blog/wp/wp-content/uploads/2010/02/dbefore.jpg" rel="lightbox[132]"><img src="http://castage.net/blog/wp/wp-content/uploads/2010/02/dbefore.jpg" alt="Dドライブ　Before" title="Dドライブ　Before" width="623" height="378" class="size-full wp-image-333" /></a></p>
				<p class="wp-caption-text">Dドライブ　Before</p>
				</div>
				<div id="attachment_334" class="wp-caption alignnone" style="width: 633px;"><a rel="lightbox[330]" href="http://castage.net/blog/wp/wp-content/uploads/2010/02/dafter.jpg" rel="lightbox[132]"><img src="http://castage.net/blog/wp/wp-content/uploads/2010/02/dafter.jpg" alt="Dドライブ　After" title="Dドライブ　After" width="623" height="378" class="size-full wp-image-334" /></a></p>
				<p class="wp-caption-text">Dドライブ　After</p>
				</div>
				<p>何となく再起動してきます。</p>
]]></content:encoded>
			<wfw:commentRss>http://castage.net/blog/free_defra/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://castage.net/blog/free_defra/" />
	</item>
		<item>
		<title>WordPressからmixiに記事を投稿するテスト</title>
		<link>http://castage.net/blog/mixi_publishe/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=mixi_publishe</link>
		<comments>http://castage.net/blog/mixi_publishe/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 09:36:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CASTAGE]]></category>
		<category><![CDATA[プラグイン]]></category>
		<category><![CDATA[日記]]></category>
		<category><![CDATA[mixi]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[wp-mixipublisher]]></category>
		<category><![CDATA[キャストエイジ]]></category>
		<category><![CDATA[ミクシィ]]></category>

		<guid isPermaLink="false">http://castage.net/blog/?p=127</guid>
		<description><![CDATA[最近ブログはUPするけどmixiはご無沙汰だなぁと思ってた所に発見したプラグイン。 テテテテッテテー（2回目） wp-mixipublisherRC2e.zip 詳しい設定やトラブルシューティングはココやココを見て下さい [...]]]></description>
			<content:encoded><![CDATA[				<p>最近ブログはUPするけどmixiはご無沙汰だなぁと思ってた所に発見したプラグイン。</p>
				<p>テテテテッテテー（2回目）</p>
				<p><a title="WordPressからmixiをUPできるやつ" href="http://depo.main.jp/wp-mixipublisherRC2e.zip" target="_blank" class="broken_link">wp-mixipublisherRC2e.zip</a></p>
				<p>詳しい設定やトラブルシューティングは<a title="yujilog" href="http://factage.com/yu-ji/2006/09/05/wp-mixipublisher-1_0_0rc2/">ココ</a>や<a title="RC2+e" href="http://depo.main.jp/1031" class="broken_link">ココ</a>を見て下さい（ぶん投げた</p>
				<p>ま、ブログは基本備忘録で使ってるので日記仕様のmixiに同じ内容を投稿することはあまりなさそうですけれども。</p>
]]></content:encoded>
			<wfw:commentRss>http://castage.net/blog/mixi_publishe/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://castage.net/blog/mixi_publishe/" />
	</item>
		<item>
		<title>iTunesのようなカバーフロー</title>
		<link>http://castage.net/blog/itunes%e3%81%ae%e3%82%88%e3%81%86%e3%81%aa%e3%82%ab%e3%83%90%e3%83%bc%e3%83%95%e3%83%ad%e3%83%bc/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=itunes%25e3%2581%25ae%25e3%2582%2588%25e3%2581%2586%25e3%2581%25aa%25e3%2582%25ab%25e3%2583%2590%25e3%2583%25bc%25e3%2583%2595%25e3%2583%25ad%25e3%2583%25bc</link>
		<comments>http://castage.net/blog/itunes%e3%81%ae%e3%82%88%e3%81%86%e3%81%aa%e3%82%ab%e3%83%90%e3%83%bc%e3%83%95%e3%83%ad%e3%83%bc/#comments</comments>
		<pubDate>Sat, 06 Feb 2010 09:50:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CASTAGE]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[iTunes]]></category>
		<category><![CDATA[swf]]></category>
		<category><![CDATA[WEB素材]]></category>
		<category><![CDATA[xml]]></category>
		<category><![CDATA[カバーフロー]]></category>
		<category><![CDATA[キャストエイジ]]></category>
		<category><![CDATA[フリー素材]]></category>
		<category><![CDATA[無料素材]]></category>

		<guid isPermaLink="false">http://castage.net/blog/?p=136</guid>
		<description><![CDATA[iTunesの様なカバーフローをホームぺージにつけたくありませんか。 カバーフローをしらんという方のためにどんな感じかUPしておきますね。 こんな感じ Flashのコンポーネントとxmlで今せこせこ作成してグラぽけっとに [...]]]></description>
			<content:encoded><![CDATA[				<p><a title="iTunes" href="http://www.apple.com/jp/itunes/overview/?cid=MAR-JP-iPod-SEM-GOOG" target="_blank" class="broken_link">iTunes</a>の様なカバーフローをホームぺージにつけたくありませんか。</p>
				<p>カバーフローをしらんという方のためにどんな感じかUPしておきますね。</p>
				<div id="attachment_318" class="wp-caption alignnone" style="width: 546px;"><a rel="lightbox[314]" href="http://castage.net/blog/wp/wp-content/uploads/2010/02/itunescoverflow1.jpg" rel="lightbox[136]"><img src="http://castage.net/blog/wp/wp-content/uploads/2010/02/itunescoverflow1.jpg" alt="カバーフロー" title="カバーフロー" width="536" height="209" class="size-full wp-image-318" /></a></p>
				<p class="wp-caption-text">こんな感じ</p>
				</div>
				<p>Flashのコンポーネントとxmlで今せこせこ作成して<a title="グラぽけっと" href="http://gpocket.jp" target="_blank">グラぽけっと</a>につけました。</p>
				<p>仕様としては</p>
				<p>1．自動でフロー</p>
				<p>2．マウスホイール対応</p>
				<p>3．URLリンク</p>
				<p>完全にできあがったらマニュアルも作って<a title="CASTAGE　フリー素材" href="http://castage.net/download/index.html" target="_blank">無料素材</a>に公開します。</p>
]]></content:encoded>
			<wfw:commentRss>http://castage.net/blog/itunes%e3%81%ae%e3%82%88%e3%81%86%e3%81%aa%e3%82%ab%e3%83%90%e3%83%bc%e3%83%95%e3%83%ad%e3%83%bc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://castage.net/blog/itunes%e3%81%ae%e3%82%88%e3%81%86%e3%81%aa%e3%82%ab%e3%83%90%e3%83%bc%e3%83%95%e3%83%ad%e3%83%bc/" />
	</item>
	</channel>
</rss>

