Archive for April, 2007

April 30th, 2007

新 Office…

搬搬搬!

仍然係橙同藍…

April 29th, 2007

Free 2Gig Online Backup Storage for Mac

mozyo係 Leopard 既 Time Machine 未有得用之前,Mozy 會係一個唔錯既 service…

唔使錢,2G space,有埋 software 做 backup,sounds good, right? 不過我係怕我自己條 network connection 慢傘…

April 29th, 2007

We are moving again~~~

衣兩個星期可真忙到隻”即”咁… (哈,我好似一向都係隻”即”)

Old Logo

April 25th, 2007

小孩子,成長吧。

快要年過三十… 感覺還是浮沉不定迷網

老毛病令身心再次受創滲血恢復過來… 再次受創滲血

走在這人生大路上,我學習了些什麼?

思考著… 為著一些本以為理所當然的事情而煩惱,可悲

不得不引用卡通片中時常聽到的名句… 「你o也衣班愚蠢既人頪!」

小孩子,成長吧。

April 20th, 2007

Java – Back to Basic: Class Initialization

Following demonstrate the class initialization sequence & behavior:

Helper Class
public class Helper {
{
System.out.println(“And I am a instance init block”);
}

static {
echo();
}

public Helper() {
}

public static void echo() {
System.out.println(“I am a helper class which run once”);
}

public static void sayHi() {
System.out.println(“Hi”);
}

public static void sayNo() {
System.out.println(“No”);
}
}

If I call the following statement from another class:
new Helper();
new Helper();
Helper.sayHi();
Helper.sayNo();

The output is as below: