The Fastest Grave Digger in the East

Thursday, August 7, 2008

War of 3 Cubicles

The Cubicles

This is my workspace. Nice or not? ^_^

Water Park + Water War

My own water theme park. Hihihihi...


Splish splash...I'm taking a bath..


I see dead people

Mummy, I'm scared... ~


Upside Down Cube





The day my shoes got flour-ed





Eternal sunshine of a spotless cube




Labels: ,

3 Comments:

At August 8, 2008 at 2:12 PM , Anonymous Anonymous said...

Ken Leeeeeeeee..... you look so cheeky in this picture! Roger also shy shy dy.... :P

 
At August 8, 2008 at 2:50 PM , Anonymous Anonymous said...

import java.util.Calendar;
import java.util.Date;
import java.util.GregorianCalendar;
import java.util.Timer;
import java.util.TimerTask;

public class CleanUp extends TimerTask {
// expressed in milliseconds
private final static long ONCE_PER_MONTH = 1000 * 60 * 60 * 24 * 30; // Pre-define 1 mth = 30 days

public void run() {
System.out.println("Cleaning Roger cubical ...in progress...");
}

private static Date getTomorrowMorning8am() {
Calendar tomorrow = new GregorianCalendar();
tomorrow.add(Calendar.DATE, 1);
Calendar result = new GregorianCalendar(tomorrow.get(Calendar.YEAR), tomorrow.get(Calendar.MONTH), tomorrow.get(Calendar.DATE), 8, 0);
return result.getTime();
}

public static void main(String[] args) {
TimerTask cleanup = new CleanUp();
// perform the task once a month at 8am, starting tomorrow morning
// (other style are possible as well)
Timer timer = new Timer();
timer.scheduleAtFixedRate(cleanup, getTomorrowMorning8am(),ONCE_PER_MONTH);
}
}

*Just like chipsmore, kejap ada kejap takde*

 
At August 11, 2008 at 10:55 AM , Blogger Unknown said...

Did anyone notice ... the tan-skinned chap? Who is he? Scary liao! Like the prank shadow. Super Kitty must prevail!!! Go Kitty, GO!!! MEOW...

 

Post a Comment

Subscribe to Post Comments [Atom]

<< Home