<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-16415777</id><updated>2011-07-28T11:36:15.723-07:00</updated><category term='UNIX'/><category term='上海 张江'/><category term='Oracle/PLSQL'/><category term='WINDOWS'/><category term='UNIX sed'/><category term='JustForFun'/><category term='Informatica'/><category term='English'/><category term='Travel'/><category term='AbroadStudy'/><category term='Software'/><category term='Web2.0'/><category term='Tips'/><category term='C/C++/MFC'/><category term='OnJobLearning'/><category term='sed'/><category term='Testing'/><title type='text'>IT Gourmet</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><link rel='next' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default?start-index=101&amp;max-results=100'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>105</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-16415777.post-6904797626096495589</id><published>2009-10-26T00:14:00.001-07:00</published><updated>2009-10-26T00:22:23.494-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='UNIX'/><category scheme='http://www.blogger.com/atom/ns#' term='sed'/><title type='text'>sed替换网址的解决方法</title><summary type='text'>替换/时----比如替换///成:::可以用sed 's/\/\/\//:::/g' 即在前面加一个反斜杆当然这样不友好我们更喜欢sed '_///_:::_g' 即把分隔符换了 换成其他符号如: 都可以的替换一长串莫名字符，比如把以下内容//到:之间都替换成@//abcd19388102738234://ijsh12398097324://pppppafasfae1231231:可以用sed 's_//.*:_@_g'</summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/6904797626096495589/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=6904797626096495589' title='1 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/6904797626096495589'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/6904797626096495589'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2009/10/sed_26.html' title='sed替换网址的解决方法'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-7387704551124396755</id><published>2009-10-26T00:12:00.000-07:00</published><updated>2009-10-26T00:14:06.064-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='UNIX sed'/><title type='text'>sed对同一文件替换导致文件清空的原因分析</title><summary type='text'>做文件替换的时候我们经常想仅用一个文件，直接替换内容，但是这个在sed里面是不可以的。 sed 's/old/new/g' filename &gt;filename    (WRONG)     因为在执行前遇到&gt; 重定向符号，unix先把文件清空，于是没有内容。 用sed替换同一文件，必须用一个临时文件。  sed 's/old/new/g' filename &gt;filename_tmp   mv filename_tmp filename                           (CORRECT)参考：When you use redirection, the shell truncates the file before executing the command, and sed will see an empty file. You must redirect the </summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/7387704551124396755/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=7387704551124396755' title='1 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/7387704551124396755'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/7387704551124396755'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2009/10/sed.html' title='sed对同一文件替换导致文件清空的原因分析'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-8472643059166976854</id><published>2009-08-12T02:07:00.000-07:00</published><updated>2009-08-12T02:08:10.603-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Oracle/PLSQL'/><title type='text'>GROUP BY, HAVING, SUM, AVG, and COUNT(*)  转载</title><summary type='text'>Welcome to the Database Programmer!Good programming skills do not lead magically to good database skills. Masterful use of the database requires knowledge of the database in its own terms. Step 1 is knowing your table design patterns, and Step 2 is knowing how to fashion efficient queries. Learning how to code good queries can lead to faster performance and better application code.There is a new </summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/8472643059166976854/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=8472643059166976854' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/8472643059166976854'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/8472643059166976854'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2009/08/group-by-having-sum-avg-and-count.html' title='GROUP BY, HAVING, SUM, AVG, and COUNT(*)  转载'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-3834351229079374827</id><published>2009-08-05T19:38:00.001-07:00</published><updated>2009-08-05T19:38:44.058-07:00</updated><title type='text'>nohup命令详解 zz</title><summary type='text'>http://www.21andy.com/blog/20071121/677.html使用nohup让程序永远后台运行Unix/Linux下一般比如想让某个程序在后台运行，很多都是使用 &amp; 在程序结尾来让程序自动运行。比如我们要运行mysql在后台：/usr/local/mysql/bin/mysqld_safe --user=mysql &amp;但是加入我们很多程序并不象mysqld一样做成守护进程，可能我们的程序只是普通程序而已，一般这种程序使用 &amp; 结尾，但是如果终端关闭，那么程序也会被关闭。但是为了能够后台运行，那么我们就可以使用nohup这个命令，比如我们有个test.php需要在后台运行，并且希望在后台能够定期运行，那么就使用nohup：nohup /root/test.php &amp;　　提示：　　[~]$ appending output to nohup.out　　嗯，</summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/3834351229079374827/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=3834351229079374827' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/3834351229079374827'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/3834351229079374827'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2009/08/nohup-zz.html' title='nohup命令详解 zz'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-7907220246552815071</id><published>2009-07-16T00:16:00.001-07:00</published><updated>2009-07-16T00:16:57.575-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Software'/><category scheme='http://www.blogger.com/atom/ns#' term='Oracle/PLSQL'/><title type='text'>sqlldr 关键词详解</title><summary type='text'>节录重要部分 详情请见：http://camden-www.rutgers.edu/help/Documentation/Oracle/server.815/a67792/ch06.htmsqlldr ... Valid Keywords:        userid -- Oracle username/password       control -- Control file name            log -- Log file name            bad -- Bad file name          data -- Data file name       discard -- Discard file name    discardmax -- Number of discards to allow                 (Default </summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/7907220246552815071/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=7907220246552815071' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/7907220246552815071'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/7907220246552815071'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2009/07/sqlldr.html' title='sqlldr 关键词详解'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-4946169319554632285</id><published>2009-07-15T19:07:00.000-07:00</published><updated>2009-07-15T19:09:18.009-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='WINDOWS'/><category scheme='http://www.blogger.com/atom/ns#' term='Tips'/><category scheme='http://www.blogger.com/atom/ns#' term='Software'/><title type='text'>zz msn無法登入，惱人的810030d 以及81000306 解決方法</title><summary type='text'>http://blog.xuite.net/jackcloud/flyingv/23048209使用版本msn 9.0，作業環境是XP sp3。安裝好msn9.0後某天突然就無法登入.. 顯示錯誤碼是810030d，不論試了多少次或是重新安裝，都無法順利登入，後來只好先移除掉換回msn 8.5 (方法之一)，同時也在尋找解決方式，後來在網路上找到一些方法，順利解決掉8100030d的問題！解決方式有數種，我每種都有做..orz，分述如下：用記事本打開 C:\WINDOWS\system32\drivers\etc\hosts 檔案，在最下方加入下列2行：65.54.239.80 messenger.hotmail.com65.54.239.80 dp.msnmessenger.akadns.net存檔後退出記事本。關掉MSN把C:\Documents and Settings\Your </summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/4946169319554632285/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=4946169319554632285' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/4946169319554632285'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/4946169319554632285'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2009/07/zz-msn810030d-81000306.html' title='zz msn無法登入，惱人的810030d 以及81000306 解決方法'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-6528715999639213018</id><published>2009-06-30T02:00:00.001-07:00</published><updated>2009-06-30T02:02:25.960-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Informatica'/><title type='text'>Informatica在Import时不能创建shortcut的解决</title><summary type='text'>遇到过Import Source和Target的Instance到Shared Folder以后，不能在Project Folder创建Short Cut的情况。怎么拖，不管Open哪个Folder，都提示是否Copy。解决：1. Save Shared Folder2. Disconnect Project Folder 然后再Connect其实就是Shared Folder在Import以后没有保存，所以Project不认识。</summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/6528715999639213018/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=6528715999639213018' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/6528715999639213018'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/6528715999639213018'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2009/06/informaticaimportshortcut.html' title='Informatica在Import时不能创建shortcut的解决'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-3797232556640669275</id><published>2009-06-30T01:59:00.001-07:00</published><updated>2009-06-30T01:59:57.420-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Informatica'/><title type='text'>Comparing Repository Objects -- from Informatica HELP</title><summary type='text'>Comparing Repository Objects    The Repository Manager allows you to compare  two repository objects of the same type to identify differences between the  objects. For example, you can compare two sessions to check for differences.  When you compare two objects, the Repository Manager displays their attributes.   You can compare objects across folders and  repositories. To do this, you must have </summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/3797232556640669275/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=3797232556640669275' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/3797232556640669275'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/3797232556640669275'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2009/06/comparing-repository-objects-from.html' title='Comparing Repository Objects -- from Informatica HELP'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-2753392245669239669</id><published>2009-06-24T05:34:00.002-07:00</published><updated>2009-06-24T05:35:12.512-07:00</updated><title type='text'>Informatica - Referral - File 1 to File 6 - Free Download</title><summary type='text'>http://informaticatutor.blogspot.com/2009/06/informatica-referral-file-1-to-file-6.htmlFile 1 : File Name: Informatica Repository Guide.pdfDescription: Informatica Repository Guide.pdfFile Size: 9.47 MBDownload Link: http://uploading.com/files/KSN92EQ3/Informatica Repository Guide.pdf.htmlFile 2 : File Name: Informatica Transformation Guide.pdfDescription: Informatica Transformation Guide.pdfFile</summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/2753392245669239669/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=2753392245669239669' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/2753392245669239669'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/2753392245669239669'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2009/06/informatica-referral-file-1-to-file-6.html' title='Informatica - Referral - File 1 to File 6 - Free Download'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-1323897321924464256</id><published>2009-06-24T05:34:00.001-07:00</published><updated>2009-06-24T05:34:39.626-07:00</updated><title type='text'>Informatica PowerCenter and PowerConnect Adapters 8.6</title><summary type='text'>http://informaticatutor.blogspot.com/2009/06/informatica-powercenter-and.htmlInformatica PowerCenter and PowerConnect Adapters 8.6 x86 (32bit): 2 GBFile1,http://download.oracle.com/otn/nt/bi/infa_windows_x86_32bit_860_1of2.zipFile2http://download.oracle.com/otn/nt/bi/infa_windows_x86_32bit_860_2of2.zipx86 (64bit): 1.4 GBFile1,http://download.oracle.com/otn/nt/bi/infa_windows_x86_64bit_860_1of2.</summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/1323897321924464256/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=1323897321924464256' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/1323897321924464256'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/1323897321924464256'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2009/06/informatica-powercenter-and.html' title='Informatica PowerCenter and PowerConnect Adapters 8.6'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-5579070639427236012</id><published>2009-06-24T05:33:00.001-07:00</published><updated>2009-06-24T05:33:32.799-07:00</updated><title type='text'>There is no integration service found for this workflow</title><summary type='text'>http://informaticatutor.blogspot.com/2009/06/there-is-no-integration-service-found.htmlError : There is no integration service found for this workflowWhen you are doing " Start workFlow" or "Start task" if you are getting this messageWhat you need to do is :Check the integration Service.How to do :1) Go to informatica Powercenter Workflow manager2) Click Serivie3) Click Assign Integration </summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/5579070639427236012/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=5579070639427236012' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/5579070639427236012'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/5579070639427236012'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2009/06/there-is-no-integration-service-found.html' title='There is no integration service found for this workflow'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_xQDo7zbSgLo/SjQKB7wlA1I/AAAAAAAAAmY/uFMfVJx_7d4/s72-c/NoIntegrationService.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-5481240516832224851</id><published>2009-05-26T02:56:00.001-07:00</published><updated>2009-05-26T02:56:52.763-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='UNIX'/><title type='text'>sed学习笔记</title><summary type='text'>★ 命令行参数简介          sed       -e script 指定sed编辑命令       -f scriptfile 指定的文件中是sed编辑命令       -n 寂静模式，抑制来自sed命令执行过程中的冗余输出信息，比如只          显示那些被改变的行。          不明白？不要紧，把这些肮脏丢到一边，跟我往下走，不过下面的介绍里       不包括正则表达式的解释，如果你不明白，可能有点麻烦。      ★ 首先假设我们有这样一个文本文件 sedtest.txt      cat &gt; sedtest.txt   Sed is a stream editor   ----------------------   A stream editor is used to perform basic text transformations on an </summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/5481240516832224851/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=5481240516832224851' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/5481240516832224851'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/5481240516832224851'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2009/05/sed.html' title='sed学习笔记'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-3517045594012386372</id><published>2009-05-26T02:55:00.000-07:00</published><updated>2009-05-26T02:56:25.909-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='UNIX'/><title type='text'>sort学习笔记</title><summary type='text'>sort默认是把整行当作一串字符，以首字符排序  ------------------------  不指明的sort是对整行的排序：   xyb 0$ sort a   a 9 t   c 2 f   d 4 x       Pasted from &lt;http://www.unixresources.net/linux/clf/vrml/archive/00/00/34/71/347190.html&gt;   ------------------------           Sort -nk 5  以第5列进行排序   -n表示numberic排序  -k表示位置??     -r  reverse 降序排列     +1 对第二列排序，如：（字段从0开始数，第一字段是0）  -----------------------------------------  按数字顺序排序第二个字段</summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/3517045594012386372/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=3517045594012386372' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/3517045594012386372'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/3517045594012386372'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2009/05/sort.html' title='sort学习笔记'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-3801458315261530065</id><published>2009-05-26T02:54:00.000-07:00</published><updated>2009-05-26T02:57:24.210-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='UNIX'/><category scheme='http://www.blogger.com/atom/ns#' term='OnJobLearning'/><category scheme='http://www.blogger.com/atom/ns#' term='Oracle/PLSQL'/><title type='text'>HPUX上Oracle 11g client安装笔记</title><summary type='text'>OS：HPUXhardware：安腾CPU安装对象：Oracle 11.1.0.6 clientsqlldr,sqlplusOracle 11.1.0.7 patchsqlldr和sqlplus安装后，文件在$ORACLE_HOME/bin 下面runtime安装会自动包含sqlplussqlldr在custome安装下面的oracle database utilities组件里，有其他东西，据说蛮有用，都装了admin安装会包含sqlldr安装界面出来，welcome下面有一步Inventory Directory,是临时安装文件存放的地方。保持这个路径为空或者删掉最后一级路径都可以。每次安装oracle都会重新copy内容进去的。sqlldr起不起来的原因：1. /u01/app/oracle/product/11.1.0.6/client_1/bin 这个路径要有rrr权限2. </summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/3801458315261530065/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=3801458315261530065' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/3801458315261530065'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/3801458315261530065'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2009/05/hpuxoracle-11g-client.html' title='HPUX上Oracle 11g client安装笔记'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-4189092464674777396</id><published>2009-05-06T01:40:00.000-07:00</published><updated>2009-05-06T01:41:36.050-07:00</updated><title type='text'>unix环境变量介绍</title><summary type='text'>我们在Linux下安装系统软件的时候,经常遇到一些系统环境变量配置的问题。什么是环境变量？如何定制环境变量？我将在下面做一些介绍。一、什么是环境变量？Linux是一个多用户的操作系统。多用户意味着每个用户登录系统后，都有自己专用的运行环境。而这个环境是由一组变量所定义,这组变量被称为环境变量。用户可以对自己的环境变量进行修改以达到对环境的要求。二、定制环境变量 环境变量是和Shell紧密相关的，它是通过Shell命令来设置的。环境变量又可以被所有当前用户所运行的程序所使用。对于bash来说，可以通过变量名来访问相应的环境变量。下面通过几个实例来说明1.显示环境变量HOME $&amp;nbspecho $HOME/home/admin2.设置一个新的环境变量NAME$&amp;nbspexport&amp;nbspNAME="RaidCheng"$&amp;nbspecho $NAMERaidCheng3.使用env</summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/4189092464674777396/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=4189092464674777396' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/4189092464674777396'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/4189092464674777396'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2009/05/unix.html' title='unix环境变量介绍'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-9102108394803670648</id><published>2009-04-14T01:52:00.000-07:00</published><updated>2009-04-14T02:17:09.369-07:00</updated><title type='text'>http://51ajax.net/?p=49</title><summary type='text'>转载自：http://51ajax.net/?p=49如果html中字体大小是用像素px来定义，那么在IE中无法调整字体大小。chm同IE一样，所以对于不得不长时间坐在屏幕前的我们是件很痛苦的事。前阵偶尔看见IE可以让用户嵌入自己的CSS样式表，就是使用工具 - Internet选项 - 常规 - 辅助功能 - 用户样式表来定义。把自己的CSS写好，比如 * {font-size:20px;} ，然后嵌入。在chm里设置和IE设置一样，只设置一个即可，选项 - Internet选项 - ……################################工具 - Internet选项 - 常规 - 辅助功能 - 格式 不使用网页指定的颜色不使用网页指定的字体样式不使用网页指定的字体大小以上三项勾选后，IE的背景可以变为系统背景色，我们可以设置为浅绿色，浅黄色等字体大小就可以使用Ctrl+</summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/9102108394803670648/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=9102108394803670648' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/9102108394803670648'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/9102108394803670648'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2009/04/http51ajaxnetp49.html' title='http://51ajax.net/?p=49'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-8699611080840536152</id><published>2009-04-08T06:08:00.000-07:00</published><updated>2009-04-08T06:09:10.202-07:00</updated><title type='text'>AWK：Linux 管理员的智能工具包 zz</title><summary type='text'>http://www.oracle.com/technology/global/cn/pub/articles/dulaney_awk.htmlAWK：Linux 管理员的智能工具包作者 Emmett Dulaney  您正在学习 Linux 吗？本文对于非常有用的 AWK 文本操作工具进行了介绍，非常有价值。  AWK 实用工具带有其自己的自包含语言，它不仅是 Linux 中也是任何环境中现有的功能最强大的数据处理引擎之一。这种编程及数据操作语言（其名称得自于它的创始人 Alfred Aho、Peter Weinberger 和 Brian Kernighan 姓氏的首个字母）的最大功能取决于一个人所拥有的知识。它允许您创建简短的程序，这些程序读取输入文件、为数据排序、处理数据、对输入执行计算以及生成报表，还有无数其他的功能。  AWK 是什么？  最简单地说，AWK </summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/8699611080840536152/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=8699611080840536152' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/8699611080840536152'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/8699611080840536152'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2009/04/awklinux-zz.html' title='AWK：Linux 管理员的智能工具包 zz'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-8311272407191785526</id><published>2009-04-08T03:08:00.001-07:00</published><updated>2009-04-08T03:08:43.142-07:00</updated><title type='text'>改变UltraEdit的背景颜色</title><summary type='text'>View   -&gt;Set   colors...,background</summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/8311272407191785526/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=8311272407191785526' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/8311272407191785526'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/8311272407191785526'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2009/04/ultraedit.html' title='改变UltraEdit的背景颜色'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-9199142161060141234</id><published>2009-03-31T06:59:00.000-07:00</published><updated>2009-03-31T07:00:02.605-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Software'/><title type='text'>飞信好友离线的根本解决方法</title><summary type='text'>网上看到很多转帖的版本说是欠费，但是大多数情况并不是欠费。 有人用删除帐号和信息的方法，实在是很麻烦，而且没必要。 根本解决方法是： 在系统托盘里面右键单击飞信图标 我的状态-&gt;最下面选择“注销登陆后，通过短信接收消息”而不是“不接收短信”。</summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/9199142161060141234/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=9199142161060141234' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/9199142161060141234'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/9199142161060141234'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2009/03/blog-post.html' title='飞信好友离线的根本解决方法'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-3006005789549242027</id><published>2009-03-29T23:55:00.000-07:00</published><updated>2009-03-29T23:59:45.758-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Oracle/PLSQL'/><title type='text'>oracle中繁体字显示成靠靠乱码</title><summary type='text'>之前用sqlldr上传UTF-8的文件到oracle，里面是一些繁体字的数据，在TOAD和PLSQL developer里面都是显示靠靠靠靠。。。我还以为是数据文件问题，google发现很多人都有相关问题。解决方法是修改注册表中Local Machine-&gt;Software-&gt;Oracle下Home0（数字零）里nlslang的设置。我原先是AMERICAN_AMERICA.WE8MSWIN1252，所以显示靠靠靠靠。。。修改成论坛里建议的AMERICAN_AMERICA.UTF8后，出现的是很奇怪和中文相似的乱码。最后找了个能正确显示的同事的注册码信息，改成SIMPLIFIED CHINESE_CHINA.ZHS16GBK，就可以显示出繁体字了。</summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/3006005789549242027/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=3006005789549242027' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/3006005789549242027'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/3006005789549242027'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2009/03/oracle.html' title='oracle中繁体字显示成靠靠乱码'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-8972764568488676605</id><published>2009-03-29T22:54:00.001-07:00</published><updated>2009-03-29T22:58:13.874-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Software'/><title type='text'>UltraEdit中Tab标签窗口消失的解决方法</title><summary type='text'>今天错误双击UltraEdit tab位置，不小心把标签方式浏览给关了，变成用左右箭头来切换标签了。非常不方便。配置里面搜Tab，窗口菜单，都没有。小E帮忙找到了重新打开标签浏览的位置。视图-&gt;视图列表-&gt;打开文件标签英文版的是：View-&gt;View/Tab-&gt;Open File Tab</summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/8972764568488676605/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=8972764568488676605' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/8972764568488676605'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/8972764568488676605'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2009/03/ultraedittab.html' title='UltraEdit中Tab标签窗口消失的解决方法'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-4381739358628024891</id><published>2009-03-27T01:44:00.000-07:00</published><updated>2009-03-27T01:47:32.943-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Software'/><title type='text'>谷歌拼音2.0和MSN9的冲突</title><summary type='text'>在MSN9里用谷歌拼音，只有自己新发起的窗口可以输入中文，而别人发起的弹出窗口只能输入英文不管怎么切换。解决方法：不把MSN主菜单最小化到托盘，而是保留在屏幕底部中间的任务栏。这样弹出窗口也可以用谷歌拼音2.0输入中文了。</summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/4381739358628024891/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=4381739358628024891' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/4381739358628024891'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/4381739358628024891'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2009/03/20msn9.html' title='谷歌拼音2.0和MSN9的冲突'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-6875258936498765650</id><published>2009-03-26T02:42:00.000-07:00</published><updated>2009-03-26T02:44:25.497-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='UNIX'/><category scheme='http://www.blogger.com/atom/ns#' term='Oracle/PLSQL'/><title type='text'>archive log space</title><summary type='text'>今天遇到这个问题：SQL*Loader-128: unable to begin a sessionORA-00257: archiver error. Connect internal only, until freed.结果是archive log空间不够了。找DBA clear一下就行了。</summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/6875258936498765650/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=6875258936498765650' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/6875258936498765650'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/6875258936498765650'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2009/03/archive-log-space.html' title='archive log space'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-3230684147418875975</id><published>2009-03-25T20:28:00.000-07:00</published><updated>2009-03-25T20:29:49.401-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='UNIX'/><category scheme='http://www.blogger.com/atom/ns#' term='Oracle/PLSQL'/><title type='text'>zz Sqlldr的使用</title><summary type='text'>http://blog.oracle.com.cn/index.php/266780/viewspace-26695Sqlldr也就是SQL*LOADER，它是oracle的高速批量数据加载工具，可以将外部文件的数据导入到oracle的数据库中。可以用于从多种平面文件格式向oracle数据库中加载数据。它有两种操作模式：传统路径（conventional path）：利用sql插入为我们加载的数据。直接路径（direct path）：不使用sql，而是直接格式化数据库块。利用直接路径加载，能从一个平面文件读取数据，并将其直接写至格式化的数据库块，而绕过整个sql引擎和undo生成，同时还可能避开redo生成，要在一个没有任何数据的数据库中充分加载数据，这是最好的方法。SQLLDR包括五个文件:控制文件（*.ctl）、数据文件（*.dat）、日志文件(*.log)、错误文件(*.bad)、</summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/3230684147418875975/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=3230684147418875975' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/3230684147418875975'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/3230684147418875975'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2009/03/zz-sqlldr.html' title='zz Sqlldr的使用'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-4452552146817762798</id><published>2009-03-25T03:07:00.000-07:00</published><updated>2009-03-25T03:08:10.366-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='UNIX'/><title type='text'>ll tips</title><summary type='text'>一、在当前文件夹ll结果仅有文件时，不会有total number的第一行      二、在当前文件夹ll结果含有文件夹时，会有如total 100的第一行，且包含文件夹中的文件数量     三、ll的结果中，时间不在当年的，会显示年份；但在当年的，会显示时刻，如：  -rw-------   1 ncrfmgr    ncrf             0 Oct  8 15:28 test1.txt  -rw-rw-r--   1 ncrfsftp   ncrf          1934 Sep  9  2008 Update_Amidmaster_20080908_TW.txt  可能的解决方法（待解决）  1.修改set，LC_TIME=POSIX改成ISO或者ISO2 （时间的格式参见man ls）  2.在非HP-UX的系统中，可以尝试ls -l --time-style=</summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/4452552146817762798/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=4452552146817762798' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/4452552146817762798'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/4452552146817762798'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2009/03/ll-tips.html' title='ll tips'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-539903856935941470</id><published>2009-03-25T02:04:00.002-07:00</published><updated>2009-03-25T02:11:12.416-07:00</updated><title type='text'>Blogger误删日志的解决</title><summary type='text'>上周在整理Label的时候，本想用滚轮向下滚选择Label，却apply了三个错误Label。而我想delete这三个label，我选择了Label Manipulate然后点了delete。结果，这两篇日志被删掉了！直接显示2 Posts have been deleted而没有任何预警和询问。发生在blogger这样知名的blog提供商（而且还属于Google）真是不应该。事实上，在编辑日志的界面如果点右方的delete按钮是有提示的，但是在Label Manipulate的这个delete不仅没有提示，而且很容易让人误以为是delete label。我把问题发在google支持论坛：When I drop down the "label manipulate (I don't know the actual name since my language is not English</summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/539903856935941470/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=539903856935941470' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/539903856935941470'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/539903856935941470'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2009/03/blogger.html' title='Blogger误删日志的解决'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-8082511260964032892</id><published>2009-03-25T02:04:00.001-07:00</published><updated>2009-03-25T02:04:28.260-07:00</updated><title type='text'>Eclipse的java环境配置 When Eclipse cannot be started, only shows a startup picture</title><summary type='text'>When open Eclipse, it shows a picture without enabling the program.Type java -version in command window, which shows 1.3.1We tried to change the environment variable, didn't work.We tried to add a -vm “C:\jre1.6.0_1\bin\javaw.exe” to Eclipse's short cut, but a dialogue window prompt out.But it works when change the short cut path to J2SDK:C:\…\eclipse\eclipse.exe -vm “C:\j2sdk1.4.2_14\bin\</summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/8082511260964032892/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=8082511260964032892' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/8082511260964032892'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/8082511260964032892'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2009/03/eclipsejava-when-eclipse-cannot-be.html' title='Eclipse的java环境配置 When Eclipse cannot be started, only shows a startup picture'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-9127269027644390835</id><published>2009-03-25T02:00:00.001-07:00</published><updated>2009-03-25T02:00:56.177-07:00</updated><title type='text'>How to search Special character that cannot be typed into search column</title><summary type='text'>Special character summary:SymbolFunction^^searches for a "^" character^ssearches for selected (highlighted) text when a macro is running^csearches for the contents of the clipboard when a macro is running^bmatches a page break^pmatches a newline (CR/LF) (paragraph) (DOS Files)^rmatches a newline (CR Only) (paragraph) (MAC Files)^nmatches a newline (LF Only) (paragraph) (UNIX Files)^tmatches a tab</summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/9127269027644390835/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=9127269027644390835' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/9127269027644390835'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/9127269027644390835'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2009/03/how-to-search-special-character-that.html' title='How to search Special character that cannot be typed into search column'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-8925990982557862184</id><published>2009-03-24T02:15:00.001-07:00</published><updated>2009-03-24T02:15:45.316-07:00</updated><title type='text'>zz BASH中的字符串处理</title><summary type='text'>http://unix-cd.com/unixcd12/article_4440.html到长度 %x="abcd"#方法一%expr length $x4# 方法二%echo ${#x}4# 方法三%expr "$x" : ".*"4# expr 的帮助# STRING : REGEXP   anchored pattern match of REGEXP in STRING查找子串 %expr index  $x "b"2%expr index  $x "a"1%expr index  $x "b"2%expr index  $x "c"3%expr index  $x "d"4得到子字符串 # 方法一# expr  startpos length%expr substr "$x" 1 3abc%expr substr "$x" 1 5abcd%expr substr "$x" 2 </summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/8925990982557862184/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=8925990982557862184' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/8925990982557862184'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/8925990982557862184'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2009/03/zz-bash.html' title='zz BASH中的字符串处理'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-3667941913907089338</id><published>2009-03-23T22:42:00.001-07:00</published><updated>2009-03-23T22:42:48.611-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='UNIX'/><title type='text'>zz Unix Shell中引号的用法</title><summary type='text'>http://space.itpub.net/14019112/viewspace-407102shell可以识别4种不同类型的引字符号: 单引号字符' 双引号字符" 反斜杠字符\ 反引号字符`1. 单引号 ( ' ' )howard@0[script]$ grep Susan phonebookSusan Goldberg 403-212-4921Susan Topple    212-234-2343如果我们想查找的是Susan Goldberg，不能直接使用grep Susan Goldberg phonebook命令，grep会把Goldberg和phonebook当作需要搜索的文件howard@0[script]$ grep 'Susan Gold' phonebookSusan Goldberg 403-212-4921当shell碰到第一个单引号时，</summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/3667941913907089338/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=3667941913907089338' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/3667941913907089338'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/3667941913907089338'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2009/03/zz-unix-shell.html' title='zz Unix Shell中引号的用法'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-2207784214776273520</id><published>2009-03-22T04:53:00.000-07:00</published><updated>2009-03-22T04:54:30.475-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='UNIX'/><title type='text'>LS用法</title><summary type='text'>LSSection: User Commands (1)Updated: November 1998 NAMEls, dir, vdir - 列目錄內容  提要ls [選項] [文件名...]POSIX 標準選項: [-CFRacdilqrtu1]  GNU 選項 (短格式):[-1abcdfgiklmnopqrstuxABCDFGLNQRSUX] [-w cols] [-T cols] [-I pattern] [--full-time][--format={long,verbose,commas,across,vertical,single-column}] [--sort={none,time,size,extension}] [--time={atime,access,use,ctime,status}] [--color[={none,auto,always}]] [--</summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/2207784214776273520/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=2207784214776273520' title='1 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/2207784214776273520'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/2207784214776273520'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2009/03/ls.html' title='LS用法'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-4051279581101989411</id><published>2009-03-13T00:59:00.001-07:00</published><updated>2009-03-13T01:01:00.630-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Oracle/PLSQL'/><title type='text'>zz case语句两个常用用法</title><summary type='text'>http://blog.csdn.net/zshengli/archive/2008/10/28/3166002.aspx用法1：case 字段 when '值1' then '结果1'when '值2 'then '结果2'else '结果3'end说明：这种用法跟C#的switch语句的功能有点相似，通过判断‘字段’不同值返回对应的‘结果’。它在select语句中用得比较多，如：select x,y,case z when '1' then '假' when '0' then '真' from table_v这语句查询出来第三列会是无名列，可以这样为它取名：select x,y,case z when '1' then '假' when '0' then '真' as 'new_z' from table_v用法2：case when 表达式1 then '结果1'when 表达式2</summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/4051279581101989411/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=4051279581101989411' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/4051279581101989411'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/4051279581101989411'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2009/03/zz-case.html' title='zz case语句两个常用用法'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-2547122453522559194</id><published>2009-03-08T22:36:00.001-07:00</published><updated>2009-03-13T01:02:17.199-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='JustForFun'/><title type='text'>Indian Holidays this Year</title><summary type='text'>Month Date Weekday Holiday NameMar 11-Mar-09 Wednesday HoliMar 27-Mar-09 Friday Ugadi/Gudi PadvaApr 10-Apr-09 Friday Good FridayMay 1-May-09 Friday May DayAug 14-Aug-09 Friday JanmashtamiSep 21-Sep-09 Monday RamzanSep 28-Sep-09 Monday VijayadasamiOct 2-Oct-09 Friday Gandhi JayantiDec 25-Dec-09 Friday Christmas</summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/2547122453522559194/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=2547122453522559194' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/2547122453522559194'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/2547122453522559194'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2009/03/indian-holidays-this-year.html' title='Indian Holidays this Year'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-8656216564747949451</id><published>2009-02-26T04:56:00.000-08:00</published><updated>2009-03-13T01:04:55.743-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Software'/><title type='text'>Windows live 2009 （MSN 9.0) 登陆时显示8100030f错误</title><summary type='text'>在开始菜单-&gt;运行 输入：C:\windows\system32\drivers\etc\ 右键单击hosts文件，选打开方式-&gt;记事本在后面加上两行：65.54.239.80 messenger.hotmail.com65.54.239.80 dp.msnmessenger.akadns.net 保存。重启MSN就好了。</summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/8656216564747949451/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=8656216564747949451' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/8656216564747949451'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/8656216564747949451'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2009/02/windows-live-2009-msn-90-8100030f.html' title='Windows live 2009 （MSN 9.0) 登陆时显示8100030f错误'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-3346911609775589157</id><published>2009-02-18T19:55:00.001-08:00</published><updated>2009-03-13T01:06:42.456-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='OnJobLearning'/><title type='text'>zz惠普高管减薪15%应对难关</title><summary type='text'>http://it.hexun.com/2009-02-19/114675485.html新浪科技讯北京时间2月19日上午消息，据国外媒体报道，惠普今早发布的2009财年第一季财报显示，净利润同比下滑13%。惠普管理层表示，正采取内部减薪措施节省开支，其中CEO马克·赫德(MarkHurd)的基本薪金将下调20%，其他高管的薪金也将下调15%。　　赫德今天表示，预计宏观经济在今年不会出现回暖。惠普管理层在分析师电话会议中表示，正在减薪以缩减开支，赫德的基本薪金将下调20%，其他高管的薪金也将下调15%，普通员工的薪金最高将下调5%。惠普还表示，如果公司业绩好转，将以奖金形式返还缩减的薪水。　　在截至1月31日的第一财季，惠普的净利润为18.54亿美元，比去年同期的21.33亿美元下滑13%；惠普第一季度每股收益75美分，低于去年同期的每股收益80美分。路透财经调查显示，</summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/3346911609775589157/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=3346911609775589157' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/3346911609775589157'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/3346911609775589157'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2009/02/zz15.html' title='zz惠普高管减薪15%应对难关'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-18172390217257900</id><published>2009-02-17T00:11:00.000-08:00</published><updated>2009-03-13T01:05:44.369-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='English'/><title type='text'>zz不折腾 in English</title><summary type='text'>中国驻外大使推荐“不折腾”英译：avoid self-inflicted  setbackshttp://news.sina.com 2009年01月18日 00:03 凤凰卫视　　最近，胡主席在庆祝改革开放30 周年讲话中说:“只要我们不动摇、不懈怠、不折腾，坚定不移地推进改革开放，坚定不移地走中国特色社会主义道路，就一定能夠胜利实现這一宏伟蓝图和奋斗目标。”　　当时，“不折腾”三个字刚落音，人民大会堂观众席随即传来会心的笑声。在正式的场合宣布重大发展方向时，一贯严肃的胡锦涛突然冒出一句很普通的口语，顾然让大家觉得十分亲切。但笑声也说明观众是听懂了“折腾”二字的所指，也听懂了“不折腾”的含义。　　这是说，建国以来，因內外因素而走的冤枉路并不少。屡次的政治运动和反复都给国家发展造成不少损伤，文化大革命是损伤最大的一次。改革开放也几经受挫，成功来之不易。如今，将过去的曲折、错误一律以“折腾</summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/18172390217257900/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=18172390217257900' title='1 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/18172390217257900'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/18172390217257900'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2009/02/zz-in-english.html' title='zz不折腾 in English'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-1057398699818446711</id><published>2009-01-15T22:26:00.000-08:00</published><updated>2009-03-13T01:04:55.744-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Software'/><title type='text'>转载：配置UltraEdit为Oracle PL/SQL代码编辑器</title><summary type='text'>原文地址：http://www0.ccidnet.com/tech/guide/2001/07/30/58_2801.htmlUltraEdit是一个功能强大的文本文件编辑器，它具有占用内存开销少，功能强大，灵活方便等特点，受到了广大程序开发者的欢迎，该软件不仅可以作为一个写字板NotePad的替代产品，同时还可作为一个功能强大的程序文本编写器。一般来讲，通常一个程序设计语言的IDE集成开发环境一般均几十上百兆，如果仅仅要简单地修改或者查看一下某个代码文件，启动这个庞大的集成开发环境往往效率极低。通常的做法是用Windows操作系统“附件”功能提供的NotePad来完成该任务，但该小程序功能有限，并且最主要的缺点是不支持语法的突出（HIGHLIGHT）显示。UltraEdit作为业界有名的文本编辑器，提供了对多种流行语言代码格式的语法突出显示功能，UltraEdit 8.1a默认包括C/</summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/1057398699818446711/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=1057398699818446711' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/1057398699818446711'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/1057398699818446711'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2009/01/ultraeditoracle-plsql.html' title='转载：配置UltraEdit为Oracle PL/SQL代码编辑器'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-8456578313275277277</id><published>2008-10-21T07:46:00.000-07:00</published><updated>2009-03-13T01:05:08.811-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Software'/><title type='text'>zz: Google Chrome's about: Pages</title><summary type='text'>from: http://googlesystem.blogspot.com/2008/09/google-chromes-about-pages.htmlLike most other browsers, Google Chrome has some special pages that show information about memory usage, cached files, plug-ins and more. Here's a list of the most interesting about: pages available in Google Chrome (you can open them by dragging about:name to the address bar).1. about:version - Google Chrome shows the </summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/8456578313275277277/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=8456578313275277277' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/8456578313275277277'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/8456578313275277277'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2008/10/zz-google-chromes-about-pages.html' title='zz: Google Chrome&apos;s about: Pages'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_ZaGO7GjCqAI/SL77xMtRprI/AAAAAAAALh4/yuFJ8ALWrrM/s72-c/google-chrome-about-version.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-1314400180547922008</id><published>2008-10-09T00:45:00.001-07:00</published><updated>2009-03-13T01:06:27.758-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='AbroadStudy'/><title type='text'>世界名牌大学课件下载地址</title><summary type='text'>一、伯克利加州大学伯克利分校 http://webcast.berkeley.edu/courses.php作为美国第一的公立大学，伯克利分校提供了许多优秀教授的播客和视频讲座，可以跟踪最新的讲座。想看教授布置的作业和课堂笔记，可以点击该教授的网页，通常，他/她都会第一堂课留下网址。实在不行，用google搜搜吧！　　伯克利的视频都是.rm格式，请注意转换　　二、麻省麻省理工学院 http://ocw.mit.edu/OcwWeb/web/courses/courses/index.htm麻省理工是免费开放教育课件的先驱，计划在今年把１８００门课程的课件都放在网站上，提供课程与作业的ＰＤＦ格式下载。三是，麻省理工只提供少数的视频讲座。坐过学生上麻省有一个绝对优势，麻省理工在中国大陆和中国台湾都建立了镜像网站，把麻省的课程都翻译成立中文。鉴于ＰＤＦ格式，推荐使用ＦｏｘＩｔ　Ｒｅａｄｅｒ。</summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/1314400180547922008/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=1314400180547922008' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/1314400180547922008'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/1314400180547922008'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2008/10/blog-post.html' title='世界名牌大学课件下载地址'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-5351675283286411715</id><published>2008-09-22T06:51:00.000-07:00</published><updated>2008-09-22T06:59:02.452-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='WINDOWS'/><title type='text'>让IE窗口最小化最大化的快捷键zz</title><summary type='text'>from:http://blog.aqedu.cn/user1/wuhui/archives/2008/24994.html·最小化的快捷键　WIN＋M　按“Windows键+M”键可以 最小化所有被打开的窗口，相当于“显示桌面”功能。·窗口最大化快捷键　Shift+WIND+MWindows键+CTRL+M功能是：重新将恢复上一项操作前窗口的大小和位置·在最大化和最小化之间切换的快捷键：WIN＋D·　最大化ALT+空格+X 　　最小化ALT+空格+N其它有关WINDOWS键的快捷键Windows键+E 打开资源管理器Windows键+F 打开“查找：所有文件”对话框Windows键+R 打开“运行”对话框Windows键+BREAK 打开“系统属性”对话框Windows键+CTRL+F打开“查找：计算机”对话框SHIFT+F10或鼠标右击 打开当前活动项目的快捷菜单WINDOWS+F1</summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/5351675283286411715/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=5351675283286411715' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/5351675283286411715'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/5351675283286411715'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2008/09/iezz.html' title='让IE窗口最小化最大化的快捷键zz'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-6952164196968521820</id><published>2008-09-21T23:11:00.000-07:00</published><updated>2009-03-13T01:04:55.745-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Software'/><title type='text'>OL2002: Out of Office Assistant "The Command Is Not Available"</title><summary type='text'>上次把别人电脑非法关机，结果Out of Office Assistant打不开了，中文google查就查不到，把所有中文删掉，只留英文，才搜到这个中文帮助文档http://support.microsoft.com/kb/327353还有一个英文论坛的，同样的结果方法：http://www.tech-archive.net/Archive/Outlook/microsoft.public.outlook/2006-03/msg01548.html内容大致如下：    症状当您在 Outlook 2002 中单击工具菜单上的“外出时的助理程序”时，您可能会收到以下错误信息：The command is not available.有关如何使用此扩展功能的信息，请参见程序文档。回到顶端原因如果注册表中存在下面的项，则可能发生此行为：HKEY_CURRENT_USER\Software\</summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/6952164196968521820/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=6952164196968521820' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/6952164196968521820'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/6952164196968521820'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2008/09/ol2002-out-of-office-assistant-command.html' title='OL2002: Out of Office Assistant &quot;The Command Is Not Available&quot;'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-6869562499498995034</id><published>2008-09-08T09:28:00.000-07:00</published><updated>2009-03-13T01:06:57.245-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Travel'/><title type='text'>推荐个亚太国家旅馆预订&amp;价格比较</title><summary type='text'>WuTravel 是个亚太旅馆信息网站，目前可以查找和预订30-40个亚太国家的旅馆，包括中国哦。WuTravel is an AsiaPacific Hotel information website. It has informaiton about hotel in 40+ travel  sites, including China. You can book hotel from there.</summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/6869562499498995034/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=6869562499498995034' title='1 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/6869562499498995034'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/6869562499498995034'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2008/09/blog-post.html' title='推荐个亚太国家旅馆预订&amp;价格比较'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-3847314885576340136</id><published>2008-09-04T09:20:00.000-07:00</published><updated>2009-03-13T01:06:02.425-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='上海 张江'/><title type='text'>XBOX降价的故事</title><summary type='text'>在淘宝挂东西有一年多了，生意可以用冷清来形容。1个月有一件都是不错的事情。原因很复杂，试过做卖家的都知道正品代购不好做，特别是兼职的代购。9月2号的时候突然2个人来问XBOX，说9月11号要降价，问我降不降，还发了link。算了下价格，日元原价按7的汇率是1380人民币。我说1500，邮费多退少补，大约200-300。然后上淘宝新挂了了新价格的。从改价格到当日下午4点，10个人来问价格，都是降不降，很多人不理解多退少补，非要个一口价，只要说1750包邮。事情变得越来越有意思，很有《引爆点》一书中提到的现象。截至到9月3号，店铺被18个人收藏，这是以前从来没有过的。虽然类似的火爆现象出现在我在淘宝推销92元冲100手机话费的时候，但是那个不久就被别的卖家投诉然后关闭了，原因是我只是发了让他们去注册我推荐的链接自己充值而不是直接卖商品。9月3号中午我吃饭回电脑前，旺旺的消息就10个框框，</summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/3847314885576340136/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=3847314885576340136' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/3847314885576340136'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/3847314885576340136'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2008/09/xbox.html' title='XBOX降价的故事'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-5701980143506186512</id><published>2008-09-03T05:05:00.000-07:00</published><updated>2009-03-13T01:07:13.887-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Software'/><title type='text'>zz 免费下载 并注册SnagIt和Camtasia Studio 无需破解</title><summary type='text'>转载自：http://www.kennyp.cn/2007/11/28/free-download-snagit-camtasia-studio-and-cdkey/Techsmith 公司旗下最受欢迎的两套软件 SnagIt 和 Camtasia Studio 现在公开让大家免费下载，通过免费注册你会得到一组正版注册码或序列号，安装完成就可以免费拥有正版软件 SnagIt 和 Camtasia Studio 。SnagIt 是我用过最好的截图软件，它将屏幕上的画面存储为静态的图片。当年我试用了它后马上抛弃其他同类软件，一直用到今时今日，到现在都还看不到比 SnagIt 更出色更强大的截图软件。Camtasia Studio 是套屏幕录影软件，它可以把屏幕上的连续动作存储为影片或视频，甚至 GIF 动画。虽然我不常用 Camtasia Studio ，也没使用过其他同类软件，</summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/5701980143506186512/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=5701980143506186512' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/5701980143506186512'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/5701980143506186512'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2008/09/zz-snagitcamtasia-studio.html' title='zz 免费下载 并注册SnagIt和Camtasia Studio 无需破解'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-5824573817279754104</id><published>2007-09-21T10:39:00.001-07:00</published><updated>2009-03-13T01:07:13.888-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Software'/><title type='text'>FREE SnagIt 7.2.5 Downloads and register超强抓屏软件SnagIt官方免费下载注册方法</title><summary type='text'>Although this is the previous version, it's free. Register at TechSmith.com for a free softwarekey for SnagIt 7.Techsmith.comDownload a copy of the latest version Version 7.2.5 from OldApps.com.Download 7.2.5 SnagIt被称作最强的截屏软件。今天同事推荐我用，很方便快捷，功能很多，除了用于技术文档插图是常用的加注释非常方便漂亮以外，边角各种淡色、撕裂的效果还可以用来做照片的特殊处理呢：） 简直是文档编辑必备啊～～～ 现在最新的版本应该是8.2.3 但是7.2.5有官方提供的注册码。只需在Techsmith.com注册后就可以一直合法使用。对于公司的文档撰写非常方便。 </summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/5824573817279754104/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=5824573817279754104' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/5824573817279754104'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/5824573817279754104'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2007/09/free-snagit-725-downloads-and.html' title='FREE SnagIt 7.2.5 Downloads and register超强抓屏软件SnagIt官方免费下载注册方法'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-5646349515698270645</id><published>2007-07-25T23:21:00.001-07:00</published><updated>2009-03-13T01:07:39.453-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tips'/><category scheme='http://www.blogger.com/atom/ns#' term='Software'/><title type='text'>Patent Application</title><summary type='text'>Some website of the existed patent: Google-&gt;Patent --all the US patent applied US Patent Office-USPTO European Patent Office State Intellectual Property Office of the P.R.C.   Patent Apply Process: before submit 使用专利 外观专利 发明专利 -- 最有商业价值   1. Get an idea 2. Prove it works and keep the records     - Prior Art Search- How do others solve the problem? Compare is needed!     - Lab book  (Important! A </summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/5646349515698270645/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=5646349515698270645' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/5646349515698270645'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/5646349515698270645'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2007/07/patent-application.html' title='Patent Application'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-6477161645825931851</id><published>2007-07-23T19:41:00.001-07:00</published><updated>2009-03-13T01:08:07.485-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='OnJobLearning'/><title type='text'>孙振耀在北大的演讲 zZ</title><summary type='text'>惠普职业 25年  谈到经验总结就避免不了提一提我这 25年在中国惠普到底做了什么。  如果不谈在学校的时候的半工半读身份，我在惠普公司是服务了 25年时间。惠普公司有一个 "提前退休计划 "，而我自己也一直想去学校里面续学习，于是就申请了这个计划。离开之前，公司送给我一个纪念牌，上面记录了我在惠普公司每一个工作阶段的时间、我负责什么工作、以及我的年龄等信息。事实上我在 20 岁的时候就加入了惠普公司，一直到51 岁退休。  1976 年我加入台湾惠普。还是计算机科学系学生的时候，我在大学二年级的暑假到惠普公司申请工作，一做就是两年。因为大学毕业以后需要服兵役，所以在服役结束之后于1982 年26 岁的时候重新加入惠普公司，从工程师开始做起。  1983 年因为公司的要求，我在" 百般不愿" 的情况下从工程师转为销售。那个时候我刚结婚没有多久，我太太是我高中和初中的同学，</summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/6477161645825931851/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=6477161645825931851' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/6477161645825931851'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/6477161645825931851'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2007/07/zz.html' title='孙振耀在北大的演讲 zZ'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-4276415222120861728</id><published>2007-07-23T19:35:00.001-07:00</published><updated>2009-03-13T01:08:33.375-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='JustForFun'/><title type='text'>One Joke about Software Engineer</title><summary type='text'>Boy is smoking and leaving smoke rings into the air. The girl gets irritated with the smoke and says to boy "Can't you see the warning written on the cigar packet, smoking is injurious to health" The boy replies back. "I am a software engineer. We don't worry about warnings we only worry about errors"</summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/4276415222120861728/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=4276415222120861728' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/4276415222120861728'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/4276415222120861728'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2007/07/one-joke-about-software-engineer.html' title='One Joke about Software Engineer'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-7953390303062779755</id><published>2007-07-18T02:38:00.001-07:00</published><updated>2009-03-13T01:08:22.544-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='UNIX'/><title type='text'>UNIX bc的小数除法</title><summary type='text'>这个东东整了我大半天的时间。。。 因为前面的代码算出一个TotalTime的结果是个科学计数法1.23456e+08这样的东东，在windows的MKS下只要简单的用 AverageTime=`expr $TotalTime / $total_num` 就ok了。 搬到UNIX服务器下跑就报expr expect a integer   开始是以为分子必须为整数，就搜出来一个方法，用bc控制分子的精度 AverageTime=`echo "scale=0;$TotalTime/$total_num"|bc'   //这个对于分子是小数点的情况还是好使的：） 这个方法在UNIX命令行直接跑能赋值，但是echo $AverageTime就会报Syntex Error in line1,   代入数字，一行行跑： AverageTime=`echo "scale=2;$2.5/$2"|bc' </summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/7953390303062779755/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=7953390303062779755' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/7953390303062779755'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/7953390303062779755'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2007/07/unix-bc.html' title='UNIX bc的小数除法'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-132433433111998764</id><published>2007-07-17T23:29:00.001-07:00</published><updated>2009-03-13T01:08:51.154-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='UNIX'/><title type='text'>写shell script的基础篇zz</title><summary type='text'>找了个写shell script的基础篇，zz一下： Shell Programming Abstract:  In this article we explain how to write little shell scripts and give many examples.    Why shell programming?Even though there are various graphical interfaces available for Linux the shell still is a very neat tool. The shell is not just a collection of commands but a really good programming language.You can automate a lot of tasks with it</summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/132433433111998764/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=132433433111998764' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/132433433111998764'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/132433433111998764'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2007/07/shell-scriptzz.html' title='写shell script的基础篇zz'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-4215660360992943569</id><published>2007-07-11T00:51:00.001-07:00</published><updated>2009-03-13T01:08:51.155-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='UNIX'/><title type='text'>How to put files from Windows to UNIX</title><summary type='text'>open CMD window in Windows, type  ftp 111.111.111.111 //UNIX server name ,  or : ftp -i 111.111.111.111 //will not prompt to ask y/n for each file; if you already typed ftp 111.111.111.111, you can also just type prompt to switch the on/off of the y/n asking type UNIX username and password when asked cd to the path you want to transfer files to after the ftp&gt; ftp&gt; cd location type mput filename </summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/4215660360992943569/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=4215660360992943569' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/4215660360992943569'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/4215660360992943569'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2007/07/how-to-put-files-from-windows-to-unix.html' title='How to put files from Windows to UNIX'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-7805665620057372644</id><published>2007-07-10T22:54:00.001-07:00</published><updated>2009-03-13T01:10:00.144-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='OnJobLearning'/><title type='text'>致HP总裁的一封信 zz</title><summary type='text'>同事传的，关于DCC，说总结的不错。还没仔细看，先转载过来慢慢看吧。 出处： 戴尔直通车 Glenn Keels，商用服务器高级经理 ---亲爱的赫德先生：我们的想法是一致的。30/70是企业IT的目标 一些我们和惠普公司的共同客户向我们询问了上周惠普首席执行官赫德在维加斯的活动中所做的主题演讲（我猜在维加斯发生的任何事情都会传出去）。 赫德先生称惠普公司要削减开支，以更多地投资于创新，这的确很有必要。他指出，虽然资本支出比较平稳，但是IT维护及运营费都在增加。赫德先生保证惠普公司将把维护和运营费控制在IT总预算的30%，而创新占70%。我们对这个比例完全赞同，事实上，我们为实现同样的目标也取得了切实的进展。 06财年，戴尔公司的IT支出占收入的1.39%，创造了14亿美元的利益。目前我们用于维护和创新的费用分别占40%和60%。我们正在努力削减多余的10%（shoud it be </summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/7805665620057372644/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=7805665620057372644' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/7805665620057372644'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/7805665620057372644'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2007/07/hp-zz.html' title='致HP总裁的一封信 zz'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-206070156754975061</id><published>2007-07-10T21:14:00.001-07:00</published><updated>2009-03-13T01:08:51.155-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='UNIX'/><title type='text'>用mkdir 命令一次生成嵌套的多个目录</title><summary type='text'> mkdir 命令  功能：创建一个目录（类似DOS下的md命令）。  语法：mkdir [选项] dirname 说明：该命令创建由 dirname 命名的目录。要求创建目录的用户在当前目录中（dirname 的父目录中）具有写权限，并且 dirname 不能是当前目录中已有的目录或文件名称。  命令中各选项的含义如下：  -m 对新建目录设置存取权限。也可以用chmod命令设置。 -p 可以是一个路径名称。此时若路径中的某些目录尚不存在，加上此选项后， 系统将自动建立好那些尚不存在的目录，即一次可以建立多个目录。 指令实例：  mkdir -p -m 700 ./inin/mail/ % 该命令的执行结果是在当前目录中创建嵌套的目录层次inin 和inin下的mail目录， 权限设置为只有文件主有读、写和执行权限。 ----------------------------------</summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/206070156754975061/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=206070156754975061' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/206070156754975061'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/206070156754975061'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2007/07/mkdir.html' title='用mkdir 命令一次生成嵌套的多个目录'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-6547317106550329821</id><published>2007-07-10T20:16:00.001-07:00</published><updated>2009-03-13T01:21:49.712-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='English'/><title type='text'>Scattered T-Storms</title><summary type='text'>下了个鱼鱼桌面，刚好有个看天气的插件，就看了13号后几天温州的天气，结果全是Scattered T-Storms，吓死我了。在网上google一下，原来是骤雨。因为插件里面用云+闪电的样子，感觉比较可怕。。。 有趣的是，搜到的前两个结果都是一个叫 跟我去马尔地夫的台湾论坛，里面有很详细的马尔代夫自由行的资料：）那里也是很多Scattered T-Storms的说，所以很多人会担心，不过据说后来都只是很短的骤雨或者阴天哦～ 但愿雁荡山也是大部分时间的好天气啦·^_^~</summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/6547317106550329821/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=6547317106550329821' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/6547317106550329821'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/6547317106550329821'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2007/07/scattered-t-storms.html' title='Scattered T-Storms'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-3718476288413079220</id><published>2007-07-09T20:16:00.001-07:00</published><updated>2009-03-13T01:22:08.303-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='UNIX'/><title type='text'>Some tips when migrating ksh+java program from Windows to UNIX</title><summary type='text'>1. When transfering .jar and .class file, remember to use binary transfer 2. The delimiter of classpaths is ":" in UNIX, while in Windows it was ";" 3. UNIX doesn't allow empty line in .ksh file, while it is OK in windows 4. When calling a .ksh file, such as "sh test.ksh", in UNIX, remember to follow this ".ksh" subfix, while in windows, it can be "sh test" (I haven't tried if it can have ".ksh" </summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/3718476288413079220/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=3718476288413079220' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/3718476288413079220'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/3718476288413079220'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2007/07/some-tips-when-migrating-kshjava.html' title='Some tips when migrating ksh+java program from Windows to UNIX'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-8874337062470688003</id><published>2007-06-28T02:45:00.001-07:00</published><updated>2009-03-13T01:22:24.699-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Oracle/PLSQL'/><title type='text'>Oracle连接不识别的格式问题</title><summary type='text'>经常我们直接手动编辑c:\oracle\ora92\network\ADMIN\tnsname.ora后会有报错不能分解服务器。比如：  SERVICE =  (DESCRIPTION =    (ADDRESS_LIST =      (ADDRESS = (PROTOCOL = TCP)(HOST = hostaddress.com)(PORT = 1234))    )    (CONNECT_DATA =      (SERVICE_NAME = SERVICE)    )  ) 以下是解决方法(斜体字的部分用实际的域名等代替)：   方法之一是先看看是不是在c:\oracle\ora92\network\ADMIN\sqlnet.ora下面设置了domain， NAMES.DEFAULT_DOMAIN = domain.net 如果有，把这一行用#号注释掉。有时候这样就可行了。</summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/8874337062470688003/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=8874337062470688003' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/8874337062470688003'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/8874337062470688003'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2007/06/oracle.html' title='Oracle连接不识别的格式问题'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-7366344364776477078</id><published>2007-06-26T01:24:00.001-07:00</published><updated>2009-03-13T01:22:24.700-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Oracle/PLSQL'/><title type='text'>PLSQL tips</title><summary type='text'>is not null null should use "is", not "=" (taught, but easy to forget, and important!!!)   group functions like AVG, SUM... will dismiss the NULL values   NVL (colA, -1) replace all NULL values by -1 when selection NVL2 (colA, -1, 2) replace all NULL values by -1 when selection, and replace others by 2.  NULLIF (A, B, C) returns NULL if A = B, else returns C   Oracle password is not case </summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/7366344364776477078/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=7366344364776477078' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/7366344364776477078'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/7366344364776477078'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2007/06/plsql-tips.html' title='PLSQL tips'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-5315589540002432404</id><published>2007-06-21T23:42:00.003-07:00</published><updated>2009-03-13T01:23:14.790-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Testing'/><title type='text'>WinRunner和QTP比较</title><summary type='text'>原文 http://www.rickyzhu.com/2007/03/14/winrunner-vs-qtp/ 很多初入行的朋友使用测试工具进行功能测试的时候,总是会遇到QTP和WinRunner的选择问题,为什么同样一家公司会出两个功能类似的工具哪? 下面是一篇关于这两个工具的对比介绍,其实从我自己的经验来看,WinRunner虽然推出较早,但是因为一些功能的缺陷,导致后期很难推广,而 Quick Test Professinal(QTP)虽然没有师兄WinRunner出道早,然后内功深厚,所以很受欢迎,而且Mercury公司以后的主要发展策略是 QTP,虽然文章中说并没有计划Phase out WR,但是已经不再出新版本了. 针对这两个工具的3年左右的使用经验,我的感受是WR比QTP的逊色的地方主要是几点: 1. WR的对象管理不如QTP那么有效 2. WR的语言主要是基于类C的</summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/5315589540002432404/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=5315589540002432404' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/5315589540002432404'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/5315589540002432404'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2007/06/winrunnerqtp.html' title='WinRunner和QTP比较'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-9114476465463714312</id><published>2007-06-21T23:42:00.001-07:00</published><updated>2009-03-13T01:23:14.791-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Testing'/><title type='text'>软件测试人员月薪8000 zz</title><summary type='text'> 原文 http://www.rickyzhu.com/2007/05/29/software-testing-salary/ 其实月薪8000元很高？在这个物价上涨，通货膨胀的年代8000早已经不是什么高薪了，在深圳甚至连一个平方都买不到！但是确实很多从事测试行业朋友梦寐以求的高薪，到底什么样的公司或者或者单位能提供如此薪水？测试行业的总体薪资分布到底如何？测试从业人员应该如何规划自己的测试职业生涯？ 这里转载一篇文章，我认为总结的非常全面，而且有一定深度，对测试人员的职业发展有一定的指导意义。认清自己，给自己一个准确定位，并结合自身的实际情况制定一个切实可行的职业发展计划，对每个人来说都是至关重要的。  这听起来是个很有诱惑力的话题；也的确是个很有诱惑力的话题。 很多做测试的朋友千万次的问，测试行业能挣到高薪吗？从事测试工作有发展吗？我能够忍受枯燥无聊的测试工作吗？  </summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/9114476465463714312/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=9114476465463714312' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/9114476465463714312'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/9114476465463714312'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2007/06/8000-zz.html' title='软件测试人员月薪8000 zz'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-6214642686555729174</id><published>2007-06-21T23:36:00.001-07:00</published><updated>2009-03-13T01:23:14.792-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Testing'/><title type='text'>[TSL Script] 在WinRunner中应用DB语句 zz</title><summary type='text'> 原文地址 http://www.cntesting.com/hphtml/?thread-71.html 在TCL中经常使用DB数据库语句增加测试比对、数据抽取、测试用例其他一些应用，由于WinRunner自带的语句包装不够，所以自升级一些DB支持语句是非常必要的，下面是Amit Kulkarni提供的一些这方面支持语句：1. GetDBColumnValue(in strSql, in strColumn, out strVal)，这个方法取得某数据列值，前提是这个数据列只有唯一的值，不能出现多列。例如：strSQL = "Select count(1) from PRODUCT_MASTER";strColumn = "COUNT";rc = GetDBColumnValue(strSql, strColumn, strVal);2. GetDBRow(in strSql, out</summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/6214642686555729174/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=6214642686555729174' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/6214642686555729174'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/6214642686555729174'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2007/06/tsl-script-winrunnerdb-zz.html' title='[TSL Script] 在WinRunner中应用DB语句 zz'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-1625552531906956649</id><published>2007-06-06T01:01:00.001-07:00</published><updated>2009-03-13T01:23:30.498-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='English'/><title type='text'>How to Write a Business-Oriented Paper</title><summary type='text'>Business thesis only need their product or serive better so their profit better. Much different from academic theis. ----------It's only my note of a lecture. Suggested Content:  Problem Statement Our Solution Evidence the Solution Works Competitive Approaches Current Status Next Steps Good:  Innovation Relation with your work Business Value Result (Experiment, Demo) Bad:  Too much Abbreviations </summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/1625552531906956649/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=1625552531906956649' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/1625552531906956649'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/1625552531906956649'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2007/06/how-to-write-business-oriented-paper.html' title='How to Write a Business-Oriented Paper'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-2795468912671871720</id><published>2007-05-29T01:30:00.001-07:00</published><updated>2009-03-13T01:05:44.370-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='English'/><title type='text'>pros and cons</title><summary type='text'> 今天在e-learning上做 TeamWork Fundamental的场景模拟，和另外三个虚拟的人物对话（感觉怎么像《心跳回忆》。。。），得到一个“Good. You are identifying the pros and cons of the issue.”下面是Live英汉通(en-cn@hotmail.com)对pros and cons的解释。 pros and cons (npl) : advantages and disadvantages the arguments for and against something </summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/2795468912671871720/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=2795468912671871720' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/2795468912671871720'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/2795468912671871720'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2007/05/pros-and-cons.html' title='pros and cons'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-3620858620078729971</id><published>2007-05-28T04:17:00.001-07:00</published><updated>2009-03-13T01:05:44.370-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='English'/><title type='text'>学英语发音的重点</title><summary type='text'>今天跟Gaby讨论听人英语口音最重要的是什么，不是单词发音，也不只是语调，而是重音。 如果说话的重音不对就不像说话，人家听了就不舒服了。但是我们的注意重点往往刚好相反。重音最难练也最少人练。 然后才是语调，美国人习惯上提，英国人习惯下降，语调给人的感觉就是你生活的背景。但这不是那么重要，有人说的一口中国英语但是完全不妨碍交流。不过我还是喜欢学一种听得舒服的口音。家乡的口音是用来跟家人交流，那对外交流还是标准口音好一些。英语里没有规定的标准口音，但是以伦敦音和纽约口音为主，我们课本的录音比较像新闻英语，干巴巴的，美剧里面一般就是纽约的口音啦～～比较饱满～～美国南部口音就不要学了，不然别人会很奇怪你的背景。。。 其实美国人很喜欢英国口音的，Queen's English。比如《老友记Friends》里面钱德学英国口音泡妞，还有《绝望主妇Desperate Housewives》里面Susan</summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/3620858620078729971/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=3620858620078729971' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/3620858620078729971'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/3620858620078729971'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2007/05/blog-post_28.html' title='学英语发音的重点'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-1728103554620594420</id><published>2007-05-20T22:38:00.001-07:00</published><updated>2009-03-13T01:05:44.370-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='English'/><title type='text'>若即若离</title><summary type='text'>多有诗意的词啊~~~汉语真是博大精深。。。然后导致很难翻译。。。 今天同学小郁问的，google了一下，第一个金山爱词霸的结果居然是 keep sb. at an arm's length ---1 毫无原文的即，离的对应，下面看到一个网页翻成 play emotional hide-and-seek ---2 ，原来是个专门翻译疑难词汇短语的网站，叫“译者工作园地”，不错，收藏起来，地址是http://chi.proz.com/ 其实就是类似知道的论坛，有人问某个词然后回答者得到奖赏。 此词条还有一个回复，觉得也不错，可以作为参考 equivocality ---3 stage of equivocalityequivocal state 模棱两可的，意义不明确的。 感觉这个也不错，可以参照上下文选择2或3其中一个，金山那个意思不对，pass～ 不过，小郁还是不满意，结合1和3，</summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/1728103554620594420/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=1728103554620594420' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/1728103554620594420'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/1728103554620594420'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2007/05/blog-post.html' title='若即若离'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-8628932923344739477</id><published>2007-05-18T19:51:00.000-07:00</published><updated>2007-05-18T20:05:41.795-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='上海 张江'/><category scheme='http://www.blogger.com/atom/ns#' term='Tips'/><title type='text'>上海社保金的查询及办理Tips</title><summary type='text'> 医保卡,就是社保卡,我们现在办的是合在一张卡上的,上医院带那个就可以了 各种金从居住证办理之日起交(我的算起来大约是这样)     这个网址可以查询到已办理的社保卡状态 http://ybj.sh.gov.cn/webquery/search01.jsp   卡出来后要自己去领的   张江居民申领 ：张江镇 请市民前往孙桥镇办理申领手续 38921345孙桥镇 横沔江路112号107室 38921345     查询养老金情况建议向上海市劳动和社会保障局咨询，网址：www.12333.gov.cn咨询电话：12333；  （这个除了公积金都可以查到）查询医疗保险金情况，建议向上海市医疗保险局咨询，网址：http://ybj.sh.gov.cn  咨询电话：962218；查询公积金情况，建议向上海市公积金管理中心咨询，网址：http://www.shgjj.com 咨询电话：</summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/8628932923344739477/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=8628932923344739477' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/8628932923344739477'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/8628932923344739477'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2007/05/tips.html' title='上海社保金的查询及办理Tips'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-4152015337203296404</id><published>2007-05-18T05:01:00.000-07:00</published><updated>2007-05-18T19:54:14.601-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='OnJobLearning'/><title type='text'>communication workgroup讨论成员征集中</title><summary type='text'>想法的起因是一次公司workshop的时候，说了自己买西瓜和贩子争执不下的故事，然后一屋子的leader和manager帮我研究和西瓜贩子的沟通。。。这个下午我收获颇多，而这种交流在论坛和blog里都得不到。所以想建个朋友之间的Group。主题：关于生活工作上的沟通问题，技巧和经验分享。故事要求：-不情绪化，简单阐述发生过程和矛盾冲突。-讨论，回复能有建设性至少有意义。-乐于分享你找工作或者在某个城市生活的体验。比如怎么找一个好驾校。这不是一个情感论坛，不是宣泄的地方或者闺密的悄悄话。希望大家都能通过这个Group得到进步。如果你对这个group有兴趣，有时间并且有想法能参加讨论，是我的朋友或者朋友的朋友，留下你的email，我会把你加进去。成员限定20人。 关于Google Group的补充它并不需要你注册 只是方便我们发邮件而已（有些邮箱没有回复给所有人的选项）</summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/4152015337203296404/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=4152015337203296404' title='1 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/4152015337203296404'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/4152015337203296404'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2007/05/communication-workgroup.html' title='communication workgroup讨论成员征集中'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-7635148799625717874</id><published>2007-05-15T02:22:00.001-07:00</published><updated>2007-05-18T19:55:19.059-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='English'/><title type='text'>E-mail落款的网络变异 《‘Yours Truly,’ the E-Variations》翻译</title><summary type='text'>【绝对原创，如要引用请复制本帖地址，未经本人允许不可复制邮件内容】 写在前面：在blog：http://englishblog.org/2006/12/01/yours-truly/链到这个Times的文章，很喜欢这种专业的8g，并且觉得对工作还是有一定参考价值，于是产生翻译的念头。翻了一个下午，惭愧。然后把自己的落款改成Warmly，看看过几天大家有什么反应。感谢8T群里破木片的指点和同事Arthur的建议。 "Yours Truly,"的网络变体 CHAD TROUTWINE，一位在加州Malibu市的企业家，今年早些时候在为他在中西部一幢建筑谈判一个商业合同。虽然谈话开始的很好，可是很快又变得困难重重。有证据说明事情真的转移了么？那就是他预期租房者的E-mail的落款的改变。 “随着谈判开始走向失败，落款开始人为的变得简短和冷酷，”Troutwine先生回忆道，“开始是像，‘I </summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/7635148799625717874/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=7635148799625717874' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/7635148799625717874'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/7635148799625717874'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2007/05/e-mail-yours-truly-e-variations.html' title='E-mail落款的网络变异 《‘Yours Truly,’ the E-Variations》翻译'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-89400731304467633</id><published>2007-04-09T01:49:00.000-07:00</published><updated>2007-05-18T19:55:10.737-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='English'/><title type='text'>Tough</title><summary type='text'>讲某人很难缠 脾气不好 有个口语词 读起来是taf的 怎么拼？那天Tammy问我。其实早就知道这个词，一直不知道怎么拼，奇怪的是也从来没去想过。回去问Gaby，也不知道，试过Taff,Tuff,Tarf,Tuph,Taph,Tarph....等今天突然想起问我们Team的海归，果然得出正确答案。人家还要谦虚一番说提示足够多。。。这种口语词汇果然还是要问有生活经验的人啊～～</summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/89400731304467633/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=89400731304467633' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/89400731304467633'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/89400731304467633'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2007/04/tough.html' title='Tough'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-1980348463900879232</id><published>2007-04-07T22:26:00.000-07:00</published><updated>2007-05-18T20:05:41.796-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tips'/><category scheme='http://www.blogger.com/atom/ns#' term='OnJobLearning'/><title type='text'>向外企email投简历的技巧--全部简历心得大公开【请勿转载】</title><summary type='text'>【绝对原创，如要引用请复制本帖地址，未经本人允许不可复制邮件内容】周五早晨一打开邮箱，10几封标题为“申请实习”，“实习”，“Intern”的邮件充斥着我的未读信件。下午，又是10几封。。。。而且大多数只有中文的，没有邮件正文的。。。发信人的名字甚至有叫4的。。。这件事的起因是这期公司HR周刊有个Intern的内部推荐，我就把职位信息发给了几个大学同学。其中有个说出不了实验室，问能不能推荐他的同学。我说可以，把我的信箱给他，并且要他们发中英文简历+Cover Letter。他还问了Cover Letter是什么东西，也跟他说了。还说baidu可以搜到很多模板。结果就成了这样。后来我想，估计是他发到学校bbs了。果然，后来来了个比较认真的，提到在北邮人bbs上看到招聘信息。。。虽然我不是招聘的人，但是我能体会到他们的感受了，一个没有发信人名的邮箱，发了个仅有附件的邮件，</summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/1980348463900879232/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=1980348463900879232' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/1980348463900879232'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/1980348463900879232'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2007/04/email.html' title='向外企email投简历的技巧--全部简历心得大公开【请勿转载】'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-5834787896481595309</id><published>2007-04-04T19:24:00.000-07:00</published><updated>2007-05-18T19:55:00.805-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Web2.0'/><category scheme='http://www.blogger.com/atom/ns#' term='Software'/><title type='text'>Adsense的乱码</title><summary type='text'>这两天刚把Adsense弄上来，居然搜索不了中文，出来页面的搜索框里是乱码。而且过分的是，google帮助里面就没有说明！还好Google.cn里面给找出来了。把代码里面GB1232改成UTF-8就ok了，改两处。不过更新比较慢哎，我的另一个blog刚改名字，搜索出来的页面标题还是旧的。</summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/5834787896481595309/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=5834787896481595309' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/5834787896481595309'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/5834787896481595309'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2007/04/adsense.html' title='Adsense的乱码'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-6436198087716469109</id><published>2007-04-04T06:44:00.000-07:00</published><updated>2007-05-18T19:54:29.076-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='OnJobLearning'/><category scheme='http://www.blogger.com/atom/ns#' term='English'/><title type='text'>BRB</title><summary type='text'>总是在Jabber上看印度同事写BRB，搜好半天才搜到，原来是Be right back.很快回来的缩写。</summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/6436198087716469109/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=6436198087716469109' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/6436198087716469109'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/6436198087716469109'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2007/04/brb.html' title='BRB'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-6823076385494699207</id><published>2007-03-28T22:25:00.000-07:00</published><updated>2007-05-18T19:54:14.601-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='OnJobLearning'/><title type='text'>Remote Control Issue</title><summary type='text'>Thanks to my colleague Jason, and I just post here as a note:Issue:When usingMicrosoft Remote Control to access windows server:The server has no respond and return message:  The remote session was disconnected because there are no Terminal Server client access licenses available for this computer.Solution:1.       Click start-&gt;Run, and input ‘regedit’ to open register editor.2.       Delete Item:</summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/6823076385494699207/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=6823076385494699207' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/6823076385494699207'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/6823076385494699207'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2007/03/remote-control-issue.html' title='Remote Control Issue'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-1750472640287696385</id><published>2007-03-27T01:13:00.000-07:00</published><updated>2007-05-18T19:55:51.441-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Software'/><title type='text'>UltraEdit-32 12.10a 注册码</title><summary type='text'>UltraEdit-32 简体中文增强版 12.10a [0613]（2006年06月29日发布）-华军软件商城价格： 360.00 元/套 http://www.hrtsea.com/Download/SoftView/SoftView_23.html用户名：crsky com注册码：E7K9R-J6Z6V-B9J3E-C1M3Y</summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/1750472640287696385/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=1750472640287696385' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/1750472640287696385'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/1750472640287696385'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2007/03/ultraedit-32-1210a.html' title='UltraEdit-32 12.10a 注册码'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-4744392780143329839</id><published>2007-03-21T02:40:00.001-07:00</published><updated>2007-05-18T19:56:05.838-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='JustForFun'/><title type='text'>中国字幕组 zz</title><summary type='text'>   　　随着美剧《越狱》在写字楼里的风靡，一个神秘的群体—— 负责为“狱粉”们下载、翻译、制作、压制、发布、分流的字幕组逐渐浮出水面。　　第一个揭开神秘面纱的是《纽约时报》，不久前该报发表了一篇题为《打破文化屏蔽的中国字幕组》的文章，报道出来后被专栏作者连岳转载进个人博客，立即引来跟帖无数，有网友回帖高声赞叹:“以自然法的名义，向字幕组的同志们致敬!他们是这个时代真正的教育家，如果没有这些人，中国青年脑中的知识将起码丧失一半。”　　越来越多的网友开始好奇中国字幕组究竟是一个什么样的组织?他们在做着什么样的工作?他们做这些工作的初衷何在，他们是否以此为生?　　在伊甸园论坛上，打出了这样的招聘启事:字幕组长期招募各语种（英、日、韩、德、法、俄、意、西、其他）字幕翻译、听译及时间轴制作人员，待遇优厚。欢迎高手加盟！基本条件:（1）热爱电影或美剧；（2）有一定的网络条件（公众网资源下载速度</summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/4744392780143329839/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=4744392780143329839' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/4744392780143329839'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/4744392780143329839'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2007/03/zz.html' title='中国字幕组 zz'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-5069776052114940471</id><published>2007-03-18T20:04:00.001-07:00</published><updated>2007-03-28T20:20:55.084-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='English'/><title type='text'>ad hoc</title><summary type='text'>ad hoc为拉丁语，意思1为：特别的，仅为某一目的，例句：FBI appoints an ad hoc royal trump-killer to give the goat a death-blow。FBI指定一个特别的皇家王牌杀手给这个老色鬼致命一击。意思2为：非事先计划的，非正式的，例句：those abracadabras from this incunabulum were added ad hoc.这本魔法书上的咒语是临时添上去的。也译作即兴: ad hoc speech, ad hoc query, etc. 韦氏的注解: for this specific purpose; for a special case only, without general application !  在计算机词汇中也指节点可移动的小型无线网络:Ad-Hoc结构是一种省去了无线AP</summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/5069776052114940471/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=5069776052114940471' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/5069776052114940471'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/5069776052114940471'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2007/03/ad-hoc.html' title='ad hoc'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-4050375254007191608</id><published>2007-03-14T20:03:00.001-07:00</published><updated>2007-05-18T19:56:15.443-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='English'/><title type='text'>地铁之Metro与Subway</title><summary type='text'> metro作为地铁是一种口语化的说法，其完整的表达是metropolitan railway，从字面上看就是城市里的铁路。但是，必须指出的是，它来自于法语chemin de fer métropolitain，而《英汉大词典，P．2076》也清清楚楚地指出，metro这个单词尤其指法国巴黎和加拿大蒙特利尔等地的地铁。在美国英语中，“地铁”有着另外一个单词subway，指的就是市区地下铁道。在英国首都伦敦，地铁通常被称为underground，简称tube。2005年7月伦敦遭遇的两次地铁系列爆炸案，英国媒体无一例外称之为tube blast，从来没有采用过metro和subway这两个单词，这说明他们对其中界线的掌握非常有分寸。这也就是说，在欧美国家，对于“地铁”采用哪个说法，人们还是比较清楚的，比如说在美国，人们无一例外会说subway。当然，这并不是说他们不懂另外两个词的意思。 </summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/4050375254007191608/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=4050375254007191608' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/4050375254007191608'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/4050375254007191608'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2007/03/metrosubway.html' title='地铁之Metro与Subway'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-1073124317512842854</id><published>2007-03-13T23:58:00.001-07:00</published><updated>2007-05-18T19:56:38.306-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Web2.0'/><title type='text'>关于I'm,我不能再沉默了</title><summary type='text'>之前看到有人MSN名字上有I'm,却出现不同代号*red之类的,没有仔细查,不久就在张翼珍的blog上看到了,似乎我关注的热点问题它经常写到哈~所以我一直懒得写,每次有人问起,我都直接把这个地址(http://blog.earlzhang.com/it/469/)给他们. 我错了. 先是年,柯南,还有$^&amp;*$@#...居然今天Gaby也问起...我的blog不能再沉默了,否则我得把签名改成以上的地址... 在此篇blog的留言中引用了一篇blog(http://shangwx.spaces.live.com/blog/cns!19078B5CBDE53A02!160.entry)提到了可以看到我们的投票是没有用的(居然有同事把所以的符号都加进去了,说给每个都赞助点...),而且它的前提是要先注册,而不是放上去就ok.但是我们可以在这个页面http://im.live.com/</summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/1073124317512842854/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=1073124317512842854' title='1 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/1073124317512842854'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/1073124317512842854'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2007/03/i.html' title='关于I&amp;#39;m,我不能再沉默了'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-576065225529901182</id><published>2007-03-08T21:36:00.001-08:00</published><updated>2007-03-28T20:21:30.065-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='English'/><title type='text'>几个单词的红宝式速记</title><summary type='text'>今天看上铺雪雪的笔记,发现有几个单词不认识了....设计了几个速记: illegible：不清晰的il(l)-leg 生病的脚-&gt;踩出来的脚印-&gt;不清晰 canvass：征订，游说，征求意见can-vass(袜子) 能说服人买袜子-&gt;游说 liaison：组织内单位间的交流与合作貌似lia是"外部"的词根... cosmetic应该指护肤品吧,基础护理方面的.相对的makeup是彩妆,我见过的大多如此... </summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/576065225529901182/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=576065225529901182' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/576065225529901182'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/576065225529901182'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2007/03/blog-post.html' title='几个单词的红宝式速记'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-6730950701154787610</id><published>2007-03-08T19:38:00.001-08:00</published><updated>2007-05-18T20:05:41.797-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='上海 张江'/><category scheme='http://www.blogger.com/atom/ns#' term='Tips'/><title type='text'>居住证办理流程Tips</title><summary type='text'> 仅供没能申请或没来得及申请上上海户口的朋友参考. 通常交完材料要等很久才会通知去照相并领取居住证通知单.正常的有通知的单子寄到公司,带上25块钱和身份证在延安西路900号,先到楼上交钱,下来照完相就会拿到.地址中山西路620号 上海人才服务中心地铁2号线到中山公园,转3号线到延安西路,下桥后乘11(71?)到下一站天山路中山西路,在这两条路的十字路口往右转,在路的对面(前进方向的左手边)穿有领子的彩色衣服(我那天穿帽兜衫也能照)工作时间: AM 9:00-11:00           PM 1:30-4:30流程:1. 在1楼照相,穿过大厅的右手边第二间2. 在2楼交25块,大厅第一个接待台3. 回1楼在照相室拿通知单(叫居住证领取通知单,靠他就可以在申请签证时就代替居住证),或大厅三号台,两边都可以拿,网络有时不好,最好早点去,路上需要2-2.5小时.有时照相要排队,我同事就排上1</summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/6730950701154787610/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=6730950701154787610' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/6730950701154787610'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/6730950701154787610'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2007/03/tips.html' title='居住证办理流程Tips'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-8409275891211771603</id><published>2007-02-08T00:25:00.001-08:00</published><updated>2007-03-28T20:22:08.647-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Software'/><title type='text'>JAVA Runtime Environment 出错的解决</title><summary type='text'>前段时间系统的JRE坏了,不想重装,但是工作用的软件起不起来,说JAVA版本1.3不支持,可是我明明装的1.4.2;后来找来牛人帮我查,在cmd窗口打命令java -version显示1.3.1 果然.......原来因为我版本多装了,系统还是使用了原来的JRE1.3;解决方法是在我的电脑上选右键-&gt;属性-&gt;环境变量,找到里面有关JRE地址的,换到1.4.2的地址就OK,记住有些是带BIN要保留BIN.可是更奇怪的情况出现了:一个JAVA程序的按钮没了,一个是滚动条,一个是单选框,结果程序没法用.(汗..........我的系统......)情况是这样的,我用的那个软件是从一个bat文件打开的,用Ultra Edit打开那个文件,里面有SET JAVABIN和SET JAVAHOME的语句,把里面所有带JRE路径的都改成现在的版本,再打开,按钮们回来了~~~hoho----另一种出错情况</summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/8409275891211771603/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=8409275891211771603' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/8409275891211771603'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/8409275891211771603'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2007/02/java-runtime-environment.html' title='JAVA Runtime Environment 出错的解决'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-8071292353178462297</id><published>2007-02-08T00:11:00.001-08:00</published><updated>2007-05-18T19:59:13.242-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Software'/><category scheme='http://www.blogger.com/atom/ns#' term='Travel'/><title type='text'>非常适合国际差旅,对外工作人员的软件——Chinese Date Time 多国时钟</title><summary type='text'>软件下载站一般叫Microsoft Chinese Date and Time 微软官方中国日历.界面很简单,不像一般桌面日历那样有漂亮的水晶界面,但是也因为没有在桌面上而占用更少内存,而且更适合在办公电脑上安装.我以前装过的那些日历都用了不久就删了,但是这个丝毫不影响速度,而且信息量够大(可以同时显示4个国家地区的时间,并且同时显示带着农历的日历,还有24节气哦~~) 相信出差在外的你一定会喜欢它.</summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/8071292353178462297/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=8071292353178462297' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/8071292353178462297'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/8071292353178462297'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2007/02/chinese-date-time.html' title='非常适合国际差旅,对外工作人员的软件——Chinese Date Time 多国时钟'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-6760529913065706889</id><published>2007-01-16T21:16:00.001-08:00</published><updated>2007-05-18T19:57:41.892-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='English'/><title type='text'>Vice versa</title><summary type='text'> 今天做E-learning,看到一个vice versa，居然在中文中出现频率那么高的词，英文说法却今天才遇上，真是奇怪…… 原句是： Most version of Unix are flexible with compression utilities, and the uncompress and gunzip commands can be interchanged. For example, if you compress a file with the compress command, you can uncompress it with the gunzip command and vice versa. 金山词霸的美国传统词典中的解释： Vice versa is perhaps one of a handful of borrowings of foreign </summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/6760529913065706889/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=6760529913065706889' title='2 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/6760529913065706889'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/6760529913065706889'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2007/01/vice-versa.html' title='Vice versa'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-4017788509766530450</id><published>2006-12-19T21:20:00.001-08:00</published><updated>2007-05-18T19:59:13.243-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Travel'/><title type='text'>被奸商坑了,skype账号被封,连带不能申请新账号...</title><summary type='text'>在一个淘宝卖家买了5欧,售价41.50元.当时充完拨了1,2个电话,上周发现账户被冻结了.发信问skype,说是第三方的reseller. 之所以在淘宝买.不是因为便宜.以前大学的时候买过1欧,花了12块.不知怎么现在淘宝卖价好像比汇率低,但我买只是因为当时信用卡的钱被旅馆冻结了很多,又不想为了解冻充大量现金进去,以后还要浪费取现费,回来也没剩几天,不需要太多点数了,skype上至少要10美元.只好让别人在淘宝帮我买. 我不知道skype是否有规定不可以重售,但是skype有个商业skype (business skype)的功能,就是可以建一个群,群主可以给群的成员充skype点数.不知道skype是如何判定此人是合法给成员充值还是reseller.但是作为卖家在不确定自己的点数是否可以的时候就随便卖出,造成我的点数不可用,甚至账户冻结,只好投诉并差评了. 做成签名后,很多人问起.因为</summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/4017788509766530450/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=4017788509766530450' title='1 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/4017788509766530450'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/4017788509766530450'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2006/12/skype.html' title='被奸商坑了,skype账号被封,连带不能申请新账号...'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-5148921504183174726</id><published>2006-12-18T23:46:00.001-08:00</published><updated>2007-05-18T20:05:41.798-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tips'/><category scheme='http://www.blogger.com/atom/ns#' term='Travel'/><title type='text'>CA的里程兑换</title><summary type='text'>好容易积到13k miles的里程,都怪我事先没有发现这个小秘密,结果白白损失了去程的给了UA;还好靠Marriott的居住天数又增加了一些.满心以为可以换一张机票了,谁知CA的第一次兑换需要20k miles... 555 居然CA的合作商户还有大众点评,有知音卡的同志们记得在点评网合作商户消费的时候给知音卡积个分~反正偶是不指望能吃出这7k的差额了...</summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/5148921504183174726/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=5148921504183174726' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/5148921504183174726'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/5148921504183174726'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2006/12/ca.html' title='CA的里程兑换'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-955894828412210638</id><published>2006-11-29T01:39:00.000-08:00</published><updated>2007-05-18T19:58:44.209-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='English'/><title type='text'>No need to..., when...关于巧妙利用google找自己不熟悉的句式</title><summary type='text'>经常有人写东西想表达中文的意思,但是不懂语法怎么写.share一点google的技巧,很容易找到你想要的句式,而且地道的英文.从此不用到处问人,1秒钟找到答案~今天帮人改一个句子语法,发现他用了一个不错的句式,It is not necessary to throw DuplicateException When add a duplicate TransactionSet, just update it is enough. At the same time, The method for updating Transactionset should be removed.google了一下:关键词 "no need to" when搜到: No need to run yourself ragged when training for a marathon.</summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/955894828412210638/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=955894828412210638' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/955894828412210638'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/955894828412210638'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2006/11/no-need-to-whengoogle.html' title='No need to..., when...关于巧妙利用google找自己不熟悉的句式'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-7914847792910573009</id><published>2006-10-31T14:58:00.000-08:00</published><updated>2007-05-18T19:58:30.440-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='UNIX'/><category scheme='http://www.blogger.com/atom/ns#' term='OnJobLearning'/><category scheme='http://www.blogger.com/atom/ns#' term='Software'/><category scheme='http://www.blogger.com/atom/ns#' term='Travel'/><title type='text'>热烈庆祝我在美国pass了试用期-FTP/UNIX script recording功能</title><summary type='text'>今天查看工资条,一算,居然已经过了试用期12天了.不知不觉啊...其实算这个日子的唯一目的是以后可以去健身...回归正题,在美国这段时间还是学了不少东西,涉及行业准则的东西不能说,就透露一些常用软件的小技巧吧:)FTP:不知道其它的FTP有没有这个功能的,公司这款FTP有个record script的功能,选择后就开始recording,然后在命令栏的输入,或者鼠标点击产生的命令就可以被录下,选择stop recording,然后选择一个路径,保存成script文件,下次需要的时候就run script就可以了.因为我的工作需要打开一个比较复杂的路径,而本地也要打开一个特别目录,有了这个功能就特别方便.UNIX:其实应该是WRQ Reflection才对.用它连接到服务器端的UNIX上.同样地,也是每次都要输入一大堆一样的命令,我就想是不是也有一个一样的recording功能呢?果然,在</summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/7914847792910573009/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=7914847792910573009' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/7914847792910573009'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/7914847792910573009'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2006/10/pass-ftpunix-script-recording.html' title='热烈庆祝我在美国pass了试用期-FTP/UNIX script recording功能'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-5354178273134190663</id><published>2006-10-24T11:24:00.000-07:00</published><updated>2006-10-24T11:27:51.197-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='UNIX'/><category scheme='http://www.blogger.com/atom/ns#' term='OnJobLearning'/><title type='text'>using "cat" to concatenate files to another</title><summary type='text'>I saw my leader used "cat", but searching for many sites, there is only output to standard output file - screen.This is how to use it:cat fileA fileB fileX &gt; fileAnotherfileAnother will include all the files before "&gt;" in order</summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/5354178273134190663/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=5354178273134190663' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/5354178273134190663'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/5354178273134190663'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2006/10/using-cat-to-concatenate-files-to.html' title='using &quot;cat&quot; to concatenate files to another'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-116163870434596971</id><published>2006-10-23T14:21:00.001-07:00</published><updated>2006-10-23T14:21:31.360-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='OnJobLearning'/><category scheme='http://www.blogger.com/atom/ns#' term='English'/><title type='text'>cliché</title><summary type='text'>看我们公司一个美国mm的blog,好像是领导级的,写道: It’s difficult to avoid the clichés but how this city has changed. 什么是cliché呢? google了一下,原来是陈词滥调的意思,并且,还有其他地方解释说,像"last but not least"这样的也算了:http://www.talkskyland.com/Archive_view.asp?boardID=58&amp;ID=8147谈谈作文的忌讳：Cliché首先，什么是一个Cliché呢？英文中的Cliché，不是指一些plain bad jokes，好像句子“Life\'s a bitch, and then you marry one.” 也不仅仅光是指使用频率很高的一些语句；它是指lots of people都在说，并且其中还传达着某种思想或涵义。</summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/116163870434596971/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=116163870434596971' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/116163870434596971'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/116163870434596971'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2006/10/clich.html' title='cliché'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-116163463453985727</id><published>2006-10-23T13:15:00.000-07:00</published><updated>2006-10-23T14:21:31.299-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='OnJobLearning'/><category scheme='http://www.blogger.com/atom/ns#' term='English'/><title type='text'>et al的意思</title><summary type='text'>在公司里经常有人写邮件喜欢在人名后面加et al 之前一直以为是某种称呼, google了一下才发现,原来指的是"以及其他人".请见:http://www.wanfangdata.com.cn/qikan/periodical.Articles/zgkjqkyj/980124.htm科技论文参考文献中“ed.”和“et al.”的用法周兆康　　国家标准“文后参考文献著录规则”(GB7714-87)［1］规定了各类型出版物中的文后参考文献的著录项目、著录顺序、著录用的符号、各个著录项目的著录方法以及参考文献标注法,但在具体使用“ed.”和“et al.”这两个缩略语时,存在一些问题。特作如下探讨。1　“ed.”的用法　　“ed.”为“edition”和“editor”的缩略语［2］。作为edition的缩写,其意思是“版,版本”,如“文后参考文献著录规则”6.5节中例举的“5th ed.”</summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/116163463453985727/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=116163463453985727' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/116163463453985727'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/116163463453985727'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2006/10/et-al.html' title='et al的意思'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-115875719468175142</id><published>2006-09-20T05:48:00.000-07:00</published><updated>2006-10-23T14:21:31.242-07:00</updated><title type='text'>even print paper is of self-production</title><summary type='text'>Yesterday some coleague says her hand is cut by the print paper in her signature :(I have been feeling good for the print paper, but just thought the company bought some good papers until I saw her signature. Then I thought it is more tight (中文应该说紧实有质感) So......I saw the paper cover -- ......Even the paper is self-production! Haha......The black part can be touched out, really~</summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/115875719468175142/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=115875719468175142' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/115875719468175142'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/115875719468175142'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2006/09/even-print-paper-is-of-self-production.html' title='even print paper is of self-production'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-114180301371706322</id><published>2006-03-07T23:27:00.000-08:00</published><updated>2006-10-23T14:21:31.164-07:00</updated><title type='text'>MSSCS User Manual</title><summary type='text'>Malicious Software Sample Collection System (MSSCS –Version 1.1)用户使用手册User Manual (Q&amp;A)ContentMalicious Software Sample Collection System (MSSCS –Version 1.1) 1User Manual (Q&amp;A) 1Content. 21．     What is MSSCS?. 32．     Why MSSCS?. 33．     What machine can MSSCS be installed?. 44．     How to install and configure MSSCS?. 45．     What can I do?. 56．     To Backup your database in server…... 67．</summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/114180301371706322/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=114180301371706322' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/114180301371706322'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/114180301371706322'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2006/03/msscs-user-manual.html' title='MSSCS User Manual'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-113508308716833352</id><published>2005-12-20T04:47:00.000-08:00</published><updated>2006-10-23T14:21:31.105-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='OnJobLearning'/><category scheme='http://www.blogger.com/atom/ns#' term='C/C++/MFC'/><title type='text'>if or if-else?</title><summary type='text'>In Crafty:int OptionMatch(char *command, char *input){/* ************************************************************ *                                                          * *   check for the obvious exact match first.               * *                                                          * ************************************************************ */ if (!strcmp(command, input))     </summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/113508308716833352/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=113508308716833352' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/113508308716833352'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/113508308716833352'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2005/12/if-or-if-else.html' title='if or if-else?'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-113344423405474066</id><published>2005-12-01T05:31:00.000-08:00</published><updated>2006-10-23T14:21:31.036-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='OnJobLearning'/><category scheme='http://www.blogger.com/atom/ns#' term='C/C++/MFC'/><title type='text'>Learning about static construct function</title><summary type='text'>http://blog.joycode.com/ghj/archive/2004/08/24/31504.aspx Using the static construct function, we can realize that the many subclass only realize the base class's construct function once. Many class need to call a function Send of a Controller class, therefore the Controller is used as base class. But the pipeline is unique, therefore it can only be initialized once, to build a pipeline. </summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/113344423405474066/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=113344423405474066' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/113344423405474066'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/113344423405474066'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2005/12/learning-about-static-construct_01.html' title='Learning about static construct function'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-113344043397206620</id><published>2005-12-01T04:24:00.000-08:00</published><updated>2007-05-18T19:59:13.260-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Travel'/><title type='text'>SnowyNight in Shenyang, China</title><summary type='text'>The first snow eventually falls before December, at the alst day of November. I received from Lily that :---------------Today has been December.The Chopin has been sang in November;it is not known where December is Debussy or Liszt.Fir, ingle and party in the west;but also nice reading forbidden books in ancient world.Wish you a happy December.----------------Winter is always romantic, like the </summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/113344043397206620/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=113344043397206620' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/113344043397206620'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/113344043397206620'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2005/12/snowynight-in-shenyang-china.html' title='SnowyNight in Shenyang, China'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-113076226567371263</id><published>2005-10-31T04:37:00.000-08:00</published><updated>2007-05-18T20:02:09.328-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Software'/><title type='text'>Transcript</title><summary type='text'>Reviewing my transcript, I found a interesting phenomenon: all the experiment courses and most of the philosophy courses are A while the paper-based courses are about 75-80......Actually, I prefer doing experiment to listening lectures and taking tests. Therefore, doing research will be a fitable future to persue. :)</summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/113076226567371263/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=113076226567371263' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/113076226567371263'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/113076226567371263'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2005/10/transcript.html' title='Transcript'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-113060359009415021</id><published>2005-10-29T09:33:00.000-07:00</published><updated>2006-10-23T14:21:30.778-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='OnJobLearning'/><category scheme='http://www.blogger.com/atom/ns#' term='C/C++/MFC'/><title type='text'>补昨天的作业ShellExecute</title><summary type='text'>A small exe when the disk is inserted. It is the main menu. EXEs and chm and http may be opened by clicking button. I like this ShellExecute~在mfc里打开网址和应用程序的东东，不错～ShellExecute(m_hWnd,NULL, "http://www.qitiandasheng.com", NULL,NULL,SW_SHOWMAXIMIZED);ShellExecute(m_hWnd,"open","~tmp0.1st.exe","","", SW_SHOW );//~tmp0.1st.exe is an exe in your USB disk. Just copy it to use^^. I guess so, and I </summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/113060359009415021/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=113060359009415021' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/113060359009415021'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/113060359009415021'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2005/10/shellexecute.html' title='补昨天的作业ShellExecute'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-113060264745907451</id><published>2005-10-29T09:17:00.000-07:00</published><updated>2006-10-23T14:21:30.723-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='OnJobLearning'/><category scheme='http://www.blogger.com/atom/ns#' term='C/C++/MFC'/><title type='text'>Solved the Redifinition problem !</title><summary type='text'>general          c/c++                      link        ResultShared DLL DebugMultithread DLL - OK Not MFC DebugMultithread DLL - error LNK2001 Shared DLL Singlethread* - OK Shared DLL DebugMultithread  - fatal error C1189 Shared DLL Singlethread* - fatal error C1189 Shared DLL Multithread DLL reset  Shared DLL Multithread DLL - warning LNK4098 Shared DLL Multithread DLL reset warning LNK4098 </summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/113060264745907451/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=113060264745907451' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/113060264745907451'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/113060264745907451'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2005/10/solved-redifinition-problem.html' title='Solved the Redifinition problem !'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-113030195739128337</id><published>2005-10-25T21:45:00.000-07:00</published><updated>2006-10-23T14:21:30.667-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='OnJobLearning'/><category scheme='http://www.blogger.com/atom/ns#' term='C/C++/MFC'/><title type='text'>On Oct. 25, some tips sharing</title><summary type='text'>If in VC the ERROR: fatal error C1083: Cannot open precompiled header file: 'Debug/abc.pch': No such file or directory(abc is the name of your project), you can easily just solve it by Project-&gt;Setting-&gt;C/C++-&gt;Category(Choose Precompiled Headers)-&gt;Choose Create PreCompiled Headers (the 3nd choice) and fill in "stdafx.h" (no need to file in the quote). Read file by istream: What we often do is:   </summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/113030195739128337/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=113030195739128337' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/113030195739128337'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/113030195739128337'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2005/10/on-oct-25-some-tips-sharing.html' title='On Oct. 25, some tips sharing'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-113016603413653907</id><published>2005-10-24T07:57:00.000-07:00</published><updated>2006-10-23T14:21:30.613-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='OnJobLearning'/><category scheme='http://www.blogger.com/atom/ns#' term='C/C++/MFC'/><title type='text'>The second day</title><summary type='text'>Today I finished _beginthreadex and my cryptoCS. Quite nice~~~_beginthreadex is changed from CreateThread. But CreateThread has to be specified the pointer to thread ID when in Windows98. It is better to use _beginthreadex or _beginthread. The former is more similar to CreateThread in parameters, in which I only change the type HANDLE into unsigned and change the returned value's type.cryptoCS </summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/113016603413653907/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=113016603413653907' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/113016603413653907'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/113016603413653907'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2005/10/second-day.html' title='The second day'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16415777.post-112996464931321107</id><published>2005-10-21T23:51:00.000-07:00</published><updated>2007-05-18T19:59:13.261-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Travel'/><title type='text'>"1Kg more" commonweal travel</title><summary type='text'>-----Translated by imtoffee from the "What's 1Kg more" page in 1kg.cn什么是“多背一公斤”多背一公斤是民间发起的公益旅游活动，它倡导旅游者在出行前准备少量书籍和文具，带给沿途的贫困学校和孩子，并强调通过旅游者与孩子们面对面的交流，传播知识和能力，开阔孩子们的视野，激发孩子们的信心和想象力，最后，通过1kg.cn网站将活动的信息和经验分享出来，让学校和孩子得到更多的关注和帮助，同时让更多的旅游者受益。"1Kg more" commonweal travel is a commonweal travel invoked among common people, which sparkplugs people to prepare a few books or stationaries for the poor schools</summary><link rel='replies' type='application/atom+xml' href='http://wangyuanbo.blogspot.com/feeds/112996464931321107/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16415777&amp;postID=112996464931321107' title='1 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/112996464931321107'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16415777/posts/default/112996464931321107'/><link rel='alternate' type='text/html' href='http://wangyuanbo.blogspot.com/2005/10/1kg-more-commonweal-travel.html' title='&quot;1Kg more&quot; commonweal travel'/><author><name>imtoffee</name><uri>http://www.blogger.com/profile/04409228421230313459</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry></feed>
