<?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>FVF.me&#039;Ye &#187; 小记</title>
	<atom:link href="http://fvf.me/category/diary/feed" rel="self" type="application/rss+xml" />
	<link>http://fvf.me</link>
	<description>我是孤独的根号5</description>
	<lastBuildDate>Mon, 19 Sep 2011 12:10:36 +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>wordpress 判断语句</title>
		<link>http://fvf.me/diary/judgement-statement-wordpress.html</link>
		<comments>http://fvf.me/diary/judgement-statement-wordpress.html#comments</comments>
		<pubDate>Sun, 27 Mar 2011 11:01:00 +0000</pubDate>
		<dc:creator>死兔子</dc:creator>
				<category><![CDATA[小记]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[判断]]></category>

		<guid isPermaLink="false">http://fvf.me/diary/wordpress-%e5%88%a4%e6%96%ad%e8%af%ad%e5%8f%a5.html</guid>
		<description><![CDATA[&#60;?php is_home() ?&#62;// 是否为主页 &#60;?php is_single() ?&#62;// 是否为文章页(Post) &#60;?php is_page() ?&#62;// 是否为内容页(Page) &#60;?php is_category() ?&#62;// 是否为Category/Archive页 &#60;?php is_tag() ?&#62;// 是否为Tag存档页 &#60;?php is_date() ?&#62;// 是否为指定日期存档页 &#60;?php is_year() ?&#62;// 是否为指定年份存档页 &#60;?php is_month() ?&#62;// 是否为指定月份存档页 &#60;?php is_day() ?&#62;// 是否为指定日存档页 &#60;?php is_time() ?&#62;// 是否为指定时间存档页 &#60;?php is_archive() ?&#62;// 是否为存档页 &#60;?php is_search() ?&#62;// 是否为搜索结果页 &#60;?php is_404() ?&#62;// 是否为 “HTTP 404: Not [...]]]></description>
			<content:encoded><![CDATA[<div style="background-color: rgb(30,30,39); font-family: &#39;Microsoft Yahei&#39;, &#39;Lucida Console&#39;, &#39;Courier New&#39;, verdana; color: rgb(208,208,208)" class="source"><span style="color: rgb(205,40,40); font-weight: bold">&lt;?php</span> <span style="color: rgb(208,208,208)">is_home</span>() <span style="color: rgb(205,40,40); font-weight: bold">?&gt;</span><span style="font-style: italic; color: rgb(153,153,153)">// 是否为主页</span>    <br /><span style="color: rgb(205,40,40); font-weight: bold">&lt;?php</span> <span style="color: rgb(208,208,208)">is_single</span>() <span style="color: rgb(205,40,40); font-weight: bold">?&gt;</span><span style="font-style: italic; color: rgb(153,153,153)">// 是否为文章页(Post)</span>    <br /><span style="color: rgb(205,40,40); font-weight: bold">&lt;?php</span> <span style="color: rgb(208,208,208)">is_page</span>() <span style="color: rgb(205,40,40); font-weight: bold">?&gt;</span><span style="font-style: italic; color: rgb(153,153,153)">// 是否为内容页(Page)</span>    <br /><span style="color: rgb(205,40,40); font-weight: bold">&lt;?php</span> <span style="color: rgb(208,208,208)">is_category</span>() <span style="color: rgb(205,40,40); font-weight: bold">?&gt;</span><span style="font-style: italic; color: rgb(153,153,153)">// 是否为Category/Archive页</span>    <br /><span style="color: rgb(205,40,40); font-weight: bold">&lt;?php</span> <span style="color: rgb(208,208,208)">is_tag</span>() <span style="color: rgb(205,40,40); font-weight: bold">?&gt;</span><span style="font-style: italic; color: rgb(153,153,153)">// 是否为Tag存档页</span>    <br /><span style="color: rgb(205,40,40); font-weight: bold">&lt;?php</span> <span style="color: rgb(208,208,208)">is_date</span>() <span style="color: rgb(205,40,40); font-weight: bold">?&gt;</span><span style="font-style: italic; color: rgb(153,153,153)">// 是否为指定日期存档页</span>    <br /><span style="color: rgb(205,40,40); font-weight: bold">&lt;?php</span> <span style="color: rgb(208,208,208)">is_year</span>() <span style="color: rgb(205,40,40); font-weight: bold">?&gt;</span><span style="font-style: italic; color: rgb(153,153,153)">// 是否为指定年份存档页</span>    <br /><span style="color: rgb(205,40,40); font-weight: bold">&lt;?php</span> <span style="color: rgb(208,208,208)">is_month</span>() <span style="color: rgb(205,40,40); font-weight: bold">?&gt;</span><span style="font-style: italic; color: rgb(153,153,153)">// 是否为指定月份存档页</span>    <br /><span style="color: rgb(205,40,40); font-weight: bold">&lt;?php</span> <span style="color: rgb(208,208,208)">is_day</span>() <span style="color: rgb(205,40,40); font-weight: bold">?&gt;</span><span style="font-style: italic; color: rgb(153,153,153)">// 是否为指定日存档页</span>    <br /><span style="color: rgb(205,40,40); font-weight: bold">&lt;?php</span> <span style="color: rgb(208,208,208)">is_time</span>() <span style="color: rgb(205,40,40); font-weight: bold">?&gt;</span><span style="font-style: italic; color: rgb(153,153,153)">// 是否为指定时间存档页</span>    <br /><span style="color: rgb(205,40,40); font-weight: bold">&lt;?php</span> <span style="color: rgb(208,208,208)">is_archive</span>() <span style="color: rgb(205,40,40); font-weight: bold">?&gt;</span><span style="font-style: italic; color: rgb(153,153,153)">// 是否为存档页</span>    <br /><span style="color: rgb(205,40,40); font-weight: bold">&lt;?php</span> <span style="color: rgb(208,208,208)">is_search</span>() <span style="color: rgb(205,40,40); font-weight: bold">?&gt;</span><span style="font-style: italic; color: rgb(153,153,153)">// 是否为搜索结果页</span>    <br /><span style="color: rgb(205,40,40); font-weight: bold">&lt;?php</span> <span style="color: rgb(208,208,208)">is_404</span>() <span style="color: rgb(205,40,40); font-weight: bold">?&gt;</span><span style="font-style: italic; color: rgb(153,153,153)">// 是否为 “HTTP 404: Not Found” 错误页</span>    <br /><span style="color: rgb(205,40,40); font-weight: bold">&lt;?php</span> <span style="color: rgb(208,208,208)">is_paged</span>() <span style="color: rgb(205,40,40); font-weight: bold">?&gt;</span><span style="font-style: italic; color: rgb(153,153,153)">// 主页/Category/Archive页是否以多页显示</span>    </div>
]]></content:encoded>
			<wfw:commentRss>http://fvf.me/diary/judgement-statement-wordpress.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>买了上一代无线路由器</title>
		<link>http://fvf.me/diary/bought-the-previous-generation-of-wireless-router.html</link>
		<comments>http://fvf.me/diary/bought-the-previous-generation-of-wireless-router.html#comments</comments>
		<pubDate>Wed, 09 Mar 2011 13:03:10 +0000</pubDate>
		<dc:creator>死兔子</dc:creator>
				<category><![CDATA[小记]]></category>

		<guid isPermaLink="false">http://fvf.me/diary/%e4%b9%b0%e4%ba%86%e4%b8%8a%e4%b8%80%e4%bb%a3%e6%97%a0%e7%ba%bf%e8%b7%af%e7%94%b1%e5%99%a8.html</guid>
		<description><![CDATA[今天收到京东买的TP-LINK的无线路由器，才发现我尽然买了54mkb的，我晕死，花了90块钱买了802.11g的型号，我貌似昨天晚上准备买802.11n型号的，悲剧啊，买了上一代产品~~后悔啊~]]></description>
			<content:encoded><![CDATA[<p>今天收到京东买的TP-LINK的无线路由器，才发现我尽然买了54mkb的，我晕死，花了90块钱买了802.11g的型号，我貌似昨天晚上准备买802.11n型号的，悲剧啊，买了上一代产品~~后悔啊~</p>
]]></content:encoded>
			<wfw:commentRss>http://fvf.me/diary/bought-the-previous-generation-of-wireless-router.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>节日快乐~</title>
		<link>http://fvf.me/diary/happy-holidays.html</link>
		<comments>http://fvf.me/diary/happy-holidays.html#comments</comments>
		<pubDate>Mon, 07 Mar 2011 12:38:05 +0000</pubDate>
		<dc:creator>死兔子</dc:creator>
				<category><![CDATA[小记]]></category>

		<guid isPermaLink="false">http://fvf.me/diary/%e8%8a%82%e6%97%a5%e5%bf%ab%e4%b9%90.html</guid>
		<description><![CDATA[今天3月7号，明天3月8号，老妈节日快乐~]]></description>
			<content:encoded><![CDATA[<p>今天3月7号，明天3月8号，老妈节日快乐~</p>
]]></content:encoded>
			<wfw:commentRss>http://fvf.me/diary/happy-holidays.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>京东商城电脑配件购买心得</title>
		<link>http://fvf.me/diary/jingdong-mall-to-buy-computer-accessories-tips.html</link>
		<comments>http://fvf.me/diary/jingdong-mall-to-buy-computer-accessories-tips.html#comments</comments>
		<pubDate>Sun, 06 Mar 2011 11:52:53 +0000</pubDate>
		<dc:creator>死兔子</dc:creator>
				<category><![CDATA[小记]]></category>
		<category><![CDATA[京东]]></category>

		<guid isPermaLink="false">http://fvf.me/diary/%e4%ba%ac%e4%b8%9c%e5%95%86%e5%9f%8e%e7%94%b5%e8%84%91%e9%85%8d%e4%bb%b6%e8%b4%ad%e4%b9%b0%e5%bf%83%e5%be%97.html</guid>
		<description><![CDATA[最近很郁闷，在京东花了2000多块买了，一个AMD的四核640 CPU,一个技嘉AM3主板，一个金士顿4G三代内存，安钛克450W电源。也就我倒霉，拿到以后在家自己组装吧，不知怎么的就是启动不起来，拿到电脑店里看看吧，说是主板坏了。买来2天不到坏了，就去京东那求售后维修吧。 说其他的京东那还不错，就是这个上面收件快递，nnd，双休日不上班火大。好不容易等3天来上面收取坏了的主板吧，我以为换货吧，等个1天就差不多了，结果足足等了3天才在网站上收到货已返回的通知，明明发货的时候一天就到我家了，为什么收货要这么久呢，这是郁闷，一个换货就搞的我足足花了7天时间，从申请到收到新货。]]></description>
			<content:encoded><![CDATA[<p>最近很郁闷，在京东花了2000多块买了，一个AMD的四核640 CPU,一个技嘉AM3主板，一个金士顿4G三代内存，安钛克450W电源。也就我倒霉，拿到以后在家自己组装吧，不知怎么的就是启动不起来，拿到电脑店里看看吧，说是主板坏了。买来2天不到坏了，就去京东那求售后维修吧。</p>
<p>说其他的京东那还不错，就是这个上面收件快递，nnd，双休日不上班火大。好不容易等3天来上面收取坏了的主板吧，我以为换货吧，等个1天就差不多了，结果足足等了3天才在网站上收到货已返回的通知，明明发货的时候一天就到我家了，为什么收货要这么久呢，这是郁闷，一个换货就搞的我足足花了7天时间，从申请到收到新货。</p>
]]></content:encoded>
			<wfw:commentRss>http://fvf.me/diary/jingdong-mall-to-buy-computer-accessories-tips.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>春节快乐！</title>
		<link>http://fvf.me/diary/happy-new-year.html</link>
		<comments>http://fvf.me/diary/happy-new-year.html#comments</comments>
		<pubDate>Tue, 01 Feb 2011 01:38:01 +0000</pubDate>
		<dc:creator>死兔子</dc:creator>
				<category><![CDATA[小记]]></category>

		<guid isPermaLink="false">http://fvf.me/?p=307</guid>
		<description><![CDATA[广大兄弟姐妹同胞没，块过春节了，祝大家春节快乐，恭喜发财，万事如意！！]]></description>
			<content:encoded><![CDATA[<p>广大兄弟姐妹同胞没，块过春节了，祝大家春节快乐，恭喜发财，万事如意！！</p>
]]></content:encoded>
			<wfw:commentRss>http://fvf.me/diary/happy-new-year.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>网上书店运货对比</title>
		<link>http://fvf.me/diary/online-bookstore-shipping-contrast.html</link>
		<comments>http://fvf.me/diary/online-bookstore-shipping-contrast.html#comments</comments>
		<pubDate>Thu, 06 Jan 2011 12:54:47 +0000</pubDate>
		<dc:creator>死兔子</dc:creator>
				<category><![CDATA[小记]]></category>
		<category><![CDATA[京东]]></category>
		<category><![CDATA[卓越]]></category>
		<category><![CDATA[图书]]></category>
		<category><![CDATA[当当]]></category>

		<guid isPermaLink="false">http://fvf.me/diary/%e7%bd%91%e4%b8%8a%e4%b9%a6%e5%ba%97%e8%bf%90%e8%b4%a7%e5%af%b9%e6%af%94.html</guid>
		<description><![CDATA[这几天各大书城都在对全场图书进行免运费，而我也去各大商场逛了一圈，也买了一些书，通过对比发现，当当，卓越，京东这几个比较出名的网上书店，当然了还有99书城，不过发现它在价格上还跟不上上面的三个。 当当老牌的网上书城，送货速度最快，书的种类多。 卓越依托世界最大的网上书城亚马逊，送货速度已经快跟的上当当了，不过书的种类很多，但很多都是缺货，有货的书不及当当。 京东商城，网上最大的电脑整机零件商，现在又开始往图书发展，全段时间的慢100送20元卷，实在是优惠，而且价格是这三个书店最便宜的，铁牌用户（在网站买过一次）起码比当当和卓越低1~2元，不过这个快递速度真是无奈。 以为我生处于浙江沿海三线城市来说，在当当上买的一本工作上的书，2010-03-04 提交订单到2010-03-05 发货的，收货并确认的时间是2010-03-9 ，一共4天时间。刚刚上个月在2010-12-30 21:24:0在京东订下来一些图书，2010-12-31 1:15:06图书开始运输，到2011-1-4 10:26:31开始本地快递员开始投递，一共差不多5天时间。当然这也不排除元旦假期的原因在，刚刚前几天在卓越买书订购日期为2011年1月4日，1月5号发货，今天收到也就是1月6号，一共2天时间。刚刚发现当当和卓越使用的是同一个快递公司。也就是说卓越和当当的快递速度是差不多的，都是从上海发货。而东京是从北京发货的，所以速度就慢了。 还是就是我本来想买一套百家的《凡尔纳科幻经典(套装全11册)》，原价是￥269，当当现在的价格是￥185.60，69折。卓越的价格是￥185.60，也是69折，而京东的价格是，铁牌及以上会员价：￥141.80&#160;&#160; 京东价：￥149.30（56折）整整差了35元，就算是算上卓越的20元返券也要便宜15元，而买过一次的用户更是再便宜8元。 上个月京东满100元返回20元的卷，200元返40元的卷，到现在活动已经结束了，而现在卓越满100元返20的卷，不过不知道是不是很京东一样无限制的卷。而当当现在一点表示都没有，真是让人很费解。]]></description>
			<content:encoded><![CDATA[<p>这几天各大书城都在对全场图书进行免运费，而我也去各大商场逛了一圈，也买了一些书，通过对比发现，当当，卓越，京东这几个比较出名的网上书店，当然了还有99书城，不过发现它在价格上还跟不上上面的三个。</p>
<ol>
<li>当当老牌的网上书城，送货速度最快，书的种类多。 </li>
<li>卓越依托世界最大的网上书城亚马逊，送货速度已经快跟的上当当了，不过书的种类很多，但很多都是缺货，有货的书不及当当。 </li>
<li>京东商城，网上最大的电脑整机零件商，现在又开始往图书发展，全段时间的慢100送20元卷，实在是优惠，而且价格是这三个书店最便宜的，铁牌用户（在网站买过一次）起码比当当和卓越低1~2元，不过这个快递速度真是无奈。 </li>
</ol>
<p>以为我生处于浙江沿海三线城市来说，在当当上买的一本工作上的书，2010-03-04 提交订单到2010-03-05 发货的，收货并确认的时间是2010-03-9 ，一共4天时间<font face="Verdana">。刚刚上个月在</font>2010-12-30 21:24:0在京东订下来一些图书，2010-12-31 1:15:06图书开始运输，到2011-1-4 10:26:31开始本地快递员开始投递，一共差不多5天时间。当然这也不排除元旦假期的原因在，刚刚前几天在卓越买书订购日期为2011年1月4日，1月5号发货，今天收到也就是1月6号，一共2天时间。刚刚发现当当和卓越使用的是同一个快递公司。也就是说卓越和当当的快递速度是差不多的，都是从上海发货。而东京是从北京发货的，所以速度就慢了。</p>
<p>还是就是我本来想买一套百家的《凡尔纳科幻经典(套装全11册)》，原价是￥269，当当现在的价格是￥185.60，69折。卓越的价格是￥185.60，也是69折，而京东的价格是，铁牌及以上会员价：￥141.80&#160;&#160; 京东价：￥149.30（56折）整整差了35元，就算是算上卓越的20元返券也要便宜15元，而买过一次的用户更是再便宜8元。</p>
<p>上个月京东满100元返回20元的卷，200元返40元的卷，到现在活动已经结束了，而现在卓越满100元返20的卷，不过不知道是不是很京东一样无限制的卷。而当当现在一点表示都没有，真是让人很费解。</p>
]]></content:encoded>
			<wfw:commentRss>http://fvf.me/diary/online-bookstore-shipping-contrast.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>元旦快乐</title>
		<link>http://fvf.me/diary/happy-new-year.html</link>
		<comments>http://fvf.me/diary/happy-new-year.html#comments</comments>
		<pubDate>Fri, 31 Dec 2010 12:41:40 +0000</pubDate>
		<dc:creator>死兔子</dc:creator>
				<category><![CDATA[小记]]></category>

		<guid isPermaLink="false">http://fvf.me/diary/%e5%85%83%e6%97%a6%e5%bf%ab%e4%b9%90.html</guid>
		<description><![CDATA[明天就是元旦了，元旦快乐了，哈哈～～]]></description>
			<content:encoded><![CDATA[<p>明天就是元旦了，元旦快乐了，哈哈～～</p>
]]></content:encoded>
			<wfw:commentRss>http://fvf.me/diary/happy-new-year.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>凡尔纳有感</title>
		<link>http://fvf.me/diary/verne-thoughts.html</link>
		<comments>http://fvf.me/diary/verne-thoughts.html#comments</comments>
		<pubDate>Wed, 29 Dec 2010 11:38:39 +0000</pubDate>
		<dc:creator>死兔子</dc:creator>
				<category><![CDATA[小记]]></category>

		<guid isPermaLink="false">http://fvf.me/diary/%e5%87%a1%e5%b0%94%e7%ba%b3%e6%9c%89%e6%84%9f.html</guid>
		<description><![CDATA[前两天在网上浏览时，发现儒勒·凡尔纳(Jules-Verne)这一个词，然后就由这个人名想到了当初咱看过的小说，《海底两万里》，《神秘岛》，《环游地球80天》，《气球上的五星期》。话说孙燕姿的那首《绿光》也是由他的同名小说而写的。这让我不由的再次去阅读一下他的作品。刚刚遇到当当在免邮费，所以我就去那里搜索一下，发现了一套凡尔纳的作品集。但是只有11本而且也没多少部作品，话说当初我在图书馆看的时候，一排书架上面都是他的书。现代科学幻想小说之父的称号当时我还真不知道，那时初中的我，只是知道他写的小说是那么的神奇，让我不由自主的去阅读他的其他作品。想想那时的我，还真有那么的可爱。 对着凡尔纳的喜爱，我喜欢上了阅读外国名著，我记得我买的第一本外国名著是，人民出版社出版的《钢铁是怎样炼成的》，那时我也不知道怎么就挑了这本厚厚的书。往后就一发不可收拾，《复活》，《鲁滨逊漂流记》，《莎士比亚戏剧集》。那时时间充足，我就一本一本的去看。呵呵！]]></description>
			<content:encoded><![CDATA[<p> 前两天在网上浏览时，发现儒勒·凡尔纳(Jules-Verne)这一个词，然后就由这个人名想到了当初咱看过的小说，《海底两万里》，《神秘岛》，《环游地球80天》，《气球上的五星期》。话说孙燕姿的那首《绿光》也是由他的同名小说而写的。这让我不由的再次去阅读一下他的作品。刚刚遇到当当在免邮费，所以我就去那里搜索一下，发现了一套凡尔纳的作品集。但是只有11本而且也没多少部作品，话说当初我在图书馆看的时候，一排书架上面都是他的书。现代科学幻想小说之父的称号当时我还真不知道，那时初中的我，只是知道他写的小说是那么的神奇，让我不由自主的去阅读他的其他作品。想想那时的我，还真有那么的可爱。</p>
<p>对着凡尔纳的喜爱，我喜欢上了阅读外国名著，我记得我买的第一本外国名著是，人民出版社出版的《钢铁是怎样炼成的》，那时我也不知道怎么就挑了这本厚厚的书。往后就一发不可收拾，《复活》，《鲁滨逊漂流记》，《莎士比亚戏剧集》。那时时间充足，我就一本一本的去看。呵呵！</p>
]]></content:encoded>
			<wfw:commentRss>http://fvf.me/diary/verne-thoughts.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>关于wordpress博客</title>
		<link>http://fvf.me/diary/about-wordpress-blog.html</link>
		<comments>http://fvf.me/diary/about-wordpress-blog.html#comments</comments>
		<pubDate>Sun, 26 Dec 2010 11:43:55 +0000</pubDate>
		<dc:creator>死兔子</dc:creator>
				<category><![CDATA[小记]]></category>

		<guid isPermaLink="false">http://fvf.me/diary/%e5%85%b3%e4%ba%8ewordpress%e5%8d%9a%e5%ae%a2.html</guid>
		<description><![CDATA[话说好久没有更新博客了，最近时间很忙也没空折腾wordpress，想想玩wordpress也有一年多少了，可能当初那种冲动转化为现在的烦躁吧，当初没工作那会每天闲逛在网络中，找寻wordpress的各种乐趣。 其实玩wordpress又有几个是玩博客的呢，其实很大一部分的人多少和我一样蛋疼着呢，想想网易，新浪这么多免费的博客站点，为什么要选择这个既费力气有费金钱的方法建立博客呢。想想一个域名50多，一个空间起码100，想想一年花费个150究竟是为了什么呢，兴趣？冲动？ 回顾以前的友情链接，发现10多条链接里有1，2个还在坚持的就不错了，为什么呢，没兴趣了？没冲动了？我也不知道，其实我一直都冲动着，只不过我是一个域名一个域名的冲动，到现在已经冲动着手握3个域名，想想一年的花销还真应了那句话，冲动是魔鬼！ 在我认为捣鼓博客，还不如说是捣鼓wordprss.其实博客里面说的最多的还是怎么改造wordpress而已，真正记述自己心情的还真少。]]></description>
			<content:encoded><![CDATA[<p>话说好久没有更新博客了，最近时间很忙也没空折腾wordpress，想想玩wordpress也有一年多少了，可能当初那种冲动转化为现在的烦躁吧，当初没工作那会每天闲逛在网络中，找寻wordpress的各种乐趣。</p>
<p>其实玩wordpress又有几个是玩博客的呢，其实很大一部分的人多少和我一样蛋疼着呢，想想网易，新浪这么多免费的博客站点，为什么要选择这个既费力气有费金钱的方法建立博客呢。想想一个域名50多，一个空间起码100，想想一年花费个150究竟是为了什么呢，兴趣？冲动？</p>
<p>回顾以前的友情链接，发现10多条链接里有1，2个还在坚持的就不错了，为什么呢，没兴趣了？没冲动了？我也不知道，其实我一直都冲动着，只不过我是一个域名一个域名的冲动，到现在已经冲动着手握3个域名，想想一年的花销还真应了那句话，冲动是魔鬼！</p>
<p>在我认为捣鼓博客，还不如说是捣鼓wordprss.其实博客里面说的最多的还是怎么改造wordpress而已，真正记述自己心情的还真少。</p>
]]></content:encoded>
			<wfw:commentRss>http://fvf.me/diary/about-wordpress-blog.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>圣诞节快乐</title>
		<link>http://fvf.me/diary/merry-christmas.html</link>
		<comments>http://fvf.me/diary/merry-christmas.html#comments</comments>
		<pubDate>Sat, 25 Dec 2010 14:19:37 +0000</pubDate>
		<dc:creator>死兔子</dc:creator>
				<category><![CDATA[小记]]></category>
		<category><![CDATA[圣诞节]]></category>

		<guid isPermaLink="false">http://fvf.me/diary/%e5%9c%a3%e8%af%9e%e8%8a%82%e5%bf%ab%e4%b9%90.html</guid>
		<description><![CDATA[圣诞节来了，圣诞节快乐！哈哈！]]></description>
			<content:encoded><![CDATA[<p>圣诞节来了，圣诞节快乐！哈哈！</p>
]]></content:encoded>
			<wfw:commentRss>http://fvf.me/diary/merry-christmas.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

