<?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>爱凝依依</title>
	<atom:link href="http://anotherbug.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://anotherbug.com/blog</link>
	<description>Life Love Tears and Jesus</description>
	<lastBuildDate>Mon, 13 Feb 2012 02:38:06 +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>CMake Hello World篇</title>
		<link>http://anotherbug.com/blog/2012/02/cmake-hello-world%e7%af%87/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=cmake-hello-world%25e7%25af%2587</link>
		<comments>http://anotherbug.com/blog/2012/02/cmake-hello-world%e7%af%87/#comments</comments>
		<pubDate>Mon, 13 Feb 2012 02:37:00 +0000</pubDate>
		<dc:creator>mousepotato</dc:creator>
				<category><![CDATA[Technique]]></category>
		<category><![CDATA[CMake]]></category>

		<guid isPermaLink="false">http://anotherbug.com/blog/?p=24528</guid>
		<description><![CDATA[CMake 全程 Cross-platform Make，一个非常好的开源编译系统。因为它的跨平台特性，所以可以很方便的生产Windows下的VS项目文件，Linux下的makefile，以及Mac X下的XCode项目。下面简单介绍如何使用CMake在Linux下编译Hello World。 &#160; 一、目录结构 新建文件目录cmake_example，里面的目录结构如下。 &#160; &#160; &#160; 二、编写Hello World代码。 &#160; hello.cc &#160; #include "hello.h" #include &#60;iostream&#62; using namespace std; void Hello::Print(){ cout&#60;&#60; "Hello World!" &#60;&#60;endl; } &#160; hello.h &#160; #ifndef _hello_h #define _hello_h class Hello{ public: void Print(); }; #endif &#160; test.cc &#160; #include &#60;iostream&#62; #include "hello.h" int main(){ Hello().Print(); [...]]]></description>
			<content:encoded><![CDATA[<p>CMake 全程 Cross-platform Make，一个非常好的开源编译系统。因为它的跨平台特性，所以可以很方便的生产Windows下的VS项目文件，Linux下的makefile，以及Mac X下的XCode项目。下面简单介绍如何使用CMake在Linux下编译Hello World。</p>
<p>&nbsp;</p>
<h2>一、目录结构</h2>
<p>新建文件目录cmake_example，里面的目录结构如下。</p>
<p>&nbsp;</p>
<p><a href="http://anotherbug.com/blog/wp-content/uploads/2012/02/image.png"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://anotherbug.com/blog/wp-content/uploads/2012/02/image_thumb.png" width="255" height="169"></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<h2>二、编写Hello World代码。</h2>
<p>&nbsp;</p>
<p><font color="#ff0000">hello.cc</font></p>
<p>&nbsp;</p>
<pre class="prettyprint">#include "hello.h"
#include &lt;iostream&gt;

using namespace std;

void Hello::Print(){
	cout&lt;&lt; "Hello World!" &lt;&lt;endl;
}
</pre>
<p>&nbsp;</p>
<p><font color="#ff0000">hello.h</font></p>
<p>&nbsp;</p>
<pre class="prettyprint">#ifndef _hello_h
#define _hello_h

class Hello{
	public:
		void Print();
};
#endif
</pre>
<p>&nbsp;</p>
<p><font color="#ff0000">test.cc</font></p>
<p><font color="#ff0000"></font>&nbsp;</p>
<pre class="prettyprint">#include &lt;iostream&gt;
#include "hello.h"

int main(){
	Hello().Print();
	return 0;
}
</pre>
<p><font color="#ff0000"></font>&nbsp;</p>
<h2>三、编写CMakeLists.txt文件</h2>
<p><font color="#ff0000">Top-level CMakeLists.txt</font></p>
<pre class="prettyprint">&nbsp;</pre>
<pre class="prettyprint"># Top-Level CmakeLists.txt
PROJECT( HELLO )

ADD_SUBDIRECTORY( Hello )
ADD_SUBDIRECTORY( Test )
</pre>
<p><font color="#ff0000">Hello目录下CMakeLists.txt</font></p>
<p><font color="#ff0000"></font>&nbsp;</p>
<pre class="prettyprint">#makeLists.txt in Hello dir
# Adds a library called Hello (libHello.a under Linux) from the source </pre>
<pre class="prettyprint"># file hello.cc
ADD_LIBRARY( Hello hello )</pre>
<p><font color="#ff0000"></font>&nbsp;</p>
<p><font color="#ff0000">Test目录下CMakeLists.txt</font></p>
<p><font color="#ff0000"></font>&nbsp;</p>
<pre class="prettyprint"># CmakeLists.txt in Test dir
# Make sure the compiler can find include files from our Hello library.
INCLUDE_DIRECTORIES(${HELLO_SOURCE_DIR}/Hello)
</pre>
<pre class="prettyprint"># Add binary called "helloWorld" that is built from the source file "test.cc".
# The extension is automatically found.
ADD_EXECUTABLE(helloWorld test)
</pre>
<pre class="prettyprint"># Link the executable to the Hello library.
TARGET_LINK_LIBRARIES(helloWorld Hello)</pre>
<p><font color="#ff0000"></font>&nbsp;</p>
<h2>四、编译运行</h2>
<p>在根目录下输入</p>
<pre class="prettyprint">cmake .</pre>
<p>&nbsp;</p>
<p>然后在Test目录输入</p>
<p>./helloWorld</p>
<p>&nbsp;</p>
<p>具体文件可以<a href="http://anotherbug.com/disk/cmake_example.zip" target="_blank">点此下载cmake_example.zip</a></p>
]]></content:encoded>
			<wfw:commentRss>http://anotherbug.com/blog/2012/02/cmake-hello-world%e7%af%87/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>outlook 2010 如何初始化</title>
		<link>http://anotherbug.com/blog/2012/02/outlook-2010-%e5%a6%82%e4%bd%95%e5%88%9d%e5%a7%8b%e5%8c%96/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=outlook-2010-%25e5%25a6%2582%25e4%25bd%2595%25e5%2588%259d%25e5%25a7%258b%25e5%258c%2596</link>
		<comments>http://anotherbug.com/blog/2012/02/outlook-2010-%e5%a6%82%e4%bd%95%e5%88%9d%e5%a7%8b%e5%8c%96/#comments</comments>
		<pubDate>Thu, 02 Feb 2012 06:43:00 +0000</pubDate>
		<dc:creator>mousepotato</dc:creator>
				<category><![CDATA[Technique]]></category>
		<category><![CDATA[outlook]]></category>

		<guid isPermaLink="false">http://anotherbug.com/blog/?p=24523</guid>
		<description><![CDATA[刚刚把outlook 2010的收信箱弄的一团糟，打开提示找不到.pst文件，设置pst文件后又有重复，网上搜索了一个start all over 的方法： &#160; 开始—&#62; 运行—&#62; outlook.exe /importprf .\.prf &#160; 然后一切都安静了～～～]]></description>
			<content:encoded><![CDATA[<p><font color="#000000">刚刚把outlook 2010的收信箱弄的一团糟，打开提示找不到.pst文件，设置pst文件后又有重复，网上搜索了一个start all over 的方法：</font></p>
<p>&nbsp;</p>
<p><font style="background-color: #809ec2" color="#ff0000"> 开始—&gt; 运行—&gt; outlook.exe /importprf .\.prf</font></p>
<p><font style="" color="#ff0000"></font>&nbsp;</p>
<p><font style="background-color: #ffffff" color="#000000">然后一切都安静了～～～</font></p>
]]></content:encoded>
			<wfw:commentRss>http://anotherbug.com/blog/2012/02/outlook-2010-%e5%a6%82%e4%bd%95%e5%88%9d%e5%a7%8b%e5%8c%96/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>越獄 (Jailbreaking) 到底可不可以？</title>
		<link>http://anotherbug.com/blog/2012/01/%e8%b6%8a%e7%8d%84-jailbreaking-%e5%88%b0%e5%ba%95%e5%8f%af%e4%b8%8d%e5%8f%af%e4%bb%a5%ef%bc%9f/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=%25e8%25b6%258a%25e7%258d%2584-jailbreaking-%25e5%2588%25b0%25e5%25ba%2595%25e5%258f%25af%25e4%25b8%258d%25e5%258f%25af%25e4%25bb%25a5%25ef%25bc%259f</link>
		<comments>http://anotherbug.com/blog/2012/01/%e8%b6%8a%e7%8d%84-jailbreaking-%e5%88%b0%e5%ba%95%e5%8f%af%e4%b8%8d%e5%8f%af%e4%bb%a5%ef%bc%9f/#comments</comments>
		<pubDate>Mon, 30 Jan 2012 02:13:00 +0000</pubDate>
		<dc:creator>mousepotato</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Technique]]></category>
		<category><![CDATA[Jailbreak]]></category>

		<guid isPermaLink="false">http://anotherbug.com/blog/?p=24521</guid>
		<description><![CDATA[这个问题我和不少人讨论过，记得在某个时间国内的某个微博上某个名人@了好些个popular的active的IT网民这个问题。答案众说纷纭。我再此讨论也只是一家之言。 &#160; 首先， 基本的facts是：根据美国《数字千年法案》中的一项豁免条款，越狱苹果iPhone的行为是合法的。 参见: 美国修改《数字千年版权法》的反垄断法解读 。 &#160; 其次， 在这个破解合法的外衣下也会衍生出很多不同。如果你理解的破解只是可以不用花$0.99或者$9.99刀去买某些实用的软件时。那么可以说你的破解又是不合法的了。因为软件是有版权的，尤其是我们工作在前线的程序员辛苦敲出来的。 &#160; 再次， 使用破解的手机/iPod/iPad等去下载原来未破解的机器不可以安装的软件。我的理解是合法的。这也正是破解后的目的。这些破解后可以安装的软件分为免费的和付费的两种。你使用免费的软件合理的feeling是心存感激或者是donate，因为程序猿真不容易，他们辛苦让你的life easier。付费你如果在去使用破解版的话又是不合法的了！！ ^_^ &#160; 总的来说，破解有理，合法不合法看个人使用！ &#160; &#160; 如果你赞成这个观点，现在有个考验：这一豁免条款即将到期，而数字权利组织希望美国政府能更新并延长这项条款。电子前线基金会2010年时曾采取行动，确保越狱行为仍受《数字千年法案》豁免条款的保护。今年，该组织希望将这一豁免条款的适用范围扩大至 平板电脑和视频游戏系统。为此，该组织发起了“越狱不是犯罪”的宣传活动，并建立了相关网站 jailbreakingisnotacrime.org 大家前往sign吧！！]]></description>
			<content:encoded><![CDATA[<p>这个问题我和不少人讨论过，记得在某个时间国内的某个微博上某个名人@了好些个popular的active的IT网民这个问题。答案众说纷纭。我再此讨论也只是一家之言。</p>
<p>&nbsp;</p>
<p>首先， 基本的facts是：根据美国《数字千年法案》中的一项豁免条款，越狱苹果iPhone的行为是合法的。 参见: <a href="http://article.chinalawinfo.com/Article_Detail.asp?ArticleId=65691" target="_blank">美国修改《数字千年版权法》的反垄断法解读</a> 。</p>
<p>&nbsp;</p>
<p>其次， 在这个破解合法的外衣下也会衍生出很多不同。如果你理解的破解只是可以不用花$0.99或者$9.99刀去买某些实用的软件时。那么可以说你的破解又是不合法的了。因为软件是有版权的，尤其是我们工作在前线的程序员辛苦敲出来的。</p>
<p>&nbsp;</p>
<p>再次， 使用破解的手机/iPod/iPad等去下载原来未破解的机器不可以安装的软件。我的理解是合法的。这也正是破解后的目的。这些破解后可以安装的软件分为免费的和付费的两种。你使用免费的软件合理的feeling是心存感激或者是donate，因为程序猿真不容易，他们辛苦让你的life easier。付费你如果在去使用破解版的话又是不合法的了！！ ^_^</p>
<p>&nbsp;</p>
<p>总的来说，破解有理，合法不合法看个人使用！</p>
<p>&nbsp;</p>
<p align="left"><script type="text/javascript"><!--
google_ad_client = "ca-pub-6960703437272224";
/* Text_336&#42;280 */
google_ad_slot = "8351080151";
google_ad_width = 336;
google_ad_height = 280;
//-->
</script><script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p>&nbsp;</p>
<p>如果你赞成这个观点，现在有个考验：这一豁免条款即将到期，而数字权利组织希望美国政府能更新并延长这项条款。电子前线基金会2010年时曾采取行动，确保越狱行为仍受《数字千年法案》豁免条款的保护。今年，该组织希望将这一豁免条款的适用范围扩大至 平板电脑和视频游戏系统。为此，该组织发起了“越狱不是犯罪”的宣传活动，并建立了相关网站 <a href="http://jailbreakingisnotacrime.org" target="_blank">jailbreakingisnotacrime.org</a></p>
<p>大家前往sign吧！！</p>
]]></content:encoded>
			<wfw:commentRss>http://anotherbug.com/blog/2012/01/%e8%b6%8a%e7%8d%84-jailbreaking-%e5%88%b0%e5%ba%95%e5%8f%af%e4%b8%8d%e5%8f%af%e4%bb%a5%ef%bc%9f/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>两首我喜爱的歌曲</title>
		<link>http://anotherbug.com/blog/2012/01/%e4%b8%a4%e9%a6%96%e6%88%91%e5%96%9c%e7%88%b1%e7%9a%84%e6%ad%8c%e6%9b%b2/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=%25e4%25b8%25a4%25e9%25a6%2596%25e6%2588%2591%25e5%2596%259c%25e7%2588%25b1%25e7%259a%2584%25e6%25ad%258c%25e6%259b%25b2</link>
		<comments>http://anotherbug.com/blog/2012/01/%e4%b8%a4%e9%a6%96%e6%88%91%e5%96%9c%e7%88%b1%e7%9a%84%e6%ad%8c%e6%9b%b2/#comments</comments>
		<pubDate>Wed, 11 Jan 2012 08:00:00 +0000</pubDate>
		<dc:creator>mousepotato</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Jesus]]></category>
		<category><![CDATA[Love]]></category>

		<guid isPermaLink="false">http://anotherbug.com/blog/?p=24518</guid>
		<description><![CDATA[1、最美丽的路 &#160; 爱是一条不好走的路 它需要你不断付出 若要有一生一世的幸福 就要有决心甘愿让步 有时会有风雨拦阻 有时会有病痛困苦 但若是愿意彼此背负 即使再难也能克服 有时爱的有些辛苦 有时累得无法下厨 但若是愿意彼此呵护 爱仍是一条最美丽的路 爱是一条不好走的路 它需要你每日维护 若要有平安和喜乐同住 就要有耐心彼此坚固 有爱为蓝图 有爱为基础  爱仍是一条 最美丽的路 2、爱我们的家 每个人爱它家就有光彩，每个人付出家就不孤独。 每个人珍惜家就有甜蜜，每个人宽恕家就有幸福。 让爱天天住你家，让爱天天住我家， 不分日夜秋冬春夏全心全意爱我们的家。]]></description>
			<content:encoded><![CDATA[<h3>1、最美丽的路</h3>
<p>&nbsp;</p>
<pre>爱是一条不好走的路 它需要你不断付出

若要有一生一世的幸福 就要有决心甘愿让步 

有时会有风雨拦阻 有时会有病痛困苦

但若是愿意彼此背负 即使再难也能克服

有时爱的有些辛苦 有时累得无法下厨

但若是愿意彼此呵护 爱仍是一条最美丽的路 

爱是一条不好走的路 它需要你每日维护

若要有平安和喜乐同住 就要有耐心彼此坚固</pre>
<pre></pre>
<pre>有爱为蓝图 有爱为基础  爱仍是一条 最美丽的路</pre>
<pre></pre>
<pre></pre>
<h3>2、爱我们的家</h3>
<pre></pre>
<pre></pre>
<pre>每个人爱它家就有光彩，每个人付出家就不孤独。

每个人珍惜家就有甜蜜，每个人宽恕家就有幸福。

让爱天天住你家，让爱天天住我家，

不分日夜秋冬春夏全心全意爱我们的家。</pre>
<pre></pre>
]]></content:encoded>
			<wfw:commentRss>http://anotherbug.com/blog/2012/01/%e4%b8%a4%e9%a6%96%e6%88%91%e5%96%9c%e7%88%b1%e7%9a%84%e6%ad%8c%e6%9b%b2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://anotherbug.com/blog/audio/zuimeilidelu.mp3" length="4254768" type="audio/mpeg" />
<enclosure url="http://anotherbug.com/blog/audio/aiwomendejia.mp3" length="3890421" type="audio/mpeg" />
		</item>
		<item>
		<title>测试浏览器对HTML5的支持程度</title>
		<link>http://anotherbug.com/blog/2012/01/%e6%b5%8b%e8%af%95%e6%b5%8f%e8%a7%88%e5%99%a8%e5%af%b9html5%e7%9a%84%e6%94%af%e6%8c%81%e7%a8%8b%e5%ba%a6/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=%25e6%25b5%258b%25e8%25af%2595%25e6%25b5%258f%25e8%25a7%2588%25e5%2599%25a8%25e5%25af%25b9html5%25e7%259a%2584%25e6%2594%25af%25e6%258c%2581%25e7%25a8%258b%25e5%25ba%25a6</link>
		<comments>http://anotherbug.com/blog/2012/01/%e6%b5%8b%e8%af%95%e6%b5%8f%e8%a7%88%e5%99%a8%e5%af%b9html5%e7%9a%84%e6%94%af%e6%8c%81%e7%a8%8b%e5%ba%a6/#comments</comments>
		<pubDate>Tue, 10 Jan 2012 04:32:00 +0000</pubDate>
		<dc:creator>mousepotato</dc:creator>
				<category><![CDATA[Technique]]></category>
		<category><![CDATA[HTML5]]></category>

		<guid isPermaLink="false">http://anotherbug.com/blog/?p=24516</guid>
		<description><![CDATA[一个叫做HTML5 Test的网站可以测试和了解你的浏览器对HTML5特性的支持程度。 网址：http://html5test.com/index.html &#160; 我的Chrome Dev 17版本的分数：374。好像是目前最高的分数。当然因为这是Dev版本。 &#160;]]></description>
			<content:encoded><![CDATA[<p>一个叫做HTML5 Test的网站可以测试和了解你的浏览器对HTML5特性的支持程度。</p>
<p>网址：<a href="http://html5test.com/index.html">http://html5test.com/index.html</a></p>
<p>&nbsp;</p>
<p>我的Chrome Dev 17版本的分数：374。好像是目前最高的分数。当然因为这是Dev版本。</p>
<p>&nbsp;</p>
<p><a href="http://anotherbug.com/blog/wp-content/uploads/2012/01/image1.png"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://anotherbug.com/blog/wp-content/uploads/2012/01/image_thumb1.png" width="471" height="319"></a></p>
]]></content:encoded>
			<wfw:commentRss>http://anotherbug.com/blog/2012/01/%e6%b5%8b%e8%af%95%e6%b5%8f%e8%a7%88%e5%99%a8%e5%af%b9html5%e7%9a%84%e6%94%af%e6%8c%81%e7%a8%8b%e5%ba%a6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>新型的商业模式： You PAY What You GET</title>
		<link>http://anotherbug.com/blog/2012/01/%e6%96%b0%e5%9e%8b%e7%9a%84%e5%95%86%e4%b8%9a%e6%a8%a1%e5%bc%8f%ef%bc%9a-you-pay-what-you-get/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=%25e6%2596%25b0%25e5%259e%258b%25e7%259a%2584%25e5%2595%2586%25e4%25b8%259a%25e6%25a8%25a1%25e5%25bc%258f%25ef%25bc%259a-you-pay-what-you-get</link>
		<comments>http://anotherbug.com/blog/2012/01/%e6%96%b0%e5%9e%8b%e7%9a%84%e5%95%86%e4%b8%9a%e6%a8%a1%e5%bc%8f%ef%bc%9a-you-pay-what-you-get/#comments</comments>
		<pubDate>Tue, 03 Jan 2012 07:06:00 +0000</pubDate>
		<dc:creator>mousepotato</dc:creator>
				<category><![CDATA[Humanity]]></category>
		<category><![CDATA[life]]></category>

		<guid isPermaLink="false">http://anotherbug.com/blog/?p=24511</guid>
		<description><![CDATA[最近发现两个网站很有意思： &#160; 1、http://www.gym-pact.com/ 一个移动健康应用。 用户与这个应用签订协议，协议的主要内容会包括一周去多少次体育馆、待多久的时间、没有待到那么久则要被罚款等。如果用户按照协议完成了这些承诺，那么他们则会获得现金奖励；反之则会被罚款。 &#160; (Image from 36kr.com) &#160; 2、http://21habit.com/ 新年伊始，总会有很多人在微博、社交网络或其它场合发表自己的新年计划或个人目标。但是这种表态执行的少，不了了之的多。如果你非常想完成自己的计划或目标，又担心无法坚持实施，那可以试试21habit。使用21habit是免费的，用户也可以存入少量的钱到网站督促自己实施计划。这种方式叫“承诺模式”，用户将为自己的挑战投入真金白银。刚开始的时候你可以存入21美元，在达成当天目标后获得1美元返还。如果达不成当天目标则将被处以1美元的罚金，并由21habit捐赠给慈善机构。 &#160; &#160; &#160; 哈哈，You PAY What You GET。似乎钱被用在改变人们的惰性和习惯上了。你很care么？]]></description>
			<content:encoded><![CDATA[<p>最近发现两个网站很有意思：</p>
<p>&nbsp;</p>
<p>1、<a href="http://www.gym-pact.com/">http://www.gym-pact.com/</a> 一个移动健康应用。</p>
<p>用户与这个应用签订协议，协议的主要内容会包括一周去多少次体育馆、待多久的时间、没有待到那么久则要被罚款等。如果用户按照协议完成了这些承诺，那么他们则会获得现金奖励；反之则会被罚款。</p>
<p>&nbsp;</p>
<p><img style="display: block; float: none; margin-left: auto; margin-right: auto" src="http://img01.36krcnd.com/wp-content/uploads/2012/01/gympact.jpg" width="247" height="371"></p>
<blockquote></blockquote>
<p align="center">(Image from 36kr.com)</p>
<p>&nbsp;</p>
<p>2、<a href="http://21habit.com/">http://21habit.com/</a> 新年伊始，总会有很多人在微博、社交网络或其它场合发表自己的新年计划或个人目标。但是这种表态执行的少，不了了之的多。如果你非常想完成自己的计划或目标，又担心无法坚持实施，那可以试试<a href="http://21habit.com/">21habit</a>。使用21habit是免费的，用户也可以存入少量的钱到网站督促自己实施计划。这种方式叫“承诺模式”，用户将为自己的挑战投入真金白银。刚开始的时候你可以存入21美元，在达成当天目标后获得1美元返还。如果达不成当天目标则将被处以1美元的罚金，并由21habit捐赠给慈善机构。</p>
<p>&nbsp;</p>
<p><a href="http://anotherbug.com/blog/wp-content/uploads/2012/01/image.png"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto; padding-top: 0px" title="image" border="0" alt="image" src="http://anotherbug.com/blog/wp-content/uploads/2012/01/image_thumb.png" width="345" height="318"></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><strong>哈哈，You PAY What You GET。似乎钱被用在改变人们的惰性和习惯上了。你很care么？</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://anotherbug.com/blog/2012/01/%e6%96%b0%e5%9e%8b%e7%9a%84%e5%95%86%e4%b8%9a%e6%a8%a1%e5%bc%8f%ef%bc%9a-you-pay-what-you-get/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Way To Helen, GA</title>
		<link>http://anotherbug.com/blog/2011/12/way-to-helen-ga/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=way-to-helen-ga</link>
		<comments>http://anotherbug.com/blog/2011/12/way-to-helen-ga/#comments</comments>
		<pubDate>Fri, 30 Dec 2011 20:40:00 +0000</pubDate>
		<dc:creator>mousepotato</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Jesus]]></category>

		<guid isPermaLink="false">http://anotherbug.com/blog/?p=24507</guid>
		<description><![CDATA[&#160; 耶穌說：“我就是道路、真理、生命；若不藉著我，沒有人能到父那裡去。你们若认识我，也就认识我的父。从今以後，你们认识他，并且已经看见他。” &#8211;约翰福音14章6-7节]]></description>
			<content:encoded><![CDATA[<p><a href="http://anotherbug.com/blog/wp-content/uploads/2011/12/IMG_0256.png"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto; padding-top: 0px" title="IMG_0256" border="0" alt="IMG_0256" src="http://anotherbug.com/blog/wp-content/uploads/2011/12/IMG_0256_thumb.png" width="347" height="518"></a></p>
<p><b></b>&nbsp;
<p align="justify"><b>耶穌說：“我就是道路、真理、生命；若不藉著我，沒有人能到父那裡去。你们若认识我，也就认识我的父。从今以後，你们认识他，并且已经看见他。”</b>
<p align="right">&#8211;约翰福音14章6-7节</p>
]]></content:encoded>
			<wfw:commentRss>http://anotherbug.com/blog/2011/12/way-to-helen-ga/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2011年之豆瓣统计</title>
		<link>http://anotherbug.com/blog/2011/12/2011%e5%b9%b4%e4%b9%8b%e8%b1%86%e7%93%a3%e7%bb%9f%e8%ae%a1/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=2011%25e5%25b9%25b4%25e4%25b9%258b%25e8%25b1%2586%25e7%2593%25a3%25e7%25bb%259f%25e8%25ae%25a1</link>
		<comments>http://anotherbug.com/blog/2011/12/2011%e5%b9%b4%e4%b9%8b%e8%b1%86%e7%93%a3%e7%bb%9f%e8%ae%a1/#comments</comments>
		<pubDate>Mon, 26 Dec 2011 05:12:00 +0000</pubDate>
		<dc:creator>mousepotato</dc:creator>
				<category><![CDATA[Humanity]]></category>
		<category><![CDATA[豆瓣]]></category>

		<guid isPermaLink="false">http://anotherbug.com/blog/?p=24502</guid>
		<description><![CDATA[&#160; 又到年关，统计了一下2011年豆瓣上的记录。 &#160; 一、书籍 少的可怜就一本，失恋33天，有许多没有记录，不过说实话看完整的真不多。2012要努力。 &#160; &#160; 二、电影 &#160; 2011年总共看了47部电影。真实数字也应该差不多，4月和11月一部都没看。唉！ &#160; &#160; &#160; 三、音乐 记录的只有四张专辑，可实际听的远不止这些。2011年在音乐上投入的比较多。从购买tuneup整理Mac OS上的歌曲乱码，到最后把音乐库完整的从Mac平台移动到Win下。使用了Spotify，Google Music到最近刚刚使用的iTunes Match。 不过自己还一直是个门外汉。只能是一个业余爱好者。 &#160; &#160; &#160; 本文使用了豆瓣统计工具。链接在此：http://imnerd.org/douban/ &#160;]]></description>
			<content:encoded><![CDATA[<p>&nbsp;</p>
<p>又到年关，统计了一下2011年豆瓣上的记录。</p>
<p>&nbsp;</p>
<h3>一、书籍</h3>
<p>少的可怜就一本，失恋33天，有许多没有记录，不过说实话看完整的真不多。2012要努力。</p>
<p>&nbsp;</p>
<p><img id="chartMonth" src="http://chart.apis.google.com/chart?chs=400x200&amp;cht=bvs&amp;chd=s:AAAAAAAAAAMA&amp;chxt=y,x,x&amp;chxl=0:|0|1|2|3|4|5|1:|1|2|3|4|5|6|7|8|9|10|11|12|2:|month&amp;chxp=2,100&amp;chf=c,lg,90,76A4FB,0.5,ffffff,0|bg,s,EFEFEF&amp;chco=0000ff&amp;chtt=1 books+you+added+in+year+2011|divided+by+month">
<div id="doubanlist">
<table>
<tbody>
<tr></tr>
<tr>
<td><a title="失恋33天" href="http://book.douban.com/subject/4238754/" target="_blank"><img border="0" src="http://img3.douban.com/spic/s6980516.jpg"></a></td>
</tr>
</tbody>
</table>
</div>
<p>&nbsp;</p>
<h3>二、电影</h3>
<p>&nbsp;</p>
<p>2011年总共看了47部电影。真实数字也应该差不多，4月和11月一部都没看。唉！</p>
<p>&nbsp;</p>
<p><img id="chartMonth" src="http://chart.apis.google.com/chart?chs=400x200&amp;cht=bvs&amp;chd=s:CECAGEGMtGAI&amp;chxt=y,x,x&amp;chxl=0:|0|5|10|15|20|25|30|1:|1|2|3|4|5|6|7|8|9|10|11|12|2:|month&amp;chxp=2,100&amp;chf=c,lg,90,76A4FB,0.5,ffffff,0|bg,s,EFEFEF&amp;chco=0000ff&amp;chtt=47 movies+you+added+in+year+2011|divided+by+month">
<div id="doubanlist">
<table>
<tbody>
<tr></tr>
<tr>
<td><a title="Mission: Impossible - Ghost Protocol" href="http://movie.douban.com/subject/3068206/" target="_blank"><img border="0" src="http://img3.douban.com/spic/s6975693.jpg"></a></td>
<td><a title="Sideways" href="http://movie.douban.com/subject/1291833/" target="_blank"><img border="0" src="http://img1.douban.com/spic/s2667291.jpg"></a></td>
<td><a title="鸿门宴" href="http://movie.douban.com/subject/5908477/" target="_blank"><img border="0" src="http://img3.douban.com/spic/s6989369.jpg"></a></td>
<td><a title="Hugo" href="http://movie.douban.com/subject/2028677/" target="_blank"><img border="0" src="http://img3.douban.com/spic/s6972267.jpg"></a></td>
<td><a title="Hide and Seek" href="http://movie.douban.com/subject/1308995/" target="_blank"><img border="0" src="http://img3.douban.com/spic/s1354336.jpg"></a></td>
<td><a title="The Rite" href="http://movie.douban.com/subject/2998340/" target="_blank"><img border="0" src="http://img1.douban.com/spic/s4539530.jpg"></a></td>
<td><a title="127 Hours" href="http://movie.douban.com/subject/4164444/" target="_blank"><img border="0" src="http://img1.douban.com/spic/s4499710.jpg"></a></td>
</tr>
<tr>
<td><a title="[Rec] &sup2;" href="http://movie.douban.com/subject/3105162/" target="_blank"><img border="0" src="http://img3.douban.com/spic/s4200199.jpg"></a></td>
<td><a title="[Rec]" href="http://movie.douban.com/subject/2255841/" target="_blank"><img border="0" src="http://img1.douban.com/spic/s2698330.jpg"></a></td>
<td><a title="Patriot Games" href="http://movie.douban.com/subject/1294559/" target="_blank"><img border="0" src="http://img3.douban.com/spic/s2876873.jpg"></a></td>
<td><a title="Anaconda" href="http://movie.douban.com/subject/1300830/" target="_blank"><img border="0" src="http://img3.douban.com/spic/s1317956.jpg"></a></td>
<td><a title="Anacondas: The Hunt for the Blood Orchid" href="http://movie.douban.com/subject/1308784/" target="_blank"><img border="0" src="http://img3.douban.com/spic/s2371669.jpg"></a></td>
<td><a title="Nine Miles Down" href="http://movie.douban.com/subject/3195900/" target="_blank"><img border="0" src="http://img3.douban.com/spic/s3342297.jpg"></a></td>
<td><a title="My Boss My Hero" href="http://movie.douban.com/subject/1303808/" target="_blank"><img border="0" src="http://img3.douban.com/spic/s1432599.jpg"></a></td>
</tr>
<tr>
<td><a title="Outlander" href="http://movie.douban.com/subject/2049689/" target="_blank"><img border="0" src="http://img3.douban.com/spic/s3040375.jpg"></a></td>
<td><a title="Taare Zameen Par" href="http://movie.douban.com/subject/2363506/" target="_blank"><img border="0" src="http://img1.douban.com/spic/s4543761.jpg"></a></td>
<td><a title="Unknown" href="http://movie.douban.com/subject/3614963/" target="_blank"><img border="0" src="http://img1.douban.com/spic/s4549200.jpg"></a></td>
<td><a title="Orphan" href="http://movie.douban.com/subject/3011308/" target="_blank"><img border="0" src="http://img1.douban.com/spic/s3663082.jpg"></a></td>
<td><a title="Oc&eacute;ans" href="http://movie.douban.com/subject/3443389/" target="_blank"><img border="0" src="http://img3.douban.com/spic/s6795049.jpg"></a></td>
<td><a title="The Lincoln Lawyer" href="http://movie.douban.com/subject/2996790/" target="_blank"><img border="0" src="http://img3.douban.com/spic/s4569085.jpg"></a></td>
<td><a title="House of 9" href="http://movie.douban.com/subject/1401966/" target="_blank"><img border="0" src="http://img3.douban.com/spic/s2987569.jpg"></a></td>
</tr>
<tr>
<td><a title="The Prestige" href="http://movie.douban.com/subject/1780330/" target="_blank"><img border="0" src="http://img3.douban.com/spic/s1872245.jpg"></a></td>
<td><a title="The Basketball Diaries" href="http://movie.douban.com/subject/1292585/" target="_blank"><img border="0" src="http://img3.douban.com/spic/s2875524.jpg"></a></td>
<td><a title="Source Code" href="http://movie.douban.com/subject/3075287/" target="_blank"><img border="0" src="http://img1.douban.com/spic/s6776201.jpg"></a></td>
<td><a title="The Skeleton Key" href="http://movie.douban.com/subject/1418752/" target="_blank"><img border="0" src="http://img3.douban.com/spic/s2833318.jpg"></a></td>
<td><a title="Identity" href="http://movie.douban.com/subject/1297192/" target="_blank"><img border="0" src="http://img1.douban.com/spic/s1384682.jpg"></a></td>
<td><a title="Cube" href="http://movie.douban.com/subject/1305903/" target="_blank"><img border="0" src="http://img3.douban.com/spic/s1399756.jpg"></a></td>
<td><a title="Sniper: Reloaded" href="http://movie.douban.com/subject/5158655/" target="_blank"><img border="0" src="http://img1.douban.com/spic/s4720011.jpg"></a></td>
</tr>
<tr>
<td><a title="Six Days Seven Nights" href="http://movie.douban.com/subject/1299662/" target="_blank"><img border="0" src="http://img3.douban.com/spic/s2117064.jpg"></a></td>
<td><a title="Soul Surfer" href="http://movie.douban.com/subject/4301274/" target="_blank"><img border="0" src="http://img1.douban.com/spic/s4630042.jpg"></a></td>
<td><a title="Red" href="http://movie.douban.com/subject/3104794/" target="_blank"><img border="0" src="http://img1.douban.com/spic/s4426861.jpg"></a></td>
<td><a title="Hostel" href="http://movie.douban.com/subject/1456197/" target="_blank"><img border="0" src="http://img1.douban.com/spic/s1479092.jpg"></a></td>
<td><a title="Zebra Lounge" href="http://movie.douban.com/subject/1306495/" target="_blank"><img border="0" src="http://img1.douban.com/spic/s1635601.jpg"></a></td>
<td><a title="Hostage" href="http://movie.douban.com/subject/1309000/" target="_blank"><img border="0" src="http://img3.douban.com/spic/s2864769.jpg"></a></td>
<td><a title="Serenity" href="http://movie.douban.com/subject/1309068/" target="_blank"><img border="0" src="http://img3.douban.com/spic/s1456595.jpg"></a></td>
</tr>
<tr>
<td><a title="La vita &egrave; bella" href="http://movie.douban.com/subject/1292063/" target="_blank"><img border="0" src="http://img1.douban.com/spic/s2355022.jpg"></a></td>
<td><a title="Kolja" href="http://movie.douban.com/subject/1303026/" target="_blank"><img border="0" src="http://img3.douban.com/spic/s1966387.jpg"></a></td>
<td><a title="Transformers: Dark of the Moon" href="http://movie.douban.com/subject/3610047/" target="_blank"><img border="0" src="http://img3.douban.com/spic/s6794944.jpg"></a></td>
<td><a title="Super 8" href="http://movie.douban.com/subject/5503303/" target="_blank"><img border="0" src="http://img3.douban.com/spic/s4722194.jpg"></a></td>
<td><a title="He's Just Not That Into You" href="http://movie.douban.com/subject/2161696/" target="_blank"><img border="0" src="http://img3.douban.com/spic/s3359983.jpg"></a></td>
<td><a title="Pirates of the Caribbean: On Stranger Tides" href="http://movie.douban.com/subject/3227410/" target="_blank"><img border="0" src="http://img3.douban.com/spic/s4669323.jpg"></a></td>
<td><a title="赵氏孤儿" href="http://movie.douban.com/subject/3546019/" target="_blank"><img border="0" src="http://img3.douban.com/spic/s4549695.jpg"></a></td>
</tr>
<tr>
<td><a title="The Social Network" href="http://movie.douban.com/subject/3205624/" target="_blank"><img border="0" src="http://img3.douban.com/spic/s4387115.jpg"></a></td>
<td><a title="The Spy Next Door" href="http://movie.douban.com/subject/3179758/" target="_blank"><img border="0" src="http://img3.douban.com/spic/s4075575.jpg"></a></td>
<td><a title="岁月神偷" href="http://movie.douban.com/subject/3792799/" target="_blank"><img border="0" src="http://img1.douban.com/spic/s4226652.jpg"></a></td>
<td><a title="武林外传" href="http://movie.douban.com/subject/4822848/" target="_blank"><img border="0" src="http://img3.douban.com/spic/s4617809.jpg"></a></td>
<td><a title="11度青春之《老男孩》" href="http://movie.douban.com/subject/5344178/" target="_blank"><img border="0" src="http://img1.douban.com/spic/s4525371.jpg"></a></td>
</tr>
</tbody>
</table>
</div>
<p>&nbsp;</p>
<p align="left"><script type="text/javascript"><!--
google_ad_client = "ca-pub-6960703437272224";
/* anotherbug.com_blog_rightbelow_200&#42;200 */
google_ad_slot = "5513493463";
google_ad_width = 200;
google_ad_height = 200;
//-->
</script><script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p>&nbsp;</p>
<h3>三、音乐</h3>
<p>记录的只有四张专辑，可实际听的远不止这些。2011年在音乐上投入的比较多。从购买tuneup整理Mac OS上的歌曲乱码，到最后把音乐库完整的从Mac平台移动到Win下。使用了Spotify，Google Music到最近刚刚使用的<a href="http://anotherbug.com/blog/2011/12/itunes-match%E4%BD%BF%E7%94%A8/" target="_blank">iTunes Match</a>。 不过自己还一直是个门外汉。只能是一个业余爱好者。</p>
<p>&nbsp;</p>
<p><img id="chartMonth" src="http://chart.apis.google.com/chart?chs=400x200&amp;cht=bvs&amp;chd=s:AAMAMMAAAAAM&amp;chxt=y,x,x&amp;chxl=0:|0|1|2|3|4|5|1:|1|2|3|4|5|6|7|8|9|10|11|12|2:|month&amp;chxp=2,100&amp;chf=c,lg,90,76A4FB,0.5,ffffff,0|bg,s,EFEFEF&amp;chco=0000ff&amp;chtt=4 musics+you+added+in+year+2011|divided+by+month">
<div id="doubanlist">
<table>
<tbody>
<tr></tr>
<tr>
<td><a title="认了吧" href="http://music.douban.com/subject/2170837/" target="_blank"><img border="0" src="http://img3.douban.com/spic/s2882683.jpg"></a></td>
<td><a title="生如夏花" href="http://music.douban.com/subject/2567808/" target="_blank"><img border="0" src="http://img3.douban.com/spic/s2865257.jpg"></a></td>
<td><a title="Battle Studies" href="http://music.douban.com/subject/4063036/" target="_blank"><img border="0" src="http://img3.douban.com/spic/s4715457.jpg"></a></td>
<td><a title="是时候" href="http://music.douban.com/subject/5958397/" target="_blank"><img border="0" src="http://img3.douban.com/spic/s4653287.jpg"></a></td>
</tr>
</tbody>
</table>
</div>
<div>&nbsp;</div>
<div>&nbsp;</div>
<div><font color="#ff0000">本文使用了豆瓣统计工具。链接在此：</font><a href="http://imnerd.org/douban/"><font color="#ff0000">http://imnerd.org/douban/</font></a></div>
<div>&nbsp;</div>
]]></content:encoded>
			<wfw:commentRss>http://anotherbug.com/blog/2011/12/2011%e5%b9%b4%e4%b9%8b%e8%b1%86%e7%93%a3%e7%bb%9f%e8%ae%a1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iTunes match使用</title>
		<link>http://anotherbug.com/blog/2011/12/itunes-match%e4%bd%bf%e7%94%a8/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=itunes-match%25e4%25bd%25bf%25e7%2594%25a8</link>
		<comments>http://anotherbug.com/blog/2011/12/itunes-match%e4%bd%bf%e7%94%a8/#comments</comments>
		<pubDate>Sun, 25 Dec 2011 04:39:00 +0000</pubDate>
		<dc:creator>mousepotato</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[iTunes]]></category>

		<guid isPermaLink="false">http://anotherbug.com/blog/?p=24500</guid>
		<description><![CDATA[这两天倒腾iTunes match，花了24.99刀，可以使用一年。 &#160; &#160; 使用起来很简单。 &#160; &#160; &#160; &#160; 自动上传歌曲到存储空间。好处是上传上去的歌曲它会自动搜寻云端有没有更高优质的音乐，如果有的话进行替换。可以将自己低品质的mp3换成更高的AAC格式的音乐了啊。 &#160; 使用了iTunes match以后就省去了用数据线传歌的麻烦了，可以一个帐号多台设备使用同步。像我家里有iPhone 4S, iPad, 可以很方便的通过wifi下载歌曲了。 &#160; &#160; &#160; 放在云端的歌曲后面会有一个match的图标。点击以后就会自动下载对应歌曲。]]></description>
			<content:encoded><![CDATA[<p>这两天倒腾iTunes match，花了24.99刀，可以使用一年。</p>
<p>&nbsp;</p>
<p><a href="http://anotherbug.com/blog/wp-content/uploads/2011/12/itunes_match.jpg"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="itunes_match" border="0" alt="itunes_match" src="http://anotherbug.com/blog/wp-content/uploads/2011/12/itunes_match_thumb.jpg" width="368" height="239"></a></p>
<p>&nbsp;</p>
<p>使用起来很简单。</p>
<p>&nbsp;</p>
<p><a href="http://anotherbug.com/blog/wp-content/uploads/2011/12/itunes_match1.jpg"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="itunes_match1" border="0" alt="itunes_match1" src="http://anotherbug.com/blog/wp-content/uploads/2011/12/itunes_match1_thumb.jpg" width="368" height="198"></a></p>
<p>&nbsp;</p>
<p><a href="http://anotherbug.com/blog/wp-content/uploads/2011/12/itunes_match2.jpg"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="itunes_match2" border="0" alt="itunes_match2" src="http://anotherbug.com/blog/wp-content/uploads/2011/12/itunes_match2_thumb.jpg" width="362" height="196"></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>自动上传歌曲到存储空间。好处是上传上去的歌曲它会自动搜寻云端有没有更高优质的音乐，如果有的话进行替换。可以将自己低品质的mp3换成更高的AAC格式的音乐了啊。</p>
<p>&nbsp;</p>
<p>使用了iTunes match以后就省去了用数据线传歌的麻烦了，可以一个帐号多台设备使用同步。像我家里有iPhone 4S, iPad, 可以很方便的通过wifi下载歌曲了。</p>
<p>&nbsp;</p>
<p align="left"><script type="text/javascript"><!--
google_ad_client = "ca-pub-6960703437272224";
/* Text/Image_300&#42;250 */
google_ad_slot = "3868186516";
google_ad_width = 300;
google_ad_height = 250;
//-->
</script><script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p>&nbsp;</p>
<p><a href="http://anotherbug.com/blog/wp-content/uploads/2011/12/Photo-Dec-24-23-37-15.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="Photo Dec 24, 23 37 15" border="0" alt="Photo Dec 24, 23 37 15" src="http://anotherbug.com/blog/wp-content/uploads/2011/12/Photo-Dec-24-23-37-15_thumb.png" width="195" height="290"></a></p>
<p>&nbsp;</p>
<p>放在云端的歌曲后面会有一个match的图标。点击以后就会自动下载对应歌曲。</p>
]]></content:encoded>
			<wfw:commentRss>http://anotherbug.com/blog/2011/12/itunes-match%e4%bd%bf%e7%94%a8/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>上帝的診所</title>
		<link>http://anotherbug.com/blog/2011/11/%e4%b8%8a%e5%b8%9d%e7%9a%84%e8%a8%ba%e6%89%80/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=%25e4%25b8%258a%25e5%25b8%259d%25e7%259a%2584%25e8%25a8%25ba%25e6%2589%2580</link>
		<comments>http://anotherbug.com/blog/2011/11/%e4%b8%8a%e5%b8%9d%e7%9a%84%e8%a8%ba%e6%89%80/#comments</comments>
		<pubDate>Sun, 06 Nov 2011 20:09:00 +0000</pubDate>
		<dc:creator>mousepotato</dc:creator>
				<category><![CDATA[Humanity]]></category>
		<category><![CDATA[Jesus]]></category>

		<guid isPermaLink="false">http://anotherbug.com/blog/2011/11/%e4%b8%8a%e5%b8%9d%e7%9a%84%e8%a8%ba%e6%89%80/</guid>
		<description><![CDATA[上帝的診所]]></description>
			<content:encoded><![CDATA[<p><a style="margin: 12px auto 6px; display: block; font: 14px helvetica,arial,sans-serif; text-decoration: underline; font-size-adjust: none; font-stretch: normal; -x-system-font: none" title="View 上帝的診所 on Scribd" href="http://www.scribd.com/doc/71832537/%E4%B8%8A%E5%B8%9D%E7%9A%84%E8%A8%BA%E6%89%80">上帝的診所</a><iframe id="doc_90418" class="scribd_iframe_embed" height="600" src="http://www.scribd.com/embeds/71832537/content?start_page=1&amp;view_mode=slideshow&amp;access_key=key-ctm6vdsu36i5vnnmj73" frameborder="0" width="100%" scrolling="no" data-aspect-ratio="1.2938689217759" data-auto-height="true"></iframe><script type="text/javascript">(function() { var scribd = document.createElement("script"); scribd.type = "text/javascript"; scribd.async = true; scribd.src = "http://www.scribd.com/javascripts/embed_code/inject.js"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(scribd, s); })();</script></p>
]]></content:encoded>
			<wfw:commentRss>http://anotherbug.com/blog/2011/11/%e4%b8%8a%e5%b8%9d%e7%9a%84%e8%a8%ba%e6%89%80/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

