Monday, October 30, 2006

My daily routine

One of my co-workers in the US was asking me about how was my work and daily routine was lately. So I replied with a simple code snippet blow for laugh:



void wow(boolean raid, boolean pvp){
if (raid){
raid();
}else if (pvp){
pvp();
}else{
farmMats();
}
}
void myDailyFunction(){
int wowVariable = 0;

work();
dinner();

if (Today >= Sunday && Today <= Thursday){
wowVariable = 1;
}else{
wowVariable = rand(0,2);
}

if (wowVariable == 1){
wow(true,false);
}else if (wowVariable == 2) {
wow(false,true);
}else{
wow(false,false);
}

sleep();
myDailyFunction();
}
void main(){
myDailyFunction();
}

Wednesday, October 11, 2006

Quote of the moment

All paid jobs absorb and degrade the mind. - Aristotle

Personally, I have nothing against work, particularly when performed, quietly and unobtrusively, by someone else. I just don't happen to think it's an appropriate subject for an "ethic." - Barbara Ehrenreich