<?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://liucheng.name/feed/" rel="self" type="application/rss+xml" />
	<link>http://liucheng.name</link>
	<description>努力在数据的海洋里畅游</description>
	<lastBuildDate>Fri, 12 Mar 2010 02:10:29 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>wordpress注册时即邮件发送密码又显示出来</title>
		<link>http://liucheng.name/1243/</link>
		<comments>http://liucheng.name/1243/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 02:09:34 +0000</pubDate>
		<dc:creator>柳城</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[注册]]></category>

		<guid isPermaLink="false">http://liucheng.name/1243/</guid>
		<description><![CDATA[在用wordpress注册用户时，一般都是用邮件发送密码到邮箱。但在很多情况下，例如某些服务器不支持mail函数。还有某些邮箱之间的存在的问题，网络问题等，导致无法发送邮件。]]></description>
			<content:encoded><![CDATA[<p>在用<span class='wp_keywordlink'><a href="http://liucheng.name/category/wordpress/" title="wordpress">wordpress</a></span><span class='wp_keywordlink_affiliate'><a href="http://liucheng.name/tag/%e6%b3%a8%e5%86%8c/" title="查看 注册 的全部文章" target="_blank">注册</a></span>用户时，一般都是用邮件发送密码到邮箱。但在很多情况下，例如某些服务器不支持mail函数。还有某些邮箱之间的存在的问题，网络问题等，导致无法发送邮件。<span id="more-1243"></span></p>
<p>这里介绍一个方法，在<span class='wp_keywordlink_affiliate'><a href="http://liucheng.name/tag/%e6%b3%a8%e5%86%8c/" title="查看 注册 的全部文章" target="_blank">注册</a></span>用户时，即能发送邮件，又可以在注册后马上显示密码。实现注册成功后密码显示出来。</p>
<p>一举两得。</p>
<h3>实现注册成功后密码显示出来</h3>
<p>1，在<span class='wp_keywordlink'><a href="http://liucheng.name/category/wordpress/" title="WordPress">WordPress</a></span>根目录中找到“wp-login.php”文件</p>
<p>2，找到“wp_new_user_notification”，在下面添加两行</p>
<pre>wp_new_user_notification($user_id, $user_pass);

setcookie("u", $user_login);

setcookie("user_pass", $user_pass);</pre>
<p>这两行是为了记录用户名和密码。</p>
<p>3，找到</p>
<pre>elseif	( isset($_GET['checkemail']) &amp;&amp; 'registered' == $_GET['checkemail'] )

    $errors-&gt;add('registered', __('Registration complete. Please check your e-mail.'), 'message');</pre>
<p>改为</p>
<pre>elseif	( isset($_GET['checkemail']) &amp;&amp; 'registered' == $_GET['checkemail'] )
$errors-&gt;add('registered', __('恭喜您，注册成功&lt;br/&gt;用户名/User：'.$_COOKIE['u'].'&lt;br /&gt;密&amp;nbsp;&amp;nbsp;码/Password：'.$_COOKIE['user_pass'].'&lt;br /&gt;(请登录后修改为容易记忆的密码)'));</pre>
<p>~完成。</p>
<p><strong>PS：</strong>如果文件包含有中文的话，像上面的话。那就要另存为utf8的格式了。</p>
]]></content:encoded>
			<wfw:commentRss>http://liucheng.name/1243/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>修改DB Cache Reloaded兼容WP-PostViews的方法</title>
		<link>http://liucheng.name/1241/</link>
		<comments>http://liucheng.name/1241/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 04:46:55 +0000</pubDate>
		<dc:creator>柳城</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[DB Cache Reloaded]]></category>
		<category><![CDATA[WP-PostViews]]></category>

		<guid isPermaLink="false">http://liucheng.name/?p=1241</guid>
		<description><![CDATA[在用DB Cache Reloaded缓存的情况下，WP-PostViews的计数不准确。当时没太留意，后来有空了测试一下。果然发现是有问题，我一直以为是因为缓存的原因。缓存过了统计数就正确了，原来不是。

<h2>相关文章：</h2><ol><li><a href='http://liucheng.name/1144/' rel='bookmark' title='Permanent Link: 推荐两个缓存插件：DB Cache Reloaded与Hyper Cache'>推荐两个缓存插件：DB Cache Reloaded与Hyper Cache</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>前几天<cite>yiwen</cite>童鞋跟我说，<span class='wp_keywordlink_affiliate'><a href="http://liucheng.name/tag/db-cache-reloaded/" title="查看 DB Cache Reloaded 的全部文章" target="_blank">DB Cache Reloaded</a></span>和<span class='wp_keywordlink_affiliate'><a href="http://liucheng.name/tag/wp-postviews/" title="查看 WP-PostViews 的全部文章" target="_blank">WP-PostViews</a></span>不兼容。</p>
<p>在用DB Cache Reloaded缓存的情况下，WP-PostViews的计数不准确。当时没太留意，后来有空了测试一下。果然发现是有问题，我一直以为是因为缓存的原因。缓存过了统计数就正确了，原来不是。<span id="more-1241"></span></p>
<p>查找了一下，找到了解决的办法。</p>
<p>原文：http://<span class='wp_keywordlink'><a href="http://liucheng.name/category/wordpress/" title="wordpress">wordpress</a></span>.org/support/topic/346986</p>
<p>找到DB Cache Reloaded的db-module.php 829行，改为：</p>
<pre><code>elseif ( // For hard queries - skip them
	!preg_match( "/\\s*(JOIN | \* |\*\,)/si", $query ) || (
	// User-defined cache filters
	isset( $config['filter'] ) &amp;&amp; ( $config['filter'] != '' ) &amp;&amp;
	preg_match( "/\\s*(".$config['filter'].")/si", $query ) )) {
	$dbcr_cacheable = false;
}</code></pre>
<p>问题解决。 DB Cache Reloaded的缓存效果就很不错的。WP-PostViews我也是必用的。</p>


<h2>相关文章：</h2><ol><li><a href='http://liucheng.name/1144/' rel='bookmark' title='Permanent Link: 推荐两个缓存插件：DB Cache Reloaded与Hyper Cache'>推荐两个缓存插件：DB Cache Reloaded与Hyper Cache</a></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://liucheng.name/1241/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>太平洋摄影论坛：佳能550D团购活动</title>
		<link>http://liucheng.name/1239/</link>
		<comments>http://liucheng.name/1239/#comments</comments>
		<pubDate>Sat, 06 Mar 2010 07:35:49 +0000</pubDate>
		<dc:creator>柳城</dc:creator>
				<category><![CDATA[Lc.摄影]]></category>
		<category><![CDATA[550D]]></category>
		<category><![CDATA[佳能]]></category>

		<guid isPermaLink="false">http://liucheng.name/?p=1239</guid>
		<description><![CDATA[前几天在太平洋摄影网的某篇文章里，就提到了某编辑想要带领网友作一次550D的团购。我就一直留意了。果真，太平洋摄影论坛在昨天发起了佳能550D的团购活动。这次的活动是广州地区的，保证是广州的最低价格。

<h2>相关文章：</h2><ol><li><a href='http://liucheng.name/1237/' rel='bookmark' title='Permanent Link: 我的入门单反目标：EOS 550D'>我的入门单反目标：EOS 550D</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>前几天在太平洋摄影网的某篇文章里，就提到了某编辑想要带领网友作一次<span class='wp_keywordlink_affiliate'><a href="http://liucheng.name/tag/550d/" title="查看 550D 的全部文章" target="_blank">550D</a></span>的团购。我就一直留意了。（详细的请看：<a href="http://dc.pconline.com.cn/daogou/market/1003/2057238_3.html" target="_blank">传送</a>）</p>
<p>果真，太平洋摄影论坛在昨天发起了<span class='wp_keywordlink_affiliate'><a href="http://liucheng.name/tag/%e4%bd%b3%e8%83%bd/" title="查看 佳能 的全部文章" target="_blank">佳能</a></span><span class='wp_keywordlink_affiliate'><a href="http://liucheng.name/tag/550d/" title="查看 550D 的全部文章" target="_blank">550D</a></span>的团购活动。这次的活动是广州地区的，保证是广州的最低价格。(详情请看：<a href="http://itbbs.pconline.com.cn/dc/11075588.html" target="_blank">传送)</a>。有兴趣的去了解了解。<span id="more-1239"></span></p>
<h3>佳能550D团购活动</h3>
<p style="text-align: center;"><a href="http://yunphotos.yun.im/wp-content/uploads/2010/03/eos550D.jpg"><img title="太平洋摄影论坛推出团购活动：佳能550D" src="http://yunphotos.yun.im/wp-content/uploads/2010/03/eos550D.jpg" alt="" width="648" height="405" /></a></p>
<p style="text-align: center;"><a href="http://yunphotos.yun.im/wp-content/uploads/2010/03/eos550D.jpg"></a><strong>为保障大家利益，本次活动原则上只限广州地区朋友参加</strong></p>
<p><span style="color: red;">附550D最新参考报价（广州地区）：</span></p>
<p><span style="color: red;">佳能 EOS 550D 单机                                               市场价格 5088</span><br />
<span style="color: red;">佳能 EOS 550D(配18-135mm IS 镜头) 大套   市场价格6999 </span><br />
<span style="color: red;">佳能 EOS 550D(配18-55mm IS 镜头)  小套   市场价格5620</span></p>
<p>有这种团购活动我当然是很心动的。我要不要也参加好呢？观望考虑中。说实话，我是有几点顾虑的：</p>
<ul>
<li>1，在该贴中有提到：<span style="color: #ff0000;">最终价格会比实际出货时候的市场价低至少100元</span>。团购才少100，呼引力太少（而且团购是没有附赠物的，如相机包之类的。）。但然这不是最终的价格。</li>
<li>2，在该贴中给出的参考报价，应该是较高的一种。在某些商家，给出的550D单机价格低于4900的也是有的。</li>
<li>3，<strong>为何是在这个时候团购？</strong>大家都知道，新机刚出。价格都是有些虚高的。如果是我要发动团购的，我应该会在第一次降价后的。当然了，这种东西。早买早玩，就看你怎样对待而已。</li>
<li>4，这种活动说不定就是商家的一种销售手段。<strong>团购有优惠是肯定，优惠的多少就难说了</strong>。（另外，质量有保证肯定应该可以肯定的）</li>
</ul>
<p>以上只是我个人的看法，作个参考而已。总体来说，<strong>我是看好这次团购的，也欢迎这类团购活动。</strong></p>
<p>有兴趣的朋友可以去了解一下，<strong>报名时间：</strong>2010年3月5日-2010年3月12日24：00</p>


<h2>相关文章：</h2><ol><li><a href='http://liucheng.name/1237/' rel='bookmark' title='Permanent Link: 我的入门单反目标：EOS 550D'>我的入门单反目标：EOS 550D</a></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://liucheng.name/1239/feed/</wfw:commentRss>
		<slash:comments>28</slash:comments>
		</item>
		<item>
		<title>我的入门单反目标：EOS 550D</title>
		<link>http://liucheng.name/1237/</link>
		<comments>http://liucheng.name/1237/#comments</comments>
		<pubDate>Mon, 01 Mar 2010 02:10:05 +0000</pubDate>
		<dc:creator>柳城</dc:creator>
				<category><![CDATA[Lc.摄影]]></category>
		<category><![CDATA[550D]]></category>
		<category><![CDATA[EOS 550D]]></category>

		<guid isPermaLink="false">http://liucheng.name/?p=1237</guid>
		<description><![CDATA[自从毕业后，我就没有认真地拍过照，摸过相机了。这渴得我啊。这一年多来，一直渴望着我的第一部单反相机。
这不，我要在今年完成这一愿望，入一个入门单反。经过这段时间的比较，锁定了我的第一个单反目标：Canon EOS 550D
EOS 550D
先来张照片，看看550D的风采先：

佳能550D新特性
佳能550D是今年最新的一款入门单反相机，2月9号发布，24号才上市。这款单反一出，立即又掀出新一轮的购买热流啊。来看看EOS 550D的新特性吧：

1800万像素的COMS感光元件
长宽3：2的全新的LCD，效果更佳
63区双层测光感应器（测光更准确）
全高清的短片拍摄功能（堪比专业摄像机啊）
中央对焦点改进
ISO可手动设置上限值。
全新的电池，并且支持SDXC大容量存储卡

。。。等等，不一一列出。上面是比较吸引人的。
550D上市价格
我收集了一下550D各地的上市价格。下表都是550D（含18-55mm的套机）的价格。







价格
人民币


英国
899.99英镑
9,632左右


日本
88,817日元
6,671左右


美国
899.99美元
6,149左右


香港
7,280港币
6,401左右


中国大陆
5,669人民币
5,600左右



看，以英国的上市价格最贵。中国大陆的最便宜。香港的价格也偏贵。想买单反的朋友是不是也心动了啊？
几点PS
PS：买单反的话还是在国内买便宜啊。
PPS：再告诉你的消息，根据我的观察。一般单反相机在上市后第6周或第11周的时间里，就会大降价一次。有兴趣的朋友们可不要错过了。我是会随时关注这个相机的价格的。
PPPS: 我的摄影站开通了。目前是用zsofa的主题，有兴趣关注摄影的朋友记得多多关注一下了。(云摄影：http://yunphotos.com/)
]]></description>
			<content:encoded><![CDATA[<p>自从毕业后，我就没有认真地拍过照，摸过相机了。这渴得我啊。这一年多来，一直渴望着我的第一部单反相机。</p>
<p>这不，我要在今年完成这一愿望，入一个入门单反。经过这段时间的比较，锁定了我的第一个单反目标：<strong>Canon EOS <span class='wp_keywordlink_affiliate'><a href="http://liucheng.name/tag/550d/" title="查看 550D 的全部文章" target="_blank">550D</a></span></strong><span id="more-1237"></span></p>
<h3><strong>EOS <span class='wp_keywordlink_affiliate'><a href="http://liucheng.name/tag/550d/" title="查看 550D 的全部文章" target="_blank">550D</a></span></strong></h3>
<p>先来张照片，看看550D的风采先：</p>
<p><a href="http://liucheng.yun.im/wp-content/uploads/2010/03/canon550d.jpg"><img class="aligncenter size-full wp-image-1238" title="Canon EOS 550D" src="http://liucheng.yun.im/wp-content/uploads/2010/03/canon550d.jpg" alt="" width="500" height="375" /></a></p>
<h3>佳能550D新特性</h3>
<p>佳能550D是今年最新的一款入门单反相机，2月9号发布，24号才上市。这款单反一出，立即又掀出新一轮的购买热流啊。来看看<span class='wp_keywordlink_affiliate'><a href="http://liucheng.name/tag/eos-550d/" title="查看 EOS 550D 的全部文章" target="_blank">EOS 550D</a></span>的新特性吧：</p>
<ol>
<li>1800万像素的COMS感光元件</li>
<li>长宽3：2的全新的LCD，效果更佳</li>
<li>63区双层测光感应器（测光更准确）</li>
<li>全高清的短片拍摄功能（堪比专业摄像机啊）</li>
<li>中央对焦点改进</li>
<li>ISO可手动设置上限值。</li>
<li>全新的电池，并且支持SDXC大容量存储卡</li>
</ol>
<p>。。。等等，不一一列出。上面是比较吸引人的。</p>
<h3>550D上市价格</h3>
<p>我收集了一下550D各地的上市价格。下表都是550D（含18-55mm的套机）的价格。</p>
<table>
<col width="72"></col>
<col width="93"></col>
<col width="264"></col>
<tbody>
<tr height="19">
<td width="72" height="19"></td>
<td width="93">价格</td>
<td width="164">人民币</td>
</tr>
<tr height="19">
<td height="19">英国</td>
<td>899.99英镑</td>
<td>9,632左右</td>
</tr>
<tr height="19">
<td height="19">日本</td>
<td>88,817日元</td>
<td>6,671左右</td>
</tr>
<tr height="19">
<td height="19">美国</td>
<td>899.99美元</td>
<td>6,149左右</td>
</tr>
<tr height="19">
<td height="19">香港</td>
<td>7,280港币</td>
<td>6,401左右</td>
</tr>
<tr height="19">
<td height="19">中国大陆</td>
<td>5,669人民币</td>
<td>5,600左右</td>
</tr>
</tbody>
</table>
<p>看，以英国的上市价格最贵。中国大陆的最便宜。香港的价格也偏贵。想买单反的朋友是不是也心动了啊？</p>
<h3>几点PS</h3>
<p>PS：买单反的话还是在国内买便宜啊。</p>
<p>PPS：再告诉你的消息，根据我的观察。一般单反相机在上市后第6周或第11周的时间里，就会大降价一次。有兴趣的朋友们可不要错过了。我是会随时关注这个相机的价格的。</p>
<p>PPPS: 我的摄影站开通了。目前是用zsofa的主题，有兴趣关注摄影的朋友记得多多关注一下了。(<strong><a href="http://yunphotos.com/" target="_blank">云摄影</a>：</strong><a href="http://yunphotos.com/"><strong>http://yunphotos.com/</strong></a>)</p>
]]></content:encoded>
			<wfw:commentRss>http://liucheng.name/1237/feed/</wfw:commentRss>
		<slash:comments>62</slash:comments>
		</item>
		<item>
		<title>用Perl抓取网页和提交表格</title>
		<link>http://liucheng.name/1236/</link>
		<comments>http://liucheng.name/1236/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 06:20:24 +0000</pubDate>
		<dc:creator>柳城</dc:creator>
				<category><![CDATA[数据分析]]></category>
		<category><![CDATA[perl]]></category>

		<guid isPermaLink="false">http://liucheng.name/?p=1236</guid>
		<description><![CDATA[这里简单介绍一下用Perl来实现抓好取网页的源代码，以及用POST的方法来提交表格，并返回结果。难的讲不来，讲讲简单的。use LWP::Simple;use LWP::UserAgent;


<h2>相关文章：</h2><ol><li><a href='http://liucheng.name/1153/' rel='bookmark' title='Permanent Link: Perl chr函数'>Perl chr函数</a></li>
<li><a href='http://liucheng.name/477/' rel='bookmark' title='Permanent Link: 如何用perl处理测序文件'>如何用perl处理测序文件</a></li>
<li><a href='http://liucheng.name/497/' rel='bookmark' title='Permanent Link: perl:使用system函数'>perl:使用system函数</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>这里简单介绍一下用<span class='wp_keywordlink_affiliate'><a href="http://liucheng.name/tag/perl/" title="Perl" target="_blank">Perl</a></span>来实现抓好取网页的源代码，以及用POST的方法来提交表格，并返回结果。难的讲不来，讲讲简单的。</p>
<p>这里讲到的Perl模块有：</p>
<pre>use LWP::Simple;</pre>
<pre>use LWP::UserAgent;</pre>
<p>用<strong>perldoc</strong>查看详细的用法。<span id="more-1236"></span></p>
<h3>1，用<span class='wp_keywordlink_affiliate'><a href="http://liucheng.name/tag/perl/" title="perl">perl</a></span>抓取网页</h3>
<p>如果只是要拿到某个网页，那使用 LWP::Simple 里的函数是最简单的。通过调用<strong> get($url) </strong>函数，就可以得到相关网址的内容。</p>
<pre>my $url = 'http://freshair.npr.org/dayFA.cfm?todayDate=current'

use LWP::Simple;
my $content = get $url;
die "Couldn't get $url" unless defined $content;

#  $content 里是网页内容，下面是对此内容作些分析：

if($content =~ m/jazz/i) {
print "They're talking about jazz today on Fresh Air!\n";
} else {
print "Fresh Air is apparently jazzless today.\n";
}</pre>
<p>非常简单易懂。拿网页内容是容易的，难的是用正则过滤需要的内容。</p>
<h3>2，通过 POST提交表格</h3>
<p>部分HTML表格使用HTML POST 向服务器提交数据，在这里你可以这样：</p>
<pre>$response = $browser-&gt;post( $url,
   [
     formkey1 =&gt; value1,
     formkey2 =&gt; value2,
     ...
   ],
 );</pre>
<p>实例分析：例如在(<a href="http://www.enzim.hu/hmmtop/html/submit.html">http://www.enzim.hu/hmmtop/html/submit.html</a>)提交一段<span class='wp_keywordlink_affiliate'><a href="http://liucheng.name/entrez/" title="序列" target="_blank">序列</a></span>并返回结果，用<span class='wp_keywordlink_affiliate'><a href="http://liucheng.name/tag/perl/" title="查看 perl 的全部文章" target="_blank">perl</a></span>来实现。代码如下：</p>
<pre>#!/usr/bin/perl

use LWP::UserAgent;
my $browser = LWP::UserAgent-&gt;new;
$protein = "MSSSTPFDPYALSEHDEERPQNVQSKSRTAELQAEIDDTVGIMRDNINKVAERGERLTSI";
my $SUSUI_URL = "http://www.enzim.hu/hmmtop/server/hmmtop.cgi";
my $response = $browser-&gt;post( $SUSUI_URL,    [ 'if' =&gt; $protein, ]  );

if ($response-&gt;is_success) {
	print $response-&gt;content;
} else {
	print "Bad luck this time\n";
}</pre>
<p>通过分析<a href="http://www.enzim.hu/hmmtop/html/submit.html">http://www.enzim.hu/hmmtop/html/submit.html</a>的页面可知，这个要提交的input只有一个，就是name="if"。$protein就是要提交的序列。$response-&gt;content就是返回结果。</p>


<h2>相关文章：</h2><ol><li><a href='http://liucheng.name/1153/' rel='bookmark' title='Permanent Link: Perl chr函数'>Perl chr函数</a></li>
<li><a href='http://liucheng.name/477/' rel='bookmark' title='Permanent Link: 如何用perl处理测序文件'>如何用perl处理测序文件</a></li>
<li><a href='http://liucheng.name/497/' rel='bookmark' title='Permanent Link: perl:使用system函数'>perl:使用system函数</a></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://liucheng.name/1236/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>新的一年，新的愿望</title>
		<link>http://liucheng.name/1235/</link>
		<comments>http://liucheng.name/1235/#comments</comments>
		<pubDate>Tue, 23 Feb 2010 05:22:14 +0000</pubDate>
		<dc:creator>柳城</dc:creator>
				<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://liucheng.name/?p=1235</guid>
		<description><![CDATA[选择了在今天休息，也是一个难得的好天气，没有过年期间的寒冷天气，今天难得的阳光也出来了。出去坐坐BRT，转转岗项，去中三医看了鼻炎，接着去百佳超市况换了移动的40元购物劵。]]></description>
			<content:encoded><![CDATA[<p>年后我已经工作5天了，今天是难得的休息。这几天一直处在晕晕沉沉的状态，提不起心思来发篇发章。也没有心思专注于工作。可能这就是节后综合症。</p>
<p>选择了在今天休息，也是一个难得的好天气，没有过年期间的寒冷天气，今天难得的阳光也出来了。出去坐坐BRT，转转岗项，去中三医看了鼻炎，接着去百佳超市况换了移动的40元购物劵。<span id="more-1235"></span></p>
<p>工作后的休息，阴霾天气后的阳光，终于有了静下来的心思。我想讲讲愿望。人人心中都应该有个愿望。而在新的一年里，肯定也有了新的愿望。</p>
<p>愿望是美好的，就像这穿透云层的阳光一样，赶走阴郁，暖暖的。愿望也是值得期待的，没有憧憬的日子并不好过，有期待的日子，我们才可以对生活信心满满。</p>
<p>我们常说，不如意之事十之八九。这说明，在人生这个游戏里，我们虽是主角，却处处透着无奈。在这个“被”的时代里，我们随时都在“被无奈”着。从呱呱堕地哪一刻起，“杯具”就如影相随了。</p>
<p>读书有升学的压力，工作有工作的重担。穷有穷的苦，富有富的愁。家家都有本难念的经，人人心中都有难言之隐。</p>
<p>或许，在新的一年里，我们已经不敢奢望太多了，只在心底里轻轻地放着这一年淡淡的心愿。</p>
<p>末了，说一声，我很好，已经不能再好了，只希望人人有个好心情。</p>
<p>末了，你的新年愿望是什么呢？</p>
]]></content:encoded>
			<wfw:commentRss>http://liucheng.name/1235/feed/</wfw:commentRss>
		<slash:comments>29</slash:comments>
		</item>
		<item>
		<title>给大家拜个早年：2010恭贺新禧</title>
		<link>http://liucheng.name/1233/</link>
		<comments>http://liucheng.name/1233/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 02:35:49 +0000</pubDate>
		<dc:creator>柳城</dc:creator>
				<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://liucheng.name/?p=1233</guid>
		<description><![CDATA[年关近了，年味浓了。
柳城提前给大家拜个早年，祝：
家家幸福，事事如意！ 过个好年。

]]></description>
			<content:encoded><![CDATA[<p>年关近了，年味浓了。</p>
<p>柳城提前给大家拜个早年，祝：</p>
<p>家家幸福，事事如意！ 过个好年。<span id="more-1233"></span></p>
<p style="text-align: center;"><a href="http://liucheng.yun.im/wp-content/uploads/2010/02/2010chunjie.jpg"><img class="aligncenter size-full wp-image-1234" title="给大家拜个早年：2010恭贺新禧" src="http://liucheng.yun.im/wp-content/uploads/2010/02/2010chunjie.jpg" alt="" width="502" height="331" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://liucheng.name/1233/feed/</wfw:commentRss>
		<slash:comments>46</slash:comments>
		</item>
		<item>
		<title>2010年2月4日 UUCall全新归来!</title>
		<link>http://liucheng.name/1226/</link>
		<comments>http://liucheng.name/1226/#comments</comments>
		<pubDate>Thu, 04 Feb 2010 13:50:44 +0000</pubDate>
		<dc:creator>柳城</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[UUcall]]></category>
		<category><![CDATA[网络电话]]></category>

		<guid isPermaLink="false">http://liucheng.name/?p=1226</guid>
		<description><![CDATA[2010年2月4日 UUCall全新归来!今天，打开UUCall的官方网站，UUCall已恢复运营。并推出了一系列的优惠活动。到底是不是优惠的，我们就不大清楚了。且看看恢复的一些情况，我来测试测试。

<h2>相关文章：</h2><ol><li><a href='http://liucheng.name/1186/' rel='bookmark' title='Permanent Link: 2010年2月4日 全新UUCall即将到来'>2010年2月4日 全新UUCall即将到来</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>经过了100多天漫长的等待。UUCall终于回来了。</p>
<p>今天，打开UUCall的官方网站，UUCall已恢复运营。并推出了一系列的优惠活动。到底是不是优惠的，我们就不大清楚了。且看看恢复的一些情况，我来测试测试。</p>
<h3>先来看看全新的UUCall</h3>
<p><span id="more-1226"></span><br />
在UUCALL网站看到，恢复运营后的UUCALL推出了一系列的资费优惠活动。</p>
<p style="text-align: center;"><a href="http://liucheng.yun.im/wp-content/uploads/2010/02/uucall_2.png"><img class="aligncenter size-full wp-image-1227" title="2010年2月4日 UUCall全新归来!" src="http://liucheng.yun.im/wp-content/uploads/2010/02/uucall_2.png" alt="" width="491" height="434" /></a></p>
<h3>UUCall软件也能正常登陆</h3>
<p style="text-align: center;"><a href="http://liucheng.yun.im/wp-content/uploads/2010/02/uucall_1.png"><img class="aligncenter size-full wp-image-1228" title="UUCall软件也能正常登陆" src="http://liucheng.yun.im/wp-content/uploads/2010/02/uucall_1.png" alt="" width="445" height="258" /></a></p>
<p>不过，接下来还是有一些步骤需要完成的。据了解，由于UUCALL在国内市场拥有3000万的使用用户，重新开通后，架构了新的帐户体系和新的计费系统，出现了与原系统的对接问题，导致用户信息及联系人、余额迁移的不通畅。</p>
<p style="text-align: center;"><a href="http://liucheng.yun.im/wp-content/uploads/2010/02/uucall_3.png"><img class="aligncenter size-full wp-image-1229" title="2010年2月4日 UUCall全新归来!" src="http://liucheng.yun.im/wp-content/uploads/2010/02/uucall_3.png" alt="" width="341" height="161" /></a></p>
<h4>UUCall的声明如下：</h4>
<blockquote><p><strong>老系统用户转移通知</strong></p>
<p>由于UUCall系统帐户体系和业务模型的升级，老系统用户必须转移到新的UUCall系统后才可以继续使用UUCall的相关付费服务，请点击登录按钮登录系统以后，根据系统提示进行转移操作。</p>
<p>如果你使用的UUCall为4.1之前的软件版本，您必须重新下载UUCall电话宝4.1版本才可以使用电话服务。您可以在转移操作完成后再下载客户端软件。</p>
<p>感谢您对UUCall的理解和支持。</p></blockquote>
<p>不过，在UUCall的首页却没有这个公告，也没有详细的转移步骤介绍。<strong>这里我简单讲讲：</strong></p>
<p>1，回想一下你的旧的帐号密码。（经过我的测试，这个貌似忘了的话就大大地糟糕了。在没转移到新系统之前是打不了电话的，用新的UUCall网站取不回密码。如能直接联系客服了。）</p>
<p>2，用旧的帐号密码在新的UUCall网站登陆。</p>
<p>3，登陆后向有一个余额等的转移过程。看清下面的图，<strong>余额从0.04到0.03</strong>。看，给吞了一分钱。我的钱不多，给吞的也不多。那么本身余额多的就难说了。据说<strong>不少曾经充值数百元的老用户发现，帐户内的余额严重缩水。</strong>不过不要急，且看下面，似乎完成转移后会回来。</p>
<p style="text-align: center;"><a href="http://liucheng.yun.im/wp-content/uploads/2010/02/uucall_4.png"><img class="aligncenter size-full wp-image-1230" title="登陆后向有一个余额等的转移过程" src="http://liucheng.yun.im/wp-content/uploads/2010/02/uucall_4.png" alt="" width="545" height="427" /></a></p>
<p>4，输入新的帐号密码。必须是邮箱。</p>
<p>5，再用新帐号登陆一看。余额还是原来的。</p>
<p style="text-align: center;"><a href="http://liucheng.yun.im/wp-content/uploads/2010/02/uucall_5.png"><img class="aligncenter size-full wp-image-1231" title="再用新帐号登陆一看。余额还是原来的。" src="http://liucheng.yun.im/wp-content/uploads/2010/02/uucall_5.png" alt="" width="332" height="109" /></a></p>
<p>最后一点，<strong>目前的通话质量很差</strong>。官方的解释是一下子通话太多，造成拥挤。且看接下来的情况如何。</p>
<p>好了。暂时体验就到这样。其他有用UUCall的朋友也来讲讲。</p>


<h2>相关文章：</h2><ol><li><a href='http://liucheng.name/1186/' rel='bookmark' title='Permanent Link: 2010年2月4日 全新UUCall即将到来'>2010年2月4日 全新UUCall即将到来</a></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://liucheng.name/1226/feed/</wfw:commentRss>
		<slash:comments>30</slash:comments>
		</item>
	</channel>
</rss>
