<?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>fish的航海日志 &#187; AmirFish</title>
	<atom:link href="http://blog.v2op.com/author/admin/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.v2op.com</link>
	<description>海到无边天做岸,山登绝顶我为峰</description>
	<lastBuildDate>Sat, 21 Aug 2010 06:38:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>PHP上传大文件时的参数设置</title>
		<link>http://blog.v2op.com/2010/08/upload-large-files-in-php/</link>
		<comments>http://blog.v2op.com/2010/08/upload-large-files-in-php/#comments</comments>
		<pubDate>Sat, 21 Aug 2010 06:37:34 +0000</pubDate>
		<dc:creator>AmirFish</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://blog.v2op.com/?p=551</guid>
		<description><![CDATA[<p>在php.ini修改如下参数：</p>
<p>php_value upload_max_filesize 10M<br />
php_value post_max_size 10M<br />
php_value max_input_time 300<br />
php_value max_execution_time 300</p>
<p>或者在程序中加上：</p>
<p>ini_set(&#8216;upload_max_filesize&#8217;, &#8217;10M&#8217;);<br />
ini_set(&#8216;post_max_size&#8217;, &#8217;10M&#8217;);<br />
ini_set(&#8216;max_input_time&#8217;, 300);<br />
ini_set(&#8216;max_execution_time&#8217;, 300);</p>
]]></description>
			<content:encoded><![CDATA[<p>在php.ini修改如下参数：</p>
<p>php_value upload_max_filesize 10M<br />
php_value post_max_size 10M<br />
php_value max_input_time 300<br />
php_value max_execution_time 300</p>
<p>或者在程序中加上：</p>
<p>ini_set(&#8216;upload_max_filesize&#8217;, &#8217;10M&#8217;);<br />
ini_set(&#8216;post_max_size&#8217;, &#8217;10M&#8217;);<br />
ini_set(&#8216;max_input_time&#8217;, 300);<br />
ini_set(&#8216;max_execution_time&#8217;, 300);</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.v2op.com/2010/08/upload-large-files-in-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>移除URL中的.php后缀</title>
		<link>http://blog.v2op.com/2010/08/remove-php-extension-from-url/</link>
		<comments>http://blog.v2op.com/2010/08/remove-php-extension-from-url/#comments</comments>
		<pubDate>Sat, 21 Aug 2010 06:32:37 +0000</pubDate>
		<dc:creator>AmirFish</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://blog.v2op.com/?p=550</guid>
		<description><![CDATA[<p>利用URL重写，在.htaccess中添加下面这段：</p>
<p>RewriteEngine on<br />
RewriteCond %{REQUEST_FILENAME} !-d<br />
RewriteCond %{REQUEST_FILENAME}\.php -f<br />
RewriteRule ^([^/]+)/$ $1.php</p>
]]></description>
			<content:encoded><![CDATA[<p>利用URL重写，在.htaccess中添加下面这段：</p>
<p>RewriteEngine on<br />
RewriteCond %{REQUEST_FILENAME} !-d<br />
RewriteCond %{REQUEST_FILENAME}\.php -f<br />
RewriteRule ^([^/]+)/$ $1.php</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.v2op.com/2010/08/remove-php-extension-from-url/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress 输出带格式的 RSS Feed</title>
		<link>http://blog.v2op.com/2010/07/wordpress-rss-feed-format-for-planet/</link>
		<comments>http://blog.v2op.com/2010/07/wordpress-rss-feed-format-for-planet/#comments</comments>
		<pubDate>Tue, 20 Jul 2010 07:09:17 +0000</pubDate>
		<dc:creator>AmirFish</dc:creator>
				<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://blog.v2op.com/?p=543</guid>
		<description><![CDATA[<p>不知从何时起，WordPress 的 rss feed 输出变成无格式的了，无论是直接访问wp的<a href="http://blog.v2op.com/feed/" target="_blank">rss url</a>，还是在阅读器（例如<a href="http://www.google.com/reader" target="_blank">google reader</a>）里看，都毫无阅读体验可谈（很丑陋），如下图：</p>
<p><a href="http://blog.v2op.com/wp-content/uploads/2010/07/wp_rss_url_no_format.jpg"><img class="alignnone size-medium wp-image-547" title="wordpress rss 输出无格式" src="http://blog.v2op.com/wp-content/uploads/2010/07/wp_rss_url_no_format-500x237.jpg" alt="" width="500" height="237" /></a></p>
<p><a href="http://blog.v2op.com/wp-content/uploads/2010/07/google_reader_no_format.jpg"><img class="alignnone size-medium wp-image-546" title="google reader 阅读无格式" src="http://blog.v2op.com/wp-content/uploads/2010/07/google_reader_no_format-500x373.jpg" alt="" width="500" height="373" /></a></p>
<p>在网上搜罗了一番，有同学提到在“设置”-&gt;“阅读”中讲“在 Feed 中输出日志为摘要”改成“全文”即可解决此问题。尝试未果（可能由于版本问题），只解决RSS的全文输出问题。</p>
<p>后来看到<a href="http://t.qq.com/perlish" target="_blank">@素包子</a>的<a href="http://baoz.net/wordpress-rss-feed-format-for-planet/" target="_blank">这篇日志</a>，按文章方法尝试，解决之。</p>
<p>记录如下：</p>
<p>搜索 wp-include 下面的 feed-rss2.php 文件，把</p>
<blockquote><p>&lt;description&gt;&lt;![CDATA[&lt;?php <strong>the_excerpt_rss() </strong>?&gt;]]&gt;&lt;/description&gt;</p></blockquote>
<p>替换成</p>
<blockquote><p>&lt;description&gt;&lt;![CDATA[&lt;?php <strong>the_content() </strong>?&gt;]]&gt;&lt;/description&gt;</p></blockquote>
<p>现在看起来，爽心悦目了很多。</p>
]]></description>
			<content:encoded><![CDATA[<p>不知从何时起，WordPress 的 rss feed 输出变成无格式的了，无论是直接访问wp的<a href="http://blog.v2op.com/feed/" target="_blank">rss url</a>，还是在阅读器（例如<a href="http://www.google.com/reader" target="_blank">google reader</a>）里看，都毫无阅读体验可谈（很丑陋），如下图：</p>
<p><a href="http://blog.v2op.com/wp-content/uploads/2010/07/wp_rss_url_no_format.jpg"><img class="alignnone size-medium wp-image-547" title="wordpress rss 输出无格式" src="http://blog.v2op.com/wp-content/uploads/2010/07/wp_rss_url_no_format-500x237.jpg" alt="" width="500" height="237" /></a></p>
<p><a href="http://blog.v2op.com/wp-content/uploads/2010/07/google_reader_no_format.jpg"><img class="alignnone size-medium wp-image-546" title="google reader 阅读无格式" src="http://blog.v2op.com/wp-content/uploads/2010/07/google_reader_no_format-500x373.jpg" alt="" width="500" height="373" /></a></p>
<p>在网上搜罗了一番，有同学提到在“设置”-&gt;“阅读”中讲“在 Feed 中输出日志为摘要”改成“全文”即可解决此问题。尝试未果（可能由于版本问题），只解决RSS的全文输出问题。</p>
<p>后来看到<a href="http://t.qq.com/perlish" target="_blank">@素包子</a>的<a href="http://baoz.net/wordpress-rss-feed-format-for-planet/" target="_blank">这篇日志</a>，按文章方法尝试，解决之。</p>
<p>记录如下：</p>
<p>搜索 wp-include 下面的 feed-rss2.php 文件，把</p>
<blockquote><p>&lt;description&gt;&lt;![CDATA[&lt;?php <strong>the_excerpt_rss() </strong>?&gt;]]&gt;&lt;/description&gt;</p></blockquote>
<p>替换成</p>
<blockquote><p>&lt;description&gt;&lt;![CDATA[&lt;?php <strong>the_content() </strong>?&gt;]]&gt;&lt;/description&gt;</p></blockquote>
<p>现在看起来，爽心悦目了很多。</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.v2op.com/2010/07/wordpress-rss-feed-format-for-planet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhone LOMO（Hipstamatic）</title>
		<link>http://blog.v2op.com/2010/07/iphone-lomo-hipstamatic/</link>
		<comments>http://blog.v2op.com/2010/07/iphone-lomo-hipstamatic/#comments</comments>
		<pubDate>Mon, 19 Jul 2010 10:40:06 +0000</pubDate>
		<dc:creator>AmirFish</dc:creator>
				<category><![CDATA[分享发现]]></category>

		<guid isPermaLink="false">http://blog.v2op.com/?p=540</guid>
		<description><![CDATA[<p>推荐一款非常有趣的iPhone APP，<a href="http://itunes.apple.com/us/app/hipstamatic/id342115564" target="_blank">Hipstamatic</a>（访问iTunes），官方网站<a href="http://hipstamaticapp.com/" target="_blank"> http://hipstamaticapp.com/</a>。</p>
<p><a href="http://blog.v2op.com/wp-content/uploads/2010/07/IMG_0042.png"><img class="alignnone size-full wp-image-541" title="IMG_0042" src="http://blog.v2op.com/wp-content/uploads/2010/07/IMG_0042-e1279535334377.png" alt="" width="480" height="320" /></a></p>
<p>这是一个关于摄影的小程序，有多种镜头、胶卷、闪光灯备选，可任意搭配组合。非常容易拍出很<a href="http://baike.baidu.com/view/18671.htm">LOMO</a>的效果。拍摄模式下，晃动晃动手机，就会随机切换装备组合，这种随机往往给你带来意想不到的惊喜。</p>
<p>自从装了<a href="http://itunes.apple.com/us/app/hipstamatic/id342115564" target="_blank">Hipstamatic</a>之后，我用iPhone拍照也越来越频繁了。美中不足，iphone 3G实在是太慢，每拍摄一次都要等待程序渲染照片几十秒，真要命 ~~~~(&gt;_&lt;)~~~~ 。</p>
<p>当然如果你是<a href="http://www.apple.com.cn/iphone/" target="_blank">iphone4</a>，那还有什么好说的呢？</p>
<p>这个程序说白了就是类似Photoshop滤镜的作用，但对一个不懂PS和只想简单随手拍的人，它确实很有趣。</p>
<p><a href="http://www.douban.com/photos/album/30510501/"><img class="alignnone size-full wp-image-542" title="前往豆瓣相册查看" src="http://blog.v2op.com/wp-content/uploads/2010/07/photo.jpg" alt="" width="540" height="358" /></a></p>
<p><a href="http://www.douban.com/photos/album/30510501/" target="_blank">豆瓣相册</a></p>
<p><a href="http://www.flickr.com/photos/amirfish/" target="_blank">flickr相册</a></p>
<p>这是一款付费的APP，虽然基础程序只需要$1.99，但镜头、胶圈、闪光灯都需要额外付费购买</p>
<p>当然，<a href="http://www.weiphone.com/" target="_blank">weiphone</a>上也有好心人给了<a href="http://bbs.weiphone.com/read-htm-tid-828440.html" target="_blank">解决方案</a>。^_^</p>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow: hidden;">
<h1 class="b"><span id="subject_tpc">Hipstamatic</span></h1>
</div>
]]></description>
			<content:encoded><![CDATA[<p>推荐一款非常有趣的iPhone APP，<a href="http://itunes.apple.com/us/app/hipstamatic/id342115564" target="_blank">Hipstamatic</a>（访问iTunes），官方网站<a href="http://hipstamaticapp.com/" target="_blank"> http://hipstamaticapp.com/</a>。</p>
<p><a href="http://blog.v2op.com/wp-content/uploads/2010/07/IMG_0042.png"><img class="alignnone size-full wp-image-541" title="IMG_0042" src="http://blog.v2op.com/wp-content/uploads/2010/07/IMG_0042-e1279535334377.png" alt="" width="480" height="320" /></a></p>
<p>这是一个关于摄影的小程序，有多种镜头、胶卷、闪光灯备选，可任意搭配组合。非常容易拍出很<a href="http://baike.baidu.com/view/18671.htm">LOMO</a>的效果。拍摄模式下，晃动晃动手机，就会随机切换装备组合，这种随机往往给你带来意想不到的惊喜。</p>
<p>自从装了<a href="http://itunes.apple.com/us/app/hipstamatic/id342115564" target="_blank">Hipstamatic</a>之后，我用iPhone拍照也越来越频繁了。美中不足，iphone 3G实在是太慢，每拍摄一次都要等待程序渲染照片几十秒，真要命 ~~~~(&gt;_&lt;)~~~~ 。</p>
<p>当然如果你是<a href="http://www.apple.com.cn/iphone/" target="_blank">iphone4</a>，那还有什么好说的呢？</p>
<p>这个程序说白了就是类似Photoshop滤镜的作用，但对一个不懂PS和只想简单随手拍的人，它确实很有趣。</p>
<p><a href="http://www.douban.com/photos/album/30510501/"><img class="alignnone size-full wp-image-542" title="前往豆瓣相册查看" src="http://blog.v2op.com/wp-content/uploads/2010/07/photo.jpg" alt="" width="540" height="358" /></a></p>
<p><a href="http://www.douban.com/photos/album/30510501/" target="_blank">豆瓣相册</a></p>
<p><a href="http://www.flickr.com/photos/amirfish/" target="_blank">flickr相册</a></p>
<p>这是一款付费的APP，虽然基础程序只需要$1.99，但镜头、胶圈、闪光灯都需要额外付费购买</p>
<p>当然，<a href="http://www.weiphone.com/" target="_blank">weiphone</a>上也有好心人给了<a href="http://bbs.weiphone.com/read-htm-tid-828440.html" target="_blank">解决方案</a>。^_^</p>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow: hidden;">
<h1 class="b"><span id="subject_tpc">Hipstamatic</span></h1>
</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.v2op.com/2010/07/iphone-lomo-hipstamatic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>腾讯微博邀请放送(15枚）updated 2010.07.20</title>
		<link>http://blog.v2op.com/2010/05/t-qq-com/</link>
		<comments>http://blog.v2op.com/2010/05/t-qq-com/#comments</comments>
		<pubDate>Sat, 15 May 2010 02:45:11 +0000</pubDate>
		<dc:creator>AmirFish</dc:creator>
				<category><![CDATA[Journal]]></category>
		<category><![CDATA[微博]]></category>
		<category><![CDATA[腾讯]]></category>
		<category><![CDATA[邀请]]></category>

		<guid isPermaLink="false">http://blog.v2op.com/?p=536</guid>
		<description><![CDATA[<p>updated 2010-7-20</p>
<p><del datetime="2010-07-20T09:37:41+00:00">http://t.qq.com/invite/3adbc785017b4f1d923d</del></p>
<p>http://t.qq.com/invite/c5ebf3cb2f567c3b32e9</p>
<p>http://t.qq.com/invite/f292fcf26da6b6f2aa79</p>
<p>http://t.qq.com/invite/77e3fe7dd5f81db6db33</p>
<p>http://t.qq.com/invite/7bd69bd686e892441a05</p>
<p>http://t.qq.com/invite/15c48775f40eead18b2b</p>
<p>http://t.qq.com/invite/be1e29469deb9d190547</p>
<p>http://t.qq.com/invite/ae76f54c4083152dcb55</p>
<p>http://t.qq.com/invite/63d350129fb8fea03513</p>
<p>http://t.qq.com/invite/5514af2c5c88e69393d5</p>
<p>http://t.qq.com/invite/22409b8de158b97b752f</p>
<p><span style="text-decoration: line-through;">http://t.qq.com/invite/010821d4b8f435062ac7</span></p>
<p><span style="text-decoration: line-through;">http://t.qq.com/invite/ac639ec4ab5e1003a525</span></p>
<p>http://t.qq.com/invite/e91eb347749a3c15049b</p>
<p>http://t.qq.com/invite/899e8ada436ec9573d19</p>
<p>http://t.qq.com/invite/760ea3a6bd0b6d669ac5</p>
<p>http://t.qq.com/invite/0a21790b45927959ee2f</p>
<p>http://t.qq.com/invite/49e64106ad23465f14c9</p>
]]></description>
			<content:encoded><![CDATA[<p>updated 2010-7-20</p>
<p><del datetime="2010-07-20T09:37:41+00:00">http://t.qq.com/invite/3adbc785017b4f1d923d</del></p>
<p>http://t.qq.com/invite/c5ebf3cb2f567c3b32e9</p>
<p>http://t.qq.com/invite/f292fcf26da6b6f2aa79</p>
<p>http://t.qq.com/invite/77e3fe7dd5f81db6db33</p>
<p>http://t.qq.com/invite/7bd69bd686e892441a05</p>
<p>http://t.qq.com/invite/15c48775f40eead18b2b</p>
<p>http://t.qq.com/invite/be1e29469deb9d190547</p>
<p>http://t.qq.com/invite/ae76f54c4083152dcb55</p>
<p>http://t.qq.com/invite/63d350129fb8fea03513</p>
<p>http://t.qq.com/invite/5514af2c5c88e69393d5</p>
<p>http://t.qq.com/invite/22409b8de158b97b752f</p>
<p><span style="text-decoration: line-through;">http://t.qq.com/invite/010821d4b8f435062ac7</span></p>
<p><span style="text-decoration: line-through;">http://t.qq.com/invite/ac639ec4ab5e1003a525</span></p>
<p>http://t.qq.com/invite/e91eb347749a3c15049b</p>
<p>http://t.qq.com/invite/899e8ada436ec9573d19</p>
<p>http://t.qq.com/invite/760ea3a6bd0b6d669ac5</p>
<p>http://t.qq.com/invite/0a21790b45927959ee2f</p>
<p>http://t.qq.com/invite/49e64106ad23465f14c9</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.v2op.com/2010/05/t-qq-com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>适合工作时听的音乐</title>
		<link>http://blog.v2op.com/2010/04/working-while-listening/</link>
		<comments>http://blog.v2op.com/2010/04/working-while-listening/#comments</comments>
		<pubDate>Sun, 04 Apr 2010 08:48:42 +0000</pubDate>
		<dc:creator>AmirFish</dc:creator>
				<category><![CDATA[分享发现]]></category>
		<category><![CDATA[音乐]]></category>

		<guid isPermaLink="false">http://blog.v2op.com/?p=535</guid>
		<description><![CDATA[<div>
<h1 style="font-size: 12px;"><a title="Working while Listening" href="http://www.xiami.com/song/showcollect/id/903612" target="_blank"><strong>Working while Listening</strong></a></h1>
<p style="line-height: 22px;">制作人：<a title="Livid" href="http://www.xiami.com/u/9646" target="_blank"><strong>Livid</strong></a></p>
<p style="line-height: 22px;"><a href="http://img.xiami.com/./images/collect/12/12/9036121269592503.png" target="_blank"><img src="http://img.xiami.com/./images/collect/12/12/9036121269592503_4.png" alt="Working while Listening" /></a></p>
<p style="line-height: 22px;">This is what I&#8217;m listening while I&#8217;m working.</p>
<p>SHUFFLE mode is recommended.</p>
<p style="margin-top: 10px; margin-bottom: 10px;"><a style="text-decoration: underline; font-size: 14px;" href="http://www.xiami.com/song/play?ids=/song/playlist/id/903612/type/3" target="_blank">去虾米试听 <img src="http://img.xiami.com/res/img/default/c_play.gif" alt="试听" width="15" height="15" align="top" /></a></p>
<h5 style="font-size: 12px; border-bottom: 1px solid #e5e5e5; line-height: 30px;">曲目列表:</h5>
<ul style="color: #666; line-height: 25px;">
<li><span>1</span> <a title="Fade to Black" href="http://www.xiami.com/song/1070164" target="_blank">Fade to Black</a> &#8212; <a title="Metallica" href="http://www.xiami.com/artist/10355" target="_blank">Metallica </a></li>
<li><span>2</span> <a title="The Unforgiven" href="http://www.xiami.com/song/1070389" target="_blank">The Unforgiven</a> &#8212; <a title="Metallica" href="http://www.xiami.com/artist/10355" target="_blank">Metallica </a></li>
<li><span>3</span> <a title="The Unforgiven II" href="http://www.xiami.com/song/1070848" target="_blank">The Unforgiven II</a> &#8212; <a title="Metallica" href="http://www.xiami.com/artist/10355" target="_blank">Metallica </a></li>
<li><span>4</span> <a title="The Unforgiven III" href="http://www.xiami.com/song/3293984" target="_blank">The Unforgiven III</a> &#8212; <a title="Metallica" href="http://www.xiami.com/artist/10355" target="_blank">Metallica </a></li>
<li><span>5</span> <a title="Enter Sandman" href="http://www.xiami.com/song/1070386" target="_blank">Enter Sandman</a> &#8212; <a title="Metallica" href="http://www.xiami.com/artist/10355" target="_blank">Metallica </a></li>
<li><span>6</span> <a title="The House Jack Built" href="http://www.xiami.com/song/1070722" target="_blank">The House Jack Built</a> &#8212; <a title="Metallica" href="http://www.xiami.com/artist/10355" target="_blank">Metallica </a>
<p>“杰克叔叔的小屋？”</li>
<li><span>7</span> <a title="Loving You Sunday Morning" href="http://www.xiami.com/song/1279923" target="_blank">Loving You Sunday Mo&#8230;</a> &#8212; <a title="Scorpions" href="http://www.xiami.com/artist/10497" target="_blank">Scorpions </a></li>
<li><span>8</span> <a title="Everything Will Flow" href="http://www.xiami.com/song/2342502" target="_blank">Everything Will Flow</a> &#8212; <a title="Suede" href="http://www.xiami.com/artist/10646" target="_blank">Suede </a></li>
<li><span>9</span> <a title="Wings of Destiny" href="http://www.xiami.com/song/2115441" target="_blank">Wings of Destiny</a> &#8212; <a title="Rhapsody" href="http://www.xiami.com/artist/24025" target="_blank">Rhapsody </a></li>
<li><span>10</span> <a title="Better" href="http://www.xiami.com/song/1768992486" target="_blank">Better</a> &#8212; <a title="Guns N' Roses" href="http://www.xiami.com/artist/10235" target="_blank">Guns N&#8217; Roses </a></li>
<li><span>11</span> <a title="Street of Dreams" href="http://www.xiami.com/song/1768992487" target="_blank">Street of Dreams</a> &#8212; <a title="Guns N' Roses" href="http://www.xiami.com/artist/10235" target="_blank">Guns N&#8217; Roses </a></li>
<li><span>12</span> <a title="Catcher in the Rye" href="http://www.xiami.com/song/1768992490" target="_blank">Catcher in the Rye</a> &#8212; <a title="Guns N' Roses" href="http://www.xiami.com/artist/10235" target="_blank">Guns N&#8217; Roses </a>
<p>“《麦田守望者》，同时也是我最爱的小说之一。”</li>
<li><span>13</span> <a title="More Than a Feeling" href="http://www.xiami.com/song/1769203302" target="_blank">More Than a Feeling</a> &#8212; <a title="Boston" href="http://www.xiami.com/artist/10061" target="_blank">Boston </a></li>
<li><span>14</span> <a title="Don't Cry" href="http://www.xiami.com/song/3561910" target="_blank">Don&#8217;t Cry</a> &#8212; <a title="Guns N' Roses" href="http://www.xiami.com/artist/10235" target="_blank">Guns N&#8217; Roses </a></li>
<li><span>15</span> <a title="Estranged" href="http://www.xiami.com/song/1036016" target="_blank">Estranged</a> &#8212; <a title="Guns N' Roses" href="http://www.xiami.com/artist/10235" target="_blank">Guns N&#8217; Roses </a></li>
<li><span>16</span> <a title="Siehst du Mich im Licht?" href="http://www.xiami.com/song/1472403" target="_blank">Siehst du Mich im Li&#8230;</a> &#8212; <a title="Lacrimosa" href="http://www.xiami.com/artist/16430" target="_blank">Lacrimosa </a></li>
<li><span>17</span> <a title="Promise " href="http://www.xiami.com/song/3061532" target="_blank">Promise </a> &#8212; <a title="Soundtrack" href="http://www.xiami.com/artist/23256" target="_blank">Soundtrack </a>
<p>“来自 Silent Hill 2”</li>
<li><span>18</span> <a title="Theme of Loura " href="http://www.xiami.com/song/3061503" target="_blank">Theme of Loura </a> &#8212; <a title="Soundtrack" href="http://www.xiami.com/artist/23256" target="_blank">Soundtrack </a>
<p>“Best of best.</p>
<p>来自 Silent Hill 2”</li>
<li><span>19</span> <a title="Lost For Words" href="http://www.xiami.com/song/2067143" target="_blank">Lost For Words</a> &#8212; <a title="Pink Floyd" href="http://www.xiami.com/artist/10426" target="_blank">Pink Floyd </a>
<p>“My all time favorite.”</li>
<li><span>20</span> <a title="Uprising" href="http://www.xiami.com/song/1769075169" target="_blank">Uprising</a> &#8212; <a title="Muse " href="http://www.xiami.com/artist/23375" target="_blank">Muse </a></li>
<li><span>21</span> <a title="New  Born" href="http://www.xiami.com/song/2076818" target="_blank">New  Born</a> &#8212; <a title="Muse " href="http://www.xiami.com/artist/23375" target="_blank">Muse </a></li>
<li><span>22</span> <a title="Bliss" href="http://www.xiami.com/song/2076819" target="_blank">Bliss</a> &#8212; <a title="Muse " href="http://www.xiami.com/artist/23375" target="_blank">Muse </a></li>
<li><span>23</span> <a title="I Belong To You (+ Mon Coeur SOuvre A Ta Voix)" href="http://www.xiami.com/song/1769075176" target="_blank">I Belong To You (+ M&#8230;</a> &#8212; <a title="Muse " href="http://www.xiami.com/artist/23375" target="_blank">Muse </a>
<p>“听着这样的前奏，用光脚在木地板上打节拍的感觉。”</li>
<li><span>24</span> <a title="Right Where It Belongs" href="http://www.xiami.com/song/1238874" target="_blank">Right Where It Belon&#8230;</a> &#8212; <a title="Nine Inch Nails" href="http://www.xiami.com/artist/10392" target="_blank">Nine Inch Nails </a>
<p>“不喜噪音者可猛击 skip，下首包你中意。”</li>
<li><span>25</span> <a title="Only" href="http://www.xiami.com/song/3454952" target="_blank">Only</a> &#8212; <a title="Nine Inch Nails" href="http://www.xiami.com/artist/10392" target="_blank">Nine Inch Nails </a></li>
<li><span>26</span> <a title="Wish you were here" href="http://www.xiami.com/song/3621887" target="_blank">Wish you were here</a> &#8212; <a title="Radiohead" href="http://www.xiami.com/artist/10454" target="_blank">Radiohead </a></li>
<li><span>27</span> <a title="Exit Music (For a Film)" href="http://www.xiami.com/song/1079670" target="_blank">Exit Music (For a Fi&#8230;</a> &#8212; <a title="Radiohead" href="http://www.xiami.com/artist/10454" target="_blank">Radiohead </a></li>
<li><span>28</span> <a title="Paranoid Android" href="http://www.xiami.com/song/1079668" target="_blank">Paranoid Android</a> &#8212; <a title="Radiohead" href="http://www.xiami.com/artist/10454" target="_blank">Radiohead </a>
<p>“This is FUTURE.”</li>
<li><span>29</span> <a title="Karma Police" href="http://www.xiami.com/song/1079672" target="_blank">Karma Police</a> &#8212; <a title="Radiohead" href="http://www.xiami.com/artist/10454" target="_blank">Radiohead </a></li>
<li><span>30</span> <a title="Beautiful Ones" href="http://www.xiami.com/song/1301992" target="_blank">Beautiful Ones</a> &#8212; <a title="Suede" href="http://www.xiami.com/artist/10646" target="_blank">Suede </a></li>
<li><span>31</span> <a title="So Young" href="http://www.xiami.com/song/1301924" target="_blank">So Young</a> &#8212; <a title="Suede" href="http://www.xiami.com/artist/10646" target="_blank">Suede </a></li>
<li><span>32</span> <a title="She" href="http://www.xiami.com/song/1301991" target="_blank">She</a> &#8212; <a title="Suede" href="http://www.xiami.com/artist/10646" target="_blank">Suede </a></li>
<li><span>33</span> <a title="Mother Maria (featuring Beth Hart)" href="http://www.xiami.com/song/1769338419" target="_blank">Mother Maria (featur&#8230;</a> &#8212; <a title="Slash" href="http://www.xiami.com/artist/23258" target="_blank">Slash </a>
<p>“没有想到 Slash 吉他弹得那么飞，歌也唱得好。”</li>
<li><span>34</span> <a title="Summer: Summer Overture" href="http://www.xiami.com/song/1768937356" target="_blank">Summer: Summer Overt&#8230;</a> &#8212; <a title="Clint Mansell" href="http://www.xiami.com/artist/61506" target="_blank">Clint Mansell </a>
<p>“一部关于绝望的电影，可是我相信，能够创作出这样伟大作品的人，一定是内心坚定的。</p>
<p>来自电影 Requiem of a Dream”</li>
<li><span>35</span> <a title="Banana Co." href="http://www.xiami.com/song/1769189552" target="_blank">Banana Co.</a> &#8212; <a title="Radiohead" href="http://www.xiami.com/artist/10454" target="_blank">Radiohead </a></li>
<li><span>36</span> <a title="Imagine" href="http://www.xiami.com/song/1122167" target="_blank">Imagine</a> &#8212; <a title="John Lennon" href="http://www.xiami.com/artist/10312" target="_blank">John Lennon </a></li>
<li><span>37</span> <a title="Cleanup Time" href="http://www.xiami.com/song/1122908" target="_blank">Cleanup Time</a> &#8212; <a title="John Lennon" href="http://www.xiami.com/artist/10312" target="_blank">John Lennon </a>
<p>“Maybe you don&#8217;t need to be a man in love to understand all the metaphors in this lovely song.”</li>
<li><span>38</span> <a title="Bohemian Rhapsody" href="http://www.xiami.com/song/1073345" target="_blank">Bohemian Rhapsody</a> &#8212; <a title="Queen" href="http://www.xiami.com/artist/10450" target="_blank">Queen </a></li>
<li><span>39</span> <a title="Good Old Fashioned Lover Boy" href="http://www.xiami.com/song/1073396" target="_blank">Good Old Fashioned L&#8230;</a> &#8212; <a title="Queen" href="http://www.xiami.com/artist/10450" target="_blank">Queen </a>
<p>“本精选辑中最骚的一首歌，委实好听。”</li>
<li><span>40</span> <a title="Tunnel of Love" href="http://www.xiami.com/song/3468787" target="_blank">Tunnel of Love</a> &#8212; <a title="Dire Straits" href="http://www.xiami.com/artist/10157" target="_blank">Dire Straits </a></li>
<li><span>41</span> <a title="Telegraph Road" href="http://www.xiami.com/song/1022766" target="_blank">Telegraph Road</a> &#8212; <a title="Dire Straits" href="http://www.xiami.com/artist/10157" target="_blank">Dire Straits </a></li>
<li><span>42</span> <a title="Goodbye to Romance" href="http://www.xiami.com/song/1245803" target="_blank">Goodbye to Romance</a> &#8212; <a title="Ozzy Osbourne" href="http://www.xiami.com/artist/10409" target="_blank">Ozzy Osbourne </a></li>
<li><span>43</span> <a title="Dreamer" href="http://www.xiami.com/song/1246556" target="_blank">Dreamer</a> &#8212; <a title="Ozzy Osbourne" href="http://www.xiami.com/artist/10409" target="_blank">Ozzy Osbourne </a></li>
<li><span>44</span> <a title="Running Out of Time" href="http://www.xiami.com/song/1246574" target="_blank">Running Out of Time</a> &#8212; <a title="Ozzy Osbourne" href="http://www.xiami.com/artist/10409" target="_blank">Ozzy Osbourne </a></li>
<li><span>45</span> <a title="Давай за…" href="http://www.xiami.com/song/2068166" target="_blank">Давай за…</a> &#8212; <a title="Lube" href="http://www.xiami.com/artist/23280" target="_blank">Lube </a></li>
<li><span>46</span> <a title="Домой" href="http://www.xiami.com/song/2068158" target="_blank">Домой</a> &#8212; <a title="Lube" href="http://www.xiami.com/artist/23280" target="_blank">Lube </a></li>
<li><span>47</span> <a title="1973" href="http://www.xiami.com/song/2082305" target="_blank">1973</a> &#8212; <a title="James Blunt" href="http://www.xiami.com/artist/23450" target="_blank">James Blunt </a></li>
<li><span>48</span> <a title="Wiseman" href="http://www.xiami.com/song/2082231" target="_blank">Wiseman</a> &#8212; <a title="James Blunt" href="http://www.xiami.com/artist/23450" target="_blank">James Blunt </a></li>
<li><span>49</span> <a title="42" href="http://www.xiami.com/song/2085226" target="_blank">42</a> &#8212; <a title="Coldplay" href="http://www.xiami.com/artist/23282" target="_blank">Coldplay </a></li>
<li><span>50</span> <a title="Play With Fire" href="http://www.xiami.com/song/1270981" target="_blank">Play With Fire</a> &#8212; <a title="The Rolling Stones" href="http://www.xiami.com/artist/10479" target="_blank">The Rolling Stones </a></li>
</ul>
</div>
]]></description>
			<content:encoded><![CDATA[<div>
<h1 style="font-size: 12px;"><a title="Working while Listening" href="http://www.xiami.com/song/showcollect/id/903612" target="_blank"><strong>Working while Listening</strong></a></h1>
<p style="line-height: 22px;">制作人：<a title="Livid" href="http://www.xiami.com/u/9646" target="_blank"><strong>Livid</strong></a></p>
<p style="line-height: 22px;"><a href="http://img.xiami.com/./images/collect/12/12/9036121269592503.png" target="_blank"><img src="http://img.xiami.com/./images/collect/12/12/9036121269592503_4.png" alt="Working while Listening" /></a></p>
<p style="line-height: 22px;">This is what I&#8217;m listening while I&#8217;m working.</p>
<p>SHUFFLE mode is recommended.</p>
<p style="margin-top: 10px; margin-bottom: 10px;"><a style="text-decoration: underline; font-size: 14px;" href="http://www.xiami.com/song/play?ids=/song/playlist/id/903612/type/3" target="_blank">去虾米试听 <img src="http://img.xiami.com/res/img/default/c_play.gif" alt="试听" width="15" height="15" align="top" /></a></p>
<h5 style="font-size: 12px; border-bottom: 1px solid #e5e5e5; line-height: 30px;">曲目列表:</h5>
<ul style="color: #666; line-height: 25px;">
<li><span>1</span> <a title="Fade to Black" href="http://www.xiami.com/song/1070164" target="_blank">Fade to Black</a> &#8212; <a title="Metallica" href="http://www.xiami.com/artist/10355" target="_blank">Metallica </a></li>
<li><span>2</span> <a title="The Unforgiven" href="http://www.xiami.com/song/1070389" target="_blank">The Unforgiven</a> &#8212; <a title="Metallica" href="http://www.xiami.com/artist/10355" target="_blank">Metallica </a></li>
<li><span>3</span> <a title="The Unforgiven II" href="http://www.xiami.com/song/1070848" target="_blank">The Unforgiven II</a> &#8212; <a title="Metallica" href="http://www.xiami.com/artist/10355" target="_blank">Metallica </a></li>
<li><span>4</span> <a title="The Unforgiven III" href="http://www.xiami.com/song/3293984" target="_blank">The Unforgiven III</a> &#8212; <a title="Metallica" href="http://www.xiami.com/artist/10355" target="_blank">Metallica </a></li>
<li><span>5</span> <a title="Enter Sandman" href="http://www.xiami.com/song/1070386" target="_blank">Enter Sandman</a> &#8212; <a title="Metallica" href="http://www.xiami.com/artist/10355" target="_blank">Metallica </a></li>
<li><span>6</span> <a title="The House Jack Built" href="http://www.xiami.com/song/1070722" target="_blank">The House Jack Built</a> &#8212; <a title="Metallica" href="http://www.xiami.com/artist/10355" target="_blank">Metallica </a>
<p>“杰克叔叔的小屋？”</li>
<li><span>7</span> <a title="Loving You Sunday Morning" href="http://www.xiami.com/song/1279923" target="_blank">Loving You Sunday Mo&#8230;</a> &#8212; <a title="Scorpions" href="http://www.xiami.com/artist/10497" target="_blank">Scorpions </a></li>
<li><span>8</span> <a title="Everything Will Flow" href="http://www.xiami.com/song/2342502" target="_blank">Everything Will Flow</a> &#8212; <a title="Suede" href="http://www.xiami.com/artist/10646" target="_blank">Suede </a></li>
<li><span>9</span> <a title="Wings of Destiny" href="http://www.xiami.com/song/2115441" target="_blank">Wings of Destiny</a> &#8212; <a title="Rhapsody" href="http://www.xiami.com/artist/24025" target="_blank">Rhapsody </a></li>
<li><span>10</span> <a title="Better" href="http://www.xiami.com/song/1768992486" target="_blank">Better</a> &#8212; <a title="Guns N' Roses" href="http://www.xiami.com/artist/10235" target="_blank">Guns N&#8217; Roses </a></li>
<li><span>11</span> <a title="Street of Dreams" href="http://www.xiami.com/song/1768992487" target="_blank">Street of Dreams</a> &#8212; <a title="Guns N' Roses" href="http://www.xiami.com/artist/10235" target="_blank">Guns N&#8217; Roses </a></li>
<li><span>12</span> <a title="Catcher in the Rye" href="http://www.xiami.com/song/1768992490" target="_blank">Catcher in the Rye</a> &#8212; <a title="Guns N' Roses" href="http://www.xiami.com/artist/10235" target="_blank">Guns N&#8217; Roses </a>
<p>“《麦田守望者》，同时也是我最爱的小说之一。”</li>
<li><span>13</span> <a title="More Than a Feeling" href="http://www.xiami.com/song/1769203302" target="_blank">More Than a Feeling</a> &#8212; <a title="Boston" href="http://www.xiami.com/artist/10061" target="_blank">Boston </a></li>
<li><span>14</span> <a title="Don't Cry" href="http://www.xiami.com/song/3561910" target="_blank">Don&#8217;t Cry</a> &#8212; <a title="Guns N' Roses" href="http://www.xiami.com/artist/10235" target="_blank">Guns N&#8217; Roses </a></li>
<li><span>15</span> <a title="Estranged" href="http://www.xiami.com/song/1036016" target="_blank">Estranged</a> &#8212; <a title="Guns N' Roses" href="http://www.xiami.com/artist/10235" target="_blank">Guns N&#8217; Roses </a></li>
<li><span>16</span> <a title="Siehst du Mich im Licht?" href="http://www.xiami.com/song/1472403" target="_blank">Siehst du Mich im Li&#8230;</a> &#8212; <a title="Lacrimosa" href="http://www.xiami.com/artist/16430" target="_blank">Lacrimosa </a></li>
<li><span>17</span> <a title="Promise " href="http://www.xiami.com/song/3061532" target="_blank">Promise </a> &#8212; <a title="Soundtrack" href="http://www.xiami.com/artist/23256" target="_blank">Soundtrack </a>
<p>“来自 Silent Hill 2”</li>
<li><span>18</span> <a title="Theme of Loura " href="http://www.xiami.com/song/3061503" target="_blank">Theme of Loura </a> &#8212; <a title="Soundtrack" href="http://www.xiami.com/artist/23256" target="_blank">Soundtrack </a>
<p>“Best of best.</p>
<p>来自 Silent Hill 2”</li>
<li><span>19</span> <a title="Lost For Words" href="http://www.xiami.com/song/2067143" target="_blank">Lost For Words</a> &#8212; <a title="Pink Floyd" href="http://www.xiami.com/artist/10426" target="_blank">Pink Floyd </a>
<p>“My all time favorite.”</li>
<li><span>20</span> <a title="Uprising" href="http://www.xiami.com/song/1769075169" target="_blank">Uprising</a> &#8212; <a title="Muse " href="http://www.xiami.com/artist/23375" target="_blank">Muse </a></li>
<li><span>21</span> <a title="New  Born" href="http://www.xiami.com/song/2076818" target="_blank">New  Born</a> &#8212; <a title="Muse " href="http://www.xiami.com/artist/23375" target="_blank">Muse </a></li>
<li><span>22</span> <a title="Bliss" href="http://www.xiami.com/song/2076819" target="_blank">Bliss</a> &#8212; <a title="Muse " href="http://www.xiami.com/artist/23375" target="_blank">Muse </a></li>
<li><span>23</span> <a title="I Belong To You (+ Mon Coeur SOuvre A Ta Voix)" href="http://www.xiami.com/song/1769075176" target="_blank">I Belong To You (+ M&#8230;</a> &#8212; <a title="Muse " href="http://www.xiami.com/artist/23375" target="_blank">Muse </a>
<p>“听着这样的前奏，用光脚在木地板上打节拍的感觉。”</li>
<li><span>24</span> <a title="Right Where It Belongs" href="http://www.xiami.com/song/1238874" target="_blank">Right Where It Belon&#8230;</a> &#8212; <a title="Nine Inch Nails" href="http://www.xiami.com/artist/10392" target="_blank">Nine Inch Nails </a>
<p>“不喜噪音者可猛击 skip，下首包你中意。”</li>
<li><span>25</span> <a title="Only" href="http://www.xiami.com/song/3454952" target="_blank">Only</a> &#8212; <a title="Nine Inch Nails" href="http://www.xiami.com/artist/10392" target="_blank">Nine Inch Nails </a></li>
<li><span>26</span> <a title="Wish you were here" href="http://www.xiami.com/song/3621887" target="_blank">Wish you were here</a> &#8212; <a title="Radiohead" href="http://www.xiami.com/artist/10454" target="_blank">Radiohead </a></li>
<li><span>27</span> <a title="Exit Music (For a Film)" href="http://www.xiami.com/song/1079670" target="_blank">Exit Music (For a Fi&#8230;</a> &#8212; <a title="Radiohead" href="http://www.xiami.com/artist/10454" target="_blank">Radiohead </a></li>
<li><span>28</span> <a title="Paranoid Android" href="http://www.xiami.com/song/1079668" target="_blank">Paranoid Android</a> &#8212; <a title="Radiohead" href="http://www.xiami.com/artist/10454" target="_blank">Radiohead </a>
<p>“This is FUTURE.”</li>
<li><span>29</span> <a title="Karma Police" href="http://www.xiami.com/song/1079672" target="_blank">Karma Police</a> &#8212; <a title="Radiohead" href="http://www.xiami.com/artist/10454" target="_blank">Radiohead </a></li>
<li><span>30</span> <a title="Beautiful Ones" href="http://www.xiami.com/song/1301992" target="_blank">Beautiful Ones</a> &#8212; <a title="Suede" href="http://www.xiami.com/artist/10646" target="_blank">Suede </a></li>
<li><span>31</span> <a title="So Young" href="http://www.xiami.com/song/1301924" target="_blank">So Young</a> &#8212; <a title="Suede" href="http://www.xiami.com/artist/10646" target="_blank">Suede </a></li>
<li><span>32</span> <a title="She" href="http://www.xiami.com/song/1301991" target="_blank">She</a> &#8212; <a title="Suede" href="http://www.xiami.com/artist/10646" target="_blank">Suede </a></li>
<li><span>33</span> <a title="Mother Maria (featuring Beth Hart)" href="http://www.xiami.com/song/1769338419" target="_blank">Mother Maria (featur&#8230;</a> &#8212; <a title="Slash" href="http://www.xiami.com/artist/23258" target="_blank">Slash </a>
<p>“没有想到 Slash 吉他弹得那么飞，歌也唱得好。”</li>
<li><span>34</span> <a title="Summer: Summer Overture" href="http://www.xiami.com/song/1768937356" target="_blank">Summer: Summer Overt&#8230;</a> &#8212; <a title="Clint Mansell" href="http://www.xiami.com/artist/61506" target="_blank">Clint Mansell </a>
<p>“一部关于绝望的电影，可是我相信，能够创作出这样伟大作品的人，一定是内心坚定的。</p>
<p>来自电影 Requiem of a Dream”</li>
<li><span>35</span> <a title="Banana Co." href="http://www.xiami.com/song/1769189552" target="_blank">Banana Co.</a> &#8212; <a title="Radiohead" href="http://www.xiami.com/artist/10454" target="_blank">Radiohead </a></li>
<li><span>36</span> <a title="Imagine" href="http://www.xiami.com/song/1122167" target="_blank">Imagine</a> &#8212; <a title="John Lennon" href="http://www.xiami.com/artist/10312" target="_blank">John Lennon </a></li>
<li><span>37</span> <a title="Cleanup Time" href="http://www.xiami.com/song/1122908" target="_blank">Cleanup Time</a> &#8212; <a title="John Lennon" href="http://www.xiami.com/artist/10312" target="_blank">John Lennon </a>
<p>“Maybe you don&#8217;t need to be a man in love to understand all the metaphors in this lovely song.”</li>
<li><span>38</span> <a title="Bohemian Rhapsody" href="http://www.xiami.com/song/1073345" target="_blank">Bohemian Rhapsody</a> &#8212; <a title="Queen" href="http://www.xiami.com/artist/10450" target="_blank">Queen </a></li>
<li><span>39</span> <a title="Good Old Fashioned Lover Boy" href="http://www.xiami.com/song/1073396" target="_blank">Good Old Fashioned L&#8230;</a> &#8212; <a title="Queen" href="http://www.xiami.com/artist/10450" target="_blank">Queen </a>
<p>“本精选辑中最骚的一首歌，委实好听。”</li>
<li><span>40</span> <a title="Tunnel of Love" href="http://www.xiami.com/song/3468787" target="_blank">Tunnel of Love</a> &#8212; <a title="Dire Straits" href="http://www.xiami.com/artist/10157" target="_blank">Dire Straits </a></li>
<li><span>41</span> <a title="Telegraph Road" href="http://www.xiami.com/song/1022766" target="_blank">Telegraph Road</a> &#8212; <a title="Dire Straits" href="http://www.xiami.com/artist/10157" target="_blank">Dire Straits </a></li>
<li><span>42</span> <a title="Goodbye to Romance" href="http://www.xiami.com/song/1245803" target="_blank">Goodbye to Romance</a> &#8212; <a title="Ozzy Osbourne" href="http://www.xiami.com/artist/10409" target="_blank">Ozzy Osbourne </a></li>
<li><span>43</span> <a title="Dreamer" href="http://www.xiami.com/song/1246556" target="_blank">Dreamer</a> &#8212; <a title="Ozzy Osbourne" href="http://www.xiami.com/artist/10409" target="_blank">Ozzy Osbourne </a></li>
<li><span>44</span> <a title="Running Out of Time" href="http://www.xiami.com/song/1246574" target="_blank">Running Out of Time</a> &#8212; <a title="Ozzy Osbourne" href="http://www.xiami.com/artist/10409" target="_blank">Ozzy Osbourne </a></li>
<li><span>45</span> <a title="Давай за…" href="http://www.xiami.com/song/2068166" target="_blank">Давай за…</a> &#8212; <a title="Lube" href="http://www.xiami.com/artist/23280" target="_blank">Lube </a></li>
<li><span>46</span> <a title="Домой" href="http://www.xiami.com/song/2068158" target="_blank">Домой</a> &#8212; <a title="Lube" href="http://www.xiami.com/artist/23280" target="_blank">Lube </a></li>
<li><span>47</span> <a title="1973" href="http://www.xiami.com/song/2082305" target="_blank">1973</a> &#8212; <a title="James Blunt" href="http://www.xiami.com/artist/23450" target="_blank">James Blunt </a></li>
<li><span>48</span> <a title="Wiseman" href="http://www.xiami.com/song/2082231" target="_blank">Wiseman</a> &#8212; <a title="James Blunt" href="http://www.xiami.com/artist/23450" target="_blank">James Blunt </a></li>
<li><span>49</span> <a title="42" href="http://www.xiami.com/song/2085226" target="_blank">42</a> &#8212; <a title="Coldplay" href="http://www.xiami.com/artist/23282" target="_blank">Coldplay </a></li>
<li><span>50</span> <a title="Play With Fire" href="http://www.xiami.com/song/1270981" target="_blank">Play With Fire</a> &#8212; <a title="The Rolling Stones" href="http://www.xiami.com/artist/10479" target="_blank">The Rolling Stones </a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.v2op.com/2010/04/working-while-listening/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google的10大设计原则</title>
		<link>http://blog.v2op.com/2010/03/googles-10-design-principles/</link>
		<comments>http://blog.v2op.com/2010/03/googles-10-design-principles/#comments</comments>
		<pubDate>Mon, 22 Mar 2010 11:24:26 +0000</pubDate>
		<dc:creator>AmirFish</dc:creator>
				<category><![CDATA[分享发现]]></category>
		<category><![CDATA[google]]></category>

		<guid isPermaLink="false">http://blog.v2op.com/?p=534</guid>
		<description><![CDATA[<ul>
<ol><strong>有用</strong>（Useful）：以用户为焦点，关注他们的生活、工作和梦想。</ol>
<ol><strong>快速</strong>（Fast）：争取节省每一个毫秒。</ol>
<ol><strong>简单</strong>（Simple）：简洁就是力量。</ol>
<ol><strong>魅力</strong>（Engaging）：能够唤起新手的好奇心，能够吸引资深用户。</ol>
<ol><strong>革新</strong>（Innovative）：勇于创新。</ol>
<ol><strong>通用</strong>（Universal）：全世界适用的设计。</ol>
<ol><strong>盈利</strong>（Profitable）：为现行的和将来的商业模式做好安排。</ol>
<ol><strong>优美</strong>（Beautiful）：外观具有视觉愉悦性，但是不会令用户分心。</ol>
<ol><strong>可信</strong>（Trustworthy）：值得用户信赖。</ol>
<ol><strong>人性</strong>（Personable）：加入人性化因素。</ol>
</ul>
]]></description>
			<content:encoded><![CDATA[<ul>
<ol><strong>有用</strong>（Useful）：以用户为焦点，关注他们的生活、工作和梦想。</ol>
<ol><strong>快速</strong>（Fast）：争取节省每一个毫秒。</ol>
<ol><strong>简单</strong>（Simple）：简洁就是力量。</ol>
<ol><strong>魅力</strong>（Engaging）：能够唤起新手的好奇心，能够吸引资深用户。</ol>
<ol><strong>革新</strong>（Innovative）：勇于创新。</ol>
<ol><strong>通用</strong>（Universal）：全世界适用的设计。</ol>
<ol><strong>盈利</strong>（Profitable）：为现行的和将来的商业模式做好安排。</ol>
<ol><strong>优美</strong>（Beautiful）：外观具有视觉愉悦性，但是不会令用户分心。</ol>
<ol><strong>可信</strong>（Trustworthy）：值得用户信赖。</ol>
<ol><strong>人性</strong>（Personable）：加入人性化因素。</ol>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.v2op.com/2010/03/googles-10-design-principles/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>linux下shell命令的常用快捷键</title>
		<link>http://blog.v2op.com/2010/02/linux%e4%b8%8bshell%e5%91%bd%e4%bb%a4%e7%9a%84%e5%b8%b8%e7%94%a8%e5%bf%ab%e6%8d%b7%e9%94%ae/</link>
		<comments>http://blog.v2op.com/2010/02/linux%e4%b8%8bshell%e5%91%bd%e4%bb%a4%e7%9a%84%e5%b8%b8%e7%94%a8%e5%bf%ab%e6%8d%b7%e9%94%ae/#comments</comments>
		<pubDate>Sat, 20 Feb 2010 12:20:11 +0000</pubDate>
		<dc:creator>AmirFish</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://blog.v2op.com/?p=532</guid>
		<description><![CDATA[<ul>
<li>Ctrl + a   切换到命令行开始</li>
<li>Ctrl + e   切换到命令行末尾</li>
<li>Ctrl + l    清除屏幕内容</li>
<li>Ctrl + u   清除光标之前的内容</li>
<li>Ctrl + k   清除光标之后的内容</li>
<li>Ctrl + h    类似于退格键</li>
<li>Ctrl + r     在历史命令中查找  （这个非常好用，输入关键字就调出以前的命令了）</li>
<li>Ctrl + c    终止命令</li>
<li>Ctrl + d   退出shell</li>
<li>Ctrl + z    转入后台运行</li>
</ul>
<p>alt键比较少用,因为很多地方与远程登陆工具是有冲突的..</p>
<ul>
<li>Alt + f    切换光标前的字母</li>
<li>Alt + b    切换光标后的字母</li>
</ul>
<p><a href="http://www.sudo-u.com/?p=48" target="_blank">原文链接</a></p>
]]></description>
			<content:encoded><![CDATA[<ul>
<li>Ctrl + a   切换到命令行开始</li>
<li>Ctrl + e   切换到命令行末尾</li>
<li>Ctrl + l    清除屏幕内容</li>
<li>Ctrl + u   清除光标之前的内容</li>
<li>Ctrl + k   清除光标之后的内容</li>
<li>Ctrl + h    类似于退格键</li>
<li>Ctrl + r     在历史命令中查找  （这个非常好用，输入关键字就调出以前的命令了）</li>
<li>Ctrl + c    终止命令</li>
<li>Ctrl + d   退出shell</li>
<li>Ctrl + z    转入后台运行</li>
</ul>
<p>alt键比较少用,因为很多地方与远程登陆工具是有冲突的..</p>
<ul>
<li>Alt + f    切换光标前的字母</li>
<li>Alt + b    切换光标后的字母</li>
</ul>
<p><a href="http://www.sudo-u.com/?p=48" target="_blank">原文链接</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.v2op.com/2010/02/linux%e4%b8%8bshell%e5%91%bd%e4%bb%a4%e7%9a%84%e5%b8%b8%e7%94%a8%e5%bf%ab%e6%8d%b7%e9%94%ae/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>拒绝垃圾邮件，隐藏email地址</title>
		<link>http://blog.v2op.com/2010/02/e-mail-links-protective-solutions-against-spam/</link>
		<comments>http://blog.v2op.com/2010/02/e-mail-links-protective-solutions-against-spam/#comments</comments>
		<pubDate>Tue, 16 Feb 2010 12:25:02 +0000</pubDate>
		<dc:creator>AmirFish</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[spam]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://blog.v2op.com/?p=529</guid>
		<description><![CDATA[<p>如今的垃圾邮件是越来越猖狂了，稍不小心就会遭致无穷尽的骚扰。尽管有如同Gmail这样的强大的反垃圾邮件的服务商，仍有不少漏网之鱼（每天躺在我收件箱里的垃圾邮件会有几十封）。</p>
<p>我们需要避免直接在网页中留下email地址，例如 test@test.com。下面有一些简单且行之有效的方法隐藏email地址。</p>
<h2>方法一：使用图片显示email地址</h2>
<p>例如：<a href="http://blog.v2op.com/wp-content/uploads/2010/02/fish@email.png"><img class="alignnone size-full wp-image-530" title="fish@email" src="http://blog.v2op.com/wp-content/uploads/2010/02/fish@email.png" alt="" width="189" height="24" /></a></p>
<p>Google里搜索一下“email图片”类似的关键词，就可以找到有很多网站生成这样的图片</p>
<p>这里有一个：http://www.makepic.com/email.php</p>
<h2>方法二：隐藏 @ 符号</h2>
<ul>
<li>使用 &amp;#64; 代替 @，（是@符号的html实体代码）显示出来的效果会是 test@test.com</li>
<li>使用 at 或者其他任意字符 代替 @，例如 test at test.com、test(at)test.com</li>
</ul>
<h2>方法三：使用脚本语言（php或JavaScript）隐藏email地址</h2>
<h3>代码一：PHP</h3>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">function</span> convert_email_adr<span style="color: #009900;">&#40;</span><span style="color: #000088;">$email</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    <span style="color: #000088;">$pieces</span> <span style="color: #339933;">=</span> <span style="color: #990000;">str_split</span><span style="color: #009900;">&#40;</span><span style="color: #990000;">trim</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$email</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #000088;">$new_mail</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">;</span>
    <span style="color: #b1b100;">foreach</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$pieces</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$val</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
        <span style="color: #000088;">$new_mail</span> <span style="color: #339933;">.=</span> <span style="color: #0000ff;">'&amp;amp;#'</span><span style="color: #339933;">.</span><span style="color: #990000;">ord</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$val</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">';'</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
    <span style="color: #b1b100;">return</span> <span style="color: #000088;">$new_mail</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>在页面中调用此函数<br />
<code></p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> convert_email_adr<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'user@email.com'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p></code><br />
输出结果<br />
<code></p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&amp;#117;&amp;#115;&amp;#101;&amp;#114;&amp;#64;&amp;#101;&amp;#109;&amp;#97;&amp;#105;&amp;#108;&amp;#46;&amp;#99;&amp;#111;&amp;#109;</pre></div></div>

<p></code></p>
<h3>代码二：JavaScript</h3>
<p><code></p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>script type<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;text/javascript&quot;</span><span style="color: #339933;">&gt;</span>
<span style="color: #003366; font-weight: bold;">function</span> create_mail<span style="color: #009900;">&#40;</span>naam<span style="color: #339933;">,</span> domain<span style="color: #339933;">,</span> tld<span style="color: #339933;">,</span> label<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    <span style="color: #003366; font-weight: bold;">var</span> mail<span style="color: #339933;">;</span>
    mail <span style="color: #339933;">+=</span> <span style="color: #3366CC;">'&lt;a href=&quot;'</span> <span style="color: #339933;">+</span> <span style="color: #3366CC;">'ma'</span> <span style="color: #339933;">+</span> <span style="color: #3366CC;">'il'</span> <span style="color: #339933;">+</span> <span style="color: #3366CC;">'to:'</span> <span style="color: #339933;">+</span> naam<span style="color: #339933;">;</span>
    mail <span style="color: #339933;">+=</span> <span style="color: #3366CC;">'&amp;#64;'</span> <span style="color: #339933;">+</span> mail <span style="color: #339933;">+</span> domain <span style="color: #3366CC;">'.'</span> <span style="color: #339933;">+</span> tld<span style="color: #339933;">;</span>
    mail <span style="color: #339933;">+=</span> <span style="color: #3366CC;">'&quot;&gt;'</span> <span style="color: #339933;">+</span> label <span style="color: #339933;">+</span> <span style="color: #3366CC;">'&lt;'</span> <span style="color: #339933;">+</span> <span style="color: #3366CC;">'/a&gt;'</span><span style="color: #339933;">;</span>
    document.<span style="color: #000066; font-weight: bold;">write</span><span style="color: #009900;">&#40;</span>mail<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #339933;">&lt;/</span>script<span style="color: #339933;">&gt;</span></pre></div></div>

<p></code><br />
在页面中插入此代码调用<br />
<code></p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>script type<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;text/javascript&quot;</span><span style="color: #339933;">&gt;</span>create_mail<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;user&quot;</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">&quot;email&quot;</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">&quot;com&quot;</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">&quot;e-mail&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;&lt;/</span>script<span style="color: #339933;">&gt;</span></pre></div></div>

<p></code></p>
<h3>代码三：</h3>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">function</span> hide_email<span style="color: #009900;">&#40;</span><span style="color: #000088;">$email</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span> <span style="color: #000088;">$character_set</span>  <span style="color: #339933;">=</span> <span style="color: #0000ff;">'+-.0123456789@ABCDEFGHIJKLMNOPQRSTUVWXYZ_abcdefghijklmnopqrstuvwxyz'</span><span style="color: #339933;">;</span> <span style="color: #000088;">$key</span> <span style="color: #339933;">=</span> <span style="color: #990000;">str_shuffle</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$character_set</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000088;">$cipher_text</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">;</span> <span style="color: #000088;">$id</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'e'</span><span style="color: #339933;">.</span><span style="color: #990000;">rand</span><span style="color: #009900;">&#40;</span><span style="color: #cc66cc;">1</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">999999999</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #b1b100;">for</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$i</span><span style="color: #339933;">=</span><span style="color: #cc66cc;">0</span><span style="color: #339933;">;</span><span style="color: #000088;">$i</span><span style="color: #0000ff;">&quot;+d+&quot;</span><span style="color: #0000ff;">&quot;'; <span style="color: #006699; font-weight: bold;">$script</span> = &quot;</span><span style="color: #990000;">eval</span><span style="color: #009900;">&#40;</span>\<span style="color: #0000ff;">&quot;&quot;</span><span style="color: #339933;">.</span><span style="color: #990000;">str_replace</span><span style="color: #009900;">&#40;</span><span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;<span style="color: #000099; font-weight: bold;">\\</span>&quot;</span><span style="color: #339933;">,</span><span style="color: #0000ff;">'&quot;'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span><span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;<span style="color: #000099; font-weight: bold;">\\</span><span style="color: #000099; font-weight: bold;">\\</span>&quot;</span><span style="color: #339933;">,</span><span style="color: #0000ff;">'\&quot;'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$script</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;<span style="color: #000099; font-weight: bold;">\&quot;</span>)&quot;</span><span style="color: #339933;">;</span> <span style="color: #000088;">$script</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--mce:2--&gt;&lt;/script&gt;'</span><span style="color: #339933;">;</span> <span style="color: #b1b100;">return</span> <span style="color: #0000ff;">'&lt;span id=&quot;'</span><span style="color: #339933;">.</span><span style="color: #000088;">$id</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'&quot;&gt;[javascript protected email address]&lt;/span&gt;'</span><span style="color: #339933;">.</span><span style="color: #000088;">$script</span><span style="color: #339933;">;</span> <span style="color: #009900;">&#125;</span></pre></div></div>

<p>在页面中调用此函数<br />
<code></p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> hide_email<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'test@test.com'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p></code><br />
输出结果<br />
<code></p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>span id<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;e5119581&quot;</span><span style="color: #339933;">&gt;</span><span style="color: #009900;">&#91;</span>javascript protected email address<span style="color: #009900;">&#93;</span><span style="color: #339933;">&lt;/</span>span<span style="color: #339933;">&gt;&lt;</span>script type<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;text/javascript&quot;</span><span style="color: #339933;">&gt;</span><span style="color: #666666; font-style: italic;">/*&lt;![CDATA[*/</span><span style="color: #990000;">eval</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;var a=<span style="color: #000099; font-weight: bold;">\&quot;</span>XyScbvBUW38fhasxldY_TQotLE5nCJDkgMVIq@KeArO9i20G1pHu.R4N6PZm7j-+wFz<span style="color: #000099; font-weight: bold;">\&quot;</span>;var b=a.split(<span style="color: #000099; font-weight: bold;">\&quot;</span><span style="color: #000099; font-weight: bold;">\&quot;</span>).sort().join(<span style="color: #000099; font-weight: bold;">\&quot;</span><span style="color: #000099; font-weight: bold;">\&quot;</span>);var c=<span style="color: #000099; font-weight: bold;">\&quot;</span>72m7a72m7S9NR<span style="color: #000099; font-weight: bold;">\&quot;</span>;var d=<span style="color: #000099; font-weight: bold;">\&quot;</span><span style="color: #000099; font-weight: bold;">\&quot;</span>;for(var e=0;e&lt;c.length;e++)d+=b.charAt(a.indexOf(c.charAt(e)));document.getElementById(<span style="color: #000099; font-weight: bold;">\&quot;</span>e5119581<span style="color: #000099; font-weight: bold;">\&quot;</span>).innerHTML=<span style="color: #000099; font-weight: bold;">\&quot;</span>&lt;a href=<span style="color: #000099; font-weight: bold;">\\</span><span style="color: #000099; font-weight: bold;">\&quot;</span>mailto:<span style="color: #000099; font-weight: bold;">\&quot;</span>+d+<span style="color: #000099; font-weight: bold;">\&quot;</span><span style="color: #000099; font-weight: bold;">\\</span><span style="color: #000099; font-weight: bold;">\&quot;</span>&gt;<span style="color: #000099; font-weight: bold;">\&quot;</span>+d+<span style="color: #000099; font-weight: bold;">\&quot;</span>&lt;/a&gt;<span style="color: #000099; font-weight: bold;">\&quot;</span>&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #666666; font-style: italic;">/*]]&gt;*/</span><span style="color: #000000; font-weight: bold;">&lt;/script&gt;</span></pre></div></div>

<p></code><br />
显示效果<br />
<code></p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">test@test.com</pre></div></div>

<p></code></p>
<p>代码一、代码二<a href="http://www.web-development-blog.com/archives/e-mail-links-protective-solutions-against-spam/">原文点击这里</a><br />
代码三<a href="http://www.maurits.vdschee.nl/php_hide_email/">原文点击这里</a></p>
<p>还有一些其他的方法，例如利用css翻转字符。大家可以自己搜搜看。</p>
]]></description>
			<content:encoded><![CDATA[<p>如今的垃圾邮件是越来越猖狂了，稍不小心就会遭致无穷尽的骚扰。尽管有如同Gmail这样的强大的反垃圾邮件的服务商，仍有不少漏网之鱼（每天躺在我收件箱里的垃圾邮件会有几十封）。</p>
<p>我们需要避免直接在网页中留下email地址，例如 test@test.com。下面有一些简单且行之有效的方法隐藏email地址。</p>
<h2>方法一：使用图片显示email地址</h2>
<p>例如：<a href="http://blog.v2op.com/wp-content/uploads/2010/02/fish@email.png"><img class="alignnone size-full wp-image-530" title="fish@email" src="http://blog.v2op.com/wp-content/uploads/2010/02/fish@email.png" alt="" width="189" height="24" /></a></p>
<p>Google里搜索一下“email图片”类似的关键词，就可以找到有很多网站生成这样的图片</p>
<p>这里有一个：http://www.makepic.com/email.php</p>
<h2>方法二：隐藏 @ 符号</h2>
<ul>
<li>使用 &amp;#64; 代替 @，（是@符号的html实体代码）显示出来的效果会是 test@test.com</li>
<li>使用 at 或者其他任意字符 代替 @，例如 test at test.com、test(at)test.com</li>
</ul>
<h2>方法三：使用脚本语言（php或JavaScript）隐藏email地址</h2>
<h3>代码一：PHP</h3>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">function</span> convert_email_adr<span style="color: #009900;">&#40;</span><span style="color: #000088;">$email</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    <span style="color: #000088;">$pieces</span> <span style="color: #339933;">=</span> <span style="color: #990000;">str_split</span><span style="color: #009900;">&#40;</span><span style="color: #990000;">trim</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$email</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #000088;">$new_mail</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">;</span>
    <span style="color: #b1b100;">foreach</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$pieces</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$val</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
        <span style="color: #000088;">$new_mail</span> <span style="color: #339933;">.=</span> <span style="color: #0000ff;">'&amp;amp;#'</span><span style="color: #339933;">.</span><span style="color: #990000;">ord</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$val</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">';'</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
    <span style="color: #b1b100;">return</span> <span style="color: #000088;">$new_mail</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>在页面中调用此函数<br />
<code></p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> convert_email_adr<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'user@email.com'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p></code><br />
输出结果<br />
<code></p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&amp;#117;&amp;#115;&amp;#101;&amp;#114;&amp;#64;&amp;#101;&amp;#109;&amp;#97;&amp;#105;&amp;#108;&amp;#46;&amp;#99;&amp;#111;&amp;#109;</pre></div></div>

<p></code></p>
<h3>代码二：JavaScript</h3>
<p><code></p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>script type<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;text/javascript&quot;</span><span style="color: #339933;">&gt;</span>
<span style="color: #003366; font-weight: bold;">function</span> create_mail<span style="color: #009900;">&#40;</span>naam<span style="color: #339933;">,</span> domain<span style="color: #339933;">,</span> tld<span style="color: #339933;">,</span> label<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    <span style="color: #003366; font-weight: bold;">var</span> mail<span style="color: #339933;">;</span>
    mail <span style="color: #339933;">+=</span> <span style="color: #3366CC;">'&lt;a href=&quot;'</span> <span style="color: #339933;">+</span> <span style="color: #3366CC;">'ma'</span> <span style="color: #339933;">+</span> <span style="color: #3366CC;">'il'</span> <span style="color: #339933;">+</span> <span style="color: #3366CC;">'to:'</span> <span style="color: #339933;">+</span> naam<span style="color: #339933;">;</span>
    mail <span style="color: #339933;">+=</span> <span style="color: #3366CC;">'&amp;#64;'</span> <span style="color: #339933;">+</span> mail <span style="color: #339933;">+</span> domain <span style="color: #3366CC;">'.'</span> <span style="color: #339933;">+</span> tld<span style="color: #339933;">;</span>
    mail <span style="color: #339933;">+=</span> <span style="color: #3366CC;">'&quot;&gt;'</span> <span style="color: #339933;">+</span> label <span style="color: #339933;">+</span> <span style="color: #3366CC;">'&lt;'</span> <span style="color: #339933;">+</span> <span style="color: #3366CC;">'/a&gt;'</span><span style="color: #339933;">;</span>
    document.<span style="color: #000066; font-weight: bold;">write</span><span style="color: #009900;">&#40;</span>mail<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #339933;">&lt;/</span>script<span style="color: #339933;">&gt;</span></pre></div></div>

<p></code><br />
在页面中插入此代码调用<br />
<code></p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>script type<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;text/javascript&quot;</span><span style="color: #339933;">&gt;</span>create_mail<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;user&quot;</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">&quot;email&quot;</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">&quot;com&quot;</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">&quot;e-mail&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;&lt;/</span>script<span style="color: #339933;">&gt;</span></pre></div></div>

<p></code></p>
<h3>代码三：</h3>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">function</span> hide_email<span style="color: #009900;">&#40;</span><span style="color: #000088;">$email</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span> <span style="color: #000088;">$character_set</span>  <span style="color: #339933;">=</span> <span style="color: #0000ff;">'+-.0123456789@ABCDEFGHIJKLMNOPQRSTUVWXYZ_abcdefghijklmnopqrstuvwxyz'</span><span style="color: #339933;">;</span> <span style="color: #000088;">$key</span> <span style="color: #339933;">=</span> <span style="color: #990000;">str_shuffle</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$character_set</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000088;">$cipher_text</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">;</span> <span style="color: #000088;">$id</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'e'</span><span style="color: #339933;">.</span><span style="color: #990000;">rand</span><span style="color: #009900;">&#40;</span><span style="color: #cc66cc;">1</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">999999999</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #b1b100;">for</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$i</span><span style="color: #339933;">=</span><span style="color: #cc66cc;">0</span><span style="color: #339933;">;</span><span style="color: #000088;">$i</span><span style="color: #0000ff;">&quot;+d+&quot;</span><span style="color: #0000ff;">&quot;'; <span style="color: #006699; font-weight: bold;">$script</span> = &quot;</span><span style="color: #990000;">eval</span><span style="color: #009900;">&#40;</span>\<span style="color: #0000ff;">&quot;&quot;</span><span style="color: #339933;">.</span><span style="color: #990000;">str_replace</span><span style="color: #009900;">&#40;</span><span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;<span style="color: #000099; font-weight: bold;">\\</span>&quot;</span><span style="color: #339933;">,</span><span style="color: #0000ff;">'&quot;'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span><span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;<span style="color: #000099; font-weight: bold;">\\</span><span style="color: #000099; font-weight: bold;">\\</span>&quot;</span><span style="color: #339933;">,</span><span style="color: #0000ff;">'\&quot;'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$script</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;<span style="color: #000099; font-weight: bold;">\&quot;</span>)&quot;</span><span style="color: #339933;">;</span> <span style="color: #000088;">$script</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--mce:2--&gt;&lt;/script&gt;'</span><span style="color: #339933;">;</span> <span style="color: #b1b100;">return</span> <span style="color: #0000ff;">'&lt;span id=&quot;'</span><span style="color: #339933;">.</span><span style="color: #000088;">$id</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'&quot;&gt;[javascript protected email address]&lt;/span&gt;'</span><span style="color: #339933;">.</span><span style="color: #000088;">$script</span><span style="color: #339933;">;</span> <span style="color: #009900;">&#125;</span></pre></div></div>

<p>在页面中调用此函数<br />
<code></p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> hide_email<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'test@test.com'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p></code><br />
输出结果<br />
<code></p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>span id<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;e5119581&quot;</span><span style="color: #339933;">&gt;</span><span style="color: #009900;">&#91;</span>javascript protected email address<span style="color: #009900;">&#93;</span><span style="color: #339933;">&lt;/</span>span<span style="color: #339933;">&gt;&lt;</span>script type<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;text/javascript&quot;</span><span style="color: #339933;">&gt;</span><span style="color: #666666; font-style: italic;">/*&lt;![CDATA[*/</span><span style="color: #990000;">eval</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;var a=<span style="color: #000099; font-weight: bold;">\&quot;</span>XyScbvBUW38fhasxldY_TQotLE5nCJDkgMVIq@KeArO9i20G1pHu.R4N6PZm7j-+wFz<span style="color: #000099; font-weight: bold;">\&quot;</span>;var b=a.split(<span style="color: #000099; font-weight: bold;">\&quot;</span><span style="color: #000099; font-weight: bold;">\&quot;</span>).sort().join(<span style="color: #000099; font-weight: bold;">\&quot;</span><span style="color: #000099; font-weight: bold;">\&quot;</span>);var c=<span style="color: #000099; font-weight: bold;">\&quot;</span>72m7a72m7S9NR<span style="color: #000099; font-weight: bold;">\&quot;</span>;var d=<span style="color: #000099; font-weight: bold;">\&quot;</span><span style="color: #000099; font-weight: bold;">\&quot;</span>;for(var e=0;e&lt;c.length;e++)d+=b.charAt(a.indexOf(c.charAt(e)));document.getElementById(<span style="color: #000099; font-weight: bold;">\&quot;</span>e5119581<span style="color: #000099; font-weight: bold;">\&quot;</span>).innerHTML=<span style="color: #000099; font-weight: bold;">\&quot;</span>&lt;a href=<span style="color: #000099; font-weight: bold;">\\</span><span style="color: #000099; font-weight: bold;">\&quot;</span>mailto:<span style="color: #000099; font-weight: bold;">\&quot;</span>+d+<span style="color: #000099; font-weight: bold;">\&quot;</span><span style="color: #000099; font-weight: bold;">\\</span><span style="color: #000099; font-weight: bold;">\&quot;</span>&gt;<span style="color: #000099; font-weight: bold;">\&quot;</span>+d+<span style="color: #000099; font-weight: bold;">\&quot;</span>&lt;/a&gt;<span style="color: #000099; font-weight: bold;">\&quot;</span>&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #666666; font-style: italic;">/*]]&gt;*/</span><span style="color: #000000; font-weight: bold;">&lt;/script&gt;</span></pre></div></div>

<p></code><br />
显示效果<br />
<code></p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">test@test.com</pre></div></div>

<p></code></p>
<p>代码一、代码二<a href="http://www.web-development-blog.com/archives/e-mail-links-protective-solutions-against-spam/">原文点击这里</a><br />
代码三<a href="http://www.maurits.vdschee.nl/php_hide_email/">原文点击这里</a></p>
<p>还有一些其他的方法，例如利用css翻转字符。大家可以自己搜搜看。</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.v2op.com/2010/02/e-mail-links-protective-solutions-against-spam/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>哥超喜欢这个！MBP+Iron Man</title>
		<link>http://blog.v2op.com/2010/02/mbp-iron-man/</link>
		<comments>http://blog.v2op.com/2010/02/mbp-iron-man/#comments</comments>
		<pubDate>Sat, 06 Feb 2010 16:40:30 +0000</pubDate>
		<dc:creator>AmirFish</dc:creator>
				<category><![CDATA[分享发现]]></category>
		<category><![CDATA[mbp]]></category>
		<category><![CDATA[电影]]></category>

		<guid isPermaLink="false">http://blog.v2op.com/?p=526</guid>
		<description><![CDATA[<p><a href="http://blog.v2op.com/wp-content/uploads/2010/02/mpb+ironman.jpg"><img class="alignnone size-full wp-image-527" title="mpb+ironman" src="http://blog.v2op.com/wp-content/uploads/2010/02/mpb+ironman.jpg" alt="" width="515" height="386" /></a></p>
]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.v2op.com/wp-content/uploads/2010/02/mpb+ironman.jpg"><img class="alignnone size-full wp-image-527" title="mpb+ironman" src="http://blog.v2op.com/wp-content/uploads/2010/02/mpb+ironman.jpg" alt="" width="515" height="386" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.v2op.com/2010/02/mbp-iron-man/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
