<?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>江島＠システム開発</title>
	
	<link>http://tech.eshima.info</link>
	<description>主にウェブ関係の技術的なことをメモします</description>
	<lastBuildDate>Thu, 26 Apr 2012 02:42:16 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/eshimatech" /><feedburner:info uri="eshimatech" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>cakePHPのModelで別のModelデータを参照</title>
		<link>http://feedproxy.google.com/~r/eshimatech/~3/bpzzb9-Irx0/</link>
		<comments>http://tech.eshima.info/?p=96#comments</comments>
		<pubDate>Thu, 26 Apr 2012 02:42:16 +0000</pubDate>
		<dc:creator>eshimatech</dc:creator>
				<category><![CDATA[cakePHP]]></category>

		<guid isPermaLink="false">http://tech.eshima.info/?p=96</guid>
		<description><![CDATA[cakePHP1.3。モデル内で別のモデルを参照する必要があった。 関連するデータは通常はアソシエーションを設定するけど、 アソシエーション関係なく呼ぶ必要もあるのでその時。 $User = ClassRegistry: [...]]]></description>
			<content:encoded><![CDATA[<p>cakePHP1.3。モデル内で別のモデルを参照する必要があった。<br />
関連するデータは通常はアソシエーションを設定するけど、<br />
アソシエーション関係なく呼ぶ必要もあるのでその時。</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$User</span> <span style="color: #339933;">=</span> ClassRegistry<span style="color: #339933;">::</span><span style="color: #004000;">init</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'User'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$users</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$User</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">find</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'all'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>など。</p>
<img src="http://feeds.feedburner.com/~r/eshimatech/~4/bpzzb9-Irx0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://tech.eshima.info/?feed=rss2&amp;p=96</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://tech.eshima.info/?p=96</feedburner:origLink></item>
		<item>
		<title>facebookのPHPSDKでSSLエラー</title>
		<link>http://feedproxy.google.com/~r/eshimatech/~3/ou9tTpB92LA/</link>
		<comments>http://tech.eshima.info/?p=93#comments</comments>
		<pubDate>Tue, 24 Apr 2012 07:11:41 +0000</pubDate>
		<dc:creator>eshimatech</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://tech.eshima.info/?p=93</guid>
		<description><![CDATA[localhostでfacebookのPHPSDKを試していると下記のエラーで動かず。 Uncaught CurlException: 28: SSL connection timeout thrown PHPSDKの中 [...]]]></description>
			<content:encoded><![CDATA[<p>localhostでfacebookのPHPSDKを試していると下記のエラーで動かず。</p>
<p>Uncaught CurlException: 28: SSL connection timeout thrown</p>
<p>PHPSDKの中にあるbase_facebook.phpに１行追加したら動いた。</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">    <span style="color: #000088;">$opts</span><span style="color: #009900;">&#91;</span>CURLOPT_SSLVERSION<span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #cc66cc;">3</span><span style="color: #339933;">;</span><span style="color: #666666; font-style: italic;">//この行を追加</span>
    <span style="color: #990000;">curl_setopt_array</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$ch</span><span style="color: #339933;">,</span> <span style="color: #000088;">$opts</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<img src="http://feeds.feedburner.com/~r/eshimatech/~4/ou9tTpB92LA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://tech.eshima.info/?feed=rss2&amp;p=93</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://tech.eshima.info/?p=93</feedburner:origLink></item>
		<item>
		<title>cakePHPのafterFind</title>
		<link>http://feedproxy.google.com/~r/eshimatech/~3/OvB-QukSNz0/</link>
		<comments>http://tech.eshima.info/?p=85#comments</comments>
		<pubDate>Tue, 17 Apr 2012 07:44:55 +0000</pubDate>
		<dc:creator>eshimatech</dc:creator>
				<category><![CDATA[cakePHP]]></category>

		<guid isPermaLink="false">http://tech.eshima.info/?p=85</guid>
		<description><![CDATA[findで取得するデータに表示用のテキストなど付けたい場合はModelでafterFind。 public $options = array&#40; 'flag' =&#62; array&#40; 1 =&#62; 'カ [...]]]></description>
			<content:encoded><![CDATA[<p>findで取得するデータに表示用のテキストなど付けたい場合はModelでafterFind。</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">	<span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000088;">$options</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
		<span style="color: #0000ff;">'flag'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
			<span style="color: #cc66cc;">1</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'カテゴリA'</span><span style="color: #339933;">,</span>
			<span style="color: #cc66cc;">2</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'カテゴリB'</span><span style="color: #339933;">,</span>
		<span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
	<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000000; font-weight: bold;">function</span> afterFind<span style="color: #009900;">&#40;</span><span style="color: #000088;">$results</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
		<span style="color: #b1b100;">foreach</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$results</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$key</span> <span style="color: #339933;">=&gt;</span> <span style="color: #000088;">$val</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
			<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #990000;">isset</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$results</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$key</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'User'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">&amp;&amp;</span> <span style="color: #990000;">is_array</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$results</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$key</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'User'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
				<span style="color: #000088;">$val</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$results</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$key</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'User'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'flag'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
				<span style="color: #000088;">$results</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$key</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'User'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'flag'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
				<span style="color: #000088;">$results</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$key</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'User'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'flag'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'val'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$val</span><span style="color: #339933;">;</span>
				<span style="color: #000088;">$results</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$key</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'User'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'flag'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'str'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">options</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'flag'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$val</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
			<span style="color: #009900;">&#125;</span>
		<span style="color: #009900;">&#125;</span>
		<span style="color: #b1b100;">return</span> <span style="color: #000088;">$results</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span></pre></div></div>

<img src="http://feeds.feedburner.com/~r/eshimatech/~4/OvB-QukSNz0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://tech.eshima.info/?feed=rss2&amp;p=85</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://tech.eshima.info/?p=85</feedburner:origLink></item>
		<item>
		<title>macでデフォルトのapacheが起動する</title>
		<link>http://feedproxy.google.com/~r/eshimatech/~3/ket35VrsYmI/</link>
		<comments>http://tech.eshima.info/?p=83#comments</comments>
		<pubDate>Mon, 25 Jul 2011 09:31:41 +0000</pubDate>
		<dc:creator>eshimatech</dc:creator>
				<category><![CDATA[未分類]]></category>

		<guid isPermaLink="false">http://www.eshima.info/tech/?p=83</guid>
		<description><![CDATA[普段はmacportsでインストールしたapacheを動かしているが、たまになぜかデフォルトのapacheが起動してしまい、設定をしていない状態なので It Works! とだけ表示されてしまう。 原因はよくわからないが [...]]]></description>
			<content:encoded><![CDATA[<p>普段はmacportsでインストールしたapacheを動かしているが、たまになぜかデフォルトのapacheが起動してしまい、設定をしていない状態なので</p>
<p>It Works!</p>
<p>とだけ表示されてしまう。</p>
<p>原因はよくわからないが、terminal で apachectl stop としてデフォルトのapacheを終了すると、macportsのapacheになる。</p>
<img src="http://feeds.feedburner.com/~r/eshimatech/~4/ket35VrsYmI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://tech.eshima.info/?feed=rss2&amp;p=83</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://tech.eshima.info/?p=83</feedburner:origLink></item>
		<item>
		<title>表の画面が真っ白になる対策</title>
		<link>http://feedproxy.google.com/~r/eshimatech/~3/I5XLknLWOtA/</link>
		<comments>http://tech.eshima.info/?p=80#comments</comments>
		<pubDate>Thu, 12 May 2011 12:01:01 +0000</pubDate>
		<dc:creator>eshimatech</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.eshima.info/tech/?p=80</guid>
		<description><![CDATA[coreserverにwordpressをインストールしたら、管理画面は普通に表示されるのに表の画面が真っ白になり何も表示されない状態になった。 結果、管理画面からwordpressを最新のものに更新すると解決。]]></description>
			<content:encoded><![CDATA[<p>coreserverにwordpressをインストールしたら、管理画面は普通に表示されるのに表の画面が真っ白になり何も表示されない状態になった。</p>
<p>結果、管理画面からwordpressを最新のものに更新すると解決。</p>
<img src="http://feeds.feedburner.com/~r/eshimatech/~4/I5XLknLWOtA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://tech.eshima.info/?feed=rss2&amp;p=80</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://tech.eshima.info/?p=80</feedburner:origLink></item>
		<item>
		<title>cakePHP1.3移行時のUnsupported operand typesエラー</title>
		<link>http://feedproxy.google.com/~r/eshimatech/~3/NahU_reGrxY/</link>
		<comments>http://tech.eshima.info/?p=78#comments</comments>
		<pubDate>Fri, 15 Apr 2011 01:30:18 +0000</pubDate>
		<dc:creator>eshimatech</dc:creator>
				<category><![CDATA[cakePHP]]></category>

		<guid isPermaLink="false">http://www.eshima.info/tech/?p=78</guid>
		<description><![CDATA[cakePHP1.2で作った古いシステムを1.3対応させているときにエラーが発生。 Unsupported operand types in /Users/username/xxxxxx/cakePHP1.3.8/cak [...]]]></description>
			<content:encoded><![CDATA[<p>cakePHP1.2で作った古いシステムを1.3対応させているときにエラーが発生。</p>
<p>Unsupported operand types in /Users/username/xxxxxx/cakePHP1.3.8/cake/libs/view/helpers/html.php on line 337</p>
<p>調べた結果、viewでcssの設定をしていた下記のような箇所が原因</p>
<p>echo $html->css(&#8216;documents&#8217;, null, null, false);</p>
<p>解決方法としてはcontrollerでHtmlヘルパーを付け、css指定は下記のようにする。</p>
<p>echo $html->css(&#8216;documents&#8217;);</p>
<img src="http://feeds.feedburner.com/~r/eshimatech/~4/NahU_reGrxY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://tech.eshima.info/?feed=rss2&amp;p=78</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://tech.eshima.info/?p=78</feedburner:origLink></item>
		<item>
		<title>phpmailerの日本語添付ファイル文字化け解消</title>
		<link>http://feedproxy.google.com/~r/eshimatech/~3/c54lyHKr2f4/</link>
		<comments>http://tech.eshima.info/?p=75#comments</comments>
		<pubDate>Tue, 21 Sep 2010 04:09:23 +0000</pubDate>
		<dc:creator>eshimatech</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.eshima.info/tech/?p=75</guid>
		<description><![CDATA[日本語が頭についているファイルを添付すると、文字そのものが消えてしまう。元のスクリプトを解析してたらようやく原因発見。basename()という関数でパスからファイル名を取得しているんだけど、それがPHP５ではバグにより [...]]]></description>
			<content:encoded><![CDATA[<p>日本語が頭についているファイルを添付すると、文字そのものが消えてしまう。元のスクリプトを解析してたらようやく原因発見。basename()という関数でパスからファイル名を取得しているんだけど、それがPHP５ではバグにより日本語が上手くでないとか。PHP６では直す予定らしい。</p>
<p>class.phpmailer.php</p>
<p>#1349あたりを</p>
<p>//$filename = basename($path);<br />
$filename = end(split(&#8216;/&#8217;,$path));</p>
<p>として完了。原因を探すまでが大変だった。</p>
<img src="http://feeds.feedburner.com/~r/eshimatech/~4/c54lyHKr2f4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://tech.eshima.info/?feed=rss2&amp;p=75</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://tech.eshima.info/?p=75</feedburner:origLink></item>
		<item>
		<title>phpをcronで動かすときにphp.iniを指定する方法</title>
		<link>http://feedproxy.google.com/~r/eshimatech/~3/HdG4jjqNrqY/</link>
		<comments>http://tech.eshima.info/?p=73#comments</comments>
		<pubDate>Tue, 21 Sep 2010 02:44:43 +0000</pubDate>
		<dc:creator>eshimatech</dc:creator>
				<category><![CDATA[サーバー]]></category>

		<guid isPermaLink="false">http://www.eshima.info/tech/?p=73</guid>
		<description><![CDATA[cd [ディレクトリパス]; [PHPパス] -f [実行ファイル] -c [php.iniのパス] 例 cd /home/example/example.com/public_html/; /usr/bin/php5  [...]]]></description>
			<content:encoded><![CDATA[<p>cd [ディレクトリパス]; [PHPパス] -f [実行ファイル] -c [php.iniのパス]</p>
<p>例<br />
cd /home/example/example.com/public_html/; /usr/bin/php5 -f ./cron.php -c /home/example/php.ini </p>
<img src="http://feeds.feedburner.com/~r/eshimatech/~4/HdG4jjqNrqY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://tech.eshima.info/?feed=rss2&amp;p=73</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://tech.eshima.info/?p=73</feedburner:origLink></item>
		<item>
		<title>phpMyAdminでアップロードできない大きなSQLファイルをアップするBigDump</title>
		<link>http://feedproxy.google.com/~r/eshimatech/~3/Mu5n3_47IIM/</link>
		<comments>http://tech.eshima.info/?p=69#comments</comments>
		<pubDate>Fri, 17 Sep 2010 08:53:53 +0000</pubDate>
		<dc:creator>eshimatech</dc:creator>
				<category><![CDATA[データベース]]></category>

		<guid isPermaLink="false">http://www.eshima.info/tech/?p=69</guid>
		<description><![CDATA[サーバー移転のためデータをごっそりと移動させようとして失敗。データの出力はphpMyAdminのエクスポートでできるが、インポートをしようとすると大きすぎるとエラーが出てできない。 設定ファイルをいじれる場合はconfi [...]]]></description>
			<content:encoded><![CDATA[<p>サーバー移転のためデータをごっそりと移動させようとして失敗。データの出力はphpMyAdminのエクスポートでできるが、インポートをしようとすると大きすぎるとエラーが出てできない。</p>
<p>設定ファイルをいじれる場合はconfig.inc.phpの中の$cfg['UploadDir']=”;を$cfg['UploadDir']=’./upload’;などとして、サーバーにディレクトリを作りSQLファイルをアップロードすればphpMyAdminのインポート画面で選択できるようになるのでインポート可能。</p>
<p>ただ、レンタルサーバーで設定がいじれないケースだったので調べてみた。</p>
<p><a href="http://www.ozerov.de/bigdump.php" target="_blank">BigDump</a>というスクリプトを発見。結果これでできた。</p>
<p>ダウンロードするとPHPファイルがひとつ入っているのでそれを開き、DBの設定だけしてインポート先のサーバーにアップロード。同じディレクトリに大きすぎて困ってたSQLファイルをアップロードし、ブラウザからアクセスすると実行できる。</p>
<p>コツとしてphpMyAdminでのエクスポート時に設定をデフォルトから変える必要があった。エクスポートの画面で「生成するクエリの最大長」が50000になっているのを100にしてSQLファイルを作る。</p>
<p>参考にさせてもらったページ<br />
<a href="http://wcrblog.seesaa.net/article/110178405.html">WikiCookRecipe日記: MySQLインポートファイルがでかすぎる時には BigDump を使ってみよう！</a></p>
<img src="http://feeds.feedburner.com/~r/eshimatech/~4/Mu5n3_47IIM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://tech.eshima.info/?feed=rss2&amp;p=69</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://tech.eshima.info/?p=69</feedburner:origLink></item>
		<item>
		<title>WordPressがタイムアウトで表示されない</title>
		<link>http://feedproxy.google.com/~r/eshimatech/~3/meVaZL8-F6Y/</link>
		<comments>http://tech.eshima.info/?p=67#comments</comments>
		<pubDate>Mon, 01 Mar 2010 00:57:08 +0000</pubDate>
		<dc:creator>eshimatech</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.eshima.info/tech/?p=67</guid>
		<description><![CDATA[運営していたWordpressサイトのひとつが、アクセスしてもタイムアウトとなり何も表示されない現象となった。 同じサーバーの他Wordpressサイトは表示されるのでサーバーが原因でもなく、テキストファイルなどを直接U [...]]]></description>
			<content:encoded><![CDATA[<p>運営していたWordpressサイトのひとつが、アクセスしてもタイムアウトとなり何も表示されない現象となった。</p>
<p>同じサーバーの他Wordpressサイトは表示されるのでサーバーが原因でもなく、テキストファイルなどを直接URL入力されると表示されるのでDNSなどが原因でもない。</p>
<p>しばらくアップグレードも変更もしていないので原因不明だったが、phpMyAdminで「テーブルの最適化」をしたら復旧。なぜこうなったのかは不明。</p>
<img src="http://feeds.feedburner.com/~r/eshimatech/~4/meVaZL8-F6Y" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://tech.eshima.info/?feed=rss2&amp;p=67</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://tech.eshima.info/?p=67</feedburner:origLink></item>
	</channel>
</rss>

