<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
 <channel>
  <title>漂在北方的狼</title>
  <link>http://wolfchina.blogbus.com</link>
  <description><![CDATA[在北方生活，就要象狼一样坚韧和顽强！

就象古龙说的那样："离别是为了相聚"，漂也是为了不再漂！

为了我们最初的梦想，努力吧～～～～]]></description>
  <generator> by blogbus.com </generator>
  <lastBuildDate>Thu, 19 Nov 2009 17:29:57 +0800</lastBuildDate>
  <image>
									<url>http://public.blogbus.com/profile/head.gif</url>
									<title>漂在北方的狼</title>
									<link>http://wolfchina.blogbus.com</link>
								</image>  <item>
   <title>有关XSD Restriction的一些笔记</title>
   <description><![CDATA[<p>在我们使用XML Schema描述数据模型的时候，XSD提供了很多的强大的功能，比如对数据内容的Restriction（约束）功能。</p>
<p>Restrictions是用来限制（或者说定义）Element或Attribute可接受值的。而对于Element的Restrictions通常又称为Facets。<br />下面通过一些常见的约束例子来说明Restrictions的用法和语法。</p>
<p><strong>数值型范围限制</strong></p>
<div style="border: 1px solid #cccccc; padding: 4px 5px 4px 4px; font-size: 13px; width: 98%; background-color: #eeeeee;">&lt;xs:element name="age"&gt;&lt;xs:simpleType&gt;<br />&lt;xs:restriction base="xs:integer"&gt;<br />&lt;xs:minInclusive value="0"/&gt;<br />&lt;xs:maxInclusive value="120"/&gt;<br />&lt;/xs:restriction&gt;<br />&lt;/xs:simpleType&gt;&lt;/xs:element&gt; </div>
<p>该约束定义age元素的值是整形而且值要在0到120之间。</p>
<p><strong>枚举限制</strong></p>
<div style="border: 1px solid #cccccc; padding: 4px 5px 4px 4px; font-size: 13px; width: 98%; background-color: #eeeeee;">&lt;xs:element name="car"&gt;<br />&lt;xs:simpleType&gt;<br />&lt;xs:restriction base="xs:string"&gt;<br />&lt;xs:enumeration value="Audi"/&gt;<br />&lt;xs:enumeration value="Golf"/&gt;<br />&lt;xs:enumeration value="BMW"/&gt;<br />&lt;/xs:restriction&gt;<br />&lt;/xs:simpleType&gt;<br />&lt;/xs:element&gt; </div>
<p>这里约束了car的值是string，而且只能为&ldquo;Audi&rdquo;、&ldquo;Golf&rdquo;和&ldquo;BMW&rdquo;中的一个。<br />可以使用另一种写法： 
</p>
<div style="border: 1px solid #cccccc; padding: 4px 5px 4px 4px; font-size: 13px; width: 98%; background-color: #eeeeee;"><img src="http://www.code-123.com/Image/20085231411659377801.gif" alt="" align="top" />&lt;xs:element name="car" type="carType"/&gt;<br /><img src="http://www.code-123.com/Image/20085231411659377801.gif" alt="" align="top" />&lt;xs:simpleType name="carType"&gt;<br /><img src="http://www.code-123.com/Image/20085231411659377801.gif" alt="" align="top" />&lt;xs:restriction base="xs:string"&gt;<br /><img src="http://www.code-123.com/Image/20085231411659377801.gif" alt="" align="top" />&lt;xs:enumeration value="Audi"/&gt;<br /><img src="http://www.code-123.com/Image/20085231411659377801.gif" alt="" align="top" />&lt;xs:enumeration value="Golf"/&gt;<br /><img src="http://www.code-123.com/Image/20085231411659377801.gif" alt="" align="top" />&lt;xs:enumeration value="BMW"/&gt;<br /><img src="http://www.code-123.com/Image/20085231411659377801.gif" alt="" align="top" />&lt;/xs:restriction&gt;<br /><img src="http://www.code-123.com/Image/20085231411659377801.gif" alt="" align="top" />&lt;/xs:simpleType&gt; </div>
<p>这种写法的好处是，上面的Restriction不是定义在Element中的，可以被其他的Element很方便的调用。 
</p>
<p><strong>使用正则表达式（RegularExpression）约束</strong></p>
<div style="border: 1px solid #cccccc; padding: 4px 5px 4px 4px; font-size: 13px; width: 98%; background-color: #eeeeee;">&lt;xs:element name="letter"&gt;<br />&lt;xs:simpleType&gt;<br />&lt;xs:restriction base="xs:string"&gt;<br />&lt;xs:pattern value="[a-z]"/&gt;<br />&lt;/xs:restriction&gt;<br />&lt;/xs:simpleType&gt;<br />&lt;/xs:element&gt;</div>
<p>这里&lt;xs:pattern&gt;的value属性的值是一个正则表达式正则表达式的语法则不再本文介绍的范围。使用RegularExpression你可以规定任何格式的string约束。 
</p>
<p><strong>空格字符（Whitespace Characters）约束 </strong></p>
<div style="border: 1px solid #cccccc; padding: 4px 5px 4px 4px; font-size: 13px; width: 98%; background-color: #eeeeee;"><img src="http://www.code-123.com/Image/20085231411659377801.gif" alt="" align="top" />&lt;xs:element name="address"&gt;<br /><img src="http://www.code-123.com/Image/20085231411659377801.gif" alt="" align="top" />&lt;xs:simpleType&gt;<br /><img src="http://www.code-123.com/Image/20085231411659377801.gif" alt="" align="top" />&lt;xs:restriction base="xs:string"&gt;<br /><img src="http://www.code-123.com/Image/20085231411659377801.gif" alt="" align="top" />&lt;xs:whiteSpace value="preserve"/&gt;<br /><img src="http://www.code-123.com/Image/20085231411659377801.gif" alt="" align="top" />&lt;/xs:restriction&gt;<br /><img src="http://www.code-123.com/Image/20085231411659377801.gif" alt="" align="top" />&lt;/xs:simpleType&gt;<br /><img src="http://www.code-123.com/Image/20085231411659377801.gif" alt="" align="top" />&lt;/xs:element&gt; </div>
<p>以上例子对address中的所有空格字符进行保留。关键是value="preserve"。XML语法本来就是保留空格的。<br />当值为&ldquo;replace&rdquo;时<br />XML processer会用空间来代替所有的空格字符。<br />当值为&ldquo;collapse&rdquo;时<br />会将连续的空格合并成一个。 
</p>
<p><strong>长度约束</strong> </p>
<div style="border: 1px solid #cccccc; padding: 4px 5px 4px 4px; font-size: 13px; width: 98%; background-color: #eeeeee;">&lt;xs:element name="password"&gt;<br />&lt;xs:simpleType&gt;<br />&lt;xs:restriction base="xs:string"&gt;<br />&lt;xs:length value="8"/&gt;<br />&lt;/xs:restriction&gt;<br />&lt;/xs:simpleType&gt;<br />&lt;/xs:element&gt; </div>
<p>以上例子限定了password元素的长度为8。当然也可以使用 &lt;xs:minLength value="?"/&gt;和&lt;xs:maxLength value="?"/&gt;来限定最长最短值。</p>
<p>更多的内容请看<a href="http://www.w3schools.com/schema/schema_elements_ref.asp" target="_blank">http://www.w3schools.com/schema/schema_elements_ref.asp</a></p><!--sp--><div class="relpost"><br/><h3>随机文章：</h3><div><a href="http://wolfchina.blogbus.com/logs/42453780.html">org.w3c.dom.Document provider in Jersey</a> 2009-07-16</div><div><a href="/logs/32089262.html">太好了，jersey升级为1.0.1</a> 2008-12-03</div><div><a href="/logs/11951202.html">Shell 取出文件中的每一行赋给一个变量</a> 2007-12-12</div><div><a href="/logs/11951040.html">深入理解abstract class和interface</a> 2007-12-12</div><div><a href="/logs/11950749.html">Apache上的防图片/mp3盗链配置：mod_rewrite it</a> 2007-12-12</div></div><div class="addfav"><br />收藏到：<span class= "delicious"><a href="http://delicious.com/save?url=http%3A%2F%2Fwolfchina.blogbus.com%2Flogs%2F51749875.html&title=%E6%9C%89%E5%85%B3XSD+Restriction%E7%9A%84%E4%B8%80%E4%BA%9B%E7%AC%94%E8%AE%B0">Del.icio.us</a></span></div><br /><br /><div class="sysmsg"><b><a href="http://icity.cn" target="_blank">《城客》：第一本中文互动杂志！</a></b></div><br /><br />]]></description>
   <link>http://wolfchina.blogbus.com/logs/51749875.html</link>
   <author></author>
   <pubDate>Thu, 19 Nov 2009 17:16:24 +0800</pubDate>
  </item>
  <item>
   <title>BPUG第三次聚会收获</title>
   <description><![CDATA[<p>周六的时候参加了<a href="http://www.douban.com" target="_blank">douban</a>组织的<a href="http://www.douban.com/event/11239156/" target="_blank">2009年北京Python用户组（BPUG）第3次聚会的活动</a>。具体的活动信息大家可以移步到<a href="http://www.douban.com/event/11239156/" target="_blank">这儿</a>查看。感谢<a href="http://www.douban.com/" target="_blank">douban</a>，感谢组织者<a href="http://www.douban.com/people/xyb/" target="_blank">xyb</a>，感谢三位主讲人梁冰，王云鹏，黄冬。</p>
<p>想进入参加活动名单还不是很容易的，一共才有30个人的名额，好多同学报了名也遗憾的没有参加。</p>
<p>这次活动有三个话题，基本上都是架构方面的话题，与python没有太多的关系，这样的主题我很喜欢（因为python我基本不懂），在三位主讲人的分享下，收获颇多，也不枉费我来回4个小时，60多公里的路程。</p>
<p>当你的系统进入一个高并发，高负载的时候，你的架构设计就不能仅仅只是某一门语言的问题。你需要了解和深入很多领域的知识，比如操作系统，网络协议，多种语言的组合和对比（在不同场合使用最适应本场合的语言），硬件系统。只有这样，你才能设计出来一个合乎需求的系统。所以，对于一个架构师（或者想要成为架构师的同学）来说，需要学习的东西还是很多的。</p>
<p>有些话题由于某些原因不方便参加者宣传和传播，我也就不在blog上做文字的记载，就把我在当天回家的路上整理的mind生成图片放到blog中，如果有感兴趣的同学，可以<a href="http://filer.blogbus.com/1978116/resource_19781161258294898h.png" target="_blank">查看图片</a>。</p>
<p><a title="请点击查看详细" href="http://filer.blogbus.com/1978116/resource_19781161258294898h.png" target="_blank"><img style="border: 0;" src="http://filer.blogbus.com/1978116/resource_19781161258294898h.png" alt="Beijing Python User Group聚会收获" width="716" height="392" /></a></p>
<p>另外：附上这次聚会中的一些照片，更多的照片请点击<a href="http://www.douban.com/event/album/20400263/" target="_blank">这儿</a></p>
<p><img src="http://pic4.bai.sohu.com.cn/a/2009/11/15/22/59/124f85ab202_0.jpg" alt="Tony Deng" width="491" height="518" /></p>
<p><img src="http://pic6.bai.sohu.com.cn/a/2009/11/15/22/54/124f8563528_0.jpg" alt="路标" width="600" height="419" /></p>
<p><img src="http://pic2.bai.sohu.com.cn/a/2009/11/15/22/54/124f856352a_0.jpg" alt="douban logo" width="600" height="259" /></p>
<p><img src="http://pic6.bai.sohu.com.cn/a/2009/11/15/22/54/124f8561266_0.jpg" alt="梁冰" /></p>
<p><img src="http://pic2.bai.sohu.com.cn/a/2009/11/15/22/54/124f8563529_0.jpg" alt="黄冬" width="600" height="533" /></p>
<p>&nbsp;</p><!--sp--><div class="relpost"><br/><h3>随机文章：</h3><div><a href="/logs/42162205.html">We are the world</a> 2009-07-10</div><div><a href="/logs/19746948.html">10 招干掉互联网</a> 2008-04-25</div><div><a href="/logs/19078011.html">数据存储的历史</a> 2008-04-15</div><div><a href="/logs/15680820.html">[zt]对 mp3 乱码问题的分析和解决</a> 2008-02-20</div><div><a href="/logs/11951178.html">天行健，君子以自强不息</a> 2007-12-12</div></div><div class="addfav"><br />收藏到：<span class= "delicious"><a href="http://delicious.com/save?url=http%3A%2F%2Fwolfchina.blogbus.com%2Flogs%2F51441753.html&title=BPUG%E7%AC%AC%E4%B8%89%E6%AC%A1%E8%81%9A%E4%BC%9A%E6%94%B6%E8%8E%B7">Del.icio.us</a></span></div><br /><br /><div class="sysmsg"><b><a href="http://pindao.blogbus.com/shenghuo?utm_source=blogbus&utm_medium=rss&utm_campaign=shenghuo" target="_blank">生活频道——笑谈生活，坐看人生，这里有着小人物的健康生活。</a></b></div><br /><br />]]></description>
   <link>http://wolfchina.blogbus.com/logs/51441753.html</link>
   <author></author>
   <pubDate>Sun, 15 Nov 2009 21:43:33 +0800</pubDate>
  </item>
  <item>
   <title>JSON转换LIB选择</title>
   <description><![CDATA[<p>同事老焦最近的项目中碰到一个JSON与Java Object之间转换的性能问题。</p>
<p>上网查了一下，果然我们现在使用的JSON-Lib这个框架的性能是公认的差，可能之前一直没有意识到这个问题，只是觉得这个Lib用的挺顺手的，所以一直在用它。这里有两篇文章对现在的三种JSON转换的框架的性能有一个比较具体的分析（《<a href="http://twit88.com/blog/2008/07/11/java-json-parser-performance/" target="_blank">Java: JSON Parser Performance</a>》、《<a href="http://hi.baidu.com/camaro/blog/item/384b31e9e7bae237b90e2d44.html" target="_blank">JVM性能调优记录</a>》）。</p>
<p>我们试了上面的另外两种框架，但是都不能达到我们的需求，关键是对我们自定义的Object转换会有问题，需要我们提供扩展的方案才行。</p>
<p>正在头疼中，海龙给我们推荐了<a href="http://code.google.com/p/google-gson/" target="_blank">google-gson</a>这个有google提供的JSON框架。我在pom.xml中加上google-gson的依赖，写了几个测试用例测试了一下，条件是任意多个java对象数据集合转换成JSON字符串。在同样的条件下，google-gson性能比JSON-Lib提高了两倍以上，特别是在对一个很大的、有冗余的Object做转换时性能更是能提高3-4倍。而且，API使用也很方便，一个gson.toJSON(obj)就可以完成转换的操作。</p>
<p>在这里特地给大家推荐一下<a href="http://code.google.com/p/google-gson/" target="_blank">google-gson</a>。</p><!--sp--><div class="relpost"><br/><h3>随机文章：</h3><div><a href="http://wolfchina.blogbus.com/logs/28705923.html">变量使用--绑定时间</a> 2008-09-09</div><div><a href="http://wolfchina.blogbus.com/logs/18007080.html">Linux下的JDK中文字体设置</a> 2008-03-31</div><div><a href="http://wolfchina.blogbus.com/logs/16114737.html">eclipsePermSize space错误的解决办法[ZT]</a> 2008-02-28</div><div><a href="http://wolfchina.blogbus.com/logs/11951040.html">深入理解abstract class和interface</a> 2007-12-12</div><div><a href="http://wolfchina.blogbus.com/logs/11951010.html">HttpServletRequest的getParameter与getAttribute</a> 2007-12-12</div></div><div class="addfav"><br />收藏到：<span class= "delicious"><a href="http://delicious.com/save?url=http%3A%2F%2Fwolfchina.blogbus.com%2Flogs%2F50965440.html&title=JSON%E8%BD%AC%E6%8D%A2LIB%E9%80%89%E6%8B%A9">Del.icio.us</a></span></div><br /><br /><div class="sysmsg"><b><a href="http://pindao.blogbus.com/xingzhe?utm_source=blogbus&utm_medium=rss&utm_campaign=xingzhe" target="_blank">行者频道——从普通游客到资深背包族，跟随Ta们的镜头游遍全世界。</a></b></div><br /><br />]]></description>
   <link>http://wolfchina.blogbus.com/logs/50965440.html</link>
   <author></author>
   <pubDate>Wed, 11 Nov 2009 11:37:58 +0800</pubDate>
  </item>
  <item>
   <title>REST系列分享</title>
   <description><![CDATA[<p>我在公司发起了一个关于REST的系列分享，现在已经进行到第二期了。主要关注于RESTFul应用的开发，基本上会从RESTFul的概念入手，慢慢深入的讨论如何在项目中如何开发RESTFul的应用、如何更好的理解RESTFul的理念。</p>
<p>这两期的分享主题分别是《什么是REST风格应用》，《使用JSR311规范快速构建REST应用》。基本上每次的分享时间都有两个小时左右。虽然我会把每次分享的PPT都会给大家，但是毕竟PPT只是一个简单的大纲而已，更多的内容还是在大家互相讨论交流中。</p>
<p><span style="color: #008000;">
REST系列分享活动简介如下：<br />
&nbsp;&nbsp;&nbsp; 这个活动是由程序员自动发起，非官方的身份决定我们不会有太多的资源来支持活动，希望大家能够在完成（安排好）手头的工作之后来加入活动。<br />
&nbsp;&nbsp;&nbsp; 同时，可能由于时间的关系，我们允许分享人可以不准备ppt，但是要保证可以通过别的方式（如白板）来将你要分享的内容表达清楚。<br />
&nbsp;&nbsp;&nbsp; 我们希望通过我们的分享和交流能够让大家对REST有更深入的了解，毕竟REST也是一个很庞大的话题，不是一次两次的培训和分享能够说明的。<br />
&nbsp;&nbsp;&nbsp; 我们欢迎有自己的想法，有疑问，习惯质疑，喜欢分享的程序员加入活动中来。<br />
&nbsp;&nbsp;&nbsp; 在活动中有任何的疑问和反对意见都可以随时提出来。</span></p>
<p>下面是我之前分享内容的ppt。</p>
<div id="__ss_2381637" style="width: 425px; text-align: left;"><a style="font:14px Helvetica,Arial,Sans-serif;display:block;margin:12px 0 3px 0;text-decoration:underline;" title="什么是REST风格应用" href="http://www.slideshare.net/tonydeng/rest-2381637">什么是REST风格应用</a>
<object width="425" height="355" data="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=rest-091030010739-phpapp01&amp;stripped_title=rest-2381637" type="application/x-shockwave-flash">
<param name="allowFullScreen" value="true" />
<param name="allowScriptAccess" value="always" />
<param name="src" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=rest-091030010739-phpapp01&amp;stripped_title=rest-2381637" />
<param name="allowfullscreen" value="true" />
</object>
<div style="font-size: 11px; font-family: tahoma,arial; height: 26px; padding-top: 2px;">View more <a style="text-decoration:underline;" href="http://www.slideshare.net/">presentations</a> from <a style="text-decoration:underline;" href="http://www.slideshare.net/tonydeng">Tony Deng</a>.</div>
</div>
<div id="__ss_2435578" style="width: 425px; text-align: left;"><a style="font:14px Helvetica,Arial,Sans-serif;display:block;margin:12px 0 3px 0;text-decoration:underline;" title="使用JSR311规范快速的构建REST应用" href="http://www.slideshare.net/tonydeng/jsr311rest">使用JSR311规范快速的构建REST应用</a>
<object width="425" height="355" data="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=jsr311rest-091105235539-phpapp01&amp;stripped_title=jsr311rest" type="application/x-shockwave-flash">
<param name="allowFullScreen" value="true" />
<param name="allowScriptAccess" value="always" />
<param name="src" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=jsr311rest-091105235539-phpapp01&amp;stripped_title=jsr311rest" />
<param name="allowfullscreen" value="true" />
</object>
<div style="font-size: 11px; font-family: tahoma,arial; height: 26px; padding-top: 2px;">View more <a style="text-decoration:underline;" href="http://www.slideshare.net/">presentations</a> from <a style="text-decoration:underline;" href="http://www.slideshare.net/tonydeng">Tony Deng</a>.</div>
</div>
<p>&nbsp;</p><!--sp--><div class="relpost"><br/><h3>随机文章：</h3><div><a href="http://wolfchina.blogbus.com/logs/42453780.html">org.w3c.dom.Document provider in Jersey</a> 2009-07-16</div><div><a href="http://wolfchina.blogbus.com/logs/32089262.html">太好了，jersey升级为1.0.1</a> 2008-12-03</div><div><a href="/logs/48745529.html">你是一个够职业的软件工程师吗？</a> 2009-10-19</div><div><a href="/logs/34599449.html">飘飘荡荡跌跌撞撞的走着</a> 2009-02-04</div><div><a href="/logs/11951217.html">开发人员行走Unix的随身四艺</a> 2007-12-12</div></div><div class="addfav"><br />收藏到：<span class= "delicious"><a href="http://delicious.com/save?url=http%3A%2F%2Fwolfchina.blogbus.com%2Flogs%2F50518955.html&title=REST%E7%B3%BB%E5%88%97%E5%88%86%E4%BA%AB">Del.icio.us</a></span></div><br /><br /><div class="sysmsg"><b><a href="http://pindao.blogbus.com/sejie?utm_source=blogbus&utm_medium=rss&utm_campaign=sejie" target="_blank">色界频道——这里有顶尖的摄影大师，也有摄影爱好者，他们用相机收纳大千世界。</a></b></div><br /><br />]]></description>
   <link>http://wolfchina.blogbus.com/logs/50518955.html</link>
   <author></author>
   <pubDate>Sat, 07 Nov 2009 13:51:08 +0800</pubDate>
  </item>
  <item>
   <title>Maven中解决资源文件中文乱码问题</title>
   <description><![CDATA[<p>我们在Windows下使用Maven来编译项目的时候，经常会发现Maven给出这样的提示：<span style="color: #ff0000;">[WARNING] Using platform encoding (GBK actually) to copy filtered resources, i.e. build is platform dependent! </span></p>
<p><span style="color: #ff0000;"><span style="color: #000000;">当你看见这样的提示的时候，你就要小心你项目中资源文件的中文会出现乱码的现象了。你可能会有疑问，我的文件的格式是UTF-8的，文件编码也是UTF-8的，为什么还会出现中文乱码的问题呢?</span></span></p>
<p><span style="color: #ff0000;"><span style="color: #000000;">其实原因Maven已经告诉你了。由于我们使用的Windows默认是GBK编码的，那用GBK的编码重新读写UTF-8的文件，那肯定是会出现乱码的。</span></span></p>
<p><span style="color: #ff0000;"><span style="color: #000000;">那么我们怎么样才能解决这个问题呢？其实很简单，只需要在相应的项目的pom.xml中加上一个Maven插件就可以了。</span></span></p>
<p><span style="color: #ff0000;"><span style="color: #000000;"><span style="color: #008000;">&lt;plugin&gt;<br />&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;<br />&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;artifactId&gt;maven-resources-plugin&lt;/artifactId&gt;<br />&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;configuration&gt;<br />&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;encoding&gt;UTF-8&lt;/encoding&gt;<br />&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;/configuration&gt;<br />&lt;/plugin&gt;</span><br /></span></span></p>
<p><span style="color: #ff0000;"><span style="color: #000000;"><br /></span></span></p><!--sp--><div class="relpost"><br/><h3>随机文章：</h3><div><a href="http://wolfchina.blogbus.com/logs/20579232.html">maven clean错误的处理</a> 2008-05-09</div><div><a href="http://wolfchina.blogbus.com/logs/46702276.html">社区项目开发的问题以及未来的建议</a> 2009-09-18</div><div><a href="http://wolfchina.blogbus.com/logs/42106683.html">Maven定义</a> 2009-07-09</div><div><a href="http://wolfchina.blogbus.com/logs/28127699.html">解决maven传递依赖中的版本冲突</a> 2008-08-25</div><div><a href="http://wolfchina.blogbus.com/logs/18007080.html">Linux下的JDK中文字体设置</a> 2008-03-31</div></div><div class="addfav"><br />收藏到：<span class= "delicious"><a href="http://delicious.com/save?url=http%3A%2F%2Fwolfchina.blogbus.com%2Flogs%2F49393261.html&title=Maven%E4%B8%AD%E8%A7%A3%E5%86%B3%E8%B5%84%E6%BA%90%E6%96%87%E4%BB%B6%E4%B8%AD%E6%96%87%E4%B9%B1%E7%A0%81%E9%97%AE%E9%A2%98">Del.icio.us</a></span></div><br /><br /><div class="sysmsg"><b><a href="http://pindao.blogbus.com/shenghuo?utm_source=blogbus&utm_medium=rss&utm_campaign=shenghuo" target="_blank">生活频道——笑谈生活，坐看人生，这里有着小人物的健康生活。</a></b></div><br /><br />]]></description>
   <link>http://wolfchina.blogbus.com/logs/49393261.html</link>
   <author></author>
   <pubDate>Thu, 29 Oct 2009 14:29:43 +0800</pubDate>
  </item>
  <item>
   <title>Unix 设计哲学</title>
   <description><![CDATA[<p>现在所有常用的操作系统基本上都是在Unix的基础上衍生（最少是借鉴）出来的，而且基本上大学的操作系统的课程也是拿Unix系统来讲解的。在这里我转载了Unix的设计哲学和思路，一起学习参考。</p>
<p>原文地址：http://cgfundamentalism.spaces.live.com/Blog/cns!A938DB4347919AD9!406.entry</p>
<p><span class="Apple-style-span" style="background-color: transparent; border-collapse: separate; color: #000000; font-family: arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"><span class="Apple-style-span" style="border-collapse: collapse; font-size: 13px;">
<p>（节选自 《Unix 编程艺术》）</p>
<p>Unix哲学中更多的内容不是这些先哲们口头表述出来的，而是由他们所作的一切和Unix本身所作出的榜样体现出来的。从整体上来说，可以概括为以下几点：</p>
<p>1. 模块原则：使用简洁的接口拼合简单的部件。<br />2. 清晰原则：清晰胜于机巧。<br />3. 组合原则：设计时考虑拼接组合。<br />4. 分离原则：策略同机制分离，接口同引擎分离。<br />5. 简洁原则：设计要简洁，复杂度能低则低。<br />6. 吝啬原则：除非确无他法，不要编写庞大的程序。<br />7. 透明性原则：设计要可见，以便审查和调试。<br />8. 健壮原则：健壮源于透明与简洁。<br />9. 表示原则：把知识叠入数据以求逻辑质朴而健壮。<br />10.通俗原则：接口设计避免标新立异。<br />11.缄默原则：如果一个程序没什么好说的，就沉默。<br />12.补救原则：出现异常时，马上退出并给出足够错误信息。<br />13.经济原则：宁花机器一分，不花程序员一秒。<br />14.生成原则：避免手工hack，尽量编写程序去生成程序。</p>
</span></span></p><!--sp--><div class="relpost"><br/><h3>随机文章：</h3><div><a href="http://wolfchina.blogbus.com/logs/38997726.html">数据库设计范式</a> 2009-05-06</div><div><a href="http://wolfchina.blogbus.com/logs/11949081.html">六大UNIX的比较</a> 2007-12-12</div><div><a href="/logs/48745529.html">你是一个够职业的软件工程师吗？</a> 2009-10-19</div><div><a href="/logs/41091906.html">对Session的一些误解</a> 2009-06-16</div><div><a href="/logs/11951250.html">HTTP header 详解</a> 2007-12-12</div></div><div class="addfav"><br />收藏到：<span class= "delicious"><a href="http://delicious.com/save?url=http%3A%2F%2Fwolfchina.blogbus.com%2Flogs%2F49276460.html&title=Unix+%E8%AE%BE%E8%AE%A1%E5%93%B2%E5%AD%A6">Del.icio.us</a></span></div><br /><br /><div class="sysmsg"><b><a href="http://pindao.blogbus.com/xingzhe?utm_source=blogbus&utm_medium=rss&utm_campaign=xingzhe" target="_blank">行者频道——从普通游客到资深背包族，跟随Ta们的镜头游遍全世界。</a></b></div><br /><br />]]></description>
   <link>http://wolfchina.blogbus.com/logs/49276460.html</link>
   <author></author>
   <pubDate>Tue, 27 Oct 2009 18:06:09 +0800</pubDate>
  </item>
  <item>
   <title>你是一个够职业的软件工程师吗？</title>
   <description><![CDATA[<p>这两天看了一个这样的文章《<span style="font-family: Verdana, sans-serif; line-height: 14px; font-size: 12px; border-collapse: collapse; white-space: pre;"><a href="http://www.programmer.com.cn/1041/" target="_blank">软件工程师的十个&ldquo;不职业&rdquo;行为</a><span style="border-collapse: separate; font-family: Verdana, Arial, Helvetica, sans-serif; line-height: 22px; white-space: normal; font-size: 14px;">》，是陈尚义老师整理分享的。看完之后，抚心自问，自己还是比较职业的软件工程师。</span></span></p>
<p><span style="font-family: Verdana, sans-serif; line-height: 14px; font-size: 12px; border-collapse: collapse; white-space: pre;"><span style="border-collapse: separate; font-family: Verdana, Arial, Helvetica, sans-serif; line-height: 22px; white-space: normal; font-size: 14px;">现在将这十条不职业的行为摘录下来，时刻提醒自己。</span></span></p>
<p>行为一：对外交付半成品。</p>
<p>行为二：不遵守标准和规范。</p>
<p>行为三：不积极帮助他人。</p>
<p>行为四：版权意识不敏感。（这点要注意）</p>
<p>行为五：对待计划不严肃。</p>
<p>行为六：公事私事想混淆。</p>
<p>行为七：不注意更新自己。</p>
<p>行为八：不主动与人沟通。</p>
<p>行为九：不遵守职场规则。</p>
<p>行为十：不够诚实和正直</p>
<p>原文地址:<span style="background-color: #ffffff;"><a href="http://www.programmer.com.cn/1041/">http://www.programmer.com.cn/1041/</a></span></p><!--sp--><div class="relpost"><br/><h3>随机文章：</h3><div><a href="/logs/41091906.html">对Session的一些误解</a> 2009-06-16</div><div><a href="/logs/28127699.html">解决maven传递依赖中的版本冲突</a> 2008-08-25</div><div><a href="/logs/20579232.html">maven clean错误的处理</a> 2008-05-09</div><div><a href="/logs/11997285.html">iBATIS自动生成主键</a> 2007-12-13</div><div><a href="/logs/11951250.html">HTTP header 详解</a> 2007-12-12</div></div><div class="addfav"><br />收藏到：<span class= "delicious"><a href="http://delicious.com/save?url=http%3A%2F%2Fwolfchina.blogbus.com%2Flogs%2F48745529.html&title=%E4%BD%A0%E6%98%AF%E4%B8%80%E4%B8%AA%E5%A4%9F%E8%81%8C%E4%B8%9A%E7%9A%84%E8%BD%AF%E4%BB%B6%E5%B7%A5%E7%A8%8B%E5%B8%88%E5%90%97%EF%BC%9F">Del.icio.us</a></span></div><br /><br /><div class="sysmsg"><b><a href="http://pindao.blogbus.com/shenghuo?utm_source=blogbus&utm_medium=rss&utm_campaign=shenghuo" target="_blank">生活频道——笑谈生活，坐看人生，这里有着小人物的健康生活。</a></b></div><br /><br />]]></description>
   <link>http://wolfchina.blogbus.com/logs/48745529.html</link>
   <author></author>
   <pubDate>Mon, 19 Oct 2009 21:59:17 +0800</pubDate>
  </item>
  <item>
   <title>其实我们都是菜鸟，有感《围观不会设置Java User-Agent的菜鸟》</title>
   <description><![CDATA[<p>其实我们都是从菜鸟成长起来的，感谢在这个过程中给予我们帮助的人！</p>
<p>下面的文字转自: <a href="http://www.ideawu.net/blog/?p=428" target="_blank">http://www.ideawu.net/blog/?p=428</a></p>
<p><span class="Apple-style-span" style="background-color: transparent; border-collapse: separate; color: #000000; font-family: Simsun; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; font-size: medium;"><span class="Apple-style-span" style="border-collapse: collapse; color: #00cc00; font-family: 'courier new',monospace; font-size: 13px;">最近, 网上盛传一个笑话, 一般名字叫做"围观不会设置Java User-Agent的菜鸟". 讲的是国外一个用Java开发Web爬虫获取网页<br />的菜鸟, 不知道怎么设置自己虫子的User-Agent字段, 该字段可以告诉Web服务器, 对方用的是什么工具或者软件. 这个笑话中的事情确有<br />其事, 见下面URL:<br /><br /><a style="color: #00cc00;" href="https://groups.google.com/group/comp.lang.java/browse_thread/thread/6923c024ed392c85" target="_blank">https://groups.google.com/group/comp.lang.java/browse_thread/thread/6923c024ed392c85</a><br /><br />这个帖子(邮件)的发贴人使用的邮箱后缀是<a style="color: #00cc00;" href="http://cs.stanford.edu/" target="_blank">cs.stanford.edu</a>, 他是斯坦福大学的学生. 发贴的时间是1996年1月, 使用的Java<br />是1.0beta2. 当时, Web爬虫技术应该是非常稀有的技术, Java/1.0beta2的HTTP相关库也应该非常难用. 现在看来, 那<br />时的人, 那时的技术, 都像是婴儿. 所以, 这看起来像个笑话.<br /><br />但是, "笑话"的笑点在这里吗? 我相信, 大家在看到这个所谓的笑话时, 可能会心里或者面上露出笑, 但应该是感悟的笑, 自嘲的笑, 无奈的<br />笑, 思索的笑...肯定不会有快乐的笑. 为什么? 因为发贴的人是Larray Page, 是Google公司的创始人之一. 他创造了全球许多<br />技术人员的上帝, 他创造了巨大的财富, 他创造了技术和商业神话. 可是, 他曾经做过的事, 使用的技术, 开发出的产品, 遇到的无法逾越的问<br />题, 向人讨教时的心情, 和我们那么接近, 甚至对我们大部分技术人员简直是小菜一碟. 在每一个人心中, 这都是一个历史笑话, 让我们思考技术的<br />本质.<br /><br />我把这封邮件引用在这里, 做个留念:<br /><br />&nbsp; &nbsp;I have a web robot which is a Java app. I need to be able to set<br />the User-Agent field in the HTTP header in order to be a good net<br />citizen (so people know who is accessing their server). Anyone have<br />any ideas?<br /><br />&nbsp; &nbsp;Right now, Java sends a request that includes something like:<br /><br />&nbsp; &nbsp;User-Agent: Java/1.0beta2<br /><br />&nbsp; &nbsp;I'd rather not rewrite all the HTTP stuff myself. I tried just<br />searching in the JDK for the Java/1.0beta2 figuring I could just<br />change the string, but I couldn't find it. Perhaps it is stored as a<br />unicode string?<br /><br />&nbsp; &nbsp;An easy method of setting the User-Agent field should probably be<br />added to Java, so people can properly identify their programs.<br /><br />&nbsp; &nbsp;Thanks, Larry Page<br /></span></span></p><!--sp--><div class="relpost"><br/><h3>随机文章：</h3><div><a href="http://wolfchina.blogbus.com/logs/45649719.html">勤劳的Google的spider，强大的google</a> 2009-09-02</div><div><a href="http://wolfchina.blogbus.com/logs/45647809.html">PubSubHubbub简单介绍</a> 2009-09-02</div><div><a href="/logs/47657345.html">Kseniya Simonova的沙画</a> 2009-10-05</div><div><a href="/logs/32939278.html">人体24小时器官工作表</a> 2008-12-25</div><div><a href="/logs/32689516.html">fcaebook调整了memcached的策略,来适应用户与流量的增长</a> 2008-12-19</div></div><div class="addfav"><br />收藏到：<span class= "delicious"><a href="http://delicious.com/save?url=http%3A%2F%2Fwolfchina.blogbus.com%2Flogs%2F48220333.html&title=%E5%85%B6%E5%AE%9E%E6%88%91%E4%BB%AC%E9%83%BD%E6%98%AF%E8%8F%9C%E9%B8%9F%EF%BC%8C%E6%9C%89%E6%84%9F%E3%80%8A%E5%9B%B4%E8%A7%82%E4%B8%8D%E4%BC%9A%E8%AE%BE%E7%BD%AEJava+User-Agent%E7%9A%84%E8%8F%9C%E9%B8%9F%E3%80%8B">Del.icio.us</a></span></div><br /><br /><div class="sysmsg"><b><a href="http://pindao.blogbus.com/shenghuo?utm_source=blogbus&utm_medium=rss&utm_campaign=shenghuo" target="_blank">生活频道——笑谈生活，坐看人生，这里有着小人物的健康生活。</a></b></div><br /><br />]]></description>
   <link>http://wolfchina.blogbus.com/logs/48220333.html</link>
   <author></author>
   <pubDate>Mon, 12 Oct 2009 17:26:16 +0800</pubDate>
  </item>
  <item>
   <title>Kseniya Simonova的沙画</title>
   <description><![CDATA[<p><span style="font-size: 12px;"><span class="Apple-style-span" style="background-color: transparent; border-collapse: separate; color: #000000; font-family: arial,sans-serif; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"><span class="Apple-style-span" style="border-collapse: collapse;">Kseniya Simonova，乌克兰人，80后的沙画艺术家。</span></span></span></p>
<p><span style="font-size: 12px;"><span class="Apple-style-span" style="background-color: transparent; border-collapse: separate; color: #000000; font-family: arial,sans-serif; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"><span class="Apple-style-span" style="border-collapse: collapse;">人美，画更美。下面两个沙画作品是她在《</span></span><span class="Apple-style-span" style="background-color: transparent; border-collapse: separate; color: #000000; font-family: Simsun; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"><span class="Apple-style-span" style="font-family: Arial; text-align: left;">乌克兰达人</span></span><span class="Apple-style-span" style="background-color: transparent; border-collapse: separate; color: #000000; font-family: arial,sans-serif; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"><span class="Apple-style-span" style="border-collapse: collapse;">》这个选秀节目中的表演。每个作品都讲述了一个故事。</span></span></span></p>
<p><span style="font-size: 12px;"><span class="Apple-style-span" style="background-color: transparent; border-collapse: separate; color: #000000; font-family: Simsun; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"><span class="Apple-style-span" style="font-family: Arial; text-align: left;">比赛中的表演令现场观众看她作画居然会为之泪下。她的沙画艺术是对艺术与灵魂的诠释，看她作画的过程，能够让人感觉身心得到净化和升华，难以想象这竟然是在一场选秀节目中的表演。<span class="Apple-converted-space"> <br /></span></span></span></span></p>
<p><span style="font-size: 12px;"><span class="Apple-style-span" style="background-color: transparent; border-collapse: separate; color: #000000; font-family: arial,sans-serif; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"><span class="Apple-style-span" style="border-collapse: collapse;">这个作品讲述的是</span></span><span class="Apple-style-span" style="background-color: transparent; border-collapse: separate; color: #000000; font-family: Simsun; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"><span class="Apple-style-span" style="font-family: Arial; text-align: left;">德国二战期间侵略乌克兰历史。</span></span><span class="Apple-style-span" style="background-color: transparent; border-collapse: separate; color: #000000; font-family: Simsun; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"><span class="Apple-style-span" style="font-family: Arial; text-align: left;">最后她写的字意思是&ldquo;永远和你们在一起&rdquo;。<span class="Apple-converted-space"> </span>结尾部分的背景音乐是&ldquo;nothing else matters&rdquo;。</span></span></span></p>
<p>
<span style="font-size: 12px;">
<object width="480" height="400" data="http://player.youku.com/player.php/sid/XMTE0MTMxMzA0/v.swf" type="application/x-shockwave-flash">
<param name="align" value="middle" />
<param name="src" value="http://player.youku.com/player.php/sid/XMTE0MTMxMzA0/v.swf" />
<param name="quality" value="high" />
</object>
</span>
</p>
<p><span style="font-size: 12px;"><br /></span></p>
<p><span style="font-size: 12px;">这个作品<span class="Apple-style-span" style="background-color: transparent; border-collapse: separate; color: #000000; font-family: Simsun; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"><span class="Apple-style-span" style="font-family: Arial; text-align: left;">表达了宇宙、人生、亲情。孩子从出生到变成画家，出名后和父母很少联系，老母亲只能在电视里看着儿子的身影，最后孤独的死去。<span class="Apple-converted-space">&nbsp;</span></span></span></span></p>
<p><span style="font-size: 12px;"><span class="Apple-style-span" style="background-color: transparent; border-collapse: separate; color: #000000; font-family: Simsun; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"><span class="Apple-style-span" style="font-family: Arial; text-align: left;"><br />Kseniya Simonova在录像最后用俄语写了：&ldquo;Don't be late...; 别晚了...&rdquo;，意思是要赶紧和家人联系，等到家人都走了就晚了。<span class="Apple-converted-space"> <br /></span></span></span></span></p>
<p><span style="font-size: 12px;">
<object width="480" height="400" data="http://player.youku.com/player.php/sid/XMTE5NDM5Mzg4/v.swf" type="application/x-shockwave-flash">
<param name="align" value="middle" />
<param name="src" value="http://player.youku.com/player.php/sid/XMTE5NDM5Mzg4/v.swf" />
<param name="quality" value="high" />
</object>
</span></p><!--sp--><div class="relpost"><br/><h3>随机文章：</h3><div><a href="/logs/47211603.html">如何培养员工的主动性</a> 2009-09-27</div><div><a href="/logs/44480738.html">Internet 技术演变图</a> 2009-08-18</div><div><a href="/logs/21257625.html">相信</a> 2008-05-20</div><div><a href="/logs/16114737.html">eclipsePermSize space错误的解决办法[ZT]</a> 2008-02-28</div><div><a href="/logs/15680820.html">[zt]对 mp3 乱码问题的分析和解决</a> 2008-02-20</div></div><div class="addfav"><br />收藏到：<span class= "delicious"><a href="http://delicious.com/save?url=http%3A%2F%2Fwolfchina.blogbus.com%2Flogs%2F47657345.html&title=Kseniya+Simonova%E7%9A%84%E6%B2%99%E7%94%BB">Del.icio.us</a></span></div><br /><br /><div class="sysmsg"><b><a href="http://pindao.blogbus.com/sejie?utm_source=blogbus&utm_medium=rss&utm_campaign=sejie" target="_blank">色界频道——这里有顶尖的摄影大师，也有摄影爱好者，他们用相机收纳大千世界。</a></b></div><br /><br />]]></description>
   <link>http://wolfchina.blogbus.com/logs/47657345.html</link>
   <author></author>
   <pubDate>Mon, 05 Oct 2009 11:34:37 +0800</pubDate>
  </item>
  <item>
   <title>如何培养员工的主动性</title>
   <description><![CDATA[<p><span class="Apple-style-span" style="background-color: transparent; border-collapse: separate; color: #000000; font-family: Simsun; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; font-size: medium;"><span class="Apple-style-span" style="color: #646464; font-family: Arial,Helvetica,sans-serif; font-size: 13px; line-height: 20px;">
<p class="MsoNormal" style="margin: 0px; padding: 0px 0px 15px;">原文地址：<a href="http://blog.thinklet.net/mantian/2009/09/18/ruhepeiyangyuangongdezhudongxing/" target="_blank">漫天风</a></p>
<p class="MsoNormal" style="margin: 0px; padding: 0px 0px 15px;"><span style="font-family: 宋体;">培养员工的主动性和敬业精神可以从几大方面入手：</span></p>
<p class="MsoListParagraph" style="margin: 0px 0px 0px 18pt; padding: 0px 0px 15px;"><span lang="EN-US"><span>1、<span style="font-variant: normal; font-weight: normal; font-size: 7pt;"><span class="Apple-converted-space">&nbsp;</span></span></span></span><span style="font-family: 宋体;">最基本的是创造一个积极的，宽松的，自组织的工作环境和氛围。在这个环境中，倡导学习型团队文化。</span></p>
<p class="MsoListParagraph" style="margin: 0px 0px 0px 18pt; padding: 0px 0px 15px;"><span lang="EN-US"><span>2、<span style="font-variant: normal; font-weight: normal; font-size: 7pt;"><span class="Apple-converted-space">&nbsp;</span></span></span></span><span style="font-family: 宋体;">积极建设阶梯型、多样化的人才团队。一个团队如果能形成良好的人才梯队，不仅仅有利于团队形成强大的竞争力，而且一定程度上能激发不同成员的主动性和积极性。</span></p>
<p class="MsoListParagraph" style="margin: 0px 0px 0px 18pt; padding: 0px 0px 15px;"><span lang="EN-US"><span>3、<span style="font-variant: normal; font-weight: normal; font-size: 7pt;"><span class="Apple-converted-space">&nbsp;</span></span></span></span><span style="font-family: 宋体;">完善的角色和明确的工作职责。一个团队，如果缺乏某个特定的角色，不仅仅在这个特定领域中会成为团队的短板，而且往往需要团队</span><span lang="EN-US">Leader</span><span style="font-family: 宋体;">去弥补或救火，这样会成为团队发展的瓶颈，这个是限制员工发挥主动性的重要因素。</span></p>
<p class="MsoListParagraph" style="margin: 0px 0px 0px 18pt; padding: 0px 0px 15px;"><span lang="EN-US"><span>4、<span style="font-variant: normal; font-weight: normal; font-size: 7pt;"><span class="Apple-converted-space">&nbsp;</span></span></span></span><span style="font-family: 宋体;">合理的授权。团队领导应该成为教练，并从中帮助团队各个角色更好的协作，更好的发挥每个人的优势。授权是一门管理艺术，信任每个员工，并给他们充分的权力，有助于提升员工的主动性和敬业精神。</span></p>
<p class="MsoListParagraph" style="margin: 0px 0px 0px 18pt; padding: 0px 0px 15px;"><span lang="EN-US"><span>5、<span style="font-variant: normal; font-weight: normal; font-size: 7pt;"><span class="Apple-converted-space">&nbsp;</span></span></span></span><span style="font-family: 宋体;">激励。当团队的目标达成时，当某个员工表现突出时，适当的激励将会使团队焕发激情，同时也是对每个员工的一种肯定和鼓励。善于使用激励的领导，将会让他的员工充满积极主动性。</span></p>
</span></span></p><!--sp--><div class="relpost"><br/><h3>随机文章：</h3><div><a href="http://wolfchina.blogbus.com/logs/46702276.html">社区项目开发的问题以及未来的建议</a> 2009-09-18</div><div><a href="http://wolfchina.blogbus.com/logs/11950902.html">用白板解决项目管理和团队沟通</a> 2007-12-12</div><div><a href="http://wolfchina.blogbus.com/logs/11949711.html">IT团队精神4要素</a> 2007-12-12</div><div><a href="/logs/16114737.html">eclipsePermSize space错误的解决办法[ZT]</a> 2008-02-28</div><div><a href="/logs/11950980.html">“激情创业”综合症</a> 2007-12-12</div></div><div class="addfav"><br />收藏到：<span class= "delicious"><a href="http://delicious.com/save?url=http%3A%2F%2Fwolfchina.blogbus.com%2Flogs%2F47211603.html&title=%E5%A6%82%E4%BD%95%E5%9F%B9%E5%85%BB%E5%91%98%E5%B7%A5%E7%9A%84%E4%B8%BB%E5%8A%A8%E6%80%A7">Del.icio.us</a></span></div><br /><br /><div class="sysmsg"><b><a href="http://pindao.blogbus.com/fengshang?utm_source=blogbus&utm_medium=rss&utm_campaign=fengshang" target="_blank">风尚频道——国内顶尖的时尚族群汇聚于此，未必是流行，但一定要有品位。</a></b></div><br /><br />]]></description>
   <link>http://wolfchina.blogbus.com/logs/47211603.html</link>
   <author></author>
   <pubDate>Sun, 27 Sep 2009 11:51:33 +0800</pubDate>
  </item>
 </channel>
</rss>
