More servicesWindows Live
HomeHotmailSpacesOneCare
 
MSN
Sign in
 
 
Spaces home  QunheIBMer的共享空间PhotosProfileFriendsMore Tools Explore the Spaces community

QunheIBMer的共享空间

This is my work website, you are welcome.

zhangqunhe

View spaceSend a message
Occupation:
Age:
Interests:
I trust the world will get better and better!I hope everybody around me will feel happy for me!There is no shortcut to my dream,Work hard, try my best and make progress everyday!

程序员眼中的女人。---转抄。

有的女人就像Windows 虽然很优秀,但是安全隐患太大。
有的女人就像UNIX  她条件很好,然而不是谁都能玩的起。
有的女人就像C# 长的很漂亮,但是家务活不行。
有的女人就像C++,她会默默的为你做很多的事情。
有的女人就像JAVA,只需一点付出她就会为你到处服务。
有的女人就像JAVA script,虽然对她处处小心但最终还是没有结果。
有的女人就像汇编 虽然很麻烦,但是有的时候还得求它。
有的女人就像 SQL,她会为你的发展带来莫大的帮助。
爱情就是死循环,一旦执行就陷进去了。
爱上一个人,就是内存泄露,你永远释放不了。
真正爱上一个人的时候,那就是常量限定,永远不会改变。
女朋友就是私有变量,只有我这个类才能调用。
情人就是指针用的时候一定要注意,要不然就带来巨大的灾难。

It is time to the end of the chinese lunar year.

Every year I wanna write a summary and a plan to the next year, however, to the abnormal  2007, I have a lot of things to say.
Personally, I don't want to write and just wait, wait the time flies in the slow speed.
The next year-2008 is a big year to China and also to me.
Without a plan, and just hope the life becomes better and better.
Want to rewrite the life of 2007, If I could!

Unicode 简介--Cited via others' blog.

Unicode是一种字符编码规范 。

先从ASCII说起。ASCII是用来表示英文字符的一种编码规范,每个ASCII字符占用1个字节(8bits

因此,ASCII编码可以表示的最大字符数是256,其实英文字符并没有那么多,一般只用前128个(最高位为0),其中包括了控制字符、数字、大小写字母和其他一些符号。

而最高位为1的另128个字符被成为扩展ASCII”,一般用来存放英文的制表符、部分音标字符等等的一些其他符号

这种字符编码规范显然用来处理英文没有什么问题 。(实际上也可以用来处理法文、德文等一些其他的西欧字符,但是不能和英文通用),但是面对中文、阿拉伯文之类复杂的文字,255个字符显然不够用

于是,各个国家纷纷制定了自己的文字编码规范,其中中文的文字编码规范叫做“GB2312-80”,它是和ASCII兼容的一种编码规范,其实就是利用扩展ASCII没有真正标准化这一点,把一个中文字符用两个扩展ASCII字符来表示。

但是这个方法有问题,最大的问题就是,中文文字没有真正属于自己的编码,因为扩展ASCII码虽然没有真正的标准化,但是PC里的ASCII码还是有一个事实标准的(存放着英文制表符),所以很多软件利用这些符号来画表格。这样的软件用到中文系统中,这些表格符就会被误认作中文字,破坏版面。而且,统计中英文混合字符串中的字数,也是比较复杂的,我们必须判断一个ASCII码是否扩展,以及它的下一个ASCII是否扩展,然后才那可能是一个中文字 。

总之当时处理中文是很痛苦的。而更痛苦的是GB2312是国家标准,台湾当时有一个Big5编码标准,很多编码和GB是相同的,所以……,嘿嘿。

这时候,我们就知道,要真正解决中文问题,不能从扩展ASCII的角度入手,也不能仅靠中国一家来解决。而必须有一个全新的编码系统,这个系统要可以将中文、英文、法文、德文……等等所有的文字统一起来考虑,为每个文字都分配一个单独的编码,这样才不会有上面那种现象出现。

于是,Unicode诞生了。

Unicode有两套标准,一套叫UCS-2(Unicode-16),用2个字节为字符编码,另一套叫UCS-4(Unicode-32),用4个字节为字符编码。

以目前常用的UCS-2为例,它可以表示的字符数为2^16=65535,基本上可以容纳所有的欧美字符和绝大部分的亚洲字符。

UTF-8的问题后面会提到 。

Unicode里,所有的字符被一视同仁。汉字不再使用两个扩展ASCII”,而是使用“1Unicode”,注意,现在的汉字是一个字符了,于是,拆字、统计字数这些问题也就自然而然的解决了 。

但是,这个世界不是理想的,不可能在一夜之间所有的系统都使用Unicode来处理字符,所以Unicode在诞生之日,就必须考虑一个严峻的问题:和ASCII字符集之间的不兼容问题。

我们知道,ASCII字符是单个字节的,比如“A”ASCII65。而Unicode是双字节的,比如“A”Unicode0065,这就造成了一个非常大的问题:以前处理ASCII的那套机制不能被用来处理Unicode了 。

另一个更加严重的问题是,C语言使用'\0'作为字符串结尾,而Unicode里恰恰有很多字符都有一个字节为0,这样一来,C语言的字符串函数将无法正常处理Unicode,除非把世界上所有用C写的程序以及他们所用的函数库全部换掉 。

于是,比Unicode更伟大的东东诞生了,之所以说它更伟大是因为它让Unicode不再存在于纸上,而是真实的存在于我们大家的电脑中。那就是:UTF

UTF= UCS Transformation Format UCS转换格式

它是将Unicode编码规则和计算机的实际编码对应起来的一个规则。现在流行的UTF2种:UTF-8UTF-16

其中UTF-16和上面提到的Unicode本身的编码规范是一致的,这里不多说了。而UTF-8不同,它定义了一种区间规则,这种规则可以和ASCII编码保持最大程度的兼容 。

UTF-8有点类似于Haffman编码,它将Unicode编码为00000000-0000007F的字符,用单个字节来表示;

00000080-000007FF的字符用两个字节表示

00000800-0000FFFF的字符用3字节表示

因为目前为止Unicode-16规范没有指定FFFF以上的字符,所以UTF-8最多是使用3个字节来表示一个字符。但理论上来说,UTF-8最多需要用6字节表示一个字符。

UTF-8里,英文字符仍然跟ASCII编码一样,因此原先的函数库可以继续使用。而中文的编码范围是在0080-07FF之间,因此是2个字节表示(但这两个字节和GB编码的两个字节是不同的),用专门的Unicode处理类可以对UTF编码进行处理。

下面说说中文的问题。

由于历史的原因,在Unicode之前,一共存在过3套中文编码标准。

GB2312-80,是中国大陆使用的国家标准,其中一共编码了6763个常用简体汉字。Big5,是台湾使用的编码标准,编码了台湾使用的繁体汉字,大概有8千多个。HKSCS,是中国香港使用的编码标准,字体也是繁体,但跟Big5有所不同。

3套编码标准都采用了两个扩展ASCII的方法,因此,几套编码互不兼容,而且编码区间也各有不同

因为其不兼容性,在同一个系统中同时显示GBBig5基本上是不可能的。当时的南极星、RichWin等等软件,在自动识别中文编码、自动显示正确编码方面都做了很多努力 。

他们用了怎样的技术我就不得而知了,我知道好像南极星曾经以同屏显示繁简中文为卖点。

后来,由于各方面的原因,国际上又制定了针对中文的统一字符集GBKGB18030,其中GBK已经在WindowsLinux等多种操作系统中被实现。

GBK兼容GB2312,并增加了大量不常用汉字,还加入了几乎所有的Big5中的繁体汉字。但是GBK中的繁体汉字和Big5中的几乎不兼容。

GB18030相当于是GBK的超集,比GBK包含的字符更多。据我所知目前还没有操作系统直接支持GB18030


谈谈Unicode编码,简要解释UCSUTFBMPBOM等名词
这是一篇程序员写给程序员的趣味读物。所谓趣味是指可以比较轻松地了解一些原来不清楚的概念,增进知识,类似于打RPG游戏的升级。整理这篇文章的动机是两个问题:

问题一:
使用Windows记事本的另存为,可以在GBKUnicodeUnicode big endianUTF-8这几种编码方式间相互转换。同样是txt文件,Windows是怎样识别编码方式的呢?

我很早前就发现UnicodeUnicode big endianUTF-8编码的txt文件的开头会多出几个字节,分别是FFFEUnicode,FEFFUnicode big endian,EFBBBFUTF-8)。但这些标记是基于什么标准呢?

问题二:
最近在网上看到一个ConvertUTF.c,实现了UTF-32UTF-16UTF-8这三种编码方式的相互转换。对于Unicode(UCS2)GBKUTF-8这些编码方式,我原来就了解。但这个程序让我有些糊涂,想不起来UTF-16UCS2有什么关系。
查了查相关资料,总算将这些问题弄清楚了,顺带也了解了一些Unicode的细节。写成一篇文章,送给有过类似疑问的朋友。本文在写作时尽量做到通俗易懂,但要求读者知道什么是字节,什么是十六进制。

0big endianlittle endian
big endian
little endianCPU处理多字节数的不同方式。例如字的Unicode编码是6C49。那么写到文件里时,究竟是将6C写在前面,还是将49写在前面?如果将6C写在前面,就是big endian。还是将49写在前面,就是little endian

“endian”这个词出自《格列佛游记》。小人国的内战就源于吃鸡蛋时是究竟从大头(Big-Endian)敲开还是从小头(Little-Endian)敲开,由此曾发生过六次叛乱,其中一个皇帝送了命,另一个丢了王位。

我们一般将endian翻译成字节序,将big endianlittle endian称作大尾小尾

1、字符编码、内码,顺带介绍汉字编码
字符必须编码后才能被计算机处理。计算机使用的缺省编码方式就是计算机的内码。早期的计算机使用7位的ASCII编码,为了处理汉字,程序员设计了用于简体中文的GB2312和用于繁体中文的big5

GB2312(1980)一共收录了7445个字符,包括6763个汉字和682个其它符号。汉字区的内码范围高字节从B0-F7,低字节从A1-FE,占用的码位是72*94=6768。其中有5个空位是D7FA-D7FE

GB2312支持的汉字太少。1995年的汉字扩展规范GBK1.0收录了21886个符号,它分为汉字区和图形符号区。汉字区包括21003个字符。2000年的GB18030是取代GBK1.0的正式国家标准。该标准收录了27484个汉字,同时还收录了藏文、蒙文、维吾尔文等主要的少数民族文字。现在的PC平台必须支持GB18030,对嵌入式产品暂不作要求。所以手机、MP3一般只支持GB2312

ASCIIGB2312GBKGB18030,这些编码方法是向下兼容的,即同一个字符在这些方案中总是有相同的编码,后面的标准支持更多的字符。在这些编码中,英文和中文可以统一地处理。区分中文编码的方法是高字节的最高位不为0。按照程序员的称呼,GB2312GBKGB18030都属于双字节字符集 (DBCS)

有的中文Windows的缺省内码还是GBK,可以通过GB18030升级包升级到GB18030。不过GB18030相对GBK增加的字符,普通人是很难用到的,通常我们还是用GBK指代中文Windows内码。

这里还有一些细节:

GB2312的原文还是区位码,从区位码到内码,需要在高字节和低字节上分别加上A0

DBCS中,GB内码的存储格式始终是big endian,即高位在前。

GB2312的两个字节的最高位都是1。但符合这个条件的码位只有128*128=16384个。所以GBKGB18030的低字节最高位都可能不是1。不过这不影响DBCS字符流的解析:在读取DBCS字符流时,只要遇到高位为1的字节,就可以将下两个字节作为一个双字节编码,而不用管低字节的高位是什么。

2UnicodeUCSUTF
前面提到从ASCIIGB2312GBKGB18030的编码方法是向下兼容的。而Unicode只与ASCII兼容(更准确地说,是与ISO-8859-1兼容),与GB码不兼容。例如字的Unicode编码是6C49,而GB码是BABA

Unicode也是一种字符编码方法,不过它是由国际组织设计,可以容纳全世界所有语言文字的编码方案。Unicode的学名是"Universal Multiple-Octet Coded Character Set",简称为UCSUCS可以看作是"Unicode Character Set"的缩写。

根据维基百科全书(http://zh.wikipedia.org/wiki/)的记载:历史上存在两个试图独立设计Unicode的组织,即国际标准化组织(ISO)和一个软件制造商的协会(unicode.org)。ISO开发了ISO 10646项目,Unicode协会开发了Unicode项目。

1991年前后,双方都认识到世界不需要两个不兼容的字符集。于是它们开始合并双方的工作成果,并为创立一个单一编码表而协同工作。从Unicode2.0开始,Unicode项目采用了与ISO 10646-1相同的字库和字码。

目前两个项目仍都存在,并独立地公布各自的标准。Unicode协会现在的最新版本是2005年的Unicode 4.1.0ISO的最新标准是10646-3:2003

UCS规定了怎么用多个字节表示各种文字。怎样传输这些编码,是由UTF(UCS Transformation Format)规范规定的,常见的UTF规范包括UTF-8UTF-7UTF-16

IETFRFC2781RFC3629RFC的一贯风格,清晰、明快又不失严谨地描述了UTF-16UTF-8的编码方法。我总是记不得IETFInternet Engineering Task Force的缩写。但IETF负责维护的RFCInternet上一切规范的基础。

3UCS-2UCS-4BMP

UCS有两种格式:UCS-2UCS-4。顾名思义,UCS-2就是用两个字节编码,UCS-4就是用4个字节(实际上只用了31位,最高位必须为0)编码。下面让我们做一些简单的数学游戏:

UCS-22^16=65536个码位,UCS-42^31=2147483648个码位。

UCS-4根据最高位为0的最高字节分成2^7=128group。每个group再根据次高字节分为256plane。每个plane根据第3个字节分为256 (rows),每行包含256cells。当然同一行的cells只是最后一个字节不同,其余都相同。

group 0plane 0被称作Basic Multilingual Plane, BMP。或者说UCS-4中,高两个字节为0的码位被称作BMP

UCS-4BMP去掉前面的两个零字节就得到了UCS-2。在UCS-2的两个字节前加上两个零字节,就得到了UCS-4BMP。而目前的UCS-4规范中还没有任何字符被分配在BMP之外。

4UTF编码

UTF-8就是以8位为单元对UCS进行编码。从UCS-2UTF-8的编码方式如下:

UCS-2编码(16进制) UTF-8 字节流(二进制)
0000 - 007F 0xxxxxxx
0080 - 07FF 110xxxxx 10xxxxxx
0800 - FFFF 1110xxxx 10xxxxxx 10xxxxxx

例如字的Unicode编码是6C496C490800-FFFF之间,所以肯定要用3字节模板了:1110xxxx 10xxxxxx 10xxxxxx。将6C49写成二进制是:0110 110001 001001, 用这个比特流依次代替模板中的x,得到:11100110 10110001 10001001,即E6 B1 89

读者可以用记事本测试一下我们的编码是否正确。

UTF-1616位为单元对UCS进行编码。对于小于0x10000UCS码,UTF-16编码就等于UCS码对应的16位无符号整数。对于不小于0x10000UCS码,定义了一个算法。不过由于实际使用的UCS2,或者UCS4BMP必然小于0x10000,所以就目前而言,可以认为UTF-16UCS-2基本相同。但UCS-2只是一个编码方案,UTF-16却要用于实际的传输,所以就不得不考虑字节序的问题。

5UTF的字节序和BOM
UTF-8
以字节为编码单元,没有字节序的问题。UTF-16以两个字节为编码单元,在解释一个UTF-16文本前,首先要弄清楚每个编码单元的字节序。例如收到一个Unicode编码是594EUnicode编码是4E59。如果我们收到UTF-16字节流“594E”,那么这是还是

Unicode规范中推荐的标记字节顺序的方法是BOMBOM不是“Bill Of Material”BOM表,而是Byte Order MarkBOM是一个有点小聪明的想法:

UCS编码中有一个叫做"ZERO WIDTH NO-BREAK SPACE"的字符,它的编码是FEFF。而FFFEUCS中是不存在的字符,所以不应该出现在实际传输中。UCS规范建议我们在传输字节流前,先传输字符"ZERO WIDTH NO-BREAK SPACE"

这样如果接收者收到FEFF,就表明这个字节流是Big-Endian的;如果收到FFFE,就表明这个字节流是Little-Endian的。因此字符"ZERO WIDTH NO-BREAK SPACE"又被称作BOM

UTF-8不需要BOM来表明字节顺序,但可以用BOM来表明编码方式。字符"ZERO WIDTH NO-BREAK SPACE"UTF-8编码是EF BB BF(读者可以用我们前面介绍的编码方法验证一下)。所以如果接收者收到以EF BB BF开头的字节流,就知道这是UTF-8编码了。

Windows就是使用BOM来标记文本文件的编码方式的。

6、进一步的参考资料
本文主要参考的资料是 "Short overview of ISO-IEC 10646 and Unicode" (http://www.nada.kth.se/i18n/ucs/unicode-iso10646-oview.html)

我还找了两篇看上去不错的资料,不过因为我开始的疑问都找到了答案,所以就没有看:

"Understanding Unicode A general introduction to the Unicode Standard" (http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&item_id=IWS-Chapter04a)
"Character set encoding basics Understanding character set encodings and legacy encodings" (http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&item_id=IWS-Chapter03)

 

时间

PP : 可是时间可以拿来做什么呢?呵呵
Me:时间不是做的,而是干的。青春呀!
PP:汗……做和干不一样吗?
Me:语气不同,心态不同!
Me:坐着做着时间就没有了!
Me:敢着干着时间就充裕了!
Me:而且是属于自己的时间。
 
 
 

Life is not easy to stand.

Too much things happening in this month, I am so glad to know the fact : "Life is not easy and I have to try my best.".
All the things happens, I think that I am a lucky dog with a group of good friends.
However, I can not push my luck, for I know I am only a small boat.
It is too hard for me to sail on the terrific oceans and seas, I have to take care of myself.
Keep an active eye to the changable world.
Thanks all, thank my dear friends who helped me to pass over this darkest period.
Thanks, thank you, My dear buddies and sisters, thank you my friends.
I will try my best to be mature, I won't let you down, my family.
Stay foolish, stay hungry.Stay active and passive.

Swim and English--the 2 I love most.

Swim and English

Author: Adam Zhang

Just as Karl Marx said: “All common things in the world have relationships between each other.”  And Today, I will show you the relationship between swim and English---the 2 I love most.

 

Swim is a skill of sport; English is an ability of communication.

 

There are different styles of swim: breaststroke; backstroke; butterfly and etc;

There are distinctive accents of English: British; American; Indian and so on.

 

It is hard to take a breath in the water;

It is not easy to answer a question in English.

 

Rhythm and co-ordination is very important to swim;

Intonation and grammar is the key to English.

 

Swim lets you enjoy yourself in the water;

English makes you meet friends in the world.

 

With swim, you gain a strong body and can survive in the southern flood;

With English, you win a huge opportunity and can thrive in the outsourcing field.

 

For learning, coaches raise you up to an excellent swimmer;

Teachers bring you up to an erudite linguist.

 

Fish swim; British speak (English).

 

For us Chinese, at first most of us take that there is no environment as an excuse. However, we can win the Gold of swim in the Olympics, so trust that, hold the excellent English is not a dream!

 

To learn to swim, we change the plain ground to a swimming pool; imagine we were in water to learn and practice the action; and finally, feel the improvement of our swimming ability, and then next improved round.

For English, it is the same, change our common room to a language laboratory; imagine speaking to a foreigner when talking against the wall; feel the achievement of our English.

Imagine, change and feel. This is a running circle. Besides Testing Career, swim and English—they are almost the same.

(Note: This is the passage I used in the final match of the 3rd English Contest, however, the passage is a little longer, sorry to lose completing it on time. Keep on and come on.)

----Swallow my pride, prove my worth and start again and again. 

Imagine, change and feel about testing career.

Imagine, Change and feel about testing career

Author: Adam Zhang

 

There are 3 words which are providing me much more than I expected; they are imagine, change and feel—these three great words give me more and more passion in my daily life. Finally they made me to love my career as a tester deep inside every cell of my body.

 

Imagine is a verb about future, for it paints a brilliant and glorious picture of my life.

Imagine is a verb about sightseeing, for it changes different offices into the beautiful scenic spots.

Imagine is a verb about imagination, for you can imagine all the things in this imaginative world.

 

Change is a verb about attitude, for it changes our female colleagues’ attitude about bugs, they love bugs instead of avoiding bugs. When they come across with a bug, maybe they are also scared enough to shout, however, they shout like “Wow, golden beetles” instead of sharp voice “Help!”

Change is a verb about life, for it changes the lives of people who are willing to start their career; it changes the bachelors’ bachelor status.

 

Feel is a verb about collection, it get the results of imagination and change together. Feel as you imagine; feel as you change; feel as your clients feel; …Finally, feel the happiness in your success and feel the success in your happy life.

 

Let’s take I-phone as an example, its success does not depend on Technology, however, i-phone is the beautiful and wonderful kid of these 3 words—imagine, change and feel: Imagine a new model; change the operation and feel the wonderful feelings of cell phone both by the developers and users. Feel and enjoy; and then imagine and change again.

(Note: This is my passage in the trial match of 3rd English Contest of Beyondsoft and also a summary of my test career in the past 2 years.) 

两年来对北京的感受.

转眼间,时光飞逝,来北京的日子已经两年多了,细细想来,感慨颇多,多少人来人往,多少悲欢离合,化入时间的隧道,转成记忆的思绪.
人们希望来北京,美其名曰"北漂", 初来北京时感叹楼宇的繁华,人才的荟萃,而现在已经不记得当时为什么来北京了
,
只是红楼的记忆犹在,未名湖畔碧波柳绕,而给自己记忆和怀念最多的就是内心的那份心情与心态.不知为何?越来越对北京失去了激情,多了几分铜臭与成熟.一直不想变的我也在岁月的蹉跎中慢慢变化.寂静中抚慰自己的胸膛, 感到那颗心依旧在血液的澎湃中伴着音符跳跃,甚慰.

Daylight saving time in 2007.

The U.S. Energy Policy Act of 2005, passed by the U.S. Congress July, 2005, extended Daylight Saving Time (DST) in the U.S. by approximately four weeks. As a result, beginning in 2007, DST will start three weeks earlier on March 11, 2007, and end one week later on November 4, 2007, resulting in a new DST period that is four weeks longer than previously observed. These four weeks are referred to in this article as the "extended DST period". Visit MSN Encarta for more general information on DST.

Change in daylight saving time:
Previously DST started on: With the new law, DST will start on: Previous DST ended on: With the new law, DST will end on:
First Sunday of April Second Sunday of March Last Sunday of October First Sunday of November
Would have been: April 1, 2007 Will now be: March 11, 2007 Would have been: October 28, 2007 Will now be: November 4, 2007

Unless certain updates are applied to your computer, it is possible that the time zone settings for your computer's system clock may be incorrect during this four week period. This depends on where you live and which time zone you have selected. To see the time zone settings on your computer, follow these directions.

When your time zone settings are incorrect your clock may be off by one hour, and certain applications running on your Windows based computer may not display the correct time. To address this, Microsoft is providing many free updates and tools that will update your system automatically.

While the change in daylight saving time applies to U.S. and Canada, the change may impact customers based outside North America. Companies or organizations with operations, customers or vendors based in North America may be affected. In addition customers who interact or integrate with systems that are based in North America or rely on date/time calculations may be impacted. Customers who live outside North America and yet are impacted should follow the guidance provided on this site to prepare for the adjusted daylight saving time.

Cited from www.microsoft.com

Select your star sign, and remember the names of Zodiac.

<<中文在于体会,英文在于联想>>

 

---词根和联想在语言学习中很有用,

 

我的印度同事Vivek同样靠联想记单词:

 

How to remember the names of Zodiac: Aries(a for the first letter),Taurus(from the sound I can image how strong the man is), Gemini(double i), Cancer(for My own Zodiac and I feel angry about another meaning of cancer and then remember it),Leo(for the soldier's name 艾奥利亚 ), Virgo(for virgin), Libra( this is from bra link with its two shields), Scorpio(remember it by mind), Sagittarius( horse and people so it is the longest word in Zodiac, and S for shoot ,tarius link to Taurus cow with horse ),Capicron( the sheep need corn under the cap),Aquarius(qu from liquid),Pisces( Ph for f and then you can translate it to fishes), that is great, after this imagination in one night, I remember these words in my heart!That is great!

 

If you were born on the first or last day of a Sun sign, in astrological terms you were born on a cusp. If that's the case, you will probably benefit from reading your own Sun sign and the Sun sign that ends or begins right before or after your date of birth. For example, if your birth date is 22 December, your Sun sign is Capricorn, but you probably have some Sagittarian traits as well.

BTW, there is a very good dictionary <<Word Power Made Easy>>,  try your best to use this book.

2006年的一些高兴事.

2007的钟声已经在身后飘荡, 春节的脚步不断临近, 毕业一年多了, 在这忙碌而曲折, 精彩与痛苦的2006, 我的本命年总算过去了, 双手欢送, 希望来年能够想2007一样, 我能有我妻, 在京有房, 出行有车, 过一个快快乐乐的新一年.

虽然难过的事挺多, 但在此只谈些高兴的事, 因为相信高兴更能带来高兴.事件不分先后, 随心而出.

  1. 20060606, 一个不错的日子, 而那天是我的生日, 之所以高兴,是因为我们过生日按农历不按阳历, 这种偶遇的感觉是很美妙的,而且我们项目组由于此还在九头鸟庆祝了一凡. 心里比蜜还甜.
  2. 今年买彩票总算中了大奖, 是这五年来最大的奖, 300大洋, 不多是在十一期间家里中的,兑奖是由我爸去的, 人生最大的高兴就是看着家人因自己而高兴.
  3. 离开新的部门后不久,在会议室开会时接到莫名电话, 在答道: “您好,北京博彦.”里面竟回答: “群鹤吧? , 某某吃惊的不是听出了自己的声音, 而是听出我声音的手下有二百多人的部门经理, 而我跟他接触并不多, 我在那个部门的总共时间才五个月,中间还因手术休息了一个月.
  4. 说起手术虽然是段痛苦的经历, 何况小小年纪就手术,怎么搞得? 主要是去年第一次滑雪的回馈,太投入, 摔的留下礼物. 那短短的一个月认识了很多人, 刚烈侠义的关叔叔, 乐观生活的李叔叔, 还有聪明体贴的年轻护士长和护士.手术是可怕的,比手术更可怕的是病人对手术的恐惧, 一个响当当的钢铁男子汉在这短短的一个月时间里历练成功.也让我更懂得了珍视生活的一切. 当然如果下次有机会滑雪,还是会去的, 人吗,活的是种勇敢.不能因为车祸而拒绝坐车.
  5. 几年未编程, 一个问题难的够劲, 上下求助后,高手给的答案是 我也没用过”, 经历一周的时间,自己总算成功. 一个通过读文件夹生成带复选框的动态树的操作. 反过来想想不得不佩服自己的当初的决定, 虽然没看过Java思想, 当时没有去死记那些方法,而更多的是软件思想的把握.随着语言的不断对象化, 可以说傻瓜化, 方法真的很重要. 好希望某天对着电脑喊一嗓: “生成一个操作系统安装包.”,接下来就是干其他的事情了.
  6. Google中搜到自己的名字, 是确切的自己. Google有种有骨子里的喜欢, 外表简单,内涵丰富. 我对她的想法就是希望某天能把他的搜索速度提高那么零点零零几秒.
  7. 对于自己的第一段爱情的在默默中终止,原本以为死去的心, 没想到再次因爱情而跳动,感谢那个可爱又可恨的女孩子.LLY! 之所以用可恨是因为只有经历的人才能体会.
  8. 通过MSN猜出了一个网友的名字, 而且发现很投缘, 不停的要求我叫她ouni, 一个喜欢看韩剧的丫头.
  9. 在不同项目中不断变化, 战绩还不错.上司评价较高.一句问话; “群鹤,你毕业几年了”, 对于一个刚刚毕业的人来说, 能有这样的问话,只有刚刚毕业的人才能体会到.
  10. 自己的发明创造在公司实现, 简单但饱含深意.一个厕所信息指示牌, 东西虽小,当人人每天都能看到, 也是公司希望高效的文化体现.
  11. 自己的姐姐出国生活, 总算摆脱了这个小时候老打架的家伙, 不过,常常想念她,比较出乎我的意料.
  12. 把自己的所学放在网上, 由于自动化测试人员较少,SilkTest就更少,高兴的是,回帖的人挺多.内心也默默的祝愿中国的软件快快成长.
  13. 再就是自己对英文的理解, 中文在于体会,英文在于联想. 简单举个例子,月是故乡明 and 鱼和飞鸟的距离, 前者体会的是那种相聚的氛围,后者则是联想天有多高海有多深. 

就写这么多吧, 高兴的事得偷着乐! 哈哈.展望过去,指引来年,希望自己不断腾飞. Eagle fly high in the sky!