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

<channel>
	<title>拈花微笑 &#187; Jay</title>
	<atom:link href="http://www.jayxu.com/author/admin/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jayxu.com</link>
	<description>晶 · 彦</description>
	<lastBuildDate>Thu, 02 Feb 2012 09:24:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<image>
<link>http://www.jayxu.com</link>
<url>http://www.jayxu.com/wp-content/cbnet-favicon/1289928181_Black_Cat.png</url>
<title>拈花微笑</title>
</image>
		<item>
		<title>有关Java泛型的类型擦除（type erasing）</title>
		<link>http://www.jayxu.com/2012/02/02/13237/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=%25e6%259c%2589%25e5%2585%25b3java%25e6%25b3%259b%25e5%259e%258b%25e7%259a%2584%25e7%25b1%25bb%25e5%259e%258b%25e6%2593%25a6%25e9%2599%25a4%25ef%25bc%2588type-erasing%25ef%25bc%2589</link>
		<comments>http://www.jayxu.com/2012/02/02/13237/#comments</comments>
		<pubDate>Thu, 02 Feb 2012 09:24:41 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[技术生活]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[rest]]></category>
		<category><![CDATA[spring mvc]]></category>
		<category><![CDATA[泛型]]></category>

		<guid isPermaLink="false">http://www.jayxu.com/?p=13237</guid>
		<description><![CDATA[自从Java 5引入泛型之后，Java与C++对于泛型不同的实现的优劣便一直是饭后的谈资。在我之前的很多training中，当讲到Java泛型时总是会和C++的实现比较，一般得出的结论是 Java使用类型擦除（type erasing），泛型信息只在编译时供javac作类型检查用，在编译后便被javac擦除，因此无法被反射 C++使用代码模板实现泛型，即在预处理时会生成类似｢list_int｣，｢list_char｣等的泛型类，虽然解决Java的运行时伪泛型的问题，但是会导致编译后的代码呈线性增长 于是在一般情况下，Java的类型擦除实现较优 这三条已经比绝大多数的Java培训讲师讲得深刻了。但是如果下面有人问｢在什么情况下C++的实现方式较优｣时，除了无法被反射，我很难现抓一个有说服力的例子。今天，Spring的RestTemplate终于给了我这个例子 我遇到的问题如下（阅读需要有一些Spring MVC、REST基础） 有一个返回类型为List的MVC方法： @RequestMapping&#40;value = &#34;...&#34;, method = RequestMethod.GET&#41; @ResponseBody public List&#60;DomainClass&#62; doSomethingREST&#40;&#41; &#123; &#160; &#160; List&#60;DomainClass&#62; domainObjs = ... ; &#160; &#160; return domainObjs; &#125; @RequestMapping(value = "...", method = RequestMethod.GET) @ResponseBody public List&#60;DomainClass&#62; doSomethingREST() { List&#60;DomainClass&#62; domainObjs = ... ; return domainObjs; } 在运行时，Spring MVC会将List转换成JSON字符串并返回至客户端。但是如果我在另一个service中使用RestTemplate直接调用该REST接口，问题便来了： List&#60;DomainClass&#62; <a href="http://www.jayxu.com/2012/02/02/13237/"> read more <span class="meta-nav">&#187;</span></a><table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2005%2F11%2F07%2F171%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2012%2F02%2F02%2F13237%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Java 销魂落魄散  [zz]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F11%2F11%2F1809%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2012%2F02%2F02%2F13237%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">10 things all JAVA developers should know [zz]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F26%2F11723%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2012%2F02%2F02%2F13237%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">X and XX Usgaes for Java</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F08%2F11%2F2396%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2012%2F02%2F02%2F13237%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Java程序员必看电影：Java 4-ever</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F03%2F02%2F1425%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2012%2F02%2F02%2F13237%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Java RMI中的NoSuchObjectException</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p>自从Java 5引入泛型之后，Java与C++对于泛型不同的实现的优劣便一直是饭后的谈资。在我之前的很多training中，当讲到Java泛型时总是会和C++的实现比较，一般得出的结论是</p>
<ul>
<li>Java使用类型擦除（type erasing），泛型信息只在编译时供javac作类型检查用，在编译后便被javac擦除，因此无法被反射</li>
<li>C++使用代码模板实现泛型，即在预处理时会生成类似｢list_int｣，｢list_char｣等的泛型类，虽然解决Java的运行时伪泛型的问题，但是会导致编译后的代码呈线性增长</li>
<li>于是在一般情况下，Java的类型擦除实现较优</li>
</ul>
<p>这三条已经比绝大多数的Java培训讲师讲得深刻了。但是如果下面有人问｢在什么情况下C++的实现方式较优｣时，除了无法被反射，我很难现抓一个有说服力的例子。今天，Spring的RestTemplate终于给了我这个例子</p>
<p>我遇到的问题如下（阅读需要有一些Spring MVC、REST基础）</p>
<p>有一个返回类型为List<DomainClass>的MVC方法：</p>

<div class="bwp-syntax-block clearfix">
<div class="bwp-syntax-toolbar"><div class="bwp-syntax-control"><a href="javascript:;" class="bwp-syntax-source-switch" title="View Source Code"></a></div></div>
<div class="bwp-syntax-wrapper clearfix bwp-syntax-advanced"><div class="java"><ol><li class="li1"><div class="de1">@RequestMapping<span class="br0">&#40;</span>value <span class="sy0">=</span> <span class="st0">&quot;...&quot;</span>, method <span class="sy0">=</span> RequestMethod.<span class="me1">GET</span><span class="br0">&#41;</span></div></li>
<li class="li2"><div class="de2">@ResponseBody</div></li>
<li class="li1"><div class="de1"><span class="kw1">public</span> List<span class="sy0">&lt;</span>DomainClass<span class="sy0">&gt;</span> doSomethingREST<span class="br0">&#40;</span><span class="br0">&#41;</span> <span class="br0">&#123;</span></div></li>
<li class="li2"><div class="de2">&nbsp; &nbsp; List<span class="sy0">&lt;</span>DomainClass<span class="sy0">&gt;</span> domainObjs <span class="sy0">=</span> ... <span class="sy0">;</span></div></li>
<li class="li1"><div class="de1">&nbsp; &nbsp; <span class="kw1">return</span> domainObjs<span class="sy0">;</span></div></li>
<li class="li2"><div class="de2"><span class="br0">&#125;</span></div></li>
</ol></div></div>
<div class="bwp-syntax-source"><pre class="no-parse">@RequestMapping(value = "...", method = RequestMethod.GET)
@ResponseBody
public List&lt;DomainClass&gt; doSomethingREST() {
    List&lt;DomainClass&gt; domainObjs = ... ;
    return domainObjs;
}</pre></div></div>

<p>在运行时，Spring MVC会将List<DomainClass>转换成JSON字符串并返回至客户端。但是如果我在另一个service中使用RestTemplate直接调用该REST接口，问题便来了：</p>

<div class="bwp-syntax-block clearfix">
<div class="bwp-syntax-toolbar"><div class="bwp-syntax-control"><a href="javascript:;" class="bwp-syntax-source-switch" title="View Source Code"></a></div></div>
<div class="bwp-syntax-wrapper clearfix bwp-syntax-advanced"><div class="java"><ol><li class="li1"><div class="de1">List<span class="sy0">&lt;</span>DomainClass<span class="sy0">&gt;</span> domainObjs <span class="sy0">=</span> <span class="kw1">this</span>.<span class="me1">restTemplate</span>.<span class="me1">getForObject</span><span class="br0">&#40;</span><span class="kw1">this</span>.<span class="me1">restURL</span>, <span class="kw3">List</span>.<span class="kw1">class</span><span class="br0">&#41;</span><span class="sy0">;</span></div></li>
</ol></div></div>
<div class="bwp-syntax-source"><pre class="no-parse">List&lt;DomainClass&gt; domainObjs = this.restTemplate.getForObject(this.restURL, List.class);</pre></div></div>

<p>关键在于第二个参数，是返回值的类型，RestTemplate会根据此类型选择适当的MessageConverter将调用REST接口的返回值反序列化为与类型匹配的对象。由于List的泛型参数在编译时被擦除，于是RestTemplate便无法确定List中的内容。｢一般情况下｣（REST接口返回值不是List类型）不会有问题，但是巧合的是，如果服务器端使用JSON对REST结果进行序列化，返回值会被封装在List<LinkedHashMap>中，此时，Spring已无法判断开发人员是想直接获得List<LinkedHashMap>封装的JSON内容还是需要更进一步使用Jackson库将JSON反序列化为Java对象。现实情况下，Spring选择的前者，于是便会抛出ClassCastException</p>
<p>上网搜了一圈，已经有人向Spring提交了enhancement请求（<a href="https://jira.springsource.org/browse/SPR-7002" target="_blank">这里</a>和<a href="https://jira.springsource.org/browse/SPR-7023" target="_blank">这里</a>，其中第一个链接中的walkaround可以work），但是目前没有milestone<br />
&nbsp;
<div style="margin-top: 15px; font-style: italic">
<p><strong>原创内容，转载请注明：</strong> 转载自<a href="http://www.jayxu.com/">拈花微笑</a></p>
<p><strong>本文链接地址:</strong> <a href="http://www.jayxu.com/2012/02/02/13237/">有关Java泛型的类型擦除（type erasing）</a></p>
</div>
<p><a href="http://www.bshare.cn/share?url=http%3A%2F%2Fwww.jayxu.com%2F2012%2F02%2F02%2F13237%2F&title=%E6%9C%89%E5%85%B3Java%E6%B3%9B%E5%9E%8B%E7%9A%84%E7%B1%BB%E5%9E%8B%E6%93%A6%E9%99%A4%EF%BC%88type+erasing%EF%BC%89" title="用bShare分享或收藏本文"><img src="http://static.bshare.cn/frame/images/button_custom1-zh.gif" alt="用bShare分享或收藏本文" /></a></p><table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2005%2F11%2F07%2F171%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2012%2F02%2F02%2F13237%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Java 销魂落魄散  [zz]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F11%2F11%2F1809%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2012%2F02%2F02%2F13237%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">10 things all JAVA developers should know [zz]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F26%2F11723%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2012%2F02%2F02%2F13237%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">X and XX Usgaes for Java</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F08%2F11%2F2396%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2012%2F02%2F02%2F13237%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Java程序员必看电影：Java 4-ever</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F03%2F02%2F1425%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2012%2F02%2F02%2F13237%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Java RMI中的NoSuchObjectException</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.jayxu.com/2012/02/02/13237/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>解决Velocity＋Spring的中文乱码问题</title>
		<link>http://www.jayxu.com/2012/01/12/13221/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=%25e8%25a7%25a3%25e5%2586%25b3velocity%25ef%25bc%258bspring%25e7%259a%2584%25e4%25b8%25ad%25e6%2596%2587%25e4%25b9%25b1%25e7%25a0%2581%25e9%2597%25ae%25e9%25a2%2598</link>
		<comments>http://www.jayxu.com/2012/01/12/13221/#comments</comments>
		<pubDate>Thu, 12 Jan 2012 06:33:50 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[技术生活]]></category>
		<category><![CDATA[spring]]></category>
		<category><![CDATA[velocity]]></category>

		<guid isPermaLink="false">http://www.jayxu.com/?p=13221</guid>
		<description><![CDATA[将spring配置中的velocity view改为： &#60;bean id=&#34;velocityConfig&#34; class=&#34;org.springframework.web.servlet.view.velocity.VelocityConfigurer&#34;&#62; &#60;property name=&#34;resourceLoaderPath&#34; value=&#34;/WEB-INF/vm/&#34; /&#62; &#60;property name=&#34;velocityProperties&#34;&#62; &#60;props&#62; &#60;prop key=&#34;input.encoding&#34;&#62;utf-8&#60;/prop&#62; &#60;prop key=&#34;output.encoding&#34;&#62;utf-8&#60;/prop&#62; &#160; &#160; &#60;/props&#62; &#160; &#60;/property&#62; &#60;/bean&#62; &#60;bean id=&#34;velocityViewResolver&#34; class=&#34;org.springframework.web.servlet.view.velocity.VelocityViewResolver&#34;&#62; &#60;property name=&#34;cache&#34; value=&#34;true&#34; /&#62; &#60;property name=&#34;suffix&#34; value=&#34;.html&#34; /&#62; &#60;property name=&#34;contentType&#34; value=&#34;text/html;charset=UTF-8&#34; /&#62; &#60;/bean&#62; &#60;bean id="velocityConfig" class="org.springframework.web.servlet.view.velocity.VelocityConfigurer"&#62; &#60;property name="resourceLoaderPath" value="/WEB-INF/vm/" /&#62; &#60;property name="velocityProperties"&#62; &#60;props&#62; &#60;prop key="input.encoding"&#62;utf-8&#60;/prop&#62; &#60;prop key="output.encoding"&#62;utf-8&#60;/prop&#62; &#60;/props&#62; &#60;/property&#62; &#60;/bean&#62; <a href="http://www.jayxu.com/2012/01/12/13221/"> read more <span class="meta-nav">&#187;</span></a><table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F06%2F09%2F2342%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2012%2F01%2F12%2F13221%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Spring之Hibernate+JBoss Treecache实现Hibernate集群</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F14%2F13131%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2012%2F01%2F12%2F13221%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">使用Spring LDAP ODM操作LDAP</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2012%2F02%2F02%2F13237%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2012%2F01%2F12%2F13221%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">有关Java泛型的类型擦除（type erasing）</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F07%2F18%2F2373%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2012%2F01%2F12%2F13221%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Spring之经验教训（一）</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F12%2F02%2F1899%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2012%2F01%2F12%2F13221%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Apache给EJB 3.1（JSR #318）投了否决票</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p>将spring配置中的velocity view改为：</p>

<div class="bwp-syntax-block clearfix">
<div class="bwp-syntax-toolbar"><div class="bwp-syntax-control"><a href="javascript:;" class="bwp-syntax-source-switch" title="View Source Code"></a></div></div>
<div class="bwp-syntax-wrapper clearfix bwp-syntax-advanced"><div class="xml"><ol><li class="li1"><div class="de1"><span class="sc3"><span class="re1">&lt;bean</span> <span class="re0">id</span>=<span class="st0">&quot;velocityConfig&quot;</span> <span class="re0">class</span>=<span class="st0">&quot;org.springframework.web.servlet.view.velocity.VelocityConfigurer&quot;</span><span class="re2">&gt;</span></span></div></li>
<li class="li2"><div class="de2"><span class="sc3"><span class="re1">&lt;property</span> <span class="re0">name</span>=<span class="st0">&quot;resourceLoaderPath&quot;</span> <span class="re0">value</span>=<span class="st0">&quot;/WEB-INF/vm/&quot;</span> <span class="re2">/&gt;</span></span></div></li>
<li class="li1"><div class="de1"><span class="sc3"><span class="re1">&lt;property</span> <span class="re0">name</span>=<span class="st0">&quot;velocityProperties&quot;</span><span class="re2">&gt;</span></span></div></li>
<li class="li2"><div class="de2"><span class="sc3"><span class="re1">&lt;props<span class="re2">&gt;</span></span></span></div></li>
<li class="li1"><div class="de1"><span class="sc3"><span class="re1">&lt;prop</span> <span class="re0">key</span>=<span class="st0">&quot;input.encoding&quot;</span><span class="re2">&gt;</span></span>utf-8<span class="sc3"><span class="re1">&lt;/prop<span class="re2">&gt;</span></span></span></div></li>
<li class="li2"><div class="de2"><span class="sc3"><span class="re1">&lt;prop</span> <span class="re0">key</span>=<span class="st0">&quot;output.encoding&quot;</span><span class="re2">&gt;</span></span>utf-8<span class="sc3"><span class="re1">&lt;/prop<span class="re2">&gt;</span></span></span></div></li>
<li class="li1"><div class="de1">&nbsp; &nbsp; <span class="sc3"><span class="re1">&lt;/props<span class="re2">&gt;</span></span></span></div></li>
<li class="li2"><div class="de2">&nbsp; <span class="sc3"><span class="re1">&lt;/property<span class="re2">&gt;</span></span></span></div></li>
<li class="li1"><div class="de1"><span class="sc3"><span class="re1">&lt;/bean<span class="re2">&gt;</span></span></span></div></li>
<li class="li2"><div class="de2"><span class="sc3"><span class="re1">&lt;bean</span> <span class="re0">id</span>=<span class="st0">&quot;velocityViewResolver&quot;</span> <span class="re0">class</span>=<span class="st0">&quot;org.springframework.web.servlet.view.velocity.VelocityViewResolver&quot;</span><span class="re2">&gt;</span></span></div></li>
<li class="li1"><div class="de1"><span class="sc3"><span class="re1">&lt;property</span> <span class="re0">name</span>=<span class="st0">&quot;cache&quot;</span> <span class="re0">value</span>=<span class="st0">&quot;true&quot;</span> <span class="re2">/&gt;</span></span></div></li>
<li class="li2"><div class="de2"><span class="sc3"><span class="re1">&lt;property</span> <span class="re0">name</span>=<span class="st0">&quot;suffix&quot;</span> <span class="re0">value</span>=<span class="st0">&quot;.html&quot;</span> <span class="re2">/&gt;</span></span></div></li>
<li class="li1"><div class="de1"><span class="sc3"><span class="re1">&lt;property</span> <span class="re0">name</span>=<span class="st0">&quot;contentType&quot;</span> <span class="re0">value</span>=<span class="st0">&quot;text/html;charset=UTF-8&quot;</span> <span class="re2">/&gt;</span></span></div></li>
<li class="li2"><div class="de2"><span class="sc3"><span class="re1">&lt;/bean<span class="re2">&gt;</span></span></span></div></li>
</ol></div></div>
<div class="bwp-syntax-source"><pre class="no-parse">&lt;bean id="velocityConfig" class="org.springframework.web.servlet.view.velocity.VelocityConfigurer"&gt;
&lt;property name="resourceLoaderPath" value="/WEB-INF/vm/" /&gt;
&lt;property name="velocityProperties"&gt;
&lt;props&gt;
&lt;prop key="input.encoding"&gt;utf-8&lt;/prop&gt;
&lt;prop key="output.encoding"&gt;utf-8&lt;/prop&gt;
    &lt;/props&gt;
  &lt;/property&gt;
&lt;/bean&gt;
&lt;bean id="velocityViewResolver" class="org.springframework.web.servlet.view.velocity.VelocityViewResolver"&gt;
&lt;property name="cache" value="true" /&gt;
&lt;property name="suffix" value=".html" /&gt;
&lt;property name="contentType" value="text/html;charset=UTF-8" /&gt;
&lt;/bean&gt;</pre></div></div>

<div style="margin-top: 15px; font-style: italic">
<p><strong>原创内容，转载请注明：</strong> 转载自<a href="http://www.jayxu.com/">拈花微笑</a></p>
<p><strong>本文链接地址:</strong> <a href="http://www.jayxu.com/2012/01/12/13221/">解决Velocity＋Spring的中文乱码问题</a></p>
</div>
<p><a href="http://www.bshare.cn/share?url=http%3A%2F%2Fwww.jayxu.com%2F2012%2F01%2F12%2F13221%2F&title=%E8%A7%A3%E5%86%B3Velocity%EF%BC%8BSpring%E7%9A%84%E4%B8%AD%E6%96%87%E4%B9%B1%E7%A0%81%E9%97%AE%E9%A2%98" title="用bShare分享或收藏本文"><img src="http://static.bshare.cn/frame/images/button_custom1-zh.gif" alt="用bShare分享或收藏本文" /></a></p><table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F06%2F09%2F2342%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2012%2F01%2F12%2F13221%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Spring之Hibernate+JBoss Treecache实现Hibernate集群</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F14%2F13131%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2012%2F01%2F12%2F13221%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">使用Spring LDAP ODM操作LDAP</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2012%2F02%2F02%2F13237%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2012%2F01%2F12%2F13221%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">有关Java泛型的类型擦除（type erasing）</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F07%2F18%2F2373%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2012%2F01%2F12%2F13221%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Spring之经验教训（一）</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F12%2F02%2F1899%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2012%2F01%2F12%2F13221%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Apache给EJB 3.1（JSR #318）投了否决票</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.jayxu.com/2012/01/12/13221/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSDN这回一石激起千层浪了</title>
		<link>http://www.jayxu.com/2011/12/23/13167/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=csdn%25e8%25bf%2599%25e5%259b%259e%25e4%25b8%2580%25e7%259f%25b3%25e6%25bf%2580%25e8%25b5%25b7%25e5%258d%2583%25e5%25b1%2582%25e6%25b5%25aa%25e4%25ba%2586</link>
		<comments>http://www.jayxu.com/2011/12/23/13167/#comments</comments>
		<pubDate>Fri, 23 Dec 2011 06:25:31 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[互联网生活]]></category>
		<category><![CDATA[36kr]]></category>
		<category><![CDATA[58同城]]></category>
		<category><![CDATA[cnbeta]]></category>
		<category><![CDATA[coolshell]]></category>
		<category><![CDATA[csdn]]></category>
		<category><![CDATA[sina]]></category>
		<category><![CDATA[万网]]></category>
		<category><![CDATA[人人]]></category>
		<category><![CDATA[大众点评]]></category>
		<category><![CDATA[安全]]></category>
		<category><![CDATA[当当]]></category>
		<category><![CDATA[百度]]></category>

		<guid isPermaLink="false">http://www.jayxu.com/?p=13167</guid>
		<description><![CDATA[昨天从cnBeta（来源已经被删，另外搜索CSDN，最近大部分文章都无法打开）得到消息，CSDN数据库库被爆，600w+用户信息泄露，而且全是明文……汗颜啊，这是中国最大的程序员交流平台啊…… 后来事件开始持续发酵，比如酷壳对泄露的密码做了分析，结果很逗。其实，有些时候并不是用户不想提高密码强度，而是网站做得太二，比如我之前和之前喷过的sina和当当 原本考虑到CSDN大学毕业之后就再未上过，密码模式也是之前使用的模式，也就懒得去改密码。可再后来，36氪爆料人人网、多玩网、世纪佳缘等或者已经同样被爆库，于是我只能开始修改各大网站的密码了，因为用的都是差不多的模式……而这又给我之前的猜想提供了一点素材：现在的用户会注册越来越多的网站账号，为了方便一般都会使用相同或差不多的模式，一旦其中一个网站的密码泄露，那影响到的将是以亿为单位的账号数量 另外这两天，连续收到其它网站的贴心邮件，让我修改密码。这一次，CSDN成为了提醒各大网站和用户提高密码安全意识的排头兵，可谓功不可没。但是奇怪的是，微博上对CSDN的讨伐声基本没有，难道是程序员们都太nice了？ 补记：就在刚才，百度也给我发来了贴心邮件： 再补：大众点评也发来了邮件 2012新年再补：58同城、人人也相继做出了反应： 原创内容，转载请注明： 转载自拈花微笑 本文链接地址: CSDN这回一石激起千层浪了<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2005%2F03%2F12%2F233%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F23%2F13167%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">CSDN的blog好烂啊</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F02%2F10%2F1389%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F23%2F13167%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Sina，I服了U</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F02%2F23%2F2068%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F23%2F13167%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">请教新浪</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2007%2F09%2F18%2F36%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F23%2F13167%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">谁要WOW cd key？</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2006%2F02%2F24%2F162%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F23%2F13167%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">不要更新：Windows XP 安全更新程序 (KB913446)</font>
                    </a>
                </td>
            </tr>
        <br/>
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">来自无觅网络的相关文章：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.dedeadmin.com%2F%3Fp%3D3382&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F23%2F13167%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">CSDN事件带来发展的启示和机遇 (@dedeadmin)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lzhi.org%2Fviews%2F580&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F23%2F13167%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">CSDN 首页的第一屏 广告/新闻 比率 = 40 : 2 (@lzhi)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.dedeadmin.com%2F%3Fp%3D2546&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F23%2F13167%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">织梦DedeCMS安全检测工具 织梦官方出品 (@dedeadmin)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.dedeadmin.com%2F%3Fp%3D3012&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F23%2F13167%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">DedeCMS系统安全检测功能使用说明 (@dedeadmin)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.dedeadmin.com%2F%3Fp%3D1858http%253A%252F%252Fblog.csdn.net%252Fwang_xingang%252Farticle%252Fdetails%252F5217675&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F23%2F13167%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">织梦DedeCMS v5.7全文检索使用说明 | 织梦(Dedecms)管理员之家 (@dedeadmin)</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p>昨天从cnBeta（<a href="http://cnbeta.com/articles/166510.htm" target="_blank">来源</a>已经被删，另外搜索CSDN，最近大部分文章都无法打开）得到消息，CSDN数据库库被爆，600w+用户信息泄露，而且全是明文……汗颜啊，这是中国最大的程序员交流平台啊……</p>
<p>后来事件开始持续发酵，比如<a href="http://coolshell.cn/articles/6193.html" target="_blank">酷壳</a>对泄露的密码做了分析，结果很逗。其实，有些时候并不是用户不想提高密码强度，而是网站做得太二，比如我<a href="http://www.jayxu.com/2009/02/10/1389/" target="_blank">之前</a>和<a href="http://www.jayxu.com/2010/02/23/2068/" target="_blank">之前</a>喷过的sina和当当</p>
<p>原本考虑到CSDN大学毕业之后就再未上过，密码模式也是之前使用的模式，也就懒得去改密码。可再后来，<a href="http://www.36kr.com/p/70884.html" target="_blank">36氪</a>爆料人人网、多玩网、世纪佳缘等或者已经同样被爆库，于是我只能开始修改各大网站的密码了，因为用的都是差不多的模式……而这又给我之前的<a href="http://www.jayxu.com/2011/01/27/10474/" target="_blank">猜想</a>提供了一点素材：现在的用户会注册越来越多的网站账号，为了方便一般都会使用相同或差不多的模式，一旦其中一个网站的密码泄露，那影响到的将是以亿为单位的账号数量</p>
<p>另外这两天，连续收到其它网站的贴心邮件，让我修改密码。这一次，CSDN成为了提醒各大网站和用户提高密码安全意识的排头兵，可谓功不可没。但是奇怪的是，微博上对CSDN的讨伐声基本没有，难道是程序员们都太nice了？</p>
<p><a href="http://www.jayxu.com/log/wp-content/uploads/2011/12/豆瓣提醒你注意密码安全-mustangxu@gmail.com-Gmail.png"><img class="alignnone size-medium wp-image-13168" title="豆瓣提醒你注意密码安全 - mustangxu@gmail.com - Gmail" src="http://www.jayxu.com/log/wp-content/uploads/2011/12/豆瓣提醒你注意密码安全-mustangxu@gmail.com-Gmail-400x62.png" alt="" width="400" height="62" /></a></p>
<p><a href="http://www.jayxu.com/log/wp-content/uploads/2011/12/关于在CSDN与DNSPod使用了相同密码用户的提醒-mustangxu@gmail.com-Gmail.png"><img class="alignnone size-medium wp-image-13169" title="关于在CSDN与DNSPod使用了相同密码用户的提醒 - mustangxu@gmail.com - Gmail" src="http://www.jayxu.com/log/wp-content/uploads/2011/12/关于在CSDN与DNSPod使用了相同密码用户的提醒-mustangxu@gmail.com-Gmail-400x235.png" alt="" width="400" height="235" /></a></p>
<p><a href="http://www.jayxu.com/log/wp-content/uploads/2011/12/就CSDN泄露帐号密码事件进行的相关提醒-mustangxu@gmail.com-Gmail.png"><img class="alignnone size-medium wp-image-13172" title="就CSDN泄露帐号密码事件进行的相关提醒 - mustangxu@gmail.com - Gmail" src="http://www.jayxu.com/log/wp-content/uploads/2011/12/就CSDN泄露帐号密码事件进行的相关提醒-mustangxu@gmail.com-Gmail-400x227.png" alt="" width="400" height="227" /></a></p>
<p>补记：就在刚才，百度也给我发来了贴心邮件：</p>
<p><a href="http://www.jayxu.com/log/wp-content/uploads/2011/12/百度账号安全告知-mustangxu@gmail.com-Gmail.png"><img class="alignnone size-medium wp-image-13176" title="百度账号安全告知 - mustangxu@gmail.com - Gmail" src="http://www.jayxu.com/log/wp-content/uploads/2011/12/百度账号安全告知-mustangxu@gmail.com-Gmail-400x107.png" alt="" width="400" height="107" /></a></p>
<p>再补：大众点评也发来了邮件</p>
<p><a href="http://www.jayxu.com/log/wp-content/uploads/2011/12/【重要通知】大众点评网提醒您注意帐号安全-mustangxu@gmail.com-Gmail.png"><img class="size-medium wp-image-13183 alignnone" title="【重要通知】大众点评网提醒您注意帐号安全 - mustangxu@gmail.com - Gmail" src="http://www.jayxu.com/log/wp-content/uploads/2011/12/【重要通知】大众点评网提醒您注意帐号安全-mustangxu@gmail.com-Gmail-400x188.png" alt="" width="400" height="188" /></a></p>
<p>2012新年再补：58同城、人人也相继做出了反应：</p>
<p><a href="http://www.jayxu.com/log/wp-content/uploads/2011/12/58同城提醒您注意密码安全-mustangxu@gmail.com-Gmail.png"><img class="size-medium wp-image-13214 alignnone" title="58同城提醒您注意密码安全 - mustangxu@gmail.com - Gmail" src="http://www.jayxu.com/log/wp-content/uploads/2011/12/58同城提醒您注意密码安全-mustangxu@gmail.com-Gmail-400x360.png" alt="" width="400" height="360" /></a></p>
<p><a href="http://www.jayxu.com/log/wp-content/uploads/2011/12/收件箱-mustangxu@gmail.com-Gmail-2.png"><img class="size-medium wp-image-13218 alignnone" title="收件箱 - mustangxu@gmail.com - Gmail-2" src="http://www.jayxu.com/log/wp-content/uploads/2011/12/收件箱-mustangxu@gmail.com-Gmail-2-400x193.png" alt="" width="400" height="193" /></a>
<div style="margin-top: 15px; font-style: italic">
<p><strong>原创内容，转载请注明：</strong> 转载自<a href="http://www.jayxu.com/">拈花微笑</a></p>
<p><strong>本文链接地址:</strong> <a href="http://www.jayxu.com/2011/12/23/13167/">CSDN这回一石激起千层浪了</a></p>
</div>
<p><a href="http://www.bshare.cn/share?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F23%2F13167%2F&title=CSDN%E8%BF%99%E5%9B%9E%E4%B8%80%E7%9F%B3%E6%BF%80%E8%B5%B7%E5%8D%83%E5%B1%82%E6%B5%AA%E4%BA%86" title="用bShare分享或收藏本文"><img src="http://static.bshare.cn/frame/images/button_custom1-zh.gif" alt="用bShare分享或收藏本文" /></a></p><table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2005%2F03%2F12%2F233%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F23%2F13167%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">CSDN的blog好烂啊</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F02%2F10%2F1389%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F23%2F13167%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Sina，I服了U</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F02%2F23%2F2068%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F23%2F13167%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">请教新浪</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2007%2F09%2F18%2F36%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F23%2F13167%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">谁要WOW cd key？</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2006%2F02%2F24%2F162%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F23%2F13167%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">不要更新：Windows XP 安全更新程序 (KB913446)</font>
                    </a>
                </td>
            </tr>
        <br/>
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">来自无觅网络的相关文章：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.dedeadmin.com%2F%3Fp%3D3382&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F23%2F13167%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">CSDN事件带来发展的启示和机遇 (@dedeadmin)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lzhi.org%2Fviews%2F580&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F23%2F13167%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">CSDN 首页的第一屏 广告/新闻 比率 = 40 : 2 (@lzhi)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.dedeadmin.com%2F%3Fp%3D2546&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F23%2F13167%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">织梦DedeCMS安全检测工具 织梦官方出品 (@dedeadmin)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.dedeadmin.com%2F%3Fp%3D3012&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F23%2F13167%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">DedeCMS系统安全检测功能使用说明 (@dedeadmin)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.dedeadmin.com%2F%3Fp%3D1858http%253A%252F%252Fblog.csdn.net%252Fwang_xingang%252Farticle%252Fdetails%252F5217675&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F23%2F13167%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">织梦DedeCMS v5.7全文检索使用说明 | 织梦(Dedecms)管理员之家 (@dedeadmin)</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.jayxu.com/2011/12/23/13167/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>About save/persist, update/merge in JPA/Hibernate</title>
		<link>http://www.jayxu.com/2011/12/15/13164/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=about-savepersist-updatemerge-in-jpahibernate</link>
		<comments>http://www.jayxu.com/2011/12/15/13164/#comments</comments>
		<pubDate>Thu, 15 Dec 2011 14:55:56 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[技术生活]]></category>
		<category><![CDATA[hibernate]]></category>
		<category><![CDATA[jpa]]></category>

		<guid isPermaLink="false">http://www.jayxu.com/?p=13164</guid>
		<description><![CDATA[Save VS Persist from https://hibernate.onjira.com/browse/HHH-1273 The persist() operation on Session is not cascaded at flush time. This is somewhat unexpected from a users point of view and very difficult to explain and understand (you need excellent knowledge of flushing and cascading). Reason #1 for removal. The persist() operation in general does not return a database <a href="http://www.jayxu.com/2011/12/15/13164/"> read more <span class="meta-nav">&#187;</span></a><table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F11%2F23%2F10275&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F15%2F13164%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">如何在Hibernate中让SQLServer使用nvarchar代替varchar</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F11%2F24%2F10280%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F15%2F13164%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">谨慎升级至Hibernate 3.6</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F06%2F09%2F2342%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F15%2F13164%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Spring之Hibernate+JBoss Treecache实现Hibernate集群</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F14%2F13131%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F15%2F13164%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">使用Spring LDAP ODM操作LDAP</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F07%2F18%2F2373%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F15%2F13164%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Spring之经验教训（一）</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<h2>Save VS Persist</h2>
<address>from <a href="https://hibernate.onjira.com/browse/HHH-1273" target="_blank">https://hibernate.onjira.com/browse/HHH-1273</a></address>
<blockquote><p>The persist() operation on Session is not cascaded at flush time. This is somewhat unexpected from a users point of view and very difficult to explain and understand (you need excellent knowledge of flushing and cascading). Reason #1 for removal.</p>
<p>The persist() operation in general does not return a database identifier. This is surprising, as the JPA spec clearly requires a persistent instance to have a database identifier value. Since persist() makes instances persistent, it has to have the same semantics for assigning identifiers as save(). Hence, I expect that once this mismatch is resolved in the expert group, the persist() method will return a database identifier. Everything else doesn&#8217;t make much sense, given the current specification and documentation. Conclusion is that persist() will have the same signature as save(). Reason #2 for removal.</p>
<p>To document persist() properly I need a reason for its existence. Right now I&#8217;m telling readers/users to ignore it on the Session API, because it only complicates the situation with no benefit.</p></blockquote>
<h2>Update VS Merge</h2>
<address>from <a href="http://docs.jboss.org/hibernate/core/3.3/reference/en/html/objectstate.html#objectstate-saveorupdate" target="_blank">http://docs.jboss.org/hibernate/core/3.3/reference/en/html/objectstate.html#objectstate-saveorupdate</a></address>
<blockquote><p>Usually update() or saveOrUpdate() are used in the following scenario:</p>
<ul>
<li>the application loads an object in the first session</li>
<li>the object is passed up to the UI tier</li>
<li>some modifications are made to the object</li>
<li>the object is passed back down to the business logic tier</li>
<li>the application persists these modifications by calling update() in a second session</li>
</ul>
<p>saveOrUpdate() does the following:</p>
<ul>
<li>if the object is already persistent in this session, do nothing</li>
<li>if another object associated with the session has the same identifier, throw an exception</li>
<li> if the object has no identifier property, save() it</li>
<li> if the object&#8217;s identifier has the value assigned to a newly instantiated object, save() it</li>
<li> if the object is versioned by a &lt;version&gt; or &lt;timestamp&gt;, and the version property value is the same value assigned to a newly instantiated object, save() it</li>
<li> otherwise update() the object</li>
</ul>
<p>and merge() is very different:</p>
<ul>
<li>if there is a persistent instance with the same identifier currently associated with the session, copy the state of the given object onto the persistent instance</li>
<li> if there is no persistent instance currently associated with the session, try to load it from the database, or create a new persistent instance</li>
<li> the persistent instance is returned</li>
<li> the given instance does not become associated with the session, it remains detached</li>
</ul>
</blockquote>
<div style="margin-top: 15px; font-style: italic">
<p><strong>原创内容，转载请注明：</strong> 转载自<a href="http://www.jayxu.com/">拈花微笑</a></p>
<p><strong>本文链接地址:</strong> <a href="http://www.jayxu.com/2011/12/15/13164/">About save/persist, update/merge in JPA/Hibernate</a></p>
</div>
<p><a href="http://www.bshare.cn/share?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F15%2F13164%2F&title=About+save%2Fpersist%2C+update%2Fmerge+in+JPA%2FHibernate" title="用bShare分享或收藏本文"><img src="http://static.bshare.cn/frame/images/button_custom1-zh.gif" alt="用bShare分享或收藏本文" /></a></p><table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F11%2F23%2F10275&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F15%2F13164%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">如何在Hibernate中让SQLServer使用nvarchar代替varchar</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F11%2F24%2F10280%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F15%2F13164%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">谨慎升级至Hibernate 3.6</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F06%2F09%2F2342%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F15%2F13164%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Spring之Hibernate+JBoss Treecache实现Hibernate集群</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F14%2F13131%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F15%2F13164%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">使用Spring LDAP ODM操作LDAP</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F07%2F18%2F2373%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F15%2F13164%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Spring之经验教训（一）</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.jayxu.com/2011/12/15/13164/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>使用Spring LDAP ODM操作LDAP</title>
		<link>http://www.jayxu.com/2011/12/14/13131/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=%25e4%25bd%25bf%25e7%2594%25a8spring-ldap-odm%25e6%2593%258d%25e4%25bd%259cldap</link>
		<comments>http://www.jayxu.com/2011/12/14/13131/#comments</comments>
		<pubDate>Wed, 14 Dec 2011 15:10:16 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[技术生活]]></category>
		<category><![CDATA[hibernate]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[jpa]]></category>
		<category><![CDATA[ldap]]></category>
		<category><![CDATA[spring]]></category>
		<category><![CDATA[spring context]]></category>
		<category><![CDATA[spring ldap]]></category>
		<category><![CDATA[spring ldap odm]]></category>
		<category><![CDATA[spring mvc]]></category>
		<category><![CDATA[spring orm]]></category>
		<category><![CDATA[spring tx]]></category>
		<category><![CDATA[struts]]></category>
		<category><![CDATA[牢骚]]></category>

		<guid isPermaLink="false">http://www.jayxu.com/?p=13131</guid>
		<description><![CDATA[Spring Source真的是个很神奇的开源社区，从《J2EE without EJB》开始为大家所知晓，到把IoC、AOP大范围地带到大家的开发模型中，再到和Hibernate、Struts组成每个Java函授学校必教的“SSH”组合，从此绿遍大江南北…… 在国内，大马路上随便抓一个Java程序员，10个里有9个半知道Spring；有9个知道怎么把SSH“组装”到一起（是的，“组装”，和流水线上的蓝领熟练工没有本质区别）；有9个半知道IoC、AOP；有2个知道IoC和AOP的本质；有3个知道Spring其实分为core、context、orm、tx等不同子框架；有1个知道Spring 3之后可以用annotation取代之前版本大部分的xml配置；有2个知道Spring mvc和security；有半个知道其实Spring的子框架远不止这些……这就是我们当前Java码农们的实际情况。而造成这一局面的，我谓之三害——高校计算机系功利的培养模式、以北大青鸟为首的各种速成班的祸害和程序员们自己懒惰、人云亦云、拒绝思考的慢性自杀 牢骚发完，本文将通过介绍Spring的两个子框架：Spring LDAP和Spring LDAP ODM，来实现对LDAP的操作 项目主页：http://www.springsource.org/ldap，该框架通过提供和ORM中相似的机制对LDAP相关操作进行封装，主要包括： 类比SessionFactory的LdapContextSource 类比HibernateTemplate等的LdapTemplate 伪事务支持，能否与tx框架的TransactionManager混用未知 类比JPA的使用@Entry、@Attribute、@Id标注的ODM——Object Directory Mapping 本文（原先）目标：使用ODM将User类与LDAP中的实体进行映射，LDAP中的实体的objectClass包括inetOrgPerson，organizationalPerson，person，shadowAccount和top 相关配置文件、代码在http://static.springsource.org/spring-ldap/docs/1.3.x/reference/html/上已经很详细了，这里只是做一点旁注，全部来自于这几天和Spring LDAP的斗智斗勇 对于shadowAccount的shadowLastChange域，值是一个整形，至于具体含义网上没有找到解释，试了几次之后发现是从1970-1-1 00:00:00至今的天数，如果model里定义的是Date类型的话，需要自行实现org.springframework.ldap.odm.typeconversion.impl.Converter接口进行转换 对于@Entry标记，其中的objectClasses定义必须与objectClass完全一致。在新建和查询object时，ODM会根据此标记进行匹配，无需再指定objectClass 每个entry必须指定@Id字段，类型为javax.naming.Name，其实就是DN。但是若在LdapContextSource中指定了base，则DN将会按照base截取相对路径。比如，DN为cn=user,ou=users,dc=jayxu,dc=com，base为dc=jayxu,dc=com，则取出的user对象DN为cn=user,ou=users 如果使用Spring MVC对LDAP对象进行JSON序列化，必须注意javax.naming.Name中的某些字段无法被序列化，所以在转换成JSON之前需要将DN置null。一种方法是使用@JsonIgnoreProperties标记model类，比如：@JsonIgnoreProperties(“dn”) 对于不需要与LDAP进行映射的字段使用@Transient进行标记 考虑使用org.springframework.ldap.pool.factory.PoolingContextSource引入连接池 如果事务中需要与JDBC进行互操作，需要使用org.springframework.ldap.transaction.compensating.manager.ContextSourceAndDataSourceTransactionManager作为tx manager 原创内容，转载请注明： 转载自拈花微笑 本文链接地址: 使用Spring LDAP ODM操作LDAP<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F06%2F09%2F2342%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F14%2F13131%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Spring之Hibernate+JBoss Treecache实现Hibernate集群</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F07%2F18%2F2373%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F14%2F13131%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Spring之经验教训（一）</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2012%2F01%2F12%2F13221%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F14%2F13131%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">解决Velocity＋Spring的中文乱码问题</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2012%2F02%2F02%2F13237%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F14%2F13131%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">有关Java泛型的类型擦除（type erasing）</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F12%2F02%2F1899%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F14%2F13131%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Apache给EJB 3.1（JSR #318）投了否决票</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p>Spring Source真的是个很神奇的开源社区，从《J2EE without EJB》开始为大家所知晓，到把IoC、AOP大范围地带到大家的开发模型中，再到和Hibernate、Struts组成每个Java函授学校必教的“SSH”组合，从此绿遍大江南北……</p>
<p>在国内，大马路上随便抓一个Java程序员，10个里有9个半知道Spring；有9个知道怎么把SSH“组装”到一起（是的，“组装”，和流水线上的蓝领熟练工没有本质区别）；有9个半知道IoC、AOP；有2个知道IoC和AOP的本质；有3个知道Spring其实分为core、context、orm、tx等不同子框架；有1个知道Spring 3之后可以用annotation取代之前版本大部分的xml配置；有2个知道Spring mvc和security；有半个知道其实Spring的子框架远不止这些……这就是我们当前Java码农们的实际情况。而造成这一局面的，我谓之三害——高校计算机系功利的培养模式、以北大青鸟为首的各种速成班的祸害和程序员们自己懒惰、人云亦云、拒绝思考的慢性自杀</p>
<p>牢骚发完，本文将通过介绍Spring的两个子框架：Spring LDAP和Spring LDAP ODM，来实现对LDAP的操作</p>
<p>项目主页：<a href="http://www.springsource.org/ldap" target="_blank">http://www.springsource.org/ldap</a>，该框架通过提供和ORM中相似的机制对LDAP相关操作进行封装，主要包括：</p>
<ul>
<li>类比SessionFactory的LdapContextSource</li>
<li>类比HibernateTemplate等的LdapTemplate</li>
<li>伪事务支持，能否与tx框架的TransactionManager混用未知</li>
<li>类比JPA的使用@Entry、@Attribute、@Id标注的ODM——Object Directory Mapping</li>
</ul>
<p>本文（原先）目标：使用ODM将User类与LDAP中的实体进行映射，LDAP中的实体的objectClass包括inetOrgPerson，organizationalPerson，person，shadowAccount和top</p>
<p>相关配置文件、代码在<a href="http://static.springsource.org/spring-ldap/docs/1.3.x/reference/html/" target="_blank">http://static.springsource.org/spring-ldap/docs/1.3.x/reference/html/</a>上已经很详细了，这里只是做一点旁注，全部来自于这几天和Spring LDAP的斗智斗勇</p>
<ul>
<li>对于shadowAccount的shadowLastChange域，值是一个整形，至于具体含义网上没有找到解释，试了几次之后发现是从1970-1-1 00:00:00至今的天数，如果model里定义的是Date类型的话，需要自行实现org.springframework.ldap.odm.typeconversion.impl.Converter接口进行转换</li>
<li>对于@Entry标记，其中的objectClasses定义必须与objectClass完全一致。在新建和查询object时，ODM会根据此标记进行匹配，无需再指定objectClass</li>
<li>每个entry必须指定@Id字段，类型为javax.naming.Name，其实就是DN。但是若在LdapContextSource中指定了base，则DN将会按照base截取相对路径。比如，DN为cn=user,ou=users,dc=jayxu,dc=com，base为dc=jayxu,dc=com，则取出的user对象DN为cn=user,ou=users</li>
<li>如果使用Spring MVC对LDAP对象进行JSON序列化，必须注意javax.naming.Name中的某些字段无法被序列化，所以在转换成JSON之前需要将DN置null。一种方法是使用@JsonIgnoreProperties标记model类，比如：@JsonIgnoreProperties(“dn”)</li>
<li>对于不需要与LDAP进行映射的字段使用@Transient进行标记</li>
<li>考虑使用org.springframework.ldap.pool.factory.PoolingContextSource引入连接池</li>
<li>如果事务中需要与JDBC进行互操作，需要使用org.springframework.ldap.transaction.compensating.manager.ContextSourceAndDataSourceTransactionManager作为tx manager</li>
</ul>
<div style="margin-top: 15px; font-style: italic">
<p><strong>原创内容，转载请注明：</strong> 转载自<a href="http://www.jayxu.com/">拈花微笑</a></p>
<p><strong>本文链接地址:</strong> <a href="http://www.jayxu.com/2011/12/14/13131/">使用Spring LDAP ODM操作LDAP</a></p>
</div>
<p><a href="http://www.bshare.cn/share?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F14%2F13131%2F&title=%E4%BD%BF%E7%94%A8Spring+LDAP+ODM%E6%93%8D%E4%BD%9CLDAP" title="用bShare分享或收藏本文"><img src="http://static.bshare.cn/frame/images/button_custom1-zh.gif" alt="用bShare分享或收藏本文" /></a></p><table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F06%2F09%2F2342%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F14%2F13131%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Spring之Hibernate+JBoss Treecache实现Hibernate集群</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F07%2F18%2F2373%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F14%2F13131%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Spring之经验教训（一）</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2012%2F01%2F12%2F13221%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F14%2F13131%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">解决Velocity＋Spring的中文乱码问题</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2012%2F02%2F02%2F13237%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F14%2F13131%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">有关Java泛型的类型擦除（type erasing）</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F12%2F02%2F1899%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F14%2F13131%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Apache给EJB 3.1（JSR #318）投了否决票</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.jayxu.com/2011/12/14/13131/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>测试Blogspot同步</title>
		<link>http://www.jayxu.com/2011/12/14/13155/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=%25e6%25b5%258b%25e8%25af%2595blogspot%25e5%2590%258c%25e6%25ad%25a5</link>
		<comments>http://www.jayxu.com/2011/12/14/13155/#comments</comments>
		<pubDate>Wed, 14 Dec 2011 06:38:51 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[互联网生活]]></category>
		<category><![CDATA[blogspot]]></category>
		<category><![CDATA[博客]]></category>

		<guid isPermaLink="false">http://www.jayxu.com/?p=13155</guid>
		<description><![CDATA[RT 原创内容，转载请注明： 转载自拈花微笑 本文链接地址: 测试Blogspot同步<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F12%2F09%2F1907%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F14%2F13155%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">博客后台升级到wordpress 2.9 beta 2</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F12%2F08%2F1906%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F14%2F13155%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">测试与Live Spaces同步</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2008%2F11%2F06%2F775%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F14%2F13155%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Nazca开博</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2008%2F12%2F11%2F1269%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F14%2F13155%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">博客复活了～～</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F10%2F14%2F1765%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F14%2F13155%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">博客搬家</font>
                    </a>
                </td>
            </tr>
        <br/>
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">来自无觅网络的相关文章：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.dedeadmin.com%2F%3Fp%3D2817%26cpage%3D1&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F14%2F13155%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Dispatch HTML/CSS博客商业模板 | 织梦(Dedecms)管理员之家 (@dedeadmin)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.dedeadmin.com%2F%3Fp%3D1811%26cpage%3D1&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F14%2F13155%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">织梦DedeCms蓝白色调博客模板 | 织梦(Dedecms)管理员之家 (@dedeadmin)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.dedeadmin.com%2F%3Fp%3D1717&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F14%2F13155%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">织梦DedeCms精美博客模板 1H1Y 1.0 (@dedeadmin)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.dedeadmin.com%2F%3Fp%3D1042%26cpage%3D1&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F14%2F13155%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">织梦DedeCms博客类风格Dedevip.com模板 | 织梦(Dedecms)管理员之家 (@dedeadmin)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.dedeadmin.com%2F%3Fp%3D2817&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F14%2F13155%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Dispatch HTML/CSS博客商业模板 (@dedeadmin)</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p>RT
<div style="margin-top: 15px; font-style: italic">
<p><strong>原创内容，转载请注明：</strong> 转载自<a href="http://www.jayxu.com/">拈花微笑</a></p>
<p><strong>本文链接地址:</strong> <a href="http://www.jayxu.com/2011/12/14/13155/">测试Blogspot同步</a></p>
</div>
<p><a href="http://www.bshare.cn/share?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F14%2F13155%2F&title=%E6%B5%8B%E8%AF%95Blogspot%E5%90%8C%E6%AD%A5" title="用bShare分享或收藏本文"><img src="http://static.bshare.cn/frame/images/button_custom1-zh.gif" alt="用bShare分享或收藏本文" /></a></p><table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F12%2F09%2F1907%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F14%2F13155%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">博客后台升级到wordpress 2.9 beta 2</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F12%2F08%2F1906%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F14%2F13155%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">测试与Live Spaces同步</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2008%2F11%2F06%2F775%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F14%2F13155%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Nazca开博</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2008%2F12%2F11%2F1269%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F14%2F13155%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">博客复活了～～</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F10%2F14%2F1765%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F14%2F13155%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">博客搬家</font>
                    </a>
                </td>
            </tr>
        <br/>
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">来自无觅网络的相关文章：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.dedeadmin.com%2F%3Fp%3D2817%26cpage%3D1&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F14%2F13155%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Dispatch HTML/CSS博客商业模板 | 织梦(Dedecms)管理员之家 (@dedeadmin)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.dedeadmin.com%2F%3Fp%3D1811%26cpage%3D1&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F14%2F13155%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">织梦DedeCms蓝白色调博客模板 | 织梦(Dedecms)管理员之家 (@dedeadmin)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.dedeadmin.com%2F%3Fp%3D1717&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F14%2F13155%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">织梦DedeCms精美博客模板 1H1Y 1.0 (@dedeadmin)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.dedeadmin.com%2F%3Fp%3D1042%26cpage%3D1&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F14%2F13155%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">织梦DedeCms博客类风格Dedevip.com模板 | 织梦(Dedecms)管理员之家 (@dedeadmin)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.dedeadmin.com%2F%3Fp%3D2817&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F14%2F13155%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Dispatch HTML/CSS博客商业模板 (@dedeadmin)</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.jayxu.com/2011/12/14/13155/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>上海，老卵！</title>
		<link>http://www.jayxu.com/2011/12/08/13136/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=%25e4%25b8%258a%25e6%25b5%25b7%25ef%25bc%258c%25e8%2580%2581%25e5%258d%25b5%25ef%25bc%2581</link>
		<comments>http://www.jayxu.com/2011/12/08/13136/#comments</comments>
		<pubDate>Wed, 07 Dec 2011 17:59:44 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[生活]]></category>
		<category><![CDATA[上海]]></category>

		<guid isPermaLink="false">http://www.jayxu.com/?p=13136</guid>
		<description><![CDATA[原创内容，转载请注明： 转载自拈花微笑 本文链接地址: 上海，老卵！<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2007%2F02%2F17%2F99%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F08%2F13136%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">上海好男人</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F09%2F08%2F1747%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F08%2F13136%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">老上海，儿时的记忆 [zz]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2008%2F11%2F09%2F822%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F08%2F13136%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">2010上海世博会“人”字形概念楼</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F11%2F24%2F10282%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F08%2F13136%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">上海大火过后一地鸡毛 [zz]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2007%2F02%2F21%2F98%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F08%2F13136%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">迎财神</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p><embed src="http://www.tudou.com/v/NyZNRud4I6Q/v.swf" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" wmode="opaque" width="480" height="400"></embed>
<div style="margin-top: 15px; font-style: italic">
<p><strong>原创内容，转载请注明：</strong> 转载自<a href="http://www.jayxu.com/">拈花微笑</a></p>
<p><strong>本文链接地址:</strong> <a href="http://www.jayxu.com/2011/12/08/13136/">上海，老卵！</a></p>
</div>
<p><a href="http://www.bshare.cn/share?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F08%2F13136%2F&title=%E4%B8%8A%E6%B5%B7%EF%BC%8C%E8%80%81%E5%8D%B5%EF%BC%81" title="用bShare分享或收藏本文"><img src="http://static.bshare.cn/frame/images/button_custom1-zh.gif" alt="用bShare分享或收藏本文" /></a></p><table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2007%2F02%2F17%2F99%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F08%2F13136%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">上海好男人</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F09%2F08%2F1747%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F08%2F13136%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">老上海，儿时的记忆 [zz]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2008%2F11%2F09%2F822%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F08%2F13136%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">2010上海世博会“人”字形概念楼</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F11%2F24%2F10282%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F08%2F13136%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">上海大火过后一地鸡毛 [zz]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2007%2F02%2F21%2F98%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F08%2F13136%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">迎财神</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.jayxu.com/2011/12/08/13136/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>祝贺：发布《Java虚拟机规范 （Java SE 7 中文版）》</title>
		<link>http://www.jayxu.com/2011/12/02/13128/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=%25e7%25a5%259d%25e8%25b4%25ba%25ef%25bc%259a%25e5%258f%2591%25e5%25b8%2583%25e3%2580%258ajava%25e8%2599%259a%25e6%258b%259f%25e6%259c%25ba%25e8%25a7%2584%25e8%258c%2583-%25ef%25bc%2588java-se-7-%25e4%25b8%25ad%25e6%2596%2587%25e7%2589%2588%25ef%25bc%2589%25e3%2580%258b</link>
		<comments>http://www.jayxu.com/2011/12/02/13128/#comments</comments>
		<pubDate>Fri, 02 Dec 2011 08:14:53 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[技术生活]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[jvm]]></category>

		<guid isPermaLink="false">http://www.jayxu.com/?p=13128</guid>
		<description><![CDATA[原文转自：http://icyfenix.iteye.com/blog/1256329 《Java虚拟机规范 （Java SE 7 中文版）》是一份根据《Java Virtual Machine Specification （Java SE 7）》翻译的、非官方的、以Open Document形式发布的文档。 本译文由ItEye社区三位水友IcyFenix、wupuyuan、langyu合作完成，我们的翻译工作完全基于技术研究目的，任何人也都可以在以技术研究为目的前提下任意阅读、传播、使用这份文档。但没有得到原文作者和译者授权，不得用于商业出版。 ◎ 全文PDF下载地址：Download （@iteye.com） ◎ 如果没有ItEye账号的朋友，可在此下载：Download （@icyfenix.com） ◎ 译文勘误、更新地址：http://www.icyfenix.com/jvms_javase7_cn 翻译一本书，远远比读完一本书来的辛苦。不过回头看来，那些辛苦比起翻译过程中对自己的提升和认识到的朋友，收获是远远大于付出。如果这本书能再为其他人带来一点方便和用处，那我们就更加欣慰了。如果本书真的对您有用，希望您能： ◎ 向我们反馈本书中翻译的问题，以便我们能持续改进译文的质量。 ◎ 向朋友传播本书（如帮我转发一下此微博），以便我们的工作能发挥更大的价值。 译者序 从1999年4月出版的《Java虚拟机规范（第二版）》至今，已经超过12年，虽然此规范在JDK 5发布的时候作了较大的更新，但却始终没有发布完整的规范。在今年6月28日，最新的《Java虚拟机规范（Java SE 7版）》终于完成并在7月份正式发布。对于想了解Java虚拟机的程序员来说，《Java虚拟机规范》是必须阅读的，对于想深入了解Java语言细节的程序员，阅读《Java虚拟机规范》也有极大好处，但是《Java虚拟机规范》、《Java语言规范》发布十余年，一直没有中文译本，这让中国不少对Java虚拟机感兴趣，但英语能力较弱的程序员都被拒之门外。 在2011年初，《Java虚拟机规范（Java SE 7版）》还是草稿状态时，我就开始关注这本书，并陆续对其中第1、2、6、7章进行了翻译，到2011年9月时完成了200余页的译稿。这时候又在国内著名Java社区ItEye中结识了另外两名译者吴璞渊和冶秀刚，我们在随后的两个多月的时间里共同完成了其余章节的翻译和校对。 《Java虚拟机规范》并非某一款虚拟机实现的说明书，它是一份保证各个公司的Java虚拟机实现具备统一外部接口的契约文档，书中的概念和细节描述曾经与Sun的早期虚拟机的实现高度吻合，但是随着技术的发展，高性能虚拟机真正的细节实现方式已经渐渐与虚拟机规范所描述的内容产生了越来越大的差距。原作者也在书中不同地方反复强调过：虚拟机规范中所提及的“Java虚拟机”皆为虚拟机的概念模型而非具体实现。实现只要保证与概念模型最终等效即可，而具体实现的方式无需受概念模型束缚。因此通过虚拟机规范去分析程序的执行语义问题（虚拟机会做什么）时，但分析程序的执行行为问题（虚拟机是怎样做的、性能如何）则意义不大，如需对具体虚拟机实现进行调优、性能分析等，我推荐在本书基础上继续阅读《Java Performance》和《Oracle JRockit The Definitive Guide》等书。 在翻译过程中，我们尽最大努力保证作品的准确性和可读性，力求在保证语义准确的前提下，尽可能使用通俗易懂的方式向给各位读者介绍Java虚拟机的约束与运作原理。为此目标，我们在专有技术名词、偏僻词中用括号保留了原文、专门在多处读者理解起来可能有困难的地方，添加了“译者注”加以解释。 囿于我们的水平和写作时间，书中难免存在不妥之处，大家如有任何意见或建议都欢迎通过以下邮件地址与我联系：icyfenix@gmail.com。本书的勘误与最新版本可以在以下网址中获取：http://www.icyfenix.com/jvms_javase7_cn/ 最后，请允许我再介绍一下本书三位译者的技术背景与分工： 周志明（www.icyfenix.com &#38; weibo.com/icyfenix）：远光软件平台开发部部门经理，平台架构师，不愿意脱离编码的一线码农。著有《深入理解Java虚拟机：JVM高级特性与最佳实践》。关注各种Java应用，略懂OSGi、Java虚拟机和工作流。在本书翻译工作中负责全文统稿；前言和第1、2、6、7章的翻译；第3、4、5章的校审工作。 吴璞渊（wupuyuan.iteye.com）：就职于西门子，偏向程序和工作流设计，喜好Java各种新技术并倒腾。在本书翻译工作中负责第3章以及第4章的1至7节。。 冶秀刚（langyu.iteye.com）：思科平台工程师，从事分布式系统的研究与开发，爱好Java平台技术且正在努力成长中。在本书翻译工作中负责第5章及第4章的9至11节。 原创内容，转载请注明： 转载自拈花微笑 本文链接地址: 祝贺：发布《Java虚拟机规范 （Java SE 7 中文版）》<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F26%2F11723%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F02%2F13128%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">X and XX Usgaes for Java</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2012%2F02%2F02%2F13237%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F02%2F13128%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">有关Java泛型的类型擦除（type erasing）</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F11%2F11%2F1809%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F02%2F13128%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">10 things all JAVA developers should know [zz]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F08%2F11%2F2396%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F02%2F13128%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Java程序员必看电影：Java 4-ever</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F20%2F11718%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F02%2F13128%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Differences Among Greedy, Reluctant, and Possessive Quantifiers (for RexExp in Java)</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p>原文转自：<a href="http://icyfenix.iteye.com/blog/1256329" target="_blank">http://icyfenix.iteye.com/blog/1256329</a></p>
<p>《Java虚拟机规范 （Java SE 7 中文版）》是一份根据<a href="http://download.oracle.com/javase/cmn/spec_index.html" target="_blank">《Java Virtual Machine Specification （Java SE 7）》</a>翻译的、非官方的、以Open Document形式发布的文档。</p>
<p>本译文由ItEye社区三位水友<a href="http://icyfenix.iteye.com/" target="_blank">IcyFenix</a>、<a href="http://wupuyuan.iteye.com/" target="_blank">wupuyuan</a>、<a href="http://langyu.iteye.com/" target="_blank">langyu</a>合作完成，<a href="http://icyfenix.iteye.com/blog/1181634" target="_blank">我们的翻译工作</a>完全基于技术研究目的，任何人也都可以在以技术研究为目的前提下任意阅读、传播、使用这份文档。但没有得到原文作者和译者授权，不得用于商业出版。</p>
<p>◎ 全文PDF下载地址：<a href="http://dl.iteye.com/topics/download/643fc75f-fb49-39eb-a5a0-e22ad2240e88" target="_blank">Download</a> （@iteye.com）<br />
◎ 如果没有ItEye账号的朋友，可在此下载：<a href="http://www.icyfenix.com/svn/fileDownload.jsp?url=Java%E8%99%9A%E6%8B%9F%E6%9C%BA%2F%E8%A7%84%E8%8C%83%E6%96%87%E6%A1%A3%2FJava+Virtual+Machine+Specification+Java+SE+7+%E4%B8%AD%E6%96%87%E7%89%88.pdf&amp;attachment=true" target="_blank">Download</a> （@icyfenix.com）<br />
◎ 译文勘误、更新地址：http://www.icyfenix.com/jvms_javase7_cn</p>
<p>翻译一本书，远远比读完一本书来的辛苦。不过回头看来，那些辛苦比起翻译过程中对自己的提升和认识到的朋友，收获是远远大于付出。如果这本书能再为其他人带来一点方便和用处，那我们就更加欣慰了。如果本书真的对您有用，希望您能：</p>
<p>◎ 向我们反馈本书中翻译的问题，以便我们能持续改进译文的质量。<br />
◎ 向朋友传播本书（<a href="http://weibo.com/1887642490/xxjVIf1Aa" target="_blank">如帮我转发一下此微博</a>），以便我们的工作能发挥更大的价值。</p>
<p>译者序</p>
<p>从1999年4月出版的《Java虚拟机规范（第二版）》至今，已经超过12年，虽然此规范在JDK 5发布的时候作了较大的更新，但却始终没有发布完整的规范。在今年6月28日，最新的《Java虚拟机规范（Java SE 7版）》终于完成并在7月份正式发布。对于想了解Java虚拟机的程序员来说，《Java虚拟机规范》是必须阅读的，对于想深入了解Java语言细节的程序员，阅读《Java虚拟机规范》也有极大好处，但是《Java虚拟机规范》、《Java语言规范》发布十余年，一直没有中文译本，这让中国不少对Java虚拟机感兴趣，但英语能力较弱的程序员都被拒之门外。</p>
<p>在2011年初，《Java虚拟机规范（Java SE 7版）》还是草稿状态时，我就开始关注这本书，并陆续对其中第1、2、6、7章进行了翻译，到2011年9月时完成了200余页的译稿。这时候又在国内著名Java社区ItEye中结识了另外两名译者吴璞渊和冶秀刚，我们在随后的两个多月的时间里共同完成了其余章节的翻译和校对。</p>
<p>《Java虚拟机规范》并非某一款虚拟机实现的说明书，它是一份保证各个公司的Java虚拟机实现具备统一外部接口的契约文档，书中的概念和细节描述曾经与Sun的早期虚拟机的实现高度吻合，但是随着技术的发展，高性能虚拟机真正的细节实现方式已经渐渐与虚拟机规范所描述的内容产生了越来越大的差距。原作者也在书中不同地方反复强调过：虚拟机规范中所提及的“Java虚拟机”皆为虚拟机的概念模型而非具体实现。实现只要保证与概念模型最终等效即可，而具体实现的方式无需受概念模型束缚。因此通过虚拟机规范去分析程序的执行语义问题（虚拟机会做什么）时，但分析程序的执行行为问题（虚拟机是怎样做的、性能如何）则意义不大，如需对具体虚拟机实现进行调优、性能分析等，我推荐在本书基础上继续阅读《Java Performance》和《Oracle JRockit The Definitive Guide》等书。</p>
<p>在翻译过程中，我们尽最大努力保证作品的准确性和可读性，力求在保证语义准确的前提下，尽可能使用通俗易懂的方式向给各位读者介绍Java虚拟机的约束与运作原理。为此目标，我们在专有技术名词、偏僻词中用括号保留了原文、专门在多处读者理解起来可能有困难的地方，添加了“译者注”加以解释。</p>
<p>囿于我们的水平和写作时间，书中难免存在不妥之处，大家如有任何意见或建议都欢迎通过以下邮件地址与我联系：icyfenix@gmail.com。本书的勘误与最新版本可以在以下网址中获取：http://www.icyfenix.com/jvms_javase7_cn/</p>
<p>最后，请允许我再介绍一下本书三位译者的技术背景与分工：</p>
<ul>
<li><strong>周志明</strong>（<a href="http://www.icyfenix.com/" target="_blank">www.icyfenix.com</a> &amp; <a href="http://weibo.com/icyfenix" target="_blank">weibo.com/icyfenix</a>）：远光软件平台开发部部门经理，平台架构师，不愿意脱离编码的一线码农。著有《深入理解Java虚拟机：JVM高级特性与最佳实践》。关注各种Java应用，略懂OSGi、Java虚拟机和工作流。在本书翻译工作中负责全文统稿；前言和第1、2、6、7章的翻译；第3、4、5章的校审工作。</li>
<li><strong>吴璞渊</strong>（<a href="http://wupuyuan.iteye.com/" target="_blank">wupuyuan.iteye.com</a>）：就职于西门子，偏向程序和工作流设计，喜好Java各种新技术并倒腾。在本书翻译工作中负责第3章以及第4章的1至7节。。</li>
<li><strong>冶秀刚</strong>（<a href="http://langyu.iteye.com/" target="_blank">langyu.iteye.com</a>）：思科平台工程师，从事分布式系统的研究与开发，爱好Java平台技术且正在努力成长中。在本书翻译工作中负责第5章及第4章的9至11节。</li>
</ul>
<div style="margin-top: 15px; font-style: italic">
<p><strong>原创内容，转载请注明：</strong> 转载自<a href="http://www.jayxu.com/">拈花微笑</a></p>
<p><strong>本文链接地址:</strong> <a href="http://www.jayxu.com/2011/12/02/13128/">祝贺：发布《Java虚拟机规范 （Java SE 7 中文版）》</a></p>
</div>
<p><a href="http://www.bshare.cn/share?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F02%2F13128%2F&title=%E7%A5%9D%E8%B4%BA%EF%BC%9A%E5%8F%91%E5%B8%83%E3%80%8AJava%E8%99%9A%E6%8B%9F%E6%9C%BA%E8%A7%84%E8%8C%83+%EF%BC%88Java+SE+7+%E4%B8%AD%E6%96%87%E7%89%88%EF%BC%89%E3%80%8B" title="用bShare分享或收藏本文"><img src="http://static.bshare.cn/frame/images/button_custom1-zh.gif" alt="用bShare分享或收藏本文" /></a></p><table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F26%2F11723%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F02%2F13128%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">X and XX Usgaes for Java</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2012%2F02%2F02%2F13237%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F02%2F13128%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">有关Java泛型的类型擦除（type erasing）</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F11%2F11%2F1809%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F02%2F13128%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">10 things all JAVA developers should know [zz]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F08%2F11%2F2396%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F02%2F13128%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Java程序员必看电影：Java 4-ever</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F20%2F11718%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F02%2F13128%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Differences Among Greedy, Reluctant, and Possessive Quantifiers (for RexExp in Java)</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.jayxu.com/2011/12/02/13128/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>评论：｢评论:工程师们,不要想一辈子靠技术混饭吃｣</title>
		<link>http://www.jayxu.com/2011/11/26/13093/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=%25e8%25af%2584%25e8%25ae%25ba%25ef%25bc%259a%25ef%25bd%25a2%25e8%25af%2584%25e8%25ae%25ba%25e5%25b7%25a5%25e7%25a8%258b%25e5%25b8%2588%25e4%25bb%25ac%25e4%25b8%258d%25e8%25a6%2581%25e6%2583%25b3%25e4%25b8%2580%25e8%25be%2588%25e5%25ad%2590%25e9%259d%25a0%25e6%258a%2580%25e6%259c%25af%25e6%25b7%25b7%25e9%25a5%25ad%25e5%2590%2583</link>
		<comments>http://www.jayxu.com/2011/11/26/13093/#comments</comments>
		<pubDate>Sat, 26 Nov 2011 13:25:57 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[技术生活]]></category>
		<category><![CDATA[愤青]]></category>
		<category><![CDATA[技术]]></category>
		<category><![CDATA[牢骚]]></category>

		<guid isPermaLink="false">http://www.jayxu.com/?p=13093</guid>
		<description><![CDATA[周末亮哥在群里转了一篇cnBeta上的文章：评论:工程师们,不要想一辈子靠技术混饭吃 这篇文章的标题虽然看着很衷言逆耳，但内容看得我直膈应，完全就是一篇郁郁不得志的小媳妇儿的牢骚贴，我的评论如下： 痴心技术与处理人际关系不矛盾。之所以成为一个码农，与你所处的行业和环境没什么关系，和你的工作经验也没有关系，而和你自己的性格和生活态度有关系。甘愿做码农的，10年工作经验也是码农，不想做码农的在学校你就已经不是了 没有人对自己的长远规划只是一个码农。我是想说，对自己的将来没有长远打算的，就算脱离｢苦海｣去做市场开发，也永远是一个跑腿的 正是些人的异端邪说让现在学计算机的学生浮躁、自大，专业基础却一塌糊涂。如果不想做技术，压根就不用去学计算机 其它职业的人当然没有必要来了解Java和.net的区别，因为这是你吃饭的工具，而如果连对自己吃饭的工具都没有热情甚至自以为耻了，那转行是更好的出路 现在的社会里如果是个大学生，做任何工作都不至于饿死，但是如果你的追求只是如此，那任何行业对你来说都是一样的。转行一段时间后你依然会｢发现｣｢更好｣的工作 把全文中所有和计算机技术相关的术语和市场开发相关的对换，文章依然可读 原创内容，转载请注明： 转载自拈花微笑 本文链接地址: 评论：｢评论:工程师们,不要想一辈子靠技术混饭吃｣<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2005%2F03%2F16%2F231%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F26%2F13093%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">程序员的信仰……我想骂人</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F11%2F30%2F2064%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F26%2F13093%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">劫后天府，无耻混蛋</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2008%2F04%2F26%2F344%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F26%2F13093%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">到家乐福卖淫去 [zz]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F11%2F06%2F1797%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F26%2F13093%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">草台班子</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F05%2F12%2F2157%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F26%2F13093%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">悼念该悼念的，记住该记住的，知道该知道的</font>
                    </a>
                </td>
            </tr>
        <br/>
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">来自无觅网络的相关文章：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.swhack.cn%2Farchives%2F128.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F26%2F13093%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">给年轻工程师或志向在于此的一些忠告 (转) (@swhack)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.swhack.cn%2F%3Fp%3D219&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F26%2F13093%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">88技术  FUCK (@swhack)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.dedeadmin.com%2F%3Fp%3D1903&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F26%2F13093%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">热烈庆祝织梦管理员之家加入织梦CMS官方技术联盟 (@dedeadmin)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.dedeadmin.com%2F%3Fp%3D1569%26cpage%3D1&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F26%2F13093%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">织梦采集侠智能泛采集技术解析 | 织梦(Dedecms)管理员之家 (@dedeadmin)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.dedeadmin.com%2F%3Fp%3D1379&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F26%2F13093%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">织梦采集侠技术原理探讨 (@dedeadmin)</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p>周末亮哥在群里转了一篇cnBeta上的文章：<a href="http://www.cnbeta.com/articles/160429.htm" target="_blank">评论:工程师们,不要想一辈子靠技术混饭吃</a></p>
<p>这篇文章的标题虽然看着很衷言逆耳，但内容看得我直膈应，完全就是一篇郁郁不得志的小媳妇儿的牢骚贴，我的评论如下：</p>
<ul>
<li><span style="font-family: 'courier new', monospace; background-color: rgba(255, 255, 255, 0.917969); font-size: small; ">痴心技术与处理人际关系不矛盾。之所以成为一个码农，</span><wbr style="font-family: 'courier new', monospace; background-color: rgba(255, 255, 255, 0.917969); font-size: small; " /><span style="font-family: 'courier new', monospace; background-color: rgba(255, 255, 255, 0.917969); font-size: small; ">与你所处的行业和环境没什么关系，和你的工作经验也没有关系，</span><wbr style="font-family: 'courier new', monospace; background-color: rgba(255, 255, 255, 0.917969); font-size: small; " /><span style="font-family: 'courier new', monospace; background-color: rgba(255, 255, 255, 0.917969); font-size: small; ">而和你自己的性格和生活态度有关系。甘愿做码农的，</span><wbr style="font-family: 'courier new', monospace; background-color: rgba(255, 255, 255, 0.917969); font-size: small; " /><span style="font-family: 'courier new', monospace; background-color: rgba(255, 255, 255, 0.917969); font-size: small; ">10年工作经验也是码农，不想做码农的在学校你就已经不是了</span></li>
<li>
<div style="font-family: arial, sans-serif; font-size: 14px; background-color: rgba(255, 255, 255, 0.917969); "><font size="2"><font face="courier new,monospace">没有人对自己的长远规划只是一个码农。我是想说，<wbr />对自己的将来没有长远打算的，就算脱离｢苦海｣去做市场开发，<wbr />也永远是一个跑腿的</font></font></div>
</li>
<li>
<div style="font-family: arial, sans-serif; font-size: 14px; background-color: rgba(255, 255, 255, 0.917969); "><span style="font-family: 'courier new', monospace; font-size: small; ">正是些人的异端邪说让现在学计算机的学生浮躁、自大，</span><wbr style="font-family: 'courier new', monospace; font-size: small; " /><span style="font-family: 'courier new', monospace; font-size: small; ">专业基础却一塌糊涂。如果不想做技术，压根就不用去学计算机</span></div>
</li>
<li>
<div style="font-family: arial, sans-serif; font-size: 14px; background-color: rgba(255, 255, 255, 0.917969); "><span style="font-family: 'courier new', monospace; font-size: small; ">其它职业的人当然没有必要来了解Java和.net</span><span style="font-family: 'courier new', monospace; font-size: small; ">的区别，</span><wbr style="font-family: 'courier new', monospace; font-size: small; " /><span style="font-family: 'courier new', monospace; font-size: small; ">因为这是你吃饭的工具，</span><wbr style="font-family: 'courier new', monospace; font-size: small; " /><span style="font-family: 'courier new', monospace; font-size: small; ">而如果连对自己吃饭的工具都没有热情甚至自以为耻了，</span><wbr style="font-family: 'courier new', monospace; font-size: small; " /><span style="font-family: 'courier new', monospace; font-size: small; ">那转行是更好的出路</span></div>
</li>
<li>
<div style="font-family: arial, sans-serif; font-size: 14px; background-color: rgba(255, 255, 255, 0.917969); "><span style="font-family: 'courier new', monospace; font-size: small; ">现在的社会里如果是个大学生，做任何工作都不至于饿死，</span><wbr style="font-family: 'courier new', monospace; font-size: small; " /><span style="font-family: 'courier new', monospace; font-size: small; ">但是如果你的追求只是如此，那任何行业对你来说都是一样的。</span><wbr style="font-family: 'courier new', monospace; font-size: small; " /><span style="font-family: 'courier new', monospace; font-size: small; ">转行一段时间后你依然会｢发现｣｢更好｣的工作</span></div>
</li>
<li>
<div style="font-family: arial, sans-serif; font-size: 14px; background-color: rgba(255, 255, 255, 0.917969); "><span style="font-family: 'courier new', monospace; font-size: small; ">把全文中所有和计算机技术相关的术语和市场开发相关的对换，</span><wbr style="font-family: 'courier new', monospace; font-size: small; " /><span style="font-family: 'courier new', monospace; font-size: small; ">文章依然可读</span></div>
</li>
</ul>
<div style="margin-top: 15px; font-style: italic">
<p><strong>原创内容，转载请注明：</strong> 转载自<a href="http://www.jayxu.com/">拈花微笑</a></p>
<p><strong>本文链接地址:</strong> <a href="http://www.jayxu.com/2011/11/26/13093/">评论：｢评论:工程师们,不要想一辈子靠技术混饭吃｣</a></p>
</div>
<p><a href="http://www.bshare.cn/share?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F26%2F13093%2F&title=%E8%AF%84%E8%AE%BA%EF%BC%9A%EF%BD%A2%E8%AF%84%E8%AE%BA%3A%E5%B7%A5%E7%A8%8B%E5%B8%88%E4%BB%AC%2C%E4%B8%8D%E8%A6%81%E6%83%B3%E4%B8%80%E8%BE%88%E5%AD%90%E9%9D%A0%E6%8A%80%E6%9C%AF%E6%B7%B7%E9%A5%AD%E5%90%83%EF%BD%A3" title="用bShare分享或收藏本文"><img src="http://static.bshare.cn/frame/images/button_custom1-zh.gif" alt="用bShare分享或收藏本文" /></a></p><table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2005%2F03%2F16%2F231%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F26%2F13093%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">程序员的信仰……我想骂人</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F11%2F30%2F2064%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F26%2F13093%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">劫后天府，无耻混蛋</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2008%2F04%2F26%2F344%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F26%2F13093%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">到家乐福卖淫去 [zz]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F11%2F06%2F1797%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F26%2F13093%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">草台班子</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F05%2F12%2F2157%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F26%2F13093%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">悼念该悼念的，记住该记住的，知道该知道的</font>
                    </a>
                </td>
            </tr>
        <br/>
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">来自无觅网络的相关文章：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.swhack.cn%2Farchives%2F128.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F26%2F13093%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">给年轻工程师或志向在于此的一些忠告 (转) (@swhack)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.swhack.cn%2F%3Fp%3D219&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F26%2F13093%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">88技术  FUCK (@swhack)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.dedeadmin.com%2F%3Fp%3D1903&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F26%2F13093%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">热烈庆祝织梦管理员之家加入织梦CMS官方技术联盟 (@dedeadmin)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.dedeadmin.com%2F%3Fp%3D1569%26cpage%3D1&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F26%2F13093%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">织梦采集侠智能泛采集技术解析 | 织梦(Dedecms)管理员之家 (@dedeadmin)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.dedeadmin.com%2F%3Fp%3D1379&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F26%2F13093%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">织梦采集侠技术原理探讨 (@dedeadmin)</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.jayxu.com/2011/11/26/13093/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>在Ubuntu下配置L2TP</title>
		<link>http://www.jayxu.com/2011/11/24/13085/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=%25e5%259c%25a8ubuntu%25e4%25b8%258b%25e9%2585%258d%25e7%25bd%25ael2tp</link>
		<comments>http://www.jayxu.com/2011/11/24/13085/#comments</comments>
		<pubDate>Wed, 23 Nov 2011 17:47:32 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[技术生活]]></category>
		<category><![CDATA[centos]]></category>
		<category><![CDATA[gfw]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[ipsec]]></category>
		<category><![CDATA[l2tp]]></category>
		<category><![CDATA[linode]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[博客]]></category>

		<guid isPermaLink="false">http://www.jayxu.com/?p=13085</guid>
		<description><![CDATA[由于CentOS下的yum远不如apt好用，于是花了两个晚上的时间把Linode上的系统从CentOS换成了Ubuntu。昨天重新搭了wordpress、git，今天把L2TP搞定了，参考了很多文章，主要有这篇和这篇，综合并整理了一下，贴在这里 Tips：在Linode上两个系统间迁移时，因为每次只能启动一个系统，原先以为得把文件从CentOS下到本地再传到Ubuntu，估计会很慢。后来想到能把原先的CentOS的磁盘直接在Ubuntu里mount，便能直接拷贝了 安装所需包 我用的Ubuntu是11.10，貌似下来xl2tpd是依赖于openswan和ppp的，于是直接安装xl2tpd apt-get install xl2tpd apt-get install xl2tpd 配置 IPSec 编辑/etc/ipsec.conf，改成 version 2.0 config setup &#160; &#160; nat_traversal=yes &#160; &#160; virtual_private=%v4:10.0.0.0/8,%v4:192.168.0.0/16,%v4:172.16.0.0/12 &#160; &#160; oe=off &#160; &#160; protostack=netkey &#160; conn L2TP-PSK-NAT &#160; &#160; rightsubnet=vhost:%priv &#160; &#160; also=L2TP-PSK-noNAT &#160; conn L2TP-PSK-noNAT &#160; &#160; authby=secret &#160; &#160; pfs=no &#160; &#160; auto=add &#160; &#160; keyingtries=3 &#160; &#160; <a href="http://www.jayxu.com/2011/11/24/13085/"> read more <span class="meta-nav">&#187;</span></a><table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F03%2F12957%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F24%2F13085%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">/etc/init.d/xl2tpd for CentOS</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F12%2F09%2F1907%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F24%2F13085%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">博客后台升级到wordpress 2.9 beta 2</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2008%2F06%2F02%2F384%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F24%2F13085%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">开始Ubuntu</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2006%2F06%2F01%2F134%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F24%2F13085%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">I love Ubuntu</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F23%2F13076%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F24%2F13085%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Ubuntu下启用Apache rewrite mod</font>
                    </a>
                </td>
            </tr>
        <br/>
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">来自无觅网络的相关文章：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fbfya.com%2Fubuntu-share-vbox-2&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F24%2F13085%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">VirtualBox 里面 ubuntu 10.10 与 Windows 互访 文件共享 并且能上网 的方法 (@bfya)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fbfya.com%2Fubuntu-share-vbox&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F24%2F13085%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Virtualbox 虚拟机 Ubuntu 10.10 共享 数据空间 的方法 (@bfya)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.dedeadmin.com%2F%3Fp%3D3002%26cpage%3D2&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F24%2F13085%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">DEDECMS博客模板：1H1Y 2.0 | 织梦(Dedecms)管理员之家 (@dedeadmin)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.dedeadmin.com%2F%3Fp%3D1042%26cpage%3D2&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F24%2F13085%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">织梦DedeCms博客类风格Dedevip.com模板 | 织梦(Dedecms)管理员之家 (@dedeadmin)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jandou.com%2Ftp-link-router.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F24%2F13085%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">TP-LINK迷你可爱无线路由 (@jandou)</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p>由于CentOS下的yum远不如apt好用，于是花了两个晚上的时间把Linode上的系统从CentOS换成了Ubuntu。昨天重新搭了wordpress、git，今天把L2TP搞定了，参考了很多文章，主要有<a href="http://ubuntuforums.org/showthread.php?t=1645473" target="_blank">这篇</a>和<a href="http://apple4.us/2010/05/setting-up-l2tp-vpn-on-debian-ubuntu.html" target="_blank">这篇</a>，综合并整理了一下，贴在这里</p>
<p>Tips：在Linode上两个系统间迁移时，因为每次只能启动一个系统，原先以为得把文件从CentOS下到本地再传到Ubuntu，估计会很慢。后来想到能把原先的CentOS的磁盘直接在Ubuntu里mount，便能直接拷贝了</p>
<h2>安装所需包</h2>
<p>我用的Ubuntu是11.10，貌似下来xl2tpd是依赖于openswan和ppp的，于是直接安装xl2tpd</p>

<div class="bwp-syntax-block clearfix">
<div class="bwp-syntax-toolbar"><div class="bwp-syntax-control"><a href="javascript:;" class="bwp-syntax-source-switch" title="View Source Code"></a></div></div>
<div class="bwp-syntax-wrapper clearfix bwp-syntax-advanced"><div class="bash"><ol><li class="li1"><div class="de1"><span class="kw2">apt-get</span> <span class="kw2">install</span> xl2tpd</div></li>
</ol></div></div>
<div class="bwp-syntax-source"><pre class="no-parse">apt-get install xl2tpd</pre></div></div>

<h2>配置</h2>
<h3>IPSec</h3>
<p>编辑/etc/ipsec.conf，改成</p>

<div class="bwp-syntax-block clearfix">
<div class="bwp-syntax-toolbar"><div class="bwp-syntax-control"><a href="javascript:;" class="bwp-syntax-source-switch" title="View Source Code"></a></div></div>
<div class="bwp-syntax-wrapper clearfix bwp-syntax-advanced"><div class="bash"><ol><li class="li1"><div class="de1">version <span class="nu0">2.0</span></div></li>
<li class="li2"><div class="de2">config setup</div></li>
<li class="li1"><div class="de1">&nbsp; &nbsp; <span class="re2">nat_traversal</span>=<span class="kw2">yes</span></div></li>
<li class="li2"><div class="de2">&nbsp; &nbsp; <span class="re2">virtual_private</span>=<span class="sy0">%</span>v4:10.0.0.0<span class="sy0">/</span><span class="nu0">8</span>,<span class="sy0">%</span>v4:192.168.0.0<span class="sy0">/</span><span class="nu0">16</span>,<span class="sy0">%</span>v4:172.16.0.0<span class="sy0">/</span><span class="nu0">12</span></div></li>
<li class="li1"><div class="de1">&nbsp; &nbsp; <span class="re2">oe</span>=off</div></li>
<li class="li2"><div class="de2">&nbsp; &nbsp; <span class="re2">protostack</span>=netkey</div></li>
<li class="li1"><div class="de1">&nbsp;</div></li>
<li class="li2"><div class="de2">conn L2TP-PSK-NAT</div></li>
<li class="li1"><div class="de1">&nbsp; &nbsp; <span class="re2">rightsubnet</span>=vhost:<span class="sy0">%</span>priv</div></li>
<li class="li2"><div class="de2">&nbsp; &nbsp; <span class="re2">also</span>=L2TP-PSK-noNAT</div></li>
<li class="li1"><div class="de1">&nbsp;</div></li>
<li class="li2"><div class="de2">conn L2TP-PSK-noNAT</div></li>
<li class="li1"><div class="de1">&nbsp; &nbsp; <span class="re2">authby</span>=secret</div></li>
<li class="li2"><div class="de2">&nbsp; &nbsp; <span class="re2">pfs</span>=no</div></li>
<li class="li1"><div class="de1">&nbsp; &nbsp; <span class="re2">auto</span>=add</div></li>
<li class="li2"><div class="de2">&nbsp; &nbsp; <span class="re2">keyingtries</span>=<span class="nu0">3</span></div></li>
<li class="li1"><div class="de1">&nbsp; &nbsp; <span class="re2">rekey</span>=no</div></li>
<li class="li2"><div class="de2">&nbsp; &nbsp; <span class="re2">ikelifetime</span>=8h</div></li>
<li class="li1"><div class="de1">&nbsp; &nbsp; <span class="re2">keylife</span>=1h</div></li>
<li class="li2"><div class="de2">&nbsp; &nbsp; <span class="re2">type</span>=transport</div></li>
<li class="li1"><div class="de1">&nbsp; &nbsp; <span class="re2">left</span>=<span class="co1">${your.server.ip.address}</span></div></li>
<li class="li2"><div class="de2">&nbsp; &nbsp; <span class="re2">leftprotoport</span>=<span class="nu0">17</span><span class="sy0">/</span><span class="nu0">1701</span></div></li>
<li class="li1"><div class="de1">&nbsp; &nbsp; <span class="re2">right</span>=<span class="sy0">%</span>any</div></li>
<li class="li2"><div class="de2">&nbsp; &nbsp; <span class="re2">rightprotoport</span>=<span class="nu0">17</span><span class="sy0">/%</span>any</div></li>
</ol></div></div>
<div class="bwp-syntax-source"><pre class="no-parse">version 2.0
config setup
    nat_traversal=yes
    virtual_private=%v4:10.0.0.0/8,%v4:192.168.0.0/16,%v4:172.16.0.0/12
    oe=off
    protostack=netkey

conn L2TP-PSK-NAT
    rightsubnet=vhost:%priv
    also=L2TP-PSK-noNAT

conn L2TP-PSK-noNAT
    authby=secret
    pfs=no
    auto=add
    keyingtries=3
    rekey=no
    ikelifetime=8h
    keylife=1h
    type=transport
    left=${your.server.ip.address}
    leftprotoport=17/1701
    right=%any
    rightprotoport=17/%any</pre></div></div>

<p>注意缩进，并替换${your.server.ip.address}为服务器IP地址</p>
<p>编辑/etc/ipsec.secrets，改成</p>

<div class="bwp-syntax-block clearfix">
<div class="bwp-syntax-toolbar"><div class="bwp-syntax-control"><a href="javascript:;" class="bwp-syntax-source-switch" title="View Source Code"></a></div></div>
<div class="bwp-syntax-wrapper clearfix bwp-syntax-advanced"><div class="bash"><ol><li class="li1"><div class="de1"><span class="co1">${your.server.ip.address}</span> &nbsp; &nbsp;<span class="sy0">%</span>any: &nbsp; &nbsp;PSK &nbsp; &nbsp;<span class="st0">&quot;<span class="es3">${your.shared.secret}</span>&quot;</span></div></li>
</ol></div></div>
<div class="bwp-syntax-source"><pre class="no-parse">${your.server.ip.address}    %any:    PSK    "${your.shared.secret}"</pre></div></div>

<p>替换IP地址和共享密钥</p>
<p>修改/etc/sysctl.conf，添加</p>

<div class="bwp-syntax-block clearfix">
<div class="bwp-syntax-toolbar"><div class="bwp-syntax-control"><a href="javascript:;" class="bwp-syntax-source-switch" title="View Source Code"></a></div></div>
<div class="bwp-syntax-wrapper clearfix bwp-syntax-advanced"><div class="bash"><ol><li class="li1"><div class="de1">net.ipv4.ip_forward = <span class="nu0">1</span></div></li>
<li class="li2"><div class="de2">net.ipv4.conf.all.accept_redirects = <span class="nu0">0</span></div></li>
<li class="li1"><div class="de1">net.ipv4.conf.all.send_redirects = <span class="nu0">0</span></div></li>
</ol></div></div>
<div class="bwp-syntax-source"><pre class="no-parse">net.ipv4.ip_forward = 1
net.ipv4.conf.all.accept_redirects = 0
net.ipv4.conf.all.send_redirects = 0</pre></div></div>

<p>执行</p>

<div class="bwp-syntax-block clearfix">
<div class="bwp-syntax-toolbar"><div class="bwp-syntax-control"><a href="javascript:;" class="bwp-syntax-source-switch" title="View Source Code"></a></div></div>
<div class="bwp-syntax-wrapper clearfix bwp-syntax-advanced"><div class="bash"><ol><li class="li1"><div class="de1">sysctl <span class="re5">-p</span></div></li>
</ol></div></div>
<div class="bwp-syntax-source"><pre class="no-parse">sysctl -p</pre></div></div>

<p>令修改生效</p>
<h3>XL2TPD</h3>
<p>修改/etc/xl2tpd/xl2tpd.conf</p>

<div class="bwp-syntax-block clearfix">
<div class="bwp-syntax-toolbar"><div class="bwp-syntax-control"><a href="javascript:;" class="bwp-syntax-source-switch" title="View Source Code"></a></div></div>
<div class="bwp-syntax-wrapper clearfix bwp-syntax-advanced"><div class="bash"><ol><li class="li1"><div class="de1"><span class="br0">&#91;</span>global<span class="br0">&#93;</span></div></li>
<li class="li2"><div class="de2">ipsec saref = <span class="kw2">yes</span></div></li>
<li class="li1"><div class="de1">&nbsp;</div></li>
<li class="li2"><div class="de2"><span class="br0">&#91;</span>lns default<span class="br0">&#93;</span></div></li>
<li class="li1"><div class="de1">ip range = 10.1.2.2-10.1.2.255</div></li>
<li class="li2"><div class="de2"><span class="kw3">local</span> ip = 10.1.2.1</div></li>
<li class="li1"><div class="de1">refuse chap = <span class="kw2">yes</span></div></li>
<li class="li2"><div class="de2">refuse pap = <span class="kw2">yes</span></div></li>
<li class="li1"><div class="de1">require authentication = <span class="kw2">yes</span></div></li>
<li class="li2"><div class="de2">ppp debug = <span class="kw2">yes</span></div></li>
<li class="li1"><div class="de1">pppoptfile = <span class="sy0">/</span>etc<span class="sy0">/</span>ppp<span class="sy0">/</span>options.xl2tpd</div></li>
<li class="li2"><div class="de2">length bit = <span class="kw2">yes</span></div></li>
</ol></div></div>
<div class="bwp-syntax-source"><pre class="no-parse">[global]
ipsec saref = yes

[lns default]
ip range = 10.1.2.2-10.1.2.255
local ip = 10.1.2.1
refuse chap = yes
refuse pap = yes
require authentication = yes
ppp debug = yes
pppoptfile = /etc/ppp/options.xl2tpd
length bit = yes</pre></div></div>

<h3>PPP</h3>
<p>修改/etc/ppp/options.xl2tpd</p>

<div class="bwp-syntax-block clearfix">
<div class="bwp-syntax-toolbar"><div class="bwp-syntax-control"><a href="javascript:;" class="bwp-syntax-source-switch" title="View Source Code"></a></div></div>
<div class="bwp-syntax-wrapper clearfix bwp-syntax-advanced"><div class="bash"><ol><li class="li1"><div class="de1">require-mschap-v2</div></li>
<li class="li2"><div class="de2">ms-dns 208.67.222.222</div></li>
<li class="li1"><div class="de1">ms-dns 208.67.220.220</div></li>
<li class="li2"><div class="de2">asyncmap <span class="nu0">0</span></div></li>
<li class="li1"><div class="de1">auth</div></li>
<li class="li2"><div class="de2">crtscts</div></li>
<li class="li1"><div class="de1">lock</div></li>
<li class="li2"><div class="de2">hide-password</div></li>
<li class="li1"><div class="de1">modem</div></li>
<li class="li2"><div class="de2">debug</div></li>
<li class="li1"><div class="de1">name l2tpd</div></li>
<li class="li2"><div class="de2">proxyarp</div></li>
<li class="li1"><div class="de1">lcp-echo-interval <span class="nu0">30</span></div></li>
<li class="li2"><div class="de2">lcp-echo-failure <span class="nu0">4</span></div></li>
</ol></div></div>
<div class="bwp-syntax-source"><pre class="no-parse">require-mschap-v2
ms-dns 208.67.222.222
ms-dns 208.67.220.220
asyncmap 0
auth
crtscts
lock
hide-password
modem
debug
name l2tpd
proxyarp
lcp-echo-interval 30
lcp-echo-failure 4</pre></div></div>

<p>修改/etc/ppp/chap-secrets添加密码，格式：</p>
<p><用户名> &nbsp; &nbsp;<名称，对应上面的name> &nbsp; &nbsp;<密码><ip>，可用*通配</ip></p>
<p>添加iptables规则</p>

<div class="bwp-syntax-block clearfix">
<div class="bwp-syntax-toolbar"><div class="bwp-syntax-control"><a href="javascript:;" class="bwp-syntax-source-switch" title="View Source Code"></a></div></div>
<div class="bwp-syntax-wrapper clearfix bwp-syntax-advanced"><div class="bash"><ol><li class="li1"><div class="de1">iptables <span class="re5">--table</span> nat <span class="re5">--append</span> POSTROUTING <span class="re5">--jump</span> MASQUERADE</div></li>
</ol></div></div>
<div class="bwp-syntax-source"><pre class="no-parse">iptables --table nat --append POSTROUTING --jump MASQUERADE</pre></div></div>

<p>并添加至/etc/rc.local</p>
<h2>启动</h2>

<div class="bwp-syntax-block clearfix">
<div class="bwp-syntax-toolbar"><div class="bwp-syntax-control"><a href="javascript:;" class="bwp-syntax-source-switch" title="View Source Code"></a></div></div>
<div class="bwp-syntax-wrapper clearfix bwp-syntax-advanced"><div class="bash"><ol><li class="li1"><div class="de1">service ipsec restart</div></li>
<li class="li2"><div class="de2">service xl2tpd restart</div></li>
</ol></div></div>
<div class="bwp-syntax-source"><pre class="no-parse">service ipsec restart
service xl2tpd restart</pre></div></div>

<h2>OK，连接成功，let&#39;s break the damn wall！</h2>
<div style="margin-top: 15px; font-style: italic">
<p><strong>原创内容，转载请注明：</strong> 转载自<a href="http://www.jayxu.com/">拈花微笑</a></p>
<p><strong>本文链接地址:</strong> <a href="http://www.jayxu.com/2011/11/24/13085/">在Ubuntu下配置L2TP</a></p>
</div>
<p><a href="http://www.bshare.cn/share?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F24%2F13085%2F&title=%E5%9C%A8Ubuntu%E4%B8%8B%E9%85%8D%E7%BD%AEL2TP" title="用bShare分享或收藏本文"><img src="http://static.bshare.cn/frame/images/button_custom1-zh.gif" alt="用bShare分享或收藏本文" /></a></p><table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F03%2F12957%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F24%2F13085%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">/etc/init.d/xl2tpd for CentOS</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F12%2F09%2F1907%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F24%2F13085%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">博客后台升级到wordpress 2.9 beta 2</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2008%2F06%2F02%2F384%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F24%2F13085%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">开始Ubuntu</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2006%2F06%2F01%2F134%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F24%2F13085%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">I love Ubuntu</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F23%2F13076%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F24%2F13085%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Ubuntu下启用Apache rewrite mod</font>
                    </a>
                </td>
            </tr>
        <br/>
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">来自无觅网络的相关文章：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fbfya.com%2Fubuntu-share-vbox-2&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F24%2F13085%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">VirtualBox 里面 ubuntu 10.10 与 Windows 互访 文件共享 并且能上网 的方法 (@bfya)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fbfya.com%2Fubuntu-share-vbox&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F24%2F13085%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Virtualbox 虚拟机 Ubuntu 10.10 共享 数据空间 的方法 (@bfya)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.dedeadmin.com%2F%3Fp%3D3002%26cpage%3D2&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F24%2F13085%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">DEDECMS博客模板：1H1Y 2.0 | 织梦(Dedecms)管理员之家 (@dedeadmin)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.dedeadmin.com%2F%3Fp%3D1042%26cpage%3D2&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F24%2F13085%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">织梦DedeCms博客类风格Dedevip.com模板 | 织梦(Dedecms)管理员之家 (@dedeadmin)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jandou.com%2Ftp-link-router.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F24%2F13085%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">TP-LINK迷你可爱无线路由 (@jandou)</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.jayxu.com/2011/11/24/13085/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu下启用Apache rewrite mod</title>
		<link>http://www.jayxu.com/2011/11/23/13076/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=ubuntu%25e4%25b8%258b%25e5%2590%25af%25e7%2594%25a8apache-rewrite-mod</link>
		<comments>http://www.jayxu.com/2011/11/23/13076/#comments</comments>
		<pubDate>Tue, 22 Nov 2011 17:16:39 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[技术生活]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[rewrite]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.jayxu.com/?p=13076</guid>
		<description><![CDATA[sudo a2enmod rewrite sudo vim /etc/apache2/sites-available/default # 把所有 AllowOverride None 改成 AllowOverride All sudo service apache2 restart sudo a2enmod rewrite sudo vim /etc/apache2/sites-available/default # 把所有 AllowOverride None 改成 AllowOverride All sudo service apache2 restart 原创内容，转载请注明： 转载自拈花微笑 本文链接地址: Ubuntu下启用Apache rewrite mod<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2008%2F06%2F02%2F384%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F23%2F13076%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">开始Ubuntu</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2006%2F06%2F01%2F134%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F23%2F13076%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">I love Ubuntu</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F24%2F13085%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F23%2F13076%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">在Ubuntu下配置L2TP</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2007%2F12%2F20%2F18%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F23%2F13076%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">又有冲动装Ubuntu了</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F12%2F02%2F1899%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F23%2F13076%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Apache给EJB 3.1（JSR #318）投了否决票</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[
<div class="bwp-syntax-block clearfix">
<div class="bwp-syntax-toolbar"><div class="bwp-syntax-control"><a href="javascript:;" class="bwp-syntax-source-switch" title="View Source Code"></a></div></div>
<div class="bwp-syntax-wrapper clearfix bwp-syntax-advanced"><div class="bash"><ol><li class="li1"><div class="de1"><span class="kw2">sudo</span> a2enmod rewrite</div></li>
<li class="li2"><div class="de2"><span class="kw2">sudo</span> <span class="kw2">vim</span> <span class="sy0">/</span>etc<span class="sy0">/</span>apache2<span class="sy0">/</span>sites-available<span class="sy0">/</span>default</div></li>
<li class="li1"><div class="de1"><span class="co0"># 把所有 AllowOverride None 改成 AllowOverride All</span></div></li>
<li class="li2"><div class="de2"><span class="kw2">sudo</span> service apache2 restart</div></li>
</ol></div></div>
<div class="bwp-syntax-source"><pre class="no-parse">sudo a2enmod rewrite
sudo vim /etc/apache2/sites-available/default
# 把所有 AllowOverride None 改成 AllowOverride All
sudo service apache2 restart</pre></div></div>

<div style="margin-top: 15px; font-style: italic">
<p><strong>原创内容，转载请注明：</strong> 转载自<a href="http://www.jayxu.com/">拈花微笑</a></p>
<p><strong>本文链接地址:</strong> <a href="http://www.jayxu.com/2011/11/23/13076/">Ubuntu下启用Apache rewrite mod</a></p>
</div>
<p><a href="http://www.bshare.cn/share?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F23%2F13076%2F&title=Ubuntu%E4%B8%8B%E5%90%AF%E7%94%A8Apache+rewrite+mod" title="用bShare分享或收藏本文"><img src="http://static.bshare.cn/frame/images/button_custom1-zh.gif" alt="用bShare分享或收藏本文" /></a></p><table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2008%2F06%2F02%2F384%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F23%2F13076%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">开始Ubuntu</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2006%2F06%2F01%2F134%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F23%2F13076%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">I love Ubuntu</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F24%2F13085%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F23%2F13076%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">在Ubuntu下配置L2TP</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2007%2F12%2F20%2F18%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F23%2F13076%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">又有冲动装Ubuntu了</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F12%2F02%2F1899%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F23%2F13076%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Apache给EJB 3.1（JSR #318）投了否决票</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.jayxu.com/2011/11/23/13076/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>88，Follow 5</title>
		<link>http://www.jayxu.com/2011/11/15/13049/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=88%25ef%25bc%258cfollow-5</link>
		<comments>http://www.jayxu.com/2011/11/15/13049/#comments</comments>
		<pubDate>Tue, 15 Nov 2011 05:50:59 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[互联网生活]]></category>
		<category><![CDATA[follow 5]]></category>
		<category><![CDATA[和谐社会]]></category>

		<guid isPermaLink="false">http://www.jayxu.com/?p=13049</guid>
		<description><![CDATA[Follow 5退出了历史舞台 之前一直不知道详细的原因，今天，小5发布了一段告别视频，算是最后的告别 一家已经积累了一定品牌和用户的创业团队就这么死于非命，这是一个什么样的创业环境，是一个什么样的互联网环境。其它还活着的创业团队，你们的明天不一定有小5光明，更不一定有小5走得远。与其每天惴惴不安，不如振臂一呼。反对网络封锁，除了广大网民散碎的声音，更应该有团队的加入，从现在开始！ 原创内容，转载请注明： 转载自拈花微笑 本文链接地址: 88，Follow 5<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F08%2F11%2F2389%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F15%2F13049%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">中国已进入笨蛋社会</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F07%2F31%2F11585%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F15%2F13049%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">他说要给人民一个交代，于是给了人民一个胶带</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F05%2F18%2F10578%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F15%2F13049%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">建福宫是谣传！</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F05%2F13%2F2174%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F15%2F13049%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">领导批评了袁腾飞，群众非常满意 [zz]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F07%2F25%2F11350%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F15%2F13049%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">甬温线动车追尾，愿死者瞑目</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p>Follow 5退出了历史舞台</p>
<p>之前一直不知道详细的原因，今天，小5发布了一段告别视频，算是最后的告别</p>
<p><object width="480" height="400" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://player.youku.com/player.php/sid/XMzIxODU1MTY4/v.swf" /><param name="quality" value="high" /><param name="allowscriptaccess" value="sameDomain" /><param name="allowfullscreen" value="true" /><embed width="480" height="400" type="application/x-shockwave-flash" src="http://player.youku.com/player.php/sid/XMzIxODU1MTY4/v.swf" quality="high" allowscriptaccess="sameDomain" allowfullscreen="true" /></object></p>
<p>一家已经积累了一定品牌和用户的创业团队就这么死于非命，这是一个什么样的创业环境，是一个什么样的互联网环境。其它还活着的创业团队，你们的明天不一定有小5光明，更不一定有小5走得远。与其每天惴惴不安，不如振臂一呼。反对网络封锁，除了广大网民散碎的声音，更应该有团队的加入，从现在开始！
<div style="margin-top: 15px; font-style: italic">
<p><strong>原创内容，转载请注明：</strong> 转载自<a href="http://www.jayxu.com/">拈花微笑</a></p>
<p><strong>本文链接地址:</strong> <a href="http://www.jayxu.com/2011/11/15/13049/">88，Follow 5</a></p>
</div>
<p><a href="http://www.bshare.cn/share?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F15%2F13049%2F&title=88%EF%BC%8CFollow+5" title="用bShare分享或收藏本文"><img src="http://static.bshare.cn/frame/images/button_custom1-zh.gif" alt="用bShare分享或收藏本文" /></a></p><table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F08%2F11%2F2389%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F15%2F13049%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">中国已进入笨蛋社会</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F07%2F31%2F11585%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F15%2F13049%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">他说要给人民一个交代，于是给了人民一个胶带</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F05%2F18%2F10578%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F15%2F13049%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">建福宫是谣传！</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F05%2F13%2F2174%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F15%2F13049%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">领导批评了袁腾飞，群众非常满意 [zz]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F07%2F25%2F11350%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F15%2F13049%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">甬温线动车追尾，愿死者瞑目</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.jayxu.com/2011/11/15/13049/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>招聘启事</title>
		<link>http://www.jayxu.com/2011/11/10/13030/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=%25e6%258b%259b%25e8%2581%2598%25e5%2590%25af%25e4%25ba%258b</link>
		<comments>http://www.jayxu.com/2011/11/10/13030/#comments</comments>
		<pubDate>Thu, 10 Nov 2011 07:02:50 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[生活]]></category>
		<category><![CDATA[公司]]></category>

		<guid isPermaLink="false">http://www.jayxu.com/?p=13030</guid>
		<description><![CDATA[现在还空缺职位：J2EE（RESTful）×1，前端×1。初创金融团队，内部金融系统研发。北京。有理想，经折腾，易相处，能扛事的密我 JD 智联 http://jobs.zhaopin.com/beijing/JAVA%E5%B7%A5%E7%A8%8B%E5%B8%88_386360820250006.htm 前程无忧 http://search.51job.com/job/47732797,c.html 原创内容，转载请注明： 转载自拈花微笑 本文链接地址: 招聘启事<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2007%2F06%2F08%2F66%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F10%2F13030%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">相当随的笔</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F08%2F04%2F1680%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F10%2F13030%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">iTunes Store 中国 已开放注册</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2008%2F11%2F15%2F851%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F10%2F13030%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2008-11-15]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F04%2F12%2F2120%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F10%2F13030%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">世界杯了，买俩扎库米热热身</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2007%2F10%2F13%2F30%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F10%2F13030%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">不能说的秘密</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p>现在还空缺职位：J2EE（RESTful）×1，前端×1。初创金融团队，内部金融系统研发。北京。有理想，经折腾，易相处，能扛事的密我</p>
<h3>JD</h3>
<p>智联<br />
<a href="http://jobs.zhaopin.com/beijing/JAVA%E5%B7%A5%E7%A8%8B%E5%B8%88_386360820250006.htm" target="_blank">http://jobs.zhaopin.com/beijing/JAVA%E5%B7%A5%E7%A8%8B%E5%B8%88_386360820250006.htm</a></p>
<p>前程无忧<br />
<a href="http://search.51job.com/job/47732797,c.html" target="_blank">http://search.51job.com/job/47732797,c.html</a>
<div style="margin-top: 15px; font-style: italic">
<p><strong>原创内容，转载请注明：</strong> 转载自<a href="http://www.jayxu.com/">拈花微笑</a></p>
<p><strong>本文链接地址:</strong> <a href="http://www.jayxu.com/2011/11/10/13030/">招聘启事</a></p>
</div>
<p><a href="http://www.bshare.cn/share?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F10%2F13030%2F&title=%E6%8B%9B%E8%81%98%E5%90%AF%E4%BA%8B" title="用bShare分享或收藏本文"><img src="http://static.bshare.cn/frame/images/button_custom1-zh.gif" alt="用bShare分享或收藏本文" /></a></p><table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2007%2F06%2F08%2F66%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F10%2F13030%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">相当随的笔</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F19%2F11711%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F10%2F13030%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2011-09-19]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2008%2F11%2F06%2F775%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F10%2F13030%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Nazca开博</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F03%2F20%2F1452%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F10%2F13030%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">执子之手，与子偕老</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2007%2F10%2F13%2F30%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F10%2F13030%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">不能说的秘密</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.jayxu.com/2011/11/10/13030/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>乔布斯追悼漫画 [zz]</title>
		<link>http://www.jayxu.com/2011/11/09/11780/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=%25e4%25b9%2594%25e5%25b8%2583%25e6%2596%25af%25e8%25bf%25bd%25e6%2582%25bc%25e6%25bc%25ab%25e7%2594%25bb-zz</link>
		<comments>http://www.jayxu.com/2011/11/09/11780/#comments</comments>
		<pubDate>Wed, 09 Nov 2011 09:12:59 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[iLife]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[jobs]]></category>

		<guid isPermaLink="false">http://www.jayxu.com/?p=11780</guid>
		<description><![CDATA[&#160; 原创内容，转载请注明： 转载自拈花微笑 本文链接地址: 乔布斯追悼漫画 [zz]<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F04%2F12962%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F09%2F11780%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">梦娜·辛普森悼兄长史蒂夫·乔布斯 [zz]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F26%2F11684%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F09%2F11780%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">乔布斯的10个经营理念成就了今天的苹果 [zz]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F01%2F17%2F10439%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F09%2F11780%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">UNIX传奇 [zz]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2005%2F08%2F13%2F194%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F09%2F11780%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">唐伯虎Rap [zz]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2008%2F03%2F04%2F280%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F09%2F11780%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">老四，六岁了 [zz]</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.jayxu.com/log/wp-content/uploads/2011/11/p176726208-7.jpg"><img alt="" class="alignnone size-full wp-image-13057" src="http://www.jayxu.com/log/wp-content/uploads/2011/11/p176726208-7.jpg" title="p176726208-7" width="480" /></a></p>
<p><a href="http://www.jayxu.com/log/wp-content/uploads/2011/11/p176726208-8.jpg"><img alt="" class="alignnone size-full wp-image-13057" src="http://www.jayxu.com/log/wp-content/uploads/2011/11/p176726208-8.jpg" title="p176726208-8" width="480" /></a></p>
<p><a href="http://www.jayxu.com/log/wp-content/uploads/2011/11/p176726208-9.jpg"><img alt="" class="alignnone size-full wp-image-13057" src="http://www.jayxu.com/log/wp-content/uploads/2011/11/p176726208-9.jpg" title="p176726208-9" width="480" /></a></p>
<p><a href="http://www.jayxu.com/log/wp-content/uploads/2011/11/p176726208-10.jpg"><img alt="" class="alignnone size-full wp-image-13057" src="http://www.jayxu.com/log/wp-content/uploads/2011/11/p176726208-10.jpg" title="p176726208-10" width="480" /></a></p>
<p><a href="http://www.jayxu.com/log/wp-content/uploads/2011/11/p176726208-11.jpg"><img alt="" class="alignnone size-full wp-image-13057" src="http://www.jayxu.com/log/wp-content/uploads/2011/11/p176726208-11.jpg" title="p176726208-11" width="480" /></a></p>
<p><a href="http://www.jayxu.com/log/wp-content/uploads/2011/11/p176726208-12.jpg"><img alt="" class="alignnone size-full wp-image-13057" src="http://www.jayxu.com/log/wp-content/uploads/2011/11/p176726208-12.jpg" title="p176726208-12" width="480" /></a></p>
<p><a href="http://www.jayxu.com/log/wp-content/uploads/2011/11/p176726208-13.jpg"><img alt="" class="alignnone size-full wp-image-13057" src="http://www.jayxu.com/log/wp-content/uploads/2011/11/p176726208-13.jpg" title="p176726208-13" width="480" /></a></p>
<p><a href="http://www.jayxu.com/log/wp-content/uploads/2011/11/p176726208-14.jpg"><img alt="" class="alignnone size-full wp-image-13057" src="http://www.jayxu.com/log/wp-content/uploads/2011/11/p176726208-14.jpg" title="p176726208-14" width="480" /></a></p>
<p><a href="http://www.jayxu.com/log/wp-content/uploads/2011/11/p176726208-15.jpg"><img alt="" class="alignnone size-full wp-image-13057" src="http://www.jayxu.com/log/wp-content/uploads/2011/11/p176726208-15.jpg" title="p176726208-15" width="480" /></a></p>
<p><a href="http://www.jayxu.com/log/wp-content/uploads/2011/11/p176726208-16.jpg"><img alt="" class="alignnone size-full wp-image-13057" src="http://www.jayxu.com/log/wp-content/uploads/2011/11/p176726208-16.jpg" title="p176726208-16" width="480" /></a></p>
<p><a href="http://www.jayxu.com/log/wp-content/uploads/2011/11/p176726208-17.jpg"><img alt="" class="alignnone size-full wp-image-13057" src="http://www.jayxu.com/log/wp-content/uploads/2011/11/p176726208-17.jpg" title="p176726208-17" width="480" /></a></p>
<p><a href="http://www.jayxu.com/log/wp-content/uploads/2011/11/p176726208-18.jpg"><img alt="" class="alignnone size-full wp-image-13057" src="http://www.jayxu.com/log/wp-content/uploads/2011/11/p176726208-18.jpg" title="p176726208-18" width="480" /></a></p>
<p><a href="http://www.jayxu.com/log/wp-content/uploads/2011/11/p176726208-19.jpg"><img alt="" class="alignnone size-full wp-image-13057" src="http://www.jayxu.com/log/wp-content/uploads/2011/11/p176726208-19.jpg" title="p176726208-19" width="480" /></a></p>
<p><a href="http://www.jayxu.com/log/wp-content/uploads/2011/11/p176726208-20.jpg"><img alt="" class="alignnone size-full wp-image-13057" src="http://www.jayxu.com/log/wp-content/uploads/2011/11/p176726208-20.jpg" title="p176726208-20" width="480" /></a></p>
<p><a href="http://www.jayxu.com/log/wp-content/uploads/2011/11/p176726208-21.jpg"><img alt="" class="alignnone size-full wp-image-13057" src="http://www.jayxu.com/log/wp-content/uploads/2011/11/p176726208-21.jpg" title="p176726208-21" width="480" /></a></p>
<p><a href="http://www.jayxu.com/log/wp-content/uploads/2011/11/p176726208-22.jpg"><img alt="" class="alignnone size-full wp-image-13057" src="http://www.jayxu.com/log/wp-content/uploads/2011/11/p176726208-22.jpg" title="p176726208-22" width="480" /></a></p>
<p><a href="http://www.jayxu.com/log/wp-content/uploads/2011/11/p176726208-24.jpg"><img alt="" class="alignnone size-full wp-image-13057" src="http://www.jayxu.com/log/wp-content/uploads/2011/11/p176726208-24.jpg" title="p176726208-24" width="480" /></a></p>
<p>&nbsp;</p>
<div style="margin-top: 15px; font-style: italic">
<p><strong>原创内容，转载请注明：</strong> 转载自<a href="http://www.jayxu.com/">拈花微笑</a></p>
<p><strong>本文链接地址:</strong> <a href="http://www.jayxu.com/2011/11/09/11780/">乔布斯追悼漫画 [zz]</a></p>
</div>
<p><a href="http://www.bshare.cn/share?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F09%2F11780%2F&title=%E4%B9%94%E5%B8%83%E6%96%AF%E8%BF%BD%E6%82%BC%E6%BC%AB%E7%94%BB+%5Bzz%5D" title="用bShare分享或收藏本文"><img src="http://static.bshare.cn/frame/images/button_custom1-zh.gif" alt="用bShare分享或收藏本文" /></a></p><table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F04%2F12962%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F09%2F11780%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">梦娜·辛普森悼兄长史蒂夫·乔布斯 [zz]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F26%2F11684%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F09%2F11780%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">乔布斯的10个经营理念成就了今天的苹果 [zz]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F01%2F17%2F10439%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F09%2F11780%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">UNIX传奇 [zz]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2005%2F08%2F13%2F194%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F09%2F11780%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">唐伯虎Rap [zz]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2008%2F03%2F04%2F280%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F09%2F11780%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">老四，六岁了 [zz]</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.jayxu.com/2011/11/09/11780/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>《海上传奇》，喜欢上海的理由</title>
		<link>http://www.jayxu.com/2011/11/08/12988/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=%25e3%2580%258a%25e6%25b5%25b7%25e4%25b8%258a%25e4%25bc%25a0%25e5%25a5%2587%25e3%2580%258b%25ef%25bc%258c%25e5%2596%259c%25e6%25ac%25a2%25e4%25b8%258a%25e6%25b5%25b7%25e7%259a%2584%25e7%2590%2586%25e7%2594%25b1</link>
		<comments>http://www.jayxu.com/2011/11/08/12988/#comments</comments>
		<pubDate>Tue, 08 Nov 2011 14:26:11 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[生活]]></category>
		<category><![CDATA[上海]]></category>

		<guid isPermaLink="false">http://www.jayxu.com/?p=12988</guid>
		<description><![CDATA[上海是我长大成人的所在 带着我所有的情怀 第一次干杯头一回恋爱 在永远的纯真年代 追过港台同胞也迷上过老外 自己当明星感觉也不坏 成功的滋味自己最明白 旧的不去新的不来 城市的高度它越变越快 有人出去有人回来 身边的朋友越穿越新派 上海让我越看越爱 好日子好时代 我在上海力波也在 原创内容，转载请注明： 转载自拈花微笑 本文链接地址: 《海上传奇》，喜欢上海的理由<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F08%2F13136%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F08%2F12988%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">上海，老卵！</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F09%2F08%2F1747%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F08%2F12988%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">老上海，儿时的记忆 [zz]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2007%2F02%2F17%2F99%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F08%2F12988%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">上海好男人</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2008%2F11%2F09%2F822%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F08%2F12988%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">2010上海世博会“人”字形概念楼</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F01%2F17%2F10439%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F08%2F12988%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">UNIX传奇 [zz]</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p><object id="myMovie" style="" width="480" height="240" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="pluginspage" value="http://www.macromedia.com/go/getflashplayer" /><param name="src" value="http://p.you.video.sina.com.cn/swf/tvPlayer20111108_V4_2_39_29.swf?d=Tue Nov 08 2011 22:13:14 GMT+0800 (CST)" /><param name="quality" value="high" /><param name="allowfullscreen" value="true" /><param name="wmode" value="transparent" /><param name="allowscriptaccess" value="always" /><param name="flashvars" value="container=main_flash&#038;playerWidth=950&#038;playerHeight=480&#038;pid=1000&#038;tid=1&#038;autoLoad=1&#038;autoPlay=0&#038;as=1&#038;tj=0&#038;tjAD=0&#038;casualPlay=1&#038;logo=1&#038;vid=38922659|38922685&#038;vname=海上传奇&#038;movietvid=hscq&#038;programId=2460&#038;episode=&#038;sid=61151683&#038;next_url=&#038;actlogActive=0&#038;HTML5Player_skin=black&#038;realfull=1&#038;moz=1&quot;/" /><embed id="myMovie" style="" width="480" height="240" type="application/x-shockwave-flash" src="http://p.you.video.sina.com.cn/swf/tvPlayer20111108_V4_2_39_29.swf?d=Tue Nov 08 2011 22:13:14 GMT+0800 (CST)" pluginspage="http://www.macromedia.com/go/getflashplayer" quality="high" allowfullscreen="true" wmode="transparent" allowscriptaccess="always" flashvars="container=main_flash&#038;playerWidth=950&#038;playerHeight=480&#038;pid=1000&#038;tid=1&#038;autoLoad=1&#038;autoPlay=0&#038;as=1&#038;tj=0&#038;tjAD=0&#038;casualPlay=1&#038;logo=1&#038;vid=38922659|38922685&#038;vname=海上传奇&#038;movietvid=hscq&#038;programId=2460&#038;episode=&#038;sid=61151683&#038;next_url=&#038;actlogActive=0&#038;HTML5Player_skin=black&#038;realfull=1&#038;moz=1&quot;/" /></object></p>
<blockquote><p>上海是我长大成人的所在<br />
带着我所有的情怀<br />
第一次干杯头一回恋爱<br />
在永远的纯真年代<br />
追过港台同胞也迷上过老外<br />
自己当明星感觉也不坏<br />
成功的滋味自己最明白<br />
旧的不去新的不来<br />
城市的高度它越变越快<br />
有人出去有人回来<br />
身边的朋友越穿越新派<br />
上海让我越看越爱<br />
好日子好时代<br />
我在上海力波也在</p></blockquote>
<div style="margin-top: 15px; font-style: italic">
<p><strong>原创内容，转载请注明：</strong> 转载自<a href="http://www.jayxu.com/">拈花微笑</a></p>
<p><strong>本文链接地址:</strong> <a href="http://www.jayxu.com/2011/11/08/12988/">《海上传奇》，喜欢上海的理由</a></p>
</div>
<p><a href="http://www.bshare.cn/share?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F08%2F12988%2F&title=%E3%80%8A%E6%B5%B7%E4%B8%8A%E4%BC%A0%E5%A5%87%E3%80%8B%EF%BC%8C%E5%96%9C%E6%AC%A2%E4%B8%8A%E6%B5%B7%E7%9A%84%E7%90%86%E7%94%B1" title="用bShare分享或收藏本文"><img src="http://static.bshare.cn/frame/images/button_custom1-zh.gif" alt="用bShare分享或收藏本文" /></a></p><table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F08%2F13136%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F08%2F12988%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">上海，老卵！</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F09%2F08%2F1747%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F08%2F12988%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">老上海，儿时的记忆 [zz]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2007%2F02%2F17%2F99%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F08%2F12988%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">上海好男人</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2008%2F11%2F09%2F822%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F08%2F12988%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">2010上海世博会“人”字形概念楼</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F01%2F17%2F10439%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F08%2F12988%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">UNIX传奇 [zz]</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.jayxu.com/2011/11/08/12988/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>梦娜·辛普森悼兄长史蒂夫·乔布斯 [zz]</title>
		<link>http://www.jayxu.com/2011/11/04/12962/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=%25e6%25a2%25a6%25e5%25a8%259c%25c2%25b7%25e8%25be%259b%25e6%2599%25ae%25e6%25a3%25ae%25e6%2582%25bc%25e5%2585%2584%25e9%2595%25bf%25e5%258f%25b2%25e8%2592%2582%25e5%25a4%25ab%25c2%25b7%25e4%25b9%2594%25e5%25b8%2583%25e6%2596%25af-zz</link>
		<comments>http://www.jayxu.com/2011/11/04/12962/#comments</comments>
		<pubDate>Fri, 04 Nov 2011 09:54:03 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[生活]]></category>
		<category><![CDATA[jobs]]></category>
		<category><![CDATA[mac]]></category>

		<guid isPermaLink="false">http://www.jayxu.com/?p=12962</guid>
		<description><![CDATA[原文在这里 让我们再一次回顾这个温柔而坚强的男人 &#160; 此文为乔布斯的妹妹、小说家梦娜·辛普森在 10 月 16 日位于斯坦福大学纪念教堂举办的乔布斯道别仪式上发表的悼词。原文发表于《纽约时报》。──编者 &#160; 文 / Mona Simpson &#160; 我是家中的独生女，跟单身母亲长大。父亲是叙利亚移民，小时候我们家很穷，由于这两个原因，我把他想像成奥玛·沙里夫的样子 [1] 。当时我希望他早日发达，然后大发善心，拯救我们那家徒四壁的生活。终于遇到了父亲之后，我尽量说服自己相信他是一个密谋为阿拉伯人民建立新世界的理想主义革命分子，所以才要改头换面。 虽然身为女性主义者，但我一辈子都在等待一个值得我爱，也爱我的男人。几十年来，我一直觉得父亲就是那个男人。25 岁那年，我遇到了他，我的哥哥。 那时我住在纽约，正在写第一本小说。我在一家小杂志社上班，办公室比衣柜大不了多少，连我一共坐了四个人，都是充满抱负的文学青年。一天，我接到一位律师打来的电话，说他一个富有而显赫的客户是我失散多年的哥哥──当时的我还是一个加州来的中产女生，整天缠着老板给我买医保。年轻的编辑们沸腾了。那是 1985 年，我们编的是一本前卫文学杂志，而我却仿佛进入了狄更斯小说中的情节。（说真的，我们最爱的还是那些小说。）律师没有透露我哥哥的名字，于是同事们打起赌来。得票最多的是约翰·屈伏塔（John Travolta）。内心深处我暗暗希望他是一个能在文学上继承亨利·詹姆斯的传统的人：一个才华比我高、举重若轻的作家。 我第一次见到史蒂夫时，他跟我差不多大，穿着牛仔裤，阿拉伯或犹太长相，比奥玛·沙里夫更帅。 我们一起散步，走了很久——他和我一样喜欢散步。我不太记得那天说了什么，只记得他让人感觉是那种我会愿意与之做朋友的人。他花了些时间向我解释自己是做电脑的。 当时我不太了解电脑。我还在用 Olivetti 牌的手动打字机。 我跟史蒂夫说打算买一台 Cromemco 型号的电脑。 史蒂夫说妳等到现在是对的。他说他正在做的电脑会漂亮到爆。 我想跟各位分享自己从史蒂夫那里学到的一些东西。我认识他 27 年，其中可以分为三个时期。不是按年来分，是按生存状态：人生完整的时期、与病魔战斗的时期、垂死时期。 史蒂夫只做他热爱的事。他工作极其努力，天天如此。 这话说来无比简单，但也无比真实。 他是三心二意的对立面。 他不会为努力工作而感到尴尬，哪怕结果是失败。如果像史蒂夫这么聪明的人都不会耻于承认自己的努力曾经失败，或许我也不必感到羞耻。 他被踢出苹果后非常痛苦。我听他提到过一场晚宴，嘉宾包括五百名硅谷领袖，以及当时的总统。没有人邀请他。 他很受伤，但仍然去 NeXT 上班。天天如此。 史蒂夫最大的价值不在于新，而在于美。 有一点很特别：以一个创新者而言，史蒂夫并不喜新厌旧。如果他喜欢某件衣服，就会订上十件、一百件。在他帕洛奥托家中的黑色圆领羊毛衫的数量大概足够分给这间教堂里每人一件。 他不喜欢一时的潮流或是奇技淫巧。他喜欢同龄人。 他的美学理念让我想到一句话：「初看美丽，随后变丑的，是时尚；初看或许丑陋，但随后显示出美的，是艺术。」 史蒂夫总是希望创造出那种「随后显示出美」的东西。 他不介意被误解。 他没有得到晚宴邀请，便开着黑色跑车去 NeXT 工作，他一直开同一款跑车，那辆已经是第三还是第四代了。在 NeXT 的办公室里，他和团队静静地创造着。多年以后，添姆·伯纳斯-李在他们发明的电脑上写下了万维网的代码。 史蒂夫谈论爱情时像个小女生。爱是他的最高美德，他的众神之神。他会关注同事的感情生活，为他们操心。 <a href="http://www.jayxu.com/2011/11/04/12962/"> read more <span class="meta-nav">&#187;</span></a><table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2006%2F07%2F29%2F127%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F04%2F12962%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Unbuntu + Mac</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F03%2F02%2F1423%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F04%2F12962%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">推荐一款mac下的文本编辑器</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F01%2F18%2F10448%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F04%2F12962%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Mac OS X 快捷键 [zz]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F07%2F21%2F11337%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F04%2F12962%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Mac Lion BT</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F26%2F11684%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F04%2F12962%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">乔布斯的10个经营理念成就了今天的苹果 [zz]</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p>原文在<a href="http://apple4.us/2011/10/mona-simpson-eulogy-steve-jobs-chinese.html" target="_blank">这里</a></p>
<p>让我们再一次回顾这个温柔而坚强的男人</p>
<p>&nbsp;</p>
<blockquote><p>此文为乔布斯的妹妹、小说家梦娜·辛普森在 10 月 16 日位于斯坦福大学纪念教堂举办的乔布斯道别仪式上发表的悼词。原文<a href="http://www.nytimes.com/2011/10/30/opinion/mona-simpsons-eulogy-for-steve-jobs.html?_r=3&#038;emc=eta1&#038;pagewanted=all">发表于《纽约时报</a>》。──编者</p></blockquote>
<p>&nbsp;</p>
<p>文 / Mona Simpson</p>
<p>&nbsp;</p>
<p>我是家中的独生女，跟单身母亲长大。父亲是叙利亚移民，小时候我们家很穷，由于这两个原因，我把他想像成奥玛·沙里夫的样子 [1] 。当时我希望他早日发达，然后大发善心，拯救我们那家徒四壁的生活。终于遇到了父亲之后，我尽量说服自己相信他是一个密谋为阿拉伯人民建立新世界的理想主义革命分子，所以才要改头换面。</p>
<p>虽然身为女性主义者，但我一辈子都在等待一个值得我爱，也爱我的男人。几十年来，我一直觉得父亲就是那个男人。25 岁那年，我遇到了他，我的哥哥。</p>
<p>那时我住在纽约，正在写第一本小说。我在一家小杂志社上班，办公室比衣柜大不了多少，连我一共坐了四个人，都是充满抱负的文学青年。一天，我接到一位律师打来的电话，说他一个富有而显赫的客户是我失散多年的哥哥──当时的我还是一个加州来的中产女生，整天缠着老板给我买医保。年轻的编辑们沸腾了。那是 1985 年，我们编的是一本前卫文学杂志，而我却仿佛进入了狄更斯小说中的情节。（说真的，我们最爱的还是那些小说。）律师没有透露我哥哥的名字，于是同事们打起赌来。得票最多的是约翰·屈伏塔（John Travolta）。内心深处我暗暗希望他是一个能在文学上继承亨利·詹姆斯的传统的人：一个才华比我高、举重若轻的作家。</p>
<p>我第一次见到史蒂夫时，他跟我差不多大，穿着牛仔裤，阿拉伯或犹太长相，比奥玛·沙里夫更帅。</p>
<p>我们一起散步，走了很久——他和我一样喜欢散步。我不太记得那天说了什么，只记得他让人感觉是那种我会愿意与之做朋友的人。他花了些时间向我解释自己是做电脑的。</p>
<p>当时我不太了解电脑。我还在用 Olivetti 牌的手动打字机。</p>
<p>我跟史蒂夫说打算买一台 Cromemco 型号的电脑。</p>
<p>史蒂夫说妳等到现在是对的。他说他正在做的电脑会漂亮到爆。</p>
<p>我想跟各位分享自己从史蒂夫那里学到的一些东西。我认识他 27 年，其中可以分为三个时期。不是按年来分，是按生存状态：人生完整的时期、与病魔战斗的时期、垂死时期。</p>
<p>史蒂夫只做他热爱的事。他工作极其努力，天天如此。</p>
<p>这话说来无比简单，但也无比真实。</p>
<p>他是三心二意的对立面。</p>
<p>他不会为努力工作而感到尴尬，哪怕结果是失败。如果像史蒂夫这么聪明的人都不会耻于承认自己的努力曾经失败，或许我也不必感到羞耻。</p>
<p>他被踢出苹果后非常痛苦。我听他提到过一场晚宴，嘉宾包括五百名硅谷领袖，以及当时的总统。没有人邀请他。</p>
<p>他很受伤，但仍然去 NeXT 上班。天天如此。</p>
<p>史蒂夫最大的价值不在于新，而在于美。</p>
<p>有一点很特别：以一个创新者而言，史蒂夫并不喜新厌旧。如果他喜欢某件衣服，就会订上十件、一百件。在他帕洛奥托家中的黑色圆领羊毛衫的数量大概足够分给这间教堂里每人一件。</p>
<p>他不喜欢一时的潮流或是奇技淫巧。他喜欢同龄人。</p>
<p>他的美学理念让我想到一句话：「初看美丽，随后变丑的，是时尚；初看或许丑陋，但随后显示出美的，是艺术。」</p>
<p>史蒂夫总是希望创造出那种「随后显示出美」的东西。</p>
<p>他不介意被误解。</p>
<p>他没有得到晚宴邀请，便开着黑色跑车去 NeXT 工作，他一直开同一款跑车，那辆已经是第三还是第四代了。在 NeXT 的办公室里，他和团队静静地创造着。多年以后，添姆·伯纳斯-李在他们发明的电脑上写下了万维网的代码。</p>
<p>史蒂夫谈论爱情时像个小女生。爱是他的最高美德，他的众神之神。他会关注同事的感情生活，为他们操心。</p>
<p>每当他看到他认为会受女性欢迎的男性时，就会直接了当地问：「兄弟，有女朋友吗？要不要跟我妹妹一起吃饭？」</p>
<p>记得他遇到劳伦那天打电话给我。「我遇到一个美女，无比聪明，养了只狗，我要娶她。」</p>
<p>里德出生时，他开始滔滔不绝，从未停止。他是个实打实的父亲，对每个孩子都如此。他操心丽萨的男友，艾琳的出游计划和裙子的长度，以及伊芙跟她喜爱的马匹玩耍时的安全问题。</p>
<p>我们这些参加过里德毕业派对的人一辈子也忘不了里德和史蒂夫父子两人慢舞的场面。</p>
<p>他对劳伦的爱矢志不渝，这份爱成了维系他的动力。他相信爱无时、无处不在。这是最重要的一点。了解了这点，你就会知道史蒂夫不刻薄、不犬儒、不悲观，从不。我一直试图学习这点，直到现在。</p>
<p>史蒂夫年轻时就已名利双收，他认为这一点令他与众人孤立。自我认识他以来，他做的大多数决定都是为了溶解身边的这堵墙。一个来自洛斯奥托的中产男生，爱上了一个来自新泽西的中产女生，两人知道，必须把丽萨、里德、艾琳和伊芙培养成脚踏实地的普通人。他们家没有让人产生距离感的艺术品或装饰物。事实上，我最初认识史蒂夫和劳伦那几年，他们一直在草地上吃晚餐，有时整餐只吃一种蔬菜。分量很大，但除了蔬菜不吃别的。西兰花。季节性蔬菜。做法简单。还有刚刚摘下的新鲜香料。</p>
<p>虽然他年纪轻轻就已是百万富翁，但史蒂夫总是去机场接我，穿着牛仔裤站在那里。</p>
<p>如果上班时有家人打电话去，他的秘书琳奈塔会帮他接听，「你爸爸在开会。要我叫他吗？」</p>
<p>万圣节时，里德会要求打扮成巫师，这时史蒂夫、劳伦、艾琳和伊芙都会装成巫术世界里的角色。</p>
<p>有一次他们要重新装修厨房，最后花了几年才完工。其间他们在车库中用一块加热的铁盘做饭。同期动工的皮克斯大楼只花了一半时间。而且他们家只改了厨房而已。卫生间完全没有动过。但它一开始就是一栋非常棒的房子，史蒂夫花了很多心思。</p>
<p>并不是说他不享受成功；他非常享受，但程度上要减少几个零。他跟我说过自己最爱跑到帕洛奥托的单车店里得意地想：这里最好的单车我也买得起。</p>
<p>然后他买了。</p>
<p>史蒂夫很谦和。史蒂夫喜欢不断学习。</p>
<p>有一次他说，如果成长经历不同的话，他或许会去当数学家。他说到大学时非常尊敬，很爱在斯坦福校园中漫步。生命中最后几年，他开始思考苹果的新总部大楼的墙上应该挂什么东西才能激发员工灵感，于是开始研读一本关于马克·罗斯科（Mark Rothko）的绘画的专著。在那以前，他不知道罗斯科是谁。</p>
<p>史蒂夫的性格中有趣致的一面。还有哪个 CEO 会熟知英国和中国茶玫瑰的历史，还能说出自己最喜欢的大卫·奥斯丁玫瑰的品种？</p>
<p>他充满了惊喜。虽然两人已经做了二十年日夜相对的夫妻，我敢打赌劳伦经常会收到他的各种充满心思的小礼物——喜爱的歌曲、剪下放在抽屉里的诗歌等等。我几乎隔天就会跟他倾谈几句，但打开《纽约时报》看到关于苹果某项专利的报道时，还是会对着一条完美楼梯的素描惊叹。</p>
<p>史蒂夫跟他的四个孩子、妻子以及我们所有人一起度过了许多快乐的时光。</p>
<p>他珍视幸福。</p>
<p>后来，史蒂夫病了，他的生活压缩到一个很小的圈子当中。他一度喜欢在巴黎漫步，在京都寻找小巧精致的手工荞麦麵馆。他擅长高山滑雪，越野滑雪则较为笨拙。这些都已是过去时。</p>
<p>直到有一天，即便是普通的乐趣——例如一只美味的桃子，也很难引起他的兴致。</p>
<p>但令我吃惊的是，即便上帝夺走了他的那么多，剩下的仍然如此丰盛。这是我从他的疾病中学到的。</p>
<p>我记得哥哥借助椅子开始重新学习走路的过程。肝脏移植手术之后，他的腿瘦得像是无法支撑上半身。每天他都会用双手撑着椅背尝试站立，推着椅子沿着孟菲斯医院的走廊一直走到护士站，然后在椅子上坐下稍作休息，转身，再往回走。他会数自己的步数，每天都数，每天多走几步。</p>
<p>劳伦跪在他面前，看着他的眼睛。</p>
<p>「你可以的，史蒂夫，」她说。他的眼睛张大了一点，双唇紧闭。</p>
<p>他在尝试。他从来不会放弃尝试，从来不会。爱，永远是他的各种努力的核心。他是一个极度情感化的人。</p>
<p>在那段可怕的日子里，我意识到史蒂夫并不是为他自己在忍受这些痛苦。他为自己设定了目标：儿子里德高中毕业，女儿艾琳的京都之旅，他一直在建一艘船，打算带着家人出海环游世界，他希望自己和劳伦退休之后能在这船上生活。</p>
<p>即时是在病中，他对品味的坚持、对事物的区别对待和判断也丝毫不改。他从 67 个护士中选出了三个气质近似的，并完全信任这三人，她们一直陪伴他到临终：翠西（Tracy）、亚图萝（Arturo）、爱兰（Elham）。</p>
<p>有一次，史蒂夫染上了严重的肺炎，医生嘱咐他绝对不能进食——连冰也不行。我们待在一间标准的重症监护室里。史蒂夫一般不喜欢插队或是靠自己的名字来争取些什么，不过这次，他说他希望能够得到特别对待。</p>
<p>我说：史蒂夫，这就是特别对待了。</p>
<p>他靠过来说：「我想要再特别一点。」</p>
<p>他喉咙里插了管子不能说话时，会问我们要笔记本。他在本子上画出了一种在病床上支撑 iPad 的装置，还设计了新的流体监视器和 X 光设备。他把那间不够特别的重症监护室重新画了一遍。每次他妻子走进病房时，我都能看见他的脸上重现笑容。</p>
<p>相信我，对于那些真正非常重要的事，他会写在本子上，会经常翻查。必须这样。</p>
<p>他的意思是说，我们应该违背医生的嘱咐，给他一块冰吃。</p>
<p>我们都不知道会在重症监护室待多久。即便是他生命中的最后一年，只要情况稍有好转，史蒂夫就要构思新计划，并要求他在苹果的朋友们保证将它们完成。荷兰的几间造船厂造出了非常漂亮的不锈钢船体，就等着铺上木皮。三个女儿待字闺中，其中两个小女儿尚未长大成人。他已经见证了我的婚姻，现在想的是带领女儿们走向婚姻殿堂。</p>
<p>世间有许多故事，而我们最终都会在故事的一半死去。</p>
<p>死亡对于一个与癌症共同生活了许多年的人来说并不意外，但史蒂夫的死让我们感到意外。</p>
<p>哥哥的死让我懂得性格的重要性：他是什么样的人，就会以什么样的方式死去。</p>
<p>周二早晨，他打电话叫我快去帕洛奥托，声调亲切而充满关爱，但也像是一个已经把行李搬上车的人，一个即将开始旅行的人，虽然，他非常、真的非常舍不得离开我们。</p>
<p>他开始道别，我叫他不要再说。「等着，我现在过去。我在出租车上往机场走。等我。」</p>
<p>「我现在要跟妳说，因为我担心妳来不及了，亲爱的。」</p>
<p>我到的时候，他跟劳伦在一起说笑，像一对从出生以来就共同度过的伴侣。他看着孩子们的眼睛，仿佛无法将目光移开。</p>
<p>下午二时许，妻子将他唤醒，和苹果的朋友们聊天。</p>
<p>又过了一会，我们都清楚他不会再醒了。</p>
<p>他的呼吸变了，更加粗重，更加缓慢，一下，又一下。我能感觉到他又在数步数，每次多几步。</p>
<p>我明白了：即便是这样的时刻，他仍然在练习，在「工作」。并不是死神带走了史蒂夫，而是他达成了死亡。</p>
<p>弥留之际，他向我道别，他说他很遗憾，遗憾没能向计划好的那样和我一起变老。他说他要去更好的地方了。</p>
<p>费舍医生说他有一半几率度过今晚。</p>
<p>他度过了。守在床边的劳伦有时会因为他的呼吸暂停了较长时间而被吓到。我们互相看着，然后他又会长吸一口气，继续下去。</p>
<p>必须继续。即便那时，他的面容仍然坚决而英俊。那是一张绝对论者和浪漫派的面孔。他的呼吸表明他在进行一场艰苦的旅程，充满了陡峭的小径，和高度。</p>
<p>他似乎在往上爬。</p>
<p>但除了那样的意志、那样的工作伦理、那样的力量之外，史蒂夫还有令人惊讶的可爱一面，对理想的艺术家式的信念，以及那些「随后显示出美」的东西。</p>
<p>数小时后，史蒂夫说出了最后几个单词。全是单音节词，重复了三遍。</p>
<p>启程之前，他望了一眼妹妹帕缇（Patty），对着孩子们看了很长时间，然后凝视着他终生的伴侣劳伦，最后，朝她们身后望去。</p>
<p>史蒂夫最后的话是：</p>
<p>OH WOW. OH WOW. OH WOW.</p>
<p>（翻译：李如一）</p>
<p>—</p>
<p>1. Omar Sharif，埃及影星，主演过《阿拉伯的劳伦斯》、《日瓦格医生》等片。
<div style="margin-top: 15px; font-style: italic">
<p><strong>原创内容，转载请注明：</strong> 转载自<a href="http://www.jayxu.com/">拈花微笑</a></p>
<p><strong>本文链接地址:</strong> <a href="http://www.jayxu.com/2011/11/04/12962/">梦娜·辛普森悼兄长史蒂夫·乔布斯 [zz]</a></p>
</div>
<p><a href="http://www.bshare.cn/share?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F04%2F12962%2F&title=%E6%A2%A6%E5%A8%9C%C2%B7%E8%BE%9B%E6%99%AE%E6%A3%AE%E6%82%BC%E5%85%84%E9%95%BF%E5%8F%B2%E8%92%82%E5%A4%AB%C2%B7%E4%B9%94%E5%B8%83%E6%96%AF+%5Bzz%5D" title="用bShare分享或收藏本文"><img src="http://static.bshare.cn/frame/images/button_custom1-zh.gif" alt="用bShare分享或收藏本文" /></a></p><table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2006%2F07%2F29%2F127%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F04%2F12962%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Unbuntu + Mac</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F03%2F02%2F1423%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F04%2F12962%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">推荐一款mac下的文本编辑器</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F01%2F18%2F10448%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F04%2F12962%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Mac OS X 快捷键 [zz]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F07%2F21%2F11337%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F04%2F12962%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Mac Lion BT</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F26%2F11684%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F04%2F12962%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">乔布斯的10个经营理念成就了今天的苹果 [zz]</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.jayxu.com/2011/11/04/12962/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>/etc/init.d/xl2tpd for CentOS</title>
		<link>http://www.jayxu.com/2011/11/03/12957/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=etcinit-dxl2tpd-for-centos</link>
		<comments>http://www.jayxu.com/2011/11/03/12957/#comments</comments>
		<pubDate>Wed, 02 Nov 2011 18:06:54 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[互联网生活]]></category>
		<category><![CDATA[centos]]></category>
		<category><![CDATA[ipsec]]></category>
		<category><![CDATA[l2tp]]></category>

		<guid isPermaLink="false">http://www.jayxu.com/?p=12957</guid>
		<description><![CDATA[#!/bin/sh # # xl2tpd This shell script takes care of starting and stopping l2tpd. # # chkconfig: – 80 30 # description: Layer 2 Tunnelling Protocol Daemon (RFC 2661) # # processname: xl2tpd # config: /etc/xl2tpd/xl2tpd.conf # pidfile: /var/run/xl2tpd.pid #Servicename SERVICE=xl2tpd # Source function library. . /etc/rc.d/init.d/functions # Source networking configuration. . /etc/sysconfig/network if &#91; <a href="http://www.jayxu.com/2011/11/03/12957/"> read more <span class="meta-nav">&#187;</span></a><table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F24%2F13085%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F03%2F12957%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">在Ubuntu下配置L2TP</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F07%2F04%2F10658%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F03%2F12957%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">About DB2 Catalog</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F12%2F09%2F1907%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F03%2F12957%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">博客后台升级到wordpress 2.9 beta 2</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2008%2F09%2F27%2F719%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F03%2F12957%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">谁在twitter？</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2008%2F02%2F28%2F277%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F03%2F12957%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">工欲善其事，必先利其器</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[
<div class="bwp-syntax-block clearfix">
<div class="bwp-syntax-toolbar" style="right: 15px;" ><div class="bwp-syntax-control"><a href="javascript:;" class="bwp-syntax-source-switch" title="View Source Code"></a></div></div>
<div class="bwp-syntax-wrapper clearfix bwp-syntax-advanced"style=" height: 504px;"><div class="bash"><ol><li class="li1"><div class="de1"><span class="co0">#!/bin/sh</span></div></li>
<li class="li2"><div class="de2"><span class="co0">#</span></div></li>
<li class="li1"><div class="de1"><span class="co0"># xl2tpd This shell script takes care of starting and stopping l2tpd.</span></div></li>
<li class="li2"><div class="de2"><span class="co0">#</span></div></li>
<li class="li1"><div class="de1"><span class="co0"># chkconfig: – 80 30</span></div></li>
<li class="li2"><div class="de2"><span class="co0"># description: Layer 2 Tunnelling Protocol Daemon (RFC 2661)</span></div></li>
<li class="li1"><div class="de1"><span class="co0">#</span></div></li>
<li class="li2"><div class="de2"><span class="co0"># processname: xl2tpd</span></div></li>
<li class="li1"><div class="de1"><span class="co0"># config: /etc/xl2tpd/xl2tpd.conf</span></div></li>
<li class="li2"><div class="de2"><span class="co0"># pidfile: /var/run/xl2tpd.pid</span></div></li>
<li class="li1"><div class="de1"><span class="co0">#Servicename</span></div></li>
<li class="li2"><div class="de2"><span class="re2">SERVICE</span>=xl2tpd</div></li>
<li class="li1"><div class="de1"><span class="co0"># Source function library.</span></div></li>
<li class="li2"><div class="de2">. <span class="sy0">/</span>etc<span class="sy0">/</span>rc.d<span class="sy0">/</span>init.d<span class="sy0">/</span>functions</div></li>
<li class="li1"><div class="de1"><span class="co0"># Source networking configuration.</span></div></li>
<li class="li2"><div class="de2">. <span class="sy0">/</span>etc<span class="sy0">/</span>sysconfig<span class="sy0">/</span>network</div></li>
<li class="li1"><div class="de1"><span class="kw1">if</span> <span class="br0">&#91;</span> <span class="co1">${NETWORKING}</span> = <span class="st0">&quot;no&quot;</span> <span class="br0">&#93;</span></div></li>
<li class="li2"><div class="de2"><span class="kw1">then</span></div></li>
<li class="li1"><div class="de1">&nbsp; &nbsp; <span class="kw3">exit</span> <span class="nu0">0</span></div></li>
<li class="li2"><div class="de2"><span class="kw1">fi</span></div></li>
<li class="li1"><div class="de1"><span class="br0">&#91;</span> <span class="re5">-x</span> <span class="sy0">/</span>usr<span class="sy0">/</span>local<span class="sy0">/</span>sbin<span class="sy0">/</span><span class="re1">$SERVICE</span> <span class="br0">&#93;</span> <span class="sy0">||</span> <span class="kw3">exit</span> <span class="nu0">0</span></div></li>
<li class="li2"><div class="de2"><span class="re2">RETVAL</span>=<span class="nu0">0</span></div></li>
<li class="li1"><div class="de1">&nbsp;</div></li>
<li class="li2"><div class="de2">start<span class="br0">&#40;</span><span class="br0">&#41;</span> <span class="br0">&#123;</span></div></li>
<li class="li1"><div class="de1">&nbsp; &nbsp; <span class="kw3">echo</span> <span class="re5">-n</span> <span class="st0">&quot;Restarting IPSec: &quot;</span></div></li>
<li class="li2"><div class="de2">&nbsp; &nbsp; service ipsec restart</div></li>
<li class="li1"><div class="de1">&nbsp;</div></li>
<li class="li2"><div class="de2">&nbsp; &nbsp; <span class="kw3">echo</span> <span class="re5">-n</span> <span class="st0">&quot;Starting <span class="es2">$SERVICE</span>: &quot;</span></div></li>
<li class="li1"><div class="de1">&nbsp; &nbsp; <span class="kw1">if</span> <span class="br0">&#91;</span> <span class="sy0">!</span> <span class="re5">-d</span> <span class="sy0">/</span>var<span class="sy0">/</span>run<span class="sy0">/</span>xl2tpd <span class="br0">&#93;</span></div></li>
<li class="li2"><div class="de2">&nbsp; &nbsp; <span class="kw1">then</span></div></li>
<li class="li1"><div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; <span class="kw2">mkdir</span> <span class="sy0">/</span>var<span class="sy0">/</span>run<span class="sy0">/</span>xl2tpd</div></li>
<li class="li2"><div class="de2">&nbsp; &nbsp; <span class="kw1">fi</span></div></li>
<li class="li1"><div class="de1">&nbsp; &nbsp; daemon <span class="sy0">/</span>usr<span class="sy0">/</span>local<span class="sy0">/</span>sbin<span class="sy0">/</span><span class="re1">$SERVICE</span></div></li>
<li class="li2"><div class="de2">&nbsp; &nbsp; <span class="re2">RETVAL</span>=<span class="re4">$?</span></div></li>
<li class="li1"><div class="de1">&nbsp; &nbsp; <span class="br0">&#91;</span> <span class="re1">$RETVAL</span> <span class="re5">-eq</span> <span class="nu0">0</span> <span class="br0">&#93;</span> <span class="sy0">&amp;&amp;</span> <span class="kw2">touch</span> <span class="sy0">/</span>var<span class="sy0">/</span>lock<span class="sy0">/</span>subsys<span class="sy0">/</span><span class="re1">$SERVICE</span></div></li>
<li class="li2"><div class="de2">&nbsp; &nbsp; <span class="kw3">echo</span> <span class="st0">&quot;&quot;</span></div></li>
<li class="li1"><div class="de1">&nbsp; &nbsp; <span class="kw3">return</span> <span class="re1">$RETVAL</span></div></li>
<li class="li2"><div class="de2"><span class="br0">&#125;</span></div></li>
<li class="li1"><div class="de1">&nbsp;</div></li>
<li class="li2"><div class="de2">stop<span class="br0">&#40;</span><span class="br0">&#41;</span> <span class="br0">&#123;</span></div></li>
<li class="li1"><div class="de1">&nbsp; &nbsp; <span class="kw3">echo</span> <span class="re5">-n</span> <span class="st0">&quot;Stopping <span class="es2">$SERVICE</span>: &quot;</span></div></li>
<li class="li2"><div class="de2">&nbsp; &nbsp; killproc <span class="re1">$SERVICE</span></div></li>
<li class="li1"><div class="de1">&nbsp; &nbsp; <span class="re2">RETVAL</span>=<span class="re4">$?</span></div></li>
<li class="li2"><div class="de2">&nbsp; &nbsp; <span class="kw3">echo</span></div></li>
<li class="li1"><div class="de1">&nbsp; &nbsp; <span class="br0">&#91;</span> <span class="re1">$RETVAL</span> <span class="re5">-eq</span> <span class="nu0">0</span> <span class="br0">&#93;</span> <span class="sy0">&amp;&amp;</span> <span class="kw2">rm</span> <span class="re5">-f</span> <span class="sy0">/</span>var<span class="sy0">/</span>lock<span class="sy0">/</span>subsys<span class="sy0">/</span><span class="re1">$SERVICE</span></div></li>
<li class="li2"><div class="de2">&nbsp; &nbsp; <span class="kw3">return</span> <span class="re1">$RETVAL</span></div></li>
<li class="li1"><div class="de1"><span class="br0">&#125;</span></div></li>
<li class="li2"><div class="de2">&nbsp;</div></li>
<li class="li1"><div class="de1">restart<span class="br0">&#40;</span><span class="br0">&#41;</span> <span class="br0">&#123;</span></div></li>
<li class="li2"><div class="de2">&nbsp; &nbsp; stop</div></li>
<li class="li1"><div class="de1">&nbsp; &nbsp; start</div></li>
<li class="li2"><div class="de2"><span class="br0">&#125;</span></div></li>
<li class="li1"><div class="de1"><span class="co0"># See how we were called.</span></div></li>
<li class="li2"><div class="de2"><span class="kw1">case</span> <span class="st0">&quot;$1&quot;</span> <span class="kw1">in</span></div></li>
<li class="li1"><div class="de1">&nbsp; start<span class="br0">&#41;</span></div></li>
<li class="li2"><div class="de2">&nbsp; &nbsp; start</div></li>
<li class="li1"><div class="de1">&nbsp; &nbsp; <span class="sy0">;;</span></div></li>
<li class="li2"><div class="de2">&nbsp; stop<span class="br0">&#41;</span></div></li>
<li class="li1"><div class="de1">&nbsp; &nbsp; stop</div></li>
<li class="li2"><div class="de2">&nbsp; &nbsp; <span class="sy0">;;</span></div></li>
<li class="li1"><div class="de1">&nbsp; status<span class="br0">&#41;</span></div></li>
<li class="li2"><div class="de2">&nbsp; &nbsp; status <span class="re1">$SERVICE</span></div></li>
<li class="li1"><div class="de1">&nbsp; &nbsp; <span class="re2">RETVAL</span>=<span class="re4">$?</span></div></li>
<li class="li2"><div class="de2">&nbsp; &nbsp; <span class="sy0">;;</span></div></li>
<li class="li1"><div class="de1">&nbsp; restart<span class="sy0">|</span>reload<span class="br0">&#41;</span></div></li>
<li class="li2"><div class="de2">&nbsp; &nbsp; restart</div></li>
<li class="li1"><div class="de1">&nbsp; &nbsp; <span class="sy0">;;</span></div></li>
<li class="li2"><div class="de2">&nbsp; condrestart<span class="br0">&#41;</span></div></li>
<li class="li1"><div class="de1">&nbsp; &nbsp; <span class="br0">&#91;</span> <span class="re5">-f</span> <span class="sy0">/</span>var<span class="sy0">/</span>lock<span class="sy0">/</span>subsys<span class="sy0">/</span><span class="re1">$SERVICE</span> <span class="br0">&#93;</span> <span class="sy0">&amp;&amp;</span> restart <span class="sy0">||</span> :</div></li>
<li class="li2"><div class="de2">&nbsp; &nbsp; <span class="sy0">;;</span></div></li>
<li class="li1"><div class="de1">&nbsp; <span class="sy0">*</span><span class="br0">&#41;</span></div></li>
<li class="li2"><div class="de2">&nbsp; &nbsp; <span class="kw3">echo</span> <span class="st0">&quot;Usage: <span class="es2">$SERVICE</span> {start|stop|status|restart|reload|condrestart}&quot;</span></div></li>
<li class="li1"><div class="de1">&nbsp; &nbsp; <span class="kw3">exit</span> <span class="nu0">1</span></div></li>
<li class="li2"><div class="de2"><span class="kw1">esac</span></div></li>
</ol></div></div>
<div class="bwp-syntax-source"><pre class="no-parse">#!/bin/sh
#
# xl2tpd This shell script takes care of starting and stopping l2tpd.
#
# chkconfig: – 80 30
# description: Layer 2 Tunnelling Protocol Daemon (RFC 2661)
#
# processname: xl2tpd
# config: /etc/xl2tpd/xl2tpd.conf
# pidfile: /var/run/xl2tpd.pid
#Servicename
SERVICE=xl2tpd
# Source function library.
. /etc/rc.d/init.d/functions
# Source networking configuration.
. /etc/sysconfig/network
if [ ${NETWORKING} = "no" ]
then
	exit 0
fi
[ -x /usr/local/sbin/$SERVICE ] || exit 0
RETVAL=0

start() {
	echo -n "Restarting IPSec: "
	service ipsec restart

	echo -n "Starting $SERVICE: "
	if [ ! -d /var/run/xl2tpd ]
	then
		mkdir /var/run/xl2tpd
	fi
	daemon /usr/local/sbin/$SERVICE
	RETVAL=$?
	[ $RETVAL -eq 0 ] &amp;&amp; touch /var/lock/subsys/$SERVICE
	echo ""
	return $RETVAL
}

stop() {
	echo -n "Stopping $SERVICE: "
	killproc $SERVICE
	RETVAL=$?
	echo
	[ $RETVAL -eq 0 ] &amp;&amp; rm -f /var/lock/subsys/$SERVICE
	return $RETVAL
}

restart() {
	stop
	start
}
# See how we were called.
case "$1" in
  start)
	start
	;;
  stop)
	stop
	;;
  status)
	status $SERVICE
	RETVAL=$?
	;;
  restart|reload)
	restart
	;;
  condrestart)
	[ -f /var/lock/subsys/$SERVICE ] &amp;&amp; restart || :
	;;
  *)
	echo "Usage: $SERVICE {start|stop|status|restart|reload|condrestart}"
	exit 1
esac</pre></div></div>

<div style="margin-top: 15px; font-style: italic">
<p><strong>原创内容，转载请注明：</strong> 转载自<a href="http://www.jayxu.com/">拈花微笑</a></p>
<p><strong>本文链接地址:</strong> <a href="http://www.jayxu.com/2011/11/03/12957/">/etc/init.d/xl2tpd for CentOS</a></p>
</div>
<p><a href="http://www.bshare.cn/share?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F03%2F12957%2F&title=%2Fetc%2Finit.d%2Fxl2tpd+for+CentOS" title="用bShare分享或收藏本文"><img src="http://static.bshare.cn/frame/images/button_custom1-zh.gif" alt="用bShare分享或收藏本文" /></a></p><table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F24%2F13085%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F03%2F12957%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">在Ubuntu下配置L2TP</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F07%2F04%2F10658%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F03%2F12957%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">About DB2 Catalog</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F12%2F09%2F1907%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F03%2F12957%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">博客后台升级到wordpress 2.9 beta 2</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2008%2F09%2F27%2F719%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F03%2F12957%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">谁在twitter？</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2008%2F02%2F28%2F277%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F03%2F12957%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">工欲善其事，必先利其器</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.jayxu.com/2011/11/03/12957/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>关于『AWS GovCloud：Amazon把美国政府带至｢云｣上』</title>
		<link>http://www.jayxu.com/2011/10/28/12951/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=%25e5%2585%25b3%25e4%25ba%258e%25e3%2580%258eaws-govcloud%25ef%25bc%259aamazon%25e6%258a%258a%25e7%25be%258e%25e5%259b%25bd%25e6%2594%25bf%25e5%25ba%259c%25e5%25b8%25a6%25e8%2587%25b3%25ef%25bd%25a2%25e4%25ba%2591%25ef%25bd%25a3%25e4%25b8%258a%25e3%2580%258f</link>
		<comments>http://www.jayxu.com/2011/10/28/12951/#comments</comments>
		<pubDate>Fri, 28 Oct 2011 07:05:29 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[辩]]></category>
		<category><![CDATA[cloud]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[ibm]]></category>
		<category><![CDATA[m$]]></category>

		<guid isPermaLink="false">http://www.jayxu.com/?p=12951</guid>
		<description><![CDATA[政府服务一直是云服务所不能涉及的领域，其特殊性使得政府进入“云”的时候只能三思再三思。不过Amazon在今天推出的AWS（amazon web services） GovCloud打破了这个定律，第一次将政府带入到“云”上面去。 正如ITAR（International Trade and Arms Regulation）这种国防相关的高限制级的数据文件，政府就不允许其在“云”上进行管理，因为“云”环境很容易被美国以外的人所入侵。 但是这次Amazon所推出的AWS GovCloud就解决了这个问题，AWS GovCloud只允许美国用户进行访问，这就让美国政府可以在“云”管理一些更高限制级别的数据。 Amazon表示，AWS GovCloud提供与其他AWS服务一样的安全级别，不过就另外支持了如 FISMA, SAS-70, ISO 27001和PCI DSS Level 1等一些安全认证机制。 AWS将为AWS GovCloud用户部署一些例如 Amazon Elastic Compute Cloud (Amazon EC2), Amazon Simple Storage Service (Amazon S3) and Amazon Virtual Private Cloud (Amazon VPC)等Amazon的云服务，政府只要在使用的时候支付费用就可以，AWS GovCloud为政府提供更加弹性和低价的服务。 目前，NASA已经在使用AWS GovCloud的云服务，还有超过100家的政府部门已经在某些地方使用AWS GovCloud，可以搬迁至“云”上了。 美国政府已经走进“云”当中了，在世界范围内向政府普及“云”服务会是一个很长远的事情，但“云”服务依然成为趋势。 via TC AWS Jacob: “AWS GovCloud只允许美国用户访问”是如何做到的啊？如果用他们国内的代理是否也可以直接访问啊？而且像去美国出差的外国人是否也都可以直接访问？IBM一直在推SOA，但是感觉在云计算方面没有走到最前面，还是Amazon领先了一步；IBM，微软，Google凭借其强大的研发实力在PAAS中展开激烈的竞争；感觉微软的优势是HyperV和WindowServer的完美结合以及庞大的面向开发人员的软件，IBM的优势是软件组合的完整性，而Google是很早就有一些云产品问世。云卖的就是幕后的一个品牌和信誉！谁也不敢把自己的一些敏感数据交给一个名不见经卷的小公司开发的云。 Me: 1、应该有专线、VPN或者ID卡绑定的策略 2、在私有云的solution上IBM有着垂直整合的优势，i/z/x <a href="http://www.jayxu.com/2011/10/28/12951/"> read more <span class="meta-nav">&#187;</span></a><table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F04%2F04%2F10555%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F28%2F12951%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">“他们最后都变成Microsoft”</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F28%2F12947%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F28%2F12951%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">How do I connect my android phone to the IBM Wireless network?</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F06%2F07%2F10597%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F28%2F12951%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">IBM沃森背后的AI技术 [zz]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F07%2F01%2F10617%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F28%2F12951%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Let’s Google+</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F01%2F14%2F1974%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F28%2F12951%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Google创始人Sergey Brin和Larry Page谈Google</font>
                    </a>
                </td>
            </tr>
        <br/>
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">来自无觅网络的相关文章：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fbfya.com%2Fdomian-live-2-google&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F28%2F12951%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">从hotmail的domian live邮局转移到Google邮局的理由 (@bfya)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fbfya.com%2Fgoogle-webmasters-tools&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F28%2F12951%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">google 收录突然减少的原因 服务器不稳定 (@bfya)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fbfya.com%2Fgoogle-webmasters-tools-removals&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F28%2F12951%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">向 google 提交 删除已经不存在的链接地址 (@bfya)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fbfya.com%2Fgoogle-13-birthday&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F28%2F12951%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Google 13岁生日 (@bfya)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fbfya.com%2Fgoogle-let-it-snow&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F28%2F12951%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Google亮了 搜索 let it snow 页面会下雪 屏幕还会结霜 还可以画画 (@bfya)</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<blockquote><p>政府服务一直是云服务所不能涉及的领域，其特殊性使得政府进入“云”的时候只能三思再三思。不过Amazon在今天推出的AWS（amazon web services） GovCloud打破了这个定律，第一次将政府带入到“云”上面去。</p>
<p>正如ITAR（International Trade and Arms Regulation）这种国防相关的高限制级的数据文件，政府就不允许其在“云”上进行管理，因为“云”环境很容易被美国以外的人所入侵。</p>
<p>但是这次Amazon所推出的AWS GovCloud就解决了这个问题，AWS GovCloud只允许美国用户进行访问，这就让美国政府可以在“云”管理一些更高限制级别的数据。</p>
<p>Amazon表示，AWS GovCloud提供与其他AWS服务一样的安全级别，不过就另外支持了如 FISMA, SAS-70, ISO 27001和PCI DSS Level 1等一些安全认证机制。</p>
<p>AWS将为AWS GovCloud用户部署一些例如 Amazon Elastic Compute Cloud (Amazon EC2), Amazon Simple Storage Service (Amazon S3) and Amazon Virtual Private Cloud (Amazon VPC)等Amazon的云服务，政府只要在使用的时候支付费用就可以，AWS GovCloud为政府提供更加弹性和低价的服务。</p>
<p>目前，NASA已经在使用AWS GovCloud的云服务，还有超过100家的政府部门已经在某些地方使用AWS GovCloud，可以搬迁至“云”上了。</p>
<p>美国政府已经走进“云”当中了，在世界范围内向政府普及“云”服务会是一个很长远的事情，但“云”服务依然成为趋势。</p>
<p>via TC AWS</p></blockquote>
<p><span style="text-decoration: underline;"><strong>Jacob</strong></span>: “AWS GovCloud只允许美国用户访问”是如何做到的啊？如果用他们国内的代理是否也可以直接访问啊？而且像去美国出差的外国人是否也都可以直接访问？IBM一直在推SOA，但是感觉在云计算方面没有走到最前面，还是Amazon领先了一步；IBM，微软，Google凭借其强大的研发实力在PAAS中展开激烈的竞争；感觉微软的优势是HyperV和WindowServer的完美结合以及庞大的面向开发人员的软件，IBM的优势是软件组合的完整性，而Google是很早就有一些云产品问世。云卖的就是幕后的一个品牌和信誉！谁也不敢把自己的一些敏感数据交给一个名不见经卷的小公司开发的云。</p>
<p><span style="text-decoration: underline;"><strong>Me</strong></span>: 1、应该有专线、VPN或者ID卡绑定的策略</p>
<p>2、在私有云的solution上IBM有着垂直整合的优势，i/z/x + 虚拟化 + DB2 + WAS + apps，IBM的产品线很全，对于客户也很省心，一站式的解决方案与技术支持。对于公有云尤其是之上的apps，amazon、google的确走在了前面，但是IBM正在凭借lotus live追赶。根据CDL线报，Symphony的在线版本正在紧锣密鼓地开发当中，年底将有一个版本发布，目前已经有了像Sony这样的大客户，将是google docs、zoho的有力竞争者</p>
<p>3、对于数据私密性，国内的公有云产品可以完全忽略，因为政府凌驾于隐私之上，只要你的服务器在中国（大陆），政府会使用行政压力迫使你交出他感兴趣的数据。这一点在互联网环境中有各种各样的例子，比如当年yahoo中国的邮件泄露，谷歌退出中国（大陆），gmail的邮件服务器遭攻击等等</p>
<p>&nbsp;
<div style="margin-top: 15px; font-style: italic">
<p><strong>原创内容，转载请注明：</strong> 转载自<a href="http://www.jayxu.com/">拈花微笑</a></p>
<p><strong>本文链接地址:</strong> <a href="http://www.jayxu.com/2011/10/28/12951/">关于『AWS GovCloud：Amazon把美国政府带至｢云｣上』</a></p>
</div>
<p><a href="http://www.bshare.cn/share?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F28%2F12951%2F&title=%E5%85%B3%E4%BA%8E%E3%80%8EAWS+GovCloud%EF%BC%9AAmazon%E6%8A%8A%E7%BE%8E%E5%9B%BD%E6%94%BF%E5%BA%9C%E5%B8%A6%E8%87%B3%EF%BD%A2%E4%BA%91%EF%BD%A3%E4%B8%8A%E3%80%8F" title="用bShare分享或收藏本文"><img src="http://static.bshare.cn/frame/images/button_custom1-zh.gif" alt="用bShare分享或收藏本文" /></a></p><table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F04%2F04%2F10555%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F28%2F12951%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">“他们最后都变成Microsoft”</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F28%2F12947%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F28%2F12951%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">How do I connect my android phone to the IBM Wireless network?</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F06%2F07%2F10597%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F28%2F12951%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">IBM沃森背后的AI技术 [zz]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F07%2F01%2F10617%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F28%2F12951%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Let’s Google+</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F01%2F14%2F1974%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F28%2F12951%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Google创始人Sergey Brin和Larry Page谈Google</font>
                    </a>
                </td>
            </tr>
        <br/>
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">来自无觅网络的相关文章：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fbfya.com%2Fdomian-live-2-google&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F28%2F12951%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">从hotmail的domian live邮局转移到Google邮局的理由 (@bfya)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fbfya.com%2Fgoogle-webmasters-tools&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F28%2F12951%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">google 收录突然减少的原因 服务器不稳定 (@bfya)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fbfya.com%2Fgoogle-webmasters-tools-removals&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F28%2F12951%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">向 google 提交 删除已经不存在的链接地址 (@bfya)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fbfya.com%2Fgoogle-13-birthday&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F28%2F12951%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Google 13岁生日 (@bfya)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fbfya.com%2Fgoogle-let-it-snow&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F28%2F12951%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Google亮了 搜索 let it snow 页面会下雪 屏幕还会结霜 还可以画画 (@bfya)</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.jayxu.com/2011/10/28/12951/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>关于『程序出错后，程序员给测试人员的20条高频回复』</title>
		<link>http://www.jayxu.com/2011/10/28/12949/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=%25e5%2585%25b3%25e4%25ba%258e%25e3%2580%258e%25e7%25a8%258b%25e5%25ba%258f%25e5%2587%25ba%25e9%2594%2599%25e5%2590%258e%25ef%25bc%258c%25e7%25a8%258b%25e5%25ba%258f%25e5%2591%2598%25e7%25bb%2599%25e6%25b5%258b%25e8%25af%2595%25e4%25ba%25ba%25e5%2591%2598%25e7%259a%258420%25e6%259d%25a1%25e9%25ab%2598%25e9%25a2%2591%25e5%259b%259e</link>
		<comments>http://www.jayxu.com/2011/10/28/12949/#comments</comments>
		<pubDate>Fri, 28 Oct 2011 06:53:28 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[辩]]></category>
		<category><![CDATA[qa]]></category>
		<category><![CDATA[开发]]></category>

		<guid isPermaLink="false">http://www.jayxu.com/?p=12949</guid>
		<description><![CDATA[编者按：程序员和软件测试员之间的关系无须多言。这些经典回复是国外程序员总结分享的，“全球通用”。 20. “That’s weird…” 很奇怪…… 19. “It’s never done that before.” 以前没这样过的。 18. “It worked yesterday.” 昨天还好好的。 17. “How is that possible?” 那怎么可能？（怎么会出问题？） 16. “It must be a hardware problem.” 这一定是硬件问题。 15. “What did you type in wrong to get it to crash?” 你输入什么东西后才崩溃的？ 14. “There is something funky in your data.” 你的数据有问题。 13. “I <a href="http://www.jayxu.com/2011/10/28/12949/"> read more <span class="meta-nav">&#187;</span></a><table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F06%2F09%2F10602%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F28%2F12949%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">开源中最好的Web开发的资源 [zz]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F09%2F16%2F2420%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F28%2F12949%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Sun Pinyin开发团队接受China Daily采访</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F12%2F08%2F1906%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F28%2F12949%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">测试与Live Spaces同步</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2007%2F12%2F16%2F9892%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F28%2F12949%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">颜色——准到有点妖怪的心理测试</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F14%2F13155%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F28%2F12949%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">测试Blogspot同步</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<blockquote><p>编者按：程序员和软件测试员之间的关系无须多言。这些经典回复是国外程序员总结分享的，“全球通用”。</p>
<p>20. “That’s weird…” 很奇怪……</p>
<p>19. “It’s never done that before.” 以前没这样过的。</p>
<p>18. “It worked yesterday.” 昨天还好好的。</p>
<p>17. “How is that possible?” 那怎么可能？（怎么会出问题？）</p>
<p>16. “It must be a hardware problem.” 这一定是硬件问题。</p>
<p>15. “What did you type in wrong to get it to crash?” 你输入什么东西后才崩溃的？</p>
<p>14. “There is something funky in your data.” 你的数据有问题。</p>
<p>13. “I haven’t touched that module in weeks!” 我好几个礼拜没动那个程序了！</p>
<p>12. “You must have the wrong version.” 你一定在用错误的版本。</p>
<p>11. “It’s just some unlucky coincidence.” 这只是凑巧。</p>
<p>10. “I can’t test everything!” 我无法测试所有东西。（我的机器环境下，无法测试所有的可能情况。）</p>
<p>09. “THIS can’t be the source of THAT.” “这”不可能是问题的原因。</p>
<p>08. “It works, but it hasn’t been tested.” 程序能用，不过还没有测试。</p>
<p>07. “Somebody must have changed my code.” 一定有人改了我的代码。</p>
<p>06. “Did you check for a virus on your system?” 你的电脑扫描病毒了么？</p>
<p>05. “Even though it doesn’t work, how does it feel? 即便程序不行了，（你觉得）程序写得如何？</p>
<p>04. “You can’t use that version on your system.” 你不能在你系统上使用那个版本的程序。（程序版本和系统有冲突。）</p>
<p>03. “Why do you want to do it that way?” 你怎么会想着那样操作啊？</p>
<p>02. “Where were you when the program blew up?” 程序崩溃时，你在做什么呢？（做了哪些操作？）</p>
<p>第1条会是什么？猜猜看吧！</p>
<p>01. “It works on my machine” 在我机器上好好的！！！（怎么在你那就出问题了呢！！！）</p></blockquote>
<p><span style="text-decoration: underline;"><strong>Me</strong></span>：这是一个永恒的话题，开发人员与测试人员之间如何合作，又如何钳制。经历不同的项目会有不同的体验。我的看法是，对于开发人员，应该有足够的自信将可测试、鲁棒的代码提交给测试人员；而对于测试人员，发现问题后也有责任将可重现的步骤提交给开发人员。互制-&gt;互信-&gt;互助，这是整个team成熟的标志
<div style="margin-top: 15px; font-style: italic">
<p><strong>原创内容，转载请注明：</strong> 转载自<a href="http://www.jayxu.com/">拈花微笑</a></p>
<p><strong>本文链接地址:</strong> <a href="http://www.jayxu.com/2011/10/28/12949/">关于『程序出错后，程序员给测试人员的20条高频回复』</a></p>
</div>
<p><a href="http://www.bshare.cn/share?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F28%2F12949%2F&title=%E5%85%B3%E4%BA%8E%E3%80%8E%E7%A8%8B%E5%BA%8F%E5%87%BA%E9%94%99%E5%90%8E%EF%BC%8C%E7%A8%8B%E5%BA%8F%E5%91%98%E7%BB%99%E6%B5%8B%E8%AF%95%E4%BA%BA%E5%91%98%E7%9A%8420%E6%9D%A1%E9%AB%98%E9%A2%91%E5%9B%9E%E5%A4%8D%E3%80%8F" title="用bShare分享或收藏本文"><img src="http://static.bshare.cn/frame/images/button_custom1-zh.gif" alt="用bShare分享或收藏本文" /></a></p><table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F06%2F09%2F10602%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F28%2F12949%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">开源中最好的Web开发的资源 [zz]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F09%2F16%2F2420%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F28%2F12949%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Sun Pinyin开发团队接受China Daily采访</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F12%2F08%2F1906%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F28%2F12949%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">测试与Live Spaces同步</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2007%2F12%2F16%2F9892%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F28%2F12949%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">颜色——准到有点妖怪的心理测试</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F14%2F13155%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F28%2F12949%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">测试Blogspot同步</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.jayxu.com/2011/10/28/12949/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How do I connect my android phone to the IBM Wireless network?</title>
		<link>http://www.jayxu.com/2011/10/28/12947/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-do-i-connect-my-android-phone-to-the-ibm-wireless-network</link>
		<comments>http://www.jayxu.com/2011/10/28/12947/#comments</comments>
		<pubDate>Fri, 28 Oct 2011 06:41:13 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[技术生活]]></category>
		<category><![CDATA[ibm]]></category>

		<guid isPermaLink="false">http://www.jayxu.com/?p=12947</guid>
		<description><![CDATA[First, if you do not have a LEAP account, you can request one in the IBM Wireless Account Manager Enter the settings application. At least for the Nexus One, I press the menu hard key then click settings. Click Wireless &#038; networks (first option in 2.1) Click Wi-Fi settings Click Add Wi-Fi network Enter IBM as <a href="http://www.jayxu.com/2011/10/28/12947/"> read more <span class="meta-nav">&#187;</span></a><table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F06%2F07%2F10597%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F28%2F12947%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">IBM沃森背后的AI技术 [zz]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F06%2F16%2F10609%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F28%2F12947%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">IBM i Is Modern. Windows and UNIX Are Legacy.</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F05%2F11592%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F28%2F12947%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">About “IBM Rational XML ODBC Driver could not be loaded due to system error 126″ when Integrating ClearQuest with Insight</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F28%2F12951%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F28%2F12947%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">关于『AWS GovCloud：Amazon把美国政府带至｢云｣上』</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F07%2F04%2F10658%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F28%2F12947%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">About DB2 Catalog</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p>First, if you do not have a LEAP account, you can request one in the <a href="https://bluewireless.ibm.com/">IBM Wireless Account Manager</a></p>
<ol>
<li>Enter the <strong>settings application</strong>. At least for the Nexus One, I press the <strong>menu hard key </strong>then click <strong>settings</strong>.</li>
<li>Click <strong>Wireless &#038; networks</strong> (first option in 2.1)</li>
<li>Click <strong>Wi-Fi settings</strong></li>
<li>Click <strong>Add Wi-Fi network</strong></li>
<li>Enter <strong>IBM</strong> as the <strong>Network SSID</strong>. I believe it should be all caps.</li>
<li>Select <strong>802.1x Enterprise </strong>from the <strong>Security</strong> drop down. If you are prompted for credential store password and have never created one, set one now, I believe it has to be 6 characters long.</li>
<li>Select <strong>PEAP</strong> from the <strong>EAP method</strong> drop down.</li>
<li>If you see <strong>phase 2 authentication</strong> select <strong>None</strong> or <strong>N/A</strong> (also try <strong>GTC</strong> if you don&#8217;t have a none option)</li>
<li>Enter your<strong> IBM email address </strong>in <strong>Identity</strong></li>
<li>Leave <strong>anonymous identity</strong> blank (or select <strong>None</strong>).</li>
<li>Enter your <strong>LEAP password</strong> (not your intranet password!) in the <strong>wireless password</strong> box.</li>
</ol>
<p>These steps have been tested with the following android versions.</p>
<ul>
<li>2.1-update1</li>
<li>2.2.1</li>
<li>2.3.4</li>
<li>2.3.5</li>
<li>Honeycomb 3.2</li>
</ul>
<p>People have reported issues with the following devices.</p>
<ul>
<li>Samsung Galaxy SII</li>
</ul>
<p>If the above is not working you may need to install <a href="https://market.android.com/details?id=com.oneguyinabasement.leapwifi&#038;feature=search_result">LEAP Wifi Free</a>
<div style="margin-top: 15px; font-style: italic">
<p><strong>原创内容，转载请注明：</strong> 转载自<a href="http://www.jayxu.com/">拈花微笑</a></p>
<p><strong>本文链接地址:</strong> <a href="http://www.jayxu.com/2011/10/28/12947/">How do I connect my android phone to the IBM Wireless network?</a></p>
</div>
<p><a href="http://www.bshare.cn/share?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F28%2F12947%2F&title=How+do+I+connect+my+android+phone+to+the+IBM+Wireless+network%3F" title="用bShare分享或收藏本文"><img src="http://static.bshare.cn/frame/images/button_custom1-zh.gif" alt="用bShare分享或收藏本文" /></a></p><table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F06%2F07%2F10597%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F28%2F12947%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">IBM沃森背后的AI技术 [zz]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F06%2F16%2F10609%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F28%2F12947%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">IBM i Is Modern. Windows and UNIX Are Legacy.</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F05%2F11592%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F28%2F12947%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">About “IBM Rational XML ODBC Driver could not be loaded due to system error 126″ when Integrating ClearQuest with Insight</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F28%2F12951%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F28%2F12947%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">关于『AWS GovCloud：Amazon把美国政府带至｢云｣上』</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F07%2F04%2F10658%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F28%2F12947%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">About DB2 Catalog</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.jayxu.com/2011/10/28/12947/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>乐队视频</title>
		<link>http://www.jayxu.com/2011/10/28/12944/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=%25e4%25b9%2590%25e9%2598%259f%25e8%25a7%2586%25e9%25a2%2591</link>
		<comments>http://www.jayxu.com/2011/10/28/12944/#comments</comments>
		<pubDate>Fri, 28 Oct 2011 02:32:50 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[生活]]></category>
		<category><![CDATA[augmentum]]></category>
		<category><![CDATA[乐队]]></category>

		<guid isPermaLink="false">http://www.jayxu.com/?p=12944</guid>
		<description><![CDATA[这是07年圣诞在群硕年会上玩乐队的视频。是小薇剪辑的，原先大小1G多，昨天转码、压缩、上传，终于可以放上来了~ 主吉他：Kevin 节奏吉他：我 Bass：Jason 鼓：Robin 键盘：Serena 原创内容，转载请注明： 转载自拈花微笑 本文链接地址: 乐队视频<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2006%2F10%2F19%2F119%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F28%2F12944%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">北航宣讲会</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2006%2F03%2F20%2F151%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F28%2F12944%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">《小罗曼史》</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2005%2F11%2F18%2F167%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F28%2F12944%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">群硕笔试题</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F02%2F14%2F10515%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F28%2F12944%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">缘分落地生根是我们</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F10%2F19%2F1771%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F28%2F12944%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">又是很随的笔…</font>
                    </a>
                </td>
            </tr>
        <br/>
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">来自无觅网络的相关文章：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.ycy8.net%2F2011_4805.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F28%2F12944%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">沼泽乐队个人专辑- 沧浪星 (@ycy8)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.ycy8.net%2F2010_1923.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F28%2F12944%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">南无乐队个人专辑- 南无 (@ycy8)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.caodanshi.com%2F2011%2F622.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F28%2F12944%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">#操蛋事#622-好装13 (@caodanshi)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fbfya.com%2Fhebe-qiuniao&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F28%2F12944%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">田馥甄 囚鸟 MV (@bfya)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fmall.ycy8.net%2F2011_1002.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F28%2F12944%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">乐队笔筒 (@ycy8)</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p>这是07年圣诞在群硕年会上玩乐队的视频。是小薇剪辑的，原先大小1G多，昨天转码、压缩、上传，终于可以放上来了~</p>
<p>主吉他：Kevin</p>
<p>节奏吉他：我</p>
<p>Bass：Jason</p>
<p>鼓：Robin</p>
<p>键盘：Serena</p>
<p><object width="480" height="400" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://player.youku.com/player.php/sid/XMzE2ODAzNTIw/v.swf" /><param name="allowfullscreen" value="true" /><param name="quality" value="high" /><param name="allowscriptaccess" value="always" /><embed width="480" height="400" type="application/x-shockwave-flash" src="http://player.youku.com/player.php/sid/XMzE2ODAzNTIw/v.swf" allowfullscreen="true" quality="high" allowscriptaccess="always" /></object>
<div style="margin-top: 15px; font-style: italic">
<p><strong>原创内容，转载请注明：</strong> 转载自<a href="http://www.jayxu.com/">拈花微笑</a></p>
<p><strong>本文链接地址:</strong> <a href="http://www.jayxu.com/2011/10/28/12944/">乐队视频</a></p>
</div>
<p><a href="http://www.bshare.cn/share?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F28%2F12944%2F&title=%E4%B9%90%E9%98%9F%E8%A7%86%E9%A2%91" title="用bShare分享或收藏本文"><img src="http://static.bshare.cn/frame/images/button_custom1-zh.gif" alt="用bShare分享或收藏本文" /></a></p><table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2006%2F10%2F19%2F119%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F28%2F12944%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">北航宣讲会</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2006%2F03%2F20%2F151%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F28%2F12944%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">《小罗曼史》</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2005%2F11%2F18%2F167%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F28%2F12944%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">群硕笔试题</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F02%2F14%2F10515%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F28%2F12944%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">缘分落地生根是我们</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F10%2F19%2F1771%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F28%2F12944%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">又是很随的笔…</font>
                    </a>
                </td>
            </tr>
        <br/>
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">来自无觅网络的相关文章：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.ycy8.net%2F2011_4805.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F28%2F12944%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">沼泽乐队个人专辑- 沧浪星 (@ycy8)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.ycy8.net%2F2010_1923.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F28%2F12944%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">南无乐队个人专辑- 南无 (@ycy8)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.caodanshi.com%2F2011%2F622.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F28%2F12944%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">#操蛋事#622-好装13 (@caodanshi)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fbfya.com%2Fhebe-qiuniao&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F28%2F12944%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">田馥甄 囚鸟 MV (@bfya)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fmall.ycy8.net%2F2011_1002.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F28%2F12944%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">乐队笔筒 (@ycy8)</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.jayxu.com/2011/10/28/12944/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>架构腐化之谜 [zz]</title>
		<link>http://www.jayxu.com/2011/10/26/10664/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=%25e6%259e%25b6%25e6%259e%2584%25e8%2585%2590%25e5%258c%2596%25e4%25b9%258b%25e8%25b0%259c-zz</link>
		<comments>http://www.jayxu.com/2011/10/26/10664/#comments</comments>
		<pubDate>Wed, 26 Oct 2011 06:32:57 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[技术生活]]></category>
		<category><![CDATA[architecture]]></category>

		<guid isPermaLink="false">http://www.jayxu.com/?p=10664</guid>
		<description><![CDATA[原文来自51CTO 前言 新技术层出不穷。过去十年时间里，我们经历了许多激动人心的新技术，包括那些新的框架、语言、平台、编程模型等等。这些新技术极大地改善了开发人员的工作环境，缩短了产品和项目的面世时间。然而作为在软件行业第一线工作多年的从业者，我们却不得不面对一个现实，那就是当初采用新技术的乐趣随着项目周期的增长而迅速减少。无论当初的选择多么光鲜，半年、一年之后，只要这个项目依然活跃，业务在扩张——越来越多的功能需要加入，一些公共的问题就会逐渐显露出来。构建过慢，完成新功能让你痛不欲生，团队成员无法很快融入，文档无法及时更新等等。 在长期运转的项目中，架构的腐化是怎么产生的？为什么常见的面向对象技术无法解决这类问题？如何延缓架构的腐化？ 本文将尝试解释这一切，并提出相应的解决方案。读者需要具备相当的开发经验——至少在同一个项目的开发上一年以上；公司负责架构演进、产品演进的角色会从本文找到灵感。 架构 架构这个词在各种场合不断地以各种面目表现出来。从维基百科的词条看来，我们经常听到的有插件架构（Plugin），以数据库为中心的架构（Database Centric），模型-视图-控制器架构（MVC），面向服务的架构（SOA），三层模型(Three-Tier model)，模型驱动架构（MDA）等等等等。奇妙的是，这些词越大，实际的开发者就越痛苦。SOA很好——但在它提出的那个年代，带给开发者的只是面向厂商虚无缥缈的“公共数据类型”；MDA甚至都没有机会沦为新一轮令人笑话的CASE工具。 在继续阅读之前，读者不妨问自己一个问题：在长期的项目中，这些大词是否真的切实给你带来过好处？更为功利的问题是：你，作为战斗在一线的开发者，在长期项目中可曾有过美好的体验？ 技术的演变与挥之不去的痛 企业应用的发展似乎从十年前开始腾飞。从Microsoft ASP/LAMP(Linux、Apache、MySQL、PHP)年代开始，各种企业应用纷纷向浏览器迁移。经过十年的发展，目前阵营已经百花齐放。与过去不同，现在的技术不仅仅在编程语言方面，常见的编程套路、最佳实践、方法学、社区，都是各种技术独特拥有的。目前占据主流的阵营有： Rails Java EE平台。值得一提的是Java VM已经成为一种新的宿主平台，Scala、JRuby更为活跃并引人瞩目 LAMP平台。Linux/MySQL/Apache并没有多少变化，PHP社区从Rails社区获得了不少养分，出现了许多更加优秀的开发框架 Microsoft .NET平台 Django 没有理由对这些新技术不感到振奋。它们解决了许多它们出现之前的问题。在它们的网站上都宣称各种生产效率如何之高的广告语，类似于15分钟创建一个博客应用；2分钟快速教程等等。比起过去21天才能学会XXX，现在它们在上手难度上早已大幅度降低。 需要泼冷水的是，本文开篇提出的问题，在上述任何一种技术下，都如幽灵般挥之不去。采用Ruby on Rails的某高效团队在10人团队工作半年之后，构建时间从当初的2分钟变成2小时；我们之前采用Microsoft .NET 3.5 (C# 3.0)的一个项目，在产生2万行代码的时候，构建时间已经超过半小时；我们的一些客户，工作在10年的Java代码库上——他们竭尽全力，保持技术栈与时俱进：Spring、Hibernate、Struts等，面对的困境是他们需要同时打开72个项目才能在Eclipse中获得编译；由于编译打包时间过长，他们去掉了大部分的单元测试——带来巨大的质量风险。 如果你真的在一个长期的项目工作过，你应该清楚地了解到，这种痛苦，似乎不是任何一种框架能够根本性解决的。这些新时代的框架解决了大部分显而易见的问题，然而在一个长期项目中所面对的问题，它们无能为力。 一步一步：架构是如何腐化的 无论架构师在任何时代以何种绚丽的方式描述架构，开发中的项目不会超出下图所示： 一些基本的准则 为了降低耦合，系统应当以恰当的方式进行分层。目前最经考验的分层是MVC+Service。 为了提供基础的访问，一些基本的、平台级别的API应该被引入。用Spring之类的框架来做这件事情。 用AOP进行横向切分业务层面共性的操作，例如日志、权限等。 为了保证项目正常构建，你还需要数据库、持续集成服务器，以及对应的与环境无关的构建脚本和数据库迁移脚本。 阶段1 满足这个条件的架构在初期是非常令人愉悦的。上一部分我们描述的框架都符合这种架构。这个阶段开发非常快：IDE打开很快，开发功能完成很快，团队这个时候往往规模较小，交流也没有问题。所有人都很高兴——因为用了新技术，因为这个架构是如此的简单、清晰、有效。 阶段2 好日子不算太长。 很快你的老板（或者客户，随便什么）有一揽子的想法要在这个团队实现。工作有条不紊的展开。更多的功能加入进来，更多的团队成员也加入了进来。新加入的功能也按照之前的架构方式开发着；新加入的团队成员也对清晰的架构表示欣喜，也一丝不苟的遵循着。用不了多久——也许是三个月，或者更短，你会发现代码库变成下面的样子： 你也许很快会意识到这其中有什么问题。但你很难意识到这到底意味着什么。常见的动作往往围绕着重构——将纵向相关的抽取出来，形成一个新的项目；横向相关的抽取出来，形成一个名叫common或者base的项目。 无论你做什么类型的重构，一些变化在悄悄产生（也许只是快慢的不同）。构建过程不可避免的变长。从刚开始的一两分钟变成好几分钟，到十几分钟。通过重构构建脚本，去掉那些不需要的部分，构建时间会降到几分钟，你满意了，于是继续。 阶段3 更多的功能、更多的成员加入了。构建时间又变长了。随着加载代码的增多，IDE也慢了下来；交流也多了起来——不是所有人能够了解所有代码了。在某些时候，一个很有道德的程序员尝试重构一部分重复逻辑，发现牵涉的代码太多了，好多都是他看不懂的业务，于是他放弃了。更多的人这么做了，代码库越来越臃肿，最终没有一个人能够搞清楚系统具体是怎么工作的了。 系统在混乱的状态下继续缓慢地混乱——这个过程远比本文写作的时间要长很多，之间会有反复，但据我观察，在不超过1年的时间内，无论采用何种技术框架，应用何种架构，这个过程似乎是不可抗拒的宿命。 常见的解决方案 我们并非是坐以待毙的。身边优秀的同事们在问题发现之前采取了各种解决方案。常见的解决方案如下： 升级工作环境 没有什么比一台与时俱进的电脑更能激励开发人员了。最多每隔三年，升级一次开发人员的电脑——升级到当时最好的配置，能够大幅度的提升生产效率，激励开发人员。反过来，利用过时的电脑，在慢速的机器上进行开发，带来的不仅仅是客观上开发效率的降低，更大程度上带来的是开发人员心理上的懈怠。 升级的工作环境不仅仅是电脑，还包括工作的空间。良好的，促进沟通的空间（以及工作方式）能够促进问题的发现从而减少问题的产生。隔断不适合开发。 分阶段的构建 一般而言，构建的顺序是：本地构建确保所有的功能运行正常，然后提交等待持续集成工作正常。本地构建超过5分钟的时候就变得难以忍受；大多数情况下你希望这个反馈时间越短越好。项目的初期往往会运行所有的步骤：编译所有代码，运行所有测试。随着项目周期的变长，代码的增多，时间会越来越长。在尝试若干次重构构建脚本再也没办法优化之后，“分阶段构建”成为绝大多数的选择。通过合理的拆分、分层，每次运行特定的步骤，例如只运行特定的测试、只构建必要的部分；然后提交，让持续集成服务器运行所有的步骤。这样开发者能够继续进行后续的工作。 分布式构建 <a href="http://www.jayxu.com/2011/10/26/10664/"> read more <span class="meta-nav">&#187;</span></a><table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2005%2F08%2F13%2F194%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F26%2F10664%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">唐伯虎Rap [zz]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F01%2F01%2F1323%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F26%2F10664%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">applewoods: 2008 年 Apple 回顾 [zz]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2008%2F06%2F15%2F389%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F26%2F10664%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">很美 [zz]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F01%2F17%2F10439%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F26%2F10664%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">UNIX传奇 [zz]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F12%2F22%2F10385%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F26%2F10664%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">计算机编程简史图 [zz]</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p>原文来自<a href="http://developer.51cto.com/art/201107/273790.htm" target="_blank">51CTO</a></p>
<h1>前言</h1>
<p>新技术层出不穷。过去十年时间里，我们经历了许多激动人心的新技术，包括那些新的框架、语言、平台、编程模型等等。这些新技术极大地改善了开发人员的工作环境，缩短了产品和项目的面世时间。然而作为在软件行业第一线工作多年的从业者，我们却不得不面对一个现实，那就是当初采用新技术的乐趣随着项目周期的增长而迅速减少。无论当初的选择多么光鲜，半年、一年之后，只要这个项目依然活跃，业务在扩张——越来越多的功能需要加入，一些公共的问题就会逐渐显露出来。构建过慢，完成新功能让你痛不欲生，团队成员无法很快融入，文档无法及时更新等等。</p>
<p>在长期运转的项目中，架构的腐化是怎么产生的？为什么常见的面向对象技术无法解决这类问题？如何延缓架构的腐化？</p>
<p>本文将尝试解释这一切，并提出相应的解决方案。读者需要具备相当的开发经验——至少在同一个项目的开发上一年以上；公司负责架构演进、产品演进的角色会从本文找到灵感。</p>
<h2>架构</h2>
<p>架构这个词在各种场合不断地以各种面目表现出来。从维基百科的词条看来，我们经常听到的有插件架构（Plugin），以数据库为中心的架构（Database Centric），模型-视图-控制器架构（MVC），面向服务的架构（SOA），三层模型(Three-Tier model)，模型驱动架构（MDA）等等等等。奇妙的是，这些词越大，实际的开发者就越痛苦。SOA很好——但在它提出的那个年代，带给开发者的只是面向厂商虚无缥缈的“公共数据类型”；MDA甚至都没有机会沦为新一轮令人笑话的CASE工具。</p>
<p>在继续阅读之前，读者不妨问自己一个问题：在长期的项目中，这些大词是否真的切实给你带来过好处？更为功利的问题是：你，作为战斗在一线的开发者，在长期项目中可曾有过美好的体验？</p>
<h2>技术的演变与挥之不去的痛</h2>
<p>企业应用的发展似乎从十年前开始腾飞。从Microsoft ASP/LAMP(Linux、Apache、MySQL、PHP)年代开始，各种企业应用纷纷向浏览器迁移。经过十年的发展，目前阵营已经百花齐放。与过去不同，现在的技术不仅仅在编程语言方面，常见的编程套路、最佳实践、方法学、社区，都是各种技术独特拥有的。目前占据主流的阵营有：</p>
<ul>
<li>Rails</li>
<li>Java EE平台。值得一提的是Java VM已经成为一种新的宿主平台，Scala、JRuby更为活跃并引人瞩目</li>
<li>LAMP平台。Linux/MySQL/Apache并没有多少变化，PHP社区从Rails社区获得了不少养分，出现了许多更加优秀的开发框架</li>
<li>Microsoft .NET平台</li>
<li>Django</li>
</ul>
<p>没有理由对这些新技术不感到振奋。它们解决了许多它们出现之前的问题。在它们的网站上都宣称各种生产效率如何之高的广告语，类似于15分钟创建一个博客应用；2分钟快速教程等等。比起过去21天才能学会XXX，现在它们在上手难度上早已大幅度降低。</p>
<p>需要泼冷水的是，本文开篇提出的问题，在上述任何一种技术下，都如幽灵般挥之不去。采用Ruby on Rails的某高效团队在10人团队工作半年之后，构建时间从当初的2分钟变成2小时；我们之前采用Microsoft .NET 3.5 (C# 3.0)的一个项目，在产生2万行代码的时候，构建时间已经超过半小时；我们的一些客户，工作在10年的Java代码库上——他们竭尽全力，保持技术栈与时俱进：Spring、Hibernate、Struts等，面对的困境是他们需要同时打开72个项目才能在Eclipse中获得编译；由于编译打包时间过长，他们去掉了大部分的单元测试——带来巨大的质量风险。</p>
<p>如果你真的在一个长期的项目工作过，你应该清楚地了解到，这种痛苦，似乎不是任何一种框架能够根本性解决的。这些新时代的框架解决了大部分显而易见的问题，然而在一个长期项目中所面对的问题，它们无能为力。</p>
<h1>一步一步：架构是如何腐化的</h1>
<p>无论架构师在任何时代以何种绚丽的方式描述架构，开发中的项目不会超出下图所示：</p>
<p><img src="http://images.51cto.com/files/uploadimg/20110706/1213090.png" alt="" width="480px"/></p>
<h2>一些基本的准则</h2>
<ul>
<li>为了降低耦合，系统应当以恰当的方式进行分层。目前最经考验的分层是MVC+Service。</li>
<li>为了提供基础的访问，一些基本的、平台级别的API应该被引入。用Spring之类的框架来做这件事情。</li>
<li>用AOP进行横向切分业务层面共性的操作，例如日志、权限等。</li>
<li>为了保证项目正常构建，你还需要数据库、持续集成服务器，以及对应的与环境无关的构建脚本和数据库迁移脚本。</li>
</ul>
<h2>阶段1</h2>
<p>满足这个条件的架构在初期是非常令人愉悦的。上一部分我们描述的框架都符合这种架构。这个阶段开发非常快：IDE打开很快，开发功能完成很快，团队这个时候往往规模较小，交流也没有问题。所有人都很高兴——因为用了新技术，因为这个架构是如此的简单、清晰、有效。</p>
<h2>阶段2</h2>
<p>好日子不算太长。</p>
<p>很快你的老板（或者客户，随便什么）有一揽子的想法要在这个团队实现。工作有条不紊的展开。更多的功能加入进来，更多的团队成员也加入了进来。新加入的功能也按照之前的架构方式开发着；新加入的团队成员也对清晰的架构表示欣喜，也一丝不苟的遵循着。用不了多久——也许是三个月，或者更短，你会发现代码库变成下面的样子：</p>
<p><img src="http://images.51cto.com/files/uploadimg/20110706/1213091.png" alt=""  width="480px"/><br />
你也许很快会意识到这其中有什么问题。但你很难意识到这到底意味着什么。常见的动作往往围绕着重构——将纵向相关的抽取出来，形成一个新的项目；横向相关的抽取出来，形成一个名叫common或者base的项目。</p>
<p>无论你做什么类型的重构，一些变化在悄悄产生（也许只是快慢的不同）。构建过程不可避免的变长。从刚开始的一两分钟变成好几分钟，到十几分钟。通过重构构建脚本，去掉那些不需要的部分，构建时间会降到几分钟，你满意了，于是继续。</p>
<h2>阶段3</h2>
<p>更多的功能、更多的成员加入了。构建时间又变长了。随着加载代码的增多，IDE也慢了下来；交流也多了起来——不是所有人能够了解所有代码了。在某些时候，一个很有道德的程序员尝试重构一部分重复逻辑，发现牵涉的代码太多了，好多都是他看不懂的业务，于是他放弃了。更多的人这么做了，代码库越来越臃肿，最终没有一个人能够搞清楚系统具体是怎么工作的了。</p>
<p>系统在混乱的状态下继续缓慢地混乱——这个过程远比本文写作的时间要长很多，之间会有反复，但据我观察，在不超过1年的时间内，无论采用何种技术框架，应用何种架构，这个过程似乎是不可抗拒的宿命。</p>
<h2>常见的解决方案</h2>
<p>我们并非是坐以待毙的。身边优秀的同事们在问题发现之前采取了各种解决方案。常见的解决方案如下：</p>
<h3>升级工作环境</h3>
<p>没有什么比一台与时俱进的电脑更能激励开发人员了。最多每隔三年，升级一次开发人员的电脑——升级到当时最好的配置，能够大幅度的提升生产效率，激励开发人员。反过来，利用过时的电脑，在慢速的机器上进行开发，带来的不仅仅是客观上开发效率的降低，更大程度上带来的是开发人员心理上的懈怠。</p>
<p>升级的工作环境不仅仅是电脑，还包括工作的空间。良好的，促进沟通的空间（以及工作方式）能够促进问题的发现从而减少问题的产生。隔断不适合开发。</p>
<h3>分阶段的构建</h3>
<p>一般而言，构建的顺序是：本地构建确保所有的功能运行正常，然后提交等待持续集成工作正常。本地构建超过5分钟的时候就变得难以忍受；大多数情况下你希望这个反馈时间越短越好。项目的初期往往会运行所有的步骤：编译所有代码，运行所有测试。随着项目周期的变长，代码的增多，时间会越来越长。在尝试若干次重构构建脚本再也没办法优化之后，“分阶段构建”成为绝大多数的选择。通过合理的拆分、分层，每次运行特定的步骤，例如只运行特定的测试、只构建必要的部分；然后提交，让持续集成服务器运行所有的步骤。这样开发者能够继续进行后续的工作。</p>
<h3>分布式构建</h3>
<p>即便本地快了起来，采用分阶段构建的团队很快发现，CI服务器的构建时间也越来越让人不满意。每次提交半小时之后才能得到构建结果太不可接受了。各种各样的分布式技术被创建出来。除了常见的CI服务器本身提供的能力，许多团队也发明了自己的分布式技术，他们往往能够将代码分布到多台机器进行编译和运行测试。这种解决方案能够在比较长的一段时间内生效——当构建变慢的时候，只需要调整分布策略，让构建过程运行在更多的集群机器上，就可以显著的减少构建时间。</p>
<h3>采用JRebel或者Spork</h3>
<p>一些新的工具能够显著地提速开发人员的工作。JRebel能够将需要编译的Java语言变成修改、保存立即生效，减少了大量的修改、保存、重新编译、部署的时间；Spork能够启动一个Server，将RSpec测试相关的代码缓存于其中，这样在运行RSpec测试的时候就不用重新进行加载，极大提升了效率。</p>
<h2>到底是什么问题？</h2>
<p>上述的解决方案在特定的时间域内很好地解决了一部分问题。然而，在项目运转一年，两年或者更久，它们最终依然无法避免构建时间变长、开发变慢、代码变得混乱、架构晦涩难懂、新人难以上手等问题。到底问题的症结是什么？</p>
<p>人们喜欢简洁。但这更多的看起来是一个谎言——没有多少团队能够自始至终保持简洁。人们喜欢简洁只是因为这个难以做到。并不是说人们不愿意如此。很多人都知道软件开发不比其他的劳动力密集型的行业——人越多，产量越大。《人月神话》中已经提到，项目增加更多的人，在提升工作产出的同时，也产生了混乱。短期内，这些混乱能够被团队通过各种形式消化；但从长期看来，随着团队人员的变动（新人加入，老人离开），以及人正常自然的遗忘曲线，代码库会逐渐失控，混乱无法被消化，而项目并不会停止，新功能不断的加入，架构就在一天天的过程中被腐蚀。</p>
<p>人的理解总有一个边界，而需求和功能不会——今天的功能总比昨天的多；这个版本的功能总比上个版本的多。而在长时间的开发中，忘记之前的代码是正常的；忘记某些约定也是正常的。形成某些小而不经意的错误是正常的，在巨大的代码库中，这些小错误被忽视也是正常的。这些不断积攒的小小的不一致、错误，随着时间的积累，最终变得难以控制。</p>
<p>很少有人注意到，规模的变大才是导致架构腐化的根源——因果关系在时空上的不连续，使得人们并不能从其中获得经验，只是一再重复这个悲剧的循环。</p>
<h1>解决方案</h1>
<p>解决方案的终极目标是：在混乱发生之前，在我们的认知出现障碍之前，就将项目的规模控制在一定范围之内。这并不容易。大多数团队都有相当的交付压力。大多数的业务用户并没有意识到，往一个项目/产品毫无节制地增加需求只会导致产品的崩溃。看看Lotus Notes，你就知道产品最终会多么令人费解、难以使用。我们这里主要讨论的是技术方案。业务上你也需要始终对需求的增长保持警惕。</p>
<h2>0. 采用新技术</h2>
<p>这可能是最廉价的、最容易采用的方案。新技术的产生往往为了解决某些特定的问题，它们往往是经验的集合。学习，理解这些新技术能够极大程度减少过去为了完成某些技术目标而进行的必要的经验积累过程。就像武侠小说中经常有离奇遭遇的主人公突然获得某个世外高人多年的内力一样，这些新技术能够迅速帮助团队从某些特定的痛点中解脱出来。</p>
<p>已经有足够多的例子来证明这一观点。在Spring出现之前，开发者的基本上只能遵循J2EE模式文档中的各种实践，来构建自己的系统。有一些简单的框架能够帮助这一过程，但总体来说，在处理今天看起来很基础的如数据库连接，异常管理，系统分层等等方面，还有很多手工的工作要做。Spring出现之后，你不需要花费很多精力，很快就能得到一个系统分层良好、大部分设施已经准备就绪的基础。这为减少代码库容量以及解决可能出现的低级Bug提供了帮助。</p>
<p>Rails则是另外一个极端的例子。Rails带来的不仅仅是开发的便利，还带来了人们在Linux世界多年的部署经验。数据库Migration， Apache + FastCGI或者nginx+passenger，这些过去看起来复杂异常的技术在Rails中变得无足轻重——稍懂命令行的人即可进行部署。</p>
<p>任何一个组织都无法全部拥有这些新技术。因此作为软件从业者，需要不断地保持对技术社区的关注。闭门造车只能加速架构的腐化——特别是这些自己的发明在开源社区早已有成熟的方案的时候。在那些貌似光鲜的产品背后，实际上有着无数的失败的案例成功的经验在支撑。</p>
<p>我们曾经有一个项目。在意识到需求可能转向类似于key-value的文档数据库之后，团队大胆的尝试采用SQLServer 2008的XML能力，在SQL Server内部实现了类似于No-SQL的数据库。这是一个新的发明，创造者初期很兴奋，终于有机会做不同的事情了。然而随着项目的进行，越来越多的需求出现了：Migration的支持、监控、管理工具的支持、文档、性能等等。随着项目的进展，最终发现这些能力与时下流行的MongoDB是如此的相似 ——MongoDB已经解决了大多数的问题。这个时候，代码库已经有相当的规模了——而这部分的代码，让许多团队成员费解；在一年之后，大约只有2个人能够了解其实现过程。如果在早期采用MongoDB，团队本有机会摒弃大部分相关的工作。</p>
<p>值得一提的是，高傲的开发者往往对新技术不够耐心；或者说对新技术的能力或局限缺乏足够耐心去了解。每一个产品都有其针对的问题域，对于问题域之外，新技术往往没有成熟到能够应对的地步。开发者需要不断地阅读、思考、参与，来验证自己的问题域是否与其匹配。浅尝辄止不是好的态度，也阻碍了新技术在团队内的推广。</p>
<p>新技术的选型往往发生在项目/产品特定的时期，如开始阶段，某个特定的痛点时期。日常阶段，开发者仍然需要保持对代码库的关注。下一条，重构到物理隔离的组件则是对不断增大的代码库另一种解决方案。</p>
<h2>1. 重构到物理隔离的组件</h2>
<p>显而易见的趋势是，对于同一个产品而言，需求总是不断增多的。去年有100个功能，今年就有200个。去年有10万行代码，今年也许就有20万行。去年2G 内存的机器能够正常开发，今年似乎得加倍才行。去年有15个开发人员，今年就到30个了。去年构建一次最多15–20分钟，今年就得1个小时了，还得整个分布式的。</p>
<p>有人会注意到代码的设计问题，孜孜不倦地进行着重构；有人会注意到构建变慢的问题，不懈地改进着构建时间。然而很少有人注意到代码库的变大才是问题的根源。很多常规的策略往往是针对组织的：例如将代码库按照功能模块划分（例如ABC功能之类）或者按层次划分（例如持久层、表现层），但这些拆分之后的项目依然存在于开发人员的工作空间中。无论项目如何组织，开发者都需要打开所有的项目才能完成编译和运行过程。我曾经见到一个团队需要在Visual Studio中打开120个项目；我自己也经历过需要在Eclipse中打开72个项目才能完成编译。</p>
<p>解决方案是物理隔离这些组件。就像团队在使用Spring/Hibernate/Asp.NET MVC/ActiveRecord这些库的时候，不用将它们对应的源代码放到工作空间进行编译一样，团队也可以将稳定工作的代码单元整理出来形成对应的库，标记版本然后直接引用二进制文件。</p>
<p>在不同的技术平台上有着不同的方案。Java世界有历史悠久的Maven库，能够良好的将不同版本的 JAR以及他们的以来进行管理；.NET比较遗憾，这方面真正成熟的什么也没有——但参考Maven的实现，团队自己造一个也不是难事（可能比较困难的是与MSBuild的集成）；Ruby/Rails世界则有著名的gem/bundler系统。将自己整理出来的比较独立的模块不要放到rails/lib /中，整理出来，形成一个新的gem，对其进行依赖引用（团队内需要搭建自己的gems库）。</p>
<p>同时，代码库也需要进行大刀阔斧的整改。之前的代码结构可能如下，（这里以SVN为例，因为SVN有明确的trunk/branches/tags目录结构。git/hg类似）</p>
<h3>原来的库结构</h3>
<p><img src="http://images.51cto.com/files/uploadimg/20110706/1213092.png" alt=""  width="480px"/></p>
<p>改进之后，将会如下图所示：</p>
<h3>改进的库结构</h3>
<p><img src="http://images.51cto.com/files/uploadimg/20110706/1213093.png" alt=""  width="480px"/><br />
每个模块都有属于自己的代码库，拥有自己的独立的升级和发布周期，甚至有自己的文档。</p>
<p>这一方案看起来很容易理解，但在实际操作过程中则困难重重。团队运转很长一段时间之后，很少有人去关心模块之间的依赖。一旦要拆分出来，去分析几十上百个现存项目之间的依赖相当费劲。最简单的处理办法是，检查代码库的提交记录，例如最近3个月之内某个模块就没有人提交过，那么这个模块基本上就可以拿出来形成二进制依赖了。</p>
<p>很多开源产品都是通过这个过程形成的，例如Spring（请参考阅读《J2EE设计开发编程指南》，Rod Johnson基本上阐述了整个Spring的设计思路来源）。一旦团队开始这样去思考，每隔一段时间重新审视代码库，你会发现核心代码库不可能失控，同时也获得了一组设计良好、工作稳定的组件。</p>
<h2>2. 将独立的模块放入独立的进程</h2>
<p>上面的解决方案核心原则只有一条：始终将核心代码库控制在团队可以理解的范围内。如果运转良好，能够很大程度上解决架构因为代码规模变大而腐化的问题。然而该解决方案只解决了在系统在静态层面的隔离。当隔离出的模块越来越多，系统也因此也需要越来越多的依赖来运行。这部分依赖在运行期分为两类：一类是类似于 Spring/Hibernate/Apache Commons之类的，系统运行的基础，运行期这些必须存在；另外一类是相对独立的业务功能，例如缓存的读取，电子商城的支付模块等。</p>
<p>第二类依赖则可以更进一步：将其放到独立的进程中。现在稍具规模的系统，登录、注销功能已经从应用中脱离而出，要么采用SSO的方案来进行登陆，要么则干脆代理给别的登陆系统。LiveJournal团队在开发过程中，发现缓存的读写实际上可以放到独立的进程中进行（而不是类似EhCache的方案，直接运行于所在的运行环境中），于是发明了现在鼎鼎有名的memcached. 我们之前进行的一个项目中，发现支付模块完全能够独立出来，于是将其进行隔离，形成了一个新的、没有界面的、永远在运行的系统，通过REST处理支付请求。在另外一个出版项目中，我们发现编辑编写报告的过程实际上与报告发行过程虽然存在类级别的重用，但在业务层面是独立的。最终我们将报告发行过程做成了一个常驻服务，系统其他的模块通过MQ消息与其进行交互。</p>
<p>这一解决方案应该不难理解。与解决方案1不同的是，这一方案更多的是要对系统进行面向业务层面的思考。由于系统将会以独立的进程来运行这一模块，在不同的进程中可能存在一定的代码重复。例如Spring同时存在两个不相关的项目中大家觉得没什么大不了的；但如果是自己的某个业务组件同时在同一个项目的两个进程中重复，许多人就有些洁癖不可接受了。（题外话：这种洁癖在OSGi环境中也存在）这里需要提醒的是：当处于不同的进程时，它们在物理上、运行时上已经彻底隔离了。必须以进程的观点去思考整个架构，而不是简单的物理结构。</p>
<p>从单进程模型到多进程模型的架构思维转变也不太容易——需要架构师有意识的加强这方面的练习。流行的.NET和Java世界倾向于把什么都放到一起。而 Linux世界Rails/Django则能更好的平衡优秀产品之间的进程协调。例如memcached的使用。另外，现在多核环境越来越多，与其费尽心思在编程语言层面上不如享受多核的好处，多进程能够简单并且显著地利用多核能力。</p>
<h2>3. 形成高度松散耦合的平台+应用</h2>
<p>现在将眼光看更远一些。想象一下我们在做一个类似于开心网、Facebook、人人网的系统。它们的共同特点是能够接入几乎无限的第三方应用，无论是买卖朋友这类简单的应用，还是绚丽无比的各种社交游戏。神奇的是，实现这一点并不需要第三方应用的开发者采用跟它们一样的技术平台，也不需要服务端提供无限的运算能力——大部分的架构由开发方来控制。</p>
<p>在企业应用中实现这个并不难。这其中的秘诀在于：当用户通过Facebook访问某个第三方应用的时候，Facebook实际上通过后台去访问了第三方应用，将当前用户的信息（以及好友信息）通过HTTP POST送到第三方应用指定的服务网址，然后将应用的HTML结果渲染到当前页面中。某种意义上说，这种技术本质上是一种服务器端的mashup. （详情参考InfoQ 文章）</p>
<p><img src="http://images.51cto.com/files/uploadimg/20110706/1213094.jpg" alt=""  width="480px"/></p>
<p>这种架构的优点在于极度的分布式。从外观上看起来一致的系统，实际由若干个耦合极低、技术架构完全不同的小应用组成。它们不需要被部署在同一台机器上，可以单独地开发、升级、优化。一个应用的瘫痪不影响整个系统的运行；每个应用的自行升级对整个系统也完全没有影响。</p>
<p>这并非是终极的解决方案，只在某些特定的条件下有效。当系统规模上非常庞大，例如由若干个子系统组成；界面基本一致；子系统之间关联较少。针对这个前提，可以考虑采用这种架构。抽象出极少的、真正有效公用的信息，在系统之间通过HTTP POST.。其他的系统完全可以独立开发、部署，甚至针对应用访问的情况进行特定的部署优化。如果不这么做，动辄上百万千万行的代码堆在一个系统中，随着时间的推移，开发者逐渐对代码失控，架构的腐化是迟早的事情。</p>
<p>例如，银行的财务系统，包括了十多个个子系统，包括薪资、资产、报表等等模块，每一部分功能都相对独立并且复杂。整个系统如果按照这种方式拆分，就能够实现单点优化而无需重新启动整个应用。针对每个应用，开发者能够在更小的代码内采用自己熟悉的技术方案，从而减少架构腐化的可能。</p>
<h1>结语</h1>
<h2>没有糟糕的架构，变化使之</h2>
<p>我访问过很多团队。在很多项目开始的时候，他们花很多时间在选择用何种技术体系，何种架构，乃至何种IDE。就像小孩子选择自己钟爱的玩具，我相信无论过程如何，团队最终都会欣然选择他们所选择的，并且坚信他们的选择没有错误。事实也确实如此。在项目的开始阶段很难有真正的架构挑战。困难的地方在于，随着时间的增长，人们会忘记；有很多的人加入，他们需要理解旧代码的同时完成新功能；每一次代码量的突破，都会引起架构的不适应；这些不适应包括：新功能引入变得困难，新人难以迅速上手；构建时间变长等等。这些能否引起团队的警觉，并且采取结构性的解决方案而不是临时性的。</p>
<h2>关于文档</h2>
<p>很多人说敏捷不提倡文档。他们说文档很难写。他们说开发人员写不了文档。于是就没有文档。</p>
<p>奇怪的是我看到的情况却不是这样。程序写得优秀的人，写起文字来也很不错。ThoughtBlogs上绝大多数都是程序员，很多人的文字写得都很赞。</p>
<p>而项目中的文档往往少得可怜。新人来了总是一头雾水。令人奇怪的是，新人能够一天或者两天之内通过阅读RSpec或者JBehave迅速了解这些工具的使用，到了团队里面却没有了文档。</p>
<p>抛开项目持续运转并交付的特性不谈，我认为巨大的、不稳定的代码库是文档迅速失效的根源。如果我们能够按照上述的解决方案，将代码库缩小，那么独立出来的模块或者应用就有机会在更小的范围内具备更独特的价值。想象一下现在的Rails3/Spring框架，他们往往有超过20个第三方依赖，我们却没有觉得理解困难，最重要的原因是依赖隔离之后，这些模块有了独立的文档可以学习。</p>
<p>企业级项目也可以如此。</p>
<h2>创建应用程序的生态环境，而非单一的项目</h2>
<p>功能总是不断的、不断的加到同一个产品中。这毫不奇怪。然而通过我们前面的分析，我们应当重新思考这个常识。是创建一个日益庞大的、缓慢的、毫无生机的产品，还是将其有机分解，成为一个生机勃勃的具有不同依赖的生态系统？项目的各方人员（包括业务用户、架构师、开发者）应当从短视的眼光中走出来，着眼于创建可持续的应用程序生态系统。</p>
<p>&nbsp;
<div style="margin-top: 15px; font-style: italic">
<p><strong>原创内容，转载请注明：</strong> 转载自<a href="http://www.jayxu.com/">拈花微笑</a></p>
<p><strong>本文链接地址:</strong> <a href="http://www.jayxu.com/2011/10/26/10664/">架构腐化之谜 [zz]</a></p>
</div>
<p><a href="http://www.bshare.cn/share?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F26%2F10664%2F&title=%E6%9E%B6%E6%9E%84%E8%85%90%E5%8C%96%E4%B9%8B%E8%B0%9C+%5Bzz%5D" title="用bShare分享或收藏本文"><img src="http://static.bshare.cn/frame/images/button_custom1-zh.gif" alt="用bShare分享或收藏本文" /></a></p><table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2005%2F08%2F13%2F194%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F26%2F10664%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">唐伯虎Rap [zz]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F01%2F01%2F1323%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F26%2F10664%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">applewoods: 2008 年 Apple 回顾 [zz]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2008%2F06%2F15%2F389%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F26%2F10664%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">很美 [zz]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F01%2F17%2F10439%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F26%2F10664%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">UNIX传奇 [zz]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F12%2F22%2F10385%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F26%2F10664%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">计算机编程简史图 [zz]</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.jayxu.com/2011/10/26/10664/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>一周tweets更新 [2011-10-24]</title>
		<link>http://www.jayxu.com/2011/10/24/12937/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=%25e4%25b8%2580%25e5%2591%25a8tweets%25e6%259b%25b4%25e6%2596%25b0-2011-10-24</link>
		<comments>http://www.jayxu.com/2011/10/24/12937/#comments</comments>
		<pubDate>Sun, 23 Oct 2011 17:30:00 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[tweets]]></category>

		<guid isPermaLink="false">http://www.jayxu.com/2011/10/24/12937/</guid>
		<description><![CDATA[一周tweets更新 [2011-10-17] http://t.co/7q7OlcVf #tweets # 原创内容，转载请注明： 转载自拈花微笑 本文链接地址: 一周tweets更新 [2011-10-24]<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F10%2F05%2F2440%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F24%2F12937%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2010-10-05]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F06%2F15%2F2361%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F24%2F12937%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2010-06-15]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F06%2F06%2F1524%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F24%2F12937%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2009-06-06]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F03%2F11760%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F24%2F12937%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2011-10-03]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F19%2F11709%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F24%2F12937%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2011-09-19]</font>
                    </a>
                </td>
            </tr>
        <br/>
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">来自无觅网络的相关文章：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.mianfeidi.com%2F2011%2Ftweetattacks2-cracked.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F24%2F12937%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">TweetAttacks2：Twitter营销利器 (@mianfeidi)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.caodanshi.com%2F2011%2F824.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F24%2F12937%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">#操蛋事#824-周杰轮 (@caodanshi)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.caodanshi.com%2F2011%2F13223.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F24%2F12937%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">还我一P (@caodanshi)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.ycy8.net%2F2011_11156.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F24%2F12937%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">周笔畅单曲- 我的神奇 (@ycy8)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.ycy8.net%2F2011_6790.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F24%2F12937%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">周杰伦Live CD- 超时代 演唱会 (@ycy8)</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li>一周tweets更新 [2011-10-17] <a href="http://t.co/7q7OlcVf" rel="nofollow">http://t.co/7q7OlcVf</a> #<a href="http://search.twitter.com/search?q=%23tweets" class="aktt_hashtag">tweets</a> <a href="http://twitter.com/jayxu/statuses/125956681036337153" class="aktt_tweet_time">#</a></li>
</ul>
<div style="margin-top: 15px; font-style: italic">
<p><strong>原创内容，转载请注明：</strong> 转载自<a href="http://www.jayxu.com/">拈花微笑</a></p>
<p><strong>本文链接地址:</strong> <a href="http://www.jayxu.com/2011/10/24/12937/">一周tweets更新 [2011-10-24]</a></p>
</div>
<p><a href="http://www.bshare.cn/share?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F24%2F12937%2F&title=%E4%B8%80%E5%91%A8tweets%E6%9B%B4%E6%96%B0+%5B2011-10-24%5D" title="用bShare分享或收藏本文"><img src="http://static.bshare.cn/frame/images/button_custom1-zh.gif" alt="用bShare分享或收藏本文" /></a></p><table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F10%2F05%2F2440%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F24%2F12937%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2010-10-05]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F06%2F15%2F2361%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F24%2F12937%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2010-06-15]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F06%2F06%2F1524%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F24%2F12937%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2009-06-06]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F03%2F11760%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F24%2F12937%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2011-10-03]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F19%2F11709%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F24%2F12937%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2011-09-19]</font>
                    </a>
                </td>
            </tr>
        <br/>
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">来自无觅网络的相关文章：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.mianfeidi.com%2F2011%2Ftweetattacks2-cracked.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F24%2F12937%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">TweetAttacks2：Twitter营销利器 (@mianfeidi)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.caodanshi.com%2F2011%2F824.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F24%2F12937%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">#操蛋事#824-周杰轮 (@caodanshi)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.caodanshi.com%2F2011%2F13223.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F24%2F12937%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">还我一P (@caodanshi)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.ycy8.net%2F2011_11156.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F24%2F12937%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">周笔畅单曲- 我的神奇 (@ycy8)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.ycy8.net%2F2011_6790.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F24%2F12937%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">周杰伦Live CD- 超时代 演唱会 (@ycy8)</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.jayxu.com/2011/10/24/12937/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>一周tweets更新 [2011-10-17]</title>
		<link>http://www.jayxu.com/2011/10/17/11779/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=%25e4%25b8%2580%25e5%2591%25a8tweets%25e6%259b%25b4%25e6%2596%25b0-2011-10-17</link>
		<comments>http://www.jayxu.com/2011/10/17/11779/#comments</comments>
		<pubDate>Sun, 16 Oct 2011 17:30:00 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[tweets]]></category>

		<guid isPermaLink="false">http://www.jayxu.com/2011/10/17/11779/</guid>
		<description><![CDATA[我正在看：11名作家对言论审查的绝妙评论 http://t.co/g0tQkPOF # 一周tweets更新 [2011-10-10] http://t.co/aLXKmDnA #tweets # 原创内容，转载请注明： 转载自拈花微笑 本文链接地址: 一周tweets更新 [2011-10-17]<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2008%2F11%2F15%2F851%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F17%2F11779%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2008-11-15]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F04%2F04%2F2117%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F17%2F11779%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2010-04-04]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F06%2F29%2F2369%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F17%2F11779%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2010-06-29]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F12%2F11707%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F17%2F11779%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2011-09-12]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F10%2F19%2F2488%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F17%2F11779%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2010-10-19]</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li>我正在看：11名作家对言论审查的绝妙评论 <a href="http://t.co/g0tQkPOF" rel="nofollow">http://t.co/g0tQkPOF</a> <a href="http://twitter.com/jayxu/statuses/123233903724085248" class="aktt_tweet_time">#</a></li>
<li>一周tweets更新 [2011-10-10] <a href="http://t.co/aLXKmDnA" rel="nofollow">http://t.co/aLXKmDnA</a> #<a href="http://search.twitter.com/search?q=%23tweets" class="aktt_hashtag">tweets</a> <a href="http://twitter.com/jayxu/statuses/123254064174743552" class="aktt_tweet_time">#</a></li>
</ul>
<div style="margin-top: 15px; font-style: italic">
<p><strong>原创内容，转载请注明：</strong> 转载自<a href="http://www.jayxu.com/">拈花微笑</a></p>
<p><strong>本文链接地址:</strong> <a href="http://www.jayxu.com/2011/10/17/11779/">一周tweets更新 [2011-10-17]</a></p>
</div>
<p><a href="http://www.bshare.cn/share?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F17%2F11779%2F&title=%E4%B8%80%E5%91%A8tweets%E6%9B%B4%E6%96%B0+%5B2011-10-17%5D" title="用bShare分享或收藏本文"><img src="http://static.bshare.cn/frame/images/button_custom1-zh.gif" alt="用bShare分享或收藏本文" /></a></p><table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2008%2F11%2F15%2F851%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F17%2F11779%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2008-11-15]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F04%2F04%2F2117%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F17%2F11779%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2010-04-04]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F06%2F29%2F2369%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F17%2F11779%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2010-06-29]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F12%2F11707%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F17%2F11779%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2011-09-12]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F10%2F19%2F2488%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F17%2F11779%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2010-10-19]</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.jayxu.com/2011/10/17/11779/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>一周tweets更新 [2011-10-10]</title>
		<link>http://www.jayxu.com/2011/10/10/11774/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=%25e4%25b8%2580%25e5%2591%25a8tweets%25e6%259b%25b4%25e6%2596%25b0-2011-10-10</link>
		<comments>http://www.jayxu.com/2011/10/10/11774/#comments</comments>
		<pubDate>Sun, 09 Oct 2011 17:30:00 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[tweets]]></category>

		<guid isPermaLink="false">http://www.jayxu.com/2011/10/10/11774/</guid>
		<description><![CDATA[一周tweets更新 [2011-10-03] http://t.co/WpcqswuO #tweets # 一周tweets更新 [2011-10-03] http://t.co/Xsc0vKpb #tweets # 辛亥革个命，google服务基本全挂，去你大爷的！ # 走好，Steve http://t.co/DzL9OZ54 #互联网生活 #apple #jobs # 原创内容，转载请注明： 转载自拈花微笑 本文链接地址: 一周tweets更新 [2011-10-10]<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F11%2F30%2F10311%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F10%2F11774%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2010-11-30]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F09%2F21%2F2423%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F10%2F11774%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2010-09-21]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F04%2F18%2F2134%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F10%2F11774%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2010-04-18]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F11%2F09%2F1800%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F10%2F11774%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2009-11-09]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F07%2F20%2F2381%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F10%2F11774%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2010-07-20]</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li>一周tweets更新 [2011-10-03] <a href="http://t.co/WpcqswuO" rel="nofollow">http://t.co/WpcqswuO</a> #<a href="http://search.twitter.com/search?q=%23tweets" class="aktt_hashtag">tweets</a> <a href="http://twitter.com/jayxu/statuses/120675416116690944" class="aktt_tweet_time">#</a></li>
<li>一周tweets更新 [2011-10-03] <a href="http://t.co/Xsc0vKpb" rel="nofollow">http://t.co/Xsc0vKpb</a> #<a href="http://search.twitter.com/search?q=%23tweets" class="aktt_hashtag">tweets</a> <a href="http://twitter.com/jayxu/statuses/120675430884839424" class="aktt_tweet_time">#</a></li>
<li>辛亥革个命，google服务基本全挂，去你大爷的！ <a href="http://twitter.com/jayxu/statuses/122862949693005824" class="aktt_tweet_time">#</a></li>
<li>走好，Steve <a href="http://t.co/DzL9OZ54" rel="nofollow">http://t.co/DzL9OZ54</a> #互联网生活 #<a href="http://search.twitter.com/search?q=%23apple" class="aktt_hashtag">apple</a> #jobs <a href="http://twitter.com/jayxu/statuses/122956466918408192" class="aktt_tweet_time">#</a></li>
</ul>
<div style="margin-top: 15px; font-style: italic">
<p><strong>原创内容，转载请注明：</strong> 转载自<a href="http://www.jayxu.com/">拈花微笑</a></p>
<p><strong>本文链接地址:</strong> <a href="http://www.jayxu.com/2011/10/10/11774/">一周tweets更新 [2011-10-10]</a></p>
</div>
<p><a href="http://www.bshare.cn/share?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F10%2F11774%2F&title=%E4%B8%80%E5%91%A8tweets%E6%9B%B4%E6%96%B0+%5B2011-10-10%5D" title="用bShare分享或收藏本文"><img src="http://static.bshare.cn/frame/images/button_custom1-zh.gif" alt="用bShare分享或收藏本文" /></a></p><table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F11%2F30%2F10311%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F10%2F11774%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2010-11-30]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F09%2F21%2F2423%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F10%2F11774%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2010-09-21]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F04%2F18%2F2134%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F10%2F11774%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2010-04-18]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F11%2F09%2F1800%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F10%2F11774%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2009-11-09]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F07%2F20%2F2381%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F10%2F11774%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2010-07-20]</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.jayxu.com/2011/10/10/11774/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>走好，Steve</title>
		<link>http://www.jayxu.com/2011/10/09/11765/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=%25e8%25b5%25b0%25e5%25a5%25bd%25ef%25bc%258csteve</link>
		<comments>http://www.jayxu.com/2011/10/09/11765/#comments</comments>
		<pubDate>Sat, 08 Oct 2011 19:12:19 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[互联网生活]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[jobs]]></category>

		<guid isPermaLink="false">http://www.jayxu.com/?p=11765</guid>
		<description><![CDATA[2011年10月5日，上帝终于如愿地把你召回身边了。感谢你，让我知道，不管是工业设计还是界面设计，都可以做得这么美，程序员也不再是｢呆板｣的代名词 一路走好，有了你，天堂会更加美好~ 原创内容，转载请注明： 转载自拈花微笑 本文链接地址: 走好，Steve<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F26%2F11684%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F09%2F11765%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">乔布斯的10个经营理念成就了今天的苹果 [zz]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F12%2F30%2F10405%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F09%2F11765%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">apple.com.cn悄悄上了语音搜索？</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F04%2F12962%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F09%2F11765%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">梦娜·辛普森悼兄长史蒂夫·乔布斯 [zz]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F01%2F01%2F1323%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F09%2F11765%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">applewoods: 2008 年 Apple 回顾 [zz]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F11%2F25%2F1892%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F09%2F11765%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Mac OS X的内存管理策略</font>
                    </a>
                </td>
            </tr>
        <br/>
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">来自无觅网络的相关文章：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.ycy8.net%2F2011_4729.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F09%2F11765%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Steve Carty时尚摄影 (@ycy8)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fxjeek.com%2F2011%2F10%2F2293.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F09%2F11765%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">24k金镶钻的Apple MacBook Pro (@xjeek)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.wolfherder.com%2Farchives%2F857&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F09%2F11765%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">苹果回购股票：有钱没处花的苦恼 (@wolfherder)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.wolfherder.com%2Farchives%2F731&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F09%2F11765%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Jobs教会了我们什么？ (@wolfherder)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fbfya.com%2Ffinding-job&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F09%2F11765%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">找工作 (@bfya)</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p>2011年10月5日，上帝终于如愿地把你召回身边了。感谢你，让我知道，不管是工业设计还是界面设计，都可以做得这么美，程序员也不再是｢呆板｣的代名词</p>
<p>一路走好，有了你，天堂会更加美好~</p>
<p><a href="http://www.jayxu.com/log/wp-content/uploads/2011/10/Apple.png"><img src="http://www.jayxu.com/log/wp-content/uploads/2011/10/Apple.png" alt="" width="480" /></a></p>
<p><a href="http://www.jayxu.com/log/wp-content/uploads/2011/10/Apple-Remembering-Steve-Jobs.png"><img src="http://www.jayxu.com/log/wp-content/uploads/2011/10/Apple-Remembering-Steve-Jobs.png" alt="" width="480" /></a></p>
<p><a href="http://www.jayxu.com/log/wp-content/uploads/2011/10/Apple-缅怀-Steve-Jobs.png"><img src="http://www.jayxu.com/log/wp-content/uploads/2011/10/Apple-缅怀-Steve-Jobs.png" alt="" width="480" height="241" /></a>
<div style="margin-top: 15px; font-style: italic">
<p><strong>原创内容，转载请注明：</strong> 转载自<a href="http://www.jayxu.com/">拈花微笑</a></p>
<p><strong>本文链接地址:</strong> <a href="http://www.jayxu.com/2011/10/09/11765/">走好，Steve</a></p>
</div>
<p><a href="http://www.bshare.cn/share?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F09%2F11765%2F&title=%E8%B5%B0%E5%A5%BD%EF%BC%8CSteve" title="用bShare分享或收藏本文"><img src="http://static.bshare.cn/frame/images/button_custom1-zh.gif" alt="用bShare分享或收藏本文" /></a></p><table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F26%2F11684%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F09%2F11765%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">乔布斯的10个经营理念成就了今天的苹果 [zz]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F12%2F30%2F10405%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F09%2F11765%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">apple.com.cn悄悄上了语音搜索？</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F04%2F12962%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F09%2F11765%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">梦娜·辛普森悼兄长史蒂夫·乔布斯 [zz]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F01%2F01%2F1323%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F09%2F11765%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">applewoods: 2008 年 Apple 回顾 [zz]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F11%2F25%2F1892%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F09%2F11765%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Mac OS X的内存管理策略</font>
                    </a>
                </td>
            </tr>
        <br/>
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">来自无觅网络的相关文章：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.ycy8.net%2F2011_4729.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F09%2F11765%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Steve Carty时尚摄影 (@ycy8)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fxjeek.com%2F2011%2F10%2F2293.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F09%2F11765%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">24k金镶钻的Apple MacBook Pro (@xjeek)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.wolfherder.com%2Farchives%2F857&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F09%2F11765%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">苹果回购股票：有钱没处花的苦恼 (@wolfherder)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.wolfherder.com%2Farchives%2F731&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F09%2F11765%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Jobs教会了我们什么？ (@wolfherder)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fbfya.com%2Ffinding-job&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F09%2F11765%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">找工作 (@bfya)</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.jayxu.com/2011/10/09/11765/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>一周tweets更新 [2011-10-03]</title>
		<link>http://www.jayxu.com/2011/10/03/11759/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=%25e4%25b8%2580%25e5%2591%25a8tweets%25e6%259b%25b4%25e6%2596%25b0-2011-10-03</link>
		<comments>http://www.jayxu.com/2011/10/03/11759/#comments</comments>
		<pubDate>Sun, 02 Oct 2011 17:30:00 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[tweets]]></category>

		<guid isPermaLink="false">http://www.jayxu.com/2011/10/03/11759/</guid>
		<description><![CDATA[如果有一天，在当公务员前会想想以后自己的言行将受到公众的监督和挑战；花的每一分税款都需要明明白白地说明来源和去处；亲人的财产、行踪将受到严格的监管；子女的升迁将受到负面影响……而顾虑甚至打消这个念头，权力才真正地被关在笼子里了。愿我瞑目前能在中国看见这一天 # 一直 http://t.co/aSF7PHrQ # 哥也带O了～ # 招人：J2EE*2，测试*2，初创金融团队，内部金融系统研发，北京。有理想，经折腾，易相处，能扛事的密我。应届、青手请绕道。薪酬面谈 # X and XX Usgaes for #Java http://t.co/ofT4QTF8 #技术生活 #jvm #tuning # 一周tweets更新 [2011-09-26] http://t.co/EkBvcywY #tweets # 一周年了～ # 原创内容，转载请注明： 转载自拈花微笑 本文链接地址: 一周tweets更新 [2011-10-03]<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F07%2F20%2F2381%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F03%2F11759%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2010-07-20]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F03%2F07%2F1446%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F03%2F11759%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2009-03-07]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F11%2F30%2F10311%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F03%2F11759%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2010-11-30]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F06%2F15%2F2361%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F03%2F11759%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2010-06-15]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F09%2F21%2F2423%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F03%2F11759%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2010-09-21]</font>
                    </a>
                </td>
            </tr>
        <br/>
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">来自无觅网络的相关文章：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.mianfeidi.com%2F2011%2Ftweetattacks2-cracked.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F03%2F11759%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">TweetAttacks2：Twitter营销利器 (@mianfeidi)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.caodanshi.com%2F2011%2F824.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F03%2F11759%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">#操蛋事#824-周杰轮 (@caodanshi)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.ycy8.net%2F2011_6790.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F03%2F11759%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">周杰伦Live CD- 超时代 演唱会 (@ycy8)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.ycy8.net%2F2011_11156.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F03%2F11759%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">周笔畅单曲- 我的神奇 (@ycy8)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.dedeadmin.com%2F%3Fp%3D1180&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F03%2F11759%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">【Plugins系列】织梦DedeCms一键转载助手插件 一键转载文章 (@dedeadmin)</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li>如果有一天，在当公务员前会想想以后自己的言行将受到公众的监督和挑战；花的每一分税款都需要明明白白地说明来源和去处；亲人的财产、行踪将受到严格的监管；子女的升迁将受到负面影响……而顾虑甚至打消这个念头，权力才真正地被关在笼子里了。愿我瞑目前能在中国看见这一天 <a href="http://twitter.com/jayxu/statuses/118188073203941376" class="aktt_tweet_time">#</a></li>
<li>一直 <a href="http://t.co/aSF7PHrQ" rel="nofollow">http://t.co/aSF7PHrQ</a> <a href="http://twitter.com/jayxu/statuses/118246482091573248" class="aktt_tweet_time">#</a></li>
<li>哥也带O了～ <a href="http://twitter.com/jayxu/statuses/118396879062056961" class="aktt_tweet_time">#</a></li>
<li>招人：J2EE*2，测试*2，初创金融团队，内部金融系统研发，北京。有理想，经折腾，易相处，能扛事的密我。应届、青手请绕道。薪酬面谈 <a href="http://twitter.com/jayxu/statuses/118582768249733120" class="aktt_tweet_time">#</a></li>
<li>X and XX Usgaes for #<a href="http://search.twitter.com/search?q=%23Java" class="aktt_hashtag">Java</a> <a href="http://t.co/ofT4QTF8" rel="nofollow">http://t.co/ofT4QTF8</a> #技术生活 #<a href="http://search.twitter.com/search?q=%23jvm" class="aktt_hashtag">jvm</a> #tuning <a href="http://twitter.com/jayxu/statuses/118636563558182912" class="aktt_tweet_time">#</a></li>
<li>一周tweets更新 [2011-09-26] <a href="http://t.co/EkBvcywY" rel="nofollow">http://t.co/EkBvcywY</a> #<a href="http://search.twitter.com/search?q=%23tweets" class="aktt_hashtag">tweets</a> <a href="http://twitter.com/jayxu/statuses/118636582076026880" class="aktt_tweet_time">#</a></li>
<li>一周年了～ <a href="http://twitter.com/jayxu/statuses/120168598437244928" class="aktt_tweet_time">#</a></li>
</ul>
<div style="margin-top: 15px; font-style: italic">
<p><strong>原创内容，转载请注明：</strong> 转载自<a href="http://www.jayxu.com/">拈花微笑</a></p>
<p><strong>本文链接地址:</strong> <a href="http://www.jayxu.com/2011/10/03/11759/">一周tweets更新 [2011-10-03]</a></p>
</div>
<p><a href="http://www.bshare.cn/share?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F03%2F11759%2F&title=%E4%B8%80%E5%91%A8tweets%E6%9B%B4%E6%96%B0+%5B2011-10-03%5D" title="用bShare分享或收藏本文"><img src="http://static.bshare.cn/frame/images/button_custom1-zh.gif" alt="用bShare分享或收藏本文" /></a></p><table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F07%2F20%2F2381%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F03%2F11759%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2010-07-20]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F03%2F07%2F1446%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F03%2F11759%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2009-03-07]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F11%2F30%2F10311%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F03%2F11759%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2010-11-30]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F06%2F15%2F2361%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F03%2F11759%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2010-06-15]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F09%2F21%2F2423%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F03%2F11759%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2010-09-21]</font>
                    </a>
                </td>
            </tr>
        <br/>
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">来自无觅网络的相关文章：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.mianfeidi.com%2F2011%2Ftweetattacks2-cracked.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F03%2F11759%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">TweetAttacks2：Twitter营销利器 (@mianfeidi)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.caodanshi.com%2F2011%2F824.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F03%2F11759%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">#操蛋事#824-周杰轮 (@caodanshi)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.ycy8.net%2F2011_6790.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F03%2F11759%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">周杰伦Live CD- 超时代 演唱会 (@ycy8)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.ycy8.net%2F2011_11156.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F03%2F11759%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">周笔畅单曲- 我的神奇 (@ycy8)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.dedeadmin.com%2F%3Fp%3D1180&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F03%2F11759%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">【Plugins系列】织梦DedeCms一键转载助手插件 一键转载文章 (@dedeadmin)</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.jayxu.com/2011/10/03/11759/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>X and XX Usgaes for Java</title>
		<link>http://www.jayxu.com/2011/09/26/11723/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=x-and-xx-usgaes-for-java</link>
		<comments>http://www.jayxu.com/2011/09/26/11723/#comments</comments>
		<pubDate>Mon, 26 Sep 2011 03:33:18 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[技术生活]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[jvm]]></category>
		<category><![CDATA[tuning]]></category>

		<guid isPermaLink="false">http://www.jayxu.com/?p=11723</guid>
		<description><![CDATA[-X -Xmixed mixed mode execution (default) -Xint interpreted mode execution only -Xbootclasspath:&#60;directories and zip/jar files separated by ;&#62; set search path for bootstrap classes and resources -Xbootclasspath/a:&#60;directories and zip/jar files separated by ;&#62; append to end of bootstrap class path -Xbootclasspath/p:&#60;directories and zip/jar files separated by ;&#62; prepend in front of bootstrap class path -Xnoclassgc <a href="http://www.jayxu.com/2011/09/26/11723/"> read more <span class="meta-nav">&#187;</span></a><table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F02%2F13128%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F26%2F11723%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">祝贺：发布《Java虚拟机规范 （Java SE 7 中文版）》</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2012%2F02%2F02%2F13237%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F26%2F11723%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">有关Java泛型的类型擦除（type erasing）</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F11%2F11%2F1809%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F26%2F11723%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">10 things all JAVA developers should know [zz]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F12%2F15%2F1947%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F26%2F11723%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">java.net论坛被黑（有图有真相）</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F20%2F11718%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F26%2F11723%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Differences Among Greedy, Reluctant, and Possessive Quantifiers (for RexExp in Java)</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<h1>-X</h1>
<table>
<tbody>
<tr>
<td>-Xmixed</td>
<td>mixed mode execution (default)</td>
</tr>
<tr>
<td>-Xint</td>
<td>interpreted mode execution only</td>
</tr>
<tr>
<td>-Xbootclasspath:&lt;directories and zip/jar files separated by ;&gt;</td>
<td>set search path for bootstrap classes and resources</td>
</tr>
<tr>
<td>-Xbootclasspath/a:&lt;directories and zip/jar files separated by ;&gt;</td>
<td>append to end of bootstrap class path</td>
</tr>
<tr>
<td>-Xbootclasspath/p:&lt;directories and zip/jar files separated by ;&gt;</td>
<td>prepend in front of bootstrap class path</td>
</tr>
<tr>
<td>-Xnoclassgc</td>
<td>disable class garbage collection</td>
</tr>
<tr>
<td>-Xincgc</td>
<td>enable incremental garbage collection</td>
</tr>
<tr>
<td>-Xloggc:&lt;file&gt;</td>
<td>log GC status to a file with time stamps</td>
</tr>
<tr>
<td>-Xbatch</td>
<td>disable background compilation</td>
</tr>
<tr>
<td>-Xms&lt;size&gt;</td>
<td>set initial Java heap size</td>
</tr>
<tr>
<td>-Xmx&lt;size&gt;</td>
<td>set maximum Java heap size</td>
</tr>
<tr>
<td>-Xss&lt;size&gt;</td>
<td>set java thread stack size</td>
</tr>
<tr>
<td>-Xprof</td>
<td>output cpu profiling data</td>
</tr>
<tr>
<td>-Xfuture</td>
<td>enable strictest checks, anticipating future default</td>
</tr>
<tr>
<td>-Xrs</td>
<td>reduce use of OS signals by Java/VM (see documentation)</td>
</tr>
<tr>
<td>-Xcheck:jni</td>
<td>perform additional checks for JNI functions</td>
</tr>
<tr>
<td>-Xshare:off</td>
<td>do not attempt to use shared class data</td>
</tr>
<tr>
<td>-Xshare:auto</td>
<td>use shared class data if possible (default)</td>
</tr>
<tr>
<td>-Xshare:on</td>
<td>require using shared class data, otherwise fail.</td>
</tr>
</tbody>
</table>
<h1>-XX</h1>
<table>
<tbody>
<tr>
<td>-XX:-AllowUserSignalHandlers</td>
<td>Do not complain if the application installs signal handlers. (Relevant to Solaris and Linux only.)</td>
</tr>
<tr>
<td>-XX:AltStackSize=16384</td>
<td>Alternate signal stack size (in Kbytes). (Relevant to Solaris only, removed from 5.0.)</td>
</tr>
<tr>
<td>-XX:-DisableExplicitGC</td>
<td>Disable calls to System.gc(), JVM still performs garbage collection when necessary.</td>
</tr>
<tr>
<td>-XX:+FailOverToOldVerifier</td>
<td>Fail over to old verifier when the new type checker fails. (Introduced in 6.)</td>
</tr>
<tr>
<td>-XX:+HandlePromotionFailure</td>
<td>The youngest generation collection does not require a guarantee of full promotion of all live objects. (Introduced in 1.4.2 update 11) [5.0 and earlier: false.]</td>
</tr>
<tr>
<td>-XX:+MaxFDLimit</td>
<td>Bump the number of file descriptors to max. (Relevant to Solaris only.)</td>
</tr>
<tr>
<td>-XX:PreBlockSpin=10</td>
<td>Spin count variable for use with -XX:+UseSpinning. Controls the maximum spin iterations allowed before entering operating system thread synchronization code. (Introduced in 1.4.2.)</td>
</tr>
<tr>
<td>-XX:-RelaxAccessControlCheck</td>
<td>Relax the access control checks in the verifier. (Introduced in 6.)</td>
</tr>
<tr>
<td>-XX:+ScavengeBeforeFullGC</td>
<td>Do young generation GC prior to a full GC. (Introduced in 1.4.1.)</td>
</tr>
<tr>
<td>-XX:+UseAltSigs</td>
<td>Use alternate signals instead of SIGUSR1 and SIGUSR2 for VM internal signals. (Introduced in 1.3.1 update 9, 1.4.1. Relevant to Solaris only.)</td>
</tr>
<tr>
<td>-XX:+UseBoundThreads</td>
<td>Bind user level threads to kernel threads. (Relevant to Solaris only.)</td>
</tr>
<tr>
<td>-XX:-UseConcMarkSweepGC</td>
<td>Use concurrent mark-sweep collection for the old generation. (Introduced in 1.4.1)</td>
</tr>
<tr>
<td>-XX:+UseGCOverheadLimit</td>
<td>Use a policy that limits the proportion of the VM&#8217;s time that is spent in GC before an OutOfMemory error is thrown. (Introduced in 6.)</td>
</tr>
<tr>
<td>-XX:+UseLWPSynchronization</td>
<td>Use LWP-based instead of thread based synchronization. (Introduced in 1.4.0. Relevant to Solaris only.)</td>
</tr>
<tr>
<td>-XX:-UseParallelGC</td>
<td>Use parallel garbage collection for scavenges. (Introduced in 1.4.1)</td>
</tr>
<tr>
<td>-XX:-UseParallelOldGC</td>
<td>Use parallel garbage collection for the full collections. Enabling this option automatically sets -XX:+UseParallelGC. (Introduced in 5.0 update 6.)</td>
</tr>
<tr>
<td>-XX:-UseSerialGC</td>
<td>Use serial garbage collection. (Introduced in 5.0.)</td>
</tr>
<tr>
<td>-XX:-UseSpinning</td>
<td>Enable naive spinning on Java monitor before entering operating system thread synchronizaton code. (Relevant to 1.4.2 and 5.0 only.) [1.4.2, multi-processor Windows platforms: true]</td>
</tr>
<tr>
<td>-XX:+UseTLAB</td>
<td>Use thread-local object allocation (Introduced in 1.4.0, known as UseTLE prior to that.) [1.4.2 and earlier, x86 or with -client: false]</td>
</tr>
<tr>
<td>-XX:+UseSplitVerifier</td>
<td>Use the new type checker with StackMapTable attributes. (Introduced in 5.0.)[5.0: false]</td>
</tr>
<tr>
<td>-XX:+UseThreadPriorities</td>
<td>Use native thread priorities.</td>
</tr>
<tr>
<td>-XX:+UseVMInterruptibleIO</td>
<td>Thread interrupt before or with EINTR for I/O operations results in OS_INTRPT. (Introduced in 6. Relevant to Solaris only.)</td>
</tr>
</tbody>
</table>
<table>
<tbody>
<tr>
<td>-XX:+AggressiveOpts</td>
<td>Turn on point performance compiler optimizations that are expected to be default in upcoming releases. (Introduced in 5.0 update 6.)</td>
</tr>
<tr>
<td>-XX:CompileThreshold=10000</td>
<td>Number of method invocations/branches before compiling [-client: 1,500]</td>
</tr>
<tr>
<td>-XX:LargePageSizeInBytes=4m</td>
<td>Sets the large page size used for the Java heap. (Introduced in 1.4.0 update 1.) [amd64: 2m.]</td>
</tr>
<tr>
<td>-XX:MaxHeapFreeRatio=70</td>
<td>Maximum percentage of heap free after GC to avoid shrinking.</td>
</tr>
<tr>
<td>-XX:MaxNewSize=size</td>
<td>Maximum size of new generation (in bytes). Since 1.4, MaxNewSize is computed as a function of NewRatio. [1.3.1 Sparc: 32m; 1.3.1 x86: 2.5m.]</td>
</tr>
<tr>
<td>-XX:MaxPermSize=64m</td>
<td>Size of the Permanent Generation. [5.0 and newer: 64 bit VMs are scaled 30% larger; 1.4 amd64: 96m; 1.3.1 -client: 32m.]</td>
</tr>
<tr>
<td>-XX:MinHeapFreeRatio=40</td>
<td>Minimum percentage of heap free after GC to avoid expansion.</td>
</tr>
<tr>
<td>-XX:NewRatio=2</td>
<td>Ratio of new/old generation sizes. [Sparc -client: 8; x86 -server: 8; x86 -client: 12.]-client: 4 (1.3) 8 (1.3.1+), x86: 12]</td>
</tr>
<tr>
<td>-XX:NewSize=2.125m</td>
<td>Default size of new generation (in bytes) [5.0 and newer: 64 bit VMs are scaled 30% larger; x86: 1m; x86, 5.0 and older: 640k]</td>
</tr>
<tr>
<td>-XX:ReservedCodeCacheSize=32m</td>
<td>Reserved code cache size (in bytes) &#8211; maximum code cache size. [Solaris 64-bit, amd64, and -server x86: 48m; in 1.5.0_06 and earlier, Solaris 64-bit and and64: 1024m.]</td>
</tr>
<tr>
<td>-XX:SurvivorRatio=8</td>
<td>Ratio of eden/survivor space size [Solaris amd64: 6; Sparc in 1.3.1: 25; other Solaris platforms in 5.0 and earlier: 32]</td>
</tr>
<tr>
<td>-XX:TargetSurvivorRatio=50</td>
<td>Desired percentage of survivor space used after scavenge.</td>
</tr>
<tr>
<td>-XX:ThreadStackSize=512</td>
<td>Thread Stack Size (in Kbytes). (0 means use default stack size) [Sparc: 512; Solaris x86: 320 (was 256 prior in 5.0 and earlier); Sparc 64 bit: 1024; Linux amd64: 1024 (was 0 in 5.0 and earlier); all others 0.]</td>
</tr>
<tr>
<td>-XX:+UseBiasedLocking</td>
<td>Enable biased locking. For more details, see this tuning example. (Introduced in 5.0 update 6.) [5.0: false]</td>
</tr>
<tr>
<td>-XX:+UseFastAccessorMethods</td>
<td>Use optimized versions of Get&lt;Primitive&gt;Field.</td>
</tr>
<tr>
<td>-XX:-UseISM</td>
<td>Use Intimate Shared Memory. [Not accepted for non-Solaris platforms.] For details, see Intimate Shared Memory.</td>
</tr>
<tr>
<td>-XX:+UseLargePages</td>
<td>Use large page memory. (Introduced in 5.0 update 5.) For details, see Java Support for Large Memory Pages.</td>
</tr>
<tr>
<td>-XX:+UseMPSS</td>
<td>Use Multiple Page Size Support w/4mb pages for the heap. Do not use with ISM as this replaces the need for ISM. (Introduced in 1.4.0 update 1, Relevant to Solaris 9 and newer.) [1.4.1 and earlier: false]</td>
</tr>
<tr>
<td>-XX:+UseStringCache</td>
<td>Enables caching of commonly allocated strings.</td>
</tr>
<tr>
<td>-XX:AllocatePrefetchLines=1</td>
<td>Number of cache lines to load after the last object allocation using prefetch instructions generated in JIT compiled code. Default values are 1 if the last allocated object was an instance and 3 if it was an array.</td>
</tr>
<tr>
<td>-XX:AllocatePrefetchStyle=1</td>
<td>Generated code style for prefetch instructions. 0 &#8211; no prefetch instructions are generate*d*, 1 &#8211; execute prefetch instructions after each allocation, 2 &#8211; use TLAB allocation watermark pointer to gate when prefetch instructions are executed.</td>
</tr>
<tr>
<td>-XX:+UseCompressedStrings</td>
<td>Use a byte[] for Strings which can be represented as pure ASCII. (Introduced in Java 6 Update 21 Performance Release)</td>
</tr>
<tr>
<td>-XX:+OptimizeStringConcat</td>
<td>Optimize String concatenation operations where possible. (Introduced in Java 6 Update 20)</td>
</tr>
</tbody>
</table>
<table>
<tbody>
<tr>
<td>-XX:-CITime</td>
<td>Prints time spent in JIT Compiler. (Introduced in 1.4.0.)</td>
</tr>
<tr>
<td>-XX:ErrorFile=./hs_err_pid&lt;pid&gt;.log</td>
<td>If an error occurs, save the error data to this file. (Introduced in 6.)</td>
</tr>
<tr>
<td>-XX:-ExtendedDTraceProbes</td>
<td>Enable performance-impacting dtrace probes. (Introduced in 6. Relevant to Solaris only.)</td>
</tr>
<tr>
<td>-XX:HeapDumpPath=./java_pid&lt;pid&gt;.hprof</td>
<td>Path to directory or filename for heap dump. Manageable. (Introduced in 1.4.2 update 12, 5.0 update 7.)</td>
</tr>
<tr>
<td>-XX:-HeapDumpOnOutOfMemoryError</td>
<td>Dump heap to file when java.lang.OutOfMemoryError is thrown. Manageable. (Introduced in 1.4.2 update 12, 5.0 update 7.)</td>
</tr>
<tr>
<td>-XX:OnError=”&lt;cmd args&gt;;&lt;cmd args&gt;”</td>
<td>Run user-defined commands on fatal error. (Introduced in 1.4.2 update 9.)</td>
</tr>
<tr>
<td>-XX:OnOutOfMemoryError=”&lt;cmd args&gt;; &lt;cmd args&gt;”</td>
<td>Run user-defined commands when an OutOfMemoryError is first thrown. (Introduced in 1.4.2 update 12, 6)</td>
</tr>
<tr>
<td>-XX:-PrintClassHistogram</td>
<td>Print a histogram of class instances on Ctrl-Break. Manageable. (Introduced in 1.4.2.) The jmap -histo command provides equivalent functionality.</td>
</tr>
<tr>
<td>-XX:-PrintConcurrentLocks</td>
<td>Print java.util.concurrent locks in Ctrl-Break thread dump. Manageable. (Introduced in 6.) The jstack -l command provides equivalent functionality.</td>
</tr>
<tr>
<td>-XX:-PrintCommandLineFlags</td>
<td>Print flags that appeared on the command line. (Introduced in 5.0.)</td>
</tr>
<tr>
<td>-XX:-PrintCompilation</td>
<td>Print message when a method is compiled.</td>
</tr>
<tr>
<td>-XX:-PrintGC</td>
<td>Print messages at garbage collection. Manageable.</td>
</tr>
<tr>
<td>-XX:-PrintGCDetails</td>
<td>Print more details at garbage collection. Manageable. (Introduced in 1.4.0.)</td>
</tr>
<tr>
<td>-XX:-PrintGCTimeStamps</td>
<td>Print timestamps at garbage collection. Manageable (Introduced in 1.4.0.)</td>
</tr>
<tr>
<td>-XX:-PrintTenuringDistribution</td>
<td>Print tenuring age information.</td>
</tr>
<tr>
<td>-XX:-TraceClassLoading</td>
<td>Trace loading of classes.</td>
</tr>
<tr>
<td>-XX:-TraceClassLoadingPreorder</td>
<td>Trace all classes loaded in order referenced (not loaded). (Introduced in 1.4.2.)</td>
</tr>
<tr>
<td>-XX:-TraceClassResolution</td>
<td>Trace constant pool resolutions. (Introduced in 1.4.2.)</td>
</tr>
<tr>
<td>-XX:-TraceClassUnloading</td>
<td>Trace unloading of classes.</td>
</tr>
<tr>
<td>-XX:-TraceLoaderConstraints</td>
<td>Trace recording of loader constraints. (Introduced in 6.)</td>
</tr>
<tr>
<td>-XX:+PerfSaveDataToFile</td>
<td>Saves jvmstat binary data on exit.</td>
</tr>
<tr>
<td>-XX:ParallelGCThreads=</td>
<td>Sets the number of garbage collection threads in the young and old parallel garbage collectors. The default value varies with the platform on which the JVM is running.</td>
</tr>
<tr>
<td>-XX:+UseCompressedOops</td>
<td>Enables the use of compressed pointers (object references represented as 32 bit offsets instead of 64-bit pointers) for optimized 64-bit performance with Java heap sizes less than 32gb.</td>
</tr>
<tr>
<td>-XX:+AlwaysPreTouch</td>
<td>Pre-touch the Java heap during JVM initialization. Every page of the heap is thus demand-zeroed during initialization rather than incrementally during application execution.</td>
</tr>
<tr>
<td>-XX:AllocatePrefetchDistance=</td>
<td>Sets the prefetch distance for object allocation. Memory about to be written with the value of new objects is prefetched into cache at this distance (in bytes) beyond the address of the last allocated object. Each Java thread has its own allocation point. The default value varies with the platform on which the JVM is running.</td>
</tr>
<tr>
<td>-XX:InlineSmallCode=</td>
<td>Inline a previously compiled method only if its generated native code size is less than this. The default value varies with the platform on which the JVM is running.</td>
</tr>
<tr>
<td>-XX:MaxInlineSize=35</td>
<td>Maximum bytecode size of a method to be inlined.</td>
</tr>
<tr>
<td>-XX:FreqInlineSize=</td>
<td>Maximum bytecode size of a frequently executed method to be inlined. The default value varies with the platform on which the JVM is running.</td>
</tr>
<tr>
<td>-XX:LoopUnrollLimit=</td>
<td>Unroll loop bodies with server compiler intermediate representation node count less than this value. The limit used by the server compiler is a function of this value, not the actual value. The default value varies with the platform on which the JVM is running.</td>
</tr>
<tr>
<td>-XX:InitialTenuringThreshold=7</td>
<td>Sets the initial tenuring threshold for use in adaptive GC sizing in the parallel young collector. The tenuring threshold is the number of times an object survives a young collection before being promoted to the old, or tenured, generation.</td>
</tr>
<tr>
<td>-XX:MaxTenuringThreshold=</td>
<td>Sets the maximum tenuring threshold for use in adaptive GC sizing. The current largest value is 15. The default value is 15 for the parallel collector and is 4 for CMS.</td>
</tr>
</tbody>
</table>
<div style="margin-top: 15px; font-style: italic">
<p><strong>原创内容，转载请注明：</strong> 转载自<a href="http://www.jayxu.com/">拈花微笑</a></p>
<p><strong>本文链接地址:</strong> <a href="http://www.jayxu.com/2011/09/26/11723/">X and XX Usgaes for Java</a></p>
</div>
<p><a href="http://www.bshare.cn/share?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F26%2F11723%2F&title=X+and+XX+Usgaes+for+Java" title="用bShare分享或收藏本文"><img src="http://static.bshare.cn/frame/images/button_custom1-zh.gif" alt="用bShare分享或收藏本文" /></a></p><table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F12%2F02%2F13128%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F26%2F11723%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">祝贺：发布《Java虚拟机规范 （Java SE 7 中文版）》</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2012%2F02%2F02%2F13237%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F26%2F11723%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">有关Java泛型的类型擦除（type erasing）</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F11%2F11%2F1809%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F26%2F11723%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">10 things all JAVA developers should know [zz]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F12%2F15%2F1947%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F26%2F11723%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">java.net论坛被黑（有图有真相）</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F20%2F11718%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F26%2F11723%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Differences Among Greedy, Reluctant, and Possessive Quantifiers (for RexExp in Java)</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.jayxu.com/2011/09/26/11723/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>一周tweets更新 [2011-09-26]</title>
		<link>http://www.jayxu.com/2011/09/26/11755/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=%25e4%25b8%2580%25e5%2591%25a8tweets%25e6%259b%25b4%25e6%2596%25b0-2011-09-26</link>
		<comments>http://www.jayxu.com/2011/09/26/11755/#comments</comments>
		<pubDate>Sun, 25 Sep 2011 17:30:00 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[tweets]]></category>

		<guid isPermaLink="false">http://www.jayxu.com/2011/09/26/11755/</guid>
		<description><![CDATA[一周tweets更新 [2011-09-19] http://t.co/wDJpNZHj #tweets # 一周tweets更新 [2011-09-19] http://t.co/IHTnbq6z #tweets # 一周tweets更新 [2011-09-19] http://t.co/FWvRX1Zu #tweets # 一周tweets更新 [2011-09-19] http://t.co/kVIgvn1b #tweets # 国内找厕所应用“噢粑粑”本周发布正式版，增加微博同步求厕纸功能 http://t.co/M8JOPVVi // orz # Skype杀手：微博Call http://t.co/QvqlEwRT # 微软称采用ARM处理器的Windows 8平板电脑无法运行x86程序 http://t.co/CPPiNlCc // 心凉了么？ # Carbyn &#124; Your Apps. Everywhere. http://t.co/tWFcZHJa // 1st HTML5 online OS # 这两天Follow 5一直抽风啊，服务器不够用了么 # Communix 互动百科 http://t.co/P2KF0KRq // 深度贴，迅速围观 # <a href="http://www.jayxu.com/2011/09/26/11755/"> read more <span class="meta-nav">&#187;</span></a><table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F19%2F11711%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F26%2F11755%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2011-09-19]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F11%2F09%2F1800%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F26%2F11755%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2009-11-09]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F09%2F28%2F2439%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F26%2F11755%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2010-09-28]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F12%2F11706%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F26%2F11755%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2011-09-12]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F03%2F11760%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F26%2F11755%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2011-10-03]</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li>一周tweets更新 [2011-09-19] <a href="http://t.co/wDJpNZHj" rel="nofollow">http://t.co/wDJpNZHj</a> #<a href="http://search.twitter.com/search?q=%23tweets" class="aktt_hashtag">tweets</a> <a href="http://twitter.com/jayxu/statuses/115646663376379904" class="aktt_tweet_time">#</a></li>
<li>一周tweets更新 [2011-09-19] <a href="http://t.co/IHTnbq6z" rel="nofollow">http://t.co/IHTnbq6z</a> #<a href="http://search.twitter.com/search?q=%23tweets" class="aktt_hashtag">tweets</a> <a href="http://twitter.com/jayxu/statuses/115646661342134272" class="aktt_tweet_time">#</a></li>
<li>一周tweets更新 [2011-09-19] <a href="http://t.co/FWvRX1Zu" rel="nofollow">http://t.co/FWvRX1Zu</a> #<a href="http://search.twitter.com/search?q=%23tweets" class="aktt_hashtag">tweets</a> <a href="http://twitter.com/jayxu/statuses/115646666853449728" class="aktt_tweet_time">#</a></li>
<li>一周tweets更新 [2011-09-19] <a href="http://t.co/kVIgvn1b" rel="nofollow">http://t.co/kVIgvn1b</a> #<a href="http://search.twitter.com/search?q=%23tweets" class="aktt_hashtag">tweets</a> <a href="http://twitter.com/jayxu/statuses/115646664924069888" class="aktt_tweet_time">#</a></li>
<li>国内找厕所应用“噢粑粑”本周发布正式版，增加微博同步求厕纸功能 <a href="http://t.co/M8JOPVVi" rel="nofollow">http://t.co/M8JOPVVi</a> // orz <a href="http://twitter.com/jayxu/statuses/115734553615798272" class="aktt_tweet_time">#</a></li>
<li>Skype杀手：微博Call <a href="http://t.co/QvqlEwRT" rel="nofollow">http://t.co/QvqlEwRT</a> <a href="http://twitter.com/jayxu/statuses/115735233155964929" class="aktt_tweet_time">#</a></li>
<li>微软称采用ARM处理器的Windows 8平板电脑无法运行x86程序 <a href="http://t.co/CPPiNlCc" rel="nofollow">http://t.co/CPPiNlCc</a> // 心凉了么？ <a href="http://twitter.com/jayxu/statuses/115979595068608512" class="aktt_tweet_time">#</a></li>
<li>Carbyn | Your Apps. Everywhere. <a href="http://t.co/tWFcZHJa" rel="nofollow">http://t.co/tWFcZHJa</a> // 1st HTML5 online OS <a href="http://twitter.com/jayxu/statuses/115982927753510912" class="aktt_tweet_time">#</a></li>
<li>这两天Follow 5一直抽风啊，服务器不够用了么 <a href="http://twitter.com/jayxu/statuses/115983300434214912" class="aktt_tweet_time">#</a></li>
<li>Communix 互动百科 <a href="http://t.co/P2KF0KRq" rel="nofollow">http://t.co/P2KF0KRq</a> // 深度贴，迅速围观 <a href="http://twitter.com/jayxu/statuses/116020918433742848" class="aktt_tweet_time">#</a></li>
<li>Google Wallet 上手体验 <a href="http://t.co/8hSVturi" rel="nofollow">http://t.co/8hSVturi</a> <a href="http://twitter.com/jayxu/statuses/116126780238213121" class="aktt_tweet_time">#</a></li>
<li>Mac App Store 中的 Thunder <a href="http://t.co/iOoqenuu" rel="nofollow">http://t.co/iOoqenuu</a> // 终于来了~ <a href="http://twitter.com/jayxu/statuses/116145134025973760" class="aktt_tweet_time">#</a></li>
<li>reset你妈，有种你连gmail一块儿reset了！ <a href="http://twitter.com/jayxu/statuses/116424706374111232" class="aktt_tweet_time">#</a></li>
<li>游戏玩家破解蛋白质谜题，艾滋病、癌症研究有望获重大突破 <a href="http://t.co/414JeR1o" rel="nofollow">http://t.co/414JeR1o</a> <a href="http://twitter.com/jayxu/statuses/116699695413342209" class="aktt_tweet_time">#</a></li>
<li>HTML5 Rocks &#8211; How Browsers Work: Behind the Scenes of Modern Web Browsers <a href="http://t.co/bsLPQ9LS" rel="nofollow">http://t.co/bsLPQ9LS</a> <a href="http://twitter.com/jayxu/statuses/116706106562183168" class="aktt_tweet_time">#</a></li>
<li>Differences Among Greedy, Reluctant, and Possessive Quantifiers (for RexExp in #<a href="http://search.twitter.com/search?q=%23Java" class="aktt_hashtag">Java</a>  <a href="http://t.co/uByDYR2T" rel="nofollow">http://t.co/uByDYR2T</a> #技术生活 <a href="http://twitter.com/jayxu/statuses/116732624583671808" class="aktt_tweet_time">#</a></li>
<li>新浪微博给我印象最深刻的10件事 <a href="http://t.co/k9eoIujv" rel="nofollow">http://t.co/k9eoIujv</a> <a href="http://twitter.com/jayxu/statuses/117160576542707712" class="aktt_tweet_time">#</a></li>
<li>同事：你哪儿人？ 我：你看呢？ 同事：北京？ 我：往南。 同事：大兴？ 我：… <a href="http://twitter.com/jayxu/statuses/117170919163699200" class="aktt_tweet_time">#</a></li>
<li>我操什么情况，一晚上多了三千八百粉…谁买僵尸粉fo错人了么？ <a href="http://twitter.com/jayxu/statuses/118113545673121792" class="aktt_tweet_time">#</a></li>
</ul>
<div style="margin-top: 15px; font-style: italic">
<p><strong>原创内容，转载请注明：</strong> 转载自<a href="http://www.jayxu.com/">拈花微笑</a></p>
<p><strong>本文链接地址:</strong> <a href="http://www.jayxu.com/2011/09/26/11755/">一周tweets更新 [2011-09-26]</a></p>
</div>
<p><a href="http://www.bshare.cn/share?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F26%2F11755%2F&title=%E4%B8%80%E5%91%A8tweets%E6%9B%B4%E6%96%B0+%5B2011-09-26%5D" title="用bShare分享或收藏本文"><img src="http://static.bshare.cn/frame/images/button_custom1-zh.gif" alt="用bShare分享或收藏本文" /></a></p><table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F19%2F11711%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F26%2F11755%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2011-09-19]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F11%2F09%2F1800%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F26%2F11755%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2009-11-09]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F09%2F28%2F2439%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F26%2F11755%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2010-09-28]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F12%2F11706%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F26%2F11755%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2011-09-12]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F03%2F11760%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F26%2F11755%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2011-10-03]</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.jayxu.com/2011/09/26/11755/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Differences Among Greedy, Reluctant, and Possessive Quantifiers (for RexExp in Java)</title>
		<link>http://www.jayxu.com/2011/09/20/11718/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=differences-among-greedy-reluctant-and-possessive-quantifiers-for-rexexp-in-java</link>
		<comments>http://www.jayxu.com/2011/09/20/11718/#comments</comments>
		<pubDate>Tue, 20 Sep 2011 02:53:26 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[技术生活]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[regexp]]></category>

		<guid isPermaLink="false">http://www.jayxu.com/?p=11718</guid>
		<description><![CDATA[There are subtle differences among greedy, reluctant, and possessive quantifiers. Greedy quantifiers are considered “greedy” because they force the matcher to read in, or eat, the entire input string prior to attempting the first match. If the first match attempt (the entire input string) fails, the matcher backs off the input string by one character <a href="http://www.jayxu.com/2011/09/20/11718/"> read more <span class="meta-nav">&#187;</span></a><table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F11%2F11%2F1809%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F20%2F11718%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">10 things all JAVA developers should know [zz]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2012%2F02%2F02%2F13237%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F20%2F11718%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">有关Java泛型的类型擦除（type erasing）</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F08%2F11%2F2396%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F20%2F11718%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Java程序员必看电影：Java 4-ever</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2005%2F11%2F07%2F171%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F20%2F11718%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Java 销魂落魄散  [zz]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F12%2F15%2F1947%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F20%2F11718%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">java.net论坛被黑（有图有真相）</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p>There are subtle differences among greedy, reluctant, and possessive quantifiers.</p>
<p>Greedy quantifiers are considered “greedy” because they force the matcher to read in, or eat, the entire input string prior to attempting the first match. If the first match attempt (the entire input string) fails, the matcher backs off the input string by one character and tries again, repeating the process until a match is found or there are no more characters left to back off from. Depending on the quantifier used in the expression, the last thing it will try matching against is 1 or 0 characters.</p>
<p>The reluctant quantifiers, however, take the opposite approach: They start at the beginning of the input string, then reluctantly eat one character at a time looking for a match. The last thing they try is the entire input </p>
<p>Finally, the possessive quantifiers always eat the entire input string, trying once (and only once) for a match. Unlike the greedy quantifiers, possessive quantifiers never back off, even if doing so would allow the overall match to succeed.</p>
<p>To illustrate, consider the input string xfooxxxxxxfoo.</p>
<p>Enter your regex: .*foo // greedy quantifier<br />
Enter input string to search: xfooxxxxxxfoo<br />
I found the text “xfooxxxxxxfoo” starting at index 0 and ending at index 13.</p>
<p>Enter your regex: .*?foo // reluctant quantifier<br />
Enter input string to search: xfooxxxxxxfoo<br />
I found the text “xfoo” starting at index 0 and ending at index 4.<br />
I found the text “xxxxxxfoo” starting at index 4 and ending at index 13.</p>
<p>Enter your regex: .*+foo // possessive quantifier<br />
Enter input string to search: xfooxxxxxxfoo<br />
No match found.</p>
<p>The first example uses the greedy quantifier .* to find “anything”, zero or more times, followed by the letters “f” “o” “o”. Because the quantifier is greedy, the .* portion of the expression first eats the entire input string. At this point, the overall expression cannot succeed, because the last three letters (“f” “o” “o”) have already been consumed. So the matcher slowly backs off one letter at a time until the rightmost occurrence of “foo” has been regurgitated, at which point the match succeeds and the search ends.</p>
<p>The second example, however, is reluctant, so it starts by first consuming “nothing”. Because “foo” doesn&#8217;t appear at the beginning of the string, it&#8217;s forced to swallow the first letter (an “x”), which triggers the first match at 0 and 4. Our test harness continues the process until the input string is exhausted. It finds another match at 4 and 13.</p>
<p>The third example fails to find a match because the quantifier is possessive. In this case, the entire input string is consumed by .*+, leaving nothing left over to satisfy the “foo” at the end of the expression. Use a possessive quantifier for situations where you want to seize all of something without ever backing off; it will outperform the equivalent greedy quantifier in cases where the match is not immediately found
<div style="margin-top: 15px; font-style: italic">
<p><strong>原创内容，转载请注明：</strong> 转载自<a href="http://www.jayxu.com/">拈花微笑</a></p>
<p><strong>本文链接地址:</strong> <a href="http://www.jayxu.com/2011/09/20/11718/">Differences Among Greedy, Reluctant, and Possessive Quantifiers (for RexExp in Java)</a></p>
</div>
<p><a href="http://www.bshare.cn/share?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F20%2F11718%2F&title=Differences+Among+Greedy%2C+Reluctant%2C+and+Possessive+Quantifiers+%28for+RexExp+in+Java%29" title="用bShare分享或收藏本文"><img src="http://static.bshare.cn/frame/images/button_custom1-zh.gif" alt="用bShare分享或收藏本文" /></a></p><table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F11%2F11%2F1809%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F20%2F11718%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">10 things all JAVA developers should know [zz]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2012%2F02%2F02%2F13237%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F20%2F11718%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">有关Java泛型的类型擦除（type erasing）</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F08%2F11%2F2396%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F20%2F11718%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Java程序员必看电影：Java 4-ever</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2005%2F11%2F07%2F171%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F20%2F11718%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Java 销魂落魄散  [zz]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F12%2F15%2F1947%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F20%2F11718%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">java.net论坛被黑（有图有真相）</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.jayxu.com/2011/09/20/11718/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>一周tweets更新 [2011-09-12]</title>
		<link>http://www.jayxu.com/2011/09/12/11707/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=%25e4%25b8%2580%25e5%2591%25a8tweets%25e6%259b%25b4%25e6%2596%25b0-2011-09-12-2</link>
		<comments>http://www.jayxu.com/2011/09/12/11707/#comments</comments>
		<pubDate>Sun, 11 Sep 2011 17:30:00 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[tweets]]></category>

		<guid isPermaLink="false">http://www.jayxu.com/2011/09/12/11707/</guid>
		<description><![CDATA[一周tweets更新 [2011-09-05] http://t.co/PGxPjAb #tweets # 李双江：儿子从小和我学开车 开起来有一种旋律(组图) // 这篇文章很应景啊，该算是硬文呢，还是软文呢？ # Learn #Vim Progressively http://t.co/mXzOTYt #技术生活 # 开会开会，恐怖的印度英语再次袭来…… # 昨夜一场秋雨，天俱凉。今天出门一阵秋高气爽，脑中却满是北航里的气息和影子。秋天真是回忆的季节 # 朱镕基讲话实录:剥夺土地而不安置好农民很危险 http://t.co/iia6duq # 阴雨连绵的假期，在家睡了一下午……睡醒，找另一对无所事事的打麻将去~ # 原创内容，转载请注明： 转载自拈花微笑 本文链接地址: 一周tweets更新 [2011-09-12]<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F19%2F11712%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F12%2F11707%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2011-09-19]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F06%2F22%2F2364%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F12%2F11707%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2010-06-22]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F03%2F07%2F2085%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F12%2F11707%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2010-03-07]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F04%2F18%2F2134%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F12%2F11707%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2010-04-18]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F04%2F04%2F2117%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F12%2F11707%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2010-04-04]</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li>一周tweets更新 [2011-09-05] <a href="http://t.co/PGxPjAb" rel="nofollow">http://t.co/PGxPjAb</a> #<a href="http://search.twitter.com/search?q=%23tweets" class="aktt_hashtag">tweets</a> <a href="http://twitter.com/jayxu/statuses/111566678478962688" class="aktt_tweet_time">#</a></li>
<li>李双江：儿子从小和我学开车 开起来有一种旋律(组图) // 这篇文章很应景啊，该算是硬文呢，还是软文呢？ <a href="http://twitter.com/jayxu/statuses/111722670328000512" class="aktt_tweet_time">#</a></li>
<li>Learn #<a href="http://search.twitter.com/search?q=%23Vim" class="aktt_hashtag">Vim</a> Progressively <a href="http://t.co/mXzOTYt" rel="nofollow">http://t.co/mXzOTYt</a> #技术生活 <a href="http://twitter.com/jayxu/statuses/111752886702186496" class="aktt_tweet_time">#</a></li>
<li>开会开会，恐怖的印度英语再次袭来…… <a href="http://twitter.com/jayxu/statuses/111789851845730304" class="aktt_tweet_time">#</a></li>
<li>昨夜一场秋雨，天俱凉。今天出门一阵秋高气爽，脑中却满是北航里的气息和影子。秋天真是回忆的季节 <a href="http://twitter.com/jayxu/statuses/111979768047603713" class="aktt_tweet_time">#</a></li>
<li>朱镕基讲话实录:剥夺土地而不安置好农民很危险 <a href="http://t.co/iia6duq" rel="nofollow">http://t.co/iia6duq</a> <a href="http://twitter.com/jayxu/statuses/112036930526515200" class="aktt_tweet_time">#</a></li>
<li>阴雨连绵的假期，在家睡了一下午……睡醒，找另一对无所事事的打麻将去~ <a href="http://twitter.com/jayxu/statuses/112481631708782592" class="aktt_tweet_time">#</a></li>
</ul>
<div style="margin-top: 15px; font-style: italic">
<p><strong>原创内容，转载请注明：</strong> 转载自<a href="http://www.jayxu.com/">拈花微笑</a></p>
<p><strong>本文链接地址:</strong> <a href="http://www.jayxu.com/2011/09/12/11707/">一周tweets更新 [2011-09-12]</a></p>
</div>
<p><a href="http://www.bshare.cn/share?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F12%2F11707%2F&title=%E4%B8%80%E5%91%A8tweets%E6%9B%B4%E6%96%B0+%5B2011-09-12%5D" title="用bShare分享或收藏本文"><img src="http://static.bshare.cn/frame/images/button_custom1-zh.gif" alt="用bShare分享或收藏本文" /></a></p><table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F19%2F11712%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F12%2F11707%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2011-09-19]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F06%2F22%2F2364%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F12%2F11707%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2010-06-22]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F03%2F07%2F2085%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F12%2F11707%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2010-03-07]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F04%2F18%2F2134%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F12%2F11707%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2010-04-18]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F04%2F04%2F2117%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F12%2F11707%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2010-04-04]</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.jayxu.com/2011/09/12/11707/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Learn Vim Progressively</title>
		<link>http://www.jayxu.com/2011/09/08/11701/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=learn-vim-progressively</link>
		<comments>http://www.jayxu.com/2011/09/08/11701/#comments</comments>
		<pubDate>Thu, 08 Sep 2011 04:53:38 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[技术生活]]></category>
		<category><![CDATA[vim]]></category>

		<guid isPermaLink="false">http://www.jayxu.com/?p=11701</guid>
		<description><![CDATA[原文在这里 &#160; tl;dr: Want to learn vim (the best text editor known to human kind) the fastest way possible. I suggest you a way. Start by learning the minimal to survive, then integrate slowly all tricks. Vim the Six Billion Dollar editor Better, Stronger, Faster. Learn vim and it will be your last text editor. <a href="http://www.jayxu.com/2011/09/08/11701/"> read more <span class="meta-nav">&#187;</span></a><table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F07%2F08%2F10667%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F08%2F11701%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">vim 指令图解</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F04%2F14%2F2124%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F08%2F11701%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">vim键盘布局，中英高清带字幕</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F11%2F17%2F10243%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F08%2F11701%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">乘着朝阳，我飞向有你的地方</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F08%2F24%2F1711%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F08%2F11701%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Snow Leopard终于要来了~~</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2008%2F05%2F03%2F351%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F08%2F11701%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">悼小白</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p>原文在<a href="http://yannesposito.com/Scratch/en/blog/Learn-Vim-Progressively/" target="_blank">这里</a></p>
<p>&nbsp;</p>
<p><img src="http://yannesposito.com/Scratch/img/blog/Learn-Vim-Progressively/uber_leet_use_vim.jpg" alt="Über leet use vim!" /></p>
<div>
<p><abbr title="Too long; didn't read">tl;dr</abbr>: Want to learn vim (the best text editor known to human kind) the fastest way possible. I suggest you a way. Start by learning the minimal to survive, then integrate slowly all tricks.</p>
</div>
<p><a href="http://www.vim.org/">Vim</a> the Six Billion Dollar editor</p>
<blockquote><p>Better, Stronger, Faster.</p></blockquote>
<p>Learn <a href="http://www.vim.org/">vim</a> and it will be your last text editor. There isn’t any better text editor I know. Hard to learn, but incredible to use.</p>
<p>I suggest you to learn it in 4 steps:</p>
<ol>
<li>Survive</li>
<li>Feel comfortable</li>
<li>Feel Better, Stronger, Faster</li>
<li>Use vim superpowers</li>
</ol>
<p>By the end of this journey, you’ll become a vim superstar.</p>
<p>But before we start, just a warning. Learning vim will be painful at first. It will take time. It will be a lot like playing a music instrument. Don’t expect to be more efficient with vim than with another editor in less than 3 days. In fact it will certainly take 2 weeks instead of 3 days.</p>
<h2 id="st-level----survive">1<sup>st</sup> Level – Survive</h2>
<ol>
<li>Install <a href="http://www.vim.org/">vim</a></li>
<li>Launch vim</li>
<li>DO NOTHING! Read.</li>
</ol>
<p>In a standard editor, typing on the keyboard is enough to write something and see it on the screen. Not this time. Vim is in <em>Normal</em> mode. Let’s get in <em>Insert</em> mode. Type on the letter <code>i</code>.</p>
<p>You should feel a bit better. You can type letters like in a standard notepad. To get back in <em>Normal</em> mode just tap the <code>ESC</code> key.</p>
<p>You know how to switch between <em>Insert</em> and <em>Normal</em> mode. And now, the list of command you can use in <em>Normal</em> mode to survive:</p>
<blockquote>
<ul>
<li><code>i</code> → <em>Insert</em> mode. Type <code>ESC</code> to return to Normal mode.</li>
<li><code>x</code> → Delete the char under the cursor</li>
<li><code>:wq</code> → Save and Quit (<code>:w</code> save, <code>:q</code> quit)</li>
<li><code>dd</code> → Delete (and copy) current line</li>
<li><code>p</code> → Paste</li>
</ul>
<p>Recommended:</p>
<ul>
<li><code>hjkl</code> (highly recommended but not mandatory) → basic cursor move (←↓↑→). Hint: <code>j</code> look like a down arrow.</li>
<li><code>:help &lt;command&gt;</code> → Show help about <code>&lt;command&gt;</code>, you can start using <code>:help</code> without anything else.</li>
</ul>
</blockquote>
<p>Only 5 commands. This is very few to start. Once these command start to become natural (may be after a complete day), you should go on level 2.</p>
<p>But before, just a little remark on <em>Normal mode</em>. In standard editors, to copy you have to use the <code>Ctrl</code> key (<code>Ctrl-c</code> generally). In fact, when you press <code>Ctrl</code>, it is a bit like if all your key change meaning. With vim in Normal mode, it is a bit like if your <code>Ctrl</code> key is always pushed down.</p>
<p>A last word about notations:</p>
<ul>
<li>instead of writing <code>Ctrl-λ</code>, I’ll write <code>&lt;C-λ&gt;</code>.</li>
<li>command staring by <code>:</code> will must end by <code>&lt;enter&gt;</code>. For example, when I write <code>:q</code> it means <code>:q&lt;enter&gt;</code>.</li>
</ul>
<h2 id="nd-level----feel-comfortable">2<sup>nd</sup> Level – Feel comfortable</h2>
<p>You know the commands required for survival. It’s time to learn a few more commands. I suggest:</p>
<ol>
<li>Insert mode variations:<br />
<blockquote>
<ul>
<li><code>a</code> → insert after the cursor</li>
<li><code>o</code> → insert a new line after the current one</li>
<li><code>O</code> → insert a new line before the current one</li>
<li><code>cw</code> → replace from the cursor to the end the word</li>
</ul>
</blockquote>
</li>
<li>Basic moves<br />
<blockquote>
<ul>
<li><code>0</code> → go to first column</li>
<li><code>^</code> → go to first non-blank character of the line</li>
<li><code>$</code> → go to the end of line</li>
<li><code>g_</code> → go to the last non-blank character of line</li>
<li><code>/pattern</code> → search for <code>pattern</code></li>
</ul>
</blockquote>
</li>
<li>Copy/Paste<br />
<blockquote>
<ul>
<li><code>P</code> → paste before, remember <code>p</code> is paste after current position.</li>
<li><code>yy</code> → copy current line, easier but equivalent to <code>ddP</code></li>
</ul>
</blockquote>
</li>
<li>Undo/Redo<br />
<blockquote>
<ul>
<li><code>u</code> → undo</li>
<li><code>&lt;C-r&gt;</code> → redo</li>
</ul>
</blockquote>
</li>
<li>Load/Save/Quit/Change File (Buffer)<br />
<blockquote>
<ul>
<li><code>:e &lt;path/to/file&gt;</code> → open</li>
<li><code>:w</code> → save</li>
<li><code>:saveas &lt;path/to/file&gt;</code> → save to <code>&lt;path/to/file&gt;</code></li>
<li><code> <img src='http://www.jayxu.com/wp-includes/images/smilies/icon_mad.gif' alt=':x' class='wp-smiley' /> </code>, <code>ZZ</code> or <code>:wq</code> → save and quit (<code> <img src='http://www.jayxu.com/wp-includes/images/smilies/icon_mad.gif' alt=':x' class='wp-smiley' /> </code> only save if necessary)</li>
<li><code>:q!</code> → quit without saving, also <code>:qa!</code> to even if there are some modified hidden buffers.</li>
<li><code>:bn</code> (resp. <code>:bp</code>) → show next (resp. previous) file (buffer)</li>
</ul>
</blockquote>
</li>
</ol>
<p>Take the time to integrate all of these command. Once done, you should be able to do every thing you are able to do on other editors. But until now, it is a bit awkward. But follow me to the next level and you’ll see why.</p>
<h2 id="rd-level----better-stronger-faster">3<sup>rd</sup> Level – Better. Stronger. Faster.</h2>
<p>Congratulation reaching this far! We can start the interesting stuff. At level 3, we’ll only talk about command which are compatible with the old vi.</p>
<h3 id="better">Better</h3>
<p>Let’s look at how vim could help you to repeat yourself:</p>
<ol>
<li><code>.</code> → (dot) will repeat the last command,</li>
<li>N&lt;command&gt; → will do the command N times.</li>
</ol>
<p>Some examples, open a file and type:</p>
<blockquote>
<ul>
<li><code>2dd</code> → will delete 2 lines</li>
<li><code>3p</code> → will paste the text 3 times</li>
<li><code>100idesu [ESC]</code> → will write “desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu desu “</li>
<li><code>.</code> → Just after the last command will write again the 100 “desu “.</li>
<li><code>3.</code> → Will write 3 “desu” (and not 300, how clever).</li>
</ul>
</blockquote>
<h3 id="stronger">Stronger</h3>
<p>Knowing how to move efficiently with vim is <em>very</em> important. Don’t skip this section.</p>
<ol>
<li>N<code>G</code> → Go to line N</li>
<li><code>gg</code> → shortcut for <code>1G</code>, go to the start of the file</li>
<li><code>G</code> → Go to last line</li>
<li>Word moves:<br />
<blockquote>
<ol>
<li><code>w</code> → go to the start of the following word,</li>
<li><code>e</code> → go to the end of this word.</li>
</ol>
<p>By default, word are composed of letter and the underscore character. Let’s call a WORD a group of letter separated by blank characters. If you want to consider WORDS, then just use uppercases:</p>
<ol>
<li><code>W</code> → go to the start of the following WORD,</li>
<li><code>E</code> → go to the end of this WORD.</li>
</ol>
<p><img src="http://yannesposito.com/Scratch/img/blog/Learn-Vim-Progressively/word_moves.jpg" alt="Word moves example" /></p></blockquote>
</li>
</ol>
<p>Now let’s talk about very efficient moves:</p>
<blockquote>
<ul>
<li><code>%</code> : Go to corresponding <code>(</code>, <code>{</code>, <code>[</code>.</li>
<li><code>*</code> (resp. <code>#</code>) : go to next (resp. previous) occurrence of the word under the cursor</li>
</ul>
</blockquote>
<p>Believe me, the last three commands are gold.</p>
<h3 id="faster">Faster</h3>
<p>Remember about the importance of vi moves? Here is the reason. Most commands can be used using the following general format:</p>
<p><code>&lt;start position&gt;&lt;command&gt;&lt;end position&gt;</code></p>
<p>For example : <code>0y$</code> means</p>
<ul>
<li><code>0</code> → go to the beginning of this line</li>
<li><code>y</code> → yank from here</li>
<li><code>$</code> → up to the end of this line</li>
</ul>
<p>We also can do things like <code>ye</code>, yank from here to the end of the word. But also <code>y2/foo</code> yank up to the second occurrence of “foo”.</p>
<p>But what was true for <code>y</code> (yank), is also true for <code>d</code> (delete), <code>v</code> (visual select), <code>gU</code> (uppercase), <code>gu</code> (lowercase), etc…</p>
<h2 id="th-level----vim-superpowers">4th Level – Vim Superpowers</h2>
<p>With all preceding commands you should be comfortable to use vim. But now, here are the killer features. Some of these features were the reason I started to use vim.</p>
<h3 id="move-on-current-line-0---f-f-t-t--">Move on current line: <code>0</code> <code>^</code> <code>$</code> <code>f</code> <code>F</code> <code>t</code> <code>T</code> <code>,</code> <code>;</code></h3>
<blockquote>
<ul>
<li><code>0</code> → go to column 0</li>
<li><code>^</code> → go to first character on the line</li>
<li><code>$</code> → go to the last character on the line</li>
<li><code>fa</code> → go to next occurrence of the letter <code>a</code> on the line. <code>,</code> (resp. <code>;</code>) will seek for the next (resp. previous) occurrence.</li>
<li><code>t,</code> → go just before the character <code>,</code>.</li>
<li><code>3fa</code> → search the 3<sup>rd</sup> occurrence of <code>a</code> on this line.</li>
<li><code>F</code> and <code>T</code> → like <code>f</code> and <code>t</code> but backward. <img src="http://yannesposito.com/Scratch/img/blog/Learn-Vim-Progressively/line_moves.jpg" alt="Line moves" /></li>
</ul>
</blockquote>
<p>A useful tip is: <code>dt"</code> → remove everything until the <code>"</code>.</p>
<h3 id="zone-selection-actionaobject-or-actioniobject">Zone selection <code>&lt;action&gt;a&lt;object&gt;</code> or <code>&lt;action&gt;i&lt;object&gt;</code></h3>
<p>These command can only be used after an operator of in visual mode. But they are very powerful. Their main pattern is:</p>
<p><code>&lt;action&gt;a&lt;object&gt;</code> and <code>&lt;action&gt;i&lt;object&gt;</code></p>
<p>Where action can be any action, for example, <code>d</code> (delete), <code>y</code> (yank), <code>v</code> (select in visual mode). And object can be: <code>w</code> a word, <code>W</code> a WORD (extended word), <code>s</code> a sentence, <code>p</code> a paragraph. But also, natural character such as <code>"</code>, <code>'</code>, <code>)</code>, <code>}</code>, <code>]</code>.</p>
<p>Suppose the cursor is on the first <code>o</code> of <code>(map (+) ("foo"))</code>.</p>
<blockquote>
<ul>
<li><code>vi"</code> → will select <code>foo</code>.</li>
<li><code>va"</code> → will select <code>"foo"</code>.</li>
<li><code>vi)</code> → will select <code>"foo"</code>.</li>
<li><code>va)</code> → will select <code>("foo")</code>.</li>
<li><code>v2i)</code> → will select <code>map (+) ("foo")</code></li>
<li><code>v2a)</code> → will select <code>(map (+) ("foo"))</code></li>
</ul>
</blockquote>
<p><img src="http://yannesposito.com/Scratch/img/blog/Learn-Vim-Progressively/textobjects.png" alt="Text objects selection" /></p>
<h3 id="select-rectangular-blocks-c-v">Select rectangular blocks: <code>&lt;C-v&gt;</code>.</h3>
<p>Rectangular blocks are very useful to comment many lines of code. Typically: <code>0&lt;C-v&gt;&lt;C-d&gt;I-- [ESC]</code></p>
<ul>
<li><code>^</code> → go to start of the line</li>
<li><code>&lt;C-v&gt;</code> → Start block selection</li>
<li><code>&lt;C-d&gt;</code> → move down (could also be <code>jjj</code> or <code>%</code>, etc…)</li>
<li><code>I-- [ESC]</code> → write <code>-- </code> to comment each line</li>
</ul>
<p><img src="http://yannesposito.com/Scratch/img/blog/Learn-Vim-Progressively/rectangular-blocks.gif" alt="Rectangular blocks" /></p>
<p>Not on windows you might have to use <code>&lt;C-q&gt;</code> instead of <code>&lt;C-v&gt;</code> if your clipboard is not empty.</p>
<h3 id="completion-c-n-and-c-p">Completion: <code>&lt;C-n&gt;</code> and <code>&lt;C-p&gt;</code>.</h3>
<p>In Insert mode, just type the start of a word, then type <code>&lt;C-p&gt;</code>, magic… <img src="http://yannesposito.com/Scratch/img/blog/Learn-Vim-Progressively/completion.gif" alt="Completion" /></p>
<h3 id="macros--qa-do-something-q-a-">Macros : <code>qa</code> do something <code>q</code>, <code>@a</code>, <code>@@</code></h3>
<p><code>qa</code> record your actions in the <em>register</em> <code>a</code>. Then <code>@a</code> will replay the macro saved into the register <code>a</code> as if you typed it. <code>@@</code> is a shortcut to replay the last executed macro.</p>
<blockquote><p><em>Example</em></p>
<p>On a line containing only the number 1, type this:</p>
<ul>
<li><code>qaYp&lt;C-a&gt;q</code>→
<ul>
<li><code>qa</code> start recording.</li>
<li><code>Yp</code> duplicate this line.</li>
<li><code>&lt;C-a&gt;</code> increment the number.</li>
<li><code>q</code> stop recording.</li>
</ul>
</li>
<li><code>@a</code> → write 2 under the 1</li>
<li><code>@@</code> → write 3 under the 2</li>
<li>Now do <code>100@@</code> will create a list of increasing numbers until 103.</li>
</ul>
</blockquote>
<p><img src="http://yannesposito.com/Scratch/img/blog/Learn-Vim-Progressively/macros.gif" alt="Macros" /></p>
<h3 id="visual-selection-vvc-v">Visual selection: <code>v</code>,<code>V</code>,<code>&lt;C-v&gt;</code></h3>
<p>We saw an example with <code>&lt;C-v&gt;</code>. There is also <code>v</code> and <code>V</code>. Once the selection made, you can:</p>
<ul>
<li><code>J</code> → join all lines together.</li>
<li><code>&lt;</code> (resp. <code>&gt;</code>) → indent to the left (resp. to the right).</li>
<li><code>=</code> → auto indent</li>
</ul>
<p><img src="http://yannesposito.com/Scratch/img/blog/Learn-Vim-Progressively/autoindent.gif" alt="Autoindent" /></p>
<p>Add something at the end of all visually selected lines:</p>
<ul>
<li><code>&lt;C-v&gt;</code></li>
<li>go to desired line (<code>jjj</code> or <code>&lt;C-d&gt;</code> or <code>/pattern</code> or <code>%</code> etc…)</li>
<li><code>$</code> go to the end of line</li>
<li><code>A</code>, write text, <code>ESC</code>.</li>
</ul>
<p><img src="http://yannesposito.com/Scratch/img/blog/Learn-Vim-Progressively/append-to-many-lines.gif" alt="Append to many lines" /></p>
<h3 id="splits-split-and-vsplit">Splits: <code>:split</code> and <code>vsplit</code>.</h3>
<p>Here are the main commands, but you should look at <code>:help split</code>.</p>
<blockquote>
<ul>
<li><code>:split</code> → create a split (<code>:vsplit</code> create a vertical split)</li>
<li><code>&lt;C-w&gt;&lt;dir&gt;</code> : where dir is any of <code>hjkl</code> or ←↓↑→ to change split.</li>
<li><code>&lt;C-w&gt;_</code> (resp. <code>&lt;C-w&gt;|</code>) : maximise size of split (resp. vertical split)</li>
<li><code>&lt;C-w&gt;+</code> (resp. <code>&lt;C-w&gt;-</code>) : Grow (resp. shrink) split</li>
</ul>
</blockquote>
<p><img src="http://yannesposito.com/Scratch/img/blog/Learn-Vim-Progressively/split.gif" alt="Split" /></p>
<h2 id="conclusion">Conclusion</h2>
<p>That was 90% of commands I use every day. I suggest you to learn no more than one or two new command per day. After two to three weeks you’ll start to feel the power of vim in your hands.</p>
<p>Learning Vim is more a matter of training than plain memorization. Fortunately vim comes with some very good tools and an excellent documentation. Run vimtutor until you are familiar with most basic commands. Also, you should read carefully this page: <code>:help usr_02.txt</code>.</p>
<p>Then, you will learn about <code>!</code>, folds, registers, the plugins and many other features. Learn vim like you’d learn piano and all should be fine.
<div style="margin-top: 15px; font-style: italic">
<p><strong>原创内容，转载请注明：</strong> 转载自<a href="http://www.jayxu.com/">拈花微笑</a></p>
<p><strong>本文链接地址:</strong> <a href="http://www.jayxu.com/2011/09/08/11701/">Learn Vim Progressively</a></p>
</div>
<p><a href="http://www.bshare.cn/share?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F08%2F11701%2F&title=Learn+Vim+Progressively" title="用bShare分享或收藏本文"><img src="http://static.bshare.cn/frame/images/button_custom1-zh.gif" alt="用bShare分享或收藏本文" /></a></p><table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F07%2F08%2F10667%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F08%2F11701%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">vim 指令图解</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F04%2F14%2F2124%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F08%2F11701%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">vim键盘布局，中英高清带字幕</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2008%2F12%2F27%2F1301%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F08%2F11701%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">青岛发呆三日游</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F15%2F13049%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F08%2F11701%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">88，Follow 5</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2005%2F08%2F13%2F194%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F08%2F11701%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">唐伯虎Rap [zz]</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.jayxu.com/2011/09/08/11701/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>一周tweets更新 [2011-09-05]</title>
		<link>http://www.jayxu.com/2011/09/05/11699/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=%25e4%25b8%2580%25e5%2591%25a8tweets%25e6%259b%25b4%25e6%2596%25b0-2011-09-05</link>
		<comments>http://www.jayxu.com/2011/09/05/11699/#comments</comments>
		<pubDate>Sun, 04 Sep 2011 17:30:00 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[tweets]]></category>

		<guid isPermaLink="false">http://www.jayxu.com/2011/09/05/11699/</guid>
		<description><![CDATA[刘翔加油啊！ # 罗伯斯最后两栏的小动作有点…… # 一周tweets更新 [2011-08-29] http://t.co/W3C0rd6 #tweets # 乔布斯的10个经营理念成就了今天的苹果 [zz] http://t.co/nfLzNBV #互联网生活 #apple #jobs # 史蒂夫•乔布斯传(Steve Jobs:A Biography)(乔布斯唯一正式授权传记中文版预售中，2011年11月21日全球同步发售) // 瞧不死传中文版已开始预售，但不知道是谁译的 # 《黑客与画家》是本神书 # 我刚在 @GooglePlaces 上给福代越南餐厅（成府路店）评了 1 颗星：“踩：今天去吃了团购，春卷拼盘是提前做好直接端上来的，肉不新鲜，有味，现在胃里还翻江倒海的。玉米鱼钟看不钟吃，全是刺。不会再去了。”http://t.co/ZHu2y7O # 我刚在 @GooglePlaces 上给福代越南餐厅（成府路店）评了 1 颗星：“踩：今天去吃了团购，春卷拼盘是提前做好直接端上来的，肉不新鲜，有味，现在胃里还翻江倒海的。玉米鱼钟看不钟吃，全是刺。不会再去了。”http://t.co/YVAbwE6 # 我刚在 @GooglePlaces 上给福代越南餐厅（成府路店）评了 1 颗星：“踩：今天去吃了团购，春卷拼盘是提前做好直接端上来的，肉不新鲜，有味，现在胃里还翻江倒海的。玉米鱼钟看不钟吃，全是刺。不会再去了。”http://t.co/aRJi93K # 我刚在 @GooglePlaces 上给福代越南餐厅（成府路店）评了 1 颗星：“踩：今天去吃了团购，春卷拼盘是提前做好直接端上来的，肉不新鲜，有味，现在胃里还翻江倒海的。玉米鱼钟看不钟吃，全是刺。不会再去了。”http://t.co/67ihzAl # 我刚在 @GooglePlaces 上给福代越南餐厅（成府路店）评了 1 颗星：“踩：今天去吃了团购，春卷拼盘是提前做好直接端上来的，肉不新鲜，有味，现在胃里还翻江倒海的。玉米鱼钟看不钟吃，全是刺。不会再去了。”http://t.co/byeB19W # 我刚在 <a href="http://www.jayxu.com/2011/09/05/11699/"> read more <span class="meta-nav">&#187;</span></a><table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F19%2F11709%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F05%2F11699%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2011-09-19]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F26%2F11755%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F05%2F11699%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2011-09-26]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F17%2F11779%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F05%2F11699%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2011-10-17]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F04%2F18%2F2134%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F05%2F11699%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2010-04-18]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F11%2F02%2F1791%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F05%2F11699%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2009-11-02]</font>
                    </a>
                </td>
            </tr>
        <br/>
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">来自无觅网络的相关文章：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.mianfeidi.com%2F2011%2Ftweetattacks2-cracked.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F05%2F11699%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">TweetAttacks2：Twitter营销利器 (@mianfeidi)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.caodanshi.com%2F2011%2F824.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F05%2F11699%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">#操蛋事#824-周杰轮 (@caodanshi)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.caodanshi.com%2F2011%2F13223.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F05%2F11699%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">还我一P (@caodanshi)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.ycy8.net%2F2011_6790.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F05%2F11699%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">周杰伦Live CD- 超时代 演唱会 (@ycy8)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.caodanshi.com%2F2011%2F410.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F05%2F11699%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">操蛋事#410-一只鞋 (@caodanshi)</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li>刘翔加油啊！ <a href="http://twitter.com/jayxu/statuses/108152459859460098" class="aktt_tweet_time">#</a></li>
<li>罗伯斯最后两栏的小动作有点…… <a href="http://twitter.com/jayxu/statuses/108155239152095232" class="aktt_tweet_time">#</a></li>
<li>一周tweets更新 [2011-08-29] <a href="http://t.co/W3C0rd6" rel="nofollow">http://t.co/W3C0rd6</a> #<a href="http://search.twitter.com/search?q=%23tweets" class="aktt_hashtag">tweets</a> <a href="http://twitter.com/jayxu/statuses/108405112917069824" class="aktt_tweet_time">#</a></li>
<li>乔布斯的10个经营理念成就了今天的苹果 [zz] <a href="http://t.co/nfLzNBV" rel="nofollow">http://t.co/nfLzNBV</a> #互联网生活 #<a href="http://search.twitter.com/search?q=%23apple" class="aktt_hashtag">apple</a> #jobs <a href="http://twitter.com/jayxu/statuses/108405125583867904" class="aktt_tweet_time">#</a></li>
<li>史蒂夫•乔布斯传(Steve Jobs:A Biography)(乔布斯唯一正式授权传记中文版预售中，2011年11月21日全球同步发售) // 瞧不死传中文版已开始预售，但不知道是谁译的 <a href="http://twitter.com/jayxu/statuses/108406793989918720" class="aktt_tweet_time">#</a></li>
<li>《黑客与画家》是本神书 <a href="http://twitter.com/jayxu/statuses/108578927760515072" class="aktt_tweet_time">#</a></li>
<li>我刚在 @<a href="http://twitter.com/GooglePlaces" class="aktt_username">GooglePlaces</a> 上给福代越南餐厅（成府路店）评了 1 颗星：“踩：今天去吃了团购，春卷拼盘是提前做好直接端上来的，肉不新鲜，有味，现在胃里还翻江倒海的。玉米鱼钟看不钟吃，全是刺。不会再去了。”http://t.co/ZHu2y7O <a href="http://twitter.com/jayxu/statuses/108585646221828096" class="aktt_tweet_time">#</a></li>
<li>我刚在 @<a href="http://twitter.com/GooglePlaces" class="aktt_username">GooglePlaces</a> 上给福代越南餐厅（成府路店）评了 1 颗星：“踩：今天去吃了团购，春卷拼盘是提前做好直接端上来的，肉不新鲜，有味，现在胃里还翻江倒海的。玉米鱼钟看不钟吃，全是刺。不会再去了。”http://t.co/YVAbwE6 <a href="http://twitter.com/jayxu/statuses/108585697388150784" class="aktt_tweet_time">#</a></li>
<li>我刚在 @<a href="http://twitter.com/GooglePlaces" class="aktt_username">GooglePlaces</a> 上给福代越南餐厅（成府路店）评了 1 颗星：“踩：今天去吃了团购，春卷拼盘是提前做好直接端上来的，肉不新鲜，有味，现在胃里还翻江倒海的。玉米鱼钟看不钟吃，全是刺。不会再去了。”http://t.co/aRJi93K <a href="http://twitter.com/jayxu/statuses/108585764958375936" class="aktt_tweet_time">#</a></li>
<li>我刚在 @<a href="http://twitter.com/GooglePlaces" class="aktt_username">GooglePlaces</a> 上给福代越南餐厅（成府路店）评了 1 颗星：“踩：今天去吃了团购，春卷拼盘是提前做好直接端上来的，肉不新鲜，有味，现在胃里还翻江倒海的。玉米鱼钟看不钟吃，全是刺。不会再去了。”http://t.co/67ihzAl <a href="http://twitter.com/jayxu/statuses/108585812442095616" class="aktt_tweet_time">#</a></li>
<li>我刚在 @<a href="http://twitter.com/GooglePlaces" class="aktt_username">GooglePlaces</a> 上给福代越南餐厅（成府路店）评了 1 颗星：“踩：今天去吃了团购，春卷拼盘是提前做好直接端上来的，肉不新鲜，有味，现在胃里还翻江倒海的。玉米鱼钟看不钟吃，全是刺。不会再去了。”http://t.co/byeB19W <a href="http://twitter.com/jayxu/statuses/108586109507874817" class="aktt_tweet_time">#</a></li>
<li>我刚在 @<a href="http://twitter.com/GooglePlaces" class="aktt_username">GooglePlaces</a> 上给福代越南餐厅（成府路店）评了 1 颗星：“踩：今天去吃了团购，春卷拼盘是提前做好直接端上来的，肉不新鲜，有味，现在胃里还翻江倒海的。玉米鱼钟看不钟吃，全是刺。不会再去了。”http://t.co/c5uwcK8 <a href="http://twitter.com/jayxu/statuses/108586111705694208" class="aktt_tweet_time">#</a></li>
<li>我刚在 @<a href="http://twitter.com/GooglePlaces" class="aktt_username">GooglePlaces</a> 上给福代越南餐厅（成府路店）评了 1 颗星：“踩：今天去吃了团购，春卷拼盘是提前做好直接端上来的，肉不新鲜，有味，现在胃里还翻江倒海的。玉米鱼钟看不钟吃，全是刺。不会再去了。”http://t.co/TkG808G <a href="http://twitter.com/jayxu/statuses/108586201543483393" class="aktt_tweet_time">#</a></li>
<li>我刚在 @<a href="http://twitter.com/GooglePlaces" class="aktt_username">GooglePlaces</a> 上给福代越南餐厅（成府路店）评了 1 颗星：“踩：今天去吃了团购，春卷拼盘是提前做好直接端上来的，肉不新鲜，有味，现在胃里还翻江倒海的。玉米鱼钟看不钟吃，全是刺。不会再去了。”http://t.co/P0h5sbB <a href="http://twitter.com/jayxu/statuses/108586286658490369" class="aktt_tweet_time">#</a></li>
<li>我刚在 @<a href="http://twitter.com/GooglePlaces" class="aktt_username">GooglePlaces</a> 上给福代越南餐厅（成府路店）评了 1 颗星：“踩：今天去吃了团购，春卷拼盘是提前做好直接端上来的，肉不新鲜，有味，现在胃里还翻江倒海的。玉米鱼钟看不钟吃，全是刺。不会再去了。”http://t.co/Uam4o42 <a href="http://twitter.com/jayxu/statuses/108586353037541377" class="aktt_tweet_time">#</a></li>
<li>我刚在 @<a href="http://twitter.com/GooglePlaces" class="aktt_username">GooglePlaces</a> 上给福代越南餐厅（成府路店）评了 1 颗星：“踩：今天去吃了团购，春卷拼盘是提前做好直接端上来的，肉不新鲜，有味，现在胃里还翻江倒海的。玉米鱼钟看不钟吃，全是刺。不会再去了。”http://t.co/eRj146E <a href="http://twitter.com/jayxu/statuses/108586357449949185" class="aktt_tweet_time">#</a></li>
<li>我刚在 @<a href="http://twitter.com/GooglePlaces" class="aktt_username">GooglePlaces</a> 上给福代越南餐厅（成府路店）评了 1 颗星：“踩：今天去吃了团购，春卷拼盘是提前做好直接端上来的，肉不新鲜，有味，现在胃里还翻江倒海的。玉米鱼钟看不钟吃，全是刺。不会再去了。”http://t.co/cM0aARC <a href="http://twitter.com/jayxu/statuses/108586430384705536" class="aktt_tweet_time">#</a></li>
<li>我刚在 @<a href="http://twitter.com/GooglePlaces" class="aktt_username">GooglePlaces</a> 上给福代越南餐厅（成府路店）评了 1 颗星：“踩：今天去吃了团购，春卷拼盘是提前做好直接端上来的，肉不新鲜，有味，现在胃里还翻江倒海的。玉米鱼钟看不钟吃，全是刺。不会再去了。”http://t.co/JpDaiRN <a href="http://twitter.com/jayxu/statuses/108586557946077185" class="aktt_tweet_time">#</a></li>
<li>我刚在 @<a href="http://twitter.com/GooglePlaces" class="aktt_username">GooglePlaces</a> 上给福代越南餐厅（成府路店）评了 1 颗星：“踩：今天去吃了团购，春卷拼盘是提前做好直接端上来的，肉不新鲜，有味，现在胃里还翻江倒海的。玉米鱼钟看不钟吃，全是刺。不会再去了。”http://t.co/GnIY45C <a href="http://twitter.com/jayxu/statuses/108586603609460736" class="aktt_tweet_time">#</a></li>
<li>我刚在 @<a href="http://twitter.com/GooglePlaces" class="aktt_username">GooglePlaces</a> 上给福代越南餐厅（成府路店）评了 1 颗星：“踩：今天去吃了团购，春卷拼盘是提前做好直接端上来的，肉不新鲜，有味，现在胃里还翻江倒海的。玉米鱼钟看不钟吃，全是刺。不会再去了。”http://t.co/XWNsHzY <a href="http://twitter.com/jayxu/statuses/108586705405214720" class="aktt_tweet_time">#</a></li>
<li>我刚在 @<a href="http://twitter.com/GooglePlaces" class="aktt_username">GooglePlaces</a> 上给福代越南餐厅（成府路店）评了 1 颗星：“踩：今天去吃了团购，春卷拼盘是提前做好直接端上来的，肉不新鲜，有味，现在胃里还翻江倒海的。玉米鱼钟看不钟吃，全是刺。不会再去了。”http://t.co/uPq2BHS <a href="http://twitter.com/jayxu/statuses/108586994568921088" class="aktt_tweet_time">#</a></li>
<li>我刚在 @<a href="http://twitter.com/GooglePlaces" class="aktt_username">GooglePlaces</a> 上给福代越南餐厅（成府路店）评了 1 颗星：“踩：今天去吃了团购，春卷拼盘是提前做好直接端上来的，肉不新鲜，有味，现在胃里还翻江倒海的。玉米鱼钟看不钟吃，全是刺。不会再去了。”http://t.co/EvsSNJG <a href="http://twitter.com/jayxu/statuses/108587228120358912" class="aktt_tweet_time">#</a></li>
<li>我刚在 @<a href="http://twitter.com/GooglePlaces" class="aktt_username">GooglePlaces</a> 上给福代越式餐厅评了 1 颗星：“踩：今天去吃了团购，春卷拼盘是提前做好直接端上来的，肉不新鲜，有味，现在胃里还翻江倒海的。玉米鱼钟看不钟吃，全是刺。不会再去了。”http://t.co/gn6voS0 <a href="http://twitter.com/jayxu/statuses/108587280687575041" class="aktt_tweet_time">#</a></li>
<li>刑诉法修订被指开倒车 或致“秘密拘捕”泛滥 // “涉嫌危害国家安全犯罪、恐怖活动犯罪”以及“通知可能有碍侦查”的几种情形，均可以成为对当事人实施监视居住、刑事拘留、逮捕等强制措施后，不在24小时内通知家属的理由 <a href="http://twitter.com/jayxu/statuses/108816897566445568" class="aktt_tweet_time">#</a></li>
<li>iCloud Web Beta 上線　 <a href="http://twitter.com/jayxu/statuses/108912161295843328" class="aktt_tweet_time">#</a></li>
<li>Desktoply | Jay Xu // 这个应用有点意思~ <a href="http://twitter.com/jayxu/statuses/108912944414330880" class="aktt_tweet_time">#</a></li>
<li>Offline Google Mail // Gears的替代品终于出炉 <a href="http://twitter.com/jayxu/statuses/109122373449560064" class="aktt_tweet_time">#</a></li>
<li>关于『#C++11 中值得关注的几大变化（详解）』 <a href="http://t.co/EXCm19y" rel="nofollow">http://t.co/EXCm19y</a> #辩 #<a href="http://search.twitter.com/search?q=%23java" class="aktt_hashtag">java</a> <a href="http://twitter.com/jayxu/statuses/109586988063129600" class="aktt_tweet_time">#</a></li>
</ul>
<div style="margin-top: 15px; font-style: italic">
<p><strong>原创内容，转载请注明：</strong> 转载自<a href="http://www.jayxu.com/">拈花微笑</a></p>
<p><strong>本文链接地址:</strong> <a href="http://www.jayxu.com/2011/09/05/11699/">一周tweets更新 [2011-09-05]</a></p>
</div>
<p><a href="http://www.bshare.cn/share?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F05%2F11699%2F&title=%E4%B8%80%E5%91%A8tweets%E6%9B%B4%E6%96%B0+%5B2011-09-05%5D" title="用bShare分享或收藏本文"><img src="http://static.bshare.cn/frame/images/button_custom1-zh.gif" alt="用bShare分享或收藏本文" /></a></p><table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F19%2F11709%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F05%2F11699%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2011-09-19]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F26%2F11755%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F05%2F11699%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2011-09-26]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F17%2F11779%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F05%2F11699%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2011-10-17]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F04%2F18%2F2134%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F05%2F11699%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2010-04-18]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F11%2F02%2F1791%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F05%2F11699%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2009-11-02]</font>
                    </a>
                </td>
            </tr>
        <br/>
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">来自无觅网络的相关文章：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.mianfeidi.com%2F2011%2Ftweetattacks2-cracked.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F05%2F11699%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">TweetAttacks2：Twitter营销利器 (@mianfeidi)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.caodanshi.com%2F2011%2F824.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F05%2F11699%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">#操蛋事#824-周杰轮 (@caodanshi)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.caodanshi.com%2F2011%2F13223.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F05%2F11699%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">还我一P (@caodanshi)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.ycy8.net%2F2011_6790.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F05%2F11699%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">周杰伦Live CD- 超时代 演唱会 (@ycy8)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.caodanshi.com%2F2011%2F410.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F05%2F11699%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">操蛋事#410-一只鞋 (@caodanshi)</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.jayxu.com/2011/09/05/11699/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>关于『C++11 中值得关注的几大变化（详解）』</title>
		<link>http://www.jayxu.com/2011/09/01/11690/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=%25e5%2585%25b3%25e4%25ba%258e%25e3%2580%258ec11-%25e4%25b8%25ad%25e5%2580%25bc%25e5%25be%2597%25e5%2585%25b3%25e6%25b3%25a8%25e7%259a%2584%25e5%2587%25a0%25e5%25a4%25a7%25e5%258f%2598%25e5%258c%2596%25ef%25bc%2588%25e8%25af%25a6%25e8%25a7%25a3%25ef%25bc%2589%25e3%2580%258f</link>
		<comments>http://www.jayxu.com/2011/09/01/11690/#comments</comments>
		<pubDate>Thu, 01 Sep 2011 06:21:29 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[辩]]></category>
		<category><![CDATA[c++]]></category>
		<category><![CDATA[java]]></category>

		<guid isPermaLink="false">http://www.jayxu.com/?p=11690</guid>
		<description><![CDATA[博客更新得越来越不频繁，一方面是忙+懒，另一方面围脖带来的写作习惯的变化，越来越多的想法使用140字以内的只字片语发布在围脖上。而WP上还 没有像twitter tools一样的围脖反向更新工具，所有的围脖相关工具不是登录绑定就是发博同步至围脖。可见国内互联网产品业余开发人员的同质与乏善可陈，难道要我自己 用PHP去写一个？ 最近发现在team里的一些讨论邮件还是有点意思的，我发表了一些观点，也进行了一些讨论。这些邮件算是一个观点展示、碰撞的积累。今天开始转贴一些，当然前提是非IBM confidential的。以下是第一篇 &#160; C++11 中值得关注的几大变化（详解） 原文出自酷壳 &#160; Me：Like Java &#38; C#, C++ started to introduce many language sugars into the new version 11 (to make the language up-to-date), esp. for Lambda grammar, which is deferred to Java 8. Another highlight is the standard thread lib, wonder if it supports multi-core architecture <a href="http://www.jayxu.com/2011/09/01/11690/"> read more <span class="meta-nav">&#187;</span></a><table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F26%2F11684%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F01%2F11690%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">乔布斯的10个经营理念成就了今天的苹果 [zz]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F11%2F07%2F10196&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F01%2F11690%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">“我们只能自救”</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2007%2F11%2F18%2F21%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F01%2F11690%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">我很忙，难得闲</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F04%2F26%2F9968%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F01%2F11690%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">moving on stage</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2004%2F12%2F24%2F1280%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F01%2F11690%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">编译考试</font>
                    </a>
                </td>
            </tr>
        <br/>
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">来自无觅网络的相关文章：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.wolfherder.com%2Farchives%2F417&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F01%2F11690%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">美国之外你应该关注的20家创新公司(下) (@wolfherder)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fbfya.com%2Fmore-caress&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F01%2F11690%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">作为人 我们需要更多的爱与关注 (@bfya)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.wolfherder.com%2Farchives%2F303&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F01%2F11690%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">美国之外你应该关注的20家创新公司(上) (@wolfherder)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fbfya.com%2Fbnu2011-105&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F01%2F11690%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">X2 W8 D1 105S 无条件积极关注与爱 (@bfya)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.dedeadmin.com%2F%3Fp%3D2724&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F01%2F11690%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">关注网站安全，织梦CMS官方推出网站安全在线检测服务 (@dedeadmin)</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p>博客更新得越来越不频繁，一方面是忙+懒，另一方面围脖带来的写作习惯的变化，越来越多的想法使用140字以内的只字片语发布在围脖上。而WP上还 没有像twitter tools一样的围脖反向更新工具，所有的围脖相关工具不是登录绑定就是发博同步至围脖。可见国内互联网产品业余开发人员的同质与乏善可陈，难道要我自己 用PHP去写一个？</p>
<p>最近发现在team里的一些讨论邮件还是有点意思的，我发表了一些观点，也进行了一些讨论。这些邮件算是一个观点展示、碰撞的积累。今天开始转贴一些，当然前提是非IBM confidential的。以下是第一篇</p>
<p>&nbsp;</p>
<p>C++11 中值得关注的几大变化（详解）</p>
<p>原文出自<a href="http://coolshell.cn/articles/5265.html" target="_blank">酷壳</a></p>
<p>&nbsp;</p>
<p><strong><span style="text-decoration: underline;">Me</span></strong>：Like Java &amp; C#, C++ started to introduce many language sugars into the new version 11 (to make the language up-to-date), esp. for Lambda grammar, which is deferred to Java 8. Another highlight is the standard thread lib, wonder if it supports multi-core architecture well.</p>
<p><span style="text-decoration: underline;"><strong>Jacob</strong></span>：We took so long time to wait this new standard(1998&#8211;&gt;2003&#8211;&gt;2011); And we still need some times to wait the compiler to support them. It is a pity that we did not find new “Regular Expression” at C++11; I think it is a very useful specific. Maybe Boost still can be used for it. “wonder if it supports multi-core architecture well”,I am also wondering. Actually, There are some product can support it well: OpenMP(Intel), VS2010. I guess parallel computing especially GPU is a trend in desktop usage.</p>
<p><span style="text-decoration: underline;"><strong>Me</strong></span>：Agree that more and more programmers have already moved their compute-intensive (C/C++) code to GPU &#8211; which provides much more throughput. Hope Java could provide such feature in the future release.
<div style="margin-top: 15px; font-style: italic">
<p><strong>原创内容，转载请注明：</strong> 转载自<a href="http://www.jayxu.com/">拈花微笑</a></p>
<p><strong>本文链接地址:</strong> <a href="http://www.jayxu.com/2011/09/01/11690/">关于『C++11 中值得关注的几大变化（详解）』</a></p>
</div>
<p><a href="http://www.bshare.cn/share?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F01%2F11690%2F&title=%E5%85%B3%E4%BA%8E%E3%80%8EC%2B%2B11+%E4%B8%AD%E5%80%BC%E5%BE%97%E5%85%B3%E6%B3%A8%E7%9A%84%E5%87%A0%E5%A4%A7%E5%8F%98%E5%8C%96%EF%BC%88%E8%AF%A6%E8%A7%A3%EF%BC%89%E3%80%8F" title="用bShare分享或收藏本文"><img src="http://static.bshare.cn/frame/images/button_custom1-zh.gif" alt="用bShare分享或收藏本文" /></a></p><table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F06%2F06%2F1524%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F01%2F11690%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2009-06-06]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F04%2F12962%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F01%2F11690%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">梦娜·辛普森悼兄长史蒂夫·乔布斯 [zz]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2008%2F03%2F11%2F295%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F01%2F11690%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">printf(&quot;no title&quot;);</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2008%2F04%2F06%2F327%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F01%2F11690%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">蹲伟大的友谊，纪念小波</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F09%2F08%2F1747%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F01%2F11690%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">老上海，儿时的记忆 [zz]</font>
                    </a>
                </td>
            </tr>
        <br/>
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">来自无觅网络的相关文章：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.wolfherder.com%2Farchives%2F417&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F01%2F11690%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">美国之外你应该关注的20家创新公司(下) (@wolfherder)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fbfya.com%2Fmore-caress&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F01%2F11690%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">作为人 我们需要更多的爱与关注 (@bfya)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.wolfherder.com%2Farchives%2F303&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F01%2F11690%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">美国之外你应该关注的20家创新公司(上) (@wolfherder)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fbfya.com%2Fbnu2011-105&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F01%2F11690%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">X2 W8 D1 105S 无条件积极关注与爱 (@bfya)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.dedeadmin.com%2F%3Fp%3D2724&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F01%2F11690%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">关注网站安全，织梦CMS官方推出网站安全在线检测服务 (@dedeadmin)</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.jayxu.com/2011/09/01/11690/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>一周tweets更新 [2011-08-29]</title>
		<link>http://www.jayxu.com/2011/08/29/11688/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=%25e4%25b8%2580%25e5%2591%25a8tweets%25e6%259b%25b4%25e6%2596%25b0-2011-08-29</link>
		<comments>http://www.jayxu.com/2011/08/29/11688/#comments</comments>
		<pubDate>Sun, 28 Aug 2011 17:30:00 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[tweets]]></category>

		<guid isPermaLink="false">https://www.jayxu.com/2011/08/29/11688/</guid>
		<description><![CDATA[一周tweets更新 [2011-08-22] http://t.co/CCVT22f #tweets # @36氪 发布创业公司融资平台“36Tree”，帮助创业公司更快、更好的找到投资 # CEO们应该关注细节，连一个色调都不能放过 // CEO们应该关注细节，连一个色调的误差都不能放过，即便是在周日 # 早期创业公司的十节营销课 # 最近猎头如雨后春笋发来邮件、短信，刚才直接打到办公室来了…… # 看完《桐山毛榉案》，又认识了位美女——Natasha Richardson，上网一搜才知道09年已离我们远去，扼腕 # 海上传奇 // 老上海的故事 # 原创内容，转载请注明： 转载自拈花微笑 本文链接地址: 一周tweets更新 [2011-08-29]<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F12%2F11707%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F29%2F11688%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2011-09-12]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F04%2F25%2F1486%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F29%2F11688%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2009-04-25]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F03%2F07%2F1446%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F29%2F11688%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2009-03-07]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F03%2F07%2F2085%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F29%2F11688%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2010-03-07]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F19%2F11709%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F29%2F11688%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2011-09-19]</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li>一周tweets更新 [2011-08-22] <a href="http://t.co/CCVT22f" rel="nofollow">http://t.co/CCVT22f</a> #<a href="http://search.twitter.com/search?q=%23tweets" class="aktt_hashtag">tweets</a> <a href="http://twitter.com/jayxu/statuses/105969258755923968" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/36" class="aktt_username">36</a>氪 发布创业公司融资平台“36Tree”，帮助创业公司更快、更好的找到投资 <a href="http://twitter.com/jayxu/statuses/106958817606111233" class="aktt_tweet_time">#</a></li>
<li>CEO们应该关注细节，连一个色调都不能放过 // CEO们应该关注细节，连一个色调的误差都不能放过，即便是在周日 <a href="http://twitter.com/jayxu/statuses/106961502887608320" class="aktt_tweet_time">#</a></li>
<li>早期创业公司的十节营销课 <a href="http://twitter.com/jayxu/statuses/106967879303430144" class="aktt_tweet_time">#</a></li>
<li>最近猎头如雨后春笋发来邮件、短信，刚才直接打到办公室来了…… <a href="http://twitter.com/jayxu/statuses/107012531230482432" class="aktt_tweet_time">#</a></li>
<li>看完《桐山毛榉案》，又认识了位美女——Natasha Richardson，上网一搜才知道09年已离我们远去，扼腕 <a href="http://twitter.com/jayxu/statuses/107502202431606785" class="aktt_tweet_time">#</a></li>
<li>海上传奇 // 老上海的故事 <a href="http://twitter.com/jayxu/statuses/107762033277149186" class="aktt_tweet_time">#</a></li>
</ul>
<div style="margin-top: 15px; font-style: italic">
<p><strong>原创内容，转载请注明：</strong> 转载自<a href="http://www.jayxu.com/">拈花微笑</a></p>
<p><strong>本文链接地址:</strong> <a href="http://www.jayxu.com/2011/08/29/11688/">一周tweets更新 [2011-08-29]</a></p>
</div>
<p><a href="http://www.bshare.cn/share?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F29%2F11688%2F&title=%E4%B8%80%E5%91%A8tweets%E6%9B%B4%E6%96%B0+%5B2011-08-29%5D" title="用bShare分享或收藏本文"><img src="http://static.bshare.cn/frame/images/button_custom1-zh.gif" alt="用bShare分享或收藏本文" /></a></p><table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F12%2F11707%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F29%2F11688%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2011-09-12]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F04%2F25%2F1486%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F29%2F11688%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2009-04-25]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F03%2F07%2F1446%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F29%2F11688%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2009-03-07]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F03%2F07%2F2085%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F29%2F11688%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2010-03-07]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F19%2F11709%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F29%2F11688%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2011-09-19]</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.jayxu.com/2011/08/29/11688/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>乔布斯的10个经营理念成就了今天的苹果 [zz]</title>
		<link>http://www.jayxu.com/2011/08/26/11684/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=%25e4%25b9%2594%25e5%25b8%2583%25e6%2596%25af%25e7%259a%258410%25e4%25b8%25aa%25e7%25bb%258f%25e8%2590%25a5%25e7%2590%2586%25e5%25bf%25b5%25e6%2588%2590%25e5%25b0%25b1%25e4%25ba%2586%25e4%25bb%258a%25e5%25a4%25a9%25e7%259a%2584%25e8%258b%25b9%25e6%259e%259c-zz</link>
		<comments>http://www.jayxu.com/2011/08/26/11684/#comments</comments>
		<pubDate>Fri, 26 Aug 2011 05:25:09 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[互联网生活]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[jobs]]></category>

		<guid isPermaLink="false">http://www.jayxu.com/?p=11684</guid>
		<description><![CDATA[转自：36氪 &#160; 14年前，苹果还处在破产的边缘，如今，它已成为全球最令人艳羡的科技公司。乔布斯在苹果起死回生再到腾飞的过程中起到了不可替代的作用。然而人们更为关心的是，乔布斯究竟是如何做到这些的呢？ 1. 与竞争对手合作 你能想象百事可乐与可口可乐合作的景象吗，当然不能。然而，苹果与微软这两个老冤家在1997年却建立了合作关系，这委实令人诧异。 在苹果经历了12年的经营亏损后，乔布斯需要很快为苹果注入新的资金。因此，他开始向比尔.盖茨寻求合作，盖茨最终向苹果投资了1.5亿美元。 2. 开发亮丽性感的产品 作为一名伟大的推销员，乔布斯深知产品外观美感的重要性，他也意识到苹果产品看起来已经过时。乔布斯在1998年苹果的一次会议中表示，“你一直公司现在的问题是什么吗？公司的产品外观非常糟糕，没有一点性感美学元素在里面。”如今，苹果开发的产品个个性感十足。 3.变革原始的商业规划，树立新的发展蓝图 苹果最初只是一家生产电脑的公司，乔布斯知道如果公司要想取得真正的成功，就必须改变这种单一性。后来，苹果MP3，iPhone，iPad等相继 问世，取得了巨大成功。乔布斯也在2007年将公司的名字从Apple Computer Inc.改为Apple Inc.，这也象征了公司的更新更广阔的发展蓝图。 4. 开创新的解决方案来逾越看似不可逾越的障碍 过去很长一段时间，很多销售商都没有足够重视苹果产品。乔布斯是如果解决这个问题的呢？他开创了苹果商店。现在苹果商店已经遍布全球，成为该领域的佼佼者。 5. 主动告诉消费者他们需要什么，不能消极地等待消费者的信息回馈 乔布斯一向采用的方式是，在消费者知道自己需要什么之前告诉他们需要什么。苹果有能力使用户购买他们曾经认为不需要的产品。 6. 连点成面 苹果推出的产品不仅极具创新性，而且不同的产品之间还能够有机融合。iPod和iTune是完美组合，iPad和iPhone在应用店中也是彼此呼应。乔布斯曾经说过，“创新就是将不同的事物有机连接起来，连点成面，形成合力。” 7. 员工雇佣标准不能千篇一律 不是只有常春藤的毕业生才能经营公司。乔布斯曾经就说，“苹果曾经开发的Macintosh计算机之所以能取得巨大的成功是因为计算机开发人员的多样性，有音乐家，诗人，也有艺术家和历史学家，他们最终成为了世界上最出色的电脑专家。” 8. 鼓励别人以不同的方式思考 苹果在20世纪90年代末发起过一个以“Think Different”为主题的广告设计大赛，并取得了巨大成功，它激起了人们的创新发明意识，也正是这些造就了今天的苹果。 9. 使产品简单化 简单的用户体验才是王道。苹果的设计师Jonathan Ives曾说过，“无论我们开发什么产品，我们都会尽最大努力使产品变得简单易用，因为人们天生青睐简单易用的产品。” 10. 销售的是梦想，而不仅仅是产品 乔布斯总能给人这样一种感觉，用户购买的不是苹果产品本身，而是产品的象征意义。要记住，人们最关心的还在他们自己，所以要让产品与用户产品连接，这样产品对用户就有不一样的意义。 via BI 原创内容，转载请注明： 转载自拈花微笑 本文链接地址: 乔布斯的10个经营理念成就了今天的苹果 [zz]<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F01%2F01%2F1323%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F26%2F11684%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">applewoods: 2008 年 Apple 回顾 [zz]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F09%2F11765%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F26%2F11684%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">走好，Steve</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F04%2F12962%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F26%2F11684%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">梦娜·辛普森悼兄长史蒂夫·乔布斯 [zz]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F12%2F30%2F10405%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F26%2F11684%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">apple.com.cn悄悄上了语音搜索？</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2006%2F03%2F21%2F147%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F26%2F11684%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">欢迎各位来上海</font>
                    </a>
                </td>
            </tr>
        <br/>
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">来自无觅网络的相关文章：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fxjeek.com%2F2011%2F10%2F2158.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F26%2F11684%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">令人伤心的早晨 苹果创始人乔布斯逝世 (@xjeek)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.wolfherder.com%2Farchives%2F731&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F26%2F11684%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Jobs教会了我们什么？ (@wolfherder)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fxjeek.com%2F2011%2F10%2F2293.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F26%2F11684%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">24k金镶钻的Apple MacBook Pro (@xjeek)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.wolfherder.com%2Farchives%2F857&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F26%2F11684%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">苹果回购股票：有钱没处花的苦恼 (@wolfherder)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jandou.com%2Fwe-love-apple.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F26%2F11684%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">设计师们&gt;&gt;我们都是苹果控 (@jandou)</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p>转自：<a href="http://www.36kr.com/p/42871.html" target="_blank">36氪</a></p>
<p>&nbsp;</p>
<p><img src="http://www.36kr.com/wp-content/uploads/2011/08/steve-jobs1.jpg" alt="" /></p>
<p>14年前，苹果还处在破产的边缘，如今，它已成为全球最令人艳羡的科技公司。乔布斯在苹果起死回生再到腾飞的过程中起到了不可替代的作用。然而人们更为关心的是，乔布斯究竟是如何做到这些的呢？</p>
<p><strong>1. 与竞争对手合作</strong></p>
<div><img src="http://www.36kr.com/wp-content/uploads/2011/08/partner-with-the-enemy1.jpg" alt="Partner with the enemy" /></div>
<p>你能想象百事可乐与可口可乐合作的景象吗，当然不能。然而，苹果与微软这两个老冤家在1997年却建立了合作关系，这委实令人诧异。</p>
<p>在苹果经历了12年的经营亏损后，乔布斯需要很快为苹果注入新的资金。因此，他开始向比尔.盖茨寻求合作，盖茨最终向苹果投资了1.5亿美元。</p>
<p><strong>2. 开发亮丽性感的产品</strong></p>
<div><img src="http://www.36kr.com/wp-content/uploads/2011/08/put-sex-in-products1.png" alt="Put sex in products" /></div>
<p>作为一名伟大的推销员，乔布斯深知产品外观美感的重要性，他也意识到苹果产品看起来已经过时。乔布斯在1998年苹果的一次会议中表示，“你一直公司现在的问题是什么吗？公司的产品外观非常糟糕，没有一点性感美学元素在里面。”如今，苹果开发的产品个个性感十足。</p>
<p><strong>3.变革原始的商业规划，树立新的发展蓝图</strong></p>
<div><img src="http://www.36kr.com/wp-content/uploads/2011/08/change-the-original-vision-and-business-plan1.jpg" alt="Change the original vision and business plan" /></div>
<p>苹果最初只是一家生产电脑的公司，乔布斯知道如果公司要想取得真正的成功，就必须改变这种单一性。后来，苹果MP3，iPhone，iPad等相继 问世，取得了巨大成功。乔布斯也在2007年将公司的名字从Apple Computer Inc.改为Apple Inc.，这也象征了公司的更新更广阔的发展蓝图。</p>
<p><strong>4. 开创新的解决方案来逾越看似不可逾越的障碍</strong></p>
<div><img src="http://www.36kr.com/wp-content/uploads/2011/08/create-solutions-to-impossible-roadblocks1.jpg" alt="Create solutions to impossible roadblocks" /></div>
<p>过去很长一段时间，很多销售商都没有足够重视苹果产品。乔布斯是如果解决这个问题的呢？他开创了苹果商店。现在苹果商店已经遍布全球，成为该领域的佼佼者。</p>
<p><strong>5. 主动告诉消费者他们需要什么，不能消极地等待消费者的信息回馈</strong></p>
<div><img src="http://www.36kr.com/wp-content/uploads/2011/08/tell-customers-what-they-want-instead-of-asking-for-feedback1.jpg" alt="Tell customers what they want instead of asking for feedback" /></div>
<p>乔布斯一向采用的方式是，在消费者知道自己需要什么之前告诉他们需要什么。苹果有能力使用户购买他们曾经认为不需要的产品。</p>
<p><strong>6. 连点成面</strong></p>
<div><img src="http://www.36kr.com/wp-content/uploads/2011/08/connect-dots1.jpg" alt="Connect dots" /></div>
<p>苹果推出的产品不仅极具创新性，而且不同的产品之间还能够有机融合。iPod和iTune是完美组合，iPad和iPhone在应用店中也是彼此呼应。乔布斯曾经说过，“创新就是将不同的事物有机连接起来，连点成面，形成合力。”</p>
<p><strong>7. 员工雇佣标准不能千篇一律</strong></p>
<div><img src="http://www.36kr.com/wp-content/uploads/2011/08/dont-hire-cookie-cutter-employees1.jpg" alt="Don't hire cookie cutter employees" /></div>
<p>不是只有常春藤的毕业生才能经营公司。乔布斯曾经就说，“苹果曾经开发的Macintosh计算机之所以能取得巨大的成功是因为计算机开发人员的多样性，有音乐家，诗人，也有艺术家和历史学家，他们最终成为了世界上最出色的电脑专家。”</p>
<p><strong>8. 鼓励别人以不同的方式思考</strong></p>
<div><img src="http://www.36kr.com/wp-content/uploads/2011/08/encourage-others-to-think-differently1.jpg" alt="Encourage others to think differently" /></div>
<p>苹果在20世纪90年代末发起过一个以“Think Different”为主题的广告设计大赛，并取得了巨大成功，它激起了人们的创新发明意识，也正是这些造就了今天的苹果。</p>
<p><strong>9. 使产品简单化</strong></p>
<div><img src="http://www.36kr.com/wp-content/uploads/2011/08/dont-elaborate1.jpg" alt="Don't elaborate" /></div>
<p>简单的用户体验才是王道。苹果的设计师Jonathan Ives曾说过，“无论我们开发什么产品，我们都会尽最大努力使产品变得简单易用，因为人们天生青睐简单易用的产品。”</p>
<p><strong>10. 销售的是梦想，而不仅仅是产品</strong></p>
<div><img src="http://www.36kr.com/wp-content/uploads/2011/08/sell-dreams-not-products1.jpg" alt="Sell dreams, not products" /></div>
<p>乔布斯总能给人这样一种感觉，用户购买的不是苹果产品本身，而是产品的象征意义。要记住，人们最关心的还在他们自己，所以要让产品与用户产品连接，这样产品对用户就有不一样的意义。</p>
<p>via <a href="http://www.businessinsider.com/11-unusual-ways-steve-jobs-made-apple-the-worlds-most-admired-tech-company-2011-8#" target="_blank">BI</a>
<div style="margin-top: 15px; font-style: italic">
<p><strong>原创内容，转载请注明：</strong> 转载自<a href="http://www.jayxu.com/">拈花微笑</a></p>
<p><strong>本文链接地址:</strong> <a href="http://www.jayxu.com/2011/08/26/11684/">乔布斯的10个经营理念成就了今天的苹果 [zz]</a></p>
</div>
<p><a href="http://www.bshare.cn/share?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F26%2F11684%2F&title=%E4%B9%94%E5%B8%83%E6%96%AF%E7%9A%8410%E4%B8%AA%E7%BB%8F%E8%90%A5%E7%90%86%E5%BF%B5%E6%88%90%E5%B0%B1%E4%BA%86%E4%BB%8A%E5%A4%A9%E7%9A%84%E8%8B%B9%E6%9E%9C+%5Bzz%5D" title="用bShare分享或收藏本文"><img src="http://static.bshare.cn/frame/images/button_custom1-zh.gif" alt="用bShare分享或收藏本文" /></a></p><table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F01%2F01%2F1323%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F26%2F11684%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">applewoods: 2008 年 Apple 回顾 [zz]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F09%2F11765%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F26%2F11684%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">走好，Steve</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F04%2F12962%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F26%2F11684%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">梦娜·辛普森悼兄长史蒂夫·乔布斯 [zz]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F12%2F30%2F10405%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F26%2F11684%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">apple.com.cn悄悄上了语音搜索？</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2006%2F03%2F21%2F147%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F26%2F11684%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">欢迎各位来上海</font>
                    </a>
                </td>
            </tr>
        <br/>
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">来自无觅网络的相关文章：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fxjeek.com%2F2011%2F10%2F2158.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F26%2F11684%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">令人伤心的早晨 苹果创始人乔布斯逝世 (@xjeek)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.wolfherder.com%2Farchives%2F731&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F26%2F11684%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Jobs教会了我们什么？ (@wolfherder)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fxjeek.com%2F2011%2F10%2F2293.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F26%2F11684%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">24k金镶钻的Apple MacBook Pro (@xjeek)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.wolfherder.com%2Farchives%2F857&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F26%2F11684%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">苹果回购股票：有钱没处花的苦恼 (@wolfherder)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jandou.com%2Fwe-love-apple.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F26%2F11684%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">设计师们&gt;&gt;我们都是苹果控 (@jandou)</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.jayxu.com/2011/08/26/11684/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>一周tweets更新 [2011-08-22]</title>
		<link>http://www.jayxu.com/2011/08/22/11655/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=%25e4%25b8%2580%25e5%2591%25a8tweets%25e6%259b%25b4%25e6%2596%25b0-2011-08-22</link>
		<comments>http://www.jayxu.com/2011/08/22/11655/#comments</comments>
		<pubDate>Sun, 21 Aug 2011 17:30:00 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[tweets]]></category>

		<guid isPermaLink="false">http://www.jayxu.com/2011/08/22/11655/</guid>
		<description><![CDATA[Lotus Symphony // IBM&#039;s online file sharing app http://t.co/3jBMAln # 国税总局：“年终奖计税方法调整”公告系伪造 // 潜台词就是，还是会出现多1块多缴30000的情况呗。想想也是，从国税兜里拿回30000，跟抢劫有什么区别？你们这些屁民不要命了？！ http://t.co/ky7oOIz # 重听Lou Bega的《I Got Style》。第一句，You are from a royal family tree, and I don&#039;t even have a family。高中听时开心地笑笑，现在听着心酸地笑笑。再过10年重听，不知会做何表情 # #Linode 节点速度实测 http://t.co/GbJlJeZ #互联网生活 # 一周tweets更新 [2011-08-15] http://t.co/CtLbFHg #tweets # Google + Motorola &#124; 拈花微笑 http://t.co/9EsmZAP # CCAV报道李 克 强视察香港，香港30%的人口住公屋，报道中老李亲切看望了一个住公屋的工程师，说中央和香港政府将是你们的坚强后盾，生活会越来越美好。看完之后的感觉是，韦迪探望巴西国家队，亲切地告诉队员，你们踢得不错啊，要再接再厉啊，我们其实差得不是太远…… # CCAV有关京津高铁降速的报道，充满了“才慢了3分钟”，“便宜了5块钱”，“赠送的矿泉水没有取消”等狗屁话。完全就是一篇红果果的狗腿子样板报道。尼玛慢一点没关系干嘛花纳税人的钱修高铁？干嘛把速度拉这么高？你不都世界领先了么，开这么慢不屈才么？ <a href="http://www.jayxu.com/2011/08/22/11655/"> read more <span class="meta-nav">&#187;</span></a><table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F11%2F30%2F10311%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F22%2F11655%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2010-11-30]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F10%2F25%2F1782%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F22%2F11655%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2009-10-25]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F19%2F11712%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F22%2F11655%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2011-09-19]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F03%2F07%2F1446%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F22%2F11655%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2009-03-07]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2008%2F11%2F15%2F851%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F22%2F11655%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2008-11-15]</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li>Lotus Symphony // IBM&#039;s online file sharing app<br />
<a href="http://t.co/3jBMAln" rel="nofollow">http://t.co/3jBMAln</a> <a href="http://twitter.com/jayxu/statuses/102955495941357568" class="aktt_tweet_time">#</a></li>
<li>国税总局：“年终奖计税方法调整”公告系伪造 // 潜台词就是，还是会出现多1块多缴30000的情况呗。想想也是，从国税兜里拿回30000，跟抢劫有什么区别？你们这些屁民不要命了？！<br />
<a href="http://t.co/ky7oOIz" rel="nofollow">http://t.co/ky7oOIz</a> <a href="http://twitter.com/jayxu/statuses/103007690413973504" class="aktt_tweet_time">#</a></li>
<li>重听Lou Bega的《I Got Style》。第一句，You are from a royal family tree, and I don&#039;t even have a family。高中听时开心地笑笑，现在听着心酸地笑笑。再过10年重听，不知会做何表情 <a href="http://twitter.com/jayxu/statuses/103043901073522688" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23Linode" class="aktt_hashtag">Linode</a> 节点速度实测 <a href="http://t.co/GbJlJeZ" rel="nofollow">http://t.co/GbJlJeZ</a> #互联网生活 <a href="http://twitter.com/jayxu/statuses/103094419070255104" class="aktt_tweet_time">#</a></li>
<li>一周tweets更新 [2011-08-15] <a href="http://t.co/CtLbFHg" rel="nofollow">http://t.co/CtLbFHg</a> #<a href="http://search.twitter.com/search?q=%23tweets" class="aktt_hashtag">tweets</a> <a href="http://twitter.com/jayxu/statuses/103094433393815553" class="aktt_tweet_time">#</a></li>
<li>Google + Motorola | 拈花微笑<br />
<a href="http://t.co/9EsmZAP" rel="nofollow">http://t.co/9EsmZAP</a> <a href="http://twitter.com/jayxu/statuses/103325675448045569" class="aktt_tweet_time">#</a></li>
<li>CCAV报道李 克 强视察香港，香港30%的人口住公屋，报道中老李亲切看望了一个住公屋的工程师，说中央和香港政府将是你们的坚强后盾，生活会越来越美好。看完之后的感觉是，韦迪探望巴西国家队，亲切地告诉队员，你们踢得不错啊，要再接再厉啊，我们其实差得不是太远…… <a href="http://twitter.com/jayxu/statuses/103426929151066112" class="aktt_tweet_time">#</a></li>
<li>CCAV有关京津高铁降速的报道，充满了“才慢了3分钟”，“便宜了5块钱”，“赠送的矿泉水没有取消”等狗屁话。完全就是一篇红果果的狗腿子样板报道。尼玛慢一点没关系干嘛花纳税人的钱修高铁？干嘛把速度拉这么高？你不都世界领先了么，开这么慢不屈才么？ <a href="http://twitter.com/jayxu/statuses/103428828097032192" class="aktt_tweet_time">#</a></li>
<li>快看CCAV，焦点访谈曝光“脊梁”奖。奇迹啊，内讧了么，要扒倪奶奶的里子么 <a href="http://twitter.com/jayxu/statuses/103431550238068736" class="aktt_tweet_time">#</a></li>
<li>ccav 6，唐伯虎点秋香 <a href="http://twitter.com/jayxu/statuses/103792300873887744" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23Google" class="aktt_hashtag">Google</a> + #<a href="http://search.twitter.com/search?q=%23Motorola" class="aktt_hashtag">Motorola</a> <a href="http://t.co/FRLV6Sl" rel="nofollow">http://t.co/FRLV6Sl</a> #互联网生活 #<a href="http://search.twitter.com/search?q=%23android" class="aktt_hashtag">android</a> <a href="http://twitter.com/jayxu/statuses/104155447187091456" class="aktt_tweet_time">#</a></li>
<li>About the OS X Lion v10.7.1 Update // Lion更新至10.7.1<br />
<a href="http://t.co/OIc4WjF" rel="nofollow">http://t.co/OIc4WjF</a> <a href="http://twitter.com/jayxu/statuses/104845346236153856" class="aktt_tweet_time">#</a></li>
<li>北航西门终于拆得快差不多了 <a href="http://twitter.com/jayxu/statuses/104867399651700736" class="aktt_tweet_time">#</a></li>
</ul>
<div style="margin-top: 15px; font-style: italic">
<p><strong>原创内容，转载请注明：</strong> 转载自<a href="http://www.jayxu.com/">拈花微笑</a></p>
<p><strong>本文链接地址:</strong> <a href="http://www.jayxu.com/2011/08/22/11655/">一周tweets更新 [2011-08-22]</a></p>
</div>
<p><a href="http://www.bshare.cn/share?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F22%2F11655%2F&title=%E4%B8%80%E5%91%A8tweets%E6%9B%B4%E6%96%B0+%5B2011-08-22%5D" title="用bShare分享或收藏本文"><img src="http://static.bshare.cn/frame/images/button_custom1-zh.gif" alt="用bShare分享或收藏本文" /></a></p><table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F11%2F30%2F10311%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F22%2F11655%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2010-11-30]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F10%2F25%2F1782%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F22%2F11655%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2009-10-25]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F19%2F11712%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F22%2F11655%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2011-09-19]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F03%2F07%2F1446%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F22%2F11655%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2009-03-07]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2008%2F11%2F15%2F851%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F22%2F11655%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2008-11-15]</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.jayxu.com/2011/08/22/11655/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google + Motorola</title>
		<link>http://www.jayxu.com/2011/08/16/11645/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=google-motorola</link>
		<comments>http://www.jayxu.com/2011/08/16/11645/#comments</comments>
		<pubDate>Tue, 16 Aug 2011 04:40:24 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[互联网生活]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[motorola]]></category>

		<guid isPermaLink="false">http://www.jayxu.com/?p=11645</guid>
		<description><![CDATA[昨晚劲爆消息，Google斥资125亿美元以40美元一股的价格收购摩托罗拉移动事业部全部股权。今天一早，各大网站纷纷撰文，对此次收购进行剖析、猜测、展望，现收集如下： 谷奥：Google 收购摩托罗拉移动的赢家和输家 Gigaom：With Motorola, Google TV just got a huge shot in the arm 月光博客：谷歌收购摩托罗拉移动 瘾科技：Google 宣布将收购 Motorola Mobility，后者仍然会继续独立运作 小姜杂谈：Google 买下 Moto，葫芦里到底卖的是什么药？ 36氪：Google 收购摩托罗拉，诺基亚、三星、HTC 和其他厂家的回应 收购背后：摩托罗拉移动差点落入微软之手 对牛乱弹琴：有板有眼：Google如何利用Moto的专利来帮助Android开发商？ 原创内容，转载请注明： 转载自拈花微笑 本文链接地址: Google + Motorola<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F04%2F21%2F2138%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F16%2F11645%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">【近期的校内犀利状态】、不解释 [zz]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2008%2F05%2F03%2F351%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F16%2F11645%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">悼小白</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F10%2F09%2F2441%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F16%2F11645%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">全球一致的选择</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F12%2F15%2F1934%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F16%2F11645%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">2009盘点（from 艾未未，持续更新中）</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2008%2F06%2F25%2F409%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F16%2F11645%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">为了甲壳虫，奋斗</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p>昨晚劲爆消息，Google斥资125亿美元以40美元一股的价格收购摩托罗拉移动事业部全部股权。今天一早，各大网站纷纷撰文，对此次收购进行剖析、猜测、展望，现收集如下：</p>
<p>谷奥：<a href="http://www.guao.hk/posts/google-motorola-here-are-the-winners-and-losers.html" target="_blank">Google 收购摩托罗拉移动的赢家和输家</a></p>
<p>Gigaom：<a href="http://gigaom.com/video/google-tv-motorola/?utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed%3A+OmMalik+%28GigaOM%3A+Tech%29" target="_blank">With Motorola, Google TV just got a huge shot in the arm</a></p>
<p>月光博客：<a href="http://www.williamlong.info/archives/2774.html" target="_blank">谷歌收购摩托罗拉移动</a></p>
<p>瘾科技：<a href="http://cn.engadget.com/2011/08/15/google-acquiring-motorola-mobility/" target="_blank">Google 宣布将收购 Motorola Mobility，后者仍然会继续独立运作</a></p>
<p><a href="http://cn.engadget.com/2011/08/15/on-googles-motorola-mobility-acquisition/" target="_blank">小姜杂谈：Google 买下 Moto，葫芦里到底卖的是什么药？</a></p>
<p>36氪：<a href="http://www.36kr.com/p/40321.html" target="_blank">Google 收购摩托罗拉，诺基亚、三星、HTC 和其他厂家的回应</a></p>
<p><a href="http://www.36kr.com/p/40305.html" target="_blank">收购背后：摩托罗拉移动差点落入微软之手</a></p>
<p>对牛乱弹琴：<a href="http://blog.donews.com/keso/archive/2011/08/16/1583725.aspx" target="_blank">有板有眼：Google如何利用Moto的专利来帮助Android开发商？</a></p>
<p><a href="http://www.jayxu.com/log/wp-content/uploads/2011/08/2774_1.jpg"><img alt="" class="alignnone size-full wp-image-11647" height="200" src="http://www.jayxu.com/log/wp-content/uploads/2011/08/2774_1.jpg" title="2774_1" width="300" /></a></p>
<div style="margin-top: 15px; font-style: italic">
<p><strong>原创内容，转载请注明：</strong> 转载自<a href="http://www.jayxu.com/">拈花微笑</a></p>
<p><strong>本文链接地址:</strong> <a href="http://www.jayxu.com/2011/08/16/11645/">Google + Motorola</a></p>
</div>
<p><a href="http://www.bshare.cn/share?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F16%2F11645%2F&title=Google+%2B+Motorola" title="用bShare分享或收藏本文"><img src="http://static.bshare.cn/frame/images/button_custom1-zh.gif" alt="用bShare分享或收藏本文" /></a></p><table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F05%2F17%2F1496%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F16%2F11645%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Country Codes of the World</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F08%2F04%2F1680%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F16%2F11645%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">iTunes Store 中国 已开放注册</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F03%2F05%2F1441%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F16%2F11645%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">慎用LinkedXxxx集合</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F06%2F10%2F1525%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F16%2F11645%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">你在天堂过得怎样</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2008%2F03%2F06%2F290%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F16%2F11645%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">苹果上连病毒都这么艺术……</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.jayxu.com/2011/08/16/11645/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>一周tweets更新 [2011-08-15]</title>
		<link>http://www.jayxu.com/2011/08/15/11644/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=%25e4%25b8%2580%25e5%2591%25a8tweets%25e6%259b%25b4%25e6%2596%25b0-2011-08-15</link>
		<comments>http://www.jayxu.com/2011/08/15/11644/#comments</comments>
		<pubDate>Sun, 14 Aug 2011 17:30:00 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[tweets]]></category>

		<guid isPermaLink="false">http://www.jayxu.com/2011/08/15/11644/</guid>
		<description><![CDATA[总理，公开透明的事故原因调查和事故处理结果出来了么？ # About “#IBM Rational XML ODBC Driver could not be loaded due to system error 126″ when… http://goo.gl/fb/5oCSd # 一周tweets更新 [2011-08-08] http://goo.gl/fb/ajDVH #tweets # 终于到家了，西二旗到五道口都花了一个小时，住天通苑，南城的童鞋们，祝福你们… # Otters sleep holding hands http://goo.gl/fb/dAWrp #生活 #爱情 # Resolve “java.lang.RuntimePermission createClassLoader” for #WAS http://goo.gl/fb/6jI1Y #技术生活 #ibm #insight # Don’t Use #Java 7, For Anything [zz] http://goo.gl/fb/Guocw #技术生活 #oracle <a href="http://www.jayxu.com/2011/08/15/11644/"> read more <span class="meta-nav">&#187;</span></a><table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F04%2F25%2F1486%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F15%2F11644%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2009-04-25]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F10%2F25%2F1782%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F15%2F11644%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2009-10-25]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F17%2F11779%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F15%2F11644%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2011-10-17]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F24%2F12937%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F15%2F11644%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2011-10-24]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F10%2F05%2F2440%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F15%2F11644%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2010-10-05]</font>
                    </a>
                </td>
            </tr>
        <br/>
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">来自无觅网络的相关文章：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.mianfeidi.com%2F2011%2Ftweetattacks2-cracked.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F15%2F11644%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">TweetAttacks2：Twitter营销利器 (@mianfeidi)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.caodanshi.com%2F2011%2F824.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F15%2F11644%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">#操蛋事#824-周杰轮 (@caodanshi)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.caodanshi.com%2F2011%2F13223.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F15%2F11644%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">还我一P (@caodanshi)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.caodanshi.com%2F2011%2F1109.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F15%2F11644%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">吐一口血 (@caodanshi)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.caodanshi.com%2F2011%2F245.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F15%2F11644%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">打我一下 (@caodanshi)</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li>总理，公开透明的事故原因调查和事故处理结果出来了么？ <a href="http://twitter.com/jayxu/statuses/100786940227497984" class="aktt_tweet_time">#</a></li>
<li>About “#IBM Rational XML ODBC Driver could not be loaded due to system error 126″ when… <a href="http://goo.gl/fb/5oCSd" rel="nofollow">http://goo.gl/fb/5oCSd</a> <a href="http://twitter.com/jayxu/statuses/100833069619101696" class="aktt_tweet_time">#</a></li>
<li>一周tweets更新 [2011-08-08] <a href="http://goo.gl/fb/ajDVH" rel="nofollow">http://goo.gl/fb/ajDVH</a> #<a href="http://search.twitter.com/search?q=%23tweets" class="aktt_hashtag">tweets</a> <a href="http://twitter.com/jayxu/statuses/100833074731941888" class="aktt_tweet_time">#</a></li>
<li>终于到家了，西二旗到五道口都花了一个小时，住天通苑，南城的童鞋们，祝福你们… <a href="http://twitter.com/jayxu/statuses/100886550631546881" class="aktt_tweet_time">#</a></li>
<li>Otters sleep holding hands <a href="http://goo.gl/fb/dAWrp" rel="nofollow">http://goo.gl/fb/dAWrp</a> #生活 #爱情 <a href="http://twitter.com/jayxu/statuses/101193041125195776" class="aktt_tweet_time">#</a></li>
<li>Resolve “java.lang.RuntimePermission createClassLoader” for #<a href="http://search.twitter.com/search?q=%23WAS" class="aktt_hashtag">WAS</a> <a href="http://goo.gl/fb/6jI1Y" rel="nofollow">http://goo.gl/fb/6jI1Y</a> #技术生活 #<a href="http://search.twitter.com/search?q=%23ibm" class="aktt_hashtag">ibm</a> #insight <a href="http://twitter.com/jayxu/statuses/101193042458980352" class="aktt_tweet_time">#</a></li>
<li>Don’t Use #<a href="http://search.twitter.com/search?q=%23Java" class="aktt_hashtag">Java</a> 7, For Anything [zz] <a href="http://goo.gl/fb/Guocw" rel="nofollow">http://goo.gl/fb/Guocw</a> #技术生活 #<a href="http://search.twitter.com/search?q=%23oracle" class="aktt_hashtag">oracle</a> <a href="http://twitter.com/jayxu/statuses/101204857725272064" class="aktt_tweet_time">#</a></li>
<li>家里的无线猫太给力了，坐楼底下小花园里都有信号… <a href="http://twitter.com/jayxu/statuses/101249813949063168" class="aktt_tweet_time">#</a></li>
<li>高铁降速，列车召回。打着旗号是保障安全，保障安全干嘛还赶着七一献礼？现在等于承认开不了这么快，列车质量也有问题。这就算处理完了？调查结果是什么？相关人员怎么处理？降速调整运行图，那花纳税人的钱修这铁路干毛？！ <a href="http://twitter.com/jayxu/statuses/101695105873879041" class="aktt_tweet_time">#</a></li>
</ul>
<div style="margin-top: 15px; font-style: italic">
<p><strong>原创内容，转载请注明：</strong> 转载自<a href="http://www.jayxu.com/">拈花微笑</a></p>
<p><strong>本文链接地址:</strong> <a href="http://www.jayxu.com/2011/08/15/11644/">一周tweets更新 [2011-08-15]</a></p>
</div>
<p><a href="http://www.bshare.cn/share?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F15%2F11644%2F&title=%E4%B8%80%E5%91%A8tweets%E6%9B%B4%E6%96%B0+%5B2011-08-15%5D" title="用bShare分享或收藏本文"><img src="http://static.bshare.cn/frame/images/button_custom1-zh.gif" alt="用bShare分享或收藏本文" /></a></p><table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F04%2F25%2F1486%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F15%2F11644%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2009-04-25]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F10%2F25%2F1782%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F15%2F11644%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2009-10-25]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F17%2F11779%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F15%2F11644%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2011-10-17]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F24%2F12937%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F15%2F11644%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2011-10-24]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F10%2F05%2F2440%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F15%2F11644%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2010-10-05]</font>
                    </a>
                </td>
            </tr>
        <br/>
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">来自无觅网络的相关文章：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.mianfeidi.com%2F2011%2Ftweetattacks2-cracked.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F15%2F11644%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">TweetAttacks2：Twitter营销利器 (@mianfeidi)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.caodanshi.com%2F2011%2F824.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F15%2F11644%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">#操蛋事#824-周杰轮 (@caodanshi)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.caodanshi.com%2F2011%2F13223.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F15%2F11644%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">还我一P (@caodanshi)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.caodanshi.com%2F2011%2F1109.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F15%2F11644%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">吐一口血 (@caodanshi)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.caodanshi.com%2F2011%2F245.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F15%2F11644%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">打我一下 (@caodanshi)</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.jayxu.com/2011/08/15/11644/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linode 节点速度实测</title>
		<link>http://www.jayxu.com/2011/08/14/11638/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=linode-%25e8%258a%2582%25e7%2582%25b9%25e9%2580%259f%25e5%25ba%25a6%25e5%25ae%259e%25e6%25b5%258b</link>
		<comments>http://www.jayxu.com/2011/08/14/11638/#comments</comments>
		<pubDate>Sun, 14 Aug 2011 13:18:54 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[互联网生活]]></category>
		<category><![CDATA[linode]]></category>

		<guid isPermaLink="false">http://www.jayxu.com/?p=11638</guid>
		<description><![CDATA[测试地址：http://www.linode.com/speedtest/ 测试截图（公司） 原创内容，转载请注明： 转载自拈花微笑 本文链接地址: Linode 节点速度实测<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F24%2F13085%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F14%2F11638%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">在Ubuntu下配置L2TP</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2005%2F07%2F29%2F9871%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F14%2F11638%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">吃着碗里的，想着锅里的</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F01%2F29%2F2032%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F14%2F11638%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">别了，sun.com</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2007%2F02%2F06%2F106%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F14%2F11638%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">窃网不算偷</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F02%2F17%2F9961%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F14%2F11638%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">玫瑰</font>
                    </a>
                </td>
            </tr>
        <br/>
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">来自无觅网络的相关文章：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.sinovale.com%2Fhtml%2F2202.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F14%2F11638%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">选主机就是选机房 (@sinovale)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.sinovale.com%2Fhtml%2F1639.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F14%2F11638%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">从SAE搬家了 (@sinovale)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jandou.com%2Fpirates-of-the-caribbean-4-hd-seed.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F14%2F11638%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">《速度与激情5》最新高清种子[720P] (@jandou)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fbfya.com%2Fchinamobile-3g&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F14%2F11638%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">移动3G网络速度测试 (@bfya)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fdongdong.im%2F322&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F14%2F11638%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">速度秀:CHDBits里的大水管真多! (@dongdong)</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p>测试地址：<a href="http://www.linode.com/speedtest/" target="_blank">http://www.linode.com/speedtest/</a></p>
<p>测试截图（公司）</p>
<p>
	<a href="http://www.jayxu.com/log/wp-content/uploads/2011/08/无标题.png"><img alt="" class="alignnone size-full wp-image-11640" src="http://www.jayxu.com/log/wp-content/uploads/2011/08/无标题.png" style="width: 460px; height: 272px;" title="无标题" /></a></p>
<div style="margin-top: 15px; font-style: italic">
<p><strong>原创内容，转载请注明：</strong> 转载自<a href="http://www.jayxu.com/">拈花微笑</a></p>
<p><strong>本文链接地址:</strong> <a href="http://www.jayxu.com/2011/08/14/11638/">Linode 节点速度实测</a></p>
</div>
<p><a href="http://www.bshare.cn/share?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F14%2F11638%2F&title=Linode+%E8%8A%82%E7%82%B9%E9%80%9F%E5%BA%A6%E5%AE%9E%E6%B5%8B" title="用bShare分享或收藏本文"><img src="http://static.bshare.cn/frame/images/button_custom1-zh.gif" alt="用bShare分享或收藏本文" /></a></p><table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F11%2F24%2F13085%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F14%2F11638%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">在Ubuntu下配置L2TP</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2008%2F12%2F11%2F1269%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F14%2F11638%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">博客复活了～～</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F08%2F24%2F2400%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F14%2F11638%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2010-08-24]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F01%2F14%2F1974%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F14%2F11638%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Google创始人Sergey Brin和Larry Page谈Google</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2007%2F02%2F17%2F99%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F14%2F11638%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">上海好男人</font>
                    </a>
                </td>
            </tr>
        <br/>
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">来自无觅网络的相关文章：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.sinovale.com%2Fhtml%2F2202.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F14%2F11638%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">选主机就是选机房 (@sinovale)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.sinovale.com%2Fhtml%2F1639.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F14%2F11638%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">从SAE搬家了 (@sinovale)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jandou.com%2Fpirates-of-the-caribbean-4-hd-seed.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F14%2F11638%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">《速度与激情5》最新高清种子[720P] (@jandou)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fbfya.com%2Fchinamobile-3g&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F14%2F11638%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">移动3G网络速度测试 (@bfya)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fdongdong.im%2F322&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F14%2F11638%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">速度秀:CHDBits里的大水管真多! (@dongdong)</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.jayxu.com/2011/08/14/11638/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Don&#8217;t Use Java 7, For Anything [zz]</title>
		<link>http://www.jayxu.com/2011/08/10/11629/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=dont-use-java-7-for-anything-zz</link>
		<comments>http://www.jayxu.com/2011/08/10/11629/#comments</comments>
		<pubDate>Wed, 10 Aug 2011 08:08:36 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[技术生活]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[oracle]]></category>

		<guid isPermaLink="false">http://www.jayxu.com/?p=11629</guid>
		<description><![CDATA[From here. Shit happens, Oracle wanna risk the fame of Java?! &#160; Java 7 GA was released today, but as noted by Uwe Schindler, there are some very frightening bugs in HotSpot Loop optimizations that are enabled by default. In the best case scenario, these bugs cause the JVM to crash. In the worst case <a href="http://www.jayxu.com/2011/08/10/11629/"> read more <span class="meta-nav">&#187;</span></a><table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2012%2F02%2F02%2F13237%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F10%2F11629%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">有关Java泛型的类型擦除（type erasing）</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2005%2F11%2F07%2F171%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F10%2F11629%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Java 销魂落魄散  [zz]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F11%2F11%2F1809%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F10%2F11629%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">10 things all JAVA developers should know [zz]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F20%2F11718%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F10%2F11629%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Differences Among Greedy, Reluctant, and Possessive Quantifiers (for RexExp in Java)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F26%2F11723%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F10%2F11629%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">X and XX Usgaes for Java</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p>From <a href="http://www.lucidimagination.com/blog/2011/07/28/dont-use-java-7-for-anything/" target="_blank">here</a>. Shit happens, Oracle wanna risk the fame of Java?!</p>
<p>&nbsp;</p>
<p>Java 7 GA was <a href="http://mail.openjdk.java.net/pipermail/announce/2011-July/000106.html">released today</a>, but as noted by Uwe Schindler, there are some very frightening bugs in HotSpot Loop optimizations that are enabled by default. In the best case scenario, these bugs cause the JVM to crash. In the worst case scenario, they cause incorrect execution of loops.</p>
<p>Bottom Line: <a href="http://www.lucidimagination.com/search/document/1a0d3986e48a9348/warning_index_corruption_and_crashes_in_apache_lucene_core_apache_solr_with_java_7">Don&rsquo;t use Java 7</a> for anything (unless maybe you know you don&rsquo;t have any loops in your java code)</p>
<p><em>From: Uwe Schindler<br />
	Date: Thu, 28 Jul 2011 23:13:36 +0200<br />
	Subject: [WARNING] Index corruption and crashes in Apache Lucene Core / Apache Solr with Java 7</em></p>
<p><em>Hello Apache Lucene &amp; Apache Solr users,<br />
	Hello users of other Java-based Apache projects,</em></p>
<p><em>Oracle released Java 7 today. Unfortunately it contains hotspot compiler<br />
	optimizations, which miscompile some loops. This can affect code of several<br />
	Apache projects. Sometimes JVMs only crash, but in several cases, results<br />
	calculated can be incorrect, leading to bugs in applications (see Hotspot<br />
	bugs 7070134 [1], 7044738 [2], 7068051 [3]).</em></p>
<p><em>Apache Lucene Core and Apache Solr are two Apache projects, which are<br />
	affected by these bugs, namely all versions released until today. Solr users<br />
	with the default configuration will have Java crashing with SIGSEGV as soon<br />
	as they start to index documents, as one affected part is the well-known<br />
	Porter stemmer (see LUCENE-3335 [4]). Other loops in Lucene may be<br />
	miscompiled, too, leading to index corruption (especially on Lucene trunk<br />
	with pulsing codec; other loops may be affected, too &ndash; LUCENE-3346 [5]).</em></p>
<p><em>These problems were detected only 5 days before the official Java 7 release,<br />
	so Oracle had no time to fix those bugs, affecting also many more<br />
	applications. In response to our questions, they proposed to include the<br />
	fixes into service release u2 (eventually into service release u1, see [6]).<br />
	This means you cannot use Apache Lucene/Solr with Java 7 releases before<br />
	Update 2! If you do, please don&rsquo;t open bug reports, it is not the<br />
	committers&rsquo; fault! At least disable loop optimizations using the<br />
	-XX:-UseLoopPredicate JVM option to not risk index corruptions.</em></p>
<p><em>Please note: Also Java 6 users are affected, if they use one of those JVM<br />
	options, which are not enabled by default: -XX:+OptimizeStringConcat or<br />
	-XX:+AggressiveOpts</em></p>
<p><em>It is strongly recommended not to use any hotspot optimization switches in<br />
	any Java version without extensive testing!</em></p>
<p><em>In case you upgrade to Java 7, remember that you may have to reindex, as the<br />
	unicode version shipped with Java 7 changed and tokenization behaves<br />
	differently (e.g. lowercasing). For more information, read<br />
	JRE_VERSION_MIGRATION.txt in your distribution package!</em></p>
<p><em>On behalf of the Lucene project,<br />
	Uwe</em></p>
<p><em>[1] http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=7070134<br />
	[2] http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=7044738<br />
	[3] http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=7068051<br />
	[4] https://issues.apache.org/jira/browse/LUCENE-3335<br />
	[5] https://issues.apache.org/jira/browse/LUCENE-3346<br />
	[6] http://s.apache.org/StQ</em></p>
<div style="margin-top: 15px; font-style: italic">
<p><strong>原创内容，转载请注明：</strong> 转载自<a href="http://www.jayxu.com/">拈花微笑</a></p>
<p><strong>本文链接地址:</strong> <a href="http://www.jayxu.com/2011/08/10/11629/">Don&#8217;t Use Java 7, For Anything [zz]</a></p>
</div>
<p><a href="http://www.bshare.cn/share?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F10%2F11629%2F&title=Don%27t+Use+Java+7%2C+For+Anything+%5Bzz%5D" title="用bShare分享或收藏本文"><img src="http://static.bshare.cn/frame/images/button_custom1-zh.gif" alt="用bShare分享或收藏本文" /></a></p><table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2012%2F02%2F02%2F13237%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F10%2F11629%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">有关Java泛型的类型擦除（type erasing）</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2005%2F11%2F07%2F171%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F10%2F11629%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Java 销魂落魄散  [zz]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F11%2F11%2F1809%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F10%2F11629%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">10 things all JAVA developers should know [zz]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F20%2F11718%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F10%2F11629%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Differences Among Greedy, Reluctant, and Possessive Quantifiers (for RexExp in Java)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F26%2F11723%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F10%2F11629%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">X and XX Usgaes for Java</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.jayxu.com/2011/08/10/11629/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Resolve “Access denied (java.lang.RuntimePermission createClassLoader)” for WAS</title>
		<link>http://www.jayxu.com/2011/08/10/11623/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=resolve-java-lang-runtimepermission-createclassloader-for-was</link>
		<comments>http://www.jayxu.com/2011/08/10/11623/#comments</comments>
		<pubDate>Wed, 10 Aug 2011 04:03:36 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[技术生活]]></category>
		<category><![CDATA[ibm]]></category>
		<category><![CDATA[insight]]></category>
		<category><![CDATA[was]]></category>
		<category><![CDATA[websphere]]></category>

		<guid isPermaLink="false">http://www.jayxu.com/?p=11623</guid>
		<description><![CDATA[In my current project deploying Insight to WAS, I got the following exception when trying to access Insight: &#91;8/7/11 21:51:09:639 CDT&#93; 00000033 webapp        E com.ibm.ws.webcontainer.webapp.WebApp logError SRVE0293E: &#91;Servlet Error&#93;-&#91;javax.servlet.ServletException: SRVE0207E: Uncaught initialization exception created by servlet&#93;: java.security.AccessControlException: Access denied &#40;java.lang.RuntimePermission createClassLoader&#41;         at java.security.AccessController.checkPermission&#40;AccessController.java:108&#41;         at java.lang.SecurityManager.checkPermission&#40;SecurityManager.java:533&#41;         at com.ibm.ws.security.core.SecurityManager.checkPermission&#40;SecurityManager.java:211&#41;         at java.lang.SecurityManager.checkCreateClassLoader&#40;SecurityManager.java:595&#41;         at <a href="http://www.jayxu.com/2011/08/10/11623/"> read more <span class="meta-nav">&#187;</span></a><table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F05%2F11592%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F10%2F11623%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">About “IBM Rational XML ODBC Driver could not be loaded due to system error 126″ when Integrating ClearQuest with Insight</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F28%2F12947%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F10%2F11623%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">How do I connect my android phone to the IBM Wireless network?</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F06%2F07%2F10597%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F10%2F11623%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">IBM沃森背后的AI技术 [zz]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F06%2F16%2F10609%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F10%2F11623%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">IBM i Is Modern. Windows and UNIX Are Legacy.</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F28%2F12951%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F10%2F11623%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">关于『AWS GovCloud：Amazon把美国政府带至｢云｣上』</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p>In my current project deploying Insight to WAS, I got the following exception when trying to access Insight:</p>

<div class="bwp-syntax-block clearfix">
<div class="bwp-syntax-toolbar" style="right: 15px;" ><div class="bwp-syntax-control"><a href="javascript:;" class="bwp-syntax-source-switch" title="View Source Code"></a></div></div>
<div class="bwp-syntax-wrapper clearfix bwp-syntax-advanced"style=" height: 504px;"><div class="java"><ol><li class="li1"><div class="de1"><span class="br0">&#91;</span><span class="nu0">8</span><span class="sy0">/</span><span class="nu0">7</span><span class="sy0">/</span><span class="nu0">11</span> <span class="nu0">21</span><span class="sy0">:</span><span class="nu0">51</span><span class="sy0">:</span>09<span class="sy0">:</span><span class="nu0">639</span> CDT<span class="br0">&#93;</span> 00000033 webapp        E com.<span class="me1">ibm</span>.<span class="me1">ws</span>.<span class="me1">webcontainer</span>.<span class="me1">webapp</span>.<span class="me1">WebApp</span> logError SRVE0293E<span class="sy0">:</span> <span class="br0">&#91;</span>Servlet <span class="kw3">Error</span><span class="br0">&#93;</span><span class="sy0">-</span><span class="br0">&#91;</span>javax.<span class="me1">servlet</span>.<span class="me1">ServletException</span><span class="sy0">:</span> SRVE0207E<span class="sy0">:</span> Uncaught initialization exception created by servlet<span class="br0">&#93;</span><span class="sy0">:</span> java.<span class="me1">security</span>.<span class="kw3">AccessControlException</span><span class="sy0">:</span> Access denied <span class="br0">&#40;</span>java.<span class="me1">lang</span>.<span class="kw3">RuntimePermission</span> createClassLoader<span class="br0">&#41;</span></div></li>
<li class="li2"><div class="de2">        at java.<span class="me1">security</span>.<span class="kw3">AccessController</span>.<span class="me1">checkPermission</span><span class="br0">&#40;</span><span class="kw3">AccessController</span>.<span class="me1">java</span><span class="sy0">:</span><span class="nu0">108</span><span class="br0">&#41;</span></div></li>
<li class="li1"><div class="de1">        at java.<span class="me1">lang</span>.<span class="kw3">SecurityManager</span>.<span class="me1">checkPermission</span><span class="br0">&#40;</span><span class="kw3">SecurityManager</span>.<span class="me1">java</span><span class="sy0">:</span><span class="nu0">533</span><span class="br0">&#41;</span></div></li>
<li class="li2"><div class="de2">        at com.<span class="me1">ibm</span>.<span class="me1">ws</span>.<span class="me1">security</span>.<span class="me1">core</span>.<span class="kw3">SecurityManager</span>.<span class="me1">checkPermission</span><span class="br0">&#40;</span><span class="kw3">SecurityManager</span>.<span class="me1">java</span><span class="sy0">:</span><span class="nu0">211</span><span class="br0">&#41;</span></div></li>
<li class="li1"><div class="de1">        at java.<span class="me1">lang</span>.<span class="kw3">SecurityManager</span>.<span class="me1">checkCreateClassLoader</span><span class="br0">&#40;</span><span class="kw3">SecurityManager</span>.<span class="me1">java</span><span class="sy0">:</span><span class="nu0">595</span><span class="br0">&#41;</span></div></li>
<li class="li2"><div class="de2">        at java.<span class="me1">lang</span>.<span class="kw3">ClassLoader</span>.<span class="sy0">&lt;</span>init<span class="sy0">&gt;</span><span class="br0">&#40;</span><span class="kw3">ClassLoader</span>.<span class="me1">java</span><span class="sy0">:</span><span class="nu0">145</span><span class="br0">&#41;</span></div></li>
<li class="li1"><div class="de1">        at java.<span class="me1">security</span>.<span class="kw3">SecureClassLoader</span>.<span class="sy0">&lt;</span>init<span class="sy0">&gt;</span><span class="br0">&#40;</span><span class="kw3">SecureClassLoader</span>.<span class="me1">java</span><span class="sy0">:</span><span class="nu0">52</span><span class="br0">&#41;</span></div></li>
<li class="li2"><div class="de2">        at java.<span class="me1">net</span>.<span class="kw3">URLClassLoader</span>.<span class="sy0">&lt;</span>init<span class="sy0">&gt;</span><span class="br0">&#40;</span><span class="kw3">URLClassLoader</span>.<span class="me1">java</span><span class="sy0">:</span><span class="nu0">198</span><span class="br0">&#41;</span></div></li>
<li class="li1"><div class="de1">        at com.<span class="me1">cognos</span>.<span class="me1">pogo</span>.<span class="me1">isolation</span>.<span class="me1">ParanoidClassLoader</span>.<span class="sy0">&lt;</span>init<span class="sy0">&gt;</span><span class="br0">&#40;</span>ParanoidClassLoader.<span class="me1">java</span><span class="sy0">:</span><span class="nu0">95</span><span class="br0">&#41;</span></div></li>
<li class="li2"><div class="de2">        at com.<span class="me1">cognos</span>.<span class="me1">pogo</span>.<span class="me1">isolation</span>.<span class="me1">ParanoidClassLoader</span>$3.<span class="me1">run</span><span class="br0">&#40;</span>ParanoidClassLoader.<span class="me1">java</span><span class="sy0">:</span><span class="nu0">137</span><span class="br0">&#41;</span></div></li>
<li class="li1"><div class="de1">        at java.<span class="me1">security</span>.<span class="kw3">AccessController</span>.<span class="me1">doPrivileged</span><span class="br0">&#40;</span><span class="kw3">AccessController</span>.<span class="me1">java</span><span class="sy0">:</span><span class="nu0">202</span><span class="br0">&#41;</span></div></li>
<li class="li2"><div class="de2">        at com.<span class="me1">cognos</span>.<span class="me1">pogo</span>.<span class="me1">isolation</span>.<span class="me1">ParanoidClassLoader</span>.<span class="me1">newInstance</span><span class="br0">&#40;</span>ParanoidClassLoader.<span class="me1">java</span><span class="sy0">:</span><span class="nu0">135</span><span class="br0">&#41;</span></div></li>
<li class="li1"><div class="de1">        at com.<span class="me1">cognos</span>.<span class="me1">pogo</span>.<span class="me1">isolation</span>.<span class="me1">ServletWrapper</span>.<span class="me1">getParanoidClassLoader</span><span class="br0">&#40;</span>ServletWrapper.<span class="me1">java</span><span class="sy0">:</span><span class="nu0">304</span><span class="br0">&#41;</span></div></li>
<li class="li2"><div class="de2">        at com.<span class="me1">cognos</span>.<span class="me1">pogo</span>.<span class="me1">isolation</span>.<span class="me1">ServletWrapper</span>.<span class="me1">getClassLoader</span><span class="br0">&#40;</span>ServletWrapper.<span class="me1">java</span><span class="sy0">:</span><span class="nu0">183</span><span class="br0">&#41;</span></div></li>
<li class="li1"><div class="de1">        at com.<span class="me1">cognos</span>.<span class="me1">pogo</span>.<span class="me1">isolation</span>.<span class="me1">ServletWrapper</span>.<span class="me1">init</span><span class="br0">&#40;</span>ServletWrapper.<span class="me1">java</span><span class="sy0">:</span><span class="nu0">87</span><span class="br0">&#41;</span></div></li>
<li class="li2"><div class="de2">        at com.<span class="me1">ibm</span>.<span class="me1">ws</span>.<span class="me1">webcontainer</span>.<span class="me1">servlet</span>.<span class="me1">ServletWrapper</span>.<span class="me1">init</span><span class="br0">&#40;</span>ServletWrapper.<span class="me1">java</span><span class="sy0">:</span><span class="nu0">358</span><span class="br0">&#41;</span></div></li>
<li class="li1"><div class="de1">        at com.<span class="me1">ibm</span>.<span class="me1">ws</span>.<span class="me1">webcontainer</span>.<span class="me1">servlet</span>.<span class="me1">ServletWrapperImpl</span>.<span class="me1">init</span><span class="br0">&#40;</span>ServletWrapperImpl.<span class="me1">java</span><span class="sy0">:</span><span class="nu0">168</span><span class="br0">&#41;</span></div></li>
<li class="li2"><div class="de2">        at com.<span class="me1">ibm</span>.<span class="me1">ws</span>.<span class="me1">webcontainer</span>.<span class="me1">servlet</span>.<span class="me1">ServletWrapper</span>.<span class="me1">handleRequest</span><span class="br0">&#40;</span>ServletWrapper.<span class="me1">java</span><span class="sy0">:</span><span class="nu0">737</span><span class="br0">&#41;</span></div></li>
<li class="li1"><div class="de1">        at com.<span class="me1">ibm</span>.<span class="me1">ws</span>.<span class="me1">webcontainer</span>.<span class="me1">servlet</span>.<span class="me1">ServletWrapper</span>.<span class="me1">handleRequest</span><span class="br0">&#40;</span>ServletWrapper.<span class="me1">java</span><span class="sy0">:</span><span class="nu0">500</span><span class="br0">&#41;</span></div></li>
<li class="li2"><div class="de2">        at com.<span class="me1">ibm</span>.<span class="me1">ws</span>.<span class="me1">webcontainer</span>.<span class="me1">servlet</span>.<span class="me1">ServletWrapperImpl</span>.<span class="me1">handleRequest</span><span class="br0">&#40;</span>ServletWrapperImpl.<span class="me1">java</span><span class="sy0">:</span><span class="nu0">178</span><span class="br0">&#41;</span></div></li>
<li class="li1"><div class="de1">        at com.<span class="me1">ibm</span>.<span class="me1">ws</span>.<span class="me1">webcontainer</span>.<span class="me1">webapp</span>.<span class="me1">WebAppRequestDispatcher</span>.<span class="me1">forward</span><span class="br0">&#40;</span>WebAppRequestDispatcher.<span class="me1">java</span><span class="sy0">:</span><span class="nu0">341</span><span class="br0">&#41;</span></div></li>
<li class="li2"><div class="de2">        at com.<span class="me1">ibm</span>.<span class="me1">ws</span>.<span class="me1">webcontainer</span>.<span class="me1">extension</span>.<span class="me1">DefaultExtensionProcessor</span>.<span class="me1">handleRequest</span><span class="br0">&#40;</span>DefaultExtensionProcessor.<span class="me1">java</span><span class="sy0">:</span><span class="nu0">709</span><span class="br0">&#41;</span></div></li>
<li class="li1"><div class="de1">        at com.<span class="me1">ibm</span>.<span class="me1">ws</span>.<span class="me1">webcontainer</span>.<span class="me1">webapp</span>.<span class="me1">WebApp</span>.<span class="me1">handleRequest</span><span class="br0">&#40;</span>WebApp.<span class="me1">java</span><span class="sy0">:</span><span class="nu0">3810</span><span class="br0">&#41;</span></div></li>
<li class="li2"><div class="de2">        at com.<span class="me1">ibm</span>.<span class="me1">ws</span>.<span class="me1">webcontainer</span>.<span class="me1">webapp</span>.<span class="me1">WebGroup</span>.<span class="me1">handleRequest</span><span class="br0">&#40;</span>WebGroup.<span class="me1">java</span><span class="sy0">:</span><span class="nu0">276</span><span class="br0">&#41;</span></div></li>
<li class="li1"><div class="de1">        at com.<span class="me1">ibm</span>.<span class="me1">ws</span>.<span class="me1">webcontainer</span>.<span class="me1">WebContainer</span>.<span class="me1">handleRequest</span><span class="br0">&#40;</span>WebContainer.<span class="me1">java</span><span class="sy0">:</span><span class="nu0">931</span><span class="br0">&#41;</span></div></li>
<li class="li2"><div class="de2">        at com.<span class="me1">ibm</span>.<span class="me1">ws</span>.<span class="me1">webcontainer</span>.<span class="me1">WSWebContainer</span>.<span class="me1">handleRequest</span><span class="br0">&#40;</span>WSWebContainer.<span class="me1">java</span><span class="sy0">:</span><span class="nu0">1583</span><span class="br0">&#41;</span></div></li>
<li class="li1"><div class="de1">        at com.<span class="me1">ibm</span>.<span class="me1">ws</span>.<span class="me1">webcontainer</span>.<span class="me1">channel</span>.<span class="me1">WCChannelLink</span>.<span class="me1">ready</span><span class="br0">&#40;</span>WCChannelLink.<span class="me1">java</span><span class="sy0">:</span><span class="nu0">183</span><span class="br0">&#41;</span></div></li>
<li class="li2"><div class="de2">        at com.<span class="me1">ibm</span>.<span class="me1">ws</span>.<span class="me1">http</span>.<span class="me1">channel</span>.<span class="me1">inbound</span>.<span class="me1">impl</span>.<span class="me1">HttpInboundLink</span>.<span class="me1">handleDiscrimination</span><span class="br0">&#40;</span>HttpInboundLink.<span class="me1">java</span><span class="sy0">:</span><span class="nu0">455</span><span class="br0">&#41;</span></div></li>
<li class="li1"><div class="de1">        at com.<span class="me1">ibm</span>.<span class="me1">ws</span>.<span class="me1">http</span>.<span class="me1">channel</span>.<span class="me1">inbound</span>.<span class="me1">impl</span>.<span class="me1">HttpInboundLink</span>.<span class="me1">handleNewInformation</span><span class="br0">&#40;</span>HttpInboundLink.<span class="me1">java</span><span class="sy0">:</span><span class="nu0">384</span><span class="br0">&#41;</span></div></li>
<li class="li2"><div class="de2">        at com.<span class="me1">ibm</span>.<span class="me1">ws</span>.<span class="me1">http</span>.<span class="me1">channel</span>.<span class="me1">inbound</span>.<span class="me1">impl</span>.<span class="me1">HttpICLReadCallback</span>.<span class="me1">complete</span><span class="br0">&#40;</span>HttpICLReadCallback.<span class="me1">java</span><span class="sy0">:</span><span class="nu0">83</span><span class="br0">&#41;</span></div></li>
<li class="li1"><div class="de1">        at com.<span class="me1">ibm</span>.<span class="me1">ws</span>.<span class="me1">tcp</span>.<span class="me1">channel</span>.<span class="me1">impl</span>.<span class="me1">AioReadCompletionListener</span>.<span class="me1">futureCompleted</span><span class="br0">&#40;</span>AioReadCompletionListener.<span class="me1">java</span><span class="sy0">:</span><span class="nu0">165</span><span class="br0">&#41;</span></div></li>
<li class="li2"><div class="de2">        at com.<span class="me1">ibm</span>.<span class="me1">io</span>.<span class="me1">async</span>.<span class="me1">AbstractAsyncFuture</span>.<span class="me1">invokeCallback</span><span class="br0">&#40;</span>AbstractAsyncFuture.<span class="me1">java</span><span class="sy0">:</span><span class="nu0">217</span><span class="br0">&#41;</span></div></li>
<li class="li1"><div class="de1">        at com.<span class="me1">ibm</span>.<span class="me1">io</span>.<span class="me1">async</span>.<span class="me1">AsyncChannelFuture</span>.<span class="me1">fireCompletionActions</span><span class="br0">&#40;</span>AsyncChannelFuture.<span class="me1">java</span><span class="sy0">:</span><span class="nu0">161</span><span class="br0">&#41;</span></div></li>
<li class="li2"><div class="de2">        at com.<span class="me1">ibm</span>.<span class="me1">io</span>.<span class="me1">async</span>.<span class="me1">AsyncFuture</span>.<span class="me1">completed</span><span class="br0">&#40;</span>AsyncFuture.<span class="me1">java</span><span class="sy0">:</span><span class="nu0">138</span><span class="br0">&#41;</span></div></li>
<li class="li1"><div class="de1">        at com.<span class="me1">ibm</span>.<span class="me1">io</span>.<span class="me1">async</span>.<span class="me1">ResultHandler</span>.<span class="me1">complete</span><span class="br0">&#40;</span>ResultHandler.<span class="me1">java</span><span class="sy0">:</span><span class="nu0">204</span><span class="br0">&#41;</span></div></li>
<li class="li2"><div class="de2">        at com.<span class="me1">ibm</span>.<span class="me1">io</span>.<span class="me1">async</span>.<span class="me1">ResultHandler</span>.<span class="me1">runEventProcessingLoop</span><span class="br0">&#40;</span>ResultHandler.<span class="me1">java</span><span class="sy0">:</span><span class="nu0">775</span><span class="br0">&#41;</span></div></li>
<li class="li1"><div class="de1">        at com.<span class="me1">ibm</span>.<span class="me1">io</span>.<span class="me1">async</span>.<span class="me1">ResultHandler</span>$2.<span class="me1">run</span><span class="br0">&#40;</span>ResultHandler.<span class="me1">java</span><span class="sy0">:</span><span class="nu0">905</span><span class="br0">&#41;</span></div></li>
<li class="li2"><div class="de2">        at com.<span class="me1">ibm</span>.<span class="me1">ws</span>.<span class="me1">util</span>.<span class="me1">ThreadPool</span>$Worker.<span class="me1">run</span><span class="br0">&#40;</span>ThreadPool.<span class="me1">java</span><span class="sy0">:</span><span class="nu0">1550</span><span class="br0">&#41;</span><span class="sy0">&lt;/</span>init<span class="sy0">&gt;&lt;/</span>init<span class="sy0">&gt;&lt;/</span>init<span class="sy0">&gt;&lt;/</span>init<span class="sy0">&gt;</span></div></li>
</ol></div></div>
<div class="bwp-syntax-source"><pre class="no-parse">[8/7/11 21:51:09:639 CDT] 00000033 webapp        E com.ibm.ws.webcontainer.webapp.WebApp logError SRVE0293E: [Servlet Error]-[javax.servlet.ServletException: SRVE0207E: Uncaught initialization exception created by servlet]: java.security.AccessControlException: Access denied (java.lang.RuntimePermission createClassLoader)
        at java.security.AccessController.checkPermission(AccessController.java:108)
        at java.lang.SecurityManager.checkPermission(SecurityManager.java:533)
        at com.ibm.ws.security.core.SecurityManager.checkPermission(SecurityManager.java:211)
        at java.lang.SecurityManager.checkCreateClassLoader(SecurityManager.java:595)
        at java.lang.ClassLoader.&lt;init&gt;(ClassLoader.java:145)
        at java.security.SecureClassLoader.&lt;init&gt;(SecureClassLoader.java:52)
        at java.net.URLClassLoader.&lt;init&gt;(URLClassLoader.java:198)
        at com.cognos.pogo.isolation.ParanoidClassLoader.&lt;init&gt;(ParanoidClassLoader.java:95)
        at com.cognos.pogo.isolation.ParanoidClassLoader$3.run(ParanoidClassLoader.java:137)
        at java.security.AccessController.doPrivileged(AccessController.java:202)
        at com.cognos.pogo.isolation.ParanoidClassLoader.newInstance(ParanoidClassLoader.java:135)
        at com.cognos.pogo.isolation.ServletWrapper.getParanoidClassLoader(ServletWrapper.java:304)
        at com.cognos.pogo.isolation.ServletWrapper.getClassLoader(ServletWrapper.java:183)
        at com.cognos.pogo.isolation.ServletWrapper.init(ServletWrapper.java:87)
        at com.ibm.ws.webcontainer.servlet.ServletWrapper.init(ServletWrapper.java:358)
        at com.ibm.ws.webcontainer.servlet.ServletWrapperImpl.init(ServletWrapperImpl.java:168)
        at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:737)
        at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:500)
        at com.ibm.ws.webcontainer.servlet.ServletWrapperImpl.handleRequest(ServletWrapperImpl.java:178)
        at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.forward(WebAppRequestDispatcher.java:341)
        at com.ibm.ws.webcontainer.extension.DefaultExtensionProcessor.handleRequest(DefaultExtensionProcessor.java:709)
        at com.ibm.ws.webcontainer.webapp.WebApp.handleRequest(WebApp.java:3810)
        at com.ibm.ws.webcontainer.webapp.WebGroup.handleRequest(WebGroup.java:276)
        at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:931)
        at com.ibm.ws.webcontainer.WSWebContainer.handleRequest(WSWebContainer.java:1583)
        at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:183)
        at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink.java:455)
        at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewInformation(HttpInboundLink.java:384)
        at com.ibm.ws.http.channel.inbound.impl.HttpICLReadCallback.complete(HttpICLReadCallback.java:83)
        at com.ibm.ws.tcp.channel.impl.AioReadCompletionListener.futureCompleted(AioReadCompletionListener.java:165)
        at com.ibm.io.async.AbstractAsyncFuture.invokeCallback(AbstractAsyncFuture.java:217)
        at com.ibm.io.async.AsyncChannelFuture.fireCompletionActions(AsyncChannelFuture.java:161)
        at com.ibm.io.async.AsyncFuture.completed(AsyncFuture.java:138)
        at com.ibm.io.async.ResultHandler.complete(ResultHandler.java:204)
        at com.ibm.io.async.ResultHandler.runEventProcessingLoop(ResultHandler.java:775)
        at com.ibm.io.async.ResultHandler$2.run(ResultHandler.java:905)
        at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1550)&lt;/init&gt;&lt;/init&gt;&lt;/init&gt;&lt;/init&gt;</pre></div></div>

<p>After some research on the Internet, the issue was fixed by adding the following code to <code>/opt/ibm/RationalInsight/AppServer/profiles/RationalReport/properties/server.policy</code>:</p>

<div class="bwp-syntax-block clearfix">
<div class="bwp-syntax-toolbar"><div class="bwp-syntax-control"><a href="javascript:;" class="bwp-syntax-source-switch" title="View Source Code"></a></div></div>
<div class="bwp-syntax-wrapper clearfix bwp-syntax-advanced"><div class="java"><ol><li class="li1"><div class="de1">grant <span class="br0">&#123;</span></div></li>
<li class="li2"><div class="de2">&nbsp; permission java.<span class="me1">security</span>.<span class="kw3">AllPermission</span><span class="sy0">;</span></div></li>
<li class="li1"><div class="de1"><span class="br0">&#125;</span><span class="sy0">;</span></div></li>
</ol></div></div>
<div class="bwp-syntax-source"><pre class="no-parse">grant {
  permission java.security.AllPermission;
};</pre></div></div>

<div style="margin-top: 15px; font-style: italic">
<p><strong>原创内容，转载请注明：</strong> 转载自<a href="http://www.jayxu.com/">拈花微笑</a></p>
<p><strong>本文链接地址:</strong> <a href="http://www.jayxu.com/2011/08/10/11623/">Resolve “Access denied (java.lang.RuntimePermission createClassLoader)” for WAS</a></p>
</div>
<p><a href="http://www.bshare.cn/share?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F10%2F11623%2F&title=Resolve+%22Access+denied+%28java.lang.RuntimePermission+createClassLoader%29%22+for+WAS" title="用bShare分享或收藏本文"><img src="http://static.bshare.cn/frame/images/button_custom1-zh.gif" alt="用bShare分享或收藏本文" /></a></p><table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F05%2F11592%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F10%2F11623%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">About “IBM Rational XML ODBC Driver could not be loaded due to system error 126″ when Integrating ClearQuest with Insight</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F28%2F12947%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F10%2F11623%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">How do I connect my android phone to the IBM Wireless network?</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F06%2F07%2F10597%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F10%2F11623%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">IBM沃森背后的AI技术 [zz]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F06%2F16%2F10609%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F10%2F11623%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">IBM i Is Modern. Windows and UNIX Are Legacy.</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F28%2F12951%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F10%2F11623%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">关于『AWS GovCloud：Amazon把美国政府带至｢云｣上』</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.jayxu.com/2011/08/10/11623/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Otters sleep holding hands</title>
		<link>http://www.jayxu.com/2011/08/10/11620/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=otters-sleep-holding-hands</link>
		<comments>http://www.jayxu.com/2011/08/10/11620/#comments</comments>
		<pubDate>Tue, 09 Aug 2011 16:15:57 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[生活]]></category>
		<category><![CDATA[爱情]]></category>

		<guid isPermaLink="false">http://www.jayxu.com/?p=11620</guid>
		<description><![CDATA[sweet~~ 原创内容，转载请注明： 转载自拈花微笑 本文链接地址: Otters sleep holding hands<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F11%2F17%2F10237%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F10%2F11620%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">有了你之后，我会说“喵~~”</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2008%2F06%2F15%2F389%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F10%2F11620%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">很美 [zz]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2007%2F09%2F14%2F40%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F10%2F11620%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">谈论 zz前世 你是否埋葬了她？</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2007%2F08%2F14%2F51%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F10%2F11620%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">今年桃花比较乱</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F12%2F22%2F10382%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F10%2F11620%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">在自留地上秀NI</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p>sweet~~</p>
<p><a href="http://www.jayxu.com/log/wp-content/uploads/2011/08/2011-07-21.jpg"><img alt="" class="alignnone size-full wp-image-11619" height="416" src="http://www.jayxu.com/log/wp-content/uploads/2011/08/2011-07-21.jpg" title="2011-07-21" width="640" /></a></p>
<div style="margin-top: 15px; font-style: italic">
<p><strong>原创内容，转载请注明：</strong> 转载自<a href="http://www.jayxu.com/">拈花微笑</a></p>
<p><strong>本文链接地址:</strong> <a href="http://www.jayxu.com/2011/08/10/11620/">Otters sleep holding hands</a></p>
</div>
<p><a href="http://www.bshare.cn/share?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F10%2F11620%2F&title=Otters+sleep+holding+hands" title="用bShare分享或收藏本文"><img src="http://static.bshare.cn/frame/images/button_custom1-zh.gif" alt="用bShare分享或收藏本文" /></a></p><table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F11%2F17%2F10237%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F10%2F11620%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">有了你之后，我会说“喵~~”</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2008%2F06%2F15%2F389%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F10%2F11620%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">很美 [zz]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2007%2F09%2F14%2F40%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F10%2F11620%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">谈论 zz前世 你是否埋葬了她？</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2007%2F08%2F14%2F51%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F10%2F11620%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">今年桃花比较乱</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F12%2F22%2F10382%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F10%2F11620%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">在自留地上秀NI</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.jayxu.com/2011/08/10/11620/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>一周tweets更新 [2011-08-08]</title>
		<link>http://www.jayxu.com/2011/08/08/11610/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=%25e4%25b8%2580%25e5%2591%25a8tweets%25e6%259b%25b4%25e6%2596%25b0-2011-08-08</link>
		<comments>http://www.jayxu.com/2011/08/08/11610/#comments</comments>
		<pubDate>Sun, 07 Aug 2011 17:30:00 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[tweets]]></category>

		<guid isPermaLink="false">http://www.jayxu.com/2011/08/08/11610/</guid>
		<description><![CDATA[Time changes in year 1927 for China – Shanghai // 有人知道为什么上海的时区1927年12月31日晚上0点会往前跳5分52秒么？ http://fl5.me/4hdfgq # InfoQ: Java SE 7发布：2006年12月后的首次重要更新 // wow~~ http://fl5.me/4i450f # 甬温线动车追尾，愿死者瞑目 http://goo.gl/fb/JYmys #生活 #和谐社会 # 他说要给人民一个交代，于是给了人民一个胶带 http://goo.gl/fb/KUXCA #生活 #和谐社会 # 从高铁事故看“中国特色”发展模式的陷阱 [zz] http://goo.gl/fb/9J3Rq #生活 #和谐社会 #高铁 # 一周tweets更新 [2011-07-25] http://goo.gl/fb/yzAYJ #tweets # 一周tweets更新 [2011-08-01] http://goo.gl/fb/9bSs9 #tweets # Don’t Use Java 7, For Anything // <a href="http://www.jayxu.com/2011/08/08/11610/"> read more <span class="meta-nav">&#187;</span></a><table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F10%2F05%2F2440%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F08%2F11610%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2010-10-05]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F04%2F04%2F2117%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F08%2F11610%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2010-04-04]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F26%2F11755%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F08%2F11610%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2011-09-26]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F06%2F27%2F1555%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F08%2F11610%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2009-06-27]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2008%2F11%2F15%2F851%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F08%2F11610%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2008-11-15]</font>
                    </a>
                </td>
            </tr>
        <br/>
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">来自无觅网络的相关文章：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.mianfeidi.com%2F2011%2Ftweetattacks2-cracked.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F08%2F11610%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">TweetAttacks2：Twitter营销利器 (@mianfeidi)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.ycy8.net%2F2011_11156.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F08%2F11610%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">周笔畅单曲- 我的神奇 (@ycy8)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.caodanshi.com%2F2011%2F237.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F08%2F11610%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">卡了一刺 (@caodanshi)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.caodanshi.com%2F2011%2F13223.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F08%2F11610%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">还我一P (@caodanshi)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.caodanshi.com%2F2011%2F245.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F08%2F11610%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">打我一下 (@caodanshi)</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li>Time changes in year 1927 for China – Shanghai // 有人知道为什么上海的时区1927年12月31日晚上0点会往前跳5分52秒么？<br />
<a href="http://fl5.me/4hdfgq" rel="nofollow">http://fl5.me/4hdfgq</a> <a href="http://twitter.com/jayxu/statuses/98300358702530560" class="aktt_tweet_time">#</a></li>
<li>InfoQ: Java SE 7发布：2006年12月后的首次重要更新 // wow~~<br />
<a href="http://fl5.me/4i450f" rel="nofollow">http://fl5.me/4i450f</a> <a href="http://twitter.com/jayxu/statuses/98663853797281792" class="aktt_tweet_time">#</a></li>
<li>甬温线动车追尾，愿死者瞑目 <a href="http://goo.gl/fb/JYmys" rel="nofollow">http://goo.gl/fb/JYmys</a> #生活 #和谐社会 <a href="http://twitter.com/jayxu/statuses/98899818746888192" class="aktt_tweet_time">#</a></li>
<li>他说要给人民一个交代，于是给了人民一个胶带 <a href="http://goo.gl/fb/KUXCA" rel="nofollow">http://goo.gl/fb/KUXCA</a> #生活 #和谐社会 <a href="http://twitter.com/jayxu/statuses/98899821213134848" class="aktt_tweet_time">#</a></li>
<li>从高铁事故看“中国特色”发展模式的陷阱 [zz] <a href="http://goo.gl/fb/9J3Rq" rel="nofollow">http://goo.gl/fb/9J3Rq</a> #生活 #和谐社会 #高铁 <a href="http://twitter.com/jayxu/statuses/98899831266885632" class="aktt_tweet_time">#</a></li>
<li>一周tweets更新 [2011-07-25] <a href="http://goo.gl/fb/yzAYJ" rel="nofollow">http://goo.gl/fb/yzAYJ</a> #<a href="http://search.twitter.com/search?q=%23tweets" class="aktt_hashtag">tweets</a> <a href="http://twitter.com/jayxu/statuses/98899828200837120" class="aktt_tweet_time">#</a></li>
<li>一周tweets更新 [2011-08-01] <a href="http://goo.gl/fb/9bSs9" rel="nofollow">http://goo.gl/fb/9bSs9</a> #<a href="http://search.twitter.com/search?q=%23tweets" class="aktt_hashtag">tweets</a> <a href="http://twitter.com/jayxu/statuses/98899832520974336" class="aktt_tweet_time">#</a></li>
<li>Don’t Use Java 7, For Anything // Shit happened! Oracle wanna risk the fame of Java?!<br />
<a href="http://fl5.me/50ilvp" rel="nofollow">http://fl5.me/50ilvp</a> <a href="http://twitter.com/jayxu/statuses/99379306911899648" class="aktt_tweet_time">#</a></li>
</ul>
<div style="margin-top: 15px; font-style: italic">
<p><strong>原创内容，转载请注明：</strong> 转载自<a href="http://www.jayxu.com/">拈花微笑</a></p>
<p><strong>本文链接地址:</strong> <a href="http://www.jayxu.com/2011/08/08/11610/">一周tweets更新 [2011-08-08]</a></p>
</div>
<p><a href="http://www.bshare.cn/share?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F08%2F11610%2F&title=%E4%B8%80%E5%91%A8tweets%E6%9B%B4%E6%96%B0+%5B2011-08-08%5D" title="用bShare分享或收藏本文"><img src="http://static.bshare.cn/frame/images/button_custom1-zh.gif" alt="用bShare分享或收藏本文" /></a></p><table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F10%2F05%2F2440%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F08%2F11610%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2010-10-05]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F04%2F04%2F2117%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F08%2F11610%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2010-04-04]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F26%2F11755%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F08%2F11610%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2011-09-26]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F06%2F27%2F1555%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F08%2F11610%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2009-06-27]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2008%2F11%2F15%2F851%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F08%2F11610%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2008-11-15]</font>
                    </a>
                </td>
            </tr>
        <br/>
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">来自无觅网络的相关文章：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.mianfeidi.com%2F2011%2Ftweetattacks2-cracked.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F08%2F11610%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">TweetAttacks2：Twitter营销利器 (@mianfeidi)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.ycy8.net%2F2011_11156.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F08%2F11610%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">周笔畅单曲- 我的神奇 (@ycy8)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.caodanshi.com%2F2011%2F237.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F08%2F11610%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">卡了一刺 (@caodanshi)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.caodanshi.com%2F2011%2F13223.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F08%2F11610%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">还我一P (@caodanshi)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.caodanshi.com%2F2011%2F245.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F08%2F11610%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">打我一下 (@caodanshi)</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.jayxu.com/2011/08/08/11610/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>About “IBM Rational XML ODBC Driver could not be loaded due to system error 126&#8243; when Integrating ClearQuest with Insight</title>
		<link>http://www.jayxu.com/2011/08/05/11592/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=about-ibm-rational-xml-odbc-driver-could-not-be-loaded-due-to-system-error-126-when-integrating-clearquest-with-insight</link>
		<comments>http://www.jayxu.com/2011/08/05/11592/#comments</comments>
		<pubDate>Fri, 05 Aug 2011 03:42:29 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[技术生活]]></category>
		<category><![CDATA[ibm]]></category>
		<category><![CDATA[insight]]></category>
		<category><![CDATA[jazz]]></category>

		<guid isPermaLink="false">http://www.jayxu.com/?p=11592</guid>
		<description><![CDATA[When configuring system DSN, you encounter one of the following errors: The setup routines for the IBM Rational XML ODBC Driver could not be loaded due to system error 126 The following steps could help you to solve: Verify the settings in the Windows registry: Click Start, click Run, type regedit and click OK. In <a href="http://www.jayxu.com/2011/08/05/11592/"> read more <span class="meta-nav">&#187;</span></a><table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F28%2F12947%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F05%2F11592%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">How do I connect my android phone to the IBM Wireless network?</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F10%2F11623%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F05%2F11592%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Resolve “java.lang.RuntimePermission createClassLoader” for WAS</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F06%2F07%2F10597%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F05%2F11592%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">IBM沃森背后的AI技术 [zz]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F06%2F16%2F10609%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F05%2F11592%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">IBM i Is Modern. Windows and UNIX Are Legacy.</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F07%2F04%2F10658%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F05%2F11592%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">About DB2 Catalog</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p>When configuring system DSN, you encounter one of the following errors: The setup routines for the IBM Rational XML ODBC Driver could not be loaded due to system error 126</p>
<p>The following steps could help you to solve:</p>
<p>Verify the settings in the Windows registry:</p>
<ul>
<li>Click <strong>Start</strong>, click <strong>Run</strong>, type regedit and click <strong>OK</strong>.</li>
<li>In the registry, go to <code>My Computer\HKEY_LOCAL_MACHINE\SOFTWARE\ODBC\ODBCINST.INI\IBM Rational XML ODBC Driver</code> and make sure the <code>Driver and Setup</code> properties point to the correct file path of ratlxml.dll.</li>
<li>In the registry, go to <code>My Computer\HKEY_LOCAL_MACHINE\SOFTWARE\ODBC\ODBCINST.INI\ODBC Drivers</code> and make sure <code>IBM Rational XML ODBC Driver</code> is found to be installed.</li>
<li>In the registry, go to <code>My Computer\HKEY_LOCAL_MACHINE\SOFTWARE\ODBC\ODBC.INI\ODBC Data Sources</code> and make sure the system DSN you are configuring is using <code>IBM Rational XML ODBC Driver</code>.</li>
</ul>
<p>Verify the setting of the JDBC driver path:</p>
<ul>
<li>On the desktop, right-click <strong>My Computer</strong> and click <strong>Properties</strong>,</li>
<li>On the <strong>System Properties</strong> page, click <strong>Advanced</strong> and click <strong>Environment Variables</strong>.</li>
<li>Make sure that <code>$INSTALLDIR\jdk\jre\bin\classic</code> is present at the beginning of the <code>PATH</code> or <code>Path</code> variables of user variables and system variables.</li>
</ul>
<div style="margin-top: 15px; font-style: italic">
<p><strong>原创内容，转载请注明：</strong> 转载自<a href="http://www.jayxu.com/">拈花微笑</a></p>
<p><strong>本文链接地址:</strong> <a href="http://www.jayxu.com/2011/08/05/11592/">About “IBM Rational XML ODBC Driver could not be loaded due to system error 126&#8243; when Integrating ClearQuest with Insight</a></p>
</div>
<p><a href="http://www.bshare.cn/share?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F05%2F11592%2F&title=About+%22IBM+Rational+XML+ODBC+Driver+could+not+be+loaded+due+to+system+error+126%22+when+Integrating+ClearQuest+with+Insight" title="用bShare分享或收藏本文"><img src="http://static.bshare.cn/frame/images/button_custom1-zh.gif" alt="用bShare分享或收藏本文" /></a></p><table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F28%2F12947%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F05%2F11592%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">How do I connect my android phone to the IBM Wireless network?</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F10%2F11623%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F05%2F11592%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Resolve “java.lang.RuntimePermission createClassLoader” for WAS</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F06%2F07%2F10597%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F05%2F11592%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">IBM沃森背后的AI技术 [zz]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F06%2F16%2F10609%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F05%2F11592%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">IBM i Is Modern. Windows and UNIX Are Legacy.</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F07%2F04%2F10658%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F05%2F11592%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">About DB2 Catalog</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.jayxu.com/2011/08/05/11592/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>一周tweets更新 [2011-08-01]</title>
		<link>http://www.jayxu.com/2011/08/01/11589/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=%25e4%25b8%2580%25e5%2591%25a8tweets%25e6%259b%25b4%25e6%2596%25b0-2011-08-01</link>
		<comments>http://www.jayxu.com/2011/08/01/11589/#comments</comments>
		<pubDate>Sun, 31 Jul 2011 17:30:00 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[tweets]]></category>

		<guid isPermaLink="false">http://www.jayxu.com/2011/08/01/11589/</guid>
		<description><![CDATA[人禍國恥 訊號失靈避雷欠奉 高鐵豆腐渣賴天災 &#8211; 東方日報 // 强烈要求政府封杀，还铁道部一个公道 http://fl5.me/4p33vt # 社评：高铁是中国必须经历的自我折磨 // 你妈逼，这是哪个禽兽写的社评？『还要求整个中国社会以严厉、同时又很积极的态度对待铁路部门的大胆创举』，是他妈拿老百姓的命当垫脚石做大胆创举么？！ http://fl5.me/4p6eb1 # 都两天了，温爷爷咋还不来看望受难群众呀？我们已经擦了黑板等您来写多难兴邦了 # 别劝家属们节哀了，老百姓们节哀就是对狗官们的放纵。尼玛三天了，除了那个狗日的王勇平开的狗日的发布会，官方有说法么？老胡呢？温爷爷呢？ # 有什么不误伤人民群众，犯罪后果小，可就地取材，很多人都能身体力行的报复铁道部的方法么？大家一起来 # resporter was blocked # 刚才7点半档的今日话题 http://fl5.me/7jpsoi # 这是一个奇迹_李承鹏 // 『在一个很少有人见过选票，常显示“你所搜索的网页不存在”，大部份农民说不清法院和检察院的区别，看了建党伟业却不敢向先烈们学习建党……的国家，只有不断创造GDP奇迹才可证明优越性』 http://fl5.me/4e5gpb # 周末了，本周关键词：王八蛋 # Google 2-step Authentication 对中国开放，建议智能手机用户启用此功能，保障帐户安全 http://fl5.me/3qvmjf # 教育部和铁道部 http://fl5.me/3r5pgv # 原创内容，转载请注明： 转载自拈花微笑 本文链接地址: 一周tweets更新 [2011-08-01]<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2008%2F11%2F15%2F851%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F01%2F11589%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2008-11-15]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F10%2F11774%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F01%2F11589%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2011-10-10]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F26%2F11755%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F01%2F11589%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2011-09-26]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F17%2F11779%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F01%2F11589%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2011-10-17]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F06%2F29%2F2369%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F01%2F11589%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2010-06-29]</font>
                    </a>
                </td>
            </tr>
        <br/>
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">来自无觅网络的相关文章：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.mianfeidi.com%2F2011%2Ftweetattacks2-cracked.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F01%2F11589%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">TweetAttacks2：Twitter营销利器 (@mianfeidi)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.caodanshi.com%2F2011%2F824.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F01%2F11589%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">#操蛋事#824-周杰轮 (@caodanshi)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.caodanshi.com%2F2011%2F237.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F01%2F11589%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">卡了一刺 (@caodanshi)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.ycy8.net%2F2011_11156.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F01%2F11589%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">周笔畅单曲- 我的神奇 (@ycy8)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.dedeadmin.com%2F%3Fp%3D1180&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F01%2F11589%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">【Plugins系列】织梦DedeCms一键转载助手插件 一键转载文章 (@dedeadmin)</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li>人禍國恥 訊號失靈避雷欠奉 高鐵豆腐渣賴天災 &#8211; 東方日報 // 强烈要求政府封杀，还铁道部一个公道
<p><a href="http://fl5.me/4p33vt" rel="nofollow">http://fl5.me/4p33vt</a> <a href="http://twitter.com/jayxu/statuses/95411646163468289" class="aktt_tweet_time">#</a></li>
<li>社评：高铁是中国必须经历的自我折磨 // 你妈逼，这是哪个禽兽写的社评？『还要求整个中国社会以严厉、同时又很积极的态度对待铁路部门的大胆创举』，是他妈拿老百姓的命当垫脚石做大胆创举么？！<br />
<a href="http://fl5.me/4p6eb1" rel="nofollow">http://fl5.me/4p6eb1</a> <a href="http://twitter.com/jayxu/statuses/95423066229841920" class="aktt_tweet_time">#</a></li>
<li>都两天了，温爷爷咋还不来看望受难群众呀？我们已经擦了黑板等您来写多难兴邦了 <a href="http://twitter.com/jayxu/statuses/95462095981785088" class="aktt_tweet_time">#</a></li>
<li>别劝家属们节哀了，老百姓们节哀就是对狗官们的放纵。尼玛三天了，除了那个狗日的王勇平开的狗日的发布会，官方有说法么？老胡呢？温爷爷呢？ <a href="http://twitter.com/jayxu/statuses/95684627657789442" class="aktt_tweet_time">#</a></li>
<li>有什么不误伤人民群众，犯罪后果小，可就地取材，很多人都能身体力行的报复铁道部的方法么？大家一起来 <a href="http://twitter.com/jayxu/statuses/95812432504700928" class="aktt_tweet_time">#</a></li>
<li>resporter was blocked <a href="http://twitter.com/jayxu/statuses/95820853966680064" class="aktt_tweet_time">#</a></li>
<li>刚才7点半档的今日话题<br />
<a href="http://fl5.me/7jpsoi" rel="nofollow">http://fl5.me/7jpsoi</a> <a href="http://twitter.com/jayxu/statuses/95827645241110528" class="aktt_tweet_time">#</a></li>
<li>这是一个奇迹_李承鹏 // 『在一个很少有人见过选票，常显示“你所搜索的网页不存在”，大部份农民说不清法院和检察院的区别，看了建党伟业却不敢向先烈们学习建党……的国家，只有不断创造GDP奇迹才可证明优越性』<br />
<a href="http://fl5.me/4e5gpb" rel="nofollow">http://fl5.me/4e5gpb</a> <a href="http://twitter.com/jayxu/statuses/96061697873281025" class="aktt_tweet_time">#</a></li>
<li>周末了，本周关键词：王八蛋 <a href="http://twitter.com/jayxu/statuses/96887611964141568" class="aktt_tweet_time">#</a></li>
<li>Google 2-step Authentication 对中国开放，建议智能手机用户启用此功能，保障帐户安全<br />
<a href="http://fl5.me/3qvmjf" rel="nofollow">http://fl5.me/3qvmjf</a> <a href="http://twitter.com/jayxu/statuses/97527800713584640" class="aktt_tweet_time">#</a></li>
<li>教育部和铁道部<br />
<a href="http://fl5.me/3r5pgv" rel="nofollow">http://fl5.me/3r5pgv</a> <a href="http://twitter.com/jayxu/statuses/97556508874772481" class="aktt_tweet_time">#</a></li>
</ul>
<div style="margin-top: 15px; font-style: italic">
<p><strong>原创内容，转载请注明：</strong> 转载自<a href="http://www.jayxu.com/">拈花微笑</a></p>
<p><strong>本文链接地址:</strong> <a href="http://www.jayxu.com/2011/08/01/11589/">一周tweets更新 [2011-08-01]</a></p>
</div>
<p><a href="http://www.bshare.cn/share?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F01%2F11589%2F&title=%E4%B8%80%E5%91%A8tweets%E6%9B%B4%E6%96%B0+%5B2011-08-01%5D" title="用bShare分享或收藏本文"><img src="http://static.bshare.cn/frame/images/button_custom1-zh.gif" alt="用bShare分享或收藏本文" /></a></p><table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2008%2F11%2F15%2F851%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F01%2F11589%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2008-11-15]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F10%2F11774%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F01%2F11589%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2011-10-10]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F26%2F11755%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F01%2F11589%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2011-09-26]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F17%2F11779%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F01%2F11589%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2011-10-17]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F06%2F29%2F2369%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F01%2F11589%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2010-06-29]</font>
                    </a>
                </td>
            </tr>
        <br/>
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">来自无觅网络的相关文章：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.mianfeidi.com%2F2011%2Ftweetattacks2-cracked.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F01%2F11589%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">TweetAttacks2：Twitter营销利器 (@mianfeidi)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.caodanshi.com%2F2011%2F824.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F01%2F11589%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">#操蛋事#824-周杰轮 (@caodanshi)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.caodanshi.com%2F2011%2F237.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F01%2F11589%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">卡了一刺 (@caodanshi)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.ycy8.net%2F2011_11156.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F01%2F11589%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">周笔畅单曲- 我的神奇 (@ycy8)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.dedeadmin.com%2F%3Fp%3D1180&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F08%2F01%2F11589%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">【Plugins系列】织梦DedeCms一键转载助手插件 一键转载文章 (@dedeadmin)</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.jayxu.com/2011/08/01/11589/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>他说要给人民一个交代，于是给了人民一个胶带</title>
		<link>http://www.jayxu.com/2011/07/31/11585/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=%25e4%25bb%2596%25e8%25af%25b4%25e8%25a6%2581%25e7%25bb%2599%25e4%25ba%25ba%25e6%25b0%2591%25e4%25b8%2580%25e4%25b8%25aa%25e4%25ba%25a4%25e4%25bb%25a3%25ef%25bc%258c%25e4%25ba%258e%25e6%2598%25af%25e7%25bb%2599%25e4%25ba%2586%25e4%25ba%25ba%25e6%25b0%2591%25e4%25b8%2580%25e4%25b8%25aa%25e8%2583%25b6%25e5%25b8%25a6</link>
		<comments>http://www.jayxu.com/2011/07/31/11585/#comments</comments>
		<pubDate>Sun, 31 Jul 2011 04:29:15 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[生活]]></category>
		<category><![CDATA[和谐社会]]></category>

		<guid isPermaLink="false">http://www.jayxu.com/?p=11585</guid>
		<description><![CDATA[原创内容，转载请注明： 转载自拈花微笑 本文链接地址: 他说要给人民一个交代，于是给了人民一个胶带<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F08%2F11%2F2389%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F07%2F31%2F11585%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">中国已进入笨蛋社会</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2008%2F01%2F16%2F13%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F07%2F31%2F11585%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">转载一篇，期待被和谐</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F09%2F28%2F2428%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F07%2F31%2F11585%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">楼市三字经</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F05%2F18%2F10578%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F07%2F31%2F11585%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">建福宫是谣传！</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F07%2F25%2F11350%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F07%2F31%2F11585%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">甬温线动车追尾，愿死者瞑目</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.jayxu.com/log/wp-content/uploads/2011/07/1566126770434928462.png"><img alt="" class="alignnone size-full wp-image-11587" height="592" src="http://www.jayxu.com/log/wp-content/uploads/2011/07/1566126770434928462.png" title="1566126770434928462" width="407" /></a></p>
<div style="margin-top: 15px; font-style: italic">
<p><strong>原创内容，转载请注明：</strong> 转载自<a href="http://www.jayxu.com/">拈花微笑</a></p>
<p><strong>本文链接地址:</strong> <a href="http://www.jayxu.com/2011/07/31/11585/">他说要给人民一个交代，于是给了人民一个胶带</a></p>
</div>
<p><a href="http://www.bshare.cn/share?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F07%2F31%2F11585%2F&title=%E4%BB%96%E8%AF%B4%E8%A6%81%E7%BB%99%E4%BA%BA%E6%B0%91%E4%B8%80%E4%B8%AA%E4%BA%A4%E4%BB%A3%EF%BC%8C%E4%BA%8E%E6%98%AF%E7%BB%99%E4%BA%86%E4%BA%BA%E6%B0%91%E4%B8%80%E4%B8%AA%E8%83%B6%E5%B8%A6" title="用bShare分享或收藏本文"><img src="http://static.bshare.cn/frame/images/button_custom1-zh.gif" alt="用bShare分享或收藏本文" /></a></p><table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F08%2F11%2F2389%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F07%2F31%2F11585%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">中国已进入笨蛋社会</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2008%2F01%2F16%2F13%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F07%2F31%2F11585%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">转载一篇，期待被和谐</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F09%2F28%2F2428%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F07%2F31%2F11585%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">楼市三字经</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F05%2F18%2F10578%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F07%2F31%2F11585%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">建福宫是谣传！</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F07%2F25%2F11350%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F07%2F31%2F11585%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">甬温线动车追尾，愿死者瞑目</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.jayxu.com/2011/07/31/11585/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>从高铁事故看“中国特色”发展模式的陷阱 [zz]</title>
		<link>http://www.jayxu.com/2011/07/27/11360/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=%25e4%25bb%258e%25e9%25ab%2598%25e9%2593%2581%25e4%25ba%258b%25e6%2595%2585%25e7%259c%258b%25e2%2580%259c%25e4%25b8%25ad%25e5%259b%25bd%25e7%2589%25b9%25e8%2589%25b2%25e2%2580%259d%25e5%258f%2591%25e5%25b1%2595%25e6%25a8%25a1%25e5%25bc%258f%25e7%259a%2584%25e9%2599%25b7%25e9%2598%25b1-zz</link>
		<comments>http://www.jayxu.com/2011/07/27/11360/#comments</comments>
		<pubDate>Wed, 27 Jul 2011 03:04:26 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[生活]]></category>
		<category><![CDATA[和谐社会]]></category>
		<category><![CDATA[高铁]]></category>

		<guid isPermaLink="false">http://www.jayxu.com/?p=11360</guid>
		<description><![CDATA[原文转自豆瓣。看来日本的确是个养思想的国家。前有孙文鲁迅，后有这小哥（姐）们儿。对国人的评论一针见血，刀刀致命 &#160; （下文是一位在日本的中国留学生对本次脱轨事故的一些思考。转载得到作者同意。） &#8212;&#8212;&#8212;&#8212;&#8212;&#8212; 从高铁事故看&#8220;中国特色&#8221;发展模式的陷阱 作者：有明 发表时间：2011-07-24 18:05 &#160; 首先让我们为这次事故中的牺牲者默哀！ 作为一个业余铁路爱好者，一个曾经一度梦想成为一名铁路工程师、把新干线修到祖国大地上的留学生，看到报导中的惨烈场景不禁感到悲伤和痛心。 其实中国引进德日技术修建高铁，在短短几年内实现由绿皮车到高速动车组的&#8220;跨越式&#8221;发展，整个过程我都一直在高度关注。虽然身在异国他乡，但儿时的梦想却一直影响着我的求学道路，甚至今后的人生目标。2006年，我进入东京大学理科一类，这个科类的大部分学生2年后会进入工科院系。那个时候的我正踌躇满志地准备开始向铁路工程师这个目标迈进。而在此时，候京沪高铁计划已基本敲定，同时在我的家乡天津和北京之间，中国第一条投入运营的城际高速铁路已经开工了。从技术角度来讲，京津高铁项目有着比较试验的性质，具体讲就是比较德国的ICE和日本的东北新干线2套技术。在此前的谈判中吗，这两家已经通过大幅度的让步，挤掉了不肯转让核心技术的其他对手，最后他们都同意中方自行生产车辆和大部分配套设备。这个事件让我大为吃惊，也彻底改变了我个人的学习方向和就业取向。（关于我自己的故事，后面再找机会继续） 但凡了解日本产业界的人都知道，日本人在防止技术泄露这方面是特别谨慎的，尤其是对中国更是一直保持着高度警惕&#8211;从玩具、家电到摩托车、机动车，日本的高科技产品被我们&#8220;山寨&#8221;的历史已经很悠久了。那么这次日方为什么会做出如此大的让步，不惜血本也要转让这些核心技术呢？这里面有众所周知的原因，比如中国的高铁市场潜在商机巨大，如果在一开始就被淘汰的话这个机会损失他们是在无法承担；另一方面，也不能不&#8220;归功&#8221;于中国人民的&#8220;聪明才智&#8221;和5000年来造化得炉火纯青的政治手腕。中方利用德、日的竞争关系让他们自相威胁，从而不得不在水面下的一系列交涉中屡屡让步。中国人自认为做的很聪明，把谈判对手们都耍了一把，而实际上正式这种做法决定了中国高铁日后必定存在安全隐患！ 为什么能这么肯定呢？主要理由有2点。第一，德日的技术都是在固有环境下通过独自的技术研发、长期的实践摸索、以及在不同条件和要求下的实际运营中积累起来得；两者虽然都是当今世界上最稳定最可靠的高铁系统，但许多核心技术都是基于完全不同的原理，有着本质上的不可兼容性。我们现在硬要&#8220;择其善者而从之&#8221;，这对高铁这种大规模系统工程而言本身就是一中最大的安全隐患。 第二，既然德日双方都不得不转让大部分技术，而且还要和对方的陌生技术拼凑到一起，他们当然无法也不需要在安全方面承担任何责任。事实上，后来中国对外宣传高铁技术是&#8220;自主知识产权&#8221;，甚至企图将廉价版化的技术向第三过输出，这些做法严格地说都是有侵权之嫌疑的。而德日对此都睁一只眼闭一只眼，其实不是他们不想主张自己的权利，而是&#8220;实在不敢掺和&#8221;。你想一想，本来是自己生的孩子，现在被聪明的中国人和另一个陌生人的孩子整成了&#8220;连体婴儿&#8221;，而且还要把它卖到第三个人家去。。你还敢对这个怪胎负任何责任吗，你甚至根本都不敢承认它有你一半血统！也就是说中国高铁这个怪胎，从呱呱落地的那一天起就患有先天疾病，而最了解它的亲生爹娘却永远不再会为它负责。 其实这里面的道理很简单，一个学生拜师学艺，本来应该抱着谦虚严谨的态度，特别是要尊重老师听老师的话。而我们却找来n个老师，让他们为了抢学费进行恶性竞争，再用政治手腕倒牵着老师的鼻子走。在这样一种不健康的师徒关系中，教学效果就可想而知了。结果是，我们把从2位老师那里敲诈来的技术拼凑一通，并且再一次发挥中国人民的&#8220;聪明才智&#8221;，竟然攒出了跑得比老师都快的&#8220;2不像&#8221;，这就是后来我们看到的CRH380。这种巧取豪夺、投机取巧、耍小聪明、好大喜功、自以为是的态度，正式我们整天引以为豪的&#8220;中国特色&#8221;的真谛。 从开发经济学的角度讲，后进国通过借鉴先进国家的经验，以更快的速度实现发展是合理的，也是一个客观规律。然而这是在合理的范围内，在保障了安全性和公平性的前提下。我们中国传统文化中，有一个核心价值观叫做&#8220;中庸&#8221;，在评价&#8220;中国特色&#8221;的发展模式时它其实是一个很重要的判断标准。今天的中国在经历了外敌入侵，殖民统治，文革，改革开放带来的急速的&#8220;现代化&#8221;之后，早已把传统文化连精髓带糟粕全都丢弃了，这是日本版改革开放=明治维新和我们的&#8220;中国特色&#8221;的本质区别之一。日本后来之所以能够成为亚洲唯一一个免于西方列强入侵，反而走向独立自主发展道路的国家，起根本原因之一就是他们在吸收先进技术和制度的同时一刻也没有忘记自己的文化传统与核心价值观。 回到高铁的话题之前，先继续一下我自己的故事。就在大2下学期分配专业的时候，我做出了求学道路上的一个最重大的决定：弃理从文。当时我的想法是很明确的，既然实现我多年梦想的关键不是技术本身，而是密室里的政治谈判，那么再学技术就没有意义了。于是我告别了至今还灰常热爱的自然科学，&#8220;穿越&#8221;到了叫做国际关系论的陌生学科。后来的事实证明我当时是在是太天真了，国际关系论跟高铁技术的输出不能说完全按没关系，但基本上对实现我的梦想没有任何直接帮助。虽然如此，我对中国高铁建设的关心依然如故，同时也通过日本这边的信息了解到不少关于中日之间技术转让的内幕。最重要的发现是，原来日本铁路技术的海外输出，主要是通过&#8220;综合商社&#8221;来推动的。 这里插播一下什么叫综合商社：它是日本独特的一种业态，比较贴切的中文翻译可以是&#8220;巨型综合贸易公司&#8221;；他们的主要业务是把海外的资源&#8220;运进来&#8221;，把日本的工业产品等&#8220;卖出去&#8221;，从而实现对从上流到下流的整个商路的掌控。国际上名声显赫的大商社有三菱商事、三井物产等5家，其中伊藤忠商事是战后最早和中国开展大规模贸易的日本公司。之所以冠以&#8220;综合&#8221;2字，是因为他们的触手几乎伸向所有商品，小到食品、日用品，大到飞机、石油开发，不管在世界哪个角落只要有&#8220;商机&#8221;的地方就能看到5大商社的影子。 那么商社和中国的高铁又有什么不为人知的关系呢？刚才提到的和中国关系密切的伊藤忠商事，其实就是日本高铁技术输出中国的&#8220;媒人&#8221;。日本的原国有铁路早在1988年就被分割成6个旅客铁路公司和1个覆盖全国的货运铁路公司，分别作为民营企业经营。而铁路车辆和相关产品、技术的供应商，绝大部分也都是独立的民营企业，各项核心技术都分散在这些大大小小的估分公司手里。也就是说，想把新干线技术作为一个完整的系统卖到海外，必须先有人出来坐庄，把零散的技术采购过来组成一个完整的package，再作为窗口将其卖给远在海外的客户。 具体到中国高铁引进的日本技术，这个&#8220;媒人&#8221;、&#8220;庄家&#8221;便是伊藤忠商事。不少朋友可能都知道国内高铁车辆的一大生产基地就是南车集团的青岛四方机车厂，它和庞巴迪以及川崎重工都有技术合作关系。最早的60列CRH2A型（也就是日本版车辆），是川崎重工和青岛四方共同接单生产的，而合资成立的&#8220;青岛四方川崎车辆技术有限公司&#8221;部分股份就是由伊藤忠商事出资。 了解了这些信息以后，我将商社这个以前从未考虑过的行业列入了求职list（在这之前，理科出身的我对商业丝毫不感兴趣，认为他们创造的价值远不如制造业）。2010年秋天，我有幸访问了伊藤忠与青岛四方项目的负责人本町社员，从他嘴里我第一次听到当事者讲述的高铁技术转让背后的故事。其中最触目惊心的细节是，中方技术人员对安全问题的&#8220;不屑一顾&#8221;，对此日方表示&#8220;难以置信&#8221;、&#8220;不禁替中国高铁的安全感到担忧&#8221;。本町说他代表伊藤忠，也就是间接代表整个日方阵营和中方&#8220;领导&#8221;谈判时，能感受到他们的好大喜功和对安全隐患这种消极因素&#8220;避而远之&#8221;的态度。前几天我再次享了有关中国高铁可能引发大范围地质灾害的文章，现在通过当事人的叙述我们发现不要说这种长期性的间接风险，就连直接关乎列车安全运行的非常具体的安全隐患，都被我们从一开始就忽视了！临别前本町告诉我他的目标是，在帮助中国人引进高铁技术的同时，更要让他们的安全意识也提升到日本技术人员的高度。只有这样，才能将日本的技术优势和中国的成本优势结合起来，将来向世界市场进军、让更多发展中国家享受到高速铁路带来的便利。只可惜这次的死亡事故，恐怕让他的这个梦想在有生之年都无法实现了。 其实作为一个业余铁路爱好者，我早就对中国引进高铁技术的方式感到疑问和担忧。前面我们提到过，中方是通过政治手腕&#8220;逼&#8221;德日就范，统一转让部分核心技术的。不管是日版车还是德国版，除了最初的几十列是合资生产以外，之后的列车基本上都转入由中国当地的厂商自行生产。这也是我们一直对外生称&#8220;自主知识产权&#8221;的主要根据。然而正如我反复强调的，高铁项目是大规模系统工程，高铁技术也绝不仅限于车辆、线路、信号等硬件设备，更包括了如何进行日常维护、发生以外时的如何应对、如何发现重大事的征兆故等常年积累起来的经验和教训。这些经验教训有些是有形的，有些则在每一名资深工作人员心中；有些是在长期不断的技术革新中总结出来的，而有些则是用鲜血和生命换来的。前者我们理论上能够学到却不屑去学，而后者我们根本不可能按照&#8220;中国特色&#8221;的指导细想那样&#8220;拿来&#8221;。 我对铁路的兴趣是小时候看绿皮车萌发起来的，而真正作为爱好去研究是来日本以后的事。因此我对国内铁路的了解可以说很有限，但是对包括新干线在内的日本铁路（包括它的技术、特色、发展史）还算得上略知一二。作为业余铁路爱好者，我不想对具体的技术问题多做评论，但我敢断定的是没有一个中方人员真正知道，日本新干线技术的安全性和可靠性是付出了多么巨大的代价才实现的。他们天真地以为在一夜之间，通过一些&#8220;伟大领袖&#8221;教给我们的整人、玩儿人地伎俩，就可以把这些宝贵的经验统统&#8220;拿来&#8221;，实现&#8220;跨越式发展&#8221;。懂日语的朋友可以在日文版的维基百科搜索&#8220;鉄道事故&#8221;，你会发现一个长长的明治时代以来的各种大小事故的完整记录，其中大多数重大事故不仅记载了事故的概况、死伤人数，还注明此次事故对安全措施产生了那些影响，促成了那些安全技术的开发和应用等等。新干线是世界上第一个成功投入运营的高速铁路系统，1960年代最先开通的东海岛新干线到今天为止没有发生过一起导致车内乘客死亡的重大事故。然而又有多少人知道，新干线的许多核心技术都是早在战前就开始着手研究的？又有多少人知道，很多安全技术都是吸取了之前发生在常规铁路上的无数悲惨事故的教训？ 我曾经参观过几家日本铁路公司的检修工厂，也就是保障日常运行安全的核心部门。不管是资金力量雄厚的大公司，还是远郊地区的地方路线，这个部门里都一定有从小在这里工作的老师傅。他们对自己负责的路线，车辆的每一个细节都了如指掌，就如同养育了多年的孩子一样。听他们讲述工作经历，几乎每一个人都能给你讲出一个刻骨铭心的incident：当年如何预防了一场重大事故，差一点就会出现多么严重的后果。。我想说的是，这些轻易&#8220;拿&#8221;不走的东西，才是缔造新干线、ICE这些丰功伟业的坚实地基。我们那些好大喜功的领导们，在自作聪明地实践着&#8220;中国特色&#8221;的&#8220;跨越式发展&#8221;的时候，殊不知已经将无数中国人民送上了开往死亡的单程列车。 刚才说了由于本人才疏学浅，本文原则上不深入技术层面。但是在这里，为了未来中国高铁的安全，为了保护人民的生命财产安全，我谨以一名业余铁路爱好者的身份阐述一下观点： 1.这次发生的是同一方向上的列车追尾事故，问题出在列车运行保安的最基本环节。预防此类事故的技术和措施，早在铁路诞生初期就出现了。一直到今天，不管是高速铁路还是城市轨道交通，防止同一条线路上列车相撞都是信号、保安系统的最基本功能，也是任何一条铁路都必须通过 多重安全技术和措施给予保障的。 正因为如此，此次事故中保安系统的失灵很可能是由于多套技术多个系统时间的协调问题引起。这也是本文强调的安全隐患之2大根本原因之一。 2.造成中国高铁安全隐患的 另一个根本原因，是&#8220;人&#8221;的意识中对安全的轻视。这也是本文要揭露的，中国目前最严重的问题。对安全的轻视，对人命的不当回事儿，这绝不仅仅是高铁的问题，而是值得我们整个社会去反思的道德问题。这背后隐藏的是我们整个社会中充斥着的极端功利主义与极端投机主义，关于这个问题之后再予以总结。 在这里作为技术问题需要提出的是，高速铁路是大众交通工具，是关乎今后几十年甚至上百年的大工程。我从很早就担心中国高铁出现重大事故，但却没有预料到它发生得这么快。我最最担心的是，我们吸收了车辆以及线路的初期建设技术，却没有学会中长期的维护和安全保障。日本的新干线每隔数年1次全面检查，每隔10多年1次分解检修，这方面的技术和经验我们有吗？更重要的是，在比日本大得多的运输压力面前，我们的铁路工作者从意识上能严格遵守这些安全规定吗？？ &#160; 有关技术方面的讨论到此为止，最后让我们再来总结一下高铁事故中暴露出的中国社会的本质问题。这个问题概括起来就是我从开头一直使用的比喻，带引号的&#8220;中国特色&#8221;。具体来说，就是上面讲的笼罩当今中国社会的全民性的&#8220;端功利主义&#8221;与&#8220;极端投机主义&#8221;。或者讲得再直白一些，就是今天的大多数中国人 太贪 太没耐心 太爱耍小聪明 高铁其实是一个很典型的例子，把这三点都反映得淋漓尽致：看人家有我们也想要=贪，然后又不想象人家那样一步一步地建设=没耐心，所以决定从人家那里&#8220;拿来&#8221;又总想占别人便宜=耍小聪明。结果如何，我们都已经目睹了。 不要以为就是一个小小的高铁事故，跟你我毫无关系。它暴露出的问题其实是我们社会的通病，而病原体就是组成这个社会的每一个成员。&#8220;极端功利主义&#8221;和&#8220;极端投机主义&#8221;，反映在每一个&#8220;典型&#8221;的21世纪中国人身上。且不说别人，看看我们80后这个群体吧。多少男生一点努力都没付出就做梦一夜暴富，多少女生整天想着怎么嫁给houses &#38; cars。为了达到目的，有爹妈能靠的就仗着权势胡作非为，有身体的便寡廉鲜耻地去出卖自己。最可恶的是还有一些人把出国当做实现他们功利目的的捷径，以至于把种种恶习带到国外来给中国人丢脸。。他们不知道这样的态度到了国外只会遭到最严重的鄙视！ 中国人聪明，这是全世界公认的事实。而智慧如果没有正确的价值观和道德体系去引导，往往会比无知更可怕更有害。以前我们物质上贫穷，总觉得人家都因为这个看不起我们。现在一部分中国人有钱了，一出国就杀到各种家电量贩店啊，名牌专卖店啊把高价商品席卷一空，我们甚至连高铁都买得起了。可是怎么样呢，世界因为你更有钱就更尊重你了么?! 事实是我们在整天掉在钱眼儿里的同时，丧失了传统文化、道德规范、人文修养这些最能赢得别人尊重的东西。这叫什么呢，其实这叫本质上的平穷，穷到拥有不起这些人类社会公认的最有价值的财富。 所以中国人要想真正的富有起来，就必须先跳出&#8220;端功利主义&#8221;和&#8220;极端投机主义&#8221;这个&#8220;中国特色&#8221;的怪圈，走上精神文明与物质文明相辅相成、互相促进的发展道路。如果再继续朝错误的方向前进下去，整个社会在不久的将来必将面临一场经济、文化、道德的全面颠覆。 而这个时代的扳道工，就是我们80后这一代人。但愿我们每一个人都能拿出勇气和责任感，挡住即将出轨的车轮！ ██████████████████████████████ 这篇文章大家可以转载，但是请加上这里的连接，谢谢。 毕竟人在做，天在看。 大家自重 。 原创内容，转载请注明： 转载自拈花微笑 本文链接地址: 从高铁事故看“中国特色”发展模式的陷阱 [zz]<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F08%2F11%2F2389%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F07%2F27%2F11360%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">中国已进入笨蛋社会</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F04%2F21%2F2138%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F07%2F27%2F11360%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">【近期的校内犀利状态】、不解释 [zz]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F05%2F13%2F2174%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F07%2F27%2F11360%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">领导批评了袁腾飞，群众非常满意 [zz]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2008%2F01%2F16%2F13%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F07%2F27%2F11360%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">转载一篇，期待被和谐</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F01%2F13%2F1961%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F07%2F27%2F11360%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">A new approach to China [zz]</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p>原文转自<a href="http://www.douban.com/note/163095019/" target="_blank">豆瓣</a>。看来日本的确是个养思想的国家。前有孙文鲁迅，后有这小哥（姐）们儿。对国人的评论一针见血，刀刀致命</p>
<p>&nbsp;</p>
<p>（下文是一位在日本的中国留学生对本次脱轨事故的一些思考。转载得到作者同意。）</p>
<p>&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;</p>
<p>从高铁事故看&ldquo;中国特色&rdquo;发展模式的陷阱</p>
<p>作者：有明</p>
<p>发表时间：2011-07-24 18:05</p>
<p>&nbsp;</p>
<p>首先让我们为这次事故中的牺牲者默哀！</p>
<p>作为一个业余铁路爱好者，一个曾经一度梦想成为一名铁路工程师、把新干线修到祖国大地上的留学生，看到报导中的惨烈场景不禁感到悲伤和痛心。</p>
<p>其实中国引进德日技术修建高铁，在短短几年内实现由绿皮车到高速动车组的&ldquo;跨越式&rdquo;发展，整个过程我都一直在高度关注。虽然身在异国他乡，但儿时的梦想却一直影响着我的求学道路，甚至今后的人生目标。2006年，我进入东京大学理科一类，这个科类的大部分学生2年后会进入工科院系。那个时候的我正踌躇满志地准备开始向铁路工程师这个目标迈进。而在此时，候京沪高铁计划已基本敲定，同时在我的家乡天津和北京之间，中国第一条投入运营的城际高速铁路已经开工了。从技术角度来讲，京津高铁项目有着比较试验的性质，具体讲就是比较德国的ICE和日本的东北新干线2套技术。在此前的谈判中吗，这两家已经通过大幅度的让步，挤掉了不肯转让核心技术的其他对手，最后他们都同意中方自行生产车辆和大部分配套设备。这个事件让我大为吃惊，也彻底改变了我个人的学习方向和就业取向。（关于我自己的故事，后面再找机会继续）</p>
<p>但凡了解日本产业界的人都知道，日本人在防止技术泄露这方面是特别谨慎的，尤其是对中国更是一直保持着高度警惕&#8211;从玩具、家电到摩托车、机动车，日本的高科技产品被我们&ldquo;山寨&rdquo;的历史已经很悠久了。那么这次日方为什么会做出如此大的让步，不惜血本也要转让这些核心技术呢？这里面有众所周知的原因，比如中国的高铁市场潜在商机巨大，如果在一开始就被淘汰的话这个机会损失他们是在无法承担；另一方面，也不能不&ldquo;归功&rdquo;于中国人民的&ldquo;聪明才智&rdquo;和5000年来造化得炉火纯青的政治手腕。中方利用德、日的竞争关系让他们自相威胁，从而不得不在水面下的一系列交涉中屡屡让步。中国人自认为做的很聪明，把谈判对手们都耍了一把，而实际上正式这种做法决定了中国高铁日后必定存在安全隐患！</p>
<p>为什么能这么肯定呢？主要理由有2点。第一，德日的技术都是在固有环境下通过独自的技术研发、长期的实践摸索、以及在不同条件和要求下的实际运营中积累起来得；两者虽然都是当今世界上最稳定最可靠的高铁系统，但许多核心技术都是基于完全不同的原理，有着本质上的不可兼容性。我们现在硬要&ldquo;择其善者而从之&rdquo;，这对高铁这种大规模系统工程而言本身就是一中最大的安全隐患。</p>
<p>第二，既然德日双方都不得不转让大部分技术，而且还要和对方的陌生技术拼凑到一起，他们当然无法也不需要在安全方面承担任何责任。事实上，后来中国对外宣传高铁技术是&ldquo;自主知识产权&rdquo;，甚至企图将廉价版化的技术向第三过输出，这些做法严格地说都是有侵权之嫌疑的。而德日对此都睁一只眼闭一只眼，其实不是他们不想主张自己的权利，而是&ldquo;实在不敢掺和&rdquo;。你想一想，本来是自己生的孩子，现在被聪明的中国人和另一个陌生人的孩子整成了&ldquo;连体婴儿&rdquo;，而且还要把它卖到第三个人家去。。你还敢对这个怪胎负任何责任吗，你甚至根本都不敢承认它有你一半血统！也就是说中国高铁这个怪胎，从呱呱落地的那一天起就患有先天疾病，而最了解它的亲生爹娘却永远不再会为它负责。</p>
<p>其实这里面的道理很简单，一个学生拜师学艺，本来应该抱着谦虚严谨的态度，特别是要尊重老师听老师的话。而我们却找来n个老师，让他们为了抢学费进行恶性竞争，再用政治手腕倒牵着老师的鼻子走。在这样一种不健康的师徒关系中，教学效果就可想而知了。结果是，我们把从2位老师那里敲诈来的技术拼凑一通，并且再一次发挥中国人民的&ldquo;聪明才智&rdquo;，竟然攒出了跑得比老师都快的&ldquo;2不像&rdquo;，这就是后来我们看到的CRH380。这种巧取豪夺、投机取巧、耍小聪明、好大喜功、自以为是的态度，正式我们整天引以为豪的&ldquo;中国特色&rdquo;的真谛。</p>
<p>从开发经济学的角度讲，后进国通过借鉴先进国家的经验，以更快的速度实现发展是合理的，也是一个客观规律。然而这是在合理的范围内，在保障了安全性和公平性的前提下。我们中国传统文化中，有一个核心价值观叫做&ldquo;中庸&rdquo;，在评价&ldquo;中国特色&rdquo;的发展模式时它其实是一个很重要的判断标准。今天的中国在经历了外敌入侵，殖民统治，文革，改革开放带来的急速的&ldquo;现代化&rdquo;之后，早已把传统文化连精髓带糟粕全都丢弃了，这是日本版改革开放=明治维新和我们的&ldquo;中国特色&rdquo;的本质区别之一。日本后来之所以能够成为亚洲唯一一个免于西方列强入侵，反而走向独立自主发展道路的国家，起根本原因之一就是他们在吸收先进技术和制度的同时一刻也没有忘记自己的文化传统与核心价值观。</p>
<p>回到高铁的话题之前，先继续一下我自己的故事。就在大2下学期分配专业的时候，我做出了求学道路上的一个最重大的决定：弃理从文。当时我的想法是很明确的，既然实现我多年梦想的关键不是技术本身，而是密室里的政治谈判，那么再学技术就没有意义了。于是我告别了至今还灰常热爱的自然科学，&ldquo;穿越&rdquo;到了叫做国际关系论的陌生学科。后来的事实证明我当时是在是太天真了，国际关系论跟高铁技术的输出不能说完全按没关系，但基本上对实现我的梦想没有任何直接帮助。虽然如此，我对中国高铁建设的关心依然如故，同时也通过日本这边的信息了解到不少关于中日之间技术转让的内幕。最重要的发现是，原来日本铁路技术的海外输出，主要是通过&ldquo;综合商社&rdquo;来推动的。</p>
<p>这里插播一下什么叫综合商社：它是日本独特的一种业态，比较贴切的中文翻译可以是&ldquo;巨型综合贸易公司&rdquo;；他们的主要业务是把海外的资源&ldquo;运进来&rdquo;，把日本的工业产品等&ldquo;卖出去&rdquo;，从而实现对从上流到下流的整个商路的掌控。国际上名声显赫的大商社有三菱商事、三井物产等5家，其中伊藤忠商事是战后最早和中国开展大规模贸易的日本公司。之所以冠以&ldquo;综合&rdquo;2字，是因为他们的触手几乎伸向所有商品，小到食品、日用品，大到飞机、石油开发，不管在世界哪个角落只要有&ldquo;商机&rdquo;的地方就能看到5大商社的影子。</p>
<p>那么商社和中国的高铁又有什么不为人知的关系呢？刚才提到的和中国关系密切的伊藤忠商事，其实就是日本高铁技术输出中国的&ldquo;媒人&rdquo;。日本的原国有铁路早在1988年就被分割成6个旅客铁路公司和1个覆盖全国的货运铁路公司，分别作为民营企业经营。而铁路车辆和相关产品、技术的供应商，绝大部分也都是独立的民营企业，各项核心技术都分散在这些大大小小的估分公司手里。也就是说，想把新干线技术作为一个完整的系统卖到海外，必须先有人出来坐庄，把零散的技术采购过来组成一个完整的package，再作为窗口将其卖给远在海外的客户。</p>
<p>具体到中国高铁引进的日本技术，这个&ldquo;媒人&rdquo;、&ldquo;庄家&rdquo;便是伊藤忠商事。不少朋友可能都知道国内高铁车辆的一大生产基地就是南车集团的青岛四方机车厂，它和庞巴迪以及川崎重工都有技术合作关系。最早的60列CRH2A型（也就是日本版车辆），是川崎重工和青岛四方共同接单生产的，而合资成立的&ldquo;青岛四方川崎车辆技术有限公司&rdquo;部分股份就是由伊藤忠商事出资。</p>
<p>了解了这些信息以后，我将商社这个以前从未考虑过的行业列入了求职list（在这之前，理科出身的我对商业丝毫不感兴趣，认为他们创造的价值远不如制造业）。2010年秋天，我有幸访问了伊藤忠与青岛四方项目的负责人本町社员，从他嘴里我第一次听到当事者讲述的高铁技术转让背后的故事。其中最触目惊心的细节是，中方技术人员对安全问题的&ldquo;不屑一顾&rdquo;，对此日方表示&ldquo;难以置信&rdquo;、&ldquo;不禁替中国高铁的安全感到担忧&rdquo;。本町说他代表伊藤忠，也就是间接代表整个日方阵营和中方&ldquo;领导&rdquo;谈判时，能感受到他们的好大喜功和对安全隐患这种消极因素&ldquo;避而远之&rdquo;的态度。前几天我再次享了有关中国高铁可能引发大范围地质灾害的文章，现在通过当事人的叙述我们发现不要说这种长期性的间接风险，就连直接关乎列车安全运行的非常具体的安全隐患，都被我们从一开始就忽视了！临别前本町告诉我他的目标是，在帮助中国人引进高铁技术的同时，更要让他们的安全意识也提升到日本技术人员的高度。只有这样，才能将日本的技术优势和中国的成本优势结合起来，将来向世界市场进军、让更多发展中国家享受到高速铁路带来的便利。只可惜这次的死亡事故，恐怕让他的这个梦想在有生之年都无法实现了。</p>
<p>其实作为一个业余铁路爱好者，我早就对中国引进高铁技术的方式感到疑问和担忧。前面我们提到过，中方是通过政治手腕&ldquo;逼&rdquo;德日就范，统一转让部分核心技术的。不管是日版车还是德国版，除了最初的几十列是合资生产以外，之后的列车基本上都转入由中国当地的厂商自行生产。这也是我们一直对外生称&ldquo;自主知识产权&rdquo;的主要根据。然而正如我反复强调的，高铁项目是大规模系统工程，高铁技术也绝不仅限于车辆、线路、信号等硬件设备，更包括了如何进行日常维护、发生以外时的如何应对、如何发现重大事的征兆故等常年积累起来的经验和教训。这些经验教训有些是有形的，有些则在每一名资深工作人员心中；有些是在长期不断的技术革新中总结出来的，而有些则是用鲜血和生命换来的。前者我们理论上能够学到却不屑去学，而后者我们根本不可能按照&ldquo;中国特色&rdquo;的指导细想那样&ldquo;拿来&rdquo;。</p>
<p>我对铁路的兴趣是小时候看绿皮车萌发起来的，而真正作为爱好去研究是来日本以后的事。因此我对国内铁路的了解可以说很有限，但是对包括新干线在内的日本铁路（包括它的技术、特色、发展史）还算得上略知一二。作为业余铁路爱好者，我不想对具体的技术问题多做评论，但我敢断定的是没有一个中方人员真正知道，日本新干线技术的安全性和可靠性是付出了多么巨大的代价才实现的。他们天真地以为在一夜之间，通过一些&ldquo;伟大领袖&rdquo;教给我们的整人、玩儿人地伎俩，就可以把这些宝贵的经验统统&ldquo;拿来&rdquo;，实现&ldquo;跨越式发展&rdquo;。懂日语的朋友可以在日文版的维基百科搜索&ldquo;鉄道事故&rdquo;，你会发现一个长长的明治时代以来的各种大小事故的完整记录，其中大多数重大事故不仅记载了事故的概况、死伤人数，还注明此次事故对安全措施产生了那些影响，促成了那些安全技术的开发和应用等等。新干线是世界上第一个成功投入运营的高速铁路系统，1960年代最先开通的东海岛新干线到今天为止没有发生过一起导致车内乘客死亡的重大事故。然而又有多少人知道，新干线的许多核心技术都是早在战前就开始着手研究的？又有多少人知道，很多安全技术都是吸取了之前发生在常规铁路上的无数悲惨事故的教训？</p>
<p>我曾经参观过几家日本铁路公司的检修工厂，也就是保障日常运行安全的核心部门。不管是资金力量雄厚的大公司，还是远郊地区的地方路线，这个部门里都一定有从小在这里工作的老师傅。他们对自己负责的路线，车辆的每一个细节都了如指掌，就如同养育了多年的孩子一样。听他们讲述工作经历，几乎每一个人都能给你讲出一个刻骨铭心的incident：当年如何预防了一场重大事故，差一点就会出现多么严重的后果。。我想说的是，这些轻易&ldquo;拿&rdquo;不走的东西，才是缔造新干线、ICE这些丰功伟业的坚实地基。我们那些好大喜功的领导们，在自作聪明地实践着&ldquo;中国特色&rdquo;的&ldquo;跨越式发展&rdquo;的时候，殊不知已经将无数中国人民送上了开往死亡的单程列车。</p>
<p>刚才说了由于本人才疏学浅，本文原则上不深入技术层面。但是在这里，为了未来中国高铁的安全，为了保护人民的生命财产安全，我谨以一名业余铁路爱好者的身份阐述一下观点：</p>
<p>1.这次发生的是同一方向上的列车追尾事故，问题出在列车运行保安的最基本环节。预防此类事故的技术和措施，早在铁路诞生初期就出现了。一直到今天，不管是高速铁路还是城市轨道交通，防止同一条线路上列车相撞都是信号、保安系统的最基本功能，也是任何一条铁路都必须通过 多重安全技术和措施给予保障的。</p>
<p>正因为如此，此次事故中保安系统的失灵很可能是由于多套技术多个系统时间的协调问题引起。这也是本文强调的安全隐患之2大根本原因之一。</p>
<p>2.造成中国高铁安全隐患的 另一个根本原因，是&ldquo;人&rdquo;的意识中对安全的轻视。这也是本文要揭露的，中国目前最严重的问题。对安全的轻视，对人命的不当回事儿，这绝不仅仅是高铁的问题，而是值得我们整个社会去反思的道德问题。这背后隐藏的是我们整个社会中充斥着的极端功利主义与极端投机主义，关于这个问题之后再予以总结。</p>
<p>在这里作为技术问题需要提出的是，高速铁路是大众交通工具，是关乎今后几十年甚至上百年的大工程。我从很早就担心中国高铁出现重大事故，但却没有预料到它发生得这么快。我最最担心的是，我们吸收了车辆以及线路的初期建设技术，却没有学会中长期的维护和安全保障。日本的新干线每隔数年1次全面检查，每隔10多年1次分解检修，这方面的技术和经验我们有吗？更重要的是，在比日本大得多的运输压力面前，我们的铁路工作者从意识上能严格遵守这些安全规定吗？？</p>
<p>&nbsp;</p>
<p>有关技术方面的讨论到此为止，最后让我们再来总结一下高铁事故中暴露出的中国社会的本质问题。这个问题概括起来就是我从开头一直使用的比喻，带引号的&ldquo;中国特色&rdquo;。具体来说，就是上面讲的笼罩当今中国社会的全民性的&ldquo;端功利主义&rdquo;与&ldquo;极端投机主义&rdquo;。或者讲得再直白一些，就是今天的大多数中国人</p>
<p>太贪</p>
<p>太没耐心</p>
<p>太爱耍小聪明</p>
<p>高铁其实是一个很典型的例子，把这三点都反映得淋漓尽致：看人家有我们也想要=贪，然后又不想象人家那样一步一步地建设=没耐心，所以决定从人家那里&ldquo;拿来&rdquo;又总想占别人便宜=耍小聪明。结果如何，我们都已经目睹了。</p>
<p>不要以为就是一个小小的高铁事故，跟你我毫无关系。它暴露出的问题其实是我们社会的通病，而病原体就是组成这个社会的每一个成员。&ldquo;极端功利主义&rdquo;和&ldquo;极端投机主义&rdquo;，反映在每一个&ldquo;典型&rdquo;的21世纪中国人身上。且不说别人，看看我们80后这个群体吧。多少男生一点努力都没付出就做梦一夜暴富，多少女生整天想着怎么嫁给houses &amp; cars。为了达到目的，有爹妈能靠的就仗着权势胡作非为，有身体的便寡廉鲜耻地去出卖自己。最可恶的是还有一些人把出国当做实现他们功利目的的捷径，以至于把种种恶习带到国外来给中国人丢脸。。他们不知道这样的态度到了国外只会遭到最严重的鄙视！</p>
<p>中国人聪明，这是全世界公认的事实。而智慧如果没有正确的价值观和道德体系去引导，往往会比无知更可怕更有害。以前我们物质上贫穷，总觉得人家都因为这个看不起我们。现在一部分中国人有钱了，一出国就杀到各种家电量贩店啊，名牌专卖店啊把高价商品席卷一空，我们甚至连高铁都买得起了。可是怎么样呢，世界因为你更有钱就更尊重你了么?! 事实是我们在整天掉在钱眼儿里的同时，丧失了传统文化、道德规范、人文修养这些最能赢得别人尊重的东西。这叫什么呢，其实这叫本质上的平穷，穷到拥有不起这些人类社会公认的最有价值的财富。</p>
<p>所以中国人要想真正的富有起来，就必须先跳出&ldquo;端功利主义&rdquo;和&ldquo;极端投机主义&rdquo;这个&ldquo;中国特色&rdquo;的怪圈，走上精神文明与物质文明相辅相成、互相促进的发展道路。如果再继续朝错误的方向前进下去，整个社会在不久的将来必将面临一场经济、文化、道德的全面颠覆。 而这个时代的扳道工，就是我们80后这一代人。但愿我们每一个人都能拿出勇气和责任感，挡住即将出轨的车轮！</p>
<p>██████████████████████████████</p>
<p>这篇文章大家可以转载，但是请加上<a href="http://www.douban.com/note/163095019/" target="_blank">这里</a>的连接，谢谢。</p>
<p>毕竟人在做，天在看。</p>
<p>大家自重 。</p>
<div style="margin-top: 15px; font-style: italic">
<p><strong>原创内容，转载请注明：</strong> 转载自<a href="http://www.jayxu.com/">拈花微笑</a></p>
<p><strong>本文链接地址:</strong> <a href="http://www.jayxu.com/2011/07/27/11360/">从高铁事故看“中国特色”发展模式的陷阱 [zz]</a></p>
</div>
<p><a href="http://www.bshare.cn/share?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F07%2F27%2F11360%2F&title=%E4%BB%8E%E9%AB%98%E9%93%81%E4%BA%8B%E6%95%85%E7%9C%8B%E2%80%9C%E4%B8%AD%E5%9B%BD%E7%89%B9%E8%89%B2%E2%80%9D%E5%8F%91%E5%B1%95%E6%A8%A1%E5%BC%8F%E7%9A%84%E9%99%B7%E9%98%B1+%5Bzz%5D" title="用bShare分享或收藏本文"><img src="http://static.bshare.cn/frame/images/button_custom1-zh.gif" alt="用bShare分享或收藏本文" /></a></p><table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F08%2F11%2F2389%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F07%2F27%2F11360%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">中国已进入笨蛋社会</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F04%2F21%2F2138%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F07%2F27%2F11360%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">【近期的校内犀利状态】、不解释 [zz]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F05%2F13%2F2174%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F07%2F27%2F11360%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">领导批评了袁腾飞，群众非常满意 [zz]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2008%2F01%2F16%2F13%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F07%2F27%2F11360%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">转载一篇，期待被和谐</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F01%2F13%2F1961%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F07%2F27%2F11360%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">A new approach to China [zz]</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.jayxu.com/2011/07/27/11360/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>一周tweets更新 [2011-07-25]</title>
		<link>http://www.jayxu.com/2011/07/25/11359/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=%25e4%25b8%2580%25e5%2591%25a8tweets%25e6%259b%25b4%25e6%2596%25b0-2011-07-25</link>
		<comments>http://www.jayxu.com/2011/07/25/11359/#comments</comments>
		<pubDate>Sun, 24 Jul 2011 17:30:00 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[tweets]]></category>

		<guid isPermaLink="false">http://www.jayxu.com/2011/07/25/11359/</guid>
		<description><![CDATA[一周tweets更新 [2011-07-18] http://goo.gl/fb/0Z4Rd #tweets # Mac Lion BT &#124; 拈花微笑 http://fl5.me/7qp37p # 升级Lion～～ # MacBook Air &#8211; The ultimate everyday notebook // macbook air终于值得买了 http://fl5.me/4omna3 # Xcode on the Mac App Store http://fl5.me/7o49ib # 终于下了，可劲儿下吧～ # 我日，CCAV直播新闻发布会，到了提问环节就掐掉了？！ # 原创内容，转载请注明： 转载自拈花微笑 本文链接地址: 一周tweets更新 [2011-07-25]<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F12%2F11706%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F07%2F25%2F11359%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2011-09-12]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F19%2F11712%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F07%2F25%2F11359%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2011-09-19]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F06%2F27%2F1555%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F07%2F25%2F11359%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2009-06-27]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F24%2F12937%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F07%2F25%2F11359%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2011-10-24]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F10%2F05%2F2440%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F07%2F25%2F11359%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2010-10-05]</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li>一周tweets更新 [2011-07-18] <a href="http://goo.gl/fb/0Z4Rd" rel="nofollow">http://goo.gl/fb/0Z4Rd</a> #<a href="http://twitter.com/search/%23tweets" class="aktt_hashtag">tweets</a> <a href="http://twitter.com/jayxu/statuses/92925108343144448" class="aktt_tweet_time">#</a></li>
<li>Mac Lion BT | 拈花微笑<br />
<a href="http://fl5.me/7qp37p" rel="nofollow">http://fl5.me/7qp37p</a> <a href="http://twitter.com/jayxu/statuses/93999021588353024" class="aktt_tweet_time">#</a></li>
<li>升级Lion～～ <a href="http://twitter.com/jayxu/statuses/94358225545199616" class="aktt_tweet_time">#</a></li>
<li>MacBook Air &#8211; The ultimate everyday notebook // macbook air终于值得买了<br />
<a href="http://fl5.me/4omna3" rel="nofollow">http://fl5.me/4omna3</a> <a href="http://twitter.com/jayxu/statuses/94451619634229248" class="aktt_tweet_time">#</a></li>
<li>Xcode on the Mac App Store<br />
<a href="http://fl5.me/7o49ib" rel="nofollow">http://fl5.me/7o49ib</a> <a href="http://twitter.com/jayxu/statuses/94464589873414144" class="aktt_tweet_time">#</a></li>
<li>终于下了，可劲儿下吧～ <a href="http://twitter.com/jayxu/statuses/95010750493499392" class="aktt_tweet_time">#</a></li>
<li>我日，CCAV直播新闻发布会，到了提问环节就掐掉了？！ <a href="http://twitter.com/jayxu/statuses/95145588466790401" class="aktt_tweet_time">#</a></li>
</ul>
<div style="margin-top: 15px; font-style: italic">
<p><strong>原创内容，转载请注明：</strong> 转载自<a href="http://www.jayxu.com/">拈花微笑</a></p>
<p><strong>本文链接地址:</strong> <a href="http://www.jayxu.com/2011/07/25/11359/">一周tweets更新 [2011-07-25]</a></p>
</div>
<p><a href="http://www.bshare.cn/share?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F07%2F25%2F11359%2F&title=%E4%B8%80%E5%91%A8tweets%E6%9B%B4%E6%96%B0+%5B2011-07-25%5D" title="用bShare分享或收藏本文"><img src="http://static.bshare.cn/frame/images/button_custom1-zh.gif" alt="用bShare分享或收藏本文" /></a></p><table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F12%2F11706%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F07%2F25%2F11359%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2011-09-12]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F09%2F19%2F11712%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F07%2F25%2F11359%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2011-09-19]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F06%2F27%2F1555%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F07%2F25%2F11359%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2009-06-27]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F10%2F24%2F12937%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F07%2F25%2F11359%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2011-10-24]</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F10%2F05%2F2440%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F07%2F25%2F11359%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">一周tweets更新 [2010-10-05]</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.jayxu.com/2011/07/25/11359/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>甬温线动车追尾，愿死者瞑目</title>
		<link>http://www.jayxu.com/2011/07/25/11350/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=%25e7%2594%25ac%25e6%25b8%25a9%25e7%25ba%25bf%25e5%258a%25a8%25e8%25bd%25a6%25e8%25bf%25bd%25e5%25b0%25be%25ef%25bc%258c%25e6%2584%25bf%25e6%25ad%25bb%25e8%2580%2585%25e7%259e%2591%25e7%259b%25ae</link>
		<comments>http://www.jayxu.com/2011/07/25/11350/#comments</comments>
		<pubDate>Sun, 24 Jul 2011 16:37:30 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[生活]]></category>
		<category><![CDATA[和谐社会]]></category>

		<guid isPermaLink="false">http://www.jayxu.com/?p=11350</guid>
		<description><![CDATA[愿死者瞑目，所有相关责任人得到应有的审判 凤凰网甬温线动车追尾铁道部新闻发布会实录： 7月23日甬温线特别重大铁路交通事故的新闻发布会于7月24日晚22点30分召开，以下是新闻发布会现场实录。 【铁道部新闻发布会现场&#8212;&#8212;回应对中国高铁技术质疑】 7，记者追问：铁道部表示，对中国的高铁发展还是很有信心，请问，发生了这么大的事故，信心从何而来！ 王勇平回应：中国高铁的技术是先进的，是合格的，我们仍然很有信心。 【铁道部新闻发布会现场&#8212;&#8212;死难者遇难者名单何时公布？】 6，记者：何时公布遇难者名单？铁道部新闻发言人王勇平：是时候会公布遇难者名单，一定会公布。 【铁道部新闻发布会现场&#8212;&#8212;1700名温州市民献血】 5，据温州市卫生局副局长程锦国称，铁道部各位领导从昨晚起一直忙在现在，到现在还没合眼。有个消息很骄傲，已经有1700名市民献血。我们的救援非常有力有效及时。 【铁道部新闻发布会现场&#8212;&#8212;为何要掩埋事故车厢？】 4，记者提问：为什么要拆解车厢掩埋出事动车残骸？铁道部新闻发言人王勇平：出事位置周围有泥塘，为了施工车辆进入，挖掘土方为了填平泥塘，并不是为了掩埋车厢。 【铁道部新闻发布会现场&#8212;&#8212;为何发现幸存者？】 3，记者提问：为什么在宣布没有生命迹象之后，又发现幸存的小女孩？铁道部新闻发言人王勇平说：我只能说，事实就是这样，它确实发生了。 【铁道部新闻发布会现场&#8212;&#8212;王勇平表态发布会：不回避问题】 2，铁道部新闻发言人王勇平说：正常情况下，不应该发生追尾。但现在还需等待调查情况。他说，&#8220;我不回避任何问题，你们相信吗？&#8221; 【铁道部新闻发布会现场&#8212;&#8212;王勇平汇报事故当前现况】 1，据浙江卫视，铁道部新闻发言人王勇平说：追尾事故中，D3115上有558名乘客，D301上有1072名乘客。目前造成35人死亡，192人受伤，132人住院。事故具体原因还在调查分析中。 我只能说，这是一个畜生当道的国度。在网上看见一张图片，想哭 原创内容，转载请注明： 转载自拈花微笑 本文链接地址: 甬温线动车追尾，愿死者瞑目<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F08%2F11%2F2389%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F07%2F25%2F11350%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">中国已进入笨蛋社会</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2008%2F01%2F16%2F13%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F07%2F25%2F11350%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">转载一篇，期待被和谐</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F10%2F10%2F2462&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F07%2F25%2F11350%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">自由万岁！</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F07%2F08%2F1561%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F07%2F25%2F11350%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">不许联想</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F01%2F13%2F1961%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F07%2F25%2F11350%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">A new approach to China [zz]</font>
                    </a>
                </td>
            </tr>
        <br/>
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">来自无觅网络的相关文章：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.ycy8.net%2F2011_10845.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F07%2F25%2F11350%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">拍摄和谐家居 (@ycy8)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.caodanshi.com%2F2012%2F19829.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F07%2F25%2F11350%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">多么和谐的一家子 (@caodanshi)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fohidea.com%2F1496.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F07%2F25%2F11350%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">元首的愤怒！温州动车版 (@ohidea)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.hui-wang.info%2F2010%2F01%2F22%2F%25E5%2592%258C%25E8%2589%25B2%25E6%2583%2585%25E7%259B%25B8%25E5%2585%25B3%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F07%2F25%2F11350%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">和色情相关 (@hui-wang)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.caodanshi.com%2F2011%2F383.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F07%2F25%2F11350%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">怪蜀黍尾行 (@caodanshi)</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p>愿死者瞑目，所有相关责任人得到应有的审判</p>
<p>凤凰网<a href="http://news.ifeng.com/mainland/special/wzdongchetuogui/content-3/detail_2011_07/24/7907918_0.shtml" target="_blank">甬温线动车追尾铁道部新闻发布会实录</a>：</p>
<blockquote>
<p>7月23日甬温线特别重大铁路交通事故的新闻发布会于7月24日晚22点30分召开，以下是新闻发布会现场实录。</p>
<p>【铁道部新闻发布会现场&mdash;&mdash;回应对中国高铁技术质疑】</p>
<p>7，记者追问：铁道部表示，对中国的高铁发展还是很有信心，请问，发生了这么大的事故，信心从何而来！ 王勇平回应：中国高铁的技术是先进的，是合格的，我们仍然很有信心。</p>
<p>【铁道部新闻发布会现场&mdash;&mdash;死难者遇难者名单何时公布？】</p>
<p>6，记者：何时公布遇难者名单？铁道部新闻发言人王勇平：是时候会公布遇难者名单，一定会公布。</p>
<p>【铁道部新闻发布会现场&mdash;&mdash;1700名温州市民献血】</p>
<p>5，据温州市卫生局副局长程锦国称，铁道部各位领导从昨晚起一直忙在现在，到现在还没合眼。有个消息很骄傲，已经有1700名市民献血。我们的救援非常有力有效及时。</p>
<p>【铁道部新闻发布会现场&mdash;&mdash;为何要掩埋事故车厢？】</p>
<p>4，记者提问：为什么要拆解车厢掩埋出事动车残骸？铁道部新闻发言人王勇平：出事位置周围有泥塘，为了施工车辆进入，挖掘土方为了填平泥塘，并不是为了掩埋车厢。</p>
<p>【铁道部新闻发布会现场&mdash;&mdash;为何发现幸存者？】</p>
<p>3，记者提问：为什么在宣布没有生命迹象之后，又发现幸存的小女孩？铁道部新闻发言人王勇平说：我只能说，事实就是这样，它确实发生了。</p>
<p>【铁道部新闻发布会现场&mdash;&mdash;王勇平表态发布会：不回避问题】</p>
<p>2，铁道部新闻发言人王勇平说：正常情况下，不应该发生追尾。但现在还需等待调查情况。他说，&ldquo;我不回避任何问题，你们相信吗？&rdquo;</p>
<p>【铁道部新闻发布会现场&mdash;&mdash;王勇平汇报事故当前现况】</p>
<p>1，据浙江卫视，铁道部新闻发言人王勇平说：追尾事故中，D3115上有558名乘客，D301上有1072名乘客。目前造成35人死亡，192人受伤，132人住院。事故具体原因还在调查分析中。</p>
</blockquote>
<p>我只能说，这是一个畜生当道的国度。在网上看见一张图片，想哭</p>
<p><a href="http://www.jayxu.com/log/wp-content/uploads/2011/07/201172505301385867.jpg"><img alt="" class="alignnone size-full wp-image-11352" height="448" src="http://www.jayxu.com/log/wp-content/uploads/2011/07/201172505301385867.jpg" title="201172505301385867" width="260" /></a></p>
<div style="margin-top: 15px; font-style: italic">
<p><strong>原创内容，转载请注明：</strong> 转载自<a href="http://www.jayxu.com/">拈花微笑</a></p>
<p><strong>本文链接地址:</strong> <a href="http://www.jayxu.com/2011/07/25/11350/">甬温线动车追尾，愿死者瞑目</a></p>
</div>
<p><a href="http://www.bshare.cn/share?url=http%3A%2F%2Fwww.jayxu.com%2F2011%2F07%2F25%2F11350%2F&title=%E7%94%AC%E6%B8%A9%E7%BA%BF%E5%8A%A8%E8%BD%A6%E8%BF%BD%E5%B0%BE%EF%BC%8C%E6%84%BF%E6%AD%BB%E8%80%85%E7%9E%91%E7%9B%AE" title="用bShare分享或收藏本文"><img src="http://static.bshare.cn/frame/images/button_custom1-zh.gif" alt="用bShare分享或收藏本文" /></a></p><table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F08%2F11%2F2389%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F07%2F25%2F11350%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">中国已进入笨蛋社会</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2008%2F01%2F16%2F13%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F07%2F25%2F11350%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">转载一篇，期待被和谐</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F10%2F10%2F2462&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F07%2F25%2F11350%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">自由万岁！</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2009%2F07%2F08%2F1561%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F07%2F25%2F11350%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">不许联想</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.jayxu.com%2F2010%2F01%2F13%2F1961%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F07%2F25%2F11350%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">A new approach to China [zz]</font>
                    </a>
                </td>
            </tr>
        <br/>
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">来自无觅网络的相关文章：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.ycy8.net%2F2011_10845.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F07%2F25%2F11350%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">拍摄和谐家居 (@ycy8)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.caodanshi.com%2F2012%2F19829.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F07%2F25%2F11350%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">多么和谐的一家子 (@caodanshi)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fohidea.com%2F1496.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F07%2F25%2F11350%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">元首的愤怒！温州动车版 (@ohidea)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.hui-wang.info%2F2010%2F01%2F22%2F%25E5%2592%258C%25E8%2589%25B2%25E6%2583%2585%25E7%259B%25B8%25E5%2585%25B3%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F07%2F25%2F11350%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">和色情相关 (@hui-wang)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.caodanshi.com%2F2011%2F383.html&from=http%3A%2F%2Fwww.jayxu.com%2F2011%2F07%2F25%2F11350%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">怪蜀黍尾行 (@caodanshi)</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.jayxu.com/2011/07/25/11350/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

