<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>恍惚之中</title>
	<atom:link href="http://www.84tt.com/web/feed" rel="self" type="application/rss+xml" />
	<link>http://www.84tt.com/web</link>
	<description>关注互联网产品、交互设计、用户体验</description>
	<lastBuildDate>Mon, 14 May 2012 10:05:01 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>关于使用又拍云存储提升WordPress网站性能的几点讨论</title>
		<link>http://www.84tt.com/web/2012/05/628.html</link>
		<comments>http://www.84tt.com/web/2012/05/628.html#comments</comments>
		<pubDate>Fri, 11 May 2012 15:31:22 +0000</pubDate>
		<dc:creator>Summer</dc:creator>
				<category><![CDATA[互联网相关]]></category>
		<category><![CDATA[网站性能优化]]></category>
		<category><![CDATA[讨论]]></category>
		<category><![CDATA[upyun]]></category>
		<category><![CDATA[W3 Total Cache]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[又拍云]]></category>

		<guid isPermaLink="false">http://www.84tt.com/web/?p=628</guid>
		<description><![CDATA[5月2日收到Eyon童鞋的邮件，他就《利用缓存插件W3TC与又拍云构建WordPress全站CDN》一文提出了一些问题。整理了一下我们之间的讨论，汇总如下。 先简单地进行了一个分析： 以WP作为CMS进行应用的，主要集中在内容发布上以及访问者的评论互动。 针对这一点，你可能会尝试提升网站性能，让访问者能获得更好的体验。一般来看，CMS平台可以从两个方面进行优化：动态请求与静态请求。 对于动态请求，我们可以查看MySQL的请求数量来评估是否需要进一步优化。W3TC这款插件可以将页面的SQL查询以及页面Object缓存在Web服务器磁盘上（如果使用VPS或独立主机，也可以尝试配置memcached等内存级缓存），这样就可以完成了对于动态请求的缓存，对于首页以及访问量高的页面效果会比较显著。同时，也可以修改对WP模板中的一些不必要查询静态化处理，比如RSS地址、CSS路径等。如果发表评论比较频繁，这块可能会压力较大，可以考虑使用类似“多说”这样的社会化评论系统——评论提交、过滤以及展示均由多说处理，评论内容同时备份到WP数据库，以便日后随时切换。 我们再来看静态请求。通常是指CSS、JS、文章中插入的附件等静态文件，这时候又拍云就可以出马了。它实际上起到了“带有CDN服务的云存储”的作用。配合W3TC插件，可以在不改变原有配置的情况下，将这些静态资源在Web服务器本身上传的同时，也发送一份到又拍云。而访问者在浏览时会根据自己的网络就近请求又拍云上的资源（这一步的原理类似CDN）。 接下来，再一起来看提出的几个问题。 Q1: 使用又拍云做全站 CDN ，是不是就不需要使用某插件将图片单独传到又拍云了呢？ A: 准确的说，是使用了W3TC这款插件后，不再需要使用别的插件单独上传图片到又拍云了。 Q2: 如何保证在用户访问页面时，本应该缓存在本地的数据能够在瞬间缓存到又拍云上呢？（上传速度有那么快么） A: 这其实就是上面分析的第三点了，用户访问时缓存在本地Web服务器上的是动态请求这一部分，它不应该也不会被发送至又拍云。 Q3: 缓存页面都有个过期时间，是不是在页面过期之后，用户访问又得从原服务器请求一次呢？ A: 是的。本地缓存过期时间可以在W3TC中设置。 Q4: 缓存页面是将 header、footer 等内容都缓存到一个完整的页面上，那么是不是每次请求这个缓存时，其实产生了一些不必要的流量呢？ A: 这依然需要看第三点，其实缓存header、footer这些，目的是为了减少动态查询，节约的重点不是流量而是Web服务器资源。 Q5: 如果想要让用户访问起来看不到任何区别，是不是就应该绑定网站的主域名，而不是一个二级域名呢？ A: 这其实你是说的全局CDN服务了，又拍云是无法实现的，恐怕只能购买传统CDN服务商的服务了。又拍云的静态缓存，可以使用其提供的三级域名，也可以绑定二级域名。 Q6: 说说这个方案的缺点吧。 A: 毫无疑问，它对于站长而言，产生了除Web主机外的一笔新支出:) 所以，首先就有必要平衡是否需要这项服务，当然，相对于传统CDN的计费方式与价格而言，又拍云毫无疑问亲切很多。除此之外，会有一些在修改模板时有一些不方便，需要将模板中调用的静态文件在修改后再更新一次到又拍云上。 Q7: 上传的图片或者附件会首先在本地，那么再通过w3tc缓存插件上传/缓存到又拍云，是必然需要一个过程和时间的，那么这个时间是多长，你有没有研究过？ A: 因为我用的是美国主机，目前看上传附件推送到又拍云的时间相对于上传到Web服务器本身而言，已可忽略不计，个人未感知到延迟。国内主机尚未尝试过。 Q8: 如果我在后台通过 w3tc清空缓存，它是否会清空又拍云上的缓存内容？还是需要我到又拍云后台中手动刷新缓存？ A: 如前文所述，在W3TC配置中清空的缓存是页面的动态缓存，存放在Web服务器磁盘（或内存）中的，与又拍云上的静态资源并无关系。 Q9: 这两种方案哪种比较好？第一种会不会省一部分流量呢？ A: 经过之前的一番折腾之后，我个人倾向于第二种。第一种并不会节约流量，相反会提升WP的复杂度，需要手工编辑theme中的各种路径，而wp-includes下面的js是有可能在WP自动升级时被更新的，这样每次都需要重新上传到又拍云，比较麻烦。之所以当时选择了W3TC，主要就是觉得它对于网站而言是透明的，即便因为某种原因需要暂停又拍云或其他CDN服务，也可以灵活切换会Web服务器本身。 &#160; 最后，特别需要说明的是，以上的讨论仅限于我自己平时的有限折腾经历及思考，如有谬误或更好的解决方案，欢迎在评论中指出，先行谢过:） &#160; © Summer for 恍惚之中, [...]<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="102" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="利用缓存插件W3TC与又拍云构建WordPress全站CDN" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F03%2F608.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F05%2F628.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2012/03/28/18304565.jpg" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">利用缓存插件W3TC与又拍云构建WordPress全站CDN</font>
                    </a>
                </td>
                <td width="102" 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?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F04%2F615.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F05%2F628.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2012/04/15/19524673.jpg" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !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="102" 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?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2011%2F12%2F258.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F05%2F628.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/12/07/12036111.jpg" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !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="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="WordPress 2.5 gzip启用问题" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2008%2F04%2F193.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F05%2F628.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/08/25/23526863.png" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">WordPress 2.5 gzip启用问题</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="循序渐进玩转WordPress" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2007%2F08%2F182.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F05%2F628.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://wpthemesnow.com/wp-content/uploads/2012/03/wordpress-must-dos.jpg" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">循序渐进玩转WordPress</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems" 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>5月2日收到<a href="http://twitter.com/1yon" target="_blank">Eyon</a>童鞋的邮件，他就《<a href="http://www.84tt.com/web/2012/03/608.html" target="_blank">利用缓存插件W3TC与又拍云构建WordPress全站CDN</a>》一文提出了一些问题。整理了一下我们之间的讨论，汇总如下。</p>
<p>先简单地进行了一个分析：</p>
<ul>
<li>以WP作为CMS进行应用的，主要集中在内容发布上以及访问者的评论互动。</li>
<li>针对这一点，你可能会尝试提升网站性能，让访问者能获得更好的体验。一般来看，CMS平台可以从两个方面进行优化：动态请求与静态请求。</li>
<li>对于动态请求，我们可以查看MySQL的请求数量来评估是否需要进一步优化。W3TC这款插件可以将页面的SQL查询以及页面Object缓存在Web服务器磁盘上（如果使用VPS或独立主机，也可以尝试配置memcached等内存级缓存），这样就可以完成了对于动态请求的缓存，对于首页以及访问量高的页面效果会比较显著。同时，也可以修改对WP模板中的一些不必要查询静态化处理，比如RSS地址、CSS路径等。如果发表评论比较频繁，这块可能会压力较大，可以考虑使用类似“<a href="http://duoshuo.com" target="_blank">多说</a>”这样的社会化评论系统——评论提交、过滤以及展示均由多说处理，评论内容同时备份到WP数据库，以便日后随时切换。</li>
<li>我们再来看静态请求。通常是指CSS、JS、文章中插入的附件等静态文件，这时候又拍云就可以出马了。它实际上起到了“带有CDN服务的云存储”的作用。配合W3TC插件，可以在不改变原有配置的情况下，将这些静态资源在Web服务器本身上传的同时，也发送一份到又拍云。而访问者在浏览时会根据自己的网络就近请求又拍云上的资源（这一步的原理类似CDN）。</li>
</ul>
<p>接下来，再一起来看提出的几个问题。</p>
<p><span id="more-628"></span></p>
<p><strong>Q1: 使用又拍云做全站 CDN ，是不是就不需要使用某插件将图片单独传到又拍云了呢？</strong><br />
A: 准确的说，是使用了W3TC这款插件后，不再需要使用别的插件单独上传图片到又拍云了。</p>
<p><strong>Q2: 如何保证在用户访问页面时，本应该缓存在本地的数据能够在瞬间缓存到又拍云上呢？（上传速度有那么快么）</strong><br />
A: 这其实就是上面分析的第三点了，用户访问时缓存在本地Web服务器上的是动态请求这一部分，它不应该也不会被发送至又拍云。</p>
<p><strong>Q3: 缓存页面都有个过期时间，是不是在页面过期之后，用户访问又得从原服务器请求一次呢？</strong><br />
A: 是的。本地缓存过期时间可以在W3TC中设置。</p>
<p><strong>Q4: 缓存页面是将 header、footer 等内容都缓存到一个完整的页面上，那么是不是每次请求这个缓存时，其实产生了一些不必要的流量呢？</strong><br />
A: 这依然需要看第三点，其实缓存header、footer这些，目的是为了减少动态查询，节约的重点不是流量而是Web服务器资源。</p>
<p><strong>Q5: 如果想要让用户访问起来看不到任何区别，是不是就应该绑定网站的主域名，而不是一个二级域名呢？</strong><br />
A: 这其实你是说的全局CDN服务了，又拍云是无法实现的，恐怕只能购买传统CDN服务商的服务了。又拍云的静态缓存，可以使用其提供的三级域名，也可以绑定二级域名。</p>
<p><strong>Q6: 说说这个方案的缺点吧。</strong><br />
A: 毫无疑问，它对于站长而言，产生了除Web主机外的一笔新支出:) 所以，首先就有必要平衡是否需要这项服务，当然，相对于传统CDN的计费方式与价格而言，又拍云毫无疑问亲切很多。除此之外，会有一些在修改模板时有一些不方便，需要将模板中调用的静态文件在修改后再更新一次到又拍云上。</p>
<p><strong>Q7: 上传的图片或者附件会首先在本地，那么再通过w3tc缓存插件上传/缓存到又拍云，是必然需要一个过程和时间的，那么这个时间是多长，你有没有研究过？</strong><br />
A: 因为我用的是美国主机，目前看上传附件推送到又拍云的时间相对于上传到Web服务器本身而言，已可忽略不计，个人未感知到延迟。国内主机尚未尝试过。</p>
<p><strong>Q8: 如果我在后台通过 w3tc清空缓存，它是否会清空又拍云上的缓存内容？还是需要我到又拍云后台中手动刷新缓存？</strong><br />
A: 如前文所述，在W3TC配置中清空的缓存是页面的动态缓存，存放在Web服务器磁盘（或内存）中的，与又拍云上的静态资源并无关系。</p>
<p><strong>Q9: 这两种方案哪种比较好？第一种会不会省一部分流量呢？</strong><br />
A: 经过之前的一番折腾之后，我个人倾向于第二种。第一种并不会节约流量，相反会提升WP的复杂度，需要手工编辑theme中的各种路径，而wp-includes下面的js是有可能在WP自动升级时被更新的，这样每次都需要重新上传到又拍云，比较麻烦。之所以当时选择了W3TC，主要就是觉得它对于网站而言是透明的，即便因为某种原因需要暂停又拍云或其他CDN服务，也可以灵活切换会Web服务器本身。</p>
<p>&nbsp;</p>
<p>最后，特别需要说明的是，以上的讨论仅限于我自己平时的有限折腾经历及思考，如有谬误或更好的解决方案，欢迎在评论中指出，先行谢过:）</p>
<p>&nbsp;</p>
<hr />
<p><small>© Summer for <a href="http://www.84tt.com/web" target="_blank">恍惚之中</a>, 2012. | <a href="http://www.84tt.com/web/2012/05/628.html" target="_blank">Permalink</a> |
<a href="http://www.84tt.com/web/2012/05/628.html#comments" target="_blank">No comment</a> | <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/2.5/cn/"><img alt="知识共享许可协议" style="border-width:0" src="http://i.creativecommons.org/l/by-nc-sa/2.5/cn/80x15.png" /></a>
<br />
Post tags: <a href="http://www.84tt.com/web/tag/%e7%bd%91%e7%ab%99%e6%80%a7%e8%83%bd%e4%bc%98%e5%8c%96" rel="tag">网站性能优化</a>, <a href="http://www.84tt.com/web/tag/%e8%ae%a8%e8%ae%ba" rel="tag">讨论</a>, <a href="http://www.84tt.com/web/tag/upyun" rel="tag">upyun</a>, <a href="http://www.84tt.com/web/tag/w3-total-cache" rel="tag">W3 Total Cache</a>, <a href="http://www.84tt.com/web/tag/wordpress" rel="tag">WordPress</a>, <a href="http://www.84tt.com/web/tag/%e5%8f%88%e6%8b%8d%e4%ba%91" rel="tag">又拍云</a><br/></small>
</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="102" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="利用缓存插件W3TC与又拍云构建WordPress全站CDN" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F03%2F608.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F05%2F628.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2012/03/28/18304565.jpg" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">利用缓存插件W3TC与又拍云构建WordPress全站CDN</font>
                    </a>
                </td>
                <td width="102" 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?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F04%2F615.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F05%2F628.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2012/04/15/19524673.jpg" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !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="102" 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?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2011%2F12%2F258.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F05%2F628.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/12/07/12036111.jpg" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !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="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="WordPress 2.5 gzip启用问题" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2008%2F04%2F193.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F05%2F628.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/08/25/23526863.png" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">WordPress 2.5 gzip启用问题</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="循序渐进玩转WordPress" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2007%2F08%2F182.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F05%2F628.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://wpthemesnow.com/wp-content/uploads/2012/03/wordpress-must-dos.jpg" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">循序渐进玩转WordPress</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems" 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.84tt.com/web/2012/05/628.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>如何破解上海电信宽带贝尔RG201O-CA型光猫？</title>
		<link>http://www.84tt.com/web/2012/05/620.html</link>
		<comments>http://www.84tt.com/web/2012/05/620.html#comments</comments>
		<pubDate>Thu, 03 May 2012 16:25:42 +0000</pubDate>
		<dc:creator>Summer</dc:creator>
				<category><![CDATA[杂谈]]></category>
		<category><![CDATA[互联网相关]]></category>
		<category><![CDATA[破解]]></category>
		<category><![CDATA[贝尔]]></category>
		<category><![CDATA[RG201O-CA]]></category>
		<category><![CDATA[光猫]]></category>
		<category><![CDATA[上海电信]]></category>

		<guid isPermaLink="false">http://www.84tt.com/web/?p=620</guid>
		<description><![CDATA[上海电信宽带E8套餐装好后，我拿到的贝尔光猫基本信息如下表，请特别注意红色部分的软件版本号。 设备型号 RG201O-CA 硬件版本 V1.0 适用地区 中国电信 软件版本 RG201O-CA_V1.6ES 固件版本 E230 破解步骤如下： 用网线连接光猫的LAN口与电脑网卡（注意：不要连到第二个标有iTV的LAN口上）。 点击这里下载嗅探程序，解压缩后运行，输入光猫背面的 useradmin 密码，然后点“上帝保佑，手气不错”按钮，即可显示出超级管理员密码。 用超管用户名telecomadmin与上一步中拿到的超管密码登录 http://192.168.1.1 。 在浏览器地址栏中输入 http://192.168.1.1/backupsettings.conf 并敲回车就可以自动下载配置文件（注意：只有软件版本是1.6ES的光猫才需要这样做，1.5 以前版本可以直接用useradmin登录后下载配置文件，不必如此折腾）。 修改配置文件吧——调整最大终端数、禁止远程修改密码等，Geek们可以开始各种折腾。注意备份就好。 再在浏览器地址栏输入 http://192.168.1.1/updatesettings.html 并敲回车进入上传配置文件的页面，把改好的配置重新传进光猫。 当然，这一版本光猫即便不破解，也是可以正常带超过5个终端的。 我使用了TP-LINK的TD-W89541G无线路由器，将其WAN与光猫的LAN口相连接（光猫的第二个LAN口是留给iTV的，接口上有标识，不要占用）。在TD-W89541G中，将系统模式设为“无线路由”。 然后在“LAN口设置”中，将LAN口的IP改为：192.168.0.1 。这样就不与光猫在同一个网段了。 接着修改“WAN口设置”，连接类型选择“动态IP”就好，它会自动从光猫上获取的。DNS服务器建议更换一下，不要用电信提供的，避免恶心的114搜索广告，可用的DNS服务器列表可参考这里。 最后，配置相应的无线设置就好了。实际证明，也不会受到光猫默认最多5个终端的限制。不爱折腾的朋友可以这样处理，毕竟家里无线路由器总归都会有的:) &#160; 参考文章： 电信光纤 贝尔RG201O-CA 光猫破解限制 电信光纤贝尔 RG201O-CA 路由一体光猫 1.6ES 版破解 &#160; © Summer for 恍惚之中, 2012. &#124; Permalink &#124; No comment &#124; [...]<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="102" 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?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2008%2F05%2F201.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F05%2F620.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://www.84tt.com/blog/wp-content/uploads/2011/01/android.jpg" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !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="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="Axure中文输入问题的解决之道" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2010%2F03%2F230.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F05%2F620.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2012/02/09/15110754.jpg" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Axure中文输入问题的解决之道</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="来自August Interactive：免费下载91枚矢量图标" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2011%2F12%2F553.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F05%2F620.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2012/03/22/17912599.jpg" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">来自August Interactive：免费下载91枚矢量图标</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="FeedSky新版上线了？" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2007%2F04%2F83.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F05%2F620.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/07/07/462892.jpg" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">FeedSky新版上线了？</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="叽歪.de：需要加油！" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2007%2F09%2F187.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F05%2F620.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://a3.att.hudong.com/02/46/01300000018420123459461569360_s.jpg" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">叽歪.de：需要加油！</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems" 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>上海电信宽带E8套餐装好后，我拿到的贝尔光猫基本信息如下表，请特别注意红色部分的软件版本号。</p>
<table width="392" border="1" cellspacing="0" cellpadding="4">
<tbody>
<tr>
<td width="100">设备型号</td>
<td>RG201O-CA</td>
</tr>
<tr>
<td>硬件版本</td>
<td>V1.0</td>
</tr>
<tr>
<td>适用地区</td>
<td>中国电信</td>
</tr>
<tr>
<td>软件版本</td>
<td>RG201O-CA_<span style="color: #ff0000;"><strong>V1.6ES</strong></span></td>
</tr>
<tr>
<td>固件版本</td>
<td>E230</td>
</tr>
</tbody>
</table>
<p>破解步骤如下：</p>
<ol>
<li>用网线连接光猫的LAN口与电脑网卡（注意：不要连到第二个标有iTV的LAN口上）。</li>
<li><a href="http://static4blog.84tt.com/web/wp-content/uploads/2012/05/telecomadmin.rar" target="_blank">点击这里</a>下载嗅探程序，解压缩后运行，输入光猫背面的 useradmin 密码，然后点“上帝保佑，手气不错”按钮，即可显示出超级管理员密码。</li>
<li>用超管用户名telecomadmin与上一步中拿到的超管密码登录 http://192.168.1.1 。</li>
<li>在浏览器地址栏中输入 http://192.168.1.1/backupsettings.conf 并敲回车就可以自动下载配置文件（注意：只有软件版本是<span style="color: #ff0000;"><strong>1.6ES</strong></span>的光猫才需要这样做，1.5 以前版本可以直接用useradmin登录后下载配置文件，不必如此折腾）。</li>
<li>修改配置文件吧——调整最大终端数、禁止远程修改密码等，Geek们可以开始各种折腾。注意备份就好。</li>
<li>再在浏览器地址栏输入 http://192.168.1.1/updatesettings.html 并敲回车进入上传配置文件的页面，把改好的配置重新传进光猫。</li>
</ol>
<p><a href="http://static4blog.84tt.com/web/wp-content/uploads/2012/05/RG201O-CA.jpg"><img class="alignnone size-large wp-image-622" title="RG201O-CA破解成功截图" src="http://static4blog.84tt.com/web/wp-content/uploads/2012/05/RG201O-CA-450x205.jpg" alt="" width="450" height="205" data-pinit="registered" /></a></p>
<p>当然，这一版本光猫即便不破解，也是可以正常带超过5个终端的。</p>
<p><span id="more-620"></span></p>
<p>我使用了TP-LINK的TD-W89541G无线路由器，将其WAN与光猫的LAN口相连接（光猫的第二个LAN口是留给iTV的，接口上有标识，不要占用）。在TD-W89541G中，将系统模式设为“无线路由”。</p>
<p><a href="http://static4blog.84tt.com/web/wp-content/uploads/2012/05/TD-W89541G-1.jpg"><img class="alignnone size-large wp-image-623" title="TD-W89541G-1" src="http://static4blog.84tt.com/web/wp-content/uploads/2012/05/TD-W89541G-1-450x221.jpg" alt="" width="450" height="221" data-pinit="registered" /></a></p>
<p>然后在“LAN口设置”中，将LAN口的IP改为：192.168.0.1 。这样就不与光猫在同一个网段了。</p>
<p><a href="http://static4blog.84tt.com/web/wp-content/uploads/2012/05/TD-W89541G-2.jpg"><img class="alignnone size-large wp-image-624" title="TD-W89541G-2" src="http://static4blog.84tt.com/web/wp-content/uploads/2012/05/TD-W89541G-2-450x244.jpg" alt="" width="450" height="244" data-pinit="registered" /></a></p>
<p>接着修改“WAN口设置”，连接类型选择“动态IP”就好，它会自动从光猫上获取的。DNS服务器建议更换一下，不要用电信提供的，避免恶心的114搜索广告，可用的DNS服务器列表可<a href="http://www.84tt.com/web/2012/02/604.html" target="_blank">参考这里</a>。</p>
<p><a href="http://static4blog.84tt.com/web/wp-content/uploads/2012/05/TD-W89541G-3.jpg"><img class="alignnone size-large wp-image-625" title="TD-W89541G-3" src="http://static4blog.84tt.com/web/wp-content/uploads/2012/05/TD-W89541G-3-450x233.jpg" alt="" width="450" height="233" data-pinit="registered" /></a></p>
<p>最后，配置相应的无线设置就好了。实际证明，也不会受到光猫默认最多5个终端的限制。不爱折腾的朋友可以这样处理，毕竟家里无线路由器总归都会有的:)</p>
<p>&nbsp;</p>
<p>参考文章：</p>
<ul>
<li><a href="http://www.0x123.com/x/387.html" target="_blank">电信光纤 贝尔RG201O-CA 光猫破解限制</a></li>
<li><a href="http://blog.hutiecheng.com/read.php?128" target="_blank">电信光纤贝尔 RG201O-CA 路由一体光猫 1.6ES 版破解</a></li>
</ul>
<p>&nbsp;</p>
<hr />
<p><small>© Summer for <a href="http://www.84tt.com/web" target="_blank">恍惚之中</a>, 2012. | <a href="http://www.84tt.com/web/2012/05/620.html" target="_blank">Permalink</a> |
<a href="http://www.84tt.com/web/2012/05/620.html#comments" target="_blank">No comment</a> | <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/2.5/cn/"><img alt="知识共享许可协议" style="border-width:0" src="http://i.creativecommons.org/l/by-nc-sa/2.5/cn/80x15.png" /></a>
<br />
Post tags: <a href="http://www.84tt.com/web/tag/%e7%a0%b4%e8%a7%a3" rel="tag">破解</a>, <a href="http://www.84tt.com/web/tag/%e8%b4%9d%e5%b0%94" rel="tag">贝尔</a>, <a href="http://www.84tt.com/web/tag/rg201o-ca" rel="tag">RG201O-CA</a>, <a href="http://www.84tt.com/web/tag/%e5%85%89%e7%8c%ab" rel="tag">光猫</a>, <a href="http://www.84tt.com/web/tag/%e4%b8%8a%e6%b5%b7%e7%94%b5%e4%bf%a1" rel="tag">上海电信</a><br/></small>
</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="102" 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?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2008%2F05%2F201.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F05%2F620.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://www.84tt.com/blog/wp-content/uploads/2011/01/android.jpg" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !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="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="OpenID (身份网址)" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2007%2F04%2F81.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F05%2F620.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2012/04/04/17915006.png" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">OpenID (身份网址)</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="快车 FlashGet 1.82 简体中文版" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2007%2F03%2F34.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F05%2F620.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://www.file-extensions.org/imgs/app-picture/4859/flashget.jpg" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">快车 FlashGet 1.82 简体中文版</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="Axure中文输入问题的解决之道" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2010%2F03%2F230.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F05%2F620.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2012/02/09/15110754.jpg" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Axure中文输入问题的解决之道</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="QQ邮箱、Foxmail 同时升级" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2007%2F04%2F104.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F05%2F620.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2012/05/17/22755527.png" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">QQ邮箱、Foxmail 同时升级</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems" 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.84tt.com/web/2012/05/620.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>又拍云优惠码：新购续费均有折扣</title>
		<link>http://www.84tt.com/web/2012/04/615.html</link>
		<comments>http://www.84tt.com/web/2012/04/615.html#comments</comments>
		<pubDate>Sun, 15 Apr 2012 05:21:36 +0000</pubDate>
		<dc:creator>Summer</dc:creator>
				<category><![CDATA[互联网相关]]></category>
		<category><![CDATA[upyun]]></category>
		<category><![CDATA[又拍云]]></category>
		<category><![CDATA[价格]]></category>
		<category><![CDATA[优惠码]]></category>

		<guid isPermaLink="false">http://www.84tt.com/web/?p=615</guid>
		<description><![CDATA[又拍云前阵子推出了优惠码制度，凡使用优惠码下单的用户，均可享受95折优惠。没多久，我就收到又拍云运营人员发给我的优惠码，现在将其贴出来，供有计划购买又拍云服务的朋友自行取用。 使用方法： 如上图所示，在购买流量或空间配额时，在提交订单前，点击“请点击”链接即可弹出输入推荐码的浮动层，将在本文中列出的优惠码填入其中就行。 Ps: 为了节约大家的时间，麻烦请使用了下列优惠码的朋友，将用过的优惠码贴在本文评论中，以免其他童鞋还需逐一尝试。 &#160; 03A1AC113409229B（锁定中） BF4D57796BAC7FF3（锁定中） C575B2105379F36C DB246BEC68CC9DBB DD009E2439AA611D E6438AB5738DE816 EB241174E3623130 F1A1112A3293C614 F9AF9B06550BA0ED 9CC1755C28865FA2（锁定中） 93181F0AAEADACFD（锁定中） 070A7EC1F0EC5EB3 3664985B5504F130 3A43DC3F163EA447（锁定中） 4304CE2DE087E125 440FD37A6F18CC13（锁定中） 4D97CBFAED1817AF 5A8E60AB512A7897 706804C390EFAC99（已使用） FF2CE51829A8A248（锁定中） &#160; ====2012.04.24 更新==== 板子在围脖上提到了服务价格的问题，我再补充说明一下——这应该不是又拍云的机密信息吧:D 又拍云的服务价格是由存储费用+流量费用两部分构成。 存储费用为每月0.90元/GB，可选择一个月、三个月、六个月、十二个月弹性续费；流量费用有四档套餐包可选：99元-100GB、199元-250GB、399元-600GB、599元-1000GB。 这两部分均可根据自己的实际需要进行购买，如果不够用也可以随时灵活补充。 &#160; © Summer for 恍惚之中, 2012. &#124; Permalink &#124; 2 comments &#124; Post tags: upyun, 又拍云, 价格, 优惠码<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="102" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="关于使用又拍云存储提升WordPress网站性能的几点讨论" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F05%2F628.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F04%2F615.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2012/05/12/14492440.jpg" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">关于使用又拍云存储提升WordPress网站性能的几点讨论</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="利用缓存插件W3TC与又拍云构建WordPress全站CDN" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F03%2F608.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F04%2F615.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2012/03/28/18304565.jpg" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">利用缓存插件W3TC与又拍云构建WordPress全站CDN</font>
                    </a>
                </td>
                <td width="102" 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?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2011%2F12%2F258.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F04%2F615.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/12/07/12036111.jpg" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !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="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="Flickr又回来了" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2007%2F09%2F183.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F04%2F615.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2012/04/30/23500897.jpg" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Flickr又回来了</font>
                    </a>
                </td>
                <td width="102" 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?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2007%2F06%2F160.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F04%2F615.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://www.84tt.com/blog/wp-content/uploads/2011/01/android.jpg" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !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" 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><a href="http://www.upyun.com" target="_blank">又拍云</a>前阵子推出了优惠码制度，凡使用优惠码下单的用户，均可享受95折优惠。没多久，我就收到又拍云运营人员发给我的优惠码，现在将其贴出来，供有计划购买又拍云服务的朋友自行取用。</p>
<p><a href="http://static4blog.84tt.com/web/wp-content/uploads/2012/04/upyun-coupons.jpg"><img title="又拍云优惠码试用方法" src="http://static4blog.84tt.com/web/wp-content/uploads/2012/04/upyun-coupons-450x172.jpg" alt="又拍云优惠码试用方法" width="450" height="172" data-pinit="registered" /></a></p>
<p><strong>使用方法：</strong></p>
<p>如上图所示，在购买流量或空间配额时，在提交订单前，点击“请点击”链接即可弹出输入推荐码的浮动层，将在本文中列出的优惠码填入其中就行。</p>
<p>Ps: 为了节约大家的时间，麻烦请使用了下列优惠码的朋友，将用过的优惠码贴在本文评论中，以免其他童鞋还需逐一尝试。</p>
<p>&nbsp;</p>
<p><span id="more-615"></span></p>
<p><del>03A1AC113409229B</del>（锁定中）<br />
<del>BF4D57796BAC7FF3</del>（锁定中）<br />
C575B2105379F36C<br />
DB246BEC68CC9DBB<br />
DD009E2439AA611D<br />
E6438AB5738DE816<br />
EB241174E3623130<br />
F1A1112A3293C614<br />
F9AF9B06550BA0ED<br />
<del>9CC1755C28865FA2</del>（锁定中）<br />
<del>93181F0AAEADACFD</del>（锁定中）<br />
070A7EC1F0EC5EB3<br />
3664985B5504F130<br />
<del>3A43DC3F163EA447</del>（锁定中）<br />
4304CE2DE087E125<br />
<del datetime="2012-04-24T01:46:41+00:00">440FD37A6F18CC13</del>（锁定中）<br />
4D97CBFAED1817AF<br />
5A8E60AB512A7897<br />
<del>706804C390EFAC99</del>（已使用）<br />
<del>FF2CE51829A8A248</del>（锁定中）</p>
<p>&nbsp;</p>
<p><strong>====2012.04.24 更新====</strong></p>
<p><a href="http://blog.thephper.com/" target="_blank">板子</a>在<a href="http://weibo.com/1626152284/yg3FcjteM" target="_blank">围脖</a>上提到了服务价格的问题，我再补充说明一下——这应该不是又拍云的机密信息吧:D</p>
<ul>
<li>又拍云的服务价格是由存储费用+流量费用两部分构成。</li>
<li>存储费用为每月0.90元/GB，可选择一个月、三个月、六个月、十二个月弹性续费；流量费用有四档套餐包可选：99元-100GB、199元-250GB、399元-600GB、599元-1000GB。</li>
<li>这两部分均可根据自己的实际需要进行购买，如果不够用也可以随时灵活补充。</li>
</ul>
<p>&nbsp;</p>
<hr />
<p><small>© Summer for <a href="http://www.84tt.com/web" target="_blank">恍惚之中</a>, 2012. | <a href="http://www.84tt.com/web/2012/04/615.html" target="_blank">Permalink</a> |
<a href="http://www.84tt.com/web/2012/04/615.html#comments" target="_blank">2 comments</a> | <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/2.5/cn/"><img alt="知识共享许可协议" style="border-width:0" src="http://i.creativecommons.org/l/by-nc-sa/2.5/cn/80x15.png" /></a>
<br />
Post tags: <a href="http://www.84tt.com/web/tag/upyun" rel="tag">upyun</a>, <a href="http://www.84tt.com/web/tag/%e5%8f%88%e6%8b%8d%e4%ba%91" rel="tag">又拍云</a>, <a href="http://www.84tt.com/web/tag/%e4%bb%b7%e6%a0%bc" rel="tag">价格</a>, <a href="http://www.84tt.com/web/tag/%e4%bc%98%e6%83%a0%e7%a0%81" rel="tag">优惠码</a><br/></small>
</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="102" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="关于使用又拍云存储提升WordPress网站性能的几点讨论" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F05%2F628.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F04%2F615.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2012/05/12/14492440.jpg" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">关于使用又拍云存储提升WordPress网站性能的几点讨论</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="利用缓存插件W3TC与又拍云构建WordPress全站CDN" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F03%2F608.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F04%2F615.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2012/03/28/18304565.jpg" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">利用缓存插件W3TC与又拍云构建WordPress全站CDN</font>
                    </a>
                </td>
                <td width="102" 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?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2011%2F12%2F258.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F04%2F615.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/12/07/12036111.jpg" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !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="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="Flickr又回来了" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2007%2F09%2F183.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F04%2F615.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2012/04/30/23500897.jpg" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Flickr又回来了</font>
                    </a>
                </td>
                <td width="102" 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?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2007%2F06%2F160.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F04%2F615.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://www.84tt.com/blog/wp-content/uploads/2011/01/android.jpg" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !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" 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.84tt.com/web/2012/04/615.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>利用缓存插件W3TC与又拍云构建WordPress全站CDN</title>
		<link>http://www.84tt.com/web/2012/03/608.html</link>
		<comments>http://www.84tt.com/web/2012/03/608.html#comments</comments>
		<pubDate>Tue, 27 Mar 2012 13:27:47 +0000</pubDate>
		<dc:creator>Summer</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[互联网相关]]></category>
		<category><![CDATA[upyun]]></category>
		<category><![CDATA[W3 Total Cache]]></category>
		<category><![CDATA[又拍]]></category>
		<category><![CDATA[插件]]></category>

		<guid isPermaLink="false">http://www.84tt.com/web/?p=608</guid>
		<description><![CDATA[又拍云是一个好东东，自从去年年底使用至今，稳定靠谱，价格适中，部署简单。之前有分享过使用Hacklog Remote Attachment插件来实现将WordPress的附件上传至又拍云。不过这一方法略有遗憾之处在于，无法便捷地将整个WP站点中的静态文件推送至又拍云。今天再介绍另一个方法，利用经典缓存插件W3 Total Cache与又拍云一起来实现WordPress全站CDN，具体步骤及要点如下： 1. 安装好W3 Total Cache插件，并启用。 2. 在W3 Total Cache的General Setting中启用CDN，并将类型选为Self-hosted，如下图所示。 3. 在插件的CDN选项中，勾选以下这些。其他的选项可以根据自己的实际情况选择是否开启。 4. 配置中，填入在又拍后台中设定的FTP用户名、密码等信息，FTP主机推荐使用v0.ftp.upyun.com。FTP路径建议根据自己域名下的实际路径填写；如果网站中的子站为二级域名，最好每个单独创建又拍存储空间。主机名中，可根据自己的情况填写，如果在又拍上绑定过独立域名，可填写独立域名；最后不要忘记点击Add CNAME。 5. 这些都设置好了之后，最后一步就是将当前空间中的附件、JS以及wp-includes等静态文件都用FTP上传至又拍空间即可。 &#160; 最终采用这样组合的好处是： 可以将WordPress整站的静态文件都推送到又拍云的CDN服务中； 更新内容时上传的附件，会正常存储在WP所在服务器并推送至又拍云，访客浏览时会自动请求又拍云，数据双保险且无任何额外操作； 在WP后台修改模板等，也会被更新到又拍云； 日后如果需要更换CDN服务，期间网站访问基本不会受到影响。 &#160; © Summer for 恍惚之中, 2012. &#124; Permalink &#124; 34 comments &#124; Post tags: upyun, W3 Total Cache, WordPress, 又拍, 插件<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="102" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="关于使用又拍云存储提升WordPress网站性能的几点讨论" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F05%2F628.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F03%2F608.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2012/05/12/14492440.jpg" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">关于使用又拍云存储提升WordPress网站性能的几点讨论</font>
                    </a>
                </td>
                <td width="102" 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?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2011%2F12%2F258.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F03%2F608.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/12/07/12036111.jpg" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !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="102" 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?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F04%2F615.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F03%2F608.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2012/04/15/19524673.jpg" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !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="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="WordPress 2.5 gzip启用问题" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2008%2F04%2F193.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F03%2F608.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/08/25/23526863.png" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">WordPress 2.5 gzip启用问题</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="WordPress数据库备份插件" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2007%2F03%2F16.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F03%2F608.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://wparena.com/www/wparena/media/wp-content/uploads/2011/07/secure-wordpress.png" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">WordPress数据库备份插件</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems" 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><a href="https://www.upyun.com/">又拍云</a>是一个好东东，自从<a href="http://www.84tt.com/web/2011/12/258.html">去年年底使用至今</a>，稳定靠谱，价格适中，部署简单。之前有分享过使用<a href="http://wordpress.org/extend/plugins/hacklog-remote-attachment/" target="_blank">Hacklog Remote Attachment</a>插件来实现将WordPress的附件上传至又拍云。不过这一方法略有遗憾之处在于，无法便捷地将整个WP站点中的静态文件推送至又拍云。今天再介绍另一个方法，利用经典缓存插件<a href="http://wordpress.org/extend/plugins/w3-total-cache/">W3 Total Cache</a>与又拍云一起来实现WordPress全站CDN，具体步骤及要点如下：</p>
<p>1. 安装好W3 Total Cache插件，并启用。</p>
<p>2. 在W3 Total Cache的General Setting中启用CDN，并将类型选为Self-hosted，如下图所示。</p>
<p><a href="http://static4blog.84tt.com/web/wp-content/uploads/2012/03/General-Settings-W3-Total-Cache.jpg"><img class="alignnone size-large wp-image-610" title="General Settings-W3 Total Cache" src="http://static4blog.84tt.com/web/wp-content/uploads/2012/03/General-Settings-W3-Total-Cache-450x153.jpg" alt="General Settings-W3 Total Cache" width="450" height="153" data-pinit="registered" /></a></p>
<p>3. 在插件的CDN选项中，勾选以下这些。其他的选项可以根据自己的实际情况选择是否开启。</p>
<p><a href="http://static4blog.84tt.com/web/wp-content/uploads/2012/03/Content-Delivery-Network-W3-Total-Cache-1.jpg"><img class="alignnone size-large wp-image-611" title="Content Delivery Network-W3 Total Cache-1" src="http://static4blog.84tt.com/web/wp-content/uploads/2012/03/Content-Delivery-Network-W3-Total-Cache-1-450x375.jpg" alt="Content Delivery Network-W3 Total Cache-1" width="450" height="375" data-pinit="registered" /></a></p>
<p>4. 配置中，填入在又拍后台中设定的FTP用户名、密码等信息，FTP主机推荐使用v0.ftp.upyun.com。FTP路径建议根据自己域名下的实际路径填写；如果网站中的子站为二级域名，最好每个单独创建又拍存储空间。主机名中，可根据自己的情况填写，如果在又拍上绑定过独立域名，可填写独立域名；最后不要忘记点击Add CNAME。</p>
<p><a href="http://static4blog.84tt.com/web/wp-content/uploads/2012/03/Content-Delivery-Network-W3-Total-Cache-2.jpg"><img class="alignnone size-large wp-image-612" title="Content Delivery Network-W3 Total Cache-2" src="http://static4blog.84tt.com/web/wp-content/uploads/2012/03/Content-Delivery-Network-W3-Total-Cache-2-450x251.jpg" alt="Content Delivery Network-W3 Total Cache-2" width="450" height="251" data-pinit="registered" /></a></p>
<p><span id="more-608"></span></p>
<p>5. 这些都设置好了之后，最后一步就是将当前空间中的附件、JS以及wp-includes等静态文件都用FTP上传至又拍空间即可。</p>
<p>&nbsp;</p>
<p>最终采用这样组合的好处是：</p>
<ul>
<li>可以将WordPress整站的静态文件都推送到又拍云的CDN服务中；</li>
<li>更新内容时上传的附件，会正常存储在WP所在服务器并推送至又拍云，访客浏览时会自动请求又拍云，数据双保险且无任何额外操作；</li>
<li>在WP后台修改模板等，也会被更新到又拍云；</li>
<li>日后如果需要更换CDN服务，期间网站访问基本不会受到影响。</li>
</ul>
<p>&nbsp;</p>
<hr />
<p><small>© Summer for <a href="http://www.84tt.com/web" target="_blank">恍惚之中</a>, 2012. | <a href="http://www.84tt.com/web/2012/03/608.html" target="_blank">Permalink</a> |
<a href="http://www.84tt.com/web/2012/03/608.html#comments" target="_blank">34 comments</a> | <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/2.5/cn/"><img alt="知识共享许可协议" style="border-width:0" src="http://i.creativecommons.org/l/by-nc-sa/2.5/cn/80x15.png" /></a>
<br />
Post tags: <a href="http://www.84tt.com/web/tag/upyun" rel="tag">upyun</a>, <a href="http://www.84tt.com/web/tag/w3-total-cache" rel="tag">W3 Total Cache</a>, <a href="http://www.84tt.com/web/tag/wordpress" rel="tag">WordPress</a>, <a href="http://www.84tt.com/web/tag/%e5%8f%88%e6%8b%8d" rel="tag">又拍</a>, <a href="http://www.84tt.com/web/tag/%e6%8f%92%e4%bb%b6" rel="tag">插件</a><br/></small>
</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="102" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="关于使用又拍云存储提升WordPress网站性能的几点讨论" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F05%2F628.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F03%2F608.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2012/05/12/14492440.jpg" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">关于使用又拍云存储提升WordPress网站性能的几点讨论</font>
                    </a>
                </td>
                <td width="102" 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?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2011%2F12%2F258.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F03%2F608.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/12/07/12036111.jpg" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !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="102" 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?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F04%2F615.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F03%2F608.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2012/04/15/19524673.jpg" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !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="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="WordPress 2.5 gzip启用问题" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2008%2F04%2F193.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F03%2F608.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/08/25/23526863.png" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">WordPress 2.5 gzip启用问题</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="WordPress数据库备份插件" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2007%2F03%2F16.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F03%2F608.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://wparena.com/www/wparena/media/wp-content/uploads/2011/07/secure-wordpress.png" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">WordPress数据库备份插件</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems" 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.84tt.com/web/2012/03/608.html/feed</wfw:commentRss>
		<slash:comments>34</slash:comments>
		</item>
		<item>
		<title>Google Chrome浏览器中使用自己指定的DNS服务器</title>
		<link>http://www.84tt.com/web/2012/02/604.html</link>
		<comments>http://www.84tt.com/web/2012/02/604.html#comments</comments>
		<pubDate>Fri, 24 Feb 2012 09:02:51 +0000</pubDate>
		<dc:creator>Summer</dc:creator>
				<category><![CDATA[软件相关]]></category>
		<category><![CDATA[Chrome]]></category>
		<category><![CDATA[DNS]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[V2EX]]></category>

		<guid isPermaLink="false">http://www.84tt.com/web/?p=604</guid>
		<description><![CDATA[在一些特殊的网络情况下，比如： 所在网络的DNS未能正常解析，导致CDN无法正确识别； 在办公网络中不能修改系统DNS，否则会导致内网访问异常。 这时，就需要强制设定浏览器所用的DNS服务器，以保证网络访问的速度。以前Google Chrome浏览器就已在实验室中提供了可选项，而现在这项功能在最新的Chrome正式版中就已提供支持，无需再进入配置项中额外开启。 只需要在Chrome的快捷方式上点击右键，打开其“属性”设定（如下图所示），在“目标”项的最后加入“ &#8211;dns-server=178.79.131.110”即可（请注意：“&#8211;”前面有一个空格），DNS服务器的IP地址可根据自己的实际情况自行填写，目前我选用的是V2EX提供的DNS服务。关于V2EX DNS服务的优势，可点击这里了解。 Ps: 目前已知Chrome与安全软件Symantec Protection Agent（SPA）有冲突，其会导致Chrome无法正常开启，也可在上图中的位置，加入“ &#8211;no-sandbox”关闭Chrome的沙盒模式，以保证两者能够并存。 ====2012.04.10更新==== 整理了几组比较靠谱的DNS服务器： 114DNS（不是那个垃圾的114搜索）： 114.114.114.114 114.114.115.115 中华电信： 168.95.1.1（dns.hinet.net） 168.95.192.1（hntp1.hinet.net） 168.95.192.2（hntp3.hinet.net） 亚太宽频： 210.200.211.193 210.200.211.225 有线宽频 i-Cable： 61.10.0.130 61.10.1.130 210.80.60.1 210.80.60.2 香港宽频 Hong Kong BroadBand Network： 203.80.96.10 203.80.96.9 HKNet 宽频： 202.67.240.222 202.67.240.221 和记环球电讯： 202.45.84.58 202.45.84.59 &#160; © Summer for 恍惚之中, 2012. &#124; Permalink &#124; One comment [...]<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="102" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="如何将iphone通讯录与Google通讯录同步？" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2011%2F10%2F248.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F02%2F604.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2012/03/22/17914637.jpg" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">如何将iphone通讯录与Google通讯录同步？</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="2011技术回顾：Google这一年" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F01%2F558.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F02%2F604.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2012/03/22/17912557.jpg" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">2011技术回顾：Google这一年</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="Google Reader 中文版" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2007%2F09%2F186.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F02%2F604.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2012/04/30/23501007.png" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Google Reader 中文版</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="Google日历推出“天气预报”" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2007%2F03%2F40.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F02%2F604.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static4blog.84tt.com/web/wp-content/uploads/2007/03/20070323-1.jpg" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Google日历推出“天气预报”</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="收到Google来信" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2007%2F03%2F11.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F02%2F604.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2012/05/19/22751310.jpg" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">收到Google来信</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems" 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>
<ul>
<li>所在网络的DNS未能正常解析，导致CDN无法正确识别；</li>
<li>在办公网络中不能修改系统DNS，否则会导致内网访问异常。</li>
</ul>
<p>这时，就需要强制设定浏览器所用的DNS服务器，以保证网络访问的速度。以前Google Chrome浏览器就已在实验室中提供了可选项，而现在这项功能在最新的Chrome正式版中就已提供支持，无需再进入配置项中额外开启。</p>
<p>只需要在Chrome的快捷方式上点击右键，打开其“属性”设定（如下图所示），在“目标”项的最后加入“ &#8211;dns-server=178.79.131.110”即可（请注意：“&#8211;”前面有一个空格），DNS服务器的IP地址可根据自己的实际情况自行填写，目前我选用的是<a href="http://www.v2ex.com">V2EX</a>提供的DNS服务。关于V2EX DNS服务的优势，可<a href="http://dns.v2ex.com/">点击这里</a>了解。</p>
<p><a href="http://static4blog.84tt.com/web/wp-content/uploads/2012/02/Google-chrome-DNS.png"><img class="alignnone size-full wp-image-605" title="Google-chrome-DNS" src="http://static4blog.84tt.com/web/wp-content/uploads/2012/02/Google-chrome-DNS.png" alt="Google-chrome-DNS" width="371" height="464" data-pinit="registered" /></a></p>
<p>Ps: 目前已知Chrome与安全软件Symantec Protection Agent（SPA）有冲突，其会导致Chrome无法正常开启，也可在上图中的位置，加入“ &#8211;no-sandbox”关闭Chrome的沙盒模式，以保证两者能够并存。</p>
<p><span id="more-604"></span></p>
<p>====2012.04.10更新====</p>
<p>整理了几组比较靠谱的DNS服务器：</p>
<p>114DNS（<a href="http://www.114dns.com/faq.html" target="_blank">不是那个垃圾的114搜索</a>）：<br />
114.114.114.114<br />
114.114.115.115</p>
<p>中华电信：<br />
168.95.1.1（dns.hinet.net）<br />
168.95.192.1（hntp1.hinet.net）<br />
168.95.192.2（hntp3.hinet.net）</p>
<p>亚太宽频：<br />
210.200.211.193<br />
210.200.211.225</p>
<p>有线宽频 i-Cable：<br />
61.10.0.130<br />
61.10.1.130<br />
210.80.60.1<br />
210.80.60.2</p>
<p>香港宽频 Hong Kong BroadBand Network：<br />
203.80.96.10<br />
203.80.96.9</p>
<p>HKNet 宽频：<br />
202.67.240.222<br />
202.67.240.221</p>
<p>和记环球电讯：<br />
202.45.84.58<br />
202.45.84.59</p>
<p>&nbsp;</p>
<hr />
<p><small>© Summer for <a href="http://www.84tt.com/web" target="_blank">恍惚之中</a>, 2012. | <a href="http://www.84tt.com/web/2012/02/604.html" target="_blank">Permalink</a> |
<a href="http://www.84tt.com/web/2012/02/604.html#comments" target="_blank">One comment</a> | <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/2.5/cn/"><img alt="知识共享许可协议" style="border-width:0" src="http://i.creativecommons.org/l/by-nc-sa/2.5/cn/80x15.png" /></a>
<br />
Post tags: <a href="http://www.84tt.com/web/tag/chrome" rel="tag">Chrome</a>, <a href="http://www.84tt.com/web/tag/dns" rel="tag">DNS</a>, <a href="http://www.84tt.com/web/tag/google" rel="tag">Google</a>, <a href="http://www.84tt.com/web/tag/v2ex" rel="tag">V2EX</a><br/></small>
</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="102" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="如何将iphone通讯录与Google通讯录同步？" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2011%2F10%2F248.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F02%2F604.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2012/03/22/17914637.jpg" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">如何将iphone通讯录与Google通讯录同步？</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="2011技术回顾：Google这一年" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F01%2F558.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F02%2F604.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2012/03/22/17912557.jpg" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">2011技术回顾：Google这一年</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="Google Reader 中文版" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2007%2F09%2F186.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F02%2F604.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2012/04/30/23501007.png" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Google Reader 中文版</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="Google日历推出“天气预报”" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2007%2F03%2F40.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F02%2F604.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static4blog.84tt.com/web/wp-content/uploads/2007/03/20070323-1.jpg" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Google日历推出“天气预报”</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="收到Google来信" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2007%2F03%2F11.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F02%2F604.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2012/05/19/22751310.jpg" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">收到Google来信</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems" 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.84tt.com/web/2012/02/604.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>一级目录与二级域名的选择</title>
		<link>http://www.84tt.com/web/2012/02/600.html</link>
		<comments>http://www.84tt.com/web/2012/02/600.html#comments</comments>
		<pubDate>Thu, 02 Feb 2012 10:07:02 +0000</pubDate>
		<dc:creator>Summer</dc:creator>
				<category><![CDATA[杂谈]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[一级目录]]></category>
		<category><![CDATA[二级域名]]></category>

		<guid isPermaLink="false">http://www.84tt.com/web/?p=600</guid>
		<description><![CDATA[昨晚无意中发现，在不同的浏览器下通过 google.com.hk 搜索关键词“84tt”，会出现不一样的搜索结果。 这是在Google Chrome下搜索结果的截图。Chrome是我日常主要实用的浏览器，在进行这次搜索时，也特别留意了搜索界面Google账号的登录状态——保持未登录。 &#160; 再来看这张截图，是我通过Firefox同样搜索“84tt” 这一关键词得到的结果。 &#160; 对比以上两张搜索结果的截图，会发现： 通过Chrome搜索时，84tt.com主域名下一个使用了二级域名的子站作为搜索结果被返回，而84tt.com主域名首页本身却作为了相关链接出现在其下方。 通过Firefox搜索时，结果正好与Chrome下相反， 84tt.com主域名出现在了搜索结果中，并且将域名本身作为了搜索结果，而非页面title。 除却这两点之外，其他结果及排名均无差异。 看完了截图，我们再来看一下84tt.com这个小站的分布情况： www.84tt.com是网站的首页，上面唯一的链接是指向 过眼云烟 这个放在一级目录/blog/下的博客。 www.84tt.com一级目录主要有两个，分别为我的两个博客：过眼云烟 位于 /blog/ 、恍惚之中 位于 /web/ 。 84tt.com的二级域名除却www外（不带www访问时，会被301转向至带www），还有一个二级域名camus.84tt.com正被小槑童鞋使用，且拥有较高质量内容。 我们已经知道： 每一个二级域名，都会被认为是一个新的网站。 一般情况下，对于小型网站而言，优先使用一级目录会比使用二级域名更为妥当。 最后，颇为好奇并有待尝试： 网站建设初期对于域名规划及链接结构的构建颇为重要，假设我现在是在使用blog.84tt.com这个二级域名而非当前的一级目录，结果是否会有所不同？ 通过wordpress插件生成的百度XML文件，为什么会出现在了相关搜索链接中？ &#160; 推荐阅读： Google个性化搜索对SEO的影响 浅析关键词在百度和谷歌搜索结果排名不同的原因 &#160; © Summer for 恍惚之中, 2012. &#124; Permalink &#124; 2 comments &#124; Post tags: Google, SEO, 一级目录, 二级域名<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="102" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="如何将国际域名从新网互联转移至Dreamhost？" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2011%2F07%2F247.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F02%2F600.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2012/05/04/23500679.jpg" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">如何将国际域名从新网互联转移至Dreamhost？</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="Google Chrome浏览器中使用自己指定的DNS服务器" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F02%2F604.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F02%2F600.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2012/03/22/17912372.png" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Google Chrome浏览器中使用自己指定的DNS服务器</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="博客SEO的几个问题" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2008%2F04%2F199.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F02%2F600.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://www.tangshijun.com/content/uploadfile/201201/a6c08b6138e049d1a3f883b5cf47098420120117090339.gif" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">博客SEO的几个问题</font>
                    </a>
                </td>
                <td width="102" 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?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2007%2F04%2F80.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F02%2F600.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/06/27/14544124.png" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !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="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="2011技术回顾：Google这一年" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F01%2F558.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F02%2F600.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2012/03/22/17912557.jpg" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">2011技术回顾：Google这一年</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems" 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>昨晚无意中发现，在不同的浏览器下通过 google.com.hk 搜索关键词“84tt”，会出现不一样的搜索结果。</p>
<p>这是在Google Chrome下搜索结果的截图。Chrome是我日常主要实用的浏览器，在进行这次搜索时，也特别留意了搜索界面Google账号的登录状态——保持未登录。</p>
<p><a href="http://static4blog.84tt.com/web/wp-content/uploads/2012/02/20120201-1.jpg"><img class="alignnone size-large wp-image-602" title="chrome下搜索84tt" src="http://static4blog.84tt.com/web/wp-content/uploads/2012/02/20120201-1-450x250.jpg" alt="chrome下搜索84tt" width="450" height="250" data-pinit="registered" /></a></p>
<p>&nbsp;</p>
<p>再来看这张截图，是我通过Firefox同样搜索“84tt” 这一关键词得到的结果。</p>
<p><a href="http://static4blog.84tt.com/web/wp-content/uploads/2012/02/20120201-2.jpg"><img class="alignnone size-large wp-image-601" title="firefox下搜索84tt" src="http://static4blog.84tt.com/web/wp-content/uploads/2012/02/20120201-2-450x242.jpg" alt="firefox下搜索84tt" width="450" height="242" data-pinit="registered" /></a></p>
<p>&nbsp;</p>
<p><span id="more-600"></span></p>
<p>对比以上两张搜索结果的截图，会发现：</p>
<ol>
<li>通过Chrome搜索时，84tt.com主域名下一个使用了二级域名的子站作为搜索结果被返回，而84tt.com主域名首页本身却作为了相关链接出现在其下方。</li>
<li>通过Firefox搜索时，结果正好与Chrome下相反， 84tt.com主域名出现在了搜索结果中，并且将域名本身作为了搜索结果，而非页面title。</li>
<li>除却这两点之外，其他结果及排名均无差异。</li>
</ol>
<p>看完了截图，我们再来看一下84tt.com这个小站的分布情况：</p>
<ol>
<li>www.84tt.com是网站的首页，上面唯一的链接是指向 <a href="http://www.84tt.com/blog/" target="_blank">过眼云烟</a> 这个放在一级目录/blog/下的博客。</li>
<li>www.84tt.com一级目录主要有两个，分别为我的两个博客：<a href="http://www.84tt.com/blog/" target="_blank">过眼云烟</a> 位于 /blog/ 、<a href="http://www.84tt.com/web/" target="_blank">恍惚之中</a> 位于 /web/ 。</li>
<li>84tt.com的二级域名除却www外（不带www访问时，会被301转向至带www），还有一个二级域名camus.84tt.com正被<a href="http://camus.84tt.com" target="_blank">小槑</a>童鞋使用，且拥有较高质量内容。</li>
</ol>
<p>我们已经知道：</p>
<ul>
<li>每一个二级域名，都会被认为是一个新的网站。</li>
<li>一般情况下，对于小型网站而言，优先使用一级目录会比使用二级域名更为妥当。</li>
</ul>
<p>最后，颇为好奇并有待尝试：</p>
<ul>
<li>网站建设初期对于域名规划及链接结构的构建颇为重要，假设我现在是在使用blog.84tt.com这个二级域名而非当前的一级目录，结果是否会有所不同？</li>
<li>通过wordpress插件生成的百度XML文件，为什么会出现在了相关搜索链接中？</li>
</ul>
<p>&nbsp;</p>
<p>推荐阅读：</p>
<ul>
<li><a href="http://www.dunsh.org/2009/12/10/google-personalized-search-by-feir/" target="_blank">Google个性化搜索对SEO的影响</a></li>
<li><a href="http://www.xp-sem.com/baidu-google-search-result-different/" target="_blank">浅析关键词在百度和谷歌搜索结果排名不同的原因</a></li>
</ul>
<p>&nbsp;</p>
<hr />
<p><small>© Summer for <a href="http://www.84tt.com/web" target="_blank">恍惚之中</a>, 2012. | <a href="http://www.84tt.com/web/2012/02/600.html" target="_blank">Permalink</a> |
<a href="http://www.84tt.com/web/2012/02/600.html#comments" target="_blank">2 comments</a> | <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/2.5/cn/"><img alt="知识共享许可协议" style="border-width:0" src="http://i.creativecommons.org/l/by-nc-sa/2.5/cn/80x15.png" /></a>
<br />
Post tags: <a href="http://www.84tt.com/web/tag/google" rel="tag">Google</a>, <a href="http://www.84tt.com/web/tag/seo" rel="tag">SEO</a>, <a href="http://www.84tt.com/web/tag/%e4%b8%80%e7%ba%a7%e7%9b%ae%e5%bd%95" rel="tag">一级目录</a>, <a href="http://www.84tt.com/web/tag/%e4%ba%8c%e7%ba%a7%e5%9f%9f%e5%90%8d" rel="tag">二级域名</a><br/></small>
</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="102" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="如何将国际域名从新网互联转移至Dreamhost？" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2011%2F07%2F247.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F02%2F600.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2012/05/04/23500679.jpg" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">如何将国际域名从新网互联转移至Dreamhost？</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="Google Chrome浏览器中使用自己指定的DNS服务器" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F02%2F604.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F02%2F600.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2012/03/22/17912372.png" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Google Chrome浏览器中使用自己指定的DNS服务器</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="博客SEO的几个问题" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2008%2F04%2F199.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F02%2F600.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://www.tangshijun.com/content/uploadfile/201201/a6c08b6138e049d1a3f883b5cf47098420120117090339.gif" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">博客SEO的几个问题</font>
                    </a>
                </td>
                <td width="102" 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?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2007%2F04%2F80.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F02%2F600.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/06/27/14544124.png" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !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="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="2011技术回顾：Google这一年" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F01%2F558.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F02%2F600.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2012/03/22/17912557.jpg" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">2011技术回顾：Google这一年</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems" 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.84tt.com/web/2012/02/600.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>一些与视频相关的数据</title>
		<link>http://www.84tt.com/web/2012/01/596.html</link>
		<comments>http://www.84tt.com/web/2012/01/596.html#comments</comments>
		<pubDate>Tue, 17 Jan 2012 07:04:30 +0000</pubDate>
		<dc:creator>Summer</dc:creator>
				<category><![CDATA[互联网相关]]></category>
		<category><![CDATA[移动设备]]></category>
		<category><![CDATA[终端]]></category>
		<category><![CDATA[翻译]]></category>
		<category><![CDATA[在线视频]]></category>
		<category><![CDATA[数据报告]]></category>

		<guid isPermaLink="false">http://www.84tt.com/web/?p=596</guid>
		<description><![CDATA[伴随着新款 Apple TV 传言的继续蔓延，更值得我们关注的是：人们究竟是如何使用网络设备观看电视以及在线视频节目？(via) 在美国，近1.45亿人在线观看视频，与之产生对比的是，大约有2.9亿人观看传统电视。美国人平均每周花费32小时47分钟在看传统电视上。他们每周只花费3小时58分钟用来上网，而每周仅有27分钟会用于观看在线视频。 (source) 游戏终端已经成为美国最流行的用于在电视屏幕上观看在线内容的设备。12%的美国家庭（约1500万人）使用游戏终端来观看在线内容，这一数字远超过通过HDMI连接PC与电视来观看的家庭比例。(source) 去年游戏终端上的流媒体激增。流媒体占据的时间分别占据了Xbox 360 14%、 PS3 15%以及Wii 33%的时间。三个平台合在一起，在用户时间上与前一年相比增加了7%。这些结果表明，流媒体逐渐占据了用户花在这些终端上的时间。(source) 80%的智能机用户会在看电视的同时也进行移动多任务操作。其中15%的用户会一直运行程序。60%的人会浏览移动网页，当中44%的用户会搜索无关内容，而38%的用户则会有所与电视相关的内容。 (source) 在美国40%的平板设备及智能机用户会每天会在看电视的同时也在使用它们的设备，而仅有14%的电子书用户说他们每天会在使用电子书的时候也在看电视。 (source) 平板设备看起来将会在在线视频观看上有更高的上涨趋势，而平板设备上的观看者也将会超过台式或手机设备。使用平板设备观看的比例超过台式设备28%。(source) 尼尔森也有一项最新统计介绍了美国媒体用户使用情况的信息图（点击看大图）。 &#160; 最后，再来看一组国内的数据：根据第29次CNNIC报告，截至2011年12月底，中国网络视频用户数量增至3.25亿，年增长率达到14.6%，在网民中的使用率由上年底的62.1%提升至63.4%；而手机网络视频则仅占22.5%的使用率，在诸多应用中名列第11位。 &#160; © Summer for 恍惚之中, 2012. &#124; Permalink &#124; No comment &#124; Post tags: 移动设备, 终端, 翻译, 在线视频, 数据报告<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="102" 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?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2011%2F12%2F378.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F01%2F596.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2012/03/29/18419176.png" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !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="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="DreamHost 数据备份方法" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2007%2F04%2F119.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F01%2F596.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://www.84tt.com/blog/wp-content/uploads/2011/01/android.jpg" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">DreamHost 数据备份方法</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="40枚 Facebook 时间轴创意封面案例" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2011%2F12%2F334.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F01%2F596.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2012/03/22/17917406.jpg" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">40枚 Facebook 时间轴创意封面案例</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="搜索框UI设计精彩案例大集合" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2011%2F12%2F458.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F01%2F596.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2012/03/22/17913557.jpg" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">搜索框UI设计精彩案例大集合</font>
                    </a>
                </td>
                <td width="102" 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?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2007%2F06%2F165.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F01%2F596.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://www.84tt.com/blog/wp-content/uploads/2011/01/android.jpg" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !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" 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>伴随着新款 Apple TV 传言的继续蔓延，更值得我们关注的是：人们究竟是如何使用网络设备观看电视以及在线视频节目？(<a href="http://www.lukew.com/ff/entry.asp?1480" target="_blank">via</a>)</p>
<ul>
<li>在美国，近1.45亿人在线观看视频，与之产生对比的是，大约有2.9亿人观看传统电视。美国人平均每周花费32小时47分钟在看传统电视上。他们每周只花费3小时58分钟用来上网，而每周仅有27分钟会用于观看在线视频。 (<a href="http://techcrunch.com/2012/01/08/how-people-watch-tv-online/" target="_blank">source</a>)</li>
<li>游戏终端已经成为美国最流行的用于在电视屏幕上观看在线内容的设备。12%的美国家庭（约1500万人）使用游戏终端来观看在线内容，这一数字远超过通过HDMI连接PC与电视来观看的家庭比例。(<a href="http://venturebeat.com/2011/11/07/report-game-consoles-most-popular-device-for-watching-online-content-on-a-tv-screen/" target="_blank">source</a>)</li>
<li>去年游戏终端上的流媒体激增。流媒体占据的时间分别占据了Xbox 360 14%、 PS3 15%以及Wii 33%的时间。三个平台合在一起，在用户时间上与前一年相比增加了7%。这些结果表明，流媒体逐渐占据了用户花在这些终端上的时间。(<a href="http://blog.nielsen.com/nielsenwire/online_mobile/video-streaming-on-game-consoles-on-the-rise/" target="_blank">source</a>)</li>
<li>80%的智能机用户会在看电视的同时也进行移动多任务操作。其中15%的用户会一直运行程序。60%的人会浏览移动网页，当中44%的用户会搜索无关内容，而38%的用户则会有所与电视相关的内容。 (<a href="http://www.appmarket.tv/news/1415-report-80-per-cent-mobile-owners-multitask-watching-tv.html" target="_blank">source</a>)</li>
<li>在美国40%的平板设备及智能机用户会每天会在看电视的同时也在使用它们的设备，而仅有14%的电子书用户说他们每天会在使用电子书的时候也在看电视。 (<a href="http://blog.nielsen.com/nielsenwire/online_mobile/40-of-tablet-and-smartphone-owners-use-them-while-watching-tv/" target="_blank">source</a>)</li>
<li>平板设备看起来将会在在线视频观看上有更高的上涨趋势，而平板设备上的观看者也将会超过台式或手机设备。使用平板设备观看的比例超过台式设备28%。(<a href="http://techcrunch.com/2011/11/12/people-now-watch-videos-nearly-30-percent-longer-on-tablets-than-desktops/" target="_blank">source</a>)</li>
</ul>
<p>尼尔森也有一项<a href="http://blog.nielsen.com/nielsenwire/mediauniverse/" target="_blank">最新统计</a>介绍了美国媒体用户使用情况的信息图（点击看大图）。</p>
<p><a href="http://static4blog.84tt.com/web/wp-content/uploads/2012/01/01.png"><img class="alignnone size-large wp-image-598" title="The U.S. Media Universe" src="http://static4blog.84tt.com/web/wp-content/uploads/2012/01/01-450x360.png" alt="The U.S. Media Universe" width="450" height="360" data-pinit="registered" /></a></p>
<p><span id="more-596"></span></p>
<p><a href="http://static4blog.84tt.com/web/wp-content/uploads/2012/01/video.png"><img class="alignnone size-large wp-image-597" title="The American Video Viewer" src="http://static4blog.84tt.com/web/wp-content/uploads/2012/01/video-450x360.png" alt="" width="450" height="360" data-pinit="registered" /></a></p>
<p>&nbsp;</p>
<p>最后，再来看一组国内的数据：根据<a href="http://tech.163.com/special/cnnic29/" target="_blank">第29次CNNIC报告</a>，截至2011年12月底，中国网络视频用户数量增至3.25亿，年增长率达到14.6%，在网民中的使用率由上年底的62.1%提升至63.4%；而手机网络视频则仅占22.5%的使用率，在诸多应用中名列第11位。</p>
<p>&nbsp;</p>
<hr />
<p><small>© Summer for <a href="http://www.84tt.com/web" target="_blank">恍惚之中</a>, 2012. | <a href="http://www.84tt.com/web/2012/01/596.html" target="_blank">Permalink</a> |
<a href="http://www.84tt.com/web/2012/01/596.html#comments" target="_blank">No comment</a> | <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/2.5/cn/"><img alt="知识共享许可协议" style="border-width:0" src="http://i.creativecommons.org/l/by-nc-sa/2.5/cn/80x15.png" /></a>
<br />
Post tags: <a href="http://www.84tt.com/web/tag/%e7%a7%bb%e5%8a%a8%e8%ae%be%e5%a4%87" rel="tag">移动设备</a>, <a href="http://www.84tt.com/web/tag/%e7%bb%88%e7%ab%af" rel="tag">终端</a>, <a href="http://www.84tt.com/web/tag/%e7%bf%bb%e8%af%91" rel="tag">翻译</a>, <a href="http://www.84tt.com/web/tag/%e5%9c%a8%e7%ba%bf%e8%a7%86%e9%a2%91" rel="tag">在线视频</a>, <a href="http://www.84tt.com/web/tag/%e6%95%b0%e6%8d%ae%e6%8a%a5%e5%91%8a" rel="tag">数据报告</a><br/></small>
</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="102" 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?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2011%2F12%2F378.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F01%2F596.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2012/03/29/18419176.png" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !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="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="DreamHost 数据备份方法" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2007%2F04%2F119.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F01%2F596.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://www.84tt.com/blog/wp-content/uploads/2011/01/android.jpg" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">DreamHost 数据备份方法</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="40枚 Facebook 时间轴创意封面案例" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2011%2F12%2F334.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F01%2F596.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2012/03/22/17917406.jpg" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">40枚 Facebook 时间轴创意封面案例</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="搜索框UI设计精彩案例大集合" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2011%2F12%2F458.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F01%2F596.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2012/03/22/17913557.jpg" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">搜索框UI设计精彩案例大集合</font>
                    </a>
                </td>
                <td width="102" 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?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2007%2F06%2F165.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F01%2F596.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://www.84tt.com/blog/wp-content/uploads/2011/01/android.jpg" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !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" 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.84tt.com/web/2012/01/596.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2011技术回顾：Google这一年</title>
		<link>http://www.84tt.com/web/2012/01/558.html</link>
		<comments>http://www.84tt.com/web/2012/01/558.html#comments</comments>
		<pubDate>Wed, 04 Jan 2012 09:53:49 +0000</pubDate>
		<dc:creator>Summer</dc:creator>
				<category><![CDATA[互联网相关]]></category>
		<category><![CDATA[2011]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[产品分析]]></category>

		<guid isPermaLink="false">http://www.84tt.com/web/?p=558</guid>
		<description><![CDATA[对于Google而言，2011年里有很多里程碑。在这一年中，这家公司推出了很多新产品，也更新了不少已有的产品。当然，2011年里Google也完成了其历史上最大的一次收购。 Google的一些开发、变化或服务，看起来虽小但却产生了深远的影响。在2011年2月，伴随着埃及政府切断国内互联网，Google与Twitter合作，推出了Speak2Tweet，帮助埃及人民在推翻埃及总统穆巴拉克的抗议过程中，尽可能通过电话更新他们的twitter，以告知大家当时发生的事情。 同样也是在二月，Google对其搜索算法进行了调整，约有占总量12%的搜索受到影响。这一变化最直接的效果就是在于内容农场，这将阻止他们在Google搜索结果中排名靠前。 在四月份，联合创始人拉里·佩奇接替了埃里克·施密特出任公司CEO。施密特卸任CEO之后仍担任Google执行董事长，谢尔盖·布林则继续作为联合创始人。 在2011年中，Google出现了一些令人欣喜的数据。在五月份，Youtube走过了第六个年头，平均每天30亿次点击，而在Google Earth则在十月份打破了10亿次下载的记录。 对Google而言，2011是忙碌的一年，让我们来回顾一下在这一年里Google的重大事件。 1. Google+发布后褒贬不一 在我们看到Google+之前，Google在三月份发布了Google +1 按钮，这其中已能窥见Google进军SNS的计划。三个月后，Google向全网开始部署Google +1 按钮。类似Facebook的Like按钮，Google +1 按钮可以轻松将内容推荐给你的朋友们，但它并没有成为一个流行的分享方式。伴随SNS的发布，不少Google+ 的用户将 +1 页签 从他们的个人页面上去除。 毫无疑问，6月28日Google+的发布，已经成为了2011年最大的技术新闻，产生无数褒贬不一的评论。人们要不非常喜欢Google+，要不就是极度讨厌它，没有中间状态。在Google+ 正式发布前的Beta公测版时，就已经有人跳出来高呼“Google+ 已死”。当时围绕这一事件，我们也有发表过自己的观点，但我们对于Google+的预期显得更为积极。 在Google+发布之后，人们非常渴望能够加入到封闭测试的Beta版中，Google+的邀请在eBay上最高被炒到了27美元。Google+带给了SNS领域一些有别于其竞争对手的新功能，比如Google+给用户提供了视频群聊的功能。 Google+发布16天之后，用户突破了1000万，增速之快远远超过Facebook与Twitter。 Google+以每天增加一百万用户的速度，快速拥有了2500万用户。根据最新的统计，Google+大约已有6200万用户，平均每天新增用户62.5万人。 在封闭的Beta版阶段，Google+就已经做到了以上这些。虽然封闭的Beta版似乎事件比预想的要久一点，但Google+最终在九月面向公众开放了。然而，之后的情况却是，用户并没有像Google所期望的那样产生大量的公开内容。在八月份，48%的Google+用户没有发布任何公开内容，这也意味着他们之后依然不会发布内容。 如果当时Google+被宣告死亡，那也不会是Google历史上唯一一次记录。随着Google+推出强制用户使用真名的政策，尤其是在Google禁止了一大批使用假名的账户之后，这一举措在网络上引起了轩然大波。几个月之后，Google终于放宽了要求实名的政策，承认对于一些人来说确实有匿名的需要。 在过去的六个月里，Google+陆续推出了一些新的功能，比如Google+ Page这一对其他竞争对手构成威胁的利器。与此同时，它也发布了其他一些功能，比如控制信息流噪音、更好地整合Gmail和Google联系人等。 虽然Twitter已垄断了名人们对社会化媒体的使用，但仍然有不少明星、政治家以及体育运动员们加入了Google+ 。小甜甜布兰妮是Google+被关注最多的用户，目前已有超过一百万人将她加入自己的圈子。在前10名中紧随布兰妮之后的还有史努比狗狗、提拉·班克斯以及理查德·布兰森。到目前为止，只有一位Google+用户被加入圈子的次数也超过一百万，但他并不是明星，而是Google的CEO拉里·佩奇。 当美国总统奥巴马加入Google+时，这再次成为了新闻头条。但他在Google+中只被添加到8000多个圈子中。随着从达赖喇嘛与Desmond Tutu大主教到美国总统候选人纷纷入驻Google+，它的好处开始逐渐引起人们的注意。 虽然Google+可能有它的反对者，但它已经赢得不少社区，其中最大的支持者莫过于在线摄影社区。Google+ 也被证明是记者们的好工具，或是一款出色的项目管理工具，甚至是一个相册。 在10月份，伴随着Google+的成功，Google在社会化网络方面的尝试终于初见成效。Google最终决定关闭Buzz，这一效仿Twitter并持续两年的产品，并没有给Google带来丝毫社会化媒体的效果。 &#160; 2. Google的改进 伴随Google+的推出，Google对所有产品进行了更为全面的改进，它将Google+整合到了绝大多数产品中，同时在每个站点中采用了更为统一、清新的界面。 2.1 YouTube 我们抓住了在7月的YouTube重新设计回的一瞥，包括更好的订阅管理，更好的视频建议，当然更直接的集成与谷歌的变化+。 12月正式推出重新设计，但它显然不下去YouTube用户。宣布推出的视频刚刚获得4000多喜欢，超过15,000好恶鲜明的合同。 在七月份，我们预览到了重新设计后的YouTube，包括了更好的订阅管理、更好的视频推荐，当然也有与Google+更为直接的整合。12月份这一设计正式推出之后，显然并未能赢得YouTube用户的喜爱。宣布改版发布的视频下面，只获得了4000多次“喜欢”，但却收到了超过15000次的“不喜欢”。 去年12月，YouTube的又一次看到了更新，但这个时候到后端，与YouTube视频管理器的更改，以及最近YouTube已经宣布计划实施更有针对性的广告形式，为每个用户量身定制的广告。 12月份，YouTube又进行了一次更新，但这次主要集中在后台，比如：对YouTube视频管理器的修改，以及最近它宣布计划实施更有为每位用户定制的更有针对性的广告投放等。 2.2 Gmail 10月，Gmail发布了我们曾在7月预览过的新版界面。这次改动不仅给用户提供了更为一致、清新的体验，最大的改变是让Gmail能够适应每个人的喜好，你可以调整Gmail聊天与标签所占用的屏幕空间比例，也可以根据屏幕尺寸调节调整阅读体验。 12月，Gmail加入了更多的更新，这次它与Google+整合得更为紧密。伴随新的功能的发布，用户已经可以在Gmail中看到联系人的Google+ 更新，也能看到联系人被自己加入到了哪个圈子中。 2.3 Google Reader [...]<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="102" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="如何将iphone通讯录与Google通讯录同步？" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2011%2F10%2F248.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F01%2F558.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2012/03/22/17914637.jpg" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">如何将iphone通讯录与Google通讯录同步？</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="Google Chrome浏览器中使用自己指定的DNS服务器" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F02%2F604.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F01%2F558.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2012/03/22/17912372.png" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Google Chrome浏览器中使用自己指定的DNS服务器</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="Google Reader 中文版" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2007%2F09%2F186.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F01%2F558.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2012/04/30/23501007.png" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Google Reader 中文版</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="收到Google来信" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2007%2F03%2F11.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F01%2F558.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2012/05/19/22751310.jpg" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">收到Google来信</font>
                    </a>
                </td>
                <td width="102" 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?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F02%2F600.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F01%2F558.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2012/03/22/17912534.jpg" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !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" 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><img src="http://static4blog.84tt.com/web/wp-content/uploads/2011/12/google-sign1-520x245.jpg" alt="" width="520" height="245" data-pinit="registered" /></p>
<p>对于Google而言，2011年里有很多里程碑。在这一年中，这家公司推出了很多新产品，也更新了不少已有的产品。当然，2011年里Google也完成了其历史上最大的一次收购。</p>
<p>Google的一些开发、变化或服务，看起来虽小但却产生了深远的影响。在2011年2月，伴随着埃及政府切断国内互联网，Google与Twitter合作，<a href="http://thenextweb.com/me/2011/01/28/internet-sms-and-blackberry-networks-reportedly-closed-in-egypt-as-protests-continue/" target="_blank">推出了Speak2Tweet</a>，帮助埃及人民在推翻埃及总统穆巴拉克的抗议过程中，尽可能<a href="http://thenextweb.com/media/2011/02/01/alive-in-egypt-site-launched-to-display-translated-voice-messages-from-speak2tweet/" target="_blank">通过电话更新他们的twitter</a>，以告知大家当时发生的事情。</p>
<p>同样也是在二月，Google<a href="http://googleblog.blogspot.com/2011/02/finding-more-high-quality-sites-in.html" target="_blank">对其搜索算法进行了调整</a>，约有占总量12%的搜索受到影响。这一变化最直接的效果就是在于内容农场，这将阻止他们在Google搜索结果中排名靠前。</p>
<p>在四月份，联合创始人<a href="http://thenextweb.com/google/2011/04/04/larry-page-replaces-eric-schmidt-as-google-ceo-today/" target="_blank">拉里·佩奇接替了埃里克·施密特出任公司CEO</a>。施密特卸任CEO之后仍担任Google执行董事长，谢尔盖·布林则继续作为联合创始人。</p>
<p>在2011年中，Google出现了一些令人欣喜的数据。在五月份，<a href="http://googleblog.blogspot.com/2011/05/thanks-youtube-community-for-two-big.html" target="_blank">Youtube走过了第六个年头</a>，<a href="http://thenextweb.com/google/2011/05/25/youtube-hits-3-billion-views-per-day-2-days-worth-of-video-uploaded-every-minute/" target="_blank">平均每天30亿次点击</a>，而在Google Earth则在十月份<a href="http://thenextweb.com/google/2011/10/05/google-earth-hits-1-billion-downloads/" target="_blank">打破了10亿次下载的记录</a>。</p>
<p>对Google而言，2011是忙碌的一年，让我们来回顾一下在这一年里<a href="http://www.84tt.com/web/tag/Google" target="_blank">Google</a>的重大事件。</p>
<p><span id="more-558"></span></p>
<h3>1. Google+发布后褒贬不一</h3>
<p>在我们看到Google+之前，Google在三月份<a href="http://thenextweb.com/google/2011/03/30/an-interview-with-google-what-1-means-for-advertisers/" target="_blank">发布</a>了<a href="http://www.google.com/+1/button/" target="_blank">Google +1 按钮</a>，这其中已能窥见Google进军SNS的计划。三个月后，Google<a href="http://thenextweb.com/google/2011/06/01/google-launches-1-button-for-web-pages/" target="_blank">向全网开始部署Google +1 按钮</a>。类似Facebook的Like按钮，Google +1 按钮可以轻松将内容推荐给你的朋友们，但它并没有成为一个流行的分享方式。伴随SNS的发布，不少Google+ 的用户将 +1 页签 从他们的个人页面上去除。</p>
<p>毫无疑问，6月28日<a href="http://plus.google.com/" target="_blank">Google+</a>的发布，已经成为了2011年最大的技术新闻，产生无数褒贬不一的评论。人们要不非常喜欢Google+，要不就是极度讨厌它，没有中间状态。在Google+ 正式发布前的Beta公测版时，就已经有人跳出来高呼“Google+ 已死”。当时围绕<a href="http://thenextweb.com/google/2011/08/07/why-google-is-very-much-here-to-stay/" target="_blank">这一事件</a>，我们也有发表过<a href="http://thenextweb.com/google/2011/07/06/circles-and-social-design-why-google-is-worth-your-time/" target="_blank">自己的观点</a>，但我们对于Google+的<a href="http://thenextweb.com/google/2011/09/18/waiting-for-the-demise-of-google-dont-hold-your-breath/" target="_blank">预期</a>显得更为<a href="http://thenextweb.com/google/2011/08/24/how-google-will-succeed-and-why-youll-use-it-whether-you-want-to-or-not/" target="_blank">积极</a>。</p>
<p>在Google+发布之后，人们非常渴望能够加入到封闭测试的Beta版中，Google+的邀请<a href="http://thenextweb.com/google/2011/06/30/google-invites-being-sold-on-ebay-for-up-to-27-each/" target="_blank">在eBay上最高被炒到了27美元</a>。Google+带给了SNS领域一些有别于其竞争对手的<a href="http://thenextweb.com/google/2011/06/28/a-complete-video-tour-of-google-featuring-mobile-sparks-and-circles/" target="_blank">新功能</a>，比如Google+给用户提供了视频群聊的功能。</p>
<p>Google+发布16天之后，<a href="http://thenextweb.com/apps/2011/07/14/over-10-million-people-have-joined-google-with-1-billion-items-shared/" target="_blank">用户突破了1000万</a>，增速之快<a href="http://thenextweb.com/google/2011/07/22/google-reached-10m-users-in-16-days-want-to-know-how-long-it-took-facebook-and-twitter/" target="_blank">远远超过Facebook与Twitter</a>。</p>
<p><a href="http://thenextweb.com/wp-content/blogs.dir/1/files/2011/07/GGraph.jpg"><img title="GGraph" src="http://static4blog.84tt.com/web/wp-content/uploads/2011/12/GGraph-500x283.jpg" alt="GGraph 500x283 2011 Tech Rewind: This year in Google" width="500" height="283" data-pinit="registered" /></a></p>
<p>Google+以每天增加一百万用户的速度，<a href="http://thenextweb.com/google/2011/08/03/google-reportedly-becomes-the-fastest-website-to-hit-25-million-users/" target="_blank">快速拥有了2500万用户</a>。根据最新的统计，Google+大约<a href="http://thenextweb.com/google/2011/12/27/google-may-have-passed-62-million-users-adding-625000-users-daily/" target="_blank">已有6200万用户</a>，平均每天新增用户62.5万人。</p>
<p><a href="http://static4blog.84tt.com/web/wp-content/uploads/2011/12/growth.png"><img title="growth" src="http://static4blog.84tt.com/web/wp-content/uploads/2011/12/growth.png" alt="growth 2011 Tech Rewind: This year in Google" width="520" height="274" data-pinit="registered" /></a></p>
<p>在封闭的Beta版阶段，Google+就已经做到了以上这些。虽然封闭的Beta版似乎事件比预想的要久一点，但Google+最终在九月面向公众开放了。然而，之后的情况却是，用户并没有像Google所期望的那样产生大量的公开内容。在八月份，<a href="http://thenextweb.com/google/2011/08/16/48-of-google-users-have-never-made-a-public-post/" target="_blank">48%的Google+用户没有发布任何公开内容</a>，这也意味着他们之后依然不会发布内容。</p>
<p>如果当时Google+被宣告死亡，那也不会是Google历史上唯一一次记录。随着Google+推出强制用户使用真名的政策，尤其是在Google<a href="http://thenextweb.com/google/2011/07/25/google-is-learning-lessons-from-google-fake-names-debacle/" target="_blank">禁止了一大批使用假名的账户之后</a>，这一举措在网络上引起了轩然大波。几个月之后，Google终于<a href="http://www.washingtonpost.com/business/technology/google-plus-relaxing-real-name-policy/2011/10/20/gIQA81140L_story.html" target="_blank">放宽了要求实名的政策</a>，承认对于一些人来说<a href="http://thenextweb.com/me/2011/08/14/online-anonymity-a-gateway-to-freedom-or-abuse/" target="_blank">确实有匿名的需要</a>。</p>
<p>在过去的六个月里，Google+陆续推出了一些新的功能，比如<a href="http://thenextweb.com/google/2011/11/07/google-launches-pages-for-google/" target="_blank">Google+ Page</a>这一<a href="http://thenextweb.com/google/2011/11/20/googles-secret-weapon-against-twitter-and-facebook/" target="_blank">对其他竞争对手构成威胁</a>的利器。与此同时，它也发布了其他一些功能，比如<a href="http://thenextweb.com/google/2011/12/19/google-launches-new-features-for-google-pages-adds-noise-control-to-your-stream-and-more/" target="_blank">控制信息流噪音</a>、更好地<a href="http://thenextweb.com/google/2011/12/08/google-just-got-better-with-gmail-and-contacts-integration/" target="_blank">整合Gmail和Google联系人</a>等。</p>
<p>虽然Twitter已垄断了名人们对社会化媒体的使用，但仍然有不少明星、政治家以及体育运动员们加入了Google+ 。小甜甜布兰妮是Google+被关注最多的用户，目前已有<a href="http://thenextweb.com/google/2011/12/16/britney-spears-just-became-the-first-user-to-hit-one-million-circles-on-google/" target="_blank">超过一百万人</a>将她加入自己的圈子。在<a href="http://socialstatistics.com/top/people" target="_blank">前10名</a>中紧随布兰妮之后的还有史努比狗狗、提拉·班克斯以及理查德·布兰森。到目前为止，只有一位Google+用户被加入圈子的次数也超过一百万，但他并不是明星，而是Google的CEO<a href="http://socialstatistics.com/profile/106189723444098348646" target="_blank">拉里·佩奇</a>。</p>
<p>当美国总统<a href="http://thenextweb.com/google/2011/11/23/the-president-just-got-plussed-barack-obama-joins-google/" target="_blank">奥巴马加入Google+</a>时，这再次成为了新闻头条。但他在Google+中只被添加到8000多个圈子中。随着从<a href="http://thenextweb.com/google/2011/10/10/watch-the-video-taken-when-dalai-lama-archbishop-desmond-tutu-hung-out-on-google/" target="_blank">达赖喇嘛与Desmond Tutu大主教</a>到<a href="http://thenextweb.com/google/2011/11/09/fox-news-wants-you-to-hangout-with-us-presidential-candidates-on-google/" target="_blank">美国总统候选人</a>纷纷入驻Google+，<a href="http://thenextweb.com/google/2011/09/20/google-announces-big-changes-for-google-hangouts/" target="_blank">它的好处</a>开始逐渐引起人们的注意。</p>
<p>虽然Google+可能有它的反对者，但它已经赢得不少社区，其中最大的支持者莫过于在线摄影社区。Google+ 也被证明是<a href="http://thenextweb.com/google/2011/07/23/can-google-beat-twitter-and-facebook-as-a-tool-for-journalists/" target="_blank">记者们</a>的好工具，或是一款出色的<a href="http://thenextweb.com/google/2011/07/13/how-google-could-become-an-essential-business-tool/" target="_blank">项目管理工具</a>，甚至是一个<a href="http://thenextweb.com/google/2011/07/03/how-to-turn-google-into-an-online-photography-portfolio/" target="_blank">相册</a>。</p>
<p>在10月份，伴随着Google+的成功，Google在社会化网络方面的尝试终于初见成效。Google最终决定<a href="http://thenextweb.com/google/2011/10/14/google-to-finally-shut-down-google-buzz/" target="_blank">关闭Buzz</a>，这一效仿Twitter并持续两年的产品，并没有给Google带来丝毫社会化媒体的效果。</p>
<p>&nbsp;</p>
<h3>2. Google的改进</h3>
<p>伴随Google+的推出，Google对所有产品进行了更为全面的改进，它将Google+整合到了绝大多数产品中，同时在每个站点中采用了更为统一、清新的界面。</p>
<p><strong>2.1 YouTube</strong></p>
<p>我们抓住了在<a href="http://thenextweb.com/google/2011/07/07/youtubes-got-a-great-new-look-and-you-can-try-it-now/" target="_blank">7月</a>的YouTube重新设计回的一瞥，包括更好的订阅管理，更好的视频建议，当然更直接的集成与谷歌的变化+。 12月正式推出重新设计，但它显然不下去YouTube用户。宣布推出的视频刚刚获得4000多喜欢，超过15,000好恶鲜明的合同。</p>
<p>在七月份，我们预览到了重新设计后的YouTube，包括了更好的订阅管理、更好的视频推荐，当然也有与Google+更为直接的整合。12月份这一设计正式推出之后，显然并未能赢得YouTube用户的喜爱。宣布改版发布的视频下面，只获得了4000多次“喜欢”，但却收到了超过15000次的“不喜欢”。</p>
<p><iframe src="http://www.youtube.com/embed/W-ajXnrpkio" frameborder="0" width="520" height="294"></iframe></p>
<p>去年12月，YouTube的又一次看到了更新，但这个时候到后端，与<a href="http://thenextweb.com/google/2011/12/09/google-redesigns-youtubes-new-video-manager/" target="_blank">YouTube视频管理器</a>的更改，以及最近YouTube已经宣布计划实施更有<a href="http://thenextweb.com/google/2011/12/22/youtubes-vp-of-marketing-talks-about-the-future-of-advertising-on-the-site/" target="_blank">针对性的广告形式</a>，为每个用户量身定制的广告。</p>
<div id="gt-res-wrap">
<div dir="ltr"></div>
<div dir="ltr">12月份，YouTube又进行了一次更新，但这次主要集中在后台，比如：对YouTube视频管理器的修改，以及最近它宣布计划实施更有为每位用户定制的更有针对性的广告投放等。</div>
</div>
<p><strong>2.2 Gmail</strong></p>
<p>10月，Gmail发布了我们曾在<a href="http://thenextweb.com/google/2011/07/01/gmails-got-a-brand-new-look-and-you-can-try-it-now/" target="_blank">7月</a>预览过的新版界面。这次改动不仅给用户提供了更为一致、清新的体验，最大的改变是让Gmail能够适应每个人的喜好，你可以调整Gmail聊天与标签所占用的屏幕空间比例，也可以根据屏幕尺寸调节调整阅读体验。</p>
<p>12月，Gmail加入了更多的更新，这次它<a href="http://thenextweb.com/google/2011/12/08/google-just-got-better-with-gmail-and-contacts-integration/" target="_blank">与Google+整合</a>得更为紧密。伴随新的功能的发布，用户已经可以在Gmail中看到联系人的Google+ 更新，也能看到联系人被自己加入到了哪个圈子中。</p>
<p><iframe src="http://www.youtube.com/embed/vfW5e6jVsMs" frameborder="0" width="520" height="294"></iframe></p>
<p><strong>2.3 Google Reader</strong></p>
<p>Google的另一步行动就是对<a href="http://thenextweb.com/google/2011/10/31/google-reader-gets-a-new-look-google-now-the-de-facto-sharing-option/" target="_blank">Google Reader进行改版</a>，但这步却遭到了大量抗议。这个RSS阅读器不仅仅被重新设计成了与新版Gmail一样的外观，同时也取消了原有的社会化功能，毫无疑问，这一举措是为了试图推动用户去使用Google+。</p>
<p>原本用户们可以在阅读器中直接浏览自己的朋友们以及关注者分享的条目，但现在这些都被取消了，他们只能直接将其Google Reader中的条目分享到Google+。这一改变甚至引起了一场<a href="http://www.washingtonpost.com/blogs/arts-post/post/occupy-google-reader-changes-to-the-rss-feed-irk-the-sharebros/2011/10/27/gIQA7GbBMM_blog.html" target="_blank">在Google华盛顿特区总部门口发起的10人抗议活动</a>。</p>
<p><a href="http://dcist.com/2011/10/click_click_google_reader_protest_s.php#photo-4"><img title="googlereader" src="http://static4blog.84tt.com/web/wp-content/uploads/2011/12/googlereader.jpeg" alt="" width="520" height="388" data-pinit="registered" /></a></p>
<p>更严重的一点是，这些改变给Google的伊朗用户带来了严重影响。在伊朗，Google Reader是少数未被屏蔽并具备社会化功能的网站之一。随着去除分享功能，Google也同时带走了一个伊朗作家传播信息的有效方法，对此在这条<a href="https://plus.google.com/113760695441101959932/posts/Yxj9MquTddH" target="_blank">Google Plus的帖子</a>下有很多人对此进行了讨论。</p>
<p><strong>2.4 Google文档、Google搜索</strong></p>
<p>2011年，当我们已经认为Google搜索页面已经简单到无法再简单时，Google还是又让它<a href="http://thenextweb.com/google/2011/06/18/google-testing-yet-another-redesign/" target="_blank">精简了一些</a>——去掉了“手气不错”的按钮，并且让页面的视觉风格去Google其他产品保持了一致。Google文档在八月份也进行类似的改动。</p>
<p>&nbsp;</p>
<h3>3. Google的收购</h3>
<p>谷歌在2011年中一共有<a href="http://en.wikipedia.org/wiki/List_of_acquisitions_by_Google" target="_blank">26次收购</a>，其中最大的是对摩托罗拉的收购——尽管它尚未完成。另一个重大的收购是，谷歌买下了Zagat。其他有趣的收购包括：语音网站SayNow、用了5800万美元收购英国的比价网站<a href="http://thenextweb.com/google/2011/03/07/google-buys-uk-comparison-website-beatthatquote-com/" target="_blank">BeatThatQuote.com</a>英国、花费1000万美元收购社会化影评网站Fflick、用了1.14亿美元收购德国的团购网站DailyDeal。谷歌最近期的一次收购，是于12月13日宣布的收购一款用餐推荐应用 <a href="http://thenextweb.com/google/2011/12/13/google-acquires-clever-sense-creator-of-recommendation-app-alfred/" target="_blank">Alfred</a>。</p>
<p><strong>3.1 Google收购摩托罗拉移动业务</strong></p>
<p>2011年是Android迅猛发展的一年，而八月份<a href="http://thenextweb.com/google/2011/08/15/google-to-acquire-motorola-mobility-for-12-5-billion/" target="_blank">Google计划耗资125亿美元收购摩托罗拉移动</a>，显然成为了关于Android操作系统的最大新闻。后来据透露，搜索巨头打算用<a href="http://thenextweb.com/google/2011/09/14/google-outbid-itself-by-33-to-purchase-motorola-mobility-reveals-filing/" target="_blank">高出33％的价格</a>完成这项收购。此次收购是谷歌的真正的机会，作为智能手机厂商本身的位置，并有可能向用户提供一个更集中的Android体验，化解某些OS本身带来的困扰。</p>
<p>然而，此次收购，仍未敲定。<a href="http://thenextweb.com/google/2011/11/28/google-will-get-an-eu-decision-on-its-motorola-mobility-acquisition-by-10-january/" target="_blank">欧盟委员会正在调查处理</a>，并将在2012年1月10日做出决定，伴随欧盟从Google索取更多的信息，现在看来很有可能会延期。Google目前对收购持乐观态度，一位Google发言人告诉<a href="http://www.bloomberg.com/news/2011-12-12/eu-stops-clock-on-google-motorola-mobility-merger-review.html" target="_blank">彭博社</a>，这是“有信心委员会将结束调查，此次收购是良好的竞争。”</p>
<p>那么，Google收购摩托罗拉究竟会带来什么？一方面，它意味着，Google可以得到<a href="http://thenextweb.com/google/2011/08/15/motorola-acquisition-means-google-gets-17000-patents-with-7500-pending/" target="_blank">超过17000项的专利</a>。此外，借助摩托罗拉公司的技术，Google也将有能力生产<a href="http://thenextweb.com/google/2011/08/15/googles-motorola-deal-what-exactly-is-google-buying/" target="_blank">更多的Google手机</a>，同时还可以确保带给用户更加统一的跨平台经验。除了众所周知的摩托罗拉的移动技术之外，Google也将获得一个机顶盒制造技术及其专利用来生产更完美的Google TV。</p>
<p>当然，与此同时，并非Google在收购方面全是好消息。<a href="http://thenextweb.com/apple/2011/08/10/apple-sues-motorola-in-europe-over-xoom-tablet-design/" target="_blank">在德国</a>，围绕专利、设备、硬件等问题，苹果公司与摩托罗拉正在展开一系列诉讼。</p>
<p><strong>3.2 Google收购Zagat</strong></p>
<p><a href="http://thenextweb.com/google/2011/09/08/why-did-google-just-acquire-zagat-hint-its-way-bigger-than-local/" target="_blank">九月份收购Zagat</a>，是2011年中Google的另一起重大收购。Zagat创建于1979年，它拥有350,000条来自于调查员的餐馆点评。自从2009年Zagat挂牌出售以来，Google一直保持关注并最终<a href="http://allthingsd.com/20110909/google-paid-125-million-for-zagat/" target="_blank">花费1.25亿美元</a>将其买下。</p>
<p>通过这次收购，Google除了将获得Zagat的品牌之外，也将一并获得其全部数据，而这些将会有助于改进<a href="http://www.google.com/places/" target="_blank">Google Palces</a>。</p>
<p>&nbsp;</p>
<h3>4. Android的数据</h3>
<p>在2011年初，Android已取得了显著成绩，<a href="http://thenextweb.com/mobile/2011/01/31/android-reportedly-now-the-worlds-top-smartphone-os/" target="_blank">它超过了世界上占主导地位的智能手机操作系统Symbian</a>。从最近的一些<a href="http://thenextweb.com/mobile/2011/11/29/report-smartphones-account-for-just-27-of-all-mobile-phones-worldwide/" target="_blank">统计数据</a>看，我们发现，Android已占据11%的市场份额，成为智能机操作系统的领头羊，而iOS与Symbian各占5％。然而，在文中值得注意的一点是，智能手机已占全世界手机总量的27％。</p>
<p>这个操作系统本身已经在这一年中产生了好几个重要的里程碑，最新的数据表明其<a href="http://thenextweb.com/google/2011/12/21/android-is-now-seeing-more-than-700000-new-activations-every-day/" target="_blank">每日激活量约在70万部左右</a>。正如我们之前所指出的那样，这一数字目前仍在不断上升。</p>
<p>过去的这一年里，Android的增长令人印象深刻，<a href="http://thenextweb.com/mobile/2010/08/05/google-now-activates-200000-android-phones-every-day/?utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed%3A+TheNextWeb+%28The+Next+Web+All+Stories%29" target="_blank">在2010年8月</a>，每天约有20万部Android设备被激活，而<a href="http://thenextweb.com/google/2011/06/28/google-now-activates-500000-android-devices-every-day/" target="_blank">在2011年6月</a>，一年不到的时间里，这一数字就已上升增加150%，跃至50万部。</p>
<p>到了<a href="http://thenextweb.com/google/2011/07/14/there-are-now-550000-android-phones-activated-every-day/" target="_blank">2011年7月</a>，Android在1.3亿设备上日均有55万次激活，同时在Android应用市场中产生了60亿次下载。</p>
<p>而到<a href="http://thenextweb.com/google/2011/10/13/google-190-million-android-devices-activated-worldwide-thats-about-576900-a-day-since-may/" target="_blank">十月份</a>，手机激活数已上升至1.9亿部，到了十二月份，App下载量已突破<a href="http://thenextweb.com/google/2011/12/06/android-market-hits-10b-apps-downloaded-now-at-1b-a-month-10c-app-sale-to-celebrate/" target="_blank">100亿次</a>。</p>
<p>仅在圣诞节周末，Android的激活量就已激增至<a href="http://thenextweb.com/google/2011/12/28/google-announces-3-7m-android-activations-over-the-christmas-weekend/" target="_blank">370万次</a>。</p>
<p>&nbsp;</p>
<h3>5. 冰淇淋三明治 (Ice Cream Sandwich)</h3>
<p>在2011年10月，作为“姜饼”的后续版本——代号为“<a href="http://www.android.com/about/ice-cream-sandwich/" target="_blank">冰淇淋三明治</a>”的Android版本在万众瞩目中<a href="http://googleblog.blogspot.com/2011/10/unwrapping-ice-cream-sandwich-on-galaxy.html" target="_blank">发布</a>。新的操作系统将会给用户的智能电话带来更多的全新功能，你可以<a href="http://thenextweb.com/mobile/2011/10/19/google-and-samsung-unveil-the-galaxy-nexus-and-android-4-0-4-65-inches-1-2-ghz-5-mp-camera/" target="_blank">在这里</a>了解到更多关于“冰淇淋三明治”版本的相关规格及全新特性。</p>
<p>最初，“冰淇淋三明治”并不会对所有的智能机用户开放。三星Galaxy Nexus及<a href="http://thenextweb.com/mobile/2011/11/15/all-sony-ericsson-2011-android-xperia-devices-to-get-ice-cream-sandwich/" target="_blank">索尼Xperia系列</a>将会被率先搭载“冰淇淋三明治”版本系统。虽然三星Galaxy Nexus原计划于2011年11月发布，但在上周，Google已宣布其将延期至<a href="http://thenextweb.com/mobile/2011/12/23/samsung-galaxy-s-and-first-generation-tab-owners-face-ice-cream-sandwich-wait/" target="_blank">2012年一季度</a>发布。</p>
<p>随着“冰淇淋三明治”的曝光，Google也已<a href="http://thenextweb.com/google/2011/11/14/android-4-0-ice-cream-sandwich-source-code-released/" target="_blank">公开了其源代码</a>（又名Android 4.0）。</p>
<p><iframe src="http://www.youtube.com/embed/Py9TfZGie48" frameborder="0" width="520" height="294"></iframe></p>
<p>然后，在其发布前，很快就已有开发者指出了最新版中的<a href="http://thenextweb.com/google/2011/12/22/an-extensive-collection-of-ui-inconsistencies-and-irritations-in-android-4-0/" target="_blank">一些缺陷</a>。</p>
<p>&nbsp;</p>
<h3>6. Google钱包 (Google Wallet)</h3>
<p>2011年5月，<a href="http://thenextweb.com/google/2011/09/19/googles-nfc-driven-wallet-is-now-live/" target="_blank">Google钱包</a>更多出现在了我们的视野中，它通过NFC技术使你的手机成为一个虚拟钱包。在9月，它已经向使用Sprint网络的Google Nexus 4G用户<a href="http://thenextweb.com/google/2011/09/19/googles-nfc-driven-wallet-is-now-live/" target="_blank">提供服务</a>，并已覆盖美国的主要城市（包括纽约，旧金山，洛杉矶，芝加哥和华盛顿等）。这一服务也已面向花旗、万事达卡、维萨卡、探索及运通卡的持卡人提供服务。</p>
<p>为了尽可能地保证服务的安全性，你的所有信用卡信息都会被存放在芯片的单独区域中，并且对于所有的新卡均会被设定100美元的上限，除非持卡人自行调整这一限制。</p>
<p>以下这段视频将会更清晰地告诉你，Google钱包是非常易用的：</p>
<p><iframe src="http://www.youtube.com/embed/2RJaAUeASyU" frameborder="0" width="520" height="294"></iframe></p>
<p>&nbsp;</p>
<h3>7. Carrier IQ</h3>
<p>有一款名为Carrier IQ的程序被曝光，其被安装在了大多数的Android手机当中，这可能成为了Android系统在2011年里最大的不和谐新闻了。</p>
<p>Carried IQ为何会引起如此大的恐慌？这是因为它会记录短信息、Web访问、Email内容、搜索查询等信息，而这一事件已导致<a href="http://thenextweb.com/insider/2011/12/03/carrier-iq-apple-htc-samsung-as-well-as-att-sprint-and-t-mobile-sued-over-federal-wiretap-laws/" target="_blank">集体诉讼</a>及欧洲监管机构对其的调查。</p>
<p>&nbsp;</p>
<h3>8. Google音乐 (Music)</h3>
<p>Google在2011年的另一个全新产品就是<a href="https://music.google.com/music/listen?u=0#start_pl" target="_blank">Google音乐</a>，但目前它仅对美国用户开放。当其还在beta内测版时，就已有<a href="http://thenextweb.com/google/2011/11/16/during-google-music-beta-users-streamed-over-2-5-million-hours-of-music-a-day/" target="_blank">超过一百万人</a>体验该项服务，平均每天产生了250万小时的收听量——折算下来，人均每天收听2.5小时。</p>
<p><iframe src="http://www.youtube.com/embed/NI8rQEHoE24" frameborder="0" width="520" height="294"></iframe></p>
<p>Google宣布已有超过1000个合作伙伴，其中包括EMI、环球、Sony音乐以及大量的独立音乐人。这项服务为用户提供了1300万首歌曲，同时Google也宣布计划为包括滚石、Coldplay在内的主力乐队举办独家音乐会。除了举行大型音乐会外，Google还为Busta Rhymes推出了最新专辑。</p>
<p>在十一月份，Google音乐<a href="http://thenextweb.com/google/2011/11/16/google-announces-google-music-free-for-all-only-in-us-so-far/" target="_blank">正式开放</a>，同时在美国也可以免费下载其Android应用。通过该应用，用户可以收听他们上传到Google音乐中的曲目，同时也可以购买新的曲目，当然，也可以轻松将正在收听的歌曲分享给自己的朋友们。与Google旗下的其他产品一样，Google也很快将<a href="http://thenextweb.com/google/2011/11/16/share-whole-songs-and-albums-youve-bought-from-google-music-on-google/" target="_blank">其与Google+进行了整合</a>，用户可以很方便将购买的音乐或专辑分享给自己在Google+上的粉丝们。</p>
<p>但事实上，并不是只有美国以外的用户不能使用Google音乐。因为Google音乐只兼容Android 2.2 以上版本，大约有超过<a href="http://thenextweb.com/google/2011/11/17/26-million-android-users-wont-get-google-music/" target="_blank">2600万Android用户</a>受到冷落，这意味着超过13%的Android用户无法使用这项公共服务。</p>
<p>&nbsp;</p>
<h3>9. Google搜索</h3>
<p>每年，Google都会公布搜索榜<a href="http://www.google.com/zeitgeist/" target="_blank">Google Zeitgeist</a> 。<a href="http://thenextweb.com/google/2011/12/15/see-how-the-world-searched-google-in-2011-video/" target="_blank">这段视频</a>Google将用户在<a href="http://thenextweb.com/google/2011/12/16/2011-google-data-reveals-searchers-in-the-u-s-want-more-local-news/" target="_blank">美国</a>、<a href="http://thenextweb.com/uk/2011/12/15/the-iphone-5-and-scampi-feature-in-googles-top-uk-searches-of-2011/" target="_blank">英国</a>、<a href="http://thenextweb.com/me/2011/12/15/hosny-mubarak-and-wael-ghonim-top-list-of-googles-most-searched-for-people-in-egypt/" target="_blank">中东</a>发生的搜索行为放在在一起，相当震撼。</p>
<p><iframe src="http://www.youtube.com/embed/SAIEamakLoY" frameborder="0" width="520" height="294"></iframe></p>
<p>&nbsp;</p>
<p><strong>想要了解这一系列更多信息，请<a href="http://www.delicious.com/stacks/view/E9es44" target="_blank">点击这里</a>。</strong></p>
<p>【原文：<a href="http://thenextweb.com/google/2011/12/30/2011-tech-rewind-this-year-in-google/" target="_blank">2011 Tech Rewind: This year in Google</a> By <a href="http://twitter.com/nfm" target="_blank">Nancy Messieh</a>，译者：<a href="http://www.84tt.com/web/" target="_blank">Summer</a> 】</p>
<p>&nbsp;</p>
<hr />
<p><small>© Summer for <a href="http://www.84tt.com/web" target="_blank">恍惚之中</a>, 2012. | <a href="http://www.84tt.com/web/2012/01/558.html" target="_blank">Permalink</a> |
<a href="http://www.84tt.com/web/2012/01/558.html#comments" target="_blank">No comment</a> | <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/2.5/cn/"><img alt="知识共享许可协议" style="border-width:0" src="http://i.creativecommons.org/l/by-nc-sa/2.5/cn/80x15.png" /></a>
<br />
Post tags: <a href="http://www.84tt.com/web/tag/2011" rel="tag">2011</a>, <a href="http://www.84tt.com/web/tag/google" rel="tag">Google</a>, <a href="http://www.84tt.com/web/tag/%e4%ba%a7%e5%93%81%e5%88%86%e6%9e%90" rel="tag">产品分析</a><br/></small>
</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="102" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="如何将iphone通讯录与Google通讯录同步？" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2011%2F10%2F248.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F01%2F558.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2012/03/22/17914637.jpg" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">如何将iphone通讯录与Google通讯录同步？</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="Google Chrome浏览器中使用自己指定的DNS服务器" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F02%2F604.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F01%2F558.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2012/03/22/17912372.png" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Google Chrome浏览器中使用自己指定的DNS服务器</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="Google Reader 中文版" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2007%2F09%2F186.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F01%2F558.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2012/04/30/23501007.png" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Google Reader 中文版</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="收到Google来信" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2007%2F03%2F11.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F01%2F558.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2012/05/19/22751310.jpg" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">收到Google来信</font>
                    </a>
                </td>
                <td width="102" 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?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F02%2F600.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2012%2F01%2F558.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2012/03/22/17912534.jpg" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !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" 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.84tt.com/web/2012/01/558.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>来自August Interactive：免费下载91枚矢量图标</title>
		<link>http://www.84tt.com/web/2011/12/553.html</link>
		<comments>http://www.84tt.com/web/2011/12/553.html#comments</comments>
		<pubDate>Fri, 30 Dec 2011 14:50:42 +0000</pubDate>
		<dc:creator>Summer</dc:creator>
				<category><![CDATA[资源下载]]></category>
		<category><![CDATA[矢量图标]]></category>
		<category><![CDATA[UI设计]]></category>
		<category><![CDATA[免费素材]]></category>

		<guid isPermaLink="false">http://www.84tt.com/web/?p=553</guid>
		<description><![CDATA[各种漂亮精美的素材总是令人喜爱，这套来自 August Interactive 的免费矢量图标，是他们迎接2012新年到来送出的一份礼物:)  这一系列图标涵盖了我们常用的UI设计元素，比如音量、缩放、播放器、查看、下载等控件。 这套图标是由 Tomas Gajar 使用 Adobe Fireworks 设计，并已导出一份完整的分层 Photoshop 文件。话说，这些清爽精致的图标，可能你每天都能在UI设计中派上用场。 免费下载全套图标！ 这套免费图标提供了矢量、PS和Fireworks的PNG三种格式的文件。这些图标可以免费使用在商业或个人项目中，没有任何限制。如转载时，请保留原文链接。 点击预览大图 点击下载全套免费图标 (zip格式压缩包，3.4 MB) 我们明年见!  Happy 2012! © Summer for 恍惚之中, 2011. &#124; Permalink &#124; No comment &#124; Post tags: 矢量图标, UI设计, 免费素材<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="102" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="搜索框UI设计精彩案例大集合" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2011%2F12%2F458.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2011%2F12%2F553.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2012/03/22/17913557.jpg" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">搜索框UI设计精彩案例大集合</font>
                    </a>
                </td>
                <td width="102" 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?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2011%2F12%2F378.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2011%2F12%2F553.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2012/03/29/18419176.png" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !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="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="UI=U not I" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2008%2F04%2F195.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2011%2F12%2F553.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://ecx.images-amazon.com/images/I/41uiU23yoLL._SL500_AA300_.jpg" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">UI=U not I</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="随时随地设计原型：4款iPad原型绘制应用" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2011%2F12%2F543.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2011%2F12%2F553.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2012/03/22/17912644.jpg" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">随时随地设计原型：4款iPad原型绘制应用</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="快速原型的4个关键要素" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2011%2F12%2F454.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2011%2F12%2F553.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/02/16/2743545.png" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">快速原型的4个关键要素</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems" 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>各种漂亮精美的素材总是令人喜爱，这套来自 <a href="http://www.augustinteractive.com/" target="_blank">August Interactive</a> 的免费矢量图标，是他们迎接2012新年到来送出的一份礼物:)  这一系列图标涵盖了我们常用的UI设计元素，比如音量、缩放、播放器、查看、下载等控件。</p>
<p><a href="http://static4blog.84tt.com/web/wp-content/uploads/2011/12/sm-front-page.jpg" target="_blank"><img title="Freebie Preview" src="http://static4blog.84tt.com/web/wp-content/uploads/2011/12/sm-front-page.jpg" alt="Freebie Preview" width="500" height="496" /></a></p>
<p>这套图标是由 <a href="https://twitter.com/#!/tomasgajar" target="_blank">Tomas Gajar</a> 使用 Adobe Fireworks 设计，并已导出一份完整的分层 Photoshop 文件。话说，这些清爽精致的图标，可能你每天都能在UI设计中派上用场。</p>
<p><span id="more-553"></span></p>
<h4>免费下载全套图标！</h4>
<p>这套免费图标提供了矢量、PS和Fireworks的PNG三种格式的文件。这些图标可以免费使用在商业或个人项目中，没有任何限制。如转载时，请保留<a href="http://www.smashingmagazine.com/2011/12/29/freebie-free-vector-web-icons-91-icons/" target="_blank">原文链接</a>。</p>
<ul>
<li><a href="http://static4blog.84tt.com/web/wp-content/uploads/2011/12/sm-full-pack.jpg" target="_blank">点击预览大图</a></li>
<li><a href="http://provide.smashingmagazine.com/free-vector-user-interface-icons.zip" target="_blank">点击下载全套免费图标</a> (zip格式压缩包，3.4 MB)</li>
</ul>
<p><a href="http://static4blog.84tt.com/web/wp-content/uploads/2011/12/sm-full-pack.jpg" target="_blank"><img title="Full Pack" src="http://static4blog.84tt.com/web/wp-content/uploads/2011/12/sm-full-pack.jpg" alt="Full Pack" width="500" height="840" /></a></p>
<p><a href="http://static4blog.84tt.com/web/wp-content/uploads/2011/12/sm-fully-scalable.jpg" target="_blank"><img title="Fully Scalable" src="http://static4blog.84tt.com/web/wp-content/uploads/2011/12/sm-fully-scalable.jpg" alt="Fully Scalable" width="500" height="496" /></a></p>
<h4></h4>
<h4>我们明年见!  Happy 2012!</h4>
<hr />
<p><small>© Summer for <a href="http://www.84tt.com/web" target="_blank">恍惚之中</a>, 2011. | <a href="http://www.84tt.com/web/2011/12/553.html" target="_blank">Permalink</a> |
<a href="http://www.84tt.com/web/2011/12/553.html#comments" target="_blank">No comment</a> | <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/2.5/cn/"><img alt="知识共享许可协议" style="border-width:0" src="http://i.creativecommons.org/l/by-nc-sa/2.5/cn/80x15.png" /></a>
<br />
Post tags: <a href="http://www.84tt.com/web/tag/%e7%9f%a2%e9%87%8f%e5%9b%be%e6%a0%87" rel="tag">矢量图标</a>, <a href="http://www.84tt.com/web/tag/ui%e8%ae%be%e8%ae%a1" rel="tag">UI设计</a>, <a href="http://www.84tt.com/web/tag/%e5%85%8d%e8%b4%b9%e7%b4%a0%e6%9d%90" rel="tag">免费素材</a><br/></small>
</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="102" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="搜索框UI设计精彩案例大集合" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2011%2F12%2F458.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2011%2F12%2F553.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2012/03/22/17913557.jpg" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">搜索框UI设计精彩案例大集合</font>
                    </a>
                </td>
                <td width="102" 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?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2011%2F12%2F378.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2011%2F12%2F553.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2012/03/29/18419176.png" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !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="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="UI=U not I" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2008%2F04%2F195.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2011%2F12%2F553.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://ecx.images-amazon.com/images/I/41uiU23yoLL._SL500_AA300_.jpg" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">UI=U not I</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="随时随地设计原型：4款iPad原型绘制应用" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2011%2F12%2F543.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2011%2F12%2F553.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2012/03/22/17912644.jpg" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">随时随地设计原型：4款iPad原型绘制应用</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="快速原型的4个关键要素" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2011%2F12%2F454.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2011%2F12%2F553.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/02/16/2743545.png" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">快速原型的4个关键要素</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems" 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.84tt.com/web/2011/12/553.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>随时随地设计原型：4款iPad原型绘制应用</title>
		<link>http://www.84tt.com/web/2011/12/543.html</link>
		<comments>http://www.84tt.com/web/2011/12/543.html#comments</comments>
		<pubDate>Thu, 29 Dec 2011 05:37:25 +0000</pubDate>
		<dc:creator>Summer</dc:creator>
				<category><![CDATA[产品设计]]></category>
		<category><![CDATA[APP]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[原型]]></category>

		<guid isPermaLink="false">http://www.84tt.com/web/?p=543</guid>
		<description><![CDATA[产品设计师们经常要与原型打交道，除了平时坐在桌前画纸面原型、在电脑屏幕前使用 Axure 或 Balsamiq Mockups 绘制原型之外，有没有想过怎样在地铁上利用乘车的时间随手记录下自己的零碎想法？又或是在咖啡馆里，与好友们一边讨论、一边设计原型？伴随着平板电脑的快速普及，各大原型设计软件也都纷纷推出了iPad版，有了它们，就真的可以做到“Design on the go. Anytime, anywhere. ”。 1. Sketchy Pad ($4.99) 使用这款应用，可以帮助产品设计人员直接构建网站草图或是 iOS 平台下应用的交互原型设计，内置56款模板，支持保存为PNG格式并通过邮件发送，也可以导出为 Balsamiq 的BMML格式文件。 查看详情并下载 &#160; 2. iMockups ($6.99) Endloop 开发的 iMockups 可以帮助产品策划人员直接在iPad上绘制网站、iPhone或iPad应用的原型图，内置网站或iOS设备的常用控件库。在协作方面，除了iPad设备之间可以直接共享之外，它还支持导出PNG格式图片或 Balsamiq 的BMML格式文件。 查看详情并下载 &#160; 3. Draft ($9.99) Draft 出自大名鼎鼎的 37signals ，它与其他三款应用最大的不同在于，Draft 会更为“随意”。它不再仅仅局限在产品设计领域，它是一款很好的屏幕书写应用，大家可以坐在一起，在屏幕上自由写下自己的想法，与他人一起分享讨论。它没有繁多的控件，只提供红白两色以及大面积的屏幕区域，所以只要使用手指就好。所以，这款应用同样也是用于经常需要头脑风暴的运营策划、市场推广等人群。 查看详情并下载 &#160; 4. OmniGraffle ($49.99) 这是四款中价格最贵的 OmniGraffle ，高达49.99美刀，出自老牌产品设计厂商 The Omni Group ，具备 OmniGraffle 桌面版的主要功能，同时也支持导出PNG格式保存到iPad相册、保存为 PDF 或 OmniGraffle 原生格式通过邮件进行分享。 查看详情并下载 &#160; [...]<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="102" 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?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2011%2F12%2F378.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2011%2F12%2F543.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2012/03/29/18419176.png" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !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="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="快速原型的4个关键要素" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2011%2F12%2F454.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2011%2F12%2F543.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/02/16/2743545.png" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">快速原型的4个关键要素</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="搜索框UI设计精彩案例大集合" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2011%2F12%2F458.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2011%2F12%2F543.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2012/03/22/17913557.jpg" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">搜索框UI设计精彩案例大集合</font>
                    </a>
                </td>
                <td width="102" 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?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2011%2F12%2F537.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2011%2F12%2F543.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2012/03/25/18124405.jpg" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !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="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="App更新说明的写作" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2011%2F12%2F259.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2011%2F12%2F543.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2012/03/24/18072686.jpg" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">App更新说明的写作</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems" 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>产品设计师们经常要与原型打交道，除了平时坐在桌前画纸面原型、在电脑屏幕前使用 <a href="http://www.axure.com/" target="_blank">Axure</a> 或 Balsamiq Mockups 绘制原型之外，有没有想过怎样在地铁上利用乘车的时间随手记录下自己的零碎想法？又或是在咖啡馆里，与好友们一边讨论、一边设计原型？伴随着平板电脑的快速普及，各大原型设计软件也都纷纷推出了iPad版，有了它们，就真的可以做到“Design on the go. Anytime, anywhere. ”。</p>
<h4></h4>
<h4>1. Sketchy Pad ($4.99)</h4>
<p>使用这款应用，可以帮助产品设计人员直接构建网站草图或是 iOS 平台下应用的交互原型设计，内置56款模板，支持保存为PNG格式并通过邮件发送，也可以导出为 <a href="http://www.balsamiq.com/" target="_blank">Balsamiq</a> 的BMML格式文件。</p>
<p><a href="http://itunes.apple.com/us/app/sketchypad/id372049989?mt=8">查看详情并下载</a></p>
<p><img src="http://static4blog.84tt.com/web/wp-content/uploads/2011/12/10-sktechypad.jpg" alt="Sketchy Pad" width="500" height="300" /></p>
<p>&nbsp;</p>
<h4>2. iMockups ($6.99)</h4>
<p><a href="http://www.endloop.ca/" target="_blank">Endloop</a> 开发的 <a href="http://www.endloop.ca/imockups/" target="_blank">iMockups</a> 可以帮助产品策划人员直接在iPad上绘制网站、iPhone或iPad应用的原型图，内置网站或iOS设备的常用控件库。在协作方面，除了iPad设备之间可以直接共享之外，它还支持导出PNG格式图片或 <a href="http://www.balsamiq.com/" target="_blank">Balsamiq</a> 的BMML格式文件。</p>
<p><a href="http://itunes.apple.com/us/app/imockups-for-ipad/id364885913?mt=8">查看详情并下载</a></p>
<p><img src="http://static4blog.84tt.com/web/wp-content/uploads/2011/12/7-imockups.jpg" alt="iMockups" width="500" height="300" /></p>
<p>&nbsp;</p>
<p><span id="more-543"></span></p>
<h4>3. Draft ($9.99)</h4>
<p>Draft 出自大名鼎鼎的 <a href="http://37signals.com/draft" target="_blank">37signals</a> ，它与其他三款应用最大的不同在于，Draft 会更为“随意”。它不再仅仅局限在产品设计领域，它是一款很好的屏幕书写应用，大家可以坐在一起，在屏幕上自由写下自己的想法，与他人一起分享讨论。它没有繁多的控件，只提供红白两色以及大面积的屏幕区域，所以只要使用手指就好。所以，这款应用同样也是用于经常需要头脑风暴的运营策划、市场推广等人群。</p>
<p><a href="http://itunes.apple.com/us/app/draft/id375570329?mt=8">查看详情并下载</a></p>
<p><img src="http://static4blog.84tt.com/web/wp-content/uploads/2011/12/27-draft.jpg" alt="Draft" width="500" height="300" /></p>
<p>&nbsp;</p>
<h4>4. OmniGraffle ($49.99)</h4>
<p>这是四款中价格最贵的 OmniGraffle ，高达49.99美刀，出自老牌产品设计厂商 <a href="http://www.omnigroup.com/products/omnigraffle/" target="_blank">The Omni Group</a> ，具备 OmniGraffle 桌面版的主要功能，同时也支持导出PNG格式保存到iPad相册、保存为 PDF 或 OmniGraffle 原生格式通过邮件进行分享。</p>
<p><a href="http://itunes.apple.com/us/app/omnigraffle/id363225984?mt=8">查看详情并下载</a></p>
<p><img src="http://static4blog.84tt.com/web/wp-content/uploads/2011/12/28-omnigraffle.jpg" alt="OmniGraffle" width="500" height="300" /></p>
<p>&nbsp;</p>
<p>如果想了解更多的网站设计或开发领域的iPad应用，可延伸阅读：</p>
<ul>
<li><a href="http://naldzgraphics.net/resources/ipad-apps-for-web-designers-and-developers/" target="_blank">30 Best iPad Apps for Web Designers and Developers</a> By Ebrian Acebedo</li>
</ul>
<p>&nbsp;</p>
<hr />
<p><small>© Summer for <a href="http://www.84tt.com/web" target="_blank">恍惚之中</a>, 2011. | <a href="http://www.84tt.com/web/2011/12/543.html" target="_blank">Permalink</a> |
<a href="http://www.84tt.com/web/2011/12/543.html#comments" target="_blank">5 comments</a> | <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/2.5/cn/"><img alt="知识共享许可协议" style="border-width:0" src="http://i.creativecommons.org/l/by-nc-sa/2.5/cn/80x15.png" /></a>
<br />
Post tags: <a href="http://www.84tt.com/web/tag/app" rel="tag">APP</a>, <a href="http://www.84tt.com/web/tag/ipad" rel="tag">iPad</a>, <a href="http://www.84tt.com/web/tag/%e5%8e%9f%e5%9e%8b" rel="tag">原型</a>, <a href="http://www.84tt.com/web/tag/%e4%ba%a7%e5%93%81%e8%ae%be%e8%ae%a1" rel="tag">产品设计</a><br/></small>
</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="102" 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?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2011%2F12%2F378.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2011%2F12%2F543.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2012/03/29/18419176.png" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !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="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="快速原型的4个关键要素" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2011%2F12%2F454.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2011%2F12%2F543.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/02/16/2743545.png" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">快速原型的4个关键要素</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="搜索框UI设计精彩案例大集合" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2011%2F12%2F458.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2011%2F12%2F543.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2012/03/22/17913557.jpg" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">搜索框UI设计精彩案例大集合</font>
                    </a>
                </td>
                <td width="102" 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?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2011%2F12%2F537.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2011%2F12%2F543.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2012/03/25/18124405.jpg" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !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="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="App更新说明的写作" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2011%2F12%2F259.html&from=http%3A%2F%2Fwww.84tt.com%2Fweb%2F2011%2F12%2F543.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2012/03/24/18072686.jpg" width="96px" height="96px" /><br />
                        <font size="-1"  style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">App更新说明的写作</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems" 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.84tt.com/web/2011/12/543.html/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced
Database Caching using disk: basic
Object Caching 1516/1677 objects using disk: basic
Content Delivery Network via static4blog.84tt.com

Served from: www.84tt.com @ 2012-05-19 18:09:30 -->
