<?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/"
	>

<channel>
	<title>Notes</title>
	<atom:link href="http://blog.b123400.net/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://blog.b123400.net</link>
	<description>Just another WordPress site</description>
	<lastBuildDate>Sun, 29 May 2011 13:47:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Maha 0.9.2</title>
		<link>http://blog.b123400.net/?p=48</link>
		<comments>http://blog.b123400.net/?p=48#comments</comments>
		<pubDate>Sun, 29 May 2011 13:46:37 +0000</pubDate>
		<dc:creator>b123400</dc:creator>
				<category><![CDATA[Apps]]></category>
		<category><![CDATA[Maha]]></category>

		<guid isPermaLink="false">http://blog.b123400.net/?p=48</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<div id="attachment_50" class="wp-caption aligncenter" style="width: 330px"><a href="http://blog.b123400.net/wp-content/uploads/2011/05/IMG_2337.png"><img class="size-full wp-image-50" title="Maha preview" src="http://blog.b123400.net/wp-content/uploads/2011/05/IMG_2337.png" alt="Read later (Instapaper/Read it later) + Mobilizer (Google/Instapaper) + Translation (Google)" width="320" height="480" /></a><p class="wp-caption-text">Read later + Mobilizer + Translation </p></div>
<div id="attachment_49" class="wp-caption aligncenter" style="width: 330px"><a href="http://blog.b123400.net/wp-content/uploads/2011/05/IMG_2340.png"><img class="size-full wp-image-49" title="Custom background" src="http://blog.b123400.net/wp-content/uploads/2011/05/IMG_2340.png" alt="Custom background" width="320" height="480" /></a><p class="wp-caption-text">Custom background</p></div>
]]></content:encoded>
			<wfw:commentRss>http://blog.b123400.net/?feed=rss2&#038;p=48</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Upload Image to img.ly</title>
		<link>http://blog.b123400.net/?p=32</link>
		<comments>http://blog.b123400.net/?p=32#comments</comments>
		<pubDate>Mon, 28 Feb 2011 16:23:23 +0000</pubDate>
		<dc:creator>b123400</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[objc]]></category>

		<guid isPermaLink="false">http://blog.b123400.net/?p=32</guid>
		<description><![CDATA[I am not sure if I did something wrong or not, but everytime when I submit a should-be-no-problem request to img.ly, it returns 406 without any further information. That response code wasn&#8217;t documented and I cannot find anything from google,so I decided to figure that out. First, I tried clients on my mac which uploads [...]]]></description>
			<content:encoded><![CDATA[<div id="_mcePaste">I am not sure if I did something wrong or not,</div>
<div>but everytime when I submit a should-be-no-problem request to img.ly,</div>
<div>it returns 406 without any further information.</div>
<div id="_mcePaste">That response code wasn&#8217;t documented and I cannot find anything from google,so I decided to figure that out.</div>
<div id="_mcePaste">First, I tried clients on my mac which uploads to img.ly:</div>
<div>Numbu uses the old API, boo.</div>
<div id="_mcePaste">Twitter for mac (no longer Tweetie for mac&#8230;.) uses the old API too, but it treats the old API as the new one,</div>
<div>submitting OAuth Echo infos to <em>http://img.ly/api/upload</em> which doesn&#8217;t make sense at all,</div>
<div>it should not work at all, but it dose.</div>
<div>So I am not going to follow it.</div>
<div>The last one is Twitterific, luckily it dose what I want.</div>
<div>It submits to <span style="color: #454547; font-family: 'Lucida Grande', arial, helvetica, sans-serif; font-weight: 300; line-height: 18px;"><em>http://img.ly/api/2/upload.xml</em> </span>which is what I am trying to do.</div>
<div>After comparing my failed request and Twitterific&#8217;s success request, here are points that lead me to fail:</div>
<div>
<ul>
<li>Content-Type: image/jpeg , I used ASIHttpRequest which uses application/octet-stream as the default content-type, so the solution is

<div class="wp_syntax"><div class="code"><pre class="objc" style="font-family:monospace;"><span style="color: #002200;">&#91;</span>request setData<span style="color: #002200;">:</span>UIImageJPEGRepresentation<span style="color: #002200;">&#40;</span>picture, <span style="color: #2400d9;">0.8</span><span style="color: #002200;">&#41;</span> withFileName<span style="color: #002200;">:</span><span style="color: #bf1d1a;">@</span><span style="color: #bf1d1a;">&quot;filename.jpg&quot;</span> andContentType<span style="color: #002200;">:</span><span style="color: #bf1d1a;">@</span><span style="color: #bf1d1a;">&quot;image/jpeg&quot;</span> forKey<span style="color: #002200;">:</span><span style="color: #bf1d1a;">@</span><span style="color: #bf1d1a;">&quot;media&quot;</span><span style="color: #002200;">&#93;</span>;</pre></div></div>

</li>
<li>User-agent, this is super weird. Using &#8220;<span style="font-family: Helvetica; line-height: normal;">Maha 1.0 (iPhone Simulator; iPhone OS 4.2; en_US)&#8221; as the user agent, which is the default, makes me fail. But if I copy Twitterific&#8217;s user agent &#8220;</span><span style="font-family: Helvetica; line-height: normal;">Twitterrific/4.0 CFNetwork/454.11.5 Darwin/10.6.0 (i386)&#8221;, it works like a charm. So my solution is

<div class="wp_syntax"><div class="code"><pre class="objc" style="font-family:monospace;"><span style="color: #002200;">&#91;</span>request addRequestHeader<span style="color: #002200;">:</span><span style="color: #bf1d1a;">@</span><span style="color: #bf1d1a;">&quot;User-Agent&quot;</span> value<span style="color: #002200;">:</span><span style="color: #bf1d1a;">@</span><span style="color: #bf1d1a;">&quot;Maha/1.0 CFNetwork/454.11.5 Darwin/10.6.0 (i386)&quot;</span><span style="color: #002200;">&#93;</span>;</pre></div></div>

<p></span></li>
</ul>
<p>And everything works now, tho I don&#8217;t know what was the real problem.</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.b123400.net/?feed=rss2&#038;p=32</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>不讓app hang起來的頹廢方法</title>
		<link>http://blog.b123400.net/?p=24</link>
		<comments>http://blog.b123400.net/?p=24#comments</comments>
		<pubDate>Thu, 13 Jan 2011 12:44:30 +0000</pubDate>
		<dc:creator>b123400</dc:creator>
				<category><![CDATA[電腦野]]></category>

		<guid isPermaLink="false">http://blog.b123400.net/?p=24</guid>
		<description><![CDATA[終於用了一次之前 @moming2k 很喜歡的dispatch_async 好棒好棒 簡單點來說吧，首先要 #include &#60;dispatch/dispatch.h&#62; 之後會hang住的東西丟到裡面去就ok了 dispatch_queue_t gQueue = dispatch_get_global_queue&#40;DISPATCH_QUEUE_PRIORITY_DEFAULT, 0&#41;; dispatch_async&#40;gQueue, ^&#123; ////丟到這裡來 &#125;&#41;; 如果你喜歡的話可以做一條queue dispatch_queue_t myQueue = dispatch_queue_create&#40;&#34;com.mycompany.myqueue&#34;, 0&#41;; 不過一般來說用default的都ok吧]]></description>
			<content:encoded><![CDATA[<p>終於用了一次之前 @moming2k 很喜歡的dispatch_async<br />
好棒好棒<br />
簡單點來說吧，首先要</p>

<div class="wp_syntax"><div class="code"><pre class="objc" style="font-family:monospace;"><span style="color: #6e371a;">#include &lt;dispatch/dispatch.h&gt;</span></pre></div></div>

<p>之後會hang住的東西丟到裡面去就ok了</p>

<div class="wp_syntax"><div class="code"><pre class="objc" style="font-family:monospace;">dispatch_queue_t gQueue <span style="color: #002200;">=</span> dispatch_get_global_queue<span style="color: #002200;">&#40;</span>DISPATCH_QUEUE_PRIORITY_DEFAULT, <span style="color: #2400d9;">0</span><span style="color: #002200;">&#41;</span>;
dispatch_async<span style="color: #002200;">&#40;</span>gQueue, <span style="color: #002200;">^</span><span style="color: #002200;">&#123;</span>
	<span style="color: #11740a; font-style: italic;">////丟到這裡來</span>
<span style="color: #002200;">&#125;</span><span style="color: #002200;">&#41;</span>;</pre></div></div>

<p>如果你喜歡的話可以做一條queue</p>

<div class="wp_syntax"><div class="code"><pre class="objc" style="font-family:monospace;">dispatch_queue_t myQueue <span style="color: #002200;">=</span> dispatch_queue_create<span style="color: #002200;">&#40;</span><span style="color: #bf1d1a;">&quot;com.mycompany.myqueue&quot;</span>, <span style="color: #2400d9;">0</span><span style="color: #002200;">&#41;</span>;</pre></div></div>

<p>不過一般來說用default的都ok吧</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.b123400.net/?feed=rss2&#038;p=24</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MGTwitterEngine on iOS</title>
		<link>http://blog.b123400.net/?p=22</link>
		<comments>http://blog.b123400.net/?p=22#comments</comments>
		<pubDate>Mon, 29 Nov 2010 10:46:12 +0000</pubDate>
		<dc:creator>b123400</dc:creator>
				<category><![CDATA[電腦野]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[objc]]></category>

		<guid isPermaLink="false">http://blog.b123400.net/?p=22</guid>
		<description><![CDATA[對於我這種根基不太好的人來說要setup這個簡直是超麻煩耶 一直都是在github下載然後drag進去project就好了，但這個需要YAJL，OAuthConsumer，TouchJSON呢 然後參考了各種文章後終於弄好了，姑且紀錄一下希望幫到人 首先，OAuthConsumer，TouchJSON都不難入手，跟平常一樣對待就ok了，問題是YAJL 這個直接上來說不能在iOS上跑耶 所以應該用這個：https://github.com/gabriel/yajl-objc 跟著instructions一路set好就沒問題了， 然後去MGTwitterEngineGlobalHeader.h改一下 #define YAJL_AVAILABLE 1 &#160; #define TOUCHJSON_AVAILABLE 1 很好很不錯！]]></description>
			<content:encoded><![CDATA[<p>對於我這種根基不太好的人來說要setup<a href="http://mattgemmell.com/2008/02/22/mgtwitterengine-twitter-from-cocoa">這個</a>簡直是超麻煩耶</p>
<p>一直都是在github下載然後drag進去project就好了，但這個需要<a href="http://lloyd.github.com/yajl/">YAJL</a>，<a href="https://github.com/jdg/oauthconsumer">OAuthConsumer</a>，<a href="https://github.com/schwa/TouchJSON">TouchJSON</a>呢</p>
<p>然後參考了<a href="http://stackoverflow.com/questions/2871829/how-to-setup-mgtwitterengine">各</a><a href="http://icodeblog.com/2010/09/16/dealing-with-the-twitter-oauth-apocalypse/">種</a><a href="http://damienh.org/2009/06/20/setting-up-mgtwitterengine-with-yajl-106-for-iphone-development/">文</a><a href="http://stackoverflow.com/questions/2516355/sudo-port-install-cmake-trouble-for-mgtwitterengine">章</a>後終於弄好了，姑且紀錄一下希望幫到人</p>
<p>首先，<a href="https://github.com/jdg/oauthconsumer">OAuthConsumer</a>，<a href="https://github.com/schwa/TouchJSON">TouchJSON</a>都不難入手，跟平常一樣對待就ok了，問題是<a href="http://lloyd.github.com/yajl/">YAJL</a></p>
<p>這個直接上來說不能在iOS上跑耶</p>
<p>所以應該用這個：<a href="https://github.com/gabriel/yajl-objc">https://github.com/gabriel/yajl-objc</a></p>
<p>跟著instructions一路set好就沒問題了，</p>
<p>然後去MGTwitterEngineGlobalHeader.h改一下</p>

<div class="wp_syntax"><div class="code"><pre class="objc" style="font-family:monospace;"><span style="color: #6e371a;">#define YAJL_AVAILABLE 1</span>
&nbsp;
<span style="color: #6e371a;">#define TOUCHJSON_AVAILABLE 1</span></pre></div></div>

<p>很好很不錯！</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.b123400.net/?feed=rss2&#038;p=22</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting.app裡面的app settings要注意耶</title>
		<link>http://blog.b123400.net/?p=18</link>
		<comments>http://blog.b123400.net/?p=18#comments</comments>
		<pubDate>Fri, 15 Oct 2010 19:25:00 +0000</pubDate>
		<dc:creator>b123400</dc:creator>
				<category><![CDATA[電腦野]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[objc]]></category>

		<guid isPermaLink="false">http://blog.b123400.net/?p=18</guid>
		<description><![CDATA[我看到plist裡面有個叫DefaultValue就以為會幫我handle埋default的情況於是好興奮的去用了 結果原來是，未設定過的話 [[NSUserDefaults standardUserDefaults] whateverForKey:]會return nil 仲要係若無其事的感覺，因為我沒看doc的關係抵死XD 於是以下是解決方法：http://www.btjones.com/2010/05/nsuserdefaults-nil-setting-problem/ 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 - &#40;void&#41;setupDefaults &#123; //get the plist location from the settings bundle NSString *settingsPath = &#91;&#91;&#91;NSBundle [...]]]></description>
			<content:encoded><![CDATA[<p>我看到plist裡面有個叫DefaultValue就以為會幫我handle埋default的情況於是好興奮的去用了<br />
結果原來是，未設定過的話 [[NSUserDefaults standardUserDefaults] whateverForKey:]會return nil<br />
仲要係若無其事的感覺，因為我沒看doc的關係抵死XD</p>
<p>於是以下是解決方法：<a href="http://www.btjones.com/2010/05/nsuserdefaults-nil-setting-problem/">http://www.btjones.com/2010/05/nsuserdefaults-nil-setting-problem/</a></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
</pre></td><td class="code"><pre class="objc" style="font-family:monospace;"><span style="color: #002200;">-</span> <span style="color: #002200;">&#40;</span><span style="color: #a61390;">void</span><span style="color: #002200;">&#41;</span>setupDefaults <span style="color: #002200;">&#123;</span>
    <span style="color: #11740a; font-style: italic;">//get the plist location from the settings bundle</span>
    <span style="color: #400080;">NSString</span> <span style="color: #002200;">*</span>settingsPath <span style="color: #002200;">=</span> <span style="color: #002200;">&#91;</span><span style="color: #002200;">&#91;</span><span style="color: #002200;">&#91;</span><span style="color: #400080;">NSBundle</span> mainBundle<span style="color: #002200;">&#93;</span> bundlePath<span style="color: #002200;">&#93;</span> stringByAppendingPathComponent<span style="color: #002200;">:</span><span style="color: #bf1d1a;">@</span><span style="color: #bf1d1a;">&quot;Settings.bundle&quot;</span><span style="color: #002200;">&#93;</span>;
    <span style="color: #400080;">NSString</span> <span style="color: #002200;">*</span>plistPath <span style="color: #002200;">=</span> <span style="color: #002200;">&#91;</span>settingsPath stringByAppendingPathComponent<span style="color: #002200;">:</span><span style="color: #bf1d1a;">@</span><span style="color: #bf1d1a;">&quot;Root.plist&quot;</span><span style="color: #002200;">&#93;</span>;
&nbsp;
    <span style="color: #11740a; font-style: italic;">//get the preference specifiers array which contains the settings</span>
    <span style="color: #400080;">NSDictionary</span> <span style="color: #002200;">*</span>settingsDictionary <span style="color: #002200;">=</span> <span style="color: #002200;">&#91;</span><span style="color: #400080;">NSDictionary</span> dictionaryWithContentsOfFile<span style="color: #002200;">:</span>plistPath<span style="color: #002200;">&#93;</span>;
    <span style="color: #400080;">NSArray</span> <span style="color: #002200;">*</span>preferencesArray <span style="color: #002200;">=</span> <span style="color: #002200;">&#91;</span>settingsDictionary objectForKey<span style="color: #002200;">:</span><span style="color: #bf1d1a;">@</span><span style="color: #bf1d1a;">&quot;PreferenceSpecifiers&quot;</span><span style="color: #002200;">&#93;</span>;
&nbsp;
    <span style="color: #11740a; font-style: italic;">//use the shared defaults object</span>
    <span style="color: #400080;">NSUserDefaults</span> <span style="color: #002200;">*</span>defaults <span style="color: #002200;">=</span> <span style="color: #002200;">&#91;</span><span style="color: #400080;">NSUserDefaults</span> standardUserDefaults<span style="color: #002200;">&#93;</span>;
&nbsp;
    <span style="color: #11740a; font-style: italic;">//for each preference item, set its default if there is no value set</span>
    <span style="color: #a61390;">for</span><span style="color: #002200;">&#40;</span><span style="color: #400080;">NSDictionary</span> <span style="color: #002200;">*</span>item <span style="color: #a61390;">in</span> preferencesArray<span style="color: #002200;">&#41;</span> <span style="color: #002200;">&#123;</span>
&nbsp;
        <span style="color: #11740a; font-style: italic;">//get the item key, if there is no key then we can skip it</span>
        <span style="color: #400080;">NSString</span> <span style="color: #002200;">*</span>key <span style="color: #002200;">=</span> <span style="color: #002200;">&#91;</span>item objectForKey<span style="color: #002200;">:</span><span style="color: #bf1d1a;">@</span><span style="color: #bf1d1a;">&quot;Key&quot;</span><span style="color: #002200;">&#93;</span>;
        <span style="color: #a61390;">if</span> <span style="color: #002200;">&#40;</span>key<span style="color: #002200;">&#41;</span> <span style="color: #002200;">&#123;</span>
&nbsp;
            <span style="color: #11740a; font-style: italic;">//check to see if the value and default value are set</span>
            <span style="color: #11740a; font-style: italic;">//if a default value exists and the value is not set, use the default</span>
            <span style="color: #a61390;">id</span> value <span style="color: #002200;">=</span> <span style="color: #002200;">&#91;</span>defaults objectForKey<span style="color: #002200;">:</span>key<span style="color: #002200;">&#93;</span>;
            <span style="color: #a61390;">id</span> defaultValue <span style="color: #002200;">=</span> <span style="color: #002200;">&#91;</span>item objectForKey<span style="color: #002200;">:</span><span style="color: #bf1d1a;">@</span><span style="color: #bf1d1a;">&quot;DefaultValue&quot;</span><span style="color: #002200;">&#93;</span>;
            <span style="color: #a61390;">if</span><span style="color: #002200;">&#40;</span>defaultValue <span style="color: #002200;">&amp;</span>amp;<span style="color: #002200;">&amp;</span>amp; <span style="color: #002200;">!</span>value<span style="color: #002200;">&#41;</span> <span style="color: #002200;">&#123;</span>
                <span style="color: #002200;">&#91;</span>defaults setObject<span style="color: #002200;">:</span>defaultValue forKey<span style="color: #002200;">:</span>key<span style="color: #002200;">&#93;</span>;
            <span style="color: #002200;">&#125;</span>
        <span style="color: #002200;">&#125;</span>
    <span style="color: #002200;">&#125;</span>
&nbsp;
    <span style="color: #11740a; font-style: italic;">//write the changes to disk</span>
    <span style="color: #002200;">&#91;</span>defaults synchronize<span style="color: #002200;">&#93;</span>;
<span style="color: #002200;">&#125;</span></pre></td></tr></table></div>

<p>適當的在application:didFinishLaunchingWithOptions: 裡面觸發就很好了</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.b123400.net/?feed=rss2&#038;p=18</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>iphone os 3 和iOS4的 CLLocation getDistanceFrom: 和 distanceFromLocation:</title>
		<link>http://blog.b123400.net/?p=11</link>
		<comments>http://blog.b123400.net/?p=11#comments</comments>
		<pubDate>Fri, 15 Oct 2010 19:14:17 +0000</pubDate>
		<dc:creator>b123400</dc:creator>
				<category><![CDATA[電腦野]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[objc]]></category>

		<guid isPermaLink="false">http://blog.b123400.net/?p=11</guid>
		<description><![CDATA[終於遇到第一次轉版本上的問題，其實內容都沒什麼大不了，只是method名轉了 google到了的各種解決方法中最喜歡這個： http://0xced.blogspot.com/2010/09/cllocation-getdistancefrom-vs.html 1 2 3 4 5 6 7 main.m &#160; #import &#60;objc/runtime.h&#62; Method getDistanceFrom = class_getInstanceMethod&#40;&#91;CLLocation class&#93;, @selector&#40;getDistanceFrom:&#41;&#41;; class_addMethod&#40;&#91;CLLocation class&#93;, @selector&#40;distanceFromLocation:&#41;, method_getImplementation&#40;getDistanceFrom&#41;, method_getTypeEncoding&#40;getDistanceFrom&#41;&#41;; 好帥]]></description>
			<content:encoded><![CDATA[<p>終於遇到第一次轉版本上的問題，其實內容都沒什麼大不了，只是method名轉了</p>
<p>google到了的各種解決方法中最喜歡這個：</p>
<p><a href="http://0xced.blogspot.com/2010/09/cllocation-getdistancefrom-vs.html">http://0xced.blogspot.com/2010/09/cllocation-getdistancefrom-vs.html</a></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
</pre></td><td class="code"><pre class="objc" style="font-family:monospace;">main.m
&nbsp;
<span style="color: #6e371a;">#import &lt;objc/runtime.h&gt;</span>
Method getDistanceFrom <span style="color: #002200;">=</span> class_getInstanceMethod<span style="color: #002200;">&#40;</span><span style="color: #002200;">&#91;</span>CLLocation class<span style="color: #002200;">&#93;</span>, <span style="color: #a61390;">@selector</span><span style="color: #002200;">&#40;</span>getDistanceFrom<span style="color: #002200;">:</span><span style="color: #002200;">&#41;</span><span style="color: #002200;">&#41;</span>;
class_addMethod<span style="color: #002200;">&#40;</span><span style="color: #002200;">&#91;</span>CLLocation class<span style="color: #002200;">&#93;</span>, <span style="color: #a61390;">@selector</span><span style="color: #002200;">&#40;</span>distanceFromLocation<span style="color: #002200;">:</span><span style="color: #002200;">&#41;</span>,
method_getImplementation<span style="color: #002200;">&#40;</span>getDistanceFrom<span style="color: #002200;">&#41;</span>,
method_getTypeEncoding<span style="color: #002200;">&#40;</span>getDistanceFrom<span style="color: #002200;">&#41;</span><span style="color: #002200;">&#41;</span>;</pre></td></tr></table></div>

<p>好帥</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.b123400.net/?feed=rss2&#038;p=11</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

