??xml version="1.0" encoding="utf-8" standalone="yes"?>国产精品性做久久久久久,国产亚洲一区在线播放,国产私人尤物无码不卡http://www.aygfsteel.com/deve/上善若水。水善利万物而不?处众Z所?故几于道。居善地,心善?与善?a善信,政善?事善?动善时? Where there is a will,there is a way.zh-cnTue, 17 Jun 2025 07:02:21 GMTTue, 17 Jun 2025 07:02:21 GMT60常用正则表达?/title><link>http://www.aygfsteel.com/deve/archive/2008/08/17/222606.html</link><dc:creator>EugeneCao</dc:creator><author>EugeneCao</author><pubDate>Sun, 17 Aug 2008 12:33:00 GMT</pubDate><guid>http://www.aygfsteel.com/deve/archive/2008/08/17/222606.html</guid><wfw:comment>http://www.aygfsteel.com/deve/comments/222606.html</wfw:comment><comments>http://www.aygfsteel.com/deve/archive/2008/08/17/222606.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.aygfsteel.com/deve/comments/commentRss/222606.html</wfw:commentRss><trackback:ping>http://www.aygfsteel.com/deve/services/trackbacks/222606.html</trackback:ping><description><![CDATA[<h2><a id="viewpost1_TitleUrl" href="http://www.aygfsteel.com/Vikings/archive/2006/01/06/26893.html">常用正则表达?/a> </h2> <p>1。^\d+$  //匚w非负整数Q正整数 + 0Q?nbsp;<br /> 2。^[0-9]*[1-9][0-9]*$  //匚w正整?nbsp;<br /> 3。^((-\d+)|(0+))$  //匚w非正整数Q负整数 + 0Q?nbsp;<br /> 4。^-[0-9]*[1-9][0-9]*$  //匚w负整?nbsp;<br /> 5。^-?\d+$    //匚w整数 <br /> 6。^\d+(\.\d+)?$  //匚w非负点敎ͼ正QҎ + 0Q?nbsp;<br /> 7。^(([0-9]+\.[0-9]*[1-9][0-9]*)|([0-9]*[1-9][0-9]*\.[0-9]+)|([0-9]*[1-9][0-9]*))$  //匚w正QҎ <br /> 8。^((-\d+(\.\d+)?)|(0+(\.0+)?))$  //匚w非正点敎ͼ负QҎ + 0Q?nbsp;<br /> 9。^(-(([0-9]+\.[0-9]*[1-9][0-9]*)|([0-9]*[1-9][0-9]*\.[0-9]+)|([0-9]*[1-9][0-9]*)))$  //匚w负QҎ <br /> 10。^(-?\d+)(\.\d+)?$  //匚w点?nbsp;<br /> 11。^[A-Za-z]+$  //匚w?6个英文字母组成的字符?nbsp;<br /> 12。^[A-Z]+$  //匚w?6个英文字母的大写l成的字W串 <br /> 13。^[a-z]+$  //匚w?6个英文字母的写l成的字W串 <br /> 14。^[A-Za-z0-9]+$  //匚w由数字和26个英文字母组成的字符?nbsp;<br /> 15。^\w+$  //匚w由数字?6个英文字母或者下划线l成的字W串 <br /> 16。^[\w-]+(\.[\w-]+)*@[\w-]+(\.[\w-]+)+$    //匚wemail地址 <br /> 17。^[a-zA-z]+://匚w(\w+(-\w+)*)(\.(\w+(-\w+)*))*(\?\S*)?$  //匚wurl <br /> 18。匹配中文字W的正则表达式: [\u4e00-\u9fa5] <br /> 19。匹配双字节字符(包括汉字在内)Q[^\x00-\xff]<br /> 20。应用:计算字符串的长度Q一个双字节字符长度?QASCII字符?Q?br /> String.prototype.len=function(){return this.replace([^\x00-\xff]/g,"aa").length;} <br /> 21。匹配空行的正则表达式:\n[\s| ]*\r <br /> 22。匹配HTML标记的正则表辑ּQ?<(.*)>.*<\/\1>|<(.*) \/>/ <br /> 23。匹配首格的正则表达式:(^\s*)|(\s*$)<br /> <br /> * 正则表达式用?br />   * 1、^\S+[a-z A-Z]$ 不能为空 不能有空?nbsp; 只能是英文字?br />   * 2、\S{6,}         不能为空 六位以上<br />   * 3、^\d+$          不能有空?不能非数?br />   * 4?.*)(\.jpg|\.bmp)$ 只能是jpg和bmp格式<br />   * 5、^\d{4}\-\d{1,2}-\d{1,2}$ 只能?004-10-22格式<br />   * 6、^0$            臛_选一?br />   * 7、^0{2,}$        臛_选两?br />   * 8、^[\s|\S]{20,}$ 不能为空 二十字以?br />   * 9、^\+?[a-z0-9](([-+.]|[_]+)?[a-z0-9]+)*@([a-z0-9]+(\.|\-))+[a-z]{2,6}$邮g<br />   * 10、\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*([,;]\s*\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*)* 输入多个地址用逗号或空格分隔邮?br />   * 11、^(\([0-9]+\))?[0-9]{7,8}$电话L7位或8位或前面有区号例如(022Q?7341628<br />   * 12、^[a-z A-Z 0-9 _]+@[a-z A-Z 0-9 _]+(\.[a-z A-Z 0-9 _]+)+(\,[a-z A-Z 0-9 _]+@[a-z A-Z 0-9 _]+(\.[a-z A-Z 0-9 _]+)+)*$<br />   *     只能是字母、数字、下划线Q必L@?同时格式要规?邮g<br />   * 13 ^\w+@\w+(\.\w+)+(\,\w+@\w+(\.\w+)+)*$上面表达式也可以写成q样子,更精l?br />     14   ^\w+((-\w+)|(\.\w+))*\@\w+((\.|-)\w+)*\.\w+$ </p> <img src ="http://www.aygfsteel.com/deve/aggbug/222606.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.aygfsteel.com/deve/" target="_blank">EugeneCao</a> 2008-08-17 20:33 <a href="http://www.aygfsteel.com/deve/archive/2008/08/17/222606.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>Web 开发h员常用速查?/title><link>http://www.aygfsteel.com/deve/archive/2008/07/09/213543.html</link><dc:creator>EugeneCao</dc:creator><author>EugeneCao</author><pubDate>Wed, 09 Jul 2008 02:34:00 GMT</pubDate><guid>http://www.aygfsteel.com/deve/archive/2008/07/09/213543.html</guid><wfw:comment>http://www.aygfsteel.com/deve/comments/213543.html</wfw:comment><comments>http://www.aygfsteel.com/deve/archive/2008/07/09/213543.html#Feedback</comments><slash:comments>2</slash:comments><wfw:commentRss>http://www.aygfsteel.com/deve/comments/commentRss/213543.html</wfw:commentRss><trackback:ping>http://www.aygfsteel.com/deve/services/trackbacks/213543.html</trackback:ping><description><![CDATA[<p>速查?Cheet sheet)可以帮助开发h员记住一些语?概念{?打印出来攑֜手边,方便实用.<br /> </p> <h3>HTML/XHTML</h3> <h4>1. <a >HTML Help Sheet</a></h4> <p><a ><img height="200" alt="HTML Help Sheet Screenshot" src="http://images.sixrevisions.com/2008/07/07-01_html_help_sheet.png" width="550" /></a></p> <p></p> <ul> <li><a >PDF</a></li> </ul> <h4>2. <a >HTML Cheat Sheet</a></h4> <p><a ><img height="200" alt="HTML Cheat Sheet - Screen shot." src="http://images.sixrevisions.com/2008/07/07-02_html_cheat_sheet.png" width="550" /></a></p> <ul> <li><a >PDF</a></li> <li><a >PNG</a></li> </ul> <h4>3. <a >HTML Character Entities Cheat Sheet</a></h4> <p><a ><img height="200" alt="HTML Character Entities Cheat Sheet - Screen shot." src="http://images.sixrevisions.com/2008/07/07-03_html_character_entities.png" width="550" /></a></p> <ul> <li><a >PDF</a></li> <li><a >PNG</a></li> </ul> <h4>4. <a >XHTML Cheat Sheet v. 1.03</a> – PDF</h4> <p><a ><img height="200" alt="XHTML Cheat Sheet v. 1.03 - screen shot." src="http://images.sixrevisions.com/2008/07/07-04_xhtml_cheat_sheet.png" width="550" /></a></p> <h3>CSS</h3> <h4>5. <a >CSS Cheat Sheet (V2)</a></h4> <p><a ><img height="200" alt="CSS Cheat Sheet (V2) - screen shot." src="http://images.sixrevisions.com/2008/07/07-05_css_cheat_sheet.png" width="550" /></a></p> <ul> <li><a >PDF</a></li> <li><a >PNG</a></li> </ul> <h4>6. <a >CSS Cheat Sheet</a></h4> <p><a ><img height="200" alt="CSS Cheat Sheet - screen shot." src="http://images.sixrevisions.com/2008/07/07-06_css_version_2.png" width="550" /></a></p> <ul> <li><a >PDF</a></li> <li><a >HTML</a></li> </ul> <h4>7. <a >CSS Shorthand Cheat Sheet</a></h4> <p><a ><img height="200" alt="CSS Shorthand Cheat Sheet - screen shot." src="http://images.sixrevisions.com/2008/07/07-07_shorthand_cheat_sheet.png" width="550" /></a></p> <ul> <li><a >PDF</a></li> </ul> <h4>8. <a >CSS Level 1 Quick Reference</a> – PDF</h4> <p><a ><img height="200" alt="CSS Level 1 Quick Reference - screen shot." src="http://images.sixrevisions.com/2008/07/07-08_css_level_1.png" width="550" /></a></p> <h4>9. <a >CSS Level 2 Quick Reference</a> – PDF</h4> <p><a ><img height="200" alt="CSS Level 2 Quick Reference - screen shot." src="http://images.sixrevisions.com/2008/07/07-09_css_level_2.png" width="550" /></a></p> <h4>10. <a >CSS2.1 Quick Reference Card</a> – PDF</h4> <p><a ><img height="200" alt="CSS2.1 Quick Reference Card - screen shot." src="http://images.sixrevisions.com/2008/07/07-10_css21_quick_reference_card.png" width="550" /></a></p> <h4>11. <a >CSS2 Reference Guide</a> – PDF</h4> <p><a ><img height="200" alt="CSS2 Reference Guide - screen shot." src="http://images.sixrevisions.com/2008/07/07-11_css_quick_reference.png" width="550" /></a></p> <h3>JavaScript</h3> <h4>12. <a >JavaScript Cheat Sheet</a></h4> <p><a ><img height="200" alt="JavaScript Cheat Sheet - screen shot." src="http://images.sixrevisions.com/2008/07/07-12_javascript_cheat_sheet.png" width="550" /></a></p> <ul> <li><a >PDF</a></li> <li><a >PNG</a></li> </ul> <h4>13. <a >Addison-Wesley’s JavaScript Reference Card</a> – PDF</h4> <p><a ><img height="200" alt="Addison-Wesley's JavaScript Reference Card - screen shot." src="http://images.sixrevisions.com/2008/07/07-13_javascript_reference_card.png" width="550" /></a></p> <h4>14. <a >JavaScript and Browser Objects Quick Reference</a></h4> <p><a ><img height="200" alt="JavaScript and Browser Objects Quick Reference - screen shot." src="http://images.sixrevisions.com/2008/07/07-14_javascript_and_browser_object.png" width="550" /></a></p> <ul> <li><a >PDF</a></li> </ul> <h4>15. <a >The most common DOM methods at a glance</a> – PDF</h4> <p><a ><img height="200" alt="The most common DOM methods at a glance - Screen shot." src="http://images.sixrevisions.com/2008/07/07-15_most_common_dom.png" width="550" /></a></p> <h4>16. <a >JavaScript Quick Reference Card/Cheatsheet</a></h4> <p><a ><img height="200" alt="avaScript Quick Reference Card/Cheatsheet - Screen shot." src="http://images.sixrevisions.com/2008/07/07-16_explainthat_reference_card.png" width="550" /></a></p> <ul> <li><a >PDF</a></li> </ul> <h4>17. <a >mootools 1.2 cheat sheet</a></h4> <p><a ><img height="200" alt="mootools 1.2 cheat sheet - screen shot." src="http://images.sixrevisions.com/2008/07/07-17_mootools_1_2_cheatsheet.png" width="550" /></a></p> <ul> <li><a >PDF</a></li> </ul> <h4>18. <a >jQuery Cheatsheet</a></h4> <p><a ><img height="200" alt="jQuery Cheatsheet - screen shot." src="http://images.sixrevisions.com/2008/07/07-18_jquery_cheatsheet.png" width="550" /></a></p> <ul> <li><a >PNG</a></li> </ul> <h4>19. <a >jQuery 1.2 Cheat Sheet</a></h4> <p><a ><img height="200" alt="jQuery 1.2 Cheat Sheet - screen shot." src="http://images.sixrevisions.com/2008/07/07-19_jquery_1_2_cheat_sheet.png" width="550" /></a></p> <ul> <li><a >PDF</a></li> </ul> <h4>20. <a >jQuery Visual Map</a> – PNG</h4> <p><a ><img height="200" alt="jQuery Visual Map - screen shot." src="http://images.sixrevisions.com/2008/07/07-20_jquery_visual_map.jpg" width="550" /></a></p> <h3>Miscellaneous</h3> <h4>21. <a >RGB Hex Colour Chart</a></h4> <p><a ><img height="200" alt="RGB Hex Colour Chart - screen shot." src="http://images.sixrevisions.com/2008/07/07-21_rgb_colour_codes.png" width="550" /></a></p> <ul> <li><a >PDF</a></li> <li><a >PNG</a></li> </ul> <h4>22. <a >The Web Developer’s SEO Cheat Sheet</a></h4> <p><a ><img height="200" alt="The Web Developer's SEO Cheat Sheet - screen shot" src="http://images.sixrevisions.com/2008/07/07-22_web_developer_seo.png" width="550" /></a></p> <ul> <li><a >PDF</a></li> </ul> <h4>23. <a >The WordPress Help Sheet</a></h4> <p><a ><img height="200" alt="The WordPress Help Sheet - screen shot." src="http://images.sixrevisions.com/2008/07/07-23_wordpress_help_sheet.png" width="550" /></a></p> <ul> <li><a >PDF</a></li> </ul> <p>一个驻扎在天|的普通程序员Q当个PM,TL,CODER 是没有当过CEO?br /> <span style="color: #0000ff"><strong>My idiom:Where there is a will,there is a way!</strong></span><br /> 注:加班写作Q{载请著名出处Q! </p> <img src ="http://www.aygfsteel.com/deve/aggbug/213543.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.aygfsteel.com/deve/" target="_blank">EugeneCao</a> 2008-07-09 10:34 <a href="http://www.aygfsteel.com/deve/archive/2008/07/09/213543.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>James Email Server 概念--1.摘要?/title><link>http://www.aygfsteel.com/deve/archive/2008/04/24/195648.html</link><dc:creator>EugeneCao</dc:creator><author>EugeneCao</author><pubDate>Thu, 24 Apr 2008 09:15:00 GMT</pubDate><guid>http://www.aygfsteel.com/deve/archive/2008/04/24/195648.html</guid><wfw:comment>http://www.aygfsteel.com/deve/comments/195648.html</wfw:comment><comments>http://www.aygfsteel.com/deve/archive/2008/04/24/195648.html#Feedback</comments><slash:comments>3</slash:comments><wfw:commentRss>http://www.aygfsteel.com/deve/comments/commentRss/195648.html</wfw:commentRss><trackback:ping>http://www.aygfsteel.com/deve/services/trackbacks/195648.html</trackback:ping><description><![CDATA[<p>Java Apache 企业邮g服务(又名:Apache James) 是利用纯java~写的,支持SMTP和POP3邮g服务和NNTP新闻服务Q是完整和便携的企业U邮件引擎解x案。James当前Z可用的开攑֍议?/p> <p>James Server也是一个邮件应用^台。James工程同时开发Apache Mailet API,q且James Server 是一个Mailet容器Q这点得邮件处理更Ҏ设计Q编写和部v自定义的应用E序。模块化和自定义是James的优点,它允许管理员d建强大易用的应用E序?/p> <p>James构徏在Avalon Application FrameworkQ这个框架促q了许多开发实践,例如面向lg开发和IOC。James囊括了Phoenix Avalon Framework containerQ它为James server奠定了强大和E_的基?/p> <p>q篇文档介绍了James的概念和James的实玎ͼq有安装、配|手册,为开发h员build James Server?/p> <p><br /> I. James 概念<br /> <strong>摘要(summary):</strong><br /> <strong>--The James Server</strong><br /> James 是一个开源项?Z创徏一个坚?灉|,强大的企业类服务,q可提供邮g和邮件相关的服务.也被设计为高可定制?允许理员去灉|配置James.<br /> James Server 是构建在Avalon Framework上的.标准的James发行版本包括了Phoenix Avalon Framework 容器.除了为James提供坚固的服务架?Phoenix 的用允许James理员去部v它们自己的应用程序到容器?q些应用E序在邮件处理过E中能被调用.</p> <p>James server的实现由一些完整的服务集合和相关的lg构成,集成在一?实现邮g解决Ҏ.q些lg描述如下.</p> <p><strong>--POP3 Service</strong><br /> POP3 协议允许用户去获取邮件消?普遍用于客户端下载和理邮g信息.</p> <p>James是POP3服务的一个简单直接实?它与规范一致ƈ且最大化兼容通用的POP3客户?此外,James能让POP3客户端用SSL/TLSq接.</p> <p><strong>--SMTP Service</strong><br /> SMTP是在internet上发送和转移emali的标准方?James提供ZSMTP规范所有功能的实现,支持一些可选特?例如消息大小限制,SMTP验证,加密?客户/服务?通信.</p> <p><strong>--NNTP Service<br /> </strong>NNTP用于客户端从新闻服务器存储和获取消息.James通过实现NNTP规范实现了服务的交互,q有为存储新L息所提供的仓?James单和直接的实?但支持一些额外的Ҏ?例如NNTP验证,加密?客户/服务?通信.</p> <p><strong>--FetchMail</strong><br /> FetchMail ,不像其他的Jameslg,q不是一个RFC的实?然?q个lg允许理去配|James,能够从更多的POP3服务获取Email和{U邮件到本地.q方便在不同的机器上的多个̎户合q件{Ud一个用?This is useful for consolidating mail delivered to a number of accounts on different machines to a single account.)</p> <p><strong>---The SpoolManager, Matchers, and Mailets</strong><br /> 当James处理收来的邮件时,James从引擎上区分不同的服?SMTP,FecthMail)来{U邮?SpoolManager lg是James的邮件处理引?James的SpoolManagerlg是一个Mailet容器,It is these mailets and matchers that actually carry out mail processing.</p> <p><strong>--Repositories<br /> </strong>James有许多不同的仓库d储消息数?email,news messages) 和用户信?用户仓库存储用户信息,包括用户名验证信息和别名.邮g仓库存储已被转移的消?Spool仓库存储正在被处理的消息.最?新闻仓库被用作存储新L?另外,他们存储什么类型的数据,仓库以数据存储在什么地Ҏ区分.?U存储类?-File,Database 和DBFile.</p> <p><strong>--RemoteManager<br /> </strong>James提供一个简单的telnet-base 控制接口,通过q个接口你能d和删除用?配置每个用户的别名和forward addresses和停止服?</p> <img src ="http://www.aygfsteel.com/deve/aggbug/195648.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.aygfsteel.com/deve/" target="_blank">EugeneCao</a> 2008-04-24 17:15 <a href="http://www.aygfsteel.com/deve/archive/2008/04/24/195648.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>五项沟通原?Interaction Guidelineshttp://www.aygfsteel.com/deve/archive/2008/04/20/194393.htmlEugeneCaoEugeneCaoSun, 20 Apr 2008 14:55:00 GMThttp://www.aygfsteel.com/deve/archive/2008/04/20/194393.htmlhttp://www.aygfsteel.com/deve/comments/194393.htmlhttp://www.aygfsteel.com/deve/archive/2008/04/20/194393.html#Feedback0http://www.aygfsteel.com/deve/comments/commentRss/194393.htmlhttp://www.aygfsteel.com/deve/services/trackbacks/194393.html五项沟通原?Interaction Guidelines
Q一Q、维护自?加强自信Q?KP1QMaintain or enhance self-esteem
Q二Q、仔l聆?善意回应Q?KP2QListen and respond with empathy
Q三Q、谋求协?促进参与Q?KP3QAsk for help and encourage involvement
Q四Q、分享感?传情辄Q?KP4QShare thoughts, feelings, and rationale
Q五Q、给予支?鼓励承担Q?KP5QProvide support without removing responsibility

目标理的SMART原则Q即是:

  1. 目标必须是具体的QSpecificQ;

  2. 目标必须是可以衡量的QMeasurableQ;

  3. 目标必须是可以达到的QAttainableQ;

  4. 目标必须和其他目标具有相x(RelevantQ;

  5. 目标必须h明确的截止期限(Time-basedQ;



EugeneCao 2008-04-20 22:55 发表评论
]]>
你对世界了解多少Q?/title><link>http://www.aygfsteel.com/deve/archive/2008/04/18/194117.html</link><dc:creator>EugeneCao</dc:creator><author>EugeneCao</author><pubDate>Fri, 18 Apr 2008 14:27:00 GMT</pubDate><guid>http://www.aygfsteel.com/deve/archive/2008/04/18/194117.html</guid><wfw:comment>http://www.aygfsteel.com/deve/comments/194117.html</wfw:comment><comments>http://www.aygfsteel.com/deve/archive/2008/04/18/194117.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.aygfsteel.com/deve/comments/commentRss/194117.html</wfw:commentRss><trackback:ping>http://www.aygfsteel.com/deve/services/trackbacks/194117.html</trackback:ping><description><![CDATA[一?2个levelQ你能了解多?<br /> <br /> <div style="padding-right: 0px; padding-left: 0px; padding-bottom: 0px; margin: 0px; width: 625px; color: #ffffff; padding-top: 0px; font-family: tahoma,verdana,arial,sans-serif; background-color: #000000; text-align: right"><embed name="TravelerIQ" pluginspage="http://www.macromedia.com/go/getflashplayer" align="center" src="http://tiq.travelpod.com/bin/flash/container.swf" width="625" height="500" type="application/x-shockwave-flash" flashvars="gamexml=http://tiq.travelpod.com/cgi-bin/witw?SessionID=00-traveleriq-game1&gameswf=http://tiq.travelpod.com/bin/flash/witw-00.swf" allowscriptaccess="always" wmode="opaque" bgcolor="#000000" quality="high"></embed><br /> <!-- Use of this widget is subject to the terms stated here: http://www.travelpod.com/cgi-bin/help.pl?tweb_helpID=widget_terms --> <div style="font-size: 10px; width: 625px; color: #ffffff; font-family: tahoma,verdana,arial,sans-serif; background-color: #000000; text-align: right">brought to you by <a rel="nofollow"><font style="color: #ffff00">TravelPod</font></a>, the Web's First <a ><font style="color: #ffff00">Travel Blog</font></a> ( A <a ><font style="color: #ffff00">TripAdvisor</font></a> Media Network partner )  </div> </div> <img src ="http://www.aygfsteel.com/deve/aggbug/194117.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.aygfsteel.com/deve/" target="_blank">EugeneCao</a> 2008-04-18 22:27 <a href="http://www.aygfsteel.com/deve/archive/2008/04/18/194117.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>What do you think about it!??http://www.aygfsteel.com/deve/archive/2007/10/09/151414.htmlEugeneCaoEugeneCaoTue, 09 Oct 2007 07:32:00 GMThttp://www.aygfsteel.com/deve/archive/2007/10/09/151414.htmlhttp://www.aygfsteel.com/deve/comments/151414.htmlhttp://www.aygfsteel.com/deve/archive/2007/10/09/151414.html#Feedback1http://www.aygfsteel.com/deve/comments/commentRss/151414.htmlhttp://www.aygfsteel.com/deve/services/trackbacks/151414.htmlWhat do you think about it!??!


EugeneCao 2007-10-09 15:32 发表评论
]]>
猪肉l于n了!Q!http://www.aygfsteel.com/deve/archive/2007/08/06/134663.htmlEugeneCaoEugeneCaoMon, 06 Aug 2007 03:42:00 GMThttp://www.aygfsteel.com/deve/archive/2007/08/06/134663.htmlhttp://www.aygfsteel.com/deve/comments/134663.htmlhttp://www.aygfsteel.com/deve/archive/2007/08/06/134663.html#Feedback0http://www.aygfsteel.com/deve/comments/commentRss/134663.htmlhttp://www.aygfsteel.com/deve/services/trackbacks/134663.html阅读全文

EugeneCao 2007-08-06 11:42 发表评论
]]>
心你笔记本的螺丝!Q!http://www.aygfsteel.com/deve/archive/2007/08/04/134438.htmlEugeneCaoEugeneCaoSat, 04 Aug 2007 13:41:00 GMThttp://www.aygfsteel.com/deve/archive/2007/08/04/134438.htmlhttp://www.aygfsteel.com/deve/comments/134438.htmlhttp://www.aygfsteel.com/deve/archive/2007/08/04/134438.html#Feedback0http://www.aygfsteel.com/deve/comments/commentRss/134438.htmlhttp://www.aygfsteel.com/deve/services/trackbacks/134438.html阅读全文

EugeneCao 2007-08-04 21:41 发表评论
]]>
使用AOP实现性能理[译]http://www.aygfsteel.com/deve/archive/2007/08/04/134412.htmlEugeneCaoEugeneCaoSat, 04 Aug 2007 09:13:00 GMThttp://www.aygfsteel.com/deve/archive/2007/08/04/134412.htmlhttp://www.aygfsteel.com/deve/comments/134412.htmlhttp://www.aygfsteel.com/deve/archive/2007/08/04/134412.html#Feedback1http://www.aygfsteel.com/deve/comments/commentRss/134412.htmlhttp://www.aygfsteel.com/deve/services/trackbacks/134412.html阅读全文

EugeneCao 2007-08-04 17:13 发表评论
]]>
ӞQ!http://www.aygfsteel.com/deve/archive/2007/08/04/134397.htmlEugeneCaoEugeneCaoSat, 04 Aug 2007 07:13:00 GMThttp://www.aygfsteel.com/deve/archive/2007/08/04/134397.htmlhttp://www.aygfsteel.com/deve/comments/134397.htmlhttp://www.aygfsteel.com/deve/archive/2007/08/04/134397.html#Feedback2http://www.aygfsteel.com/deve/comments/commentRss/134397.htmlhttp://www.aygfsteel.com/deve/services/trackbacks/134397.html?---信Q是基圎ͼ爱是支柱Q理解是屋顶Q包Ҏ墙。在q个I间里面Q融汇着亲情Q交着悲欢Q孕育着希望Q创造着能量?br>Ӟ物质是外壻I_是实质?br>
以前的blog地址:  http://deve.blogdriver.com

EugeneCao 2007-08-04 15:13 发表评论
]]>
վ֩ģ壺 | | | | | | | | | | | | ʤ| | ӡ| ƽ| | | | ƽ| | | ʯɽ| ƺ| | | | Ž| | ³ɽ| | żҿ| | ڻ| ɽ| ʯɽ| ˷| ÷ӿ| ɽ| | |