<?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>未央志 &#187; willyun</title>
	<atom:link href="http://www.willyun.com/author/admin/feed" rel="self" type="application/rss+xml" />
	<link>http://www.willyun.com</link>
	<description>互联网、用户体验及其它</description>
	<lastBuildDate>Sun, 08 Jan 2012 06:18:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>使用WebMatrix搭建WordPress</title>
		<link>http://www.willyun.com/webmatrix-wordpress.html</link>
		<comments>http://www.willyun.com/webmatrix-wordpress.html#comments</comments>
		<pubDate>Sun, 08 Jan 2012 06:18:19 +0000</pubDate>
		<dc:creator>willyun</dc:creator>
				<category><![CDATA[弄网日志]]></category>
		<category><![CDATA[iis]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[webmatrix]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.willyun.com/?p=22613</guid>
		<description><![CDATA[前一段时间，VPS连续几次死机，据机房人说是内存满了。重装了centOS和Directadmin，还是没过多久就挂了。一时心烦，就搜了一下Windows+Wordpress，没想到找到了微软出品的WebMatrix平台。微软官方的介绍是这样的： WebMatrix 是微软最新的 Web 开发工具，它包含了构建网站所需要的一切元素。您可以从开源 Web 项目或者内置的 Web 模板开始，也可以直接从无到有编写代码。简单并且完全是免费的。开发网站从来没有如此简单。 看起来微软把从苹果身上学到的应用商店策略运用到了网络服务上来。WebMatrix就是一个网站程序的应用市场，目前里面已经有了66个应用，包括WordPress、Joomla!等各种开源网站程序，甚至还有国内的discuz！、phpcms、dedecms、hdwiki等程序，大部分是原本采用LAMP架构的开源程序。大家都知道，在服务器领域，linux一直以大比分领先windows，WebMatrix会成为windows奋起直追的有力武器吗？不妨拭目以待。本文从使用WebMatrix搭建WordPress的角度来体验一把这个新平台的魅力。 一、一键安装WordPress 微软把复杂的网站构建步骤简化到了一键的地步，你只需要在这个页面http://www.microsoft.com/web/wordpress点击“即刻安装”，然后一路“下一步”，就可以完成整个网站搭建。呈现给用户的虽然简单，但电脑进行了很多步骤的操作，加上国内连接国外服务器的龟速原因，整个安装持续了一个下午。在这个冷风飕飕的下午，电脑上发生了这些事情： 1.下载Web平台安装程序3.0并启动 2.安装Microsoft WebMatrix、IIS7、Web部署工具2.1、Microsoft.net Framework 4、SQL Server Express 2008、ASP.NET网页、ASP.NET网页语言包、Microsoft SQL Server Compact 4.0工具、Windows PowerShell 2.0 3.安装PHP 5.2.17 For WebMatrix、MySQL Windows 5.1 4.安装WordPress（此步骤需要填写网站名、建立数据库账户） 就这样，WordPress在我的Windows7上安装成功了，回想刚接触WordPress时，想在电脑上学习一下，还得用XAMPP先搭建框架，而且兼容性又不怎么好，真是感慨呀。 二、WebMatrix上的WordPress WebMatrix上的网站管理界面是这样的： 一个网站刚刚建立时，会自动生成一个类似这样的地址：http://localhost:17948/，端口号是随机的五位数，这个地址可以在设置里面更改为自己的域名。 WebMatrix平台集成了代码编辑器，类似于Notepad++。 数据库管理页面可以对网站的MySQL数据库的表进行编辑，但是似乎无法进行数据的导入导出。 可以生成报告，对网站的运行状态进行跟踪分析。 三、与MySQL的协作不够和谐 使用应用程序库里的程序新建网站时，同时可以很方便的建立MySQL数据库，但是使用文件夹新建网站时，并不会出现建立数据库的选项，需要到WebMatrix的数据库选项卡里面去新建连接。这个数据库管理面板里可以新建SQL Server的数据库，但是WordPress是无法使用的（注：微软网站上另有一个叫做“WordPress 与 SQL Server（测试版）”的WordPress版本，暂不讨论）。 新建连接不是新建MySQL数据库，而是新建一个到已有MySQL数据库的连接，所以就必须先创建一个MySQL数据库。这个操作无法在WebMatrix中进行，也没有phpMyAdmin可以用，只能在命令行中进行。而且连接上之后，还需要手工修改wp-config.php里的数据库连接数据，因此，这个所谓“连接”其实名不符实，只要wp-config.php里的数据正确，连不连接都无所谓。这个“连接”唯一的作用就是可以在WebMatrix中直接对数据库的表进行编辑。 当然，从linux转移过来的人用命令行来操作MySQL数据库应该没有什么问题，但是微软这个WebMatrix显然是为不喜欢命令行的人准备的，如果能把MySQL的管理整合到WebMatrix中，这个平台也许能吸引更多建站者使用。 万能的WordPress 使用了WordPress两年之后，我有一种感慨：“只有你想不到，没有WordPress做不到”。无数的开发者为WordPress开发了涉及方方面面的插件。针对现在面临的这个MySQL数据库操作不便的问题，我也找到了一个插件：Portable phpMyAdmin，在WordPress后台实现了phpMyAdmin的功能，除了新建数据库做不到之外，编辑、导入、导出都可以实现。 四、IIS6.0的伪静态问题 在Windows server 2008和Windows 7中可以安装IIS7，在IIS7环境下，WordPress的伪静态就像在apache中一样方便，只需要在后台固定链接选项里设置好，就会自动生成一个叫做“web.config”的文件，各种伪静态都完美支持。 [...]<table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="5"><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="在wordpress上调用另一个网站的feed" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.willyun.com%2Fcalled-feed-wordpress.html&from=http%3A%2F%2Fwww.willyun.com%2Fwebmatrix-wordpress.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2011/09/22/6108936.jpg" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">在wordpress上调用另一个网站的feed</font>
                    </a>
                </td>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="用Google自定义搜索代替wordpress默认搜索" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.willyun.com%2Fgoogle-custom-search.html&from=http%3A%2F%2Fwww.willyun.com%2Fwebmatrix-wordpress.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2011/09/22/459712.gif" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">用Google自定义搜索代替wordpress默认搜索</font>
                    </a>
                </td>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="以祖国花朵之名" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.willyun.com%2Fflowers-motherland.html&from=http%3A%2F%2Fwww.willyun.com%2Fwebmatrix-wordpress.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2010/10/22/423513.gif" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">以祖国花朵之名</font>
                    </a>
                </td>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="过去" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.willyun.com%2Fpast.html&from=http%3A%2F%2Fwww.willyun.com%2Fwebmatrix-wordpress.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2011/09/22/423509.jpg" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">过去</font>
                    </a>
                </td>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="对自然保持敬畏之心" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.willyun.com%2Fawe-nature.html&from=http%3A%2F%2Fwww.willyun.com%2Fwebmatrix-wordpress.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2011/09/22/423499.jpg" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">对自然保持敬畏之心</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p>前一段时间，VPS连续几次死机，据机房人说是内存满了。重装了centOS和Directadmin，还是没过多久就挂了。一时心烦，就搜了一下Windows+Wordpress，没想到找到了微软出品的WebMatrix平台。微软官方的介绍是这样的：</p>
<blockquote><p>WebMatrix 是微软最新的 Web 开发工具，它包含了构建网站所需要的一切元素。您可以从开源 Web 项目或者内置的 Web 模板开始，也可以直接从无到有编写代码。简单并且完全是免费的。开发网站从来没有如此简单。</p></blockquote>
<p>看起来微软把从苹果身上学到的应用商店策略运用到了网络服务上来。WebMatrix就是一个网站程序的应用市场，目前里面已经有了66个应用，包括WordPress、Joomla!等各种开源网站程序，甚至还有国内的discuz！、phpcms、dedecms、hdwiki等程序，大部分是原本采用LAMP架构的开源程序。大家都知道，在服务器领域，linux一直以大比分领先windows，WebMatrix会成为windows奋起直追的有力武器吗？不妨拭目以待。本文从使用WebMatrix搭建WordPress的角度来体验一把这个新平台的魅力。</p>
<p><img title="WebMatrix-Start" src="https://lh5.googleusercontent.com/-e2WM42pHVUU/Twkwz8Psp9I/AAAAAAAAAcU/HbGnaDKFoes/s853/WebMatrix-Start.PNG" alt="WebMatrix-Start" /><span id="more-22613"></span></p>
<h2>一、一键安装WordPress</h2>
<p>微软把复杂的网站构建步骤简化到了一键的地步，你只需要在这个页面<a href="http://www.microsoft.com/web/wordpress">http://www.microsoft.com/web/wordpress</a>点击“即刻安装”，然后一路“下一步”，就可以完成整个网站搭建。呈现给用户的虽然简单，但电脑进行了很多步骤的操作，加上国内连接国外服务器的龟速原因，整个安装持续了一个下午。在这个冷风飕飕的下午，电脑上发生了这些事情：</p>
<p>1.下载Web平台安装程序3.0并启动</p>
<p>2.安装Microsoft WebMatrix、IIS7、Web部署工具2.1、Microsoft.net Framework 4、SQL Server Express 2008、ASP.NET网页、ASP.NET网页语言包、Microsoft SQL Server Compact 4.0工具、Windows PowerShell 2.0</p>
<p>3.安装PHP 5.2.17 For WebMatrix、MySQL Windows 5.1</p>
<p>4.安装WordPress（此步骤需要填写网站名、建立数据库账户）</p>
<p>就这样，WordPress在我的Windows7上安装成功了，回想刚接触WordPress时，想在电脑上学习一下，还得用XAMPP先搭建框架，而且兼容性又不怎么好，真是感慨呀。</p>
<h2>二、WebMatrix上的WordPress</h2>
<p>WebMatrix上的网站管理界面是这样的：</p>
<p><img title="WebMatrix-Web" src="https://lh5.googleusercontent.com/-QR88JN1v-wc/Twkwz4U8vuI/AAAAAAAAAcM/WWXpHZRwQBg/s912/WebMatrix-Web.png" alt="WebMatrix-Web" /></p>
<p>一个网站刚刚建立时，会自动生成一个类似这样的地址：http://localhost:17948/，端口号是随机的五位数，这个地址可以在设置里面更改为自己的域名。</p>
<p><img title="WebMatrix-Settings" src="https://lh4.googleusercontent.com/-e7ryd9Jz4rs/Twkwz0YXCoI/AAAAAAAAAcQ/8hhvkAdo8Hw/s912/WebMatrix-Settings.png" alt="WebMatrix-Settings" /></p>
<p>WebMatrix平台集成了代码编辑器，类似于Notepad++。</p>
<p><img title="WebMatrix-edit" src="https://lh6.googleusercontent.com/-6ITVn4FYjkM/Twkw2KcAqeI/AAAAAAAAAco/tw9HxEaNh_4/s912/WebMatrix-edit.png" alt="WebMatrix-edit" /></p>
<p>数据库管理页面可以对网站的MySQL数据库的表进行编辑，但是似乎无法进行数据的导入导出。</p>
<p><img title="WebMatrix-date" src="https://lh3.googleusercontent.com/-NLiWQaFOWc8/Twkw2PWVa8I/AAAAAAAAAck/TWOfSusHQ78/s912/WebMatrix-date.PNG" alt="WebMatrix-date" /></p>
<p>可以生成报告，对网站的运行状态进行跟踪分析。</p>
<p><img title="WebMatrix-Report" src="https://lh4.googleusercontent.com/-bZ7vDTFvpTs/Twkw2Pe69EI/AAAAAAAAAcs/FO6tU49Mz9c/s912/WebMatrix-Report.PNG" alt="WebMatrix-Report" /></p>
<h2>三、与MySQL的协作不够和谐</h2>
<p>使用应用程序库里的程序新建网站时，同时可以很方便的建立MySQL数据库，但是使用文件夹新建网站时，并不会出现建立数据库的选项，需要到WebMatrix的数据库选项卡里面去新建连接。这个数据库管理面板里可以新建SQL Server的数据库，但是WordPress是无法使用的（注：微软网站上另有一个叫做“WordPress 与 SQL Server（测试版）”的WordPress版本，暂不讨论）。</p>
<p>新建连接不是新建MySQL数据库，而是新建一个到已有MySQL数据库的连接，所以就必须先创建一个MySQL数据库。这个操作无法在WebMatrix中进行，也没有phpMyAdmin可以用，只能在命令行中进行。而且连接上之后，还需要手工修改wp-config.php里的数据库连接数据，因此，这个所谓“连接”其实名不符实，只要wp-config.php里的数据正确，连不连接都无所谓。这个“连接”唯一的作用就是可以在WebMatrix中直接对数据库的表进行编辑。</p>
<p>当然，从linux转移过来的人用命令行来操作MySQL数据库应该没有什么问题，但是微软这个WebMatrix显然是为不喜欢命令行的人准备的，如果能把MySQL的管理整合到WebMatrix中，这个平台也许能吸引更多建站者使用。</p>
<h3>万能的WordPress</h3>
<p>使用了WordPress两年之后，我有一种感慨：“只有你想不到，没有WordPress做不到”。无数的开发者为WordPress开发了涉及方方面面的插件。针对现在面临的这个MySQL数据库操作不便的问题，我也找到了一个插件：<a href="http://wordpress.org/extend/plugins/portable-phpmyadmin/" target="_blank">Portable phpMyAdmin</a>，在WordPress后台实现了phpMyAdmin的功能，除了新建数据库做不到之外，编辑、导入、导出都可以实现。</p>
<h2>四、IIS6.0的伪静态问题</h2>
<p>在Windows server 2008和Windows 7中可以安装IIS7，在IIS7环境下，WordPress的伪静态就像在apache中一样方便，只需要在后台固定链接选项里设置好，就会自动生成一个叫做“web.config”的文件，各种伪静态都完美支持。</p>
<p>但是在Windows server 2003的IIS6.0环境下，这个操作不起作用，即使把写好的“web.config”文件放进去，也不能达到伪静态的效果。</p>
<h3>解决方法：WordPress URL Rewrite</h3>
<p>这是一个老外开发的工具，<a href="http://www.binaryfortress.com/wordpress-url-rewrite/" target="_blank">主页在这里</a>。下载了之后，解压到任意文件夹，然后在IIS管理中选择相应的站点，在ISAPI筛选器中加载WordPressURLRewrite32.dll（64位系统加载WordPressURLRewrite64.dll）就可以了。但是貌似是不支持/%postname%.html这样的格式的。</p>
<table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="5"><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="在wordpress上调用另一个网站的feed" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.willyun.com%2Fcalled-feed-wordpress.html&from=http%3A%2F%2Fwww.willyun.com%2Fwebmatrix-wordpress.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2011/09/22/6108936.jpg" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">在wordpress上调用另一个网站的feed</font>
                    </a>
                </td>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="用Google自定义搜索代替wordpress默认搜索" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.willyun.com%2Fgoogle-custom-search.html&from=http%3A%2F%2Fwww.willyun.com%2Fwebmatrix-wordpress.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2011/09/22/459712.gif" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">用Google自定义搜索代替wordpress默认搜索</font>
                    </a>
                </td>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="路上" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.willyun.com%2Fon-the-way.html&from=http%3A%2F%2Fwww.willyun.com%2Fwebmatrix-wordpress.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2011/09/22/423487.jpg" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">路上</font>
                    </a>
                </td>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="游泳游出孩子来" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.willyun.com%2Fswiming-baby.html&from=http%3A%2F%2Fwww.willyun.com%2Fwebmatrix-wordpress.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2010/09/29/423501.jpg" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">游泳游出孩子来</font>
                    </a>
                </td>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="跨越" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.willyun.com%2Facross.html&from=http%3A%2F%2Fwww.willyun.com%2Fwebmatrix-wordpress.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2011/09/22/423500.jpg" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">跨越</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.willyun.com/webmatrix-wordpress.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Android玩机笔记（一）：购机</title>
		<link>http://www.willyun.com/android-phone-buy.html</link>
		<comments>http://www.willyun.com/android-phone-buy.html#comments</comments>
		<pubDate>Tue, 11 Oct 2011 07:51:13 +0000</pubDate>
		<dc:creator>willyun</dc:creator>
				<category><![CDATA[弄网日志]]></category>
		<category><![CDATA[android]]></category>

		<guid isPermaLink="false">http://www.willyun.com/?p=22589</guid>
		<description><![CDATA[自从6月份购进一款中兴Blade手机，咱也算正式跨入Android玩机一族。之前关注了很久，也听过了太多苹果与机器人的传说。玩机5个月，也有一些经验和感悟，记录在此以供备忘，同时，若能提供给各位基友机友或准机友一些参考价值，亦不胜荣幸。 硬件 相比于iPhone的强调整体体验弱化技术指标而言，众多的android制造商们拼的主要就是硬件，品牌反而被弱化了。就我自己而言，我并不看重品牌，一线二线无所谓，只要不是山寨就OK。我所注重的是性价比。当然，这是因为我是个穷人。对数字不敏感的朋友们就没有必要这样麻烦了，直接挑最贵的就好了。手机最重要的技术指标主要是这么几项： 1.CPU与GPU 与PC不同，手机处理器的CPU与GPU是集成在一起的。虽然把处理器列在第一位，但我不认为处理器是最重要的参数，除非你天天拿手机玩大型游戏。目前android手机所用的处理器大部分频率都是600Mhz以上，基本上是够用的。当然，现在双核1Ghz以上越来越多，所以这玩意其实是没有尽头的，还是那句话，够用就好。 2.RAM与ROM 拿PC来类比，RAM就是内存，ROM就是硬盘。两者当然都是越大越好，但预算有限的情况下，建议把RAM放在第一位。比如两款手机，一款RAM和ROM都是512M，另一款RAM是256M，ROM是2G，我会选择前者。 3.屏幕 屏幕的参数有很多，首先选择电阻还是电容，个人建议电阻屏可以直接忽略了，这也是我之所以等了这么久才买android的原因之一。之前试用过同事的诺基亚5230，触摸的感觉实在太差了。然后是屏幕的材质，TFT、AMOLED、IPS等等，这个倒是不必纠结，我亲身使用过的感觉是，其实TFT挺好，当然，也可能是咱没用过好的，呵呵。中低端的主要是TFT居多。屏幕最重要的是分辨率，主要有这么几种：320*240，480*320，640*480，800*480，对于android这种主要是触摸操作的手机系统而言，大屏+高分辨率玩起来才爽，所以我的意见是，800*480以下不必考虑，恩，这是我之所以等了这么久才买android的原因之二。至于第三个原因，也是最重要的原因，就是预算有限，哈哈。 4.其它 除此之外，入手之前，最好也看一看这些参数，以作比较之用：相机像素，高点更好；电池容量，越大越好；手机厚度，薄点更爽；品牌口碑，可做参考；GPS、重力感应、光线感应等传感器是否齐全。 软件 其实对于咱们玩机者来说，手机安装的哪个版本的系统，预装了多少种软件，根本是无所谓的，因为我们拿到手之后就要刷机啦。最多到安卓、机锋等论坛上看看是不是热门机型，有没有很多大牛给咱做固件，当然，最适合的固件是需要自己来做的，这是达到一定境界之后的事情了。软件问题购买之前不必考虑太多，入手之后再来慢慢摸索。 目前最具性价比机型推荐 推荐时间：2011年10月 千元最强：中兴Blade 从去年年中到今年6月，千元左右最强机一直非中兴Blade莫属。首先在英国推出，RAM为512M，最早一批甚至采用了AMOLED屏，当然，那时候卖到1500。后来屏幕换成了TFT，联通版行货V880又把RAM阉掉一半剩了256M。6月份之后，中兴又连续推出了移动和电信版的U880和N880，RAM均提升到512M，相机像素提升到500万，移动的主频为800Mhz，电信则采用了AMOLED屏；移动还支持CMMB。鉴于电信版不支持GSM卡，所以事实上U880已经成了目前的NO.1。这点可以看一下安卓论坛上每日帖数最高的专区最近一直为U880所占据就知道了。U880目前价格900元左右。 两千元：小米手机 小米手机还没正式发售，但1.5Ghz双核+1GRAM+1999元的价格已经引爆了30万的预订量。预算略多的发烧友们可以考虑入手此两千元最强机了。 扩展阅读 1.关于智能手机CPU、GPU和架构的详解。 2.解析主流手机的屏幕材质。<table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="5"><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="蛋疼的chrome to phone安装使用过程" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.willyun.com%2Feggache-chrome-to-phone.html&from=http%3A%2F%2Fwww.willyun.com%2Fandroid-phone-buy.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2011/07/29/19531902.png" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">蛋疼的chrome to phone安装使用过程</font>
                    </a>
                </td>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="穿绿旗袍的姑娘" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.willyun.com%2Fgreen-cheongsam-girl.html&from=http%3A%2F%2Fwww.willyun.com%2Fandroid-phone-buy.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2011/09/22/423511.jpg" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">穿绿旗袍的姑娘</font>
                    </a>
                </td>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="是我们太挑剔，还是他们太随便" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.willyun.com%2Ftiaoti-suibian.html&from=http%3A%2F%2Fwww.willyun.com%2Fandroid-phone-buy.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2011/09/22/5956832.jpg" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">是我们太挑剔，还是他们太随便</font>
                    </a>
                </td>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="路上" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.willyun.com%2Fon-the-way.html&from=http%3A%2F%2Fwww.willyun.com%2Fandroid-phone-buy.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2011/09/22/423487.jpg" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">路上</font>
                    </a>
                </td>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="用相关文章连通整个互联网(附送无觅网络邀请)" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.willyun.com%2Fwumii-network-related.html&from=http%3A%2F%2Fwww.willyun.com%2Fandroid-phone-buy.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2011/09/22/2148434.jpg" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">用相关文章连通整个互联网(附送无觅网络邀请)</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p>自从6月份购进一款中兴Blade手机，咱也算正式跨入Android玩机一族。之前关注了很久，也听过了太多苹果与机器人的传说。玩机5个月，也有一些经验和感悟，记录在此以供备忘，同时，若能提供给各位<del>基友</del>机友或准机友一些参考价值，亦不胜荣幸。</p>
<p><img title="android" src="https://lh5.googleusercontent.com/-4mPVwrDPbE8/TpKSOz9z7KI/AAAAAAAAAXI/kAPsTR9TiYg/s600/android-google.jpg" alt="android"  /><span id="more-22589"></span></p>
<h2>硬件</h2>
<p>相比于iPhone的强调整体体验弱化技术指标而言，众多的android制造商们拼的主要就是硬件，品牌反而被弱化了。就我自己而言，我并不看重品牌，一线二线无所谓，只要不是山寨就OK。我所注重的是性价比。当然，这是因为我是个穷人。对数字不敏感的朋友们就没有必要这样麻烦了，直接挑最贵的就好了。手机最重要的技术指标主要是这么几项：</p>
<h3>1.CPU与GPU</h3>
<p>与PC不同，手机处理器的CPU与GPU是集成在一起的。虽然把处理器列在第一位，但我不认为处理器是最重要的参数，除非你天天拿手机玩大型游戏。目前android手机所用的处理器大部分频率都是600Mhz以上，基本上是够用的。当然，现在双核1Ghz以上越来越多，所以这玩意其实是没有尽头的，还是那句话，够用就好。</p>
<h3>2.RAM与ROM</h3>
<p>拿PC来类比，RAM就是内存，ROM就是硬盘。两者当然都是越大越好，但预算有限的情况下，建议把RAM放在第一位。比如两款手机，一款RAM和ROM都是512M，另一款RAM是256M，ROM是2G，我会选择前者。</p>
<h3>3.屏幕</h3>
<p>屏幕的参数有很多，首先选择电阻还是电容，个人建议电阻屏可以直接忽略了，这也是我之所以等了这么久才买android的原因之一。之前试用过同事的诺基亚5230，触摸的感觉实在太差了。然后是屏幕的材质，TFT、AMOLED、IPS等等，这个倒是不必纠结，我亲身使用过的感觉是，其实TFT挺好，当然，也可能是咱没用过好的，呵呵。中低端的主要是TFT居多。屏幕最重要的是分辨率，主要有这么几种：320*240，480*320，640*480，800*480，对于android这种主要是触摸操作的手机系统而言，大屏+高分辨率玩起来才爽，所以我的意见是，800*480以下不必考虑，恩，这是我之所以等了这么久才买android的原因之二。至于第三个原因，也是最重要的原因，就是预算有限，哈哈。</p>
<h3>4.其它</h3>
<p>除此之外，入手之前，最好也看一看这些参数，以作比较之用：相机像素，高点更好；电池容量，越大越好；手机厚度，薄点更爽；品牌口碑，可做参考；GPS、重力感应、光线感应等传感器是否齐全。</p>
<h2>软件</h2>
<p>其实对于咱们玩机者来说，手机安装的哪个版本的系统，预装了多少种软件，根本是无所谓的，因为我们拿到手之后就要刷机啦。最多到安卓、机锋等论坛上看看是不是热门机型，有没有很多大牛给咱做固件，当然，最适合的固件是需要自己来做的，这是达到一定境界之后的事情了。软件问题购买之前不必考虑太多，入手之后再来慢慢摸索。</p>
<h2>目前最具性价比机型推荐</h2>
<p>推荐时间：2011年10月</p>
<h3>千元最强：中兴Blade</h3>
<p>从去年年中到今年6月，千元左右最强机一直非中兴Blade莫属。首先在英国推出，RAM为512M，最早一批甚至采用了AMOLED屏，当然，那时候卖到1500。后来屏幕换成了TFT，联通版行货V880又把RAM阉掉一半剩了256M。6月份之后，中兴又连续推出了移动和电信版的U880和N880，RAM均提升到512M，相机像素提升到500万，移动的主频为800Mhz，电信则采用了AMOLED屏；移动还支持CMMB。鉴于电信版不支持GSM卡，所以事实上U880已经成了目前的NO.1。这点可以看一下安卓论坛上每日帖数最高的专区最近一直为U880所占据就知道了。U880目前价格900元左右。</p>
<p><img class="alignnone" title="zte blade" src="https://lh3.googleusercontent.com/-KraJBe-vFto/TpPxw3igO7I/AAAAAAAAAXg/Hpwsgs_rrro/s512/orange-san-francisco-zte-blade.jpg" alt="zte blade"  /></p>
<h3>两千元：小米手机</h3>
<p>小米手机还没正式发售，但1.5Ghz双核+1GRAM+1999元的价格已经引爆了30万的预订量。预算略多的发烧友们可以考虑入手此两千元最强机了。</p>
<p><img class="alignnone" title="xiaomi" src="https://lh4.googleusercontent.com/-RziMT6PeN_s/TpPxlYnf4JI/AAAAAAAAAXY/cZ3HeHj439Q/s512/mione.jpg" alt="xiaomi"  /></p>
<h2>扩展阅读</h2>
<p>1.<a title="关于智能手机CPU、GPU和架构的详解 " href="http://tony496.blog.163.com/blog/static/7449014820101026101259886/" target="_blank">关于智能手机CPU、GPU和架构的详解</a>。</p>
<p>2.<a title="解析主流手机的屏幕材质" href="http://mobile.yesky.com/75/30162075.shtml" target="_blank">解析主流手机的屏幕材质</a>。</p>
<table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="4"><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="蛋疼的chrome to phone安装使用过程" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.willyun.com%2Feggache-chrome-to-phone.html&from=http%3A%2F%2Fwww.willyun.com%2Fandroid-phone-buy.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2011/07/29/19531902.png" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">蛋疼的chrome to phone安装使用过程</font>
                    </a>
                </td>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="递进式税率问题" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.willyun.com%2Fprogressive-tax-rates.html&from=http%3A%2F%2Fwww.willyun.com%2Fandroid-phone-buy.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2011/09/22/423498.jpg" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">递进式税率问题</font>
                    </a>
                </td>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="天使奥黛丽" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.willyun.com%2Faudrey-angel.html&from=http%3A%2F%2Fwww.willyun.com%2Fandroid-phone-buy.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2010/10/02/423508.jpg" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">天使奥黛丽</font>
                    </a>
                </td>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="穿绿旗袍的姑娘" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.willyun.com%2Fgreen-cheongsam-girl.html&from=http%3A%2F%2Fwww.willyun.com%2Fandroid-phone-buy.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2011/09/22/423511.jpg" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">穿绿旗袍的姑娘</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="4" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.willyun.com/android-phone-buy.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>蛋疼的chrome to phone安装使用过程</title>
		<link>http://www.willyun.com/eggache-chrome-to-phone.html</link>
		<comments>http://www.willyun.com/eggache-chrome-to-phone.html#comments</comments>
		<pubDate>Thu, 28 Jul 2011 09:13:28 +0000</pubDate>
		<dc:creator>willyun</dc:creator>
				<category><![CDATA[弄网日志]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[chrome]]></category>
		<category><![CDATA[蛋疼]]></category>

		<guid isPermaLink="false">http://www.willyun.com/?p=22562</guid>
		<description><![CDATA[首先要说明，这个蛋疼的感觉只有幸福的天朝人民才能感受得到。 一个月前开始使用android，前几天看到了这个叫做“chrome to phone”的插件和应用。功能很简单：在chrome中点击一下就可以把网址链接发送到手机上。但是太他妈有用了。比如，上网的时候看到一篇好文章，但是太长，点一下，就可以把网址发到手机上，晚上接着看；或者，上班的时候看到一组好图片，但是不适合在办公室里看（你懂的），也可以点一下，下班再看；又或者，在网上看到了好应用，又不是market里的，无法推送，就可以点一下，直接用手机打开下载。如果这些链接是youtube网址或者google map地址，还会直接调用相应应用打开。 听起来是不是很爽？好，现在开始蛋疼的安装之旅。 首先安装chrome插件，这个很顺利。 然后点击登录，跳出来一个页面，只有一个单词“Redirecting&#8230;”，如果你不关闭，它能Redirecting一百年。好吧，咱爬梯子，即使爬了梯子，能不能连上也是有概率的，试了几次之后，终于成功连接。 然后安装android应用，在android market里搜索“chrome to phone”，结果出来了一堆这些鸟玩意 用插件页面提供的QR码，扫出来打开显示“找不到所需的产品”，又到market里找啊找，终于在phone to chrome页面的相关应用里，找到了“chrome to phone”，结果呢？无法在您的设备所在的国家/地区安装此商品! 最后终于在应用汇里下载安装了chrome to phone。老子用Google的手机系统装个google开发的应用，还要到第三方应用市场去装，介尼玛不是蛋疼是什么？ 然后手机上果然也是无法连接，好吧，上vpn，终于连上。 最后终于用上了，还有蛋疼的两点：1.每次使用都要爬梯。2.延迟、丢信息。 这个应用的情况基本可以代表所有国外优秀互联网产品在天朝的遭遇了，总而言之就是两个字：杯具！<table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="5"><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="Android玩机笔记（一）：购机" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.willyun.com%2Fandroid-phone-buy.html&from=http%3A%2F%2Fwww.willyun.com%2Feggache-chrome-to-phone.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2011/10/11/8951777.jpg" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Android玩机笔记（一）：购机</font>
                    </a>
                </td>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="七月二十二：天狗吃太阳" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.willyun.com%2Fjuly-22-sun-eclipse.html&from=http%3A%2F%2Fwww.willyun.com%2Feggache-chrome-to-phone.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2010/09/30/423504.jpg" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">七月二十二：天狗吃太阳</font>
                    </a>
                </td>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="博客广告平台拿福能" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.willyun.com%2Fnuffnang.html&from=http%3A%2F%2Fwww.willyun.com%2Feggache-chrome-to-phone.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2011/09/24/24829061.jpg" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">博客广告平台拿福能</font>
                    </a>
                </td>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="过去" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.willyun.com%2Fpast.html&from=http%3A%2F%2Fwww.willyun.com%2Feggache-chrome-to-phone.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2011/09/22/423509.jpg" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">过去</font>
                    </a>
                </td>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="联通DNS，你又调皮了" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.willyun.com%2Fchinaunicom-dns.html&from=http%3A%2F%2Fwww.willyun.com%2Feggache-chrome-to-phone.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2011/09/22/2026422.jpg" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">联通DNS，你又调皮了</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p>首先要说明，这个蛋疼的感觉只有幸福的天朝人民才能感受得到。</p>
<p>一个月前开始使用android，前几天看到了这个叫做“chrome to phone”的插件和应用。功能很简单：在chrome中点击一下就可以把网址链接发送到手机上。但是太他妈有用了。比如，上网的时候看到一篇好文章，但是太长，点一下，就可以把网址发到手机上，晚上接着看；或者，上班的时候看到一组好图片，但是不适合在办公室里看（你懂的），也可以点一下，下班再看；又或者，在网上看到了好应用，又不是market里的，无法推送，就可以点一下，直接用手机打开下载。如果这些链接是youtube网址或者google map地址，还会直接调用相应应用打开。</p>
<p>听起来是不是很爽？好，现在开始蛋疼的安装之旅。<span id="more-22562"></span></p>
<p>首先安装chrome插件，这个很顺利。</p>
<p>然后点击登录，跳出来一个页面，只有一个单词“Redirecting&#8230;”，如果你不关闭，它能Redirecting一百年。好吧，咱爬梯子，即使爬了梯子，能不能连上也是有概率的，试了几次之后，终于成功连接。</p>
<p>然后安装android应用，在android market里搜索“chrome to phone”，结果出来了一堆这些鸟玩意</p>
<p><img title="android market" src="https://lh5.googleusercontent.com/-__vHbqM18fs/TjEfwt6sNEI/AAAAAAAAAQs/Q3g0YJYgYOY/s912/20110728163652.png" alt=""  /></p>
<p>用插件页面提供的QR码，扫出来打开显示“找不到所需的产品”，又到market里找啊找，终于在phone to chrome页面的相关应用里，找到了“chrome to phone”，结果呢？无法在您的设备所在的国家/地区安装此商品!</p>
<p><img class="alignnone" title="android market" src="https://lh4.googleusercontent.com/-dx4Ws2cJ-DI/TjEiJFy8FLI/AAAAAAAAAQ4/X_zsXu-ulzk/s385/20110728164700.png" alt=""  /></p>
<p>最后终于在应用汇里下载安装了chrome to phone。老子用Google的手机系统装个google开发的应用，还要到第三方应用市场去装，介尼玛不是蛋疼是什么？</p>
<p>然后手机上果然也是无法连接，好吧，上vpn，终于连上。</p>
<p>最后终于用上了，还有蛋疼的两点：1.每次使用都要爬梯。2.延迟、丢信息。</p>
<p>这个应用的情况基本可以代表所有国外优秀互联网产品在天朝的遭遇了，总而言之就是两个字：杯具！</p>
<table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="5"><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="Android玩机笔记（一）：购机" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.willyun.com%2Fandroid-phone-buy.html&from=http%3A%2F%2Fwww.willyun.com%2Feggache-chrome-to-phone.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2011/10/11/8951777.jpg" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Android玩机笔记（一）：购机</font>
                    </a>
                </td>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="假如青霉素早发明600年" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.willyun.com%2Fpenicillin-600-years.html&from=http%3A%2F%2Fwww.willyun.com%2Feggache-chrome-to-phone.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2010/10/02/423514.jpg" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">假如青霉素早发明600年</font>
                    </a>
                </td>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="联通DNS，你又调皮了" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.willyun.com%2Fchinaunicom-dns.html&from=http%3A%2F%2Fwww.willyun.com%2Feggache-chrome-to-phone.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2011/09/22/2026422.jpg" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">联通DNS，你又调皮了</font>
                    </a>
                </td>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="做贼的境界" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.willyun.com%2Frealm-thieves.html&from=http%3A%2F%2Fwww.willyun.com%2Feggache-chrome-to-phone.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2011/09/22/423510.jpg" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">做贼的境界</font>
                    </a>
                </td>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="用相关文章连通整个互联网(附送无觅网络邀请)" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.willyun.com%2Fwumii-network-related.html&from=http%3A%2F%2Fwww.willyun.com%2Feggache-chrome-to-phone.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2011/09/22/2148434.jpg" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">用相关文章连通整个互联网(附送无觅网络邀请)</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.willyun.com/eggache-chrome-to-phone.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>博客广告平台拿福能</title>
		<link>http://www.willyun.com/nuffnang.html</link>
		<comments>http://www.willyun.com/nuffnang.html#comments</comments>
		<pubDate>Tue, 24 May 2011 04:01:45 +0000</pubDate>
		<dc:creator>willyun</dc:creator>
				<category><![CDATA[弄网日志]]></category>
		<category><![CDATA[博客]]></category>
		<category><![CDATA[广告]]></category>
		<category><![CDATA[拿福能]]></category>

		<guid isPermaLink="false">http://www.willyun.com/?p=22545</guid>
		<description><![CDATA[众所周知，在中国，活得更好的是百度和郭敬明，而不是google和韩寒，这是一块劣币驱逐良币的神奇土地。而在数目繁多的中小网站中，也有类似的两个群体：独立博客和垃圾网站。作为一名独立博客的博主，4年以来，我写过若干个博客，有个人博客，有专业博客，而通过原创或者翻译的方式写文章，很显然数量不会很大。而你辛辛苦苦写就的文章，别人只需轻点鼠标，就轻而易举的收入自己囊下。这些人就是垃圾网站的站长，同时也是整个互联网垃圾内容的制造者。付出劳动者是我们，赚钱者却是他们。因此，我逐渐关闭了各个博客，只保留了这个个人博客，偶尔上来说几句。 今天想说的是这个叫做“拿福能”的博客广告平台，她刚刚来到中国，雄心勃勃，预备重振博客广告市场。与其他广告联盟不同的是，他只针对博客博主，而且很显然，他的重点并非网页上的广告位，而是每个博主所写的文章。而如果博主们能通过拿福能真正体现自己博客的价值，体现出不同于浏览数、点击数之类，而是基于信任的口碑价值，那我觉得，这事真的有搞头。 因此，假如你是一名独立博客的博主，不要拒绝了解一样新鲜事物，来看看拿福能正在进行的“千人挑战”活动吧： http://www.nuffnang.com.cn/blog/2011/05/23/challenge-1000<table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="4"><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="递进式税率问题" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.willyun.com%2Fprogressive-tax-rates.html&from=http%3A%2F%2Fwww.willyun.com%2Fnuffnang.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2011/09/22/423498.jpg" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">递进式税率问题</font>
                    </a>
                </td>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="穿绿旗袍的姑娘" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.willyun.com%2Fgreen-cheongsam-girl.html&from=http%3A%2F%2Fwww.willyun.com%2Fnuffnang.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2011/09/22/423511.jpg" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">穿绿旗袍的姑娘</font>
                    </a>
                </td>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="用Google自定义搜索代替wordpress默认搜索" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.willyun.com%2Fgoogle-custom-search.html&from=http%3A%2F%2Fwww.willyun.com%2Fnuffnang.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2011/09/22/459712.gif" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">用Google自定义搜索代替wordpress默认搜索</font>
                    </a>
                </td>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="仰视45°现象" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.willyun.com%2Flooking-up-45.html&from=http%3A%2F%2Fwww.willyun.com%2Fnuffnang.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2010/09/30/423516.jpg" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">仰视45°现象</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="4" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">众所周知，在中国，活得更好的是百度和郭敬明，而不是google和韩寒，这是一块劣币驱逐良币的神奇土地。而在数目繁多的中小网站中，也有类似的两个群体：独立博客和垃圾网站。作为一名独立博客的博主，4年以来，我写过若干个博客，有个人博客，有专业博客，而通过原创或者翻译的方式写文章，很显然数量不会很大。而你辛辛苦苦写就的文章，别人只需轻点鼠标，就轻而易举的收入自己囊下。这些人就是垃圾网站的站长，同时也是整个互联网垃圾内容的制造者。付出劳动者是我们，赚钱者却是他们。因此，我逐渐关闭了各个博客，只保留了这个个人博客，偶尔上来说几句。<span id="more-22545"></span></p>
<p>今天想说的是这个叫做“拿福能”的博客广告平台，她刚刚来到中国，雄心勃勃，预备重振博客广告市场。与其他广告联盟不同的是，他只针对博客博主，而且很显然，他的重点并非网页上的广告位，而是每个博主所写的文章。而如果博主们能通过拿福能真正体现自己博客的价值，体现出不同于浏览数、点击数之类，而是基于信任的口碑价值，那我觉得，这事真的有搞头。</p>
<p>因此，假如你是一名独立博客的博主，不要拒绝了解一样新鲜事物，来看看拿福能正在进行的“千人挑战”活动吧：</p>
<p><a href="http://www.nuffnang.com.cn/blog/2011/05/23/challenge-1000" target="_blank">http://www.nuffnang.com.cn/blog/2011/05/23/challenge-1000</a></p>
<p style="text-align: center;"><img class="aligncenter" title="拿福能" src="http://www.nuffnang.com.cn/wp-content/uploads/2011/05/C1000.jpg" alt="拿福能" /></p>
<table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="5"><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="假如青霉素早发明600年" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.willyun.com%2Fpenicillin-600-years.html&from=http%3A%2F%2Fwww.willyun.com%2Fnuffnang.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2010/10/02/423514.jpg" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">假如青霉素早发明600年</font>
                    </a>
                </td>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="是我们太挑剔，还是他们太随便" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.willyun.com%2Ftiaoti-suibian.html&from=http%3A%2F%2Fwww.willyun.com%2Fnuffnang.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2011/09/22/5956832.jpg" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">是我们太挑剔，还是他们太随便</font>
                    </a>
                </td>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="路上" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.willyun.com%2Fon-the-way.html&from=http%3A%2F%2Fwww.willyun.com%2Fnuffnang.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2011/09/22/423487.jpg" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">路上</font>
                    </a>
                </td>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="回归" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.willyun.com%2Fregression.html&from=http%3A%2F%2Fwww.willyun.com%2Fnuffnang.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2011/09/22/423496.jpg" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">回归</font>
                    </a>
                </td>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="十年" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.willyun.com%2F10-years.html&from=http%3A%2F%2Fwww.willyun.com%2Fnuffnang.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2011/09/22/423497.jpg" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">十年</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.willyun.com/nuffnang.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>在wordpress上调用另一个网站的feed</title>
		<link>http://www.willyun.com/called-feed-wordpress.html</link>
		<comments>http://www.willyun.com/called-feed-wordpress.html#comments</comments>
		<pubDate>Sat, 21 May 2011 06:13:21 +0000</pubDate>
		<dc:creator>willyun</dc:creator>
				<category><![CDATA[弄网日志]]></category>
		<category><![CDATA[feed]]></category>
		<category><![CDATA[js]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.willyun.com/?p=22539</guid>
		<description><![CDATA[公司有一个企业网站，还有若干个品牌网站，之前所有的资讯需要在每个网站发布一遍，既增加时间成本，同时又造成内容重复。如果把资讯都发布在一个网站上，其他网站只调用标题，无论从节省人工还是搜索优化角度，都是更好的选择。 自从把公司网站换成wordpress架构之后，各种问题解决起来都更简便快捷了。wordpress自身已经带有feed调用功能，在小工具里面有个“RSS”小工具，填上feed地址等信息，就OK了。只可惜网站所在的服务器，设置上可能是有问题，在后台在线查看主题或者插件列表都会出现“API 请求期间发生未预料的 HTTP 错误”。使用这个小工具抓取feed也会出现http错误，因此这个方法只能放弃。 于是google之，找到了一个老外建立的专门把feed转为js的网站：feed2js.org 在该网站的build页面，填入feed地址，有以下选项可以选择： 1.是否显示feed标题 2.显示feed条目数量 3.显示条目标题还是全文还是摘要 4.是否显示作者 5.是否使用原文的格式 6.是否显示文章发布时间及时间格式 7.链接打开方式 8.是否使用utf-8编码 除此之外，还可以自定义CSS。 然后将feed转换为JavaScript，就可以在各种网站进行调用。也可以在download页面将代码下载并上传到你的网站空间里进行使用，速度更快。<table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="5"><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="使用WebMatrix搭建WordPress" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.willyun.com%2Fwebmatrix-wordpress.html&from=http%3A%2F%2Fwww.willyun.com%2Fcalled-feed-wordpress.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2012/01/08/13615477.png" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">使用WebMatrix搭建WordPress</font>
                    </a>
                </td>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="用Google自定义搜索代替wordpress默认搜索" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.willyun.com%2Fgoogle-custom-search.html&from=http%3A%2F%2Fwww.willyun.com%2Fcalled-feed-wordpress.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2011/09/22/459712.gif" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">用Google自定义搜索代替wordpress默认搜索</font>
                    </a>
                </td>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="对自然保持敬畏之心" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.willyun.com%2Fawe-nature.html&from=http%3A%2F%2Fwww.willyun.com%2Fcalled-feed-wordpress.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2011/09/22/423499.jpg" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">对自然保持敬畏之心</font>
                    </a>
                </td>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="路上" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.willyun.com%2Fon-the-way.html&from=http%3A%2F%2Fwww.willyun.com%2Fcalled-feed-wordpress.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2011/09/22/423487.jpg" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">路上</font>
                    </a>
                </td>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="16岁中学生理发染性病的启示" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.willyun.com%2Finfectious-barber.html&from=http%3A%2F%2Fwww.willyun.com%2Fcalled-feed-wordpress.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2010/09/28/423502.jpg" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">16岁中学生理发染性病的启示</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p>公司有一个企业网站，还有若干个品牌网站，之前所有的资讯需要在每个网站发布一遍，既增加时间成本，同时又造成内容重复。如果把资讯都发布在一个网站上，其他网站只调用标题，无论从节省人工还是搜索优化角度，都是更好的选择。</p>
<p>自从把公司网站换成wordpress架构之后，各种问题解决起来都更简便快捷了。wordpress自身已经带有feed调用功能，在小工具里面有个“RSS”小工具，填上feed地址等信息，就OK了。只可惜网站所在的服务器，设置上可能是有问题，在后台在线查看主题或者插件列表都会出现“API 请求期间发生未预料的 HTTP 错误”。使用这个小工具抓取feed也会出现http错误，因此这个方法只能放弃。</p>
<p>于是google之，找到了一个老外建立的专门把feed转为js的网站：<a href="http://feed2js.org/" target="_blank">feed2js.org</a><span id="more-22539"></span></p>
<p>在该网站的build页面，填入feed地址，有以下选项可以选择：</p>
<p>1.是否显示feed标题</p>
<p>2.显示feed条目数量</p>
<p>3.显示条目标题还是全文还是摘要</p>
<p>4.是否显示作者</p>
<p>5.是否使用原文的格式</p>
<p>6.是否显示文章发布时间及时间格式</p>
<p>7.链接打开方式</p>
<p>8.是否使用utf-8编码</p>
<p>除此之外，还可以自定义CSS。</p>
<p>然后将feed转换为JavaScript，就可以在各种网站进行调用。也可以在download页面将代码下载并上传到你的网站空间里进行使用，速度更快。</p>
<table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="5"><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="使用WebMatrix搭建WordPress" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.willyun.com%2Fwebmatrix-wordpress.html&from=http%3A%2F%2Fwww.willyun.com%2Fcalled-feed-wordpress.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2012/01/08/13615477.png" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">使用WebMatrix搭建WordPress</font>
                    </a>
                </td>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="用Google自定义搜索代替wordpress默认搜索" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.willyun.com%2Fgoogle-custom-search.html&from=http%3A%2F%2Fwww.willyun.com%2Fcalled-feed-wordpress.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2011/09/22/459712.gif" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">用Google自定义搜索代替wordpress默认搜索</font>
                    </a>
                </td>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="穿绿旗袍的姑娘" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.willyun.com%2Fgreen-cheongsam-girl.html&from=http%3A%2F%2Fwww.willyun.com%2Fcalled-feed-wordpress.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2011/09/22/423511.jpg" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">穿绿旗袍的姑娘</font>
                    </a>
                </td>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="跨越" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.willyun.com%2Facross.html&from=http%3A%2F%2Fwww.willyun.com%2Fcalled-feed-wordpress.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2011/09/22/423500.jpg" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">跨越</font>
                    </a>
                </td>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="王小波十三年前为Internet in China写下悼文" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.willyun.com%2Fwang-xiaobo-internet.html&from=http%3A%2F%2Fwww.willyun.com%2Fcalled-feed-wordpress.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2011/02/27/2983910.jpg" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">王小波十三年前为Internet in China写下悼文</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.willyun.com/called-feed-wordpress.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>是我们太挑剔，还是他们太随便</title>
		<link>http://www.willyun.com/tiaoti-suibian.html</link>
		<comments>http://www.willyun.com/tiaoti-suibian.html#comments</comments>
		<pubDate>Sat, 02 Apr 2011 02:03:20 +0000</pubDate>
		<dc:creator>willyun</dc:creator>
				<category><![CDATA[弄网日志]]></category>
		<category><![CDATA[用户体验]]></category>

		<guid isPermaLink="false">http://www.willyun.com/?p=22535</guid>
		<description><![CDATA[我刚刚来到这里的时候，大吃了一惊。所有电脑都装着XP，所有人都用着IE6，甚至所有19寸的宽屏电脑都设置着1024*768的分辨率。看着那压扁的文字和图片，感受着打开网页时的龟速，我不禁对他们产生了深深的景仰之情，同时对自己产生了怀疑：难道是我太挑剔了？ 从2008年使用Gmail和Google Reader开始，我逐渐向极客的方向靠拢，整日与google、chrome、twitter、wordpress为伍，看到那些丑陋的网页就浑身不舒服，看到别人还在用着XP+IE6就想给他装chrome，看到他们还用着百度和hao123就想冲上去推荐google。我知道，这是一种病，得电。所以我现在已经有了平常心，不时在心中默念“参差多态乃是幸福本源”，但是看到19寸的宽屏电脑设置1024*768的分辨率，我还是无法淡定了：丫们是如何练就这样的视觉忍耐力的？ 据我所知，在各大门户网站和web2.0网站，都有着一个名叫UED的团队或者部门。UED就是User Experience Design，中文叫做“用户体验设计”， 工作内容就是通过各种努力让用户的体验更好。但是假如用户连图像被压扁都可以忍受，怎么可能察觉你们的那些细微改变呢？如此这般，你们的工作意义何在？ 这时候就涉及到多数和少数的问题了。到底我们是多数？还是他们是多数？这一点大概不需要质疑，看google和百度的份额就知道了，看360的装机量也可以知道，甚至看hao123这个垃圾导航站的流量就可以知道。说到hao123，我就想起我的姐夫来，他的IE首页永远是默认的hao123，假如打开IE，看不到hao123，他就会不知所措，无法上网。他根本就没有搜索和网址的概念。而且，他的年龄只有30出头，他也并不在偏远的乡村或小城镇，我想他可以代表很大一部分人的情况。 所以，抛却那些极客小众，是否可以说，中国其实是没有用户体验的，就像没有版权，没有隐私权一样。 那么这种状况是谁造成的？ 我也曾成功的将某些人从XP+IE6转移到win7+chrome的阵营中来，有时候聊天还会收到他们的抱怨：“新去的那家公司电脑都是XP和IE，用着真他妈不爽”。我觉得这是真实的人性，吃过面包之后谁他妈还愿意吃屎？对不起这个比喻不恰当，大家明白大概意思就行了。这说明并非用户不喜欢更好的体验，或者对好体验和坏体验无所谓，而是他们没有机会尝试到更好的产品。一方面是视野的问题，一方面则是氛围和文化。 假如，twitter是一个存在于现实世界的网站，那么新浪微博的用户就会知道自己的体验有多么差。假如，世界上的各种银行都可以在中国开展业务，那么我们就会明白什么叫做服务。假如，外国电信企业可以给我们的手机开卡，那么移动联通电信的用户都会知道原来打电话和上网可以这么便宜。 为什么这些假如都只是假如呢？ 非不能也，乃不为也。 再说下去，就难免扯到敏感词去了，所以就此打住吧。这一篇文章充满了悲观的调调，忒不和谐了。尽管如此，我还是坚信，未来会更好。为了未来，努力吧。<table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="5"><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="天使奥黛丽" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.willyun.com%2Faudrey-angel.html&from=http%3A%2F%2Fwww.willyun.com%2Ftiaoti-suibian.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2010/10/02/423508.jpg" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">天使奥黛丽</font>
                    </a>
                </td>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="回归" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.willyun.com%2Fregression.html&from=http%3A%2F%2Fwww.willyun.com%2Ftiaoti-suibian.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2011/09/22/423496.jpg" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">回归</font>
                    </a>
                </td>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="用Google自定义搜索代替wordpress默认搜索" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.willyun.com%2Fgoogle-custom-search.html&from=http%3A%2F%2Fwww.willyun.com%2Ftiaoti-suibian.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2011/09/22/459712.gif" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">用Google自定义搜索代替wordpress默认搜索</font>
                    </a>
                </td>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="对自然保持敬畏之心" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.willyun.com%2Fawe-nature.html&from=http%3A%2F%2Fwww.willyun.com%2Ftiaoti-suibian.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2011/09/22/423499.jpg" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">对自然保持敬畏之心</font>
                    </a>
                </td>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="一枚字体导致Photoshop文字显示迟钝" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.willyun.com%2Ffont-photoshop.html&from=http%3A%2F%2Fwww.willyun.com%2Ftiaoti-suibian.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2011/09/22/1096717.jpg" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">一枚字体导致Photoshop文字显示迟钝</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p>我刚刚来到这里的时候，大吃了一惊。所有电脑都装着XP，所有人都用着IE6，甚至所有19寸的宽屏电脑都设置着1024*768的分辨率。看着那压扁的文字和图片，感受着打开网页时的龟速，我不禁对他们产生了深深的景仰之情，同时对自己产生了怀疑：难道是我太挑剔了？</p>
<p>从2008年使用Gmail和Google Reader开始，我逐渐向极客的方向靠拢，整日与google、chrome、twitter、wordpress为伍，看到那些丑陋的网页就浑身不舒服，看到别人还在用着XP+IE6就想给他装chrome，看到他们还用着百度和hao123就想冲上去推荐google。我知道，这是一种病，得电。所以我现在已经有了平常心，不时在心中默念“参差多态乃是幸福本源”，但是看到19寸的宽屏电脑设置1024*768的分辨率，我还是无法淡定了：丫们是如何练就这样的视觉忍耐力的？<span id="more-22535"></span></p>
<p>据我所知，在各大门户网站和web2.0网站，都有着一个名叫UED的团队或者部门。UED就是User Experience Design，中文叫做“用户体验设计”， 工作内容就是通过各种努力让用户的体验更好。但是假如用户连图像被压扁都可以忍受，怎么可能察觉你们的那些细微改变呢？如此这般，你们的工作意义何在？</p>
<p>这时候就涉及到多数和少数的问题了。到底我们是多数？还是他们是多数？这一点大概不需要质疑，看google和百度的份额就知道了，看360的装机量也可以知道，甚至看hao123这个垃圾导航站的流量就可以知道。说到hao123，我就想起我的姐夫来，他的IE首页永远是默认的hao123，假如打开IE，看不到hao123，他就会不知所措，无法上网。他根本就没有搜索和网址的概念。而且，他的年龄只有30出头，他也并不在偏远的乡村或小城镇，我想他可以代表很大一部分人的情况。</p>
<p>所以，抛却那些极客小众，是否可以说，中国其实是没有用户体验的，就像没有版权，没有隐私权一样。</p>
<p>那么这种状况是谁造成的？</p>
<p>我也曾成功的将某些人从XP+IE6转移到win7+chrome的阵营中来，有时候聊天还会收到他们的抱怨：“新去的那家公司电脑都是XP和IE，用着真他妈不爽”。我觉得这是真实的人性，吃过面包之后谁他妈还愿意吃屎？对不起这个比喻不恰当，大家明白大概意思就行了。这说明并非用户不喜欢更好的体验，或者对好体验和坏体验无所谓，而是他们没有机会尝试到更好的产品。一方面是视野的问题，一方面则是氛围和文化。</p>
<p>假如，twitter是一个存在于现实世界的网站，那么新浪微博的用户就会知道自己的体验有多么差。假如，世界上的各种银行都可以在中国开展业务，那么我们就会明白什么叫做服务。假如，外国电信企业可以给我们的手机开卡，那么移动联通电信的用户都会知道原来打电话和上网可以这么便宜。</p>
<p>为什么这些假如都只是假如呢？</p>
<p>非不能也，乃不为也。</p>
<p>再说下去，就难免扯到敏感词去了，所以就此打住吧。这一篇文章充满了悲观的调调，忒不和谐了。尽管如此，我还是坚信，未来会更好。为了未来，努力吧。</p>
<table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="5"><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="十年" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.willyun.com%2F10-years.html&from=http%3A%2F%2Fwww.willyun.com%2Ftiaoti-suibian.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2011/09/22/423497.jpg" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">十年</font>
                    </a>
                </td>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="做贼的境界" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.willyun.com%2Frealm-thieves.html&from=http%3A%2F%2Fwww.willyun.com%2Ftiaoti-suibian.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2011/09/22/423510.jpg" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">做贼的境界</font>
                    </a>
                </td>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="递进式税率问题" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.willyun.com%2Fprogressive-tax-rates.html&from=http%3A%2F%2Fwww.willyun.com%2Ftiaoti-suibian.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2011/09/22/423498.jpg" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">递进式税率问题</font>
                    </a>
                </td>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="用相关文章连通整个互联网(附送无觅网络邀请)" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.willyun.com%2Fwumii-network-related.html&from=http%3A%2F%2Fwww.willyun.com%2Ftiaoti-suibian.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2011/09/22/2148434.jpg" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">用相关文章连通整个互联网(附送无觅网络邀请)</font>
                    </a>
                </td>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="游泳游出孩子来" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.willyun.com%2Fswiming-baby.html&from=http%3A%2F%2Fwww.willyun.com%2Ftiaoti-suibian.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2010/09/29/423501.jpg" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">游泳游出孩子来</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.willyun.com/tiaoti-suibian.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>用相关文章连通整个互联网(附送无觅网络邀请)</title>
		<link>http://www.willyun.com/wumii-network-related.html</link>
		<comments>http://www.willyun.com/wumii-network-related.html#comments</comments>
		<pubDate>Tue, 18 Jan 2011 02:55:48 +0000</pubDate>
		<dc:creator>willyun</dc:creator>
				<category><![CDATA[弄网日志]]></category>
		<category><![CDATA[Linkwithin]]></category>
		<category><![CDATA[无觅]]></category>
		<category><![CDATA[相关文章]]></category>
		<category><![CDATA[邀请码]]></category>

		<guid isPermaLink="false">http://www.willyun.com/?p=22523</guid>
		<description><![CDATA[（邀请码已发送完毕，请勿再申请！） 一大早打开邮箱，收到了无觅网发来的一封邮件： 恭喜您，您的网站http://www.willyun.com/已通过审核成为无觅网络的核心成员。无觅网络是个非公开的网络，除了无觅手动审核外，唯一加入网络的途径就是经过您们的邀请。这个网络刚开始还很小，您会拥有一定数量的邀请码，这个网络由哪些网站组成将由您来决定。您唯一需要做的是，邀请那些您认同和会为整个网络带来更大价值的网站加入。 我是去年夏天的时候开始使用无觅的相关文章插件的，一个月之前申请了加入无觅网络。这个创意很赞，通过相关性连通整个互联网，做的好真的可以达到1+1&#62;2。 国外也有类似的服务，比如Linkwithin，在我看来，虽然界面上看起来差不多，但是无觅与Linkwithin有点不同： Linkwithin强调的是“Related Posts with Thumbnails”，即缩略图显示相关文章，缩略图确实实现了，相关性却差强人意，也许只是中文才这样，但对于中文blogger来说，这点很重要。 无觅在中文语义上怎么样？我觉得至少比Linkwithin强，这在我的博客上看不出来，因为我的博客一内容少，二主题杂乱。但是在月光、松鼠会等内容丰富的博客里，可以很明显看出确实很相关。 如今无觅推出无觅网络，随着这个网络内的网站越来越多，很显然，相关性会更加好。比如，你看了我的这篇一枚字体导致Photoshop文字显示迟钝，很想再看一看关于Photoshop与字体的更多文章，可是我整个博客里就写了这么一篇关于Photoshop的文章，这时，无觅推荐了另外一个网站的另一篇关于Photoshop的文章，你会不会很欣喜？ 目前身在无觅网络内的网站，也并不是直接就会互相出现在相关文章内的，而是需要向你想要连通的网站进行申请，这有点像交换链接，无觅网络就像一个链接交换平台。对此我有不同的建议： 把整个无觅网络按照不同的类别划分为一些群组，群组内的每个网站的相关文章可以互相连通。当然，进入群组之前，需要进行严格的审核，“原创”应该是最重要的一条审核标准，否则，就有可能出现五条相关文章其实全部是一篇文章的状况。 最后呢，我有三个无觅网络邀请码，需要加入的同学可以留言索取，请写上博客网址，非原创内容的网站就勿扰了。另外，留言时邮箱地址填在邮箱栏里就行，不要写在留言内容里，因为，我可以为你的邮箱保密，但如果你把它展示给整个互联网，那么垃圾邮件就会纷至沓来。 PS：Google拼音输入法打“无觅”两个字，总是打成“无觅哦”，不知道其他输入法是什么情况？<table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="5"><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="VeryCD遇七年变局：下载服务关闭 不涉及关站" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.domyself.me%2Farchives%2Fverycd%25E9%2581%2587%25E4%25B8%2583%25E5%25B9%25B4%25E5%258F%2598%25E5%25B1%2580%25EF%25BC%259A%25E4%25B8%258B%25E8%25BD%25BD%25E6%259C%258D%25E5%258A%25A1%25E5%2585%25B3%25E9%2597%25AD-%25E4%25B8%258D%25E6%25B6%2589%25E5%258F%258A%25E5%2585%25B3%25E7%25AB%2599%2F&from=http%3A%2F%2Fwww.willyun.com%2Fwumii-network-related.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2011/07/26/18949094.jpg" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">VeryCD遇七年变局：下载服务关闭 不涉及关站 (@domyself)</font>
                    </a>
                </td>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="fsockopen 函数 用于远程登录，数据采集" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.domyself.me%2Farchives%2Ffsockopen-%25E5%2587%25BD%25E6%2595%25B0-%25E7%2594%25A8%25E4%25BA%258E%25E8%25BF%259C%25E7%25A8%258B%25E7%2599%25BB%25E5%25BD%2595%25EF%25BC%258C%25E6%2595%25B0%25E6%258D%25AE%25E9%2587%2587%25E9%259B%2586%2F&from=http%3A%2F%2Fwww.willyun.com%2Fwumii-network-related.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2012/01/31/14555925.jpg" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">fsockopen 函数 用于远程登录，数据采集 (@domyself)</font>
                    </a>
                </td>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="今夜，网络因腾讯而“热闹非凡”" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.domyself.me%2Farchives%2F%25E4%25BB%258A%25E5%25A4%259C%25EF%25BC%258C%25E7%25BD%2591%25E7%25BB%259C%25E5%259B%25A0%25E8%2585%25BE%25E8%25AE%25AF%25E8%2580%258C%25E2%2580%259C%25E7%2583%25AD%25E9%2597%25B9%25E9%259D%259E%25E5%2587%25A1%25E2%2580%259D%2F&from=http%3A%2F%2Fwww.willyun.com%2Fwumii-network-related.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2011/01/18/2154766.jpg" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">今夜，网络因腾讯而“热闹非凡” (@domyself)</font>
                    </a>
                </td>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="狗日与流氓的战争" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.domyself.me%2Farchives%2F%25E7%258B%2597%25E6%2597%25A5%25E4%25B8%258E%25E6%25B5%2581%25E6%25B0%2593%25E7%259A%2584%25E6%2588%2598%25E4%25BA%2589%2F&from=http%3A%2F%2Fwww.willyun.com%2Fwumii-network-related.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2011/07/06/16348684.png" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">狗日与流氓的战争 (@domyself)</font>
                    </a>
                </td>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="我使用的VPS" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.domyself.me%2Farchives%2F%25E6%2588%2591%25E4%25BD%25BF%25E7%2594%25A8%25E7%259A%2584vps%2F&from=http%3A%2F%2Fwww.willyun.com%2Fwumii-network-related.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://www.domyself.me/wp-content/uploads/2011/02/1.jpg" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">我使用的VPS (@domyself)</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p><strong>（邀请码已发送完毕，请勿再申请！）</strong></p>
<p>一大早打开邮箱，收到了无觅网发来的一封邮件：</p>
<blockquote><p>恭喜您，您的网站http://www.willyun.com/已通过审核成为无觅网络的核心成员。无觅网络是个非公开的网络，除了无觅手动审核外，唯一加入网络的途径就是经过您们的邀请。这个网络刚开始还很小，您会拥有一定数量的邀请码，这个网络由哪些网站组成将由您来决定。您唯一需要做的是，邀请那些您认同和会为整个网络带来更大价值的网站加入。</p></blockquote>
<p>我是去年夏天的时候开始使用无觅的相关文章插件的，一个月之前申请了加入无觅网络。这个创意很赞，通过相关性连通整个互联网，做的好真的可以达到1+1&gt;2。<span id="more-22523"></span></p>
<p>国外也有类似的服务，比如Linkwithin，在我看来，虽然界面上看起来差不多，但是无觅与Linkwithin有点不同：</p>
<p>Linkwithin强调的是“Related Posts with Thumbnails”，即缩略图显示相关文章，缩略图确实实现了，相关性却差强人意，也许只是中文才这样，但对于中文blogger来说，这点很重要。</p>
<p>无觅在中文语义上怎么样？我觉得至少比Linkwithin强，这在我的博客上看不出来，因为我的博客一内容少，二主题杂乱。但是在月光、松鼠会等内容丰富的博客里，可以很明显看出确实很相关。</p>
<p>如今无觅推出无觅网络，随着这个网络内的网站越来越多，很显然，相关性会更加好。比如，你看了我的这篇<a title="一枚字体导致Photoshop文字显示迟钝" href="http://www.willyun.com/font-photoshop.html">一枚字体导致Photoshop文字显示迟钝</a>，很想再看一看关于Photoshop与字体的更多文章，可是我整个博客里就写了这么一篇关于Photoshop的文章，这时，无觅推荐了另外一个网站的另一篇关于Photoshop的文章，你会不会很欣喜？</p>
<p>目前身在无觅网络内的网站，也并不是直接就会互相出现在相关文章内的，而是需要向你想要连通的网站进行申请，这有点像交换链接，无觅网络就像一个链接交换平台。对此我有不同的建议：</p>
<p>把整个无觅网络按照不同的类别划分为一些群组，群组内的每个网站的相关文章可以互相连通。当然，进入群组之前，需要进行严格的审核，“原创”应该是最重要的一条审核标准，否则，就有可能出现五条相关文章其实全部是一篇文章的状况。</p>
<p>最后呢，我有三个无觅网络邀请码，需要加入的同学可以留言索取，请写上博客网址，非原创内容的网站就勿扰了。另外，留言时邮箱地址填在邮箱栏里就行，不要写在留言内容里，因为，我可以为你的邮箱保密，但如果你把它展示给整个互联网，那么垃圾邮件就会纷至沓来。</p>
<p>PS：Google拼音输入法打“无觅”两个字，总是打成“无觅哦”，不知道其他输入法是什么情况？</p>
<p><strong><br />
</strong></p>
<table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="5"><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="VeryCD遇七年变局：下载服务关闭 不涉及关站" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.domyself.me%2Farchives%2Fverycd%25E9%2581%2587%25E4%25B8%2583%25E5%25B9%25B4%25E5%258F%2598%25E5%25B1%2580%25EF%25BC%259A%25E4%25B8%258B%25E8%25BD%25BD%25E6%259C%258D%25E5%258A%25A1%25E5%2585%25B3%25E9%2597%25AD-%25E4%25B8%258D%25E6%25B6%2589%25E5%258F%258A%25E5%2585%25B3%25E7%25AB%2599%2F&from=http%3A%2F%2Fwww.willyun.com%2Fwumii-network-related.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2011/07/26/18949094.jpg" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">VeryCD遇七年变局：下载服务关闭 不涉及关站 (@domyself)</font>
                    </a>
                </td>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="fsockopen 函数 用于远程登录，数据采集" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.domyself.me%2Farchives%2Ffsockopen-%25E5%2587%25BD%25E6%2595%25B0-%25E7%2594%25A8%25E4%25BA%258E%25E8%25BF%259C%25E7%25A8%258B%25E7%2599%25BB%25E5%25BD%2595%25EF%25BC%258C%25E6%2595%25B0%25E6%258D%25AE%25E9%2587%2587%25E9%259B%2586%2F&from=http%3A%2F%2Fwww.willyun.com%2Fwumii-network-related.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2012/01/31/14555925.jpg" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">fsockopen 函数 用于远程登录，数据采集 (@domyself)</font>
                    </a>
                </td>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="今夜，网络因腾讯而“热闹非凡”" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.domyself.me%2Farchives%2F%25E4%25BB%258A%25E5%25A4%259C%25EF%25BC%258C%25E7%25BD%2591%25E7%25BB%259C%25E5%259B%25A0%25E8%2585%25BE%25E8%25AE%25AF%25E8%2580%258C%25E2%2580%259C%25E7%2583%25AD%25E9%2597%25B9%25E9%259D%259E%25E5%2587%25A1%25E2%2580%259D%2F&from=http%3A%2F%2Fwww.willyun.com%2Fwumii-network-related.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2011/01/18/2154766.jpg" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">今夜，网络因腾讯而“热闹非凡” (@domyself)</font>
                    </a>
                </td>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="狗日与流氓的战争" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.domyself.me%2Farchives%2F%25E7%258B%2597%25E6%2597%25A5%25E4%25B8%258E%25E6%25B5%2581%25E6%25B0%2593%25E7%259A%2584%25E6%2588%2598%25E4%25BA%2589%2F&from=http%3A%2F%2Fwww.willyun.com%2Fwumii-network-related.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2011/07/06/16348684.png" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">狗日与流氓的战争 (@domyself)</font>
                    </a>
                </td>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="我使用的VPS" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.domyself.me%2Farchives%2F%25E6%2588%2591%25E4%25BD%25BF%25E7%2594%25A8%25E7%259A%2584vps%2F&from=http%3A%2F%2Fwww.willyun.com%2Fwumii-network-related.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://www.domyself.me/wp-content/uploads/2011/02/1.jpg" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">我使用的VPS (@domyself)</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.willyun.com/wumii-network-related.html/feed</wfw:commentRss>
		<slash:comments>26</slash:comments>
		</item>
		<item>
		<title>联通DNS，你又调皮了</title>
		<link>http://www.willyun.com/chinaunicom-dns.html</link>
		<comments>http://www.willyun.com/chinaunicom-dns.html#comments</comments>
		<pubDate>Tue, 11 Jan 2011 08:29:08 +0000</pubDate>
		<dc:creator>willyun</dc:creator>
				<category><![CDATA[弄网日志]]></category>
		<category><![CDATA[DNS]]></category>
		<category><![CDATA[联通]]></category>

		<guid isPermaLink="false">http://www.willyun.com/?p=22511</guid>
		<description><![CDATA[春节快要到来的时候，拉闸限电也频繁的到来了，如今每天要停电两次以上，每次要停两个钟头以上。今天上午经过一次停电之后，网络就一直不正常。先是无法连接，然后连接上了，各种软件可以联网，网站却始终打不开。重启路由，没用。于是打电话到联通机房，以下是我们的对话： 我：你好，网络能连上，QQ能上，但是网站打不开。 联通：QQ能连上，说明机房没问题啊，重启一下路由试试 我：重启过了，没用，会不会是上网的端口有问题？ 联通：就一个端口拉过去的，能上QQ说明端口没问题。。。。以下是废话。。。。。 事实上，我也记不清上网和QQ分别是用的什么端口，但肯定不是一个，否则不可能有公司能够屏蔽掉QQ而不影响上网，看来联通的大叔说的是物理端口，那确实是一个。 如果当时能够上google，很容易就可以找到解决方法，可惜不能够。 之前的网络那么单纯，要么能上，要么不能上，一视同仁，现在怎么也搞起种族歧视来了？ 没人动过路由，而各种端口都正常，只有上网端口有问题，有可能吗？ 我们上网和软件联网的区别在哪里？软件联网是直接连到服务器，而我们上网需要输入域名，再由DNS服务器把域名解析到网站的IP地址。靠，原来是DNS服务器出问题了！这么一想，事情就明朗了。下面就来验证一下，还好我记得公司网站的IP地址，输入地址栏，回车，果然打开了。 现在要做的就是更改路由的DNS服务器地址，但是除了设置好的DNS地址，我并不知道其他地址，打电话问联通？第一，他也不一定知道；第二，其实可以有办法解决的。既然可以用IP直接访问网站，那么hosts里面存的大量IP就可以派上用场了。翻了一遍，找到一枚googleIP地址，于是搜出本省联通的其他DNS服务器的IP，填进去，OK！阳光终于明媚了！ PS：1.既然hosts已经修改，怎么会打不开Google？因为那枚ipv4的地址并没在windows系统里的hosts文件里，而是保存在名叫hosts的记事本里。host文件里关于google的地址都是ipv6的，但是貌似ipv6地址无法直接打开。 2.其实也可以直接使用Google的DNS服务器8.8.8.8，但是好像有某些国内域名无法成功解析。 3.其他省份的DNS服务器也会出现和google的DNS服务器同样的问题，某些域名无法解析。 4.在路由器设置中，DNS服务器后面有一个(可选)字样，经过测试，不填写DNS地址也可以，但是过一会又不行了，估计是联通自动分配DNS服务器，分配到了坏掉的那个DNS地址上，所以想稳定还是填上为好。 最后附上国内外DNS服务器IP地址，部分来自月光博客： 国内各省市DNS服务器地址 北京： 202.96.199.133 202.96.0.133 202.106.0.20 202.106.148.1 202.97.16.195 202.138.96.2 深圳： 202.96.134.133 202.96.154.15 广州： 61.144.56.100 61.144.56.101 广东： 202.96.128.86 202.96.128.143 上海： 202.96.199.132 202.96.199.133 202.96.209.5 202.96.209.133 天津： 202.99.96.68 202.99.104.68 广西： 202.96.128.68 202.103.224.68 202.103.225.68 河南： 202.102.227.68 202.102.245.12 202.102.224.68 河北： 202.99.160.68 福建： 202.101.98.54 202.101.98.55 厦门： [...]<table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="5"><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="DNS 的 SOA 记录简介" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.sigma.me%2F2011%2F01%2F01%2Fabout_dns_soa.html&from=http%3A%2F%2Fwww.willyun.com%2Fchinaunicom-dns.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://novel.ict.ac.cn/dliu/rumor-imagens-do-novo-iphone-5.gif" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">DNS 的 SOA 记录简介 (@sigma)</font>
                    </a>
                </td>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="局域网常见故障分析" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.hello1988.com%2Farchives%2F63&from=http%3A%2F%2Fwww.willyun.com%2Fchinaunicom-dns.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2011/02/09/2473500.png" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">局域网常见故障分析 (@hello1988)</font>
                    </a>
                </td>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="黑客攻防战" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.hello1988.com%2Farchives%2F105&from=http%3A%2F%2Fwww.willyun.com%2Fchinaunicom-dns.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2011/02/09/2630114.jpg" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">黑客攻防战 (@hello1988)</font>
                    </a>
                </td>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="修改DNS或者hosts文件加速iTunes下载" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.yuewei.net%2F693.html&from=http%3A%2F%2Fwww.willyun.com%2Fchinaunicom-dns.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/images/blogWidget/wordpress_default.gif" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">修改DNS或者hosts文件加速iTunes下载 (@yuewei)</font>
                    </a>
                </td>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="获取联通送的猫 zxv10 h108b V2.0超级密码" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fzhuxing.me%2F2011%2F07%2Fchina-unicom-to-send-the-cat-to-get-zxv10-h108b-v2-0-super-password%2F&from=http%3A%2F%2Fwww.willyun.com%2Fchinaunicom-dns.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://uweoog.bay.livefilestore.com/y1p72R8WYzJB2OPZ7G8ZQpHd1twFCT90Uab2Wpa8j2GZCFdn2jKZcnPaNTQ_3BI2OZLUb6MRM3RGBG6v7pO_2_zRw2MDjClNQXo/blogicons_wordpress.gif?psid=1" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">获取联通送的猫 zxv10 h108b V2.0超级密码 (@zhuxing)</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p>春节快要到来的时候，拉闸限电也频繁的到来了，如今每天要停电两次以上，每次要停两个钟头以上。今天上午经过一次停电之后，网络就一直不正常。先是无法连接，然后连接上了，各种软件可以联网，网站却始终打不开。重启路由，没用。于是打电话到联通机房，以下是我们的对话：<span id="more-22511"></span></p>
<blockquote><p>我：你好，网络能连上，QQ能上，但是网站打不开。</p>
<p>联通：QQ能连上，说明机房没问题啊，重启一下路由试试</p>
<p>我：重启过了，没用，会不会是上网的端口有问题？</p>
<p>联通：就一个端口拉过去的，能上QQ说明端口没问题。。。。以下是废话。。。。。</p></blockquote>
<p>事实上，我也记不清上网和QQ分别是用的什么端口，但肯定不是一个，否则不可能有公司能够屏蔽掉QQ而不影响上网，看来联通的大叔说的是物理端口，那确实是一个。</p>
<p>如果当时能够上google，很容易就可以找到解决方法，可惜不能够。</p>
<p>之前的网络那么单纯，要么能上，要么不能上，一视同仁，现在怎么也搞起种族歧视来了？</p>
<p>没人动过路由，而各种端口都正常，只有上网端口有问题，有可能吗？</p>
<p>我们上网和软件联网的区别在哪里？软件联网是直接连到服务器，而我们上网需要输入域名，再由DNS服务器把域名解析到网站的IP地址。靠，原来是DNS服务器出问题了！这么一想，事情就明朗了。下面就来验证一下，还好我记得公司网站的IP地址，输入地址栏，回车，果然打开了。</p>
<p>现在要做的就是更改路由的DNS服务器地址，但是除了设置好的DNS地址，我并不知道其他地址，打电话问联通？第一，他也不一定知道；第二，其实可以有办法解决的。既然可以用IP直接访问网站，那么hosts里面存的大量IP就可以派上用场了。翻了一遍，找到一枚googleIP地址，于是搜出本省联通的其他DNS服务器的IP，填进去，OK！阳光终于明媚了！</p>
<p>PS：1.既然hosts已经修改，怎么会打不开Google？因为那枚ipv4的地址并没在windows系统里的hosts文件里，而是保存在名叫hosts的记事本里。host文件里关于google的地址都是ipv6的，但是貌似ipv6地址无法直接打开。</p>
<p>2.其实也可以直接使用Google的DNS服务器8.8.8.8，但是好像有某些国内域名无法成功解析。</p>
<p>3.其他省份的DNS服务器也会出现和google的DNS服务器同样的问题，某些域名无法解析。</p>
<p>4.在路由器设置中，DNS服务器后面有一个(可选)字样，经过测试，不填写DNS地址也可以，但是过一会又不行了，估计是联通自动分配DNS服务器，分配到了坏掉的那个DNS地址上，所以想稳定还是填上为好。</p>
<p>最后附上国内外DNS服务器IP地址，部分来自<a href="http://www.williamlong.info/archives/1842.html" target="_blank">月光博客</a>：</p>
<h3>国内各省市DNS服务器地址</h3>
<p>北京：<br />
202.96.199.133<br />
202.96.0.133<br />
202.106.0.20<br />
202.106.148.1<br />
202.97.16.195<br />
202.138.96.2</p>
<p>深圳：<br />
202.96.134.133<br />
202.96.154.15</p>
<p>广州：<br />
61.144.56.100<br />
61.144.56.101</p>
<p>广东：<br />
202.96.128.86<br />
202.96.128.143</p>
<p>上海：<br />
202.96.199.132<br />
202.96.199.133<br />
202.96.209.5<br />
202.96.209.133</p>
<p>天津：<br />
202.99.96.68<br />
202.99.104.68</p>
<p>广西：<br />
202.96.128.68<br />
202.103.224.68<br />
202.103.225.68</p>
<p>河南：<br />
202.102.227.68<br />
202.102.245.12<br />
202.102.224.68</p>
<p>河北：<br />
202.99.160.68</p>
<p>福建：<br />
202.101.98.54<br />
202.101.98.55</p>
<p>厦门：<br />
202.101.103.55<br />
202.101.103.54</p>
<p>湖南：<br />
202.103.0.68<br />
202.103.96.68<br />
202.103.96.112</p>
<p>湖北：<br />
202.103.0.68<br />
202.103.0.117<br />
202.103.24.68</p>
<p>江苏：<br />
202.102.15.162<br />
202.102.29.3<br />
202.102.13.141<br />
202.102.24.35</p>
<p>浙江：<br />
202.96.102.3<br />
202.96.96.68<br />
202.96.104.18</p>
<p>陕西：<br />
202.100.13.11<br />
202.100.4.16<br />
202.100.4.15<br />
202.100.0.68</p>
<p>山东：<br />
202.102.154.3<br />
202.102.152.3<br />
202.102.128.68<br />
202.102.134.68</p>
<p>山西：<br />
202.99.192.68<br />
202.99.198.6</p>
<p>四川：<br />
202.98.96.68<br />
61.139.2.69</p>
<p>重庆：<br />
61.128.128.68</p>
<p>成都：<br />
202.98.96.68<br />
202.98.96.69</p>
<p>辽宁：<br />
202.98.0.68<br />
202.96.75.68<br />
202.96.75.64<br />
202.96.69.38<br />
202.96.86.18<br />
202.96.86.24</p>
<p>安徽：<br />
202.102.192.68<br />
202.102.199.68<br />
10.89.64.5</p>
<p>吉林：<br />
202.98.5.68<br />
202.98.14.18<br />
202.98.14.19</p>
<p>江西：<br />
202.101.224.68<br />
202.109.129.2<br />
202.101.240.36</p>
<p>新疆：<br />
61.128.97.74<br />
61.128.97.73</p>
<p>贵州：<br />
202.98.192.68<br />
10.157.2.15</p>
<p>云南：<br />
202.98.96.68<br />
202.98.160.68</p>
<p>黑龙江：<br />
202.97.229.133<br />
202.97.224.68<br />
219.150.32.132</p>
<p>海南：<br />
202.100.192.68<br />
202.100.199.8</p>
<p>宁夏：<br />
202.100.0.68<br />
202.100.96.68</p>
<p>甘肃：<br />
202.100.72.13</p>
<p>内蒙古：<br />
202.99.224.68</p>
<p>青海：<br />
202.100.128.68</p>
<h3>港澳台DNS服务器地址</h3>
<p>香港：<br />
205.252.144.228<br />
208.151.69.65<br />
202.181.202.140<br />
202.181.224.2</p>
<p>澳门：<br />
202.175.3.8<br />
202.175.3.3</p>
<p>台湾：<br />
168.95.192.1<br />
168.95.1.1</p>
<h3>国外DNS服务器地址</h3>
<p>美国：<br />
208.67.222.222<br />
208.67.220.220<br />
165.87.13.129<br />
165.87.201.244<br />
205.171.3.65<br />
205.171.2.65<br />
198.41.0.4<br />
198.41.0.4<br />
198.32.64.12<br />
192.33.4.12<br />
192.203.230.10<br />
192.5.5.241<br />
192.112.36.4<br />
192.36.148.17<br />
192.58.128.30<br />
192.9.9.3<br />
193.0.14.129<br />
128.9.0.107<br />
128.8.10.90<br />
66.33.206.206.<br />
208.96.10.221<br />
66.33.216.216<br />
205.171.3.65<br />
205.171.2.65<br />
165.87.13.129<br />
165.87.201.244</p>
<p>加拿大：<br />
209.166.160.36<br />
209.166.160.132</p>
<p>英国：<br />
193.0.14.129</p>
<p>日本<br />
202.12.27.33<br />
202.216.228.18</p>
<p>韩国：<br />
164.124.101.31<br />
203.248.240.31<br />
168.126.63.60<br />
168.126.63.61</p>
<p>新西兰：<br />
202.27.184.3</p>
<p>泰国：<br />
209.166.160.132<br />
202.44.8.34<br />
202.44.8.2</p>
<p>印度：<br />
202.138.103.100<br />
202.138.96.2</p>
<h3>OpenDNS免费DNS</h3>
<p>208.67.222.222</p>
<p>208.67.220.220</p>
<h3>Google免费DNS</h3>
<p>8.8.8.8</p>
<p>8.8.4.4</p>
<table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="5"><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="DNS 的 SOA 记录简介" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.sigma.me%2F2011%2F01%2F01%2Fabout_dns_soa.html&from=http%3A%2F%2Fwww.willyun.com%2Fchinaunicom-dns.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://novel.ict.ac.cn/dliu/rumor-imagens-do-novo-iphone-5.gif" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">DNS 的 SOA 记录简介 (@sigma)</font>
                    </a>
                </td>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="局域网常见故障分析" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.hello1988.com%2Farchives%2F63&from=http%3A%2F%2Fwww.willyun.com%2Fchinaunicom-dns.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2011/02/09/2473500.png" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">局域网常见故障分析 (@hello1988)</font>
                    </a>
                </td>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="黑客攻防战" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.hello1988.com%2Farchives%2F105&from=http%3A%2F%2Fwww.willyun.com%2Fchinaunicom-dns.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2011/02/09/2630114.jpg" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">黑客攻防战 (@hello1988)</font>
                    </a>
                </td>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="修改DNS或者hosts文件加速iTunes下载" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.yuewei.net%2F693.html&from=http%3A%2F%2Fwww.willyun.com%2Fchinaunicom-dns.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/images/blogWidget/wordpress_default.gif" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">修改DNS或者hosts文件加速iTunes下载 (@yuewei)</font>
                    </a>
                </td>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="获取联通送的猫 zxv10 h108b V2.0超级密码" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fzhuxing.me%2F2011%2F07%2Fchina-unicom-to-send-the-cat-to-get-zxv10-h108b-v2-0-super-password%2F&from=http%3A%2F%2Fwww.willyun.com%2Fchinaunicom-dns.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://uweoog.bay.livefilestore.com/y1p72R8WYzJB2OPZ7G8ZQpHd1twFCT90Uab2Wpa8j2GZCFdn2jKZcnPaNTQ_3BI2OZLUb6MRM3RGBG6v7pO_2_zRw2MDjClNQXo/blogicons_wordpress.gif?psid=1" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">获取联通送的猫 zxv10 h108b V2.0超级密码 (@zhuxing)</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.willyun.com/chinaunicom-dns.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>发几个EverBox邀请码</title>
		<link>http://www.willyun.com/everbox-invite.html</link>
		<comments>http://www.willyun.com/everbox-invite.html#comments</comments>
		<pubDate>Thu, 06 Jan 2011 08:07:50 +0000</pubDate>
		<dc:creator>willyun</dc:creator>
				<category><![CDATA[弄网日志]]></category>
		<category><![CDATA[everbox]]></category>
		<category><![CDATA[同步]]></category>
		<category><![CDATA[邀请码]]></category>

		<guid isPermaLink="false">http://www.willyun.com/?p=22500</guid>
		<description><![CDATA[什么是EverBox 如果你听说过鼎鼎大名的DropBox，那你就会知道EverBox是个什么东东。没错，就是山寨版的DropBox，与此类似的有国外的SugarSync、Live Mesh、Mozy、SparkleShare，国内的数据银行、金山快盘、新浪微盘等等，它们都是用来同步和备份文件的云端工具。 EverBox由盛大出品，支持盛大帐号和google帐号登录，初始有2G空间，首次安装客户端增加500M，首次上传文件增加500M，首次多设备同步增加1G，首次邀请好友增加1G，再次邀请好友每个增加250M，容量上限为10G。不限制单个文件的类型和大小。 EverBox邀请码 EverBox目前处于测试阶段，需要邀请码才能成功注册，呵呵，本文就是专门发放EverBox邀请码的。 http://account.everbox.com/invite/jflA3S9z8d46l8JtGQdHfHTj77yWZhA8oxAw3LlB http://account.everbox.com/invite/wyNeRn6KU5YGLo2NmcdeGc1UvIYKp9OcNIpAzEWF http://account.everbox.com/invite/lvfoCBtSPnLf5yYU8D564qPNZjNwe2t8j4iIQBjw http://account.everbox.com/invite/jMEqC383NpyKoASKgJHFG8do8ANUmZjKSRqM2bjU http://account.everbox.com/invite/R2VZPTQ9Gcxy8kLyAeuX7EMIcE8Q7fQ8msMJ9RLG 上面的邀请码已被使用，1月9日更新5枚： http://account.everbox.com/invite/KxW0qctPqD5TYkMJj8vczvQhwZ41T8INYH9WwGv9 http://account.everbox.com/invite/lR8P3v4DfEUKXpRueBS7OPbX7f2FqAmGQL8ODiBH http://account.everbox.com/invite/6a5Trzk9FdaB5eNLkmchipZC0ZiGI4TjUbAYdQDW http://account.everbox.com/invite/EM2go5kvirzG19EN74xB3fxxnKbaMtYQHVJVSWM0 http://account.everbox.com/invite/AHjNsCO1JJcG8tch9eolYbkZa40SXIXM5axmSST5 1月11日更新5枚： http://account.everbox.com/invite/B5ULqVVHYzMZmZx8SOC1SQKOFdr5VM0GCk5ht5pH http://account.everbox.com/invite/ALOz2OamBkrf4SUWLcwdOBTKp6vfEoH4dqoHLTd2 http://account.everbox.com/invite/mIaCOPTXFSIYAky5i37CFohFovzJSly157umIYrz http://account.everbox.com/invite/VcSrrehtaOVLZkc2wpso5G4EOxM4ru61xJRqIjz7 http://account.everbox.com/invite/N8ibeJx7unlHntDooc3en0h4IGw5vZhrxzL35XAg 1月13日更新10枚EverBox邀请码： http://account.everbox.com/invite/yKBE4kTiCNGwSF1I3ZSIYFGdAF78IV0fHi4MiDX1 http://account.everbox.com/invite/eV4FboHjiEte3DVPyUUJqQo6wCh0BHYuEVy7jV2X http://account.everbox.com/invite/LeQZtcLA5yXZfS7EGnKQ289KxelpDbNljyLVmBPm http://account.everbox.com/invite/sn6Kc75luwoM0b69GXcbYPilIuJueMIZKIhzGMMh http://account.everbox.com/invite/tQvgpYAyb6L5C931xg16gj7gQkp6l7ItnBlJ3r0c http://account.everbox.com/invite/jJXSWrZArnHaS72pAc9MD1HUgry61lz2ornnWnKZ http://account.everbox.com/invite/nftFhE2P0CBzrbMGZG5YJtiYKxuKbuPVJVdWjJqo http://account.everbox.com/invite/FtRyGaPjQuEI8KsB1jAVrn3xnK4mSU77Kwj9ibyJ http://account.everbox.com/invite/6ILuqxpCR6pDfQtKVp2MmZpM5uYYPA9eo6w7rhK5 http://account.everbox.com/invite/2g2kADouA9CYN4gDVgb1GF68aEtdAMS15QYK7173 1月23日更新11枚everbox邀请码： http://account.everbox.com/invite/OVFNmx6Ci0b86c12Xl8A4608Eg6TJYnQ10p3fox0 http://account.everbox.com/invite/FEFdi8o4mfVZK8nZAoQ9lcDwO6g470ps7g04pP2x http://account.everbox.com/invite/b7AoYOVvzu2ONzJBVJKf5a6jycE0uLtc8ebgAsqD http://account.everbox.com/invite/pzZeA8fRIBSXYWynVqG3P4egiRYm89v5LBEsxSqB http://account.everbox.com/invite/Ves3ROk8RIJA7d0Ikh07SuZnZOy6KT0yR54OmBs7 http://account.everbox.com/invite/a7VSEfj1g228nQSRB8MdWfWrO7OIrpet67ftqMZ2 http://account.everbox.com/invite/i9rFg66FC7dWorbZoRP4txwuMg89crFfvI4GBd37 http://account.everbox.com/invite/hAtPVLBbyRn1Vb60WjhXb50x6A8SswzlUddhBvbh http://account.everbox.com/invite/WiMvw4dZIi4nGS8hWBTOsZWuTyI3tS3dVhPXNhRU http://account.everbox.com/invite/yXpYnNEzpDB73222lHHaLeBg8TuBNTsdp3Umo1tp http://account.everbox.com/invite/oJcTeB8udJxfmcqLGqCDKRM9Mvc3g7bGUnXRGNFU 我的空间已经升至10G，本文不再发放邀请码，但其他有邀请码而空间还未升至10G的朋友，可以在评论里留下你们的邀请码，既与他人方便，又可升级自己的空间，何乐而不为？<table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="5"><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="Android玩机笔记（一）：购机" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.willyun.com%2Fandroid-phone-buy.html&from=http%3A%2F%2Fwww.willyun.com%2Feverbox-invite.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2011/10/11/8951777.jpg" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Android玩机笔记（一）：购机</font>
                    </a>
                </td>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="联通DNS，你又调皮了" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.willyun.com%2Fchinaunicom-dns.html&from=http%3A%2F%2Fwww.willyun.com%2Feverbox-invite.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2011/09/22/2026422.jpg" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">联通DNS，你又调皮了</font>
                    </a>
                </td>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="假如青霉素早发明600年" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.willyun.com%2Fpenicillin-600-years.html&from=http%3A%2F%2Fwww.willyun.com%2Feverbox-invite.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2010/10/02/423514.jpg" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">假如青霉素早发明600年</font>
                    </a>
                </td>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="注册live.com邮箱账号" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.willyun.com%2Fregistration-live-com-email-account.html&from=http%3A%2F%2Fwww.willyun.com%2Feverbox-invite.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2011/09/22/423494.jpg" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">注册live.com邮箱账号</font>
                    </a>
                </td>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="过去" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.willyun.com%2Fpast.html&from=http%3A%2F%2Fwww.willyun.com%2Feverbox-invite.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2011/09/22/423509.jpg" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">过去</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<h3>什么是EverBox</h3>
<p>如果你听说过鼎鼎大名的DropBox，那你就会知道EverBox是个什么东东。没错，就是山寨版的DropBox，与此类似的有国外的SugarSync、Live Mesh、Mozy、SparkleShare，国内的数据银行、金山快盘、新浪微盘等等，它们都是用来同步和备份文件的云端工具。</p>
<p><span id="more-22500"></span></p>
<p>EverBox由盛大出品，支持盛大帐号和google帐号登录，初始有2G空间，首次安装客户端增加500M，首次上传文件增加500M，首次多设备同步增加1G，首次邀请好友增加1G，再次邀请好友每个增加250M，容量上限为10G。不限制单个文件的类型和大小。</p>
<h3>EverBox邀请码</h3>
<p>EverBox目前处于测试阶段，需要邀请码才能成功注册，呵呵，本文就是专门发放EverBox邀请码的。</p>
<p>http://account.everbox.com/invite/jflA3S9z8d46l8JtGQdHfHTj77yWZhA8oxAw3LlB</p>
<p>http://account.everbox.com/invite/wyNeRn6KU5YGLo2NmcdeGc1UvIYKp9OcNIpAzEWF</p>
<p>http://account.everbox.com/invite/lvfoCBtSPnLf5yYU8D564qPNZjNwe2t8j4iIQBjw</p>
<p>http://account.everbox.com/invite/jMEqC383NpyKoASKgJHFG8do8ANUmZjKSRqM2bjU</p>
<p>http://account.everbox.com/invite/R2VZPTQ9Gcxy8kLyAeuX7EMIcE8Q7fQ8msMJ9RLG</p>
<p>上面的邀请码已被使用，1月9日更新5枚：</p>
<p>http://account.everbox.com/invite/KxW0qctPqD5TYkMJj8vczvQhwZ41T8INYH9WwGv9</p>
<p>http://account.everbox.com/invite/lR8P3v4DfEUKXpRueBS7OPbX7f2FqAmGQL8ODiBH</p>
<p>http://account.everbox.com/invite/6a5Trzk9FdaB5eNLkmchipZC0ZiGI4TjUbAYdQDW</p>
<p>http://account.everbox.com/invite/EM2go5kvirzG19EN74xB3fxxnKbaMtYQHVJVSWM0</p>
<p>http://account.everbox.com/invite/AHjNsCO1JJcG8tch9eolYbkZa40SXIXM5axmSST5</p>
<p>1月11日更新5枚：</p>
<p>http://account.everbox.com/invite/B5ULqVVHYzMZmZx8SOC1SQKOFdr5VM0GCk5ht5pH</p>
<p>http://account.everbox.com/invite/ALOz2OamBkrf4SUWLcwdOBTKp6vfEoH4dqoHLTd2</p>
<p>http://account.everbox.com/invite/mIaCOPTXFSIYAky5i37CFohFovzJSly157umIYrz</p>
<p>http://account.everbox.com/invite/VcSrrehtaOVLZkc2wpso5G4EOxM4ru61xJRqIjz7</p>
<p>http://account.everbox.com/invite/N8ibeJx7unlHntDooc3en0h4IGw5vZhrxzL35XAg</p>
<p>1月13日更新10枚EverBox邀请码：</p>
<p>http://account.everbox.com/invite/yKBE4kTiCNGwSF1I3ZSIYFGdAF78IV0fHi4MiDX1</p>
<p>http://account.everbox.com/invite/eV4FboHjiEte3DVPyUUJqQo6wCh0BHYuEVy7jV2X</p>
<p>http://account.everbox.com/invite/LeQZtcLA5yXZfS7EGnKQ289KxelpDbNljyLVmBPm</p>
<p>http://account.everbox.com/invite/sn6Kc75luwoM0b69GXcbYPilIuJueMIZKIhzGMMh</p>
<p>http://account.everbox.com/invite/tQvgpYAyb6L5C931xg16gj7gQkp6l7ItnBlJ3r0c</p>
<p>http://account.everbox.com/invite/jJXSWrZArnHaS72pAc9MD1HUgry61lz2ornnWnKZ</p>
<p>http://account.everbox.com/invite/nftFhE2P0CBzrbMGZG5YJtiYKxuKbuPVJVdWjJqo</p>
<p>http://account.everbox.com/invite/FtRyGaPjQuEI8KsB1jAVrn3xnK4mSU77Kwj9ibyJ</p>
<p>http://account.everbox.com/invite/6ILuqxpCR6pDfQtKVp2MmZpM5uYYPA9eo6w7rhK5</p>
<p>http://account.everbox.com/invite/2g2kADouA9CYN4gDVgb1GF68aEtdAMS15QYK7173</p>
<p>1月23日更新11枚everbox邀请码：</p>
<p>http://account.everbox.com/invite/OVFNmx6Ci0b86c12Xl8A4608Eg6TJYnQ10p3fox0</p>
<p>http://account.everbox.com/invite/FEFdi8o4mfVZK8nZAoQ9lcDwO6g470ps7g04pP2x</p>
<p>http://account.everbox.com/invite/b7AoYOVvzu2ONzJBVJKf5a6jycE0uLtc8ebgAsqD</p>
<p>http://account.everbox.com/invite/pzZeA8fRIBSXYWynVqG3P4egiRYm89v5LBEsxSqB</p>
<p>http://account.everbox.com/invite/Ves3ROk8RIJA7d0Ikh07SuZnZOy6KT0yR54OmBs7</p>
<p>http://account.everbox.com/invite/a7VSEfj1g228nQSRB8MdWfWrO7OIrpet67ftqMZ2</p>
<p>http://account.everbox.com/invite/i9rFg66FC7dWorbZoRP4txwuMg89crFfvI4GBd37</p>
<p>http://account.everbox.com/invite/hAtPVLBbyRn1Vb60WjhXb50x6A8SswzlUddhBvbh</p>
<p>http://account.everbox.com/invite/WiMvw4dZIi4nGS8hWBTOsZWuTyI3tS3dVhPXNhRU</p>
<p>http://account.everbox.com/invite/yXpYnNEzpDB73222lHHaLeBg8TuBNTsdp3Umo1tp</p>
<p>http://account.everbox.com/invite/oJcTeB8udJxfmcqLGqCDKRM9Mvc3g7bGUnXRGNFU</p>
<p><strong>我的空间已经升至10G，本文不再发放邀请码，但其他有邀请码而空间还未升至10G的朋友，可以在评论里留下你们的邀请码，既与他人方便，又可升级自己的空间，何乐而不为？</strong></p>
<table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="5"><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="饭否举起了那把劁刀" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.willyun.com%2Ffanfou-hexie.html&from=http%3A%2F%2Fwww.willyun.com%2Feverbox-invite.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2011/09/22/1157119.jpg" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">饭否举起了那把劁刀</font>
                    </a>
                </td>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="用Google自定义搜索代替wordpress默认搜索" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.willyun.com%2Fgoogle-custom-search.html&from=http%3A%2F%2Fwww.willyun.com%2Feverbox-invite.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2011/09/22/459712.gif" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">用Google自定义搜索代替wordpress默认搜索</font>
                    </a>
                </td>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="以祖国花朵之名" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.willyun.com%2Fflowers-motherland.html&from=http%3A%2F%2Fwww.willyun.com%2Feverbox-invite.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2010/10/22/423513.gif" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">以祖国花朵之名</font>
                    </a>
                </td>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="过去" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.willyun.com%2Fpast.html&from=http%3A%2F%2Fwww.willyun.com%2Feverbox-invite.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2011/09/22/423509.jpg" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">过去</font>
                    </a>
                </td>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="对自然保持敬畏之心" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.willyun.com%2Fawe-nature.html&from=http%3A%2F%2Fwww.willyun.com%2Feverbox-invite.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2011/09/22/423499.jpg" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">对自然保持敬畏之心</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.willyun.com/everbox-invite.html/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>饭否举起了那把劁刀</title>
		<link>http://www.willyun.com/fanfou-hexie.html</link>
		<comments>http://www.willyun.com/fanfou-hexie.html#comments</comments>
		<pubDate>Sat, 04 Dec 2010 02:54:37 +0000</pubDate>
		<dc:creator>willyun</dc:creator>
				<category><![CDATA[弄网日志]]></category>
		<category><![CDATA[饭否]]></category>

		<guid isPermaLink="false">http://www.willyun.com/?p=22495</guid>
		<description><![CDATA[十一月底的时候，饭否重新开饭了。十二月三号，王兴写道：我要非常清晰的表明立场: ＂敏感词万岁＂这种用户名在饭否不受欢迎。这名字并不说明你更聪明更有立场，只说明你更不成熟或更适合饭否以外的其他网站。 我不是该“敏感词万岁”，也不是饭否早期的用户，但是在一年多里，我看到了网上满是悼念饭否的帖子；在饭否重新开张的时候，我看到了各种欣喜的面孔。这是任何一个国产网站都未曾达到的境界。所以我迫不及待的注册了饭否，迎面就看到了王兴的这句话。这是房子的主人喊出的一句“送客”吗？ 饭否这个网站，是王兴的，理论上他可以赶走任何他所不喜欢的用户，但是面对“敏感词万岁”这个用户，他没有直接赶他走，而是很礼貌的说：你更适合其他网站。非常绅士。他没有错，他只是想保护自己的孩子不再受到和以前一样的伤害。但是，我却油然生出一丝遗憾。 人们对饭否的念念不忘，除了因为那是他们的第一个微博客，我想很大程度上是因为他们觉得饭否是大家的，是自己人。就像王小波所说，世界上只有两种人，我们的人，和不是我们的人。很显然，自我阉割，而且没事就阉着玩（老罗语）的新浪不是我们的人，但是以前的饭否是的。 在饭否被关闭前的30分钟，王兴说：“被饭否和谐”还是“饭否被和谐”，这是一个并不舒服但却必须做的选择。很显然，当时他选择了后者，那么今天他是否改变了主意？岁月这个小偷真的偷去了太多的东西？ 饭否归来，对于网友们来说，也许精神意义更大一点。但是归来之后，却要踏上自我阉割之路，这让守望了一年半的人们情何以堪。看着那把将要举起的小刀，我忍不住想大叫一声：“刀下留根！”<table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="5"><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="联想老矣，尚能饭否？" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.yuewei.net%2F262.html&from=http%3A%2F%2Fwww.willyun.com%2Ffanfou-hexie.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/images/blogWidget/wordpress_default.gif" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">联想老矣，尚能饭否？ (@yuewei)</font>
                    </a>
                </td>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="仰视45°现象" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.willyun.com%2Flooking-up-45.html&from=http%3A%2F%2Fwww.willyun.com%2Ffanfou-hexie.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2010/09/30/423516.jpg" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">仰视45°现象</font>
                    </a>
                </td>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="蛋疼的chrome to phone安装使用过程" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.willyun.com%2Feggache-chrome-to-phone.html&from=http%3A%2F%2Fwww.willyun.com%2Ffanfou-hexie.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2011/07/29/19531902.png" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">蛋疼的chrome to phone安装使用过程</font>
                    </a>
                </td>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="路上" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.willyun.com%2Fon-the-way.html&from=http%3A%2F%2Fwww.willyun.com%2Ffanfou-hexie.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2011/09/22/423487.jpg" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">路上</font>
                    </a>
                </td>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="用相关文章连通整个互联网(附送无觅网络邀请)" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.willyun.com%2Fwumii-network-related.html&from=http%3A%2F%2Fwww.willyun.com%2Ffanfou-hexie.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2011/09/22/2148434.jpg" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">用相关文章连通整个互联网(附送无觅网络邀请)</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p>十一月底的时候，饭否重新开饭了。十二月三号，王兴写道：我要非常清晰的表明立场: ＂敏感词万岁＂这种用户名在饭否不受欢迎。这名字并不说明你更聪明更有立场，只说明你更不成熟或更适合饭否以外的其他网站。<span id="more-22495"></span></p>
<p>我不是该“敏感词万岁”，也不是饭否早期的用户，但是在一年多里，我看到了网上满是悼念饭否的帖子；在饭否重新开张的时候，我看到了各种欣喜的面孔。这是任何一个国产网站都未曾达到的境界。所以我迫不及待的注册了饭否，迎面就看到了王兴的这句话。这是房子的主人喊出的一句“送客”吗？</p>
<p>饭否这个网站，是王兴的，理论上他可以赶走任何他所不喜欢的用户，但是面对“敏感词万岁”这个用户，他没有直接赶他走，而是很礼貌的说：你更适合其他网站。非常绅士。他没有错，他只是想保护自己的孩子不再受到和以前一样的伤害。但是，我却油然生出一丝遗憾。</p>
<p>人们对饭否的念念不忘，除了因为那是他们的第一个微博客，我想很大程度上是因为他们觉得饭否是大家的，是自己人。就像王小波所说，世界上只有两种人，我们的人，和不是我们的人。很显然，自我阉割，而且没事就阉着玩（老罗语）的新浪不是我们的人，但是以前的饭否是的。</p>
<p>在饭否被关闭前的30分钟，王兴说：“被饭否和谐”还是“饭否被和谐”，这是一个并不舒服但却必须做的选择。很显然，当时他选择了后者，那么今天他是否改变了主意？岁月这个小偷真的偷去了太多的东西？</p>
<p>饭否归来，对于网友们来说，也许精神意义更大一点。但是归来之后，却要踏上自我阉割之路，这让守望了一年半的人们情何以堪。看着那把将要举起的小刀，我忍不住想大叫一声：“刀下留根！”</p>
<p style="margin:0;padding:0;height:1px;overflow:hidden;">
    <script type="text/javascript"><!--
        var wumiiSitePrefix = "http://www.willyun.com";
        var wumiiEnableCustomPos = false;
        var wumiiParams = "&#038;num=7&#038;mode=3&#038;displayInFeed=1&#038;version=1.0.5.5&#038;pf=WordPress3.3.1";
    //--></script><script type="text/javascript" src="http://widget.wumii.com/ext/relatedItemsWidget.htm"></script><a href="http://www.wumii.com/widget/relatedItems.htm" style="border:0;"><img src="http://static.wumii.com/images/pixel.png" alt="无觅相关文章插件，快速提升流量" style="border:0;padding:0;margin:0;" /></a></p>
<table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="5"><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="联想老矣，尚能饭否？" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.yuewei.net%2F262.html&from=http%3A%2F%2Fwww.willyun.com%2Ffanfou-hexie.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/images/blogWidget/wordpress_default.gif" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">联想老矣，尚能饭否？ (@yuewei)</font>
                    </a>
                </td>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="一枚字体导致Photoshop文字显示迟钝" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.willyun.com%2Ffont-photoshop.html&from=http%3A%2F%2Fwww.willyun.com%2Ffanfou-hexie.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2011/09/22/1096717.jpg" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">一枚字体导致Photoshop文字显示迟钝</font>
                    </a>
                </td>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="王小波十三年前为Internet in China写下悼文" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.willyun.com%2Fwang-xiaobo-internet.html&from=http%3A%2F%2Fwww.willyun.com%2Ffanfou-hexie.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2011/02/27/2983910.jpg" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">王小波十三年前为Internet in China写下悼文</font>
                    </a>
                </td>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="博客广告平台拿福能" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.willyun.com%2Fnuffnang.html&from=http%3A%2F%2Fwww.willyun.com%2Ffanfou-hexie.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2011/09/24/24829061.jpg" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">博客广告平台拿福能</font>
                    </a>
                </td>
                <td width="106" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="天使奥黛丽" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.willyun.com%2Faudrey-angel.html&from=http%3A%2F%2Fwww.willyun.com%2Ffanfou-hexie.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 100px !important; height: 100px !important;" src="http://static.wumii.com/site_images/2010/10/02/423508.jpg" width="100px" height="100px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 106px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">天使奥黛丽</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.willyun.com/fanfou-hexie.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

