jindou's profilehappy all daysPhotosBlogListsMore Tools Help

happy all days

快乐工作 + back to school + 边走边唱

jindou jiao

Occupation
Location
天空没有翅膀的痕迹,而我却已经飞过
Please wait...
Sorry, the comment you entered is too long. Please shorten it.
You didn't enter anything. Please try again.
Sorry, we can't add your comment right now. Please try again later.
To add a comment, you need permission from your parent. Ask for permission
Your parent has turned off comments.
Sorry, we can't delete your comment right now. Please try again later.
You've exceeded the maximum number of comments that can be left in one day. Please try again in 24 hours.
Your account has had the ability to leave comments disabled because our systems indicate that you may be spamming other users. If you believe that your account has been disabled in error please contact Windows Live support.
Complete the security check below to finish leaving your comment.
The characters you type in the security check must match the characters in the picture or audio.
夜 千wrote:
好久不见了~最近都快忙疯了,突然很想回学校读书,什么都不用发愁,只要念好书就可以过的很潇洒!
-_-"好想出去旅游啊~
Apr. 10
剑峰 沈wrote:
I found that you are full of wisdom, knowledge and philosophy!
Apr. 7
jindou jiaowrote:
thanks for visiting!
just recording my life, my emotion and what i thought
sharing all the happiness and the gloominess with u, all my dear friends, is the greatest pleasure of me. 
thanks a lot
June 3

Definition mistake

 
Even it is a definition mistake, it is a critical mistake.
 
Found an issue in our testing framework. fixed it by a shortcut.
 
Need more effert understanding the whole structure...
 
ps: Perforce is powerful.....
 
 
anyway, have a good long weekend;)
 
 
 
 

Wise Words

"Woman was created from the rib of man: Not from his head to be thought of only, nor from his hand to be owned, nor from his foot to be beneath, but from under his arm to be protected, from his side to be equal, and from his heart to be loved.."  Author Unknown



Taskbar

  Professional ;p



Nothing changed...

Zhi ni zhe wo ye...




from BB

The first time try to access space from BB...

Life goes well without Internet (litmited access)
Simple, healthy, and relax=)

welcome back


after one week off, i came back at work again






JavaOne 2009

 
so glad i got to attend JavaOne this year:-D
 
did find some fun stuff, hehe, its really good to keep an eye open for new things and keep learning.
 
Seems all new things are trying to make our world earier to go.... APIs can do anything for you o.O
 
So many different kinds of code generators, so many script languages....
 
Thinking about try Zembly which can be used for making social applications before need to pay for using it, and also birt, a report creater, has Eclipse plugin
 
Found the company providing Conference, the enterprise wiki we used in RIM, lol, so funny! had a nice talk with a guy there and got a chance to kno their  other products. impressive and awesome! especially the Bamboo, great integration of testing, dev, version control and code review. Oh yeah, the company is called Atlassian and located in Sydney...... like their products and gonna visit their job recruiting site, haha. Will create an account and play around with some of them, lalala They are free for 3 or less user accounts!
 
Will definitely take a look at Sun's Academic Advantage Program, they offer free online classes for students right now :D
 
I got two books for taking certified java programmer for a nice old gentleman with hella thick glasses.......
 
And JBoss, i dont have any idea about it till now..... need to check it out!
 
Summary, let me create a to-do list here:
 
                 * sun certified java programmer
 
                 * atlassian's fancy tools
 
                 * Zembly, btw, the guy did the demo there was pretty cute ;)
 
                 * JBoss
 
                 * BirtReport (compare it with ReportNG, im currently using)
 
                 * JavaFX, a script lanuage making games (or other things?)....
 
                 * iMac, damn EVERYONE is using mac rather than pc.....it is the time for changing!
 
                 * More???
 
i do hope i can access more technical session there in the following of this week?!?! Hopefully......
 
 
 
 
 
 
 
 
 
 

Aloha, hehe

 
hehe, came back from Hawaii...
 
lots of fun and lit accidents, hehe 
 
haha, jiani jump up successfully=D
 
more pics in the album, haha

Sad


Will's last day today, always feel sad about the farewell stuff....Sad
 
His farewell letter, not even titled as farewell rather than Will's contact info....

Hi all, I just wanted to leave you guys with some contact info before I left. You can reach me by email at XXX@gmail.com, and my phone number is (508) ***-8229. I had a great time here over the last year, and look forward to keeping in touch with all of you. Thanks for the good times and best of luck in the future.

 

Regards,

Will


He is a nice and shy guy. Anyway, congratulations for his graduation and best wishes for a successful future Smile

And share us his graduation traveling to Europe...







^o^


la la la..... 涨工资la Open-mouthed


modules installation

Write it down before forgetting....

Tons of different modules from CPAN will be used in the programs to implement various functions and make it easy to go, just like import libs or std packages

Rather than just importing, we still need to install them ahead of time:
       perl -MCPAN -e -shell
       install Module Name
For here, just need to follow the direction......

However, i met several different categories of errors occurred here:
#1, C compiler is definitely needed... So, if you are using cygwin, please make sure including Devel package (or at least c, gcc, etc.) while running cygwin installation setup.

#2, under some situation, auto installation doesnot work!!! maybe caused by inconsistent path or folder name...
    kind of easy to clean it up: just Manually install it!
    change path to .cpan , and tar the failed module file
    change path into it, run commend: perl Makefile.pl
                                                       make
                                                       make test
                                                       make install
    here we are! if you got make commend not found, you gotta go back to #1.... lol, infinite loop..... well, there are some times cygwin cannot be installed propried, type gcc -v to see if it is successful or not.

#3, for other errors, change the source code based on the error message.... i did it for letting the test passed, e.g. i changed the server url, cause my machine is under our enterprise domain. localhost:9000 doesnt work for me.

This is my brief summary, hope it is helpful Hot

   





Parse File Still Perl

I decided to use Perl for parsing a HTML file into several different plain txts after comparing the file operation in Java and Perl.

I still remember the pain when i was assigned to write a html parser without using any API....

Fortunately, I can solve this problem this time quite easily:)

use HTML::Parse;
use HTML::FormatText:

$plain = HTML::FormatText->new->format(parse_html($line));

Here we go..............

Further more, about mandatory option, need to use Carp and Getopt::Long
wrote one sub which works well:
sub required_option{
 my ($o,$v)=@_;
croak "Option -$o is mandatory" unless $v;
}
tip for here: dont initialize $v.... i did that, spent a several mins figure it out...

have a great long weekend Wink





Writing serious Perl


Perl's extremely flexible syntax makes it easy to write code that is harder to read and maintain than it could be...

I read a tool written in Perl and enhanced it lately.

I did a prefect job on it, however, gotta say, the beginning was painful....

For me, i just had quite limited knowledge about Perl at that time. What I knew about it is from a book called Perl in 21 days' first 5 chapters....

I referenced Perl 5 on Safari for the simple syntax, and got a useful article on line talking about the minimum about writing serious perl program....

It helped me a lot! URL: http://www.netalive.org/tinkering/serious-perl/

Essential resources: Perl Design Patterns & CPAN offical website




代码冗余

 
如果整个OO-project的代码冗余过大,除了看起来不专业,会有performance或其他的问题吗?
 
如何对已有的project进行架构优化?
 
design pattern 是在讲这个问题吗?
 
 
因为已经把lib 变成jar files, 所以,现在就只有三层,但是,Base2 这一层的class,只是部分变量值不同,大部分methods都是一样的。。。
 
 
 
 

clarification

 
r 是蕊
 
我是rong
 
hehe
 
copy right from r:)
 
呵呵。。。。 好喜欢这张奥!

 

 

Sweetie....

  

 

 

 

about hello kitty shrit

Nerdy read "Talk nerdy to me", then gave me a big hug

Professor commented on my presentation grading sheet "Cute Hello Kitty Shirt :)"

A never talked guy in the company asked me if i have a Prius because there are Hello Kitty pillows in it... while, i do have a pillow in my car but it's Mashiomaro..

hahaha






PHD comics

 
hhee, found an interesting stuff....
 

 

Egypt

 
r 昨天出发去埃及了。。。。。
 
 

品种繁多。。。

 
被问到familarity about perl, 简单的表示了一下只知道基本小语法,
 
然后被愉快的assign了一个小perl project, 先理解一下, 然后发现,根本不是我能理解的水平阿。。。。。。
 
基本用了一天时间,使其可以运行,又半天,了解下架构, 又半天小小改动一下。。。
 
搞的小兴奋,嗯,有变工作狂的潜质。。。
 
 
ps: 我发现,我有间歇性食欲旺盛。。。。。。。
 
 
 

normal days

 
life is plain.....
 
小日子算正常,呼呼的飞快地过着。。。。
 
眼看又要天热了,已经被晒黑了很多,得开始用sunblock了。。。
 
之前剪了头发,想照下来来着,除了一张blackberry的,还没照别的。。。。
 
等照了再说吧,不过快张到根以前差不多了,呵呵
 
一天到晚没干什么,没有什么成就感,但还挺茫茫碌碌的说。
 
前两天研究了一下JNI, 把java 和 C 搞到了一起, 现在可以用java 操作registry了,其他更强筋的function有待进一步探索, 感觉可参考的资料有闲
只是在看msdn, 不知道java API 会不会有帮助。。。
 
学校的事情让人烦躁,烦躁!
 
公司发布强悍业绩报告,股票升值more than 20%...... nathan开心的啊
 
但是,被告知因为budget,5月没有opening...... 哎,自相矛盾阿。。。
 
r 说她分手了,selft-recovering中,想去非洲旅行,建议她来美国啦,我们可以一起去hawaii
 
在想,是不是也应该结束现在的complexity,也去旅行下?
 
 
 
 
 
 
 

小记一笔

 
恩,还是小记一笔吧。。。。
 
it was march 24, 2009
 
 

found lots of cheaters recently

 
no. 1, google map
 
 
the first listed gas station is a CLOSED one...
i was lost in the badlands
 
no. 2, specialty bakery and cafe
soy milk is just 50 cents on the menu, but asked me for 1.75 dollars... and was told it is more expensive...
 
no.3, cosmetics sells
all of them have daughter(s), and all their daugter(s) have blemish or pimples, and daugter(s) all feel comfortable about the products they selling......
how stupid i still believe them even after i found this rule......
 
no. 4, Thai Time
 
we went there for lunch on a Monday, but they were close.... the hours on the door shows lunch just Tue - Fri......
 
 
more?!?  will see.......
 
 
 
 
 

to do list

 
1) wordpress blog site
 
2) write comments for every place i visited
 
3)
 
4)
.
.
.
.
....................
 
 
 

need more effort

 
en, 经过观察,交流,讨论,请教等一系列过程,得出结论,as a graduate student in computer science, i really need to put much much more more effort on study!
 
seriously, it gonna be happen... in other words, should be more nerdy
 
ps: nerdy kitty shot
 
 
 
愁苦死了,怎么能把照片转过来啊? windows live 整天变变变,本来在uploade的时候可以rotate的啊,现在不知道哪里去了。。。
 
之前有小斗争一下要不要自己弄下wordpress, 无奈live越来越难用,致使此议题再次解冻。。。
 
 
 
 
Photo 1 of 86