<?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; 牢骚</title>
	<atom:link href="http://www.jayxu.com/tags/%e7%89%a2%e9%aa%9a/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>使用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%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%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%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%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%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%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>评论：｢评论:工程师们,不要想一辈子靠技术混饭吃｣</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%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>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.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%2F2008%2F03%2F20%2F311%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%2F2009%2F11%2F18%2F1888%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>
        <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%2F%3Fp%3D128&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%2Farchives%2F219.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;">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.sinovale.com%2Fhtml%2F1611.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;">多重微球芯片技术——CBA vs Luminex (@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.ycy8.net%2F2011_10279.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;">John Ryland概念摩托车设计 (@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.hui-wang.info%2F2011%2F09%2F25%2Fcomment-is-prohibited%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;">禁止注释 (@hui-wang)</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%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>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.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%2F2008%2F03%2F20%2F311%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%2F2009%2F11%2F18%2F1888%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>
        <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%2F%3Fp%3D128&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%2Farchives%2F219.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;">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.sinovale.com%2Fhtml%2F1611.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;">多重微球芯片技术——CBA vs Luminex (@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.ycy8.net%2F2011_10279.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;">John Ryland概念摩托车设计 (@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.hui-wang.info%2F2011%2F09%2F25%2Fcomment-is-prohibited%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;">禁止注释 (@hui-wang)</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>移不动就一傻逼</title>
		<link>http://www.jayxu.com/2008/11/07/804/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=%25e7%25a7%25bb%25e4%25b8%258d%25e5%258a%25a8%25e5%25b0%25b1%25e4%25b8%2580%25e5%2582%25bb%25e9%2580%25bc</link>
		<comments>http://www.jayxu.com/2008/11/07/804/#comments</comments>
		<pubDate>Fri, 07 Nov 2008 10:48:52 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[生活]]></category>
		<category><![CDATA[愤青]]></category>
		<category><![CDATA[牢骚]]></category>

		<guid isPermaLink="false">http://ijay.net.cn/log/2008/11/07/804/</guid>
		<description><![CDATA[刚才去mzone办业务，看见一个叫“来电提醒”，3块钱包月， 开通来电提醒，在关机、没电、不在服务区等状态下的漏接来电，在你恢复正常通话时，均可收到短信提醒，让你及时获知来电情况，重要来电一个都不漏。而且，不需设置，方便快捷！ 心中些微有些疑惑，打开原先定制的“全球呼”的介绍，果然也是3块钱包月 当您不方便或无法接听电话时，只要呼叫转移到号码13800100309，系统会按照你的指令自动记录打给你的电话号码，并通过免费短信发到你的手机上。无论开机关机，来电情况一手掌握！ 于是坚定：“移不动就他妈一傻逼”。 还有更绝的：我原先订的是动听，6块钱包月，送手机报。后来手机报懒得看，于是取消了。又后来欧洲杯和闹运的时候订了两个月看赛事新闻，于是移不动很坦然地收了我两个月的手机报钱……从此对手机报同仇敌忾。刚才看见有一个“福娃音乐计划”，同样6块钱，同样来电畅听，但是送的是彩铃。于是心动，取消了动听，提示下月生效，心里还有些欣慰移不动终于有些开窍，明白取消业务后立即暂停跟抢钱没什么区别。接着定制福娃，告知我有冲突套餐……一琢磨，这意味着下个月我才能定制福娃，而最快到下下个月我才能用上…… 真的雷到了，这个transaction够安全…… 原创内容，转载请注明： 转载自拈花微笑 本文链接地址: 移不动就一傻逼<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%2F04%2F16%2F73%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2008%2F11%2F07%2F804%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%2F11%2F10518%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2008%2F11%2F07%2F804%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Single VS Non-Single [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%2F2008%2F11%2F07%2F804%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%2F2008%2F09%2F27%2F719%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2008%2F11%2F07%2F804%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%2F2010%2F11%2F07%2F10196&from=http%3A%2F%2Fwww.jayxu.com%2F2008%2F11%2F07%2F804%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>刚才去mzone办业务，看见一个叫“来电提醒”，3块钱包月，</p>
<blockquote><p>开通来电提醒，在关机、没电、不在服务区等状态下的漏接来电，在你恢复正常通话时，均可收到短信提醒，让你及时获知来电情况，重要来电一个都不漏。而且，不需设置，方便快捷！</p></blockquote>
<p>心中些微有些疑惑，打开原先定制的“全球呼”的介绍，果然也是3块钱包月</p>
<blockquote><p>当您不方便或无法接听电话时，只要呼叫转移到号码13800100309，系统会按照你的指令自动记录打给你的电话号码，并通过免费短信发到你的手机上。无论开机关机，来电情况一手掌握！</p></blockquote>
<p>于是坚定：“移不动就他妈一傻逼”。<br />
还有更绝的：我原先订的是动听，6块钱包月，<span style="text-decoration: line-through;">送手机报</span>。后来手机报懒得看，于是取消了。又后来欧洲杯和闹运的时候订了两个月看赛事新闻，于是移不动很坦然地收了我两个月的手机报钱……从此对手机报同仇敌忾。刚才看见有一个“福娃音乐计划”，同样6块钱，同样来电畅听，但是送的是彩铃。于是心动，取消了动听，提示下月生效，心里还有些欣慰移不动终于有些开窍，明白取消业务后立即暂停跟抢钱没什么区别。接着定制福娃，告知我有冲突套餐……一琢磨，这意味着下个月我才能定制福娃，而最快到下下个月我才能用上……<br />
真的雷到了，这个transaction够安全……
<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/2008/11/07/804/">移不动就一傻逼</a></p>
</div>
<p><a href="http://www.bshare.cn/share?url=http%3A%2F%2Fwww.jayxu.com%2F2008%2F11%2F07%2F804%2F&title=%E7%A7%BB%E4%B8%8D%E5%8A%A8%E5%B0%B1%E4%B8%80%E5%82%BB%E9%80%BC" 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%2F2008%2F11%2F07%2F804%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%2F01%2F17%2F10439%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2008%2F11%2F07%2F804%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%2F2009%2F10%2F14%2F1765%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2008%2F11%2F07%2F804%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%2F11%2F42%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2008%2F11%2F07%2F804%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&from=http%3A%2F%2Fwww.jayxu.com%2F2008%2F11%2F07%2F804%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/2008/11/07/804/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>想说话……等毕业了吧</title>
		<link>http://www.jayxu.com/2005/06/29/211/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=%25e6%2583%25b3%25e8%25af%25b4%25e8%25af%259d%25e2%2580%25a6%25e2%2580%25a6%25e7%25ad%2589%25e6%25af%2595%25e4%25b8%259a%25e4%25ba%2586%25e5%2590%25a7</link>
		<comments>http://www.jayxu.com/2005/06/29/211/#comments</comments>
		<pubDate>Wed, 29 Jun 2005 08:16:00 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[学校生活]]></category>
		<category><![CDATA[北航]]></category>
		<category><![CDATA[牢骚]]></category>

		<guid isPermaLink="false">http://ijay.net.cn/log/?p=211</guid>
		<description><![CDATA[今天大四的学长们办离校手续，听说学校又有不合理收费情况，骂声一片…… 在北航呆了三年，耳闻目睹好多怪现象，很想贴文章说两句，但有前车之鉴——前两年的一个学长因为在校BBS上发表文章，将矛头直指校领导，立马丢了学位。所以还是忍忍吧，为了父母的血汗钱。等毕业了，一定要说个痛快。在这里先把标题定好—— 《四年目睹北航之怪现状》 原创内容，转载请注明： 转载自拈花微笑 本文链接地址: 想说话……等毕业了吧<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%2F02%2F10627%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2005%2F06%2F29%2F211%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">北航毕业床单展又开始了，今年的主题你懂的……(22P) [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%2F07%2F05%2F479%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2005%2F06%2F29%2F211%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%2F59%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2005%2F06%2F29%2F211%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">小心Derby的ResultSet陷阱</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.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%2F2005%2F06%2F29%2F211%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%2F2006%2F03%2F13%2F156%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2005%2F06%2F29%2F211%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">补记：创新MuVo2 5G</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>在北航呆了三年，耳闻目睹好多怪现象，很想贴文章说两句，但有前车之鉴——前两年的一个学长因为在校BBS上发表文章，将矛头直指校领导，立马丢了学位。所以还是忍忍吧，为了父母的血汗钱。等毕业了，一定要说个痛快。在这里先把标题定好——</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/2005/06/29/211/">想说话……等毕业了吧</a></p>
</div>
<p><a href="http://www.bshare.cn/share?url=http%3A%2F%2Fwww.jayxu.com%2F2005%2F06%2F29%2F211%2F&title=%E6%83%B3%E8%AF%B4%E8%AF%9D%E2%80%A6%E2%80%A6%E7%AD%89%E6%AF%95%E4%B8%9A%E4%BA%86%E5%90%A7" 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%2F02%2F10627%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2005%2F06%2F29%2F211%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">北航毕业床单展又开始了，今年的主题你懂的……(22P) [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%2F07%2F05%2F479%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2005%2F06%2F29%2F211%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%2F17%2F10243&from=http%3A%2F%2Fwww.jayxu.com%2F2005%2F06%2F29%2F211%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%2F10%2F28%2F12944%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2005%2F06%2F29%2F211%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%2F2005%2F06%2F29%2F211%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/2005/06/29/211/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>北京的服务性行业从业人员</title>
		<link>http://www.jayxu.com/2005/06/04/217/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=%25e5%258c%2597%25e4%25ba%25ac%25e5%258d%25b0%25e8%25b1%25a1%25ef%25bc%2588%25e6%259c%258d%25e5%258a%25a1%25e6%2580%25a7%25e8%25a1%258c%25e4%25b8%259a%25e4%25bb%258e%25e4%25b8%259a%25e4%25ba%25ba%25e5%2591%2598%25ef%25bc%2589</link>
		<comments>http://www.jayxu.com/2005/06/04/217/#comments</comments>
		<pubDate>Fri, 03 Jun 2005 18:32:00 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[北京印象]]></category>
		<category><![CDATA[北京]]></category>
		<category><![CDATA[牢骚]]></category>

		<guid isPermaLink="false">http://ijay.net.cn/log/?p=217</guid>
		<description><![CDATA[打来到北京后就觉得这个城市太懒散，尤其是服务性行业，根本就是卖方市场，从业人员高高在上，不把顾客当顾客，全当孙子了。我们北航的校医院、小卖部（校办）、收发室、饭卡缴费处，全是这类人：你去的时候基本上是在聊天，把你撂一旁干等着，聊完了才来理你。 高中时候年级组长的一句话我到现在还记得：学生是我们的衣食父母。在这里摆出这句话并不是期望那些人管我叫爹，只是想提醒“她们”（因为其中绝大部分是40到50岁的中年妇女）一句，看见学生的时候别忘了自己是吃谁的，用谁的，没你们北航照样转，我们照样吃饭睡觉，但没有我们，你们只能去喝西北风！ 原创内容，转载请注明： 转载自拈花微笑 本文链接地址: 北京的服务性行业从业人员<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%2F04%2F10%2F144%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2005%2F06%2F04%2F217%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%2F2005%2F04%2F20%2F224%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2005%2F06%2F04%2F217%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%2F19%2F1400%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2005%2F06%2F04%2F217%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%2F1967%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2005%2F06%2F04%2F217%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Google Bye</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.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%2F03%2F1792%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2005%2F06%2F04%2F217%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>打来到北京后就觉得这个城市太懒散，尤其是服务性行业，根本就是卖方市场，从业人员高高在上，不把顾客当顾客，全当孙子了。我们北航的校医院、小卖部（校办）、收发室、饭卡缴费处，全是这类人：你去的时候基本上是在聊天，把你撂一旁干等着，聊完了才来理你。 </p>
<p>高中时候年级组长的一句话我到现在还记得：学生是我们的衣食父母。在这里摆出这句话并不是期望那些人管我叫爹，只是想提醒“她们”（因为其中绝大部分是40到50岁的中年妇女）一句，看见学生的时候别忘了自己是吃谁的，用谁的，没你们北航照样转，我们照样吃饭睡觉，但没有我们，你们只能去喝西北风！</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/2005/06/04/217/">北京的服务性行业从业人员</a></p>
</div>
<p><a href="http://www.bshare.cn/share?url=http%3A%2F%2Fwww.jayxu.com%2F2005%2F06%2F04%2F217%2F&title=%E5%8C%97%E4%BA%AC%E7%9A%84%E6%9C%8D%E5%8A%A1%E6%80%A7%E8%A1%8C%E4%B8%9A%E4%BB%8E%E4%B8%9A%E4%BA%BA%E5%91%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%2F2006%2F04%2F10%2F144%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2005%2F06%2F04%2F217%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%2F2005%2F04%2F20%2F224%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2005%2F06%2F04%2F217%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%2F16%2F10344%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2005%2F06%2F04%2F217%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%2F19%2F1400%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2005%2F06%2F04%2F217%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%2F11%2F03%2F1792%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2005%2F06%2F04%2F217%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/2005/06/04/217/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>程序员的信仰……我想骂人</title>
		<link>http://www.jayxu.com/2005/03/16/231/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=developers-faith</link>
		<comments>http://www.jayxu.com/2005/03/16/231/#comments</comments>
		<pubDate>Wed, 16 Mar 2005 06:27:00 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[学校生活]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[北航]]></category>
		<category><![CDATA[愤青]]></category>
		<category><![CDATA[牢骚]]></category>

		<guid isPermaLink="false">http://ijay.net.cn/log/?p=231</guid>
		<description><![CDATA[我们学院开《面向对象技术》课的老师拿Java做讲课语言，讲课时却对Java一知半解，我想骂人…… 这个学期大三（下），终于到了“熬出头”日子，因为全部是专业课，不用再上什么大物啊、数电啊、模电啊这些我一看了课表就想吐的课程，而且还有很多专业选修课可以上，再有就是我们学院的开课老师都挺有名气，像上操作系统的任爱华，上个人软件过程的吴超英……。 一拿到专业选修课的课表，我立马把“面向对象技术”列在选择范围之内，道理很简单，因为Java。第一节课，那老师看上去有快50的年纪，上得还算中规中矩，介绍了一下面向对象技术的历史。但从第二节课开始，他介绍Java基本知识，我的恶梦也开始了…… 首先是类型介绍，他赫然把String和int、double一起作为Java的类型来介绍。然后，他竟然自做主张地把System类划分到了 java.io包下，范例程序中每次从标准输出打印时都要import一下io包。在讲布尔类型时他的幻灯片里还出现了“&#60; boolean&#62;!”（非操作）这样的语法。今天的课上，他把override译成了“重构”，还在Java的collention框架里添加了一个“dictionary”，结果听他一讲原来是map！还有其它的一些错误比如混用“boolean”和“Boolean”、“String”和 “string”、“＝”和“＝＝”，真不知道他是不是科班出身。 前些天和同学聊天，我说程序员是有信仰的，对语言的执着、对技术的追求，那就是一种信仰。然而这个老师竟公然亵渎我的信仰，还将这么多的错误知识从讲台上传授下来，真的害人不浅。中国的计算机教育或者说大学计算机教育忽视教学质量，是不是滞后中国软件业发展的一个因素呢？ 原创内容，转载请注明： 转载自拈花微笑 本文链接地址: 程序员的信仰……我想骂人<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%2F2005%2F03%2F16%2F231%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%2F26%2F13093%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2005%2F03%2F16%2F231%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%2F02%2F07%2F105%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2005%2F03%2F16%2F231%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%2F15%2F1767%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2005%2F03%2F16%2F231%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%2F02%2F10627%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2005%2F03%2F16%2F231%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">北航毕业床单展又开始了，今年的主题你懂的……(22P) [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.hui-wang.info%2F2012%2F01%2F08%2Fjava-enum-and-polymorphism%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2005%2F03%2F16%2F231%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Java的枚举和接口 (@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%2Fmall.ycy8.net%2F2011_588.html&from=http%3A%2F%2Fwww.jayxu.com%2F2005%2F03%2F16%2F231%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%2Fbfya.com%2Fchuxiong-normal-university&from=http%3A%2F%2Fwww.jayxu.com%2F2005%2F03%2F16%2F231%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.dedeadmin.com%2F%3Fp%3D1542&from=http%3A%2F%2Fwww.jayxu.com%2F2005%2F03%2F16%2F231%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.lzhi.org%2Fviews%2F1022&from=http%3A%2F%2Fwww.jayxu.com%2F2005%2F03%2F16%2F231%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">歇后语-骂人专用 (@lzhi)</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做讲课语言，讲课时却对Java一知半解，我想骂人……</p>
<blockquote><p>这个学期大三（下），终于到了“熬出头”日子，因为全部是专业课，不用再上什么大物啊、数电啊、模电啊这些我一看了课表就想吐的课程，而且还有很多专业选修课可以上，再有就是我们学院的开课老师都挺有名气，像上操作系统的任爱华，上个人软件过程的吴超英……。</p>
<p>一拿到专业选修课的课表，我立马把“面向对象技术”列在选择范围之内，道理很简单，因为Java。第一节课，那老师看上去有快50的年纪，上得还算中规中矩，介绍了一下面向对象技术的历史。但从第二节课开始，他介绍Java基本知识，我的恶梦也开始了……</p>
<p>首先是类型介绍，他赫然把String和int、double一起作为Java的类型来介绍。然后，他竟然自做主张地把System类划分到了 java.io包下，范例程序中每次从标准输出打印时都要import一下io包。在讲布尔类型时他的幻灯片里还出现了“&lt; boolean&gt;!”（非操作）这样的语法。今天的课上，他把override译成了“重构”，还在Java的collention框架里添加了一个“dictionary”，结果听他一讲原来是map！还有其它的一些错误比如混用“boolean”和“Boolean”、“String”和 “string”、“＝”和“＝＝”，真不知道他是不是科班出身。</p>
<p>前些天和同学聊天，我说程序员是有信仰的，对语言的执着、对技术的追求，那就是一种信仰。然而这个老师竟公然亵渎我的信仰，还将这么多的错误知识从讲台上传授下来，真的害人不浅。中国的计算机教育或者说大学计算机教育忽视教学质量，是不是滞后中国软件业发展的一个因素呢？</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/2005/03/16/231/">程序员的信仰……我想骂人</a></p>
</div>
<p><a href="http://www.bshare.cn/share?url=http%3A%2F%2Fwww.jayxu.com%2F2005%2F03%2F16%2F231%2F&title=%E7%A8%8B%E5%BA%8F%E5%91%98%E7%9A%84%E4%BF%A1%E4%BB%B0%E2%80%A6%E2%80%A6%E6%88%91%E6%83%B3%E9%AA%82%E4%BA%BA" 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%2F2005%2F03%2F16%2F231%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%2F26%2F13093%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2005%2F03%2F16%2F231%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%2F02%2F07%2F105%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2005%2F03%2F16%2F231%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%2F15%2F1767%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2005%2F03%2F16%2F231%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%2F02%2F10627%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2005%2F03%2F16%2F231%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">北航毕业床单展又开始了，今年的主题你懂的……(22P) [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.hui-wang.info%2F2012%2F01%2F08%2Fjava-enum-and-polymorphism%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2005%2F03%2F16%2F231%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Java的枚举和接口 (@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%2Fmall.ycy8.net%2F2011_588.html&from=http%3A%2F%2Fwww.jayxu.com%2F2005%2F03%2F16%2F231%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%2Fbfya.com%2Fchuxiong-normal-university&from=http%3A%2F%2Fwww.jayxu.com%2F2005%2F03%2F16%2F231%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.dedeadmin.com%2F%3Fp%3D1542&from=http%3A%2F%2Fwww.jayxu.com%2F2005%2F03%2F16%2F231%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.lzhi.org%2Fviews%2F1022&from=http%3A%2F%2Fwww.jayxu.com%2F2005%2F03%2F16%2F231%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">歇后语-骂人专用 (@lzhi)</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/2005/03/16/231/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>排球课</title>
		<link>http://www.jayxu.com/2005/03/15/232/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=vollyball</link>
		<comments>http://www.jayxu.com/2005/03/15/232/#comments</comments>
		<pubDate>Tue, 15 Mar 2005 03:47:00 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[学校生活]]></category>
		<category><![CDATA[牢骚]]></category>

		<guid isPermaLink="false">http://ijay.net.cn/log/?p=232</guid>
		<description><![CDATA[今天上午10点到11点的排球课，教垫球。结果上完课之后前臂又红又疼 打排球真辛苦 原创内容，转载请注明： 转载自拈花微笑 本文链接地址: 排球课<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%2F09%2F11780%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2005%2F03%2F15%2F232%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%2F22%2F10385%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2005%2F03%2F15%2F232%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%2F11%2F08%2F12988%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2005%2F03%2F15%2F232%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%2F17%2F1762%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2005%2F03%2F15%2F232%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Be Happy</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.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%2F2005%2F03%2F15%2F232%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Mac OS X的内存管理策略</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>今天上午10点到11点的排球课，教垫球。结果上完课之后前臂又红又疼 <img src='http://www.jayxu.com/wp-includes/images/smilies/icon_confused.gif' alt=':???:' class='wp-smiley' />  打排球真辛苦
<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/2005/03/15/232/">排球课</a></p>
</div>
<p><a href="http://www.bshare.cn/share?url=http%3A%2F%2Fwww.jayxu.com%2F2005%2F03%2F15%2F232%2F&title=%E6%8E%92%E7%90%83%E8%AF%BE" 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%2F07%2F10196&from=http%3A%2F%2Fwww.jayxu.com%2F2005%2F03%2F15%2F232%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%2F11%2F42%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2005%2F03%2F15%2F232%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%2F02%2F19%2F263%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2005%2F03%2F15%2F232%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%2F2005%2F03%2F15%2F232%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%2F10%2F09%2F2441&from=http%3A%2F%2Fwww.jayxu.com%2F2005%2F03%2F15%2F232%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/2005/03/15/232/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSDN的blog好烂啊</title>
		<link>http://www.jayxu.com/2005/03/12/233/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=poor-csdn-blog</link>
		<comments>http://www.jayxu.com/2005/03/12/233/#comments</comments>
		<pubDate>Sat, 12 Mar 2005 03:41:00 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[技术生活]]></category>
		<category><![CDATA[csdn]]></category>
		<category><![CDATA[博客]]></category>
		<category><![CDATA[牢骚]]></category>

		<guid isPermaLink="false">http://ijay.net.cn/log/?p=233</guid>
		<description><![CDATA[这两天csdn的blog又瘫了，老是出错 要不是看在它是我第一个博客的份上，我就◎％￥＃！×……了 原创内容，转载请注明： 转载自拈花微笑 本文链接地址: CSDN的blog好烂啊<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%2F23%2F13167%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2005%2F03%2F12%2F233%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">CSDN这回一石激起千层浪了</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.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%2F2005%2F03%2F12%2F233%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%2F11%2F06%2F775%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2005%2F03%2F12%2F233%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%2F09%2F09%2F608%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2005%2F03%2F12%2F233%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Blog搬家工具 - 从MSN Live Spaces到Wordpress [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%2F10%2F14%2F1765%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2005%2F03%2F12%2F233%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>这两天csdn的blog又瘫了，老是出错 <img src='http://www.jayxu.com/wp-includes/images/smilies/icon_evil.gif' alt=':evil:' class='wp-smiley' />  要不是看在它是我第一个博客的份上，我就◎％￥＃！×……了
<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/2005/03/12/233/">CSDN的blog好烂啊</a></p>
</div>
<p><a href="http://www.bshare.cn/share?url=http%3A%2F%2Fwww.jayxu.com%2F2005%2F03%2F12%2F233%2F&title=CSDN%E7%9A%84blog%E5%A5%BD%E7%83%82%E5%95%8A" 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%2F23%2F13167%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2005%2F03%2F12%2F233%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">CSDN这回一石激起千层浪了</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.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%2F2005%2F03%2F12%2F233%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%2F11%2F06%2F775%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2005%2F03%2F12%2F233%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%2F09%2F09%2F608%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2005%2F03%2F12%2F233%2F">
                        <font size="-1"  style="line-height: 1.65em; font-size: 12px !important;">Blog搬家工具 - 从MSN Live Spaces到Wordpress [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%2F10%2F14%2F1765%2F&from=http%3A%2F%2Fwww.jayxu.com%2F2005%2F03%2F12%2F233%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/2005/03/12/233/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

