﻿<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/"><channel><title>语源科技BlogJava-superwei</title><link>http://www.blogjava.net/superwei/</link><description /><language>zh-cn</language><lastBuildDate>Sun, 17 May 2026 19:25:40 GMT</lastBuildDate><pubDate>Sun, 17 May 2026 19:25:40 GMT</pubDate><ttl>60</ttl><item><title>希腊字母读法</title><link>http://www.blogjava.net/superwei/archive/2021/06/19/435901.html</link><dc:creator>小辞猬</dc:creator><author>小辞猬</author><pubDate>Sat, 19 Jun 2021 03:43:00 GMT</pubDate><guid>http://www.blogjava.net/superwei/archive/2021/06/19/435901.html</guid><wfw:comment>http://www.blogjava.net/superwei/comments/435901.html</wfw:comment><comments>http://www.blogjava.net/superwei/archive/2021/06/19/435901.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/superwei/comments/commentRss/435901.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/superwei/services/trackbacks/435901.html</trackback:ping><description><![CDATA[<img src="https://iknow-pic.cdn.bcebos.com/7e3e6709c93d70cfbf91b2e4f6dcd100bba12beb?x-bce-process%3Dimage%2Fresize%2Cm_lfit%2Cw_600%2Ch_800%2Climit_1%2Fquality%2Cq_85%2Fformat%2Cf_jpg"  alt="" /> <div class="xl-chrome-ext-bar" id="xl_chrome_ext_{4DB361DE-01F7-4376-B494-639E489D19ED}" style="display: none;">
      <div class="xl-chrome-ext-bar__logo"></div>

      <a id="xl_chrome_ext_download" href="javascript:;" class="xl-chrome-ext-bar__option">下载视频</a>
      <a id="xl_chrome_ext_close" href="javascript:;" class="xl-chrome-ext-bar__close"></a>
    </div><div class="xl-chrome-ext-bar" id="xl_chrome_ext_{4DB361DE-01F7-4376-B494-639E489D19ED}" style="display: none;">
      <div class="xl-chrome-ext-bar__logo"></div>

      <a id="xl_chrome_ext_download" href="javascript:;" class="xl-chrome-ext-bar__option">下载视频</a>
      <a id="xl_chrome_ext_close" href="javascript:;" class="xl-chrome-ext-bar__close"></a>
    </div><img src ="http://www.blogjava.net/superwei/aggbug/435901.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/superwei/" target="_blank">小辞猬</a> 2021-06-19 11:43 <a href="http://www.blogjava.net/superwei/archive/2021/06/19/435901.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>【Mysql】关于索引</title><link>http://www.blogjava.net/superwei/archive/2018/10/25/433454.html</link><dc:creator>小辞猬</dc:creator><author>小辞猬</author><pubDate>Thu, 25 Oct 2018 01:49:00 GMT</pubDate><guid>http://www.blogjava.net/superwei/archive/2018/10/25/433454.html</guid><wfw:comment>http://www.blogjava.net/superwei/comments/433454.html</wfw:comment><comments>http://www.blogjava.net/superwei/archive/2018/10/25/433454.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/superwei/comments/commentRss/433454.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/superwei/services/trackbacks/433454.html</trackback:ping><description><![CDATA[DB引擎：InnoDB<br />两表A，B表均为6W+的记录。用B表的信息更新A表。<br />SQL：update A left join B on A.field1 = B.field1 and A.field2 = B.field2<br />&nbsp; &nbsp; &nbsp; &nbsp;&nbsp; set A.field3 = B.<span style='font: 400 14px/21.33px verdana,"courier new"; text-align: left; color: #000000; text-transform: none; text-indent: 0px; letter-spacing: normal; text-decoration: none; word-spacing: 0px; display: inline !important; white-space: normal; orphans: 2; float: none; -webkit-text-stroke-width: 0px; background-color: transparent;'>field3, A.<span style="text-align: left; color: #000000; text-transform: none; line-height: 21.33px; text-indent: 0px; letter-spacing: normal; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; word-spacing: 0px; display: inline; white-space: normal; orphans: 2; float: none; -webkit-text-stroke-width: 0px; background-color: transparent;">field4 = B.field4<br />无引擎时：每1000更新需要2分11秒，全部更新大概需要2~3小时。<br /><br />此时加入索引：<div><span style="color: #ffffff; background-color: #ff6600;">CREATE INDEX field1_Index ON `A`(`field1`);</span><br style="color: #ffffff;" />注：1、此处只加field1是因为 field2的内容变化很小，就那几个值。<br />&nbsp; &nbsp; &nbsp; 2、此SQL里的字段都不是主键</div></span></span><strong></strong><em></em><u></u><sub></sub><sup></sup><strike></strike><br />再次执行SQL，效率依旧。似乎索引没有作用。为了验证我的想法，查看了执行方式：<br /><span style="color: #ffffff; background-color: #ff6600;">explain </span><span style='font: 400 14px/21.33px verdana,"courier new"; text-align: left; color: #ffffff; text-transform: none; text-indent: 0px; letter-spacing: normal; text-decoration: none; word-spacing: 0px; display: inline !important; white-space: normal; orphans: 2; float: none; -webkit-text-stroke-width: 0px; background-color: #ff6600;'>update A left join B on A.field1 = B.field1 and A.field2 = B.field2</span><br style="background-color: transparent; color: #000000; font-family: verdana,&amp;quot;courier new&amp;quot;; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: 21.33px; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;" /><div><span style='font: 400 14px/21.33px verdana,"courier new"; text-align: left; color: #ffffff; text-transform: none; text-indent: 0px; letter-spacing: normal; text-decoration: none; word-spacing: 0px; display: inline !important; white-space: normal; orphans: 2; float: none; -webkit-text-stroke-width: 0px; background-color: #ff6600;'>&nbsp; &nbsp; &nbsp; &nbsp;&nbsp; set A.field3 = B.</span><span style="text-align: left; color: #ffffff; text-transform: none; line-height: 21.33px; text-indent: 0px; letter-spacing: normal; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; word-spacing: 0px; display: inline; white-space: normal; orphans: 2; float: none; -webkit-text-stroke-width: 0px; background-color: #ff6600;">field</span><span style="text-align: left; color: #ffffff; text-transform: none; line-height: 21.33px; text-indent: 0px; letter-spacing: normal; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; word-spacing: 0px; display: inline; white-space: normal; orphans: 2; float: none; -webkit-text-stroke-width: 0px; background-color: #ff6600;">3, A.<span style="text-align: left; color: #ffffff; text-transform: none; line-height: 21.33px; text-indent: 0px; letter-spacing: normal; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; word-spacing: 0px; display: inline; white-space: normal; orphans: 2; float: none; -webkit-text-stroke-width: 0px; background-color: transparent;">field4 = B.field4&nbsp;</span></span></div>果然在执行时，没用到索引。找到症结，那就继续找为什么索引没有被用的原因。<br />查找过程省略，直接上结果。<br />因为是update，所以我认为 左联和直联，对于结果没有区别，但是从左联改为直联后，<br />再查询执行方式，发现就能使用索引（原因暂不知道，以后知道了再写）<br />于是再次执行如下SQL：<br /><div><span style="background-color: #ff6600; color: #ffffff; display: inline; float: none; font-family: verdana,&amp;quot;courier new&amp;quot;; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: 21.33px; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;">update A inner join B on A.field1 = B.field1 and A.field2 = B.field2</span><br style="background-color: transparent; color: #000000; font-family: verdana,&amp;quot;courier new&amp;quot;; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: 21.33px; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;" /><div style="background-color: transparent; color: #000000; font-family: verdana,&amp;quot;courier new&amp;quot;; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"><span style="background-color: #ff6600; color: #ffffff; display: inline; float: none; font-family: verdana,&amp;quot;courier new&amp;quot;; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: 21.33px; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;">&nbsp; &nbsp; &nbsp; &nbsp;&nbsp; set A.field3 = B.</span><span style="background-color: #ff6600; color: #ffffff; display: inline; float: none; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: 21.33px; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;">field3, A.<span style="text-align: left; color: #ffffff; text-transform: none; line-height: 21.33px; text-indent: 0px; letter-spacing: normal; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; word-spacing: 0px; display: inline; white-space: normal; orphans: 2; float: none; -webkit-text-stroke-width: 0px; background-color: transparent;">field4 = </span><span style="text-align: left; color: #ffffff; text-transform: none; line-height: 21.33px; text-indent: 0px; letter-spacing: normal; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; word-spacing: 0px; display: inline; white-space: normal; orphans: 2; float: none; -webkit-text-stroke-width: 0px; background-color: transparent;">B.field4&nbsp;<br /></span></span></div></div><strong></strong><em></em><u></u><sub></sub><sup></sup><strike></strike><strong></strong><em></em><u></u><sub></sub><sup></sup><strike></strike>6W+的数据执行时间：1.43秒<br />优化完毕。<br />另，因为以上字段都非主键，所以 SQL修改成以下方式执行似乎更快，查询执行方式，用到了主键索引和我自己加的索引<br /><div><span style='font: 400 14px/21.33px verdana,"courier new"; text-align: left; text-transform: none; text-indent: 0px; letter-spacing: normal; text-decoration: none; word-spacing: 0px; display: inline !important; white-space: normal; orphans: 2; float: none; -webkit-text-stroke-width: 0px; background-color: #ffffff;'>update A left join B on A.field1 = B.field1 and A.field2 = B.field2</span><br style="background-color: transparent; color: #000000; font-family: verdana,&amp;quot;courier new&amp;quot;; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: 21.33px; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;" /><span style='font: 400 14px/21.33px verdana,"courier new"; text-align: left; color: #000000; text-transform: none; text-indent: 0px; letter-spacing: normal; text-decoration: none; word-spacing: 0px; display: inline !important; white-space: normal; orphans: 2; float: none; -webkit-text-stroke-width: 0px; background-color: #ffffff;'>&nbsp; &nbsp; &nbsp; &nbsp;&nbsp; set A.field3 = B.</span><span style="text-align: left; color: #000000; text-transform: none; line-height: 21.33px; text-indent: 0px; letter-spacing: normal; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; word-spacing: 0px; display: inline; white-space: normal; orphans: 2; float: none; -webkit-text-stroke-width: 0px; background-color: #ffffff;">field3, A.<span style="text-align: left; color: #ffffff; text-transform: none; line-height: 21.33px; text-indent: 0px; letter-spacing: normal; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; word-spacing: 0px; display: inline; white-space: normal; orphans: 2; float: none; -webkit-text-stroke-width: 0px; background-color: #ffffff;">field4 = B.field4</span></span></div><span style="background-color: #ffffff;">where A.key in (select key from A)<br /><br />附：<br />删除索引：drop INDEX field1_Index ON `A`;<br />查看索引：show index from A<br />查看线程：select * from information_schema.processlist t<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; show <span style='display: inline !important; float: none; background-color: #ffffff; color: #000000; font-family: verdana,"courier new"; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;'>processlist <br />杀线程： kill processId</span><strong><em><u><sub><sup><strike><br /></strike></sup></sub></u></em></strong></span><strong></strong><em></em><u></u><sub></sub><sup></sup><strike></strike><br /><img src ="http://www.blogjava.net/superwei/aggbug/433454.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/superwei/" target="_blank">小辞猬</a> 2018-10-25 09:49 <a href="http://www.blogjava.net/superwei/archive/2018/10/25/433454.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>跳槽 程序员需要注意的十大要点 </title><link>http://www.blogjava.net/superwei/archive/2007/01/31/97081.html</link><dc:creator>小辞猬</dc:creator><author>小辞猬</author><pubDate>Wed, 31 Jan 2007 13:09:00 GMT</pubDate><guid>http://www.blogjava.net/superwei/archive/2007/01/31/97081.html</guid><wfw:comment>http://www.blogjava.net/superwei/comments/97081.html</wfw:comment><comments>http://www.blogjava.net/superwei/archive/2007/01/31/97081.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/superwei/comments/commentRss/97081.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/superwei/services/trackbacks/97081.html</trackback:ping><description><![CDATA[&nbsp;&nbsp;&nbsp;&nbsp; 摘要: 摘于它处，非我本文&nbsp;&nbsp;<a href='http://www.blogjava.net/superwei/archive/2007/01/31/97081.html'>阅读全文</a><img src ="http://www.blogjava.net/superwei/aggbug/97081.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/superwei/" target="_blank">小辞猬</a> 2007-01-31 21:09 <a href="http://www.blogjava.net/superwei/archive/2007/01/31/97081.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>哈哈,新项目开始了</title><link>http://www.blogjava.net/superwei/archive/2006/02/22/31986.html</link><dc:creator>小辞猬</dc:creator><author>小辞猬</author><pubDate>Wed, 22 Feb 2006 09:20:00 GMT</pubDate><guid>http://www.blogjava.net/superwei/archive/2006/02/22/31986.html</guid><wfw:comment>http://www.blogjava.net/superwei/comments/31986.html</wfw:comment><comments>http://www.blogjava.net/superwei/archive/2006/02/22/31986.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/superwei/comments/commentRss/31986.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/superwei/services/trackbacks/31986.html</trackback:ping><description><![CDATA[<SPAN lang=EN-US style="mso-fareast-language: ZH-CN">COBOL</SPAN><SPAN lang=ZH-CN style="FONT-FAMILY: SimSun; mso-fareast-language: ZH-CN; mso-ascii-font-family: Century; mso-hansi-font-family: Century">的项目就要结束了</SPAN><SPAN lang=EN-US style="mso-fareast-language: ZH-CN; mso-fareast-font-family: SimSun">,</SPAN><SPAN lang=ZH-CN style="FONT-FAMILY: SimSun; mso-fareast-language: ZH-CN; mso-ascii-font-family: Century; mso-hansi-font-family: Century">下个项目就是</SPAN><SPAN lang=EN-US style="mso-fareast-language: ZH-CN; mso-fareast-font-family: SimSun">.NET.</SPAN><SPAN lang=ZH-CN style="FONT-FAMILY: SimSun; mso-fareast-language: ZH-CN; mso-ascii-font-family: Century; mso-hansi-font-family: Century">说实在话</SPAN><SPAN lang=EN-US style="mso-fareast-language: ZH-CN; mso-fareast-font-family: SimSun">,</SPAN><SPAN lang=ZH-CN style="FONT-FAMILY: SimSun; mso-fareast-language: ZH-CN; mso-ascii-font-family: Century; mso-hansi-font-family: Century">我是比较期待</SPAN><SPAN lang=EN-US style="mso-fareast-language: ZH-CN; mso-fareast-font-family: SimSun">,</SPAN><SPAN lang=ZH-CN style="FONT-FAMILY: SimSun; mso-fareast-language: ZH-CN; mso-ascii-font-family: Century; mso-hansi-font-family: Century">但是如果是</SPAN><SPAN lang=EN-US style="mso-fareast-language: ZH-CN; mso-fareast-font-family: SimSun">C#,</SPAN><SPAN lang=ZH-CN style="FONT-FAMILY: SimSun; mso-fareast-language: ZH-CN; mso-ascii-font-family: Century; mso-hansi-font-family: Century">我就更加的</SPAN><SPAN lang=EN-US style="mso-fareast-language: ZH-CN; mso-fareast-font-family: SimSun">HAPPY</SPAN><SPAN lang=ZH-CN style="FONT-FAMILY: SimSun; mso-fareast-language: ZH-CN; mso-ascii-font-family: Century; mso-hansi-font-family: Century">了</SPAN><SPAN lang=EN-US style="mso-fareast-language: ZH-CN; mso-fareast-font-family: SimSun">,</SPAN><SPAN lang=ZH-CN style="FONT-FAMILY: SimSun; mso-fareast-language: ZH-CN; mso-ascii-font-family: Century; mso-hansi-font-family: Century">偏偏要是</SPAN><SPAN lang=EN-US style="mso-fareast-language: ZH-CN; mso-fareast-font-family: SimSun">VB.NET,</SPAN><SPAN lang=ZH-CN style="FONT-FAMILY: SimSun; mso-fareast-language: ZH-CN; mso-ascii-font-family: Century; mso-hansi-font-family: Century">看了半天</SPAN><SPAN lang=EN-US style="mso-fareast-language: ZH-CN; mso-fareast-font-family: SimSun">,</SPAN><SPAN lang=ZH-CN style="FONT-FAMILY: SimSun; mso-fareast-language: ZH-CN; mso-ascii-font-family: Century; mso-hansi-font-family: Century">发现怎么就那么的奇怪呢</SPAN><SPAN lang=EN-US style="mso-fareast-language: ZH-CN; mso-fareast-font-family: SimSun">!</SPAN><SPAN lang=ZH-CN style="FONT-FAMILY: SimSun; mso-fareast-language: ZH-CN; mso-ascii-font-family: Century; mso-hansi-font-family: Century">就感觉看一段没有断句的文言文</SPAN><SPAN lang=EN-US style="mso-fareast-language: ZH-CN; mso-fareast-font-family: SimSun">!</SPAN><SPAN lang=ZH-CN style="FONT-FAMILY: SimSun; mso-fareast-language: ZH-CN; mso-ascii-font-family: Century; mso-hansi-font-family: Century">还好</SPAN><SPAN lang=EN-US style="mso-fareast-language: ZH-CN; mso-fareast-font-family: SimSun">,</SPAN><SPAN lang=ZH-CN style="FONT-FAMILY: SimSun; mso-fareast-language: ZH-CN; mso-ascii-font-family: Century; mso-hansi-font-family: Century">现在装了个中文的</SPAN><SPAN lang=EN-US style="mso-fareast-language: ZH-CN; mso-fareast-font-family: SimSun">MSDN,</SPAN><SPAN lang=ZH-CN style="FONT-FAMILY: SimSun; mso-fareast-language: ZH-CN; mso-ascii-font-family: Century; mso-hansi-font-family: Century">比以前看日文的</SPAN><SPAN lang=EN-US style="mso-fareast-language: ZH-CN; mso-fareast-font-family: SimSun">MSDN</SPAN><SPAN lang=ZH-CN style="FONT-FAMILY: SimSun; mso-fareast-language: ZH-CN; mso-ascii-font-family: Century; mso-hansi-font-family: Century">要舒服多了</SPAN><SPAN lang=EN-US style="mso-fareast-language: ZH-CN; mso-fareast-font-family: SimSun">,MD,</SPAN><SPAN lang=ZH-CN style="FONT-FAMILY: SimSun; mso-fareast-language: ZH-CN; mso-ascii-font-family: Century; mso-hansi-font-family: Century">看起来真费劲</SPAN><SPAN lang=EN-US style="mso-fareast-language: ZH-CN; mso-fareast-font-family: SimSun">!<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /><o:p></o:p></SPAN>
<P class=MsoNormal style="TEXT-INDENT: 21pt; mso-char-indent-count: 2.0; mso-char-indent-size: 10.5pt"><SPAN lang=ZH-CN style="FONT-FAMILY: SimSun; mso-fareast-language: ZH-CN; mso-ascii-font-family: Century; mso-hansi-font-family: Century">今天看</SPAN><SPAN lang=EN-US style="mso-fareast-language: ZH-CN; mso-fareast-font-family: SimSun">VB.NET</SPAN><SPAN lang=ZH-CN style="FONT-FAMILY: SimSun; mso-fareast-language: ZH-CN; mso-ascii-font-family: Century; mso-hansi-font-family: Century">的代码</SPAN><SPAN lang=EN-US style="mso-fareast-language: ZH-CN; mso-fareast-font-family: SimSun">,</SPAN><SPAN lang=ZH-CN style="FONT-FAMILY: SimSun; mso-fareast-language: ZH-CN; mso-ascii-font-family: Century; mso-hansi-font-family: Century">突然有种感觉</SPAN><SPAN lang=EN-US style="mso-fareast-language: ZH-CN; mso-fareast-font-family: SimSun">,</SPAN><SPAN lang=ZH-CN style="FONT-FAMILY: SimSun; mso-fareast-language: ZH-CN; mso-ascii-font-family: Century; mso-hansi-font-family: Century">就像刚到深圳去实习</SPAN><SPAN lang=EN-US style="mso-fareast-language: ZH-CN; mso-fareast-font-family: SimSun">,</SPAN><SPAN lang=ZH-CN style="FONT-FAMILY: SimSun; mso-fareast-language: ZH-CN; mso-ascii-font-family: Century; mso-hansi-font-family: Century">看人家以前做的项目的代码一样</SPAN><SPAN lang=EN-US style="mso-fareast-language: ZH-CN; mso-fareast-font-family: SimSun">,</SPAN><SPAN lang=ZH-CN style="FONT-FAMILY: SimSun; mso-fareast-language: ZH-CN; mso-ascii-font-family: Century; mso-hansi-font-family: Century">好费劲</SPAN><SPAN lang=EN-US style="mso-fareast-language: ZH-CN; mso-fareast-font-family: SimSun">,</SPAN><SPAN lang=ZH-CN style="FONT-FAMILY: SimSun; mso-fareast-language: ZH-CN; mso-ascii-font-family: Century; mso-hansi-font-family: Century">很多的关键字</SPAN><SPAN lang=EN-US style="mso-fareast-language: ZH-CN; mso-fareast-font-family: SimSun">,</SPAN><SPAN lang=ZH-CN style="FONT-FAMILY: SimSun; mso-fareast-language: ZH-CN; mso-ascii-font-family: Century; mso-hansi-font-family: Century">咋一看还不知道</SPAN><SPAN lang=EN-US style="mso-fareast-language: ZH-CN; mso-fareast-font-family: SimSun">,</SPAN><SPAN lang=ZH-CN style="FONT-FAMILY: SimSun; mso-fareast-language: ZH-CN; mso-ascii-font-family: Century; mso-hansi-font-family: Century">稍一迷糊就看到后面</SPAN><SPAN lang=EN-US style="mso-fareast-language: ZH-CN; mso-fareast-font-family: SimSun">,</SPAN><SPAN lang=ZH-CN style="FONT-FAMILY: SimSun; mso-fareast-language: ZH-CN; mso-ascii-font-family: Century; mso-hansi-font-family: Century">突然发现前面的几句代码是啥意思啊</SPAN><SPAN lang=EN-US style="mso-fareast-language: ZH-CN; mso-fareast-font-family: SimSun">!</SPAN><SPAN lang=ZH-CN style="FONT-FAMILY: SimSun; mso-fareast-language: ZH-CN; mso-ascii-font-family: Century; mso-hansi-font-family: Century">不知道做的时候又是什么样一种感觉</SPAN><SPAN lang=EN-US style="mso-fareast-language: ZH-CN; mso-fareast-font-family: SimSun">,</SPAN><SPAN lang=ZH-CN style="FONT-FAMILY: SimSun; mso-fareast-language: ZH-CN; mso-ascii-font-family: Century; mso-hansi-font-family: Century">总的来说就是奇怪</SPAN><SPAN lang=EN-US style="mso-fareast-language: ZH-CN; mso-fareast-font-family: SimSun">!<o:p>ff</o:p></SPAN></P><img src ="http://www.blogjava.net/superwei/aggbug/31986.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/superwei/" target="_blank">小辞猬</a> 2006-02-22 17:20 <a href="http://www.blogjava.net/superwei/archive/2006/02/22/31986.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>郁闷</title><link>http://www.blogjava.net/superwei/archive/2006/01/24/29064.html</link><dc:creator>小辞猬</dc:creator><author>小辞猬</author><pubDate>Tue, 24 Jan 2006 01:18:00 GMT</pubDate><guid>http://www.blogjava.net/superwei/archive/2006/01/24/29064.html</guid><wfw:comment>http://www.blogjava.net/superwei/comments/29064.html</wfw:comment><comments>http://www.blogjava.net/superwei/archive/2006/01/24/29064.html#Feedback</comments><slash:comments>3</slash:comments><wfw:commentRss>http://www.blogjava.net/superwei/comments/commentRss/29064.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/superwei/services/trackbacks/29064.html</trackback:ping><description><![CDATA[就要过年了,我却离家太远,不能回去过年,生平以来第一次不在家里过年,这是我出来工作的第一个年头就在外乡过!<BR>真的好想回家,想念家里的父母,不知道他们身体是否还好!想念我那从小生活的地方,想回到我以前住过的房间睡上一晚!<BR><img src ="http://www.blogjava.net/superwei/aggbug/29064.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/superwei/" target="_blank">小辞猬</a> 2006-01-24 09:18 <a href="http://www.blogjava.net/superwei/archive/2006/01/24/29064.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>我的作息时间表</title><link>http://www.blogjava.net/superwei/archive/2006/01/09/27225.html</link><dc:creator>小辞猬</dc:creator><author>小辞猬</author><pubDate>Mon, 09 Jan 2006 02:42:00 GMT</pubDate><guid>http://www.blogjava.net/superwei/archive/2006/01/09/27225.html</guid><wfw:comment>http://www.blogjava.net/superwei/comments/27225.html</wfw:comment><comments>http://www.blogjava.net/superwei/archive/2006/01/09/27225.html#Feedback</comments><slash:comments>4</slash:comments><wfw:commentRss>http://www.blogjava.net/superwei/comments/commentRss/27225.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/superwei/services/trackbacks/27225.html</trackback:ping><description><![CDATA[&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 6：30 起床（起床之后，一定要吻一下正在熟睡的老婆 
<P>的脸，但动作要轻，不得吵醒老婆 ）<BR>　　6：35--7：00 煅炼身体（在老婆要抱的时候，可以轻易抱</P>
<P>上七楼；在老婆受到欺负的时候 可以以一敌十）<BR>　　7：00--7：15 打开音响，叫老婆起床（一日之计在于晨，</P>
<P>这时候的女人这是一日之中最可爱的时候，一般都会有点撒娇，</P>
<P>叫起床时，一定要温柔，动作要轻，轻轻地搂起来）<BR>　　7：15--7：30 帮老婆穿衣服（千万要小心，如果像麦当娜</P>
<P>一样，把内衣穿在外面的话，那我就等死吧）<BR>　　7：30--7：45 和老婆一起洗漱（有三要：要帮老婆挤好牙</P>
<P>膏，要帮老婆放好洗脸水，要帮老婆梳头）<BR>　　7：45--8：00 送老婆上班（以最快的速度送她上公车）<BR>　　8：45--8：30 自己上班<BR>　　8：30--12：00 上班（努力工作，有事做要做，没事做找出</P>
<P>事也要做）<BR>　　12：00--12：10 打电话给老婆（问老婆上午过得怎么样，</P>
<P>中午要吃什么东西……这个不用教了？）<BR>　　12：10--12：40 吃工作餐（记住，一定要吃工作餐，不得</P>
<P>吃别的东东，就算吃了别的东东，价格也不可以超过5元）<BR>　　12：40--13：00 小栖片刻（为了下午更好的工作，一定要</P>
<P>小栖，不得在公司四处看小mm）<BR>　　13：00--17：30 努力工作（不努力工作怎么养老婆？）<BR>　　17：30--18：00 接老婆下班（看情况,不加班的时候!一定要准时，不得让老婆久等）<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 18：00--19：00 陪老婆逛街（逛街是男人的必修课，每天必修。其间，老婆要买什么东西，一定要大方，不得有嫌贵不买之行为，如果老婆不买什么东西，一定要买东西送给老婆）<BR>　　19：00--20：00 吃饭（老婆做,不能把她宠坏了）<BR>　　20：00--22：00 陪老婆（老婆要看电视，不得换台；老婆要聊天，不得不理）<BR>　　22：00--22：20 洗澡（为节约用水，一定要和老婆一起洗，帮老婆搓背）<BR>　　22：20 睡觉（被子要先铺好，老婆要抱好，不得比老婆先睡着）</P><img src ="http://www.blogjava.net/superwei/aggbug/27225.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/superwei/" target="_blank">小辞猬</a> 2006-01-09 10:42 <a href="http://www.blogjava.net/superwei/archive/2006/01/09/27225.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item></channel></rss>