<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
<channel>
<title><![CDATA[禅意生活]]></title> 
<description><![CDATA[人生的意义在于灵魂修炼]]></description>
<link>http://www.512059.com/</link>
<language>zh-cn</language>
<generator>www.emlog.net</generator>
<item>
	<title>荒~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</title>
	<link>http://www.512059.com/post-102.html</link>
	<description><![CDATA[记不得有多长时间没有想起这里，博客长草了；很深，很深````````````````````````````````````]]></description>
	<pubDate>Mon, 03 Jan 2011 15:15:56 +0000</pubDate>
	<author>化境</author>
	<guid>http://www.512059.com/post-102.html</guid>

</item>
<item>
	<title>linux命令之显示文件列表</title>
	<link>http://www.512059.com/post-101.html</link>
	<description><![CDATA[<p>ls命令是linux系统中使用频率最高的命令，而且它的参数也是linux命令中最多的一个。ls命令用于查询显示文件及目录列表，类似DOS下面的dir命令，在linux系统下的所有用户均有使用权限。</p>
<p>格式：ls【参数选项】 文件名</p>
<p>主要参数：</p>
<ul><li>-a ：列出目录下的所有文件，包括以&ldquo;.&quot;开头的隐含文件。</li>
<li>-b ：把文件名中不可输出的字符用反斜杠加字符编号的形式列出。</li>
<li>-c ：输出文件的i节点的修改时间，并以此排序。</li>
<li>-d ：将目录像文件一样显示，而不是显示其下的文件。</li>
<li>-e ：输出时间的全部信息，而不是输出简略信息。</li>
<li>-f -U ：对输出的文件不排序。</li>
<li>-i ：输出文件的i节点的索引信息。</li>
<li>-k ：以K字节的形式表示文件的大小。</li>
<li>-l ：列出文件的详细信息。</li>
<li>-m ：横向输出文件名，并以&rdquo;，&ldquo;作为分隔符。</li>
<li>-n ：用数字的UID，GID代替名称。</li>
<li>-o ：显示文件的除组信息外的详细信息。</li>
<li>-p-F：在每个文件名后附上一个字符以说明该文件的类型，&quot;*&quot;表示可执行的普通文件；&ldquo;/&rdquo;表示目录；&ldquo;@&rdquo;表示符号链接；&ldquo;|&quot;表示FIFOs；&rdquo;=&ldquo;表示套接字（sockets）</li>
<li>-q ：用？代替不可输出的字符。</li>
<li>-r ：对目录反向排序。</li>
<li>-s ：在每个文件名后输出文件的大小。</li>
<li>-t ：以时间排序。</li>
<li>-u ：以文件上次被访问的时间排序。</li>
<li>-x ：按列输出，横向排序。</li>
<li>-A ：显示除&rdquo;.&ldquo;和&rdquo;..&quot;外的所有文件。</li>
<li>-B ：不输出以&ldquo;~&rdquo;结尾的备份文件。</li>
<li>-C ：按列输出，纵向排序。</li>
<li>-G ：输出文件的组的信息。</li>
<li>-L ：列出链接文件名而不是链接到的文件。</li>
<li>-N ：不限制文件长度。</li>
<li>-Q ：把输出文件名用双引号括起来。</li>
<li>-R ：列出所有子目录下的文件。</li>
<li>-S ：以文件大小排序。</li>
<li>-X ：以文件的扩展名（最后一个&ldquo;.&rdquo;后的字符）排序。</li>
<li>-I ：一行只输出一个文件。</li>
<li>--color=no ：不显示彩色文件名。</li>
<li>--help ：在标准输出上显示帮助信息。</li>
<li>--version ：在标准的输出上输出版本信息并退出。</li>
</ul>
<p>使用ls命令时会有几种不同的颜色，其中蓝色表示 是目录，绿色表示 是可执行文件，红色表示 是压缩文件，浅蓝色表示 是链接文件，加粗，的黑色表示符号链接，灰色表示是其他格式的文件。</p>
<p>应用举例：</p>
<p>（1）使用命令 ls -a</p>
<p>下图所示，你可以看到以点开头的隐含文件。</p>
<p><a href="http://www.512059.com/content/uploadfile/201009/21884545fcc1b489e1257d6021d003a320100903014511.png" id="ematt:47" target="_blank"><img alt="点击查看原图" border="0" src="http://www.512059.com/content/uploadfile/201009/thum-21884545fcc1b489e1257d6021d003a320100903014511.png" /></a>
</p>
<p>（2）如果你想查看文件或者目录的大小和创建时间等，在ls -a命令后面加选项（-l）即可。这个命令显示了文件的创建日期，大小、所有者、权限等。当你想查看其它目录内容时不必位于其目录下。假如你在主目录下要查看 /opt目录中的内容，使用命令：ls -al /opt &nbsp; 就可以了。图示：</p>
<p><a href="http://www.512059.com/content/uploadfile/201009/bdd7ce6fda4a3652e9d82eb51b43cf6920100903015632.png" id="ematt:48" target="_blank"><img alt="点击查看原图" border="0" src="http://www.512059.com/content/uploadfile/201009/thum-bdd7ce6fda4a3652e9d82eb51b43cf6920100903015632.png" /></a>
</p>]]></description>
	<pubDate>Thu, 02 Sep 2010 17:05:41 +0000</pubDate>
	<author>化境</author>
	<guid>http://www.512059.com/post-101.html</guid>

</item>
<item>
	<title>一个高效、稳定的mysql数据库备份工具</title>
	<link>http://www.512059.com/post-100.html</link>
	<description><![CDATA[<p>mysql数据库备份与恢复你是否还在惯用phpmyadmin?曾经我也认为用phpmyadmin做备份与恢复是个非常好的选择；直到今天，我彻底觉悟了。</p>
<p>昨天把博客挪了个地，用phpmyadmin把备份恢复到新的数据库里。上传程序和附件后，在写日志时发现编辑器的工具栏不见了。于是将我认为让它不加载的可能都检查测试了一次；但还是不行。就这样我开始怀疑程序是否有BUG。在今天千古上线说是因为不同MYSQL版本数据互导产生的问题；并介绍用帝国备份王来进行这样的操作得以解决问题。</p>
<p>&nbsp;</p>
<p>帝国备份王(Empirebak)简介</p>
<p>EmpireBak是一款完全开源免费、专门为MYSQL大数据的备份与导入而设计的稳定高效软件,系统采用分卷备份与导入,理论上可备份任何大小的数据库.&nbsp;</p>
<p>帝国备份王解决MYSQL备份三大难题：</p>
<p>1、解决备份大数据问题，采用分组备份，备份稳定高效；</p>
<p>2、解决备份数据编码乱码问题，备份王智能识别编码；</p>
<p>3、解决不同MYSQL版本数据不能互导问题，通过备份王不存在数据库版本区别。</p>
<p>&nbsp;</p>
<p>其主要特性见官网介绍：</p>
<p>http://www.phome.net/ebak2010/</p>]]></description>
	<pubDate>Sun, 22 Aug 2010 05:11:58 +0000</pubDate>
	<author>化境</author>
	<guid>http://www.512059.com/post-100.html</guid>

</item>
<item>
	<title>UBUNTU下的音乐播放器：中国移动咪咕for linux</title>
	<link>http://www.512059.com/post-99.html</link>
	<description><![CDATA[<p>&nbsp;</p>
<p>咪咕音乐是中国移动精心为广大网友打造的正版音乐客户端软件，通过精巧的设计、海量的曲库、完美的音质、独特的功能、简单易用的操作等服务，让广大网民在最快时间内欣赏到最新最全的正版数字音乐，并轻松下载到手机，随时进行分享。</p>
<p>提供正版数字音乐下载，享受最优的试听服务。最新的MV、演唱会、新闻全部免费放送，让您边听边看。咪咕播放器实时关注明星全方位的动态，可以为您提供丰富的资讯内容。多款个性皮肤和自定义底纹，满足您的个性化需求。贴心的音乐管理服务，助您轻松管理本地和移动设备的歌曲。向您推荐丰富的榜单歌曲，轻松享受音乐套餐。咪咕播放器为用户构建了全新互动平台，方便歌友分享音乐。</p>
<p><a href="http://www.512059.com/content/uploadfile/201008/c787ece248befefcd804ba01515acddb20100822050150.png" id="ematt:46" target="_blank"><img alt="点击查看原图" border="0" src="http://www.512059.com/content/uploadfile/201008/thum-c787ece248befefcd804ba01515acddb20100822050150.png" /></a>
</p>]]></description>
	<pubDate>Sun, 22 Aug 2010 04:35:35 +0000</pubDate>
	<author>化境</author>
	<guid>http://www.512059.com/post-99.html</guid>

</item>
<item>
	<title>web前端设计初学者工具选择</title>
	<link>http://www.512059.com/post-98.html</link>
	<description><![CDATA[<p>在这个 Web 的时代，与 Web 相关的开发技术持续热门，从前端到后台，从标记到开发语言，各种技术交相辉映，沉沉浮浮。喜欢折腾博客的童鞋们希望能做出合自己风格的前端；因此作为初学者，如何选择几门适合自己的开发工具语言尤为重要。</p>
<p><a href="/content/uploadfile/201008/454f80b38115d7c1909663ea8fa5554420100821095945.png" id="ematt:45" target="_blank"><img alt="点击查看原图" border="0" src="/content/uploadfile/201008/thum-454f80b38115d7c1909663ea8fa5554420100821095945.png" /></a> </p>
<p>对于初学入门者，不论怎样选择，HTML 是最重要的开始。 HTML、CSS、JS 是前段开发必须掌握的三种语言。然而XHTML 和 HTML 之争，也只不过是限于对语言的严格程度上。PHP 和 MySQL 属于服务器端的开发语言，服务器端的开发语言有更广泛的选项，除了 PHP ， MySQL，还有 ASP.NET，MS SQL，JSP，Ruby 都是可以考虑的选项，关键看项目要求。</p>]]></description>
	<pubDate>Sat, 21 Aug 2010 09:37:07 +0000</pubDate>
	<author>化境</author>
	<guid>http://www.512059.com/post-98.html</guid>

</item>
<item>
	<title>音乐播放器——SWFSound</title>
	<link>http://www.512059.com/post-97.html</link>
	<description><![CDATA[<p>在google code上发现一个音乐播放器，这正是我苦寻已久，用于网页嵌入使用最理想的播放器。功能全齐，且易于使用。 SWFSound 是基于SWFObject，并允许跨plattform，跨浏览器的HTML / JavaScript的动态声音控制。 是基于MIT许可下发布的，可以自由使用 两种 非commercal及商业 项目。 JavaScript的一个4KB的除了一个微小的Flash SWF主机（约750字节库中的包consits）允许你动态加载MP3音乐播放和直接从HTML / JavaScript控制。 - 您可以直接从JavaScript控制所有功能，甚至都不需要你接触Flash的文件！ 基本 SWFSound特征 包括： 支持 动态加载的MP3 文件 支持播放/停止/暂停 支持循环 支持预压和MP3流 支持MP3的ID3标签信息 支持播放 多种声音 同时 支持独立设置的数量和每个健全淘金 支持的onLoad和onSoundComplete 事件处理程序 获取当前 播放位置 和总 时间 获得总字节数和每个声音加载字节（无论是在流媒体或预） 最低需要Flash Player的版本：8.0 </p>
<p>项目地址：http://swfsound.googlecode.com/svn/trunk/</p>]]></description>
	<pubDate>Sat, 21 Aug 2010 08:10:09 +0000</pubDate>
	<author>化境</author>
	<guid>http://www.512059.com/post-97.html</guid>

</item>
<item>
	<title>linux下一优秀的邮件客户端</title>
	<link>http://www.512059.com/post-96.html</link>
	<description><![CDATA[<p>在浏览网页时，无意发现Claws Mail。测试了下，觉得很不错。它是一款基于GTK+开发的优秀邮件客户端和阅读器程序。遵守GNU GPL ，在遵守GPL的情况下，你可以免费的使用，可以自由的修改。Claws Mail的用户界面非常接近我们以前经常使用的Windows下的同类软件，比如outlook、Becky!等，因此Claws Mail的用户不会产生陌生感，而且操作简单直观，并提供了绝大多数功能的快捷键。<br />Claws Mail对邮件和信息的管理采用MH格式，因此具有良好的通用性。此外，还可以利用fetchmail、procmail以及其它外部程序来增强它的功能。<br />该软件的其它特性还包括：<br />多用户支持<br />线程操作<br />过滤器支持<br />SSL连接支持<br />X-Face功能支持<br />内建图片浏览功能<br />支持插件<br />邮箱的导入和导出功能<br />GnuPG的支持<br />标签支持<br />打印功能<br />排序工具<br />POP和SMTP协议的认证等等<br /><a href="http://www.512059.com/content/uploadfile/201007/a7d3437b4b8f6cefc9ac4fec3756ea9520100726004405.png" id="ematt:44" target="_blank"><img alt="点击查看原图" border="0" src="http://www.512059.com/content/uploadfile/201007/thum-a7d3437b4b8f6cefc9ac4fec3756ea9520100726004405.png" /></a>
</p>]]></description>
	<pubDate>Mon, 26 Jul 2010 00:33:31 +0000</pubDate>
	<author>化境</author>
	<guid>http://www.512059.com/post-96.html</guid>

</item>
<item>
	<title>教育给了他们什么</title>
	<link>http://www.512059.com/post-93.html</link>
	<description><![CDATA[<p>在youku上看到这样一个新闻，说一帮个小子因为喝了点酒在小区门口撒尿，门卫前往制止竟遭殴打。简直无法无天。（详情且看视频）</p>
<p>在看完这个视频后，很愤怒。我在想，这帮小子在人家门口撒尿，说他几句就要打人，要是搞他们岂不要全家死光。好在他们老子只是有点儿钱，要是他们老子当军官这帮小子会不会敢当街杀人呢？说白了，他们就只有那点强盗的匪性。</p>
<p>透过这件事情来看法律和教育。为什么这帮人不送去劳改？十几年教育都给了他们什么？难道真的只是一个有什么学历的标签吗？</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" height="450" width="500"><param name="quality" value="high" /><param name="movie" value="http://player.youku.com/player.php/sid/XMTkwMTU2MTg4/v.swf" /><embed height="450" pluginspage="http://www.macromedia.com/go/getflashplayer" quality="high" src="http://player.youku.com/player.php/sid/XMTkwMTU2MTg4/v.swf" type="application/x-shockwave-flash" width="500"></embed>
</object>
</p>]]></description>
	<pubDate>Tue, 20 Jul 2010 04:35:30 +0000</pubDate>
	<author>化境</author>
	<guid>http://www.512059.com/post-93.html</guid>

</item>
<item>
	<title>今晨，茉莉花开啦！</title>
	<link>http://www.512059.com/post-92.html</link>
	<description><![CDATA[<p>早晨醒来，闻到一股沁人肺腑的香味。寻香的芳踪，在阳台上看到了茉莉花开。昨天的花苞今晨开了，小的也长成了大的。</p>
<p><a href="/content/uploadfile/201007/8f19df128ebb8f7813cc75241cc6734e20100718042318.jpg" id="ematt:41" target="_blank"><img alt="点击查看原图" border="0" src="/content/uploadfile/201007/thum-8f19df128ebb8f7813cc75241cc6734e20100718042318.jpg" /></a> </p>
<p>古人云："一卉能熏一室香，炎天犹觉玉肌凉"。 把它搬进屋里，放在<a href="http://www.holaba.com.cn/founder/laptops">电脑桌上</a> ；让芳香飘满我的房间</p>
<p><a href="/content/uploadfile/201007/cca8ab22430ba2a9e20393f220752ff320100718051714.jpg" id="ematt:43" target="_blank"><img alt="点击查看原图" border="0" src="/content/uploadfile/201007/thum-cca8ab22430ba2a9e20393f220752ff320100718051714.jpg" /></a> </p>]]></description>
	<pubDate>Sun, 18 Jul 2010 03:36:47 +0000</pubDate>
	<author>化境</author>
	<guid>http://www.512059.com/post-92.html</guid>

</item>
<item>
	<title>华夏名网，看你还能瘪三多久 。</title>
	<link>http://www.512059.com/post-91.html</link>
	<description><![CDATA[<p>作为一个IDC服务商，他们的客户就等同于合作伙伴。而华夏名网竟是这样对付与他们风雨同舟的合作伙伴。</p>
<p>朋友送我个主机，在华夏名网买的。虽说是朋友送的，但还是要说一下华夏名网那令人吐血的服务，以免再有朋友陷入到这样的痛苦之中。收到主机刚开始用时真的不错，自域名整治后，开始瘪三起来了。</p>
<p>记得在收到主机时我问了华夏名网的客服。其服务约定中有这样一条，主机可以绑定无限域名。现在只能绑定二个主域，连泛域名绑定也没了。搞得我买个新域名都没法更换。要是仅这样也就算了，可是这主机每隔三五天给你来个无法访问，（我经常碰到晚上出现无法访问，也刚好在这时候我想写点什么都不行。）找人来处理半天不见得有反应。他们很忙吗？连问他们丁点事都显得不耐烦，他们很了不起吗？他们这样的服务，甚至连那些个免费主机的服务都比它们好。这样的主机谁能用得安心。曾经还想租个大点的做个独立网店，可它们这样的服务我敢吗？</p>
<p>买个域名，想转出或者想用自己的DNS。他们竟然要求我续费一年，说得好像我需要巴结他们似的。但更像是他们在要挟我。那老子就不续费，顶多到期等这个域名释放后，再到其它地方重新注册，最坏也不过是不要这个域。</p>
<p>如果说，这些能事先在你们的首页上作说明，或许我能接受。但问题是我想要舒适点的服务，你却给我最烂的。</p>
<p>当然，中国有几亿网民，理论上你们可以忽悠几亿个网民的订单。但是，经这样口耳相传，看你还能瘪三多久 。</p>]]></description>
	<pubDate>Fri, 16 Jul 2010 00:58:19 +0000</pubDate>
	<author>化境</author>
	<guid>http://www.512059.com/post-91.html</guid>

</item>
<item>
	<title>种两株玫瑰</title>
	<link>http://www.512059.com/post-90.html</link>
	<description><![CDATA[<p>还在很小的时候就喜欢种花，也成功栽活过一些花。栽种玫瑰花那是在读初二时，看了些劳动指导手册，在学校的花坛里折了枝红玫瑰，便骑单车火速赶回家里经过一些简单的处理后，插在一个被水浇透的沙盆里。大概一个月后便生根且发了几颗嫩芽，但移栽到地里以后几个月便死了。此后也就没有想过要栽玫瑰。</p>
<p>今年在深圳，与欢再度相逢。记得在西乡步行街上，我对她说过，结婚后为她在后院种上一亩玫瑰。后来在网上收集了些相关的资料。最后，只因我们缘浅；也许今生都不会再见面了。</p>
<p>今天在整理wiki文档时发现了这些资料，突然想到为什么不自己种两株玫瑰呢！我可以把家装扮成一个玫瑰园。情人节时，可以为异乡的红颜知己；为我仰慕的才女们送上一支。尽管这些文档不全面。而且最关键地方——关于种子催芽的相关资料没有。下午，我找了位有种植经验的朋友了解到，玫瑰的种子发芽率很低，花苗的成活率也低。以及关于他的一些催芽的方法时。我才晓得，原来玫瑰比我想像中更难能得，虽然不能肯定自己一定行；我想去尝试和体验这样的一个过程。对！种两株玫瑰。</p>
<p>下午5点，终于在花圃里买了125颗紫玫瑰种子，回来便执行催芽操作。从浸种、消毒到触冷催芽的进程中。想必花若有情，定有我最喜欢的那两颗。</p>]]></description>
	<pubDate>Thu, 15 Jul 2010 12:55:52 +0000</pubDate>
	<author>化境</author>
	<guid>http://www.512059.com/post-90.html</guid>

</item>
<item>
	<title>7.13早晨</title>
	<link>http://www.512059.com/post-89.html</link>
	<description><![CDATA[<p>2010年7月13日 &nbsp;早晨5点 &nbsp;深圳西乡</p>
<p>跑步</p>
<p>我还在梦里，阿浪在外面喊去跑步。嗯，是有段日子没去跑了。起来葱葱洗刷下，换衣穿鞋，将锁匙往脖子上一挂，走咧。临走前没忘给芬子发一短信：“芬子，起来跑步呀！”。</p>
<p>一路沿着公路往桃园居方向跑着。货车、私家小车一台接一台从身边驶过，毫不保留地排放着废气。路边垃圾站的工作人员正开车处理着垃圾，路过之处臭气冲天。看着这状况，我后悔没带口罩。都说在城市里的早晨是最脏的时候，此话不假。怪不得以前千古兄老叫我们晚上去滨海路跑。跑了没到半公里，见阿浪从那头走回来了。原来这就她所谓的跑步，跑近她时问：你咋不跑了呢？ 她告诉我她受够了，这里的车多垃圾多，还很臭。最后我也改变计划，跑一公里就折回。</p>
<p>公园</p>
<p>折回后，在小学旁边的公园里练习踢腿、压腿等项目。才没几分钟，一台垃圾车来不远处的垃圾站收垃圾；一股臭味袭来。把我整得一阵翻胃，正如小说里所描述，气血倒流，头晕目眩。于是我立马逃离这个充满毒气的地方。</p>
<p>家里</p>
<p>一口气跑回来，在楼道里肚里的苦水都吐出来了。所幸昨夜没有吃宵夜，不然就真惨不忍睹了。回到家，刚好6点半，打开风扇摇醒电脑。准备一收汗就冲凉，坐在椅子上，那种恶心的感觉还未完全消除，闭目倚靠在在墙上。当头痛、反胃的感觉再次涌来时，我知道 今天的早餐免了。也有了要搬家的打算；我确定，这个地方绝对不是我能住的。</p>
<p>&nbsp;</p>]]></description>
	<pubDate>Mon, 12 Jul 2010 23:23:53 +0000</pubDate>
	<author>化境</author>
	<guid>http://www.512059.com/post-89.html</guid>

</item>
<item>
	<title>wordpress3.0太强大了</title>
	<link>http://www.512059.com/post-88.html</link>
	<description><![CDATA[<p>今晚，趋刚洗完澡头发未干之际，体验了下wordpress3.0的功能。感觉非常棒，特别是主题管理和编辑方面已没什么可挑剔的了，其它功能就不描述了（关于它的文章太多了）。或许wordpress3.0会更利于我组织自己的文字。我想可能会换到wordpress3.0系统上去</p>
<p>演示 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; http://lvkc.cn</p>]]></description>
	<pubDate>Thu, 08 Jul 2010 15:13:38 +0000</pubDate>
	<author>化境</author>
	<guid>http://www.512059.com/post-88.html</guid>

</item>
<item>
	<title>该找寄宿了</title>
	<link>http://www.512059.com/post-87.html</link>
	<description><![CDATA[<p>&nbsp;</p>
<p>空间就要到期了，想换个供应商，故没有再续费的打算。主机是个大问题！是放回托管还是整个vps心里也没个底。好的供应商也就那么几个，挑来挑去不知道选谁好。矛盾啊！！！</p>
<p>决定先找个寄宿的地，年底再决定是托管还是vps。</p>
<p>哪位朋友有多的资源就给我挂靠下吧！</p>]]></description>
	<pubDate>Mon, 28 Jun 2010 15:07:24 +0000</pubDate>
	<author>化境</author>
	<guid>http://www.512059.com/post-87.html</guid>

</item>
<item>
	<title>想好好整顿下</title>
	<link>http://www.512059.com/post-86.html</link>
	<description><![CDATA[<p>博客越来越偏离轨迹了，有违初衷。很想抽时间来好好整顿下，把那些乱七八遭的东西清理掉,从分类到tag规划重组，换掉外观、博客名称和网名。也决定要用心组织记录好有用的文档和日志。</p>
<p>嘿！有点像洗心革面吧！是的，不但要这样还要重新做人。我需要要一个很不一样的人生经历。虽然每个人生命的结局都一样，但我想要在往后的几十年里，能给家人、朋友留下点有价值的东西。</p>]]></description>
	<pubDate>Sun, 27 Jun 2010 04:30:45 +0000</pubDate>
	<author>化境</author>
	<guid>http://www.512059.com/post-86.html</guid>

</item>
<item>
	<title>玩转谷歌</title>
	<link>http://www.512059.com/post-85.html</link>
	<description><![CDATA[<p>搜索引擎是所有网民生活中不可缺少的一个工具，用过搜索引擎的朋友肯定知道目前两大主流搜索站，百度和GOOGLE（谷歌）。鉴于这两个站的服务我更喜欢谷歌。或许也曾有些时候，面对这个简陋的搜索窗口而不知所措的尴尬。随着谷歌功能的扩展，玩转谷歌似乎变得更为需要了。</p>
<p><a href="http://www.512059.com/content/uploadfile/201006/099a7cb7659ae2b5bc655a860765c0ae20100625021310.jpg" id="ematt:40" target="_blank"><img alt="点击查看原图" border="0" src="http://www.512059.com/content/uploadfile/201006/099a7cb7659ae2b5bc655a860765c0ae20100625021310.jpg" /></a>
</p>
<p>玩转谷歌是一个类似于谷歌大全的功能向导，它能为你提供谷歌更多的小窍门和你所需要的功能。</p>
<p>地址：<a href="http://www.google.cn/landing/tips">http://www.google.cn/landing/tips</a>
</p>]]></description>
	<pubDate>Fri, 25 Jun 2010 01:42:12 +0000</pubDate>
	<author>化境</author>
	<guid>http://www.512059.com/post-85.html</guid>

</item>
<item>
	<title>colordiff 命令行文本差异比较工具</title>
	<link>http://www.512059.com/post-83.html</link>
	<description><![CDATA[<p>&nbsp;</p>
<p>diff是 Linux 下，可以用来对文件进行比较的命令，以了解其差异。美中不足的是，diff 命令的输出结果以相同的单色显示，因此对于这种差异的表现不够明显。不过现在咱们可以用 colordiff 来代替它。colordiff 是一个 Perl 脚本，它通过不同的颜色来高亮显示 diff 命令的输出结果，非常显眼。</p>
<p>colorciff 适用于 Linux 及 BSD 系统，目前已被包含到 Debian、Ubuntu、Gentoo、Arch Linux、Fedora、FreeBSD 等发行版中。你可以从中直接加以安装。</p>
<p>在FreeBSD和MacOS 上可以直接使用。</p>
<p>colordiff 的用法较简单。如果你要比较两个文件 file1 和 file2，那么可以执行如下命令：</p>
<p>&nbsp;</p>
<p>colordiff file1 file2</p>
<p>&nbsp;</p>
<p>更多请参考：http://colordiff.sourceforge.net/</p>
<p>下图为 diff 命令输出结果：</p>
<p><a href="http://www.512059.com/content/uploadfile/201006/38b58c59f649c965381f9495f12f5e0320100605104338.png" id="ematt:38" target="_blank"><img alt="点击查看原图" border="0" src="http://www.512059.com/content/uploadfile/201006/thum-38b58c59f649c965381f9495f12f5e0320100605104338.png" /></a>
</p>
<p>下图为colordiff的输出结果</p>
<p><a href="http://www.512059.com/content/uploadfile/201006/d225251dbe5d8b0006c443c159f8d4dd20100605105554.png" id="ematt:39" target="_blank"><img alt="点击查看原图" border="0" src="http://www.512059.com/content/uploadfile/201006/thum-d225251dbe5d8b0006c443c159f8d4dd20100605105554.png" /></a>
</p>]]></description>
	<pubDate>Sat, 05 Jun 2010 10:36:10 +0000</pubDate>
	<author>化境</author>
	<guid>http://www.512059.com/post-83.html</guid>

</item>
<item>
	<title>文本差异比较工具</title>
	<link>http://www.512059.com/post-82.html</link>
	<description><![CDATA[<p>很多时候需要对几个不同版本的文件进行比较，以找出其差异。比如给博客模板进行升级修改需知道哪模板类在新版本里有啥变动。<span class="Apple-style-span" style="color: rgb(51, 51, 51); font-family: Arial, Helvetica, sans-serif, 宋体; font-size: 13px; line-height: 20px; ">这时候就需要专门的文件比较工具了。当然在ms windows平台的朋友会有很多诸如此类的工具。那么现在就给你介绍一个用于linux 平台上的差异比较工具&mdash;&mdash; Diffuse 。看下图你就不难明白</span>
 <span class="Apple-style-span" style="color: rgb(51, 51, 51); font-family: Arial, Helvetica, sans-serif, 宋体; font-size: 13px; line-height: 20px; ">Diffuse是怎样</span>
 <span class="Apple-style-span" style="color: rgb(51, 51, 51); font-family: Arial, Helvetica, sans-serif, 宋体; font-size: 13px; line-height: 20px; ">对文件进行比较和</span>
 <span class="Apple-style-span" style="color: rgb(51, 51, 51); font-family: Arial, Helvetica, sans-serif, 宋体; font-size: 13px; line-height: 20px; ">合并的</span>
 <span class="Apple-style-span" style="color: rgb(51, 51, 51); font-family: Arial, Helvetica, sans-serif, 宋体; font-size: 13px; line-height: 20px; ">。</span>
</p>
<p><a href="http://www.512059.com/content/uploadfile/201006/16cf79a3c80f705aa3d81525706bc74a20100605083914.png" id="ematt:34" target="_blank"><img alt="点击查看原图" border="0" src="http://www.512059.com/content/uploadfile/201006/thum-16cf79a3c80f705aa3d81525706bc74a20100605083914.png" /></a>
</p>
<p><a href="http://www.512059.com/content/uploadfile/201006/cc6c1107ea138bfc9b0ee5eb7269b8c920100605084600.png" id="ematt:37" target="_blank"><img alt="点击查看原图" border="0" src="http://www.512059.com/content/uploadfile/201006/thum-cc6c1107ea138bfc9b0ee5eb7269b8c920100605084600.png" /></a>
</p>
<p>&nbsp;</p>
<p>Diffuse 具有如下特色：</p>
<p>可视化比较，非常直观。</p>
<p>支持两相比较和三相比较。这就是说，使用 Diffuse 你可以同时比较两个或三个文本文件。<br />支持常见的版本控制工具，包括 CVS、subversion、git、mercurial 等。你可以通过 Diffuse 直接从版本控制系统获取源代码，以便对其进行比较和合并。</p>
<p>&nbsp;</p>]]></description>
	<pubDate>Sat, 05 Jun 2010 07:38:39 +0000</pubDate>
	<author>化境</author>
	<guid>http://www.512059.com/post-82.html</guid>

</item>
<item>
	<title>本周四将发布Ubuntu 10.10 Alpha1</title>
	<link>http://www.512059.com/post-81.html</link>
	<description><![CDATA[<p>&nbsp;</p>
<p style="margin-top: 5px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-indent: 0em; "><span class="Apple-style-span" style="color: rgb(0, 0, 0); font-family: Arial, Helvetica, sans-serif, 宋体; font-size: 13px; line-height: 22px; ">据 Ubuntu 10.10 的开发计划，第一个 Alpha 版本将于本周四（6月3日）发布。而正式版会在今年的10月份发布。</span>
</p>
<p style="margin-top: 5px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-indent: 0em; "><span class="Apple-style-span" style="color: rgb(0, 0, 0); font-family: Arial, Helvetica, sans-serif, 宋体; font-size: 13px; line-height: 22px; ">以下是发布计划：</span>
</p>
<p style="margin-top: 5px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-indent: 0em; ">&nbsp;</p>
<table border="1" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "><tbody style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "><tr style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "><td style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "><span class="Apple-style-span" style="color: rgb(0, 0, 0); font-family: Arial, Helvetica, sans-serif, 宋体; font-size: 13px; line-height: 22px; "><strong style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; ">Month</strong>
 </span>
</td>
<td style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "><span class="Apple-style-span" style="color: rgb(0, 0, 0); font-family: Arial, Helvetica, sans-serif, 宋体; font-size: 13px; line-height: 22px; "><strong style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; ">Date</strong>
 </span>
</td>
<td style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "><span class="Apple-style-span" style="color: rgb(0, 0, 0); font-family: Arial, Helvetica, sans-serif, 宋体; font-size: 13px; line-height: 22px; "><strong style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; ">Release</strong>
 </span>
</td>
</tr>
<tr style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "><td style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "><span class="Apple-style-span" style="color: rgb(0, 0, 0); font-family: Arial, Helvetica, sans-serif, 宋体; font-size: 13px; line-height: 22px; ">June</span>
</td>
<td style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "><span class="Apple-style-span" style="color: rgb(0, 0, 0); font-family: Arial, Helvetica, sans-serif, 宋体; font-size: 13px; line-height: 22px; ">3</span>
</td>
<td style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "><span class="Apple-style-span" style="color: rgb(0, 0, 0); font-family: Arial, Helvetica, sans-serif, 宋体; font-size: 13px; line-height: 22px; ">Alpha 1</span>
</td>
</tr>
<tr style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "><td style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "><span class="Apple-style-span" style="color: rgb(0, 0, 0); font-family: Arial, Helvetica, sans-serif, 宋体; font-size: 13px; line-height: 22px; ">July</span>
</td>
<td style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "><span class="Apple-style-span" style="color: rgb(0, 0, 0); font-family: Arial, Helvetica, sans-serif, 宋体; font-size: 13px; line-height: 22px; ">1</span>
</td>
<td style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "><span class="Apple-style-span" style="color: rgb(0, 0, 0); font-family: Arial, Helvetica, sans-serif, 宋体; font-size: 13px; line-height: 22px; ">Alpha 2</span>
</td>
</tr>
<tr style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "><td style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "><span class="Apple-style-span" style="color: rgb(0, 0, 0); font-family: Arial, Helvetica, sans-serif, 宋体; font-size: 13px; line-height: 22px; ">August</span>
</td>
<td style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "><span class="Apple-style-span" style="color: rgb(0, 0, 0); font-family: Arial, Helvetica, sans-serif, 宋体; font-size: 13px; line-height: 22px; ">5</span>
</td>
<td style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "><span class="Apple-style-span" style="color: rgb(0, 0, 0); font-family: Arial, Helvetica, sans-serif, 宋体; font-size: 13px; line-height: 22px; ">Alpha 3</span>
</td>
</tr>
<tr style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "><td style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "><span class="Apple-style-span" style="color: rgb(0, 0, 0); font-family: Arial, Helvetica, sans-serif, 宋体; font-size: 13px; line-height: 22px; ">September</span>
</td>
<td style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "><span class="Apple-style-span" style="color: rgb(0, 0, 0); font-family: Arial, Helvetica, sans-serif, 宋体; font-size: 13px; line-height: 22px; ">5</span>
</td>
<td style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "><span class="Apple-style-span" style="color: rgb(0, 0, 0); font-family: Arial, Helvetica, sans-serif, 宋体; font-size: 13px; line-height: 22px; ">Alpha 4</span>
</td>
</tr>
<tr style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "><td style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "><span class="Apple-style-span" style="color: rgb(0, 0, 0); font-family: Arial, Helvetica, sans-serif, 宋体; font-size: 13px; line-height: 22px; ">September</span>
</td>
<td style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "><span class="Apple-style-span" style="color: rgb(0, 0, 0); font-family: Arial, Helvetica, sans-serif, 宋体; font-size: 13px; line-height: 22px; ">23</span>
</td>
<td style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "><span class="Apple-style-span" style="color: rgb(0, 0, 0); font-family: Arial, Helvetica, sans-serif, 宋体; font-size: 13px; line-height: 22px; ">Beta</span>
</td>
</tr>
<tr style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "><td style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "><span class="Apple-style-span" style="color: rgb(0, 0, 0); font-family: Arial, Helvetica, sans-serif, 宋体; font-size: 13px; line-height: 22px; ">October</span>
</td>
<td style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "><span class="Apple-style-span" style="color: rgb(0, 0, 0); font-family: Arial, Helvetica, sans-serif, 宋体; font-size: 13px; line-height: 22px; ">21</span>
</td>
<td style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "><span class="Apple-style-span" style="color: rgb(0, 0, 0); font-family: Arial, Helvetica, sans-serif, 宋体; font-size: 13px; line-height: 22px; ">Release Candidate</span>
</td>
</tr>
<tr style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "><td style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "><span class="Apple-style-span" style="color: rgb(0, 0, 0); font-family: Arial, Helvetica, sans-serif, 宋体; font-size: 13px; line-height: 22px; ">October</span>
</td>
<td style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "><span class="Apple-style-span" style="color: rgb(0, 0, 0); font-family: Arial, Helvetica, sans-serif, 宋体; font-size: 13px; line-height: 22px; ">28</span>
</td>
<td style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "><span class="Apple-style-span" style="color: rgb(0, 0, 0); font-family: Arial, Helvetica, sans-serif, 宋体; font-size: 13px; line-height: 22px; ">Final Release<br /><br /></span>
</td>
</tr>
</tbody>
</table>
<p style="margin-top: 5px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-indent: 0em; "><span class="Apple-style-span" style="color: rgb(0, 0, 0); font-family: Arial, Helvetica, sans-serif, 宋体; font-size: 13px; line-height: 22px; ">&nbsp;Ubuntu 10.10 的代号：Maverick Meerkat</span>
</p>
<p style="margin-top: 5px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-indent: 0em; "><span class="Apple-style-span" style="color: rgb(0, 0, 0); font-family: Arial, Helvetica, sans-serif, 宋体; font-size: 13px; line-height: 22px; "><a href="http://www.512059.com/content/uploadfile/201006/2eddefb4442f1813b89fc953a412b05f20100601164112.png" id="ematt:33" target="_blank"><img alt="点击查看原图" border="0" src="http://www.512059.com/content/uploadfile/201006/thum-2eddefb4442f1813b89fc953a412b05f20100601164112.png" /></a>
 </span>
</p>
<p style="margin-top: 5px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-indent: 0em; "><span class="Apple-style-span" style="color: rgb(0, 0, 0); font-family: Arial, Helvetica, sans-serif, 宋体; font-size: 13px; line-height: 22px; "><br /></span>
</p>
<p style="margin-top: 5px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-indent: 0em; "><span class="Apple-style-span" style="color: rgb(0, 0, 0); font-family: Arial, Helvetica, sans-serif, 宋体; font-size: 13px; line-height: 22px; "><br /></span>
</p>]]></description>
	<pubDate>Tue, 01 Jun 2010 16:22:44 +0000</pubDate>
	<author>化境</author>
	<guid>http://www.512059.com/post-81.html</guid>

</item>
<item>
	<title>linux备份策略</title>
	<link>http://www.512059.com/post-80.html</link>
	<description><![CDATA[<p><a href="http://www.512059.com/content/uploadfile/201006/9bd902fbc56ab3edd9ec44ff2c969fee20100601142156.jpg" id="ematt:28" target="_blank"><img alt="点击查看原图" border="0" src="http://www.512059.com/content/uploadfile/201006/thum-9bd902fbc56ab3edd9ec44ff2c969fee20100601142156.jpg" /></a>
</p>
<p>系统防意外。备份才是硬道理！</p>
<p>之前用微软的作业系统就没有备份的习惯！！!好吧！根本没有备份过<img alt="" src="http://www.512059.com/admin/ckeditor/plugins/smiley/images/25.gif" title="" />。因为对那玩意太熟了，即便重装恢复也是微不足道的事情。而今在linux系统上显得不那么轻松了，因此建立备份策略是必然的。</p>
<p>上图为磁盘分配方案；系统的备份在没有大的改动下基本不需要经常备份，所以这里就手动用tar备份到/backup目录里就行了。对于一些天天更新的如代码 、mysql数据 、wiki上的文本文件等；就需要系统按时自动备份了。相信也没人想经常手动去备份它。</p>
<p>先在/root目录下建立一个名为: backup.sh的文件。gnome桌面用户可在终端里输入： vi /root/backup.sh</p>
<p>该文件内容：</p>
<p>&nbsp;</p>
<p>day=`date +%Y-%m-%d`</p>
<p>basedir=&quot;/backup/webday&quot;</p>
<p>/etc/rc.d/init.d/mysqld stop</p>
<p>cd /var/lib</p>
<p>tar -zcf &quot;$basedir&quot;/mysql.&quot;$day&quot;.tar.gz mysql 2&gt; /dev/null</p>
<p>/etc/rc.d/init.d/mysqld start</p>
<p>&nbsp;</p>
<p>cd /var</p>
<p>tar -zcf &quot;$basedir&quot;/webf.&quot;$day&quot;.tar.gz www 2&gt; /dev/null</p>
<p>&nbsp;</p>
<p>cd /var</p>
<p>tar -zcf &quot;$basedir&quot;/svnf.&quot;$day&quot;.tar.gz svn 2&gt; /dev/null</p>
<p>接下来在 /etc/crontab 的文档里的最后加入一行：30 12 * * * root /etc/root/backup.sh</p>
<p>让系统在每天的12:30分执行此文档。</p>
<p>文件修改后大概是这样的 &nbsp;如下图</p>
<p><a href="http://www.512059.com/content/uploadfile/201006/05884edfd907524492ba5348a3f08add20100601155504.png" id="ematt:29" target="_blank"><img alt="点击查看原图" border="0" src="http://www.512059.com/content/uploadfile/201006/thum-05884edfd907524492ba5348a3f08add20100601155504.png" /></a>
</p>]]></description>
	<pubDate>Tue, 01 Jun 2010 09:12:54 +0000</pubDate>
	<author>化境</author>
	<guid>http://www.512059.com/post-80.html</guid>

</item></channel>
</rss>
