Difficult...
I find out all things coming right now, is difficult...
Making my mood right now, very bad...
That feeling is felt so so bad, hard to explain...
Don't know what to do, just wait to be all right...
With a damp hungry stomach...
Pageviews last month
Sunday, 9 September 2012
Friday, 24 August 2012
Sunday, 12 August 2012
X sleep
Again, I having trouble to get sleep...
Already 5 hours I lay down on this bed....
Argh.... I was soo tired at this moment....
Pls give me a proper sleep my lord.....
Saturday, 4 February 2012
birthday...
Again, this year has nobody wish me for birthday...
Mom, too busy for her up coming niece...
Dad, always forget...
Brother, busy for new work...
I purposely remove my birthday on facebook...
As my predict, nobody wishes me birthday on my status...
I m just want to finding my value in among family and friend...
Finally, the outcome making me so down....
Anyway, what I m want to say is,
I m still here waiting for your wish...
You are the only 1 I care...
Again, this year has nobody wish me for birthday...
Mom, too busy for her up coming niece...
Dad, always forget...
Brother, busy for new work...
I purposely remove my birthday on facebook...
As my predict, nobody wishes me birthday on my status...
I m just want to finding my value in among family and friend...
Finally, the outcome making me so down....
Anyway, what I m want to say is,
I m still here waiting for your wish...
You are the only 1 I care...
Monday, 23 January 2012
As I m growing UP...
Feeling made human amazing and being special...
As we get older, all feeling changed...
What suppose to be happy, become normal instead of happy...
And the same goes to others feeling...
Is it humanity gonna disappears? I don't know...
Today, is the "big day", as I m a Chinese....
It's our Chinese New Year...
But now, I m writing my blog here...
I m going to say about my feeling, happy/sad/excited?
But can you imagine?
Anyway, I m still working hard finding the happy of me....
Feeling made human amazing and being special...
As we get older, all feeling changed...
What suppose to be happy, become normal instead of happy...
And the same goes to others feeling...
Is it humanity gonna disappears? I don't know...
Today, is the "big day", as I m a Chinese....
It's our Chinese New Year...
But now, I m writing my blog here...
I m going to say about my feeling, happy/sad/excited?
But can you imagine?
Anyway, I m still working hard finding the happy of me....
Sunday, 15 January 2012
2012, my 1st post...
New year, new year, new year...
It seem like a change, but it doesn't seem going good...
I just feels that something more worst going to happen...
I think, maybe my dump brain short circuit...
I will still keeping my finger cross to god,
Hoping for a brand new life, ++good life...
New year, new year, new year...
It seem like a change, but it doesn't seem going good...
I just feels that something more worst going to happen...
I think, maybe my dump brain short circuit...
I will still keeping my finger cross to god,
Hoping for a brand new life, ++good life...
Saturday, 31 December 2011
Tuesday, 27 December 2011
I'm Still Loving You...
When I close my eyes I think of you.
And the time we've had been through
Even through were far apart right now
I remembered back when you were here with me
How you've made my world complete
But now I'm left alone
We talked about love and hope
Wishing we could start a life our own
I wish that I could live without you.
Why did you tear my heart apart
You said you love me from the start
All those painful things you put me through
But I'm still loving you
I tried to give my best to you
I don't deserve the things you do
Everything has gone to memories
I just wish that I knew the truth behind the lies.
When I close my eyes I think of you.
And the time we've had been through
Even through were far apart right now
I remembered back when you were here with me
How you've made my world complete
But now I'm left alone
We talked about love and hope
Wishing we could start a life our own
I wish that I could live without you.
Why did you tear my heart apart
You said you love me from the start
All those painful things you put me through
But I'm still loving you
I tried to give my best to you
I don't deserve the things you do
Everything has gone to memories
I just wish that I knew the truth behind the lies.
Friday, 23 December 2011
Suffering(6 months)...
I know, I should study...
I know, I should sleep...
I knows, I shouldn't starring laptop 24-7...
I knows, I shouldn't dota, dota and dota again...
Actually, while dota-ing, I didn't enjoyed at all...
Doing that, is to tell meslef that I m happy,
Doing this, is just finding some reasons for myself as well,
For not to holding the books,
For failing my tests,
For being not perfect...
To feels better...
To feels better...
Tuesday, 20 December 2011
My New Baby of C Programming...
//Dream Cruise Holiday Company
//To calculate total cost for each customers
#include <stdio.h>
#include <conio.h>
int selection();
void showMenu();
int main(void)
{
int command, cost=0, meal;
showMenu();
do{
cost+=selection();
printf("Any other order, Sir.\nYES>>1 NO>>0\n>>");
scanf("%d",&command);
}while(command==1);
printf("Do you want to purchase meal vouchars, sir?\n");
printf("Enter amounts of meal vouchers>> RM");
scanf("%d",&meal);
cost+=meal;
printf("\nTotal of this transaction is RM%d.", cost);
printf("\n\nThank You For Purchasing Our Service.");
printf("\nHave a nice day...");
getch();
return 0;
}
void showMenu()
{
printf("Dream Cruise Holiday Company\nPrice List>>\n\n");
printf("Normal Price>>\nAdult:RM200 Child:RM140\nOrder Code: 1\n\n");
printf("Family Package>>\n2 Adults and 2 children only.\nAt only RM600.\nOrder Code: 2\n\n");
printf("Group Travel Package>>\n10 people whose travel together\nCost only RM1800 (save
RM200).\nOrder Code: 3\n\n");
}
int selection()
{
int nA, nC, nFP, nGP, order_code, cost;
do{
printf("Please enter your order code>>");
scanf("%d",&order_code);
switch(order_code)
{
case 1: printf("Enter the no. of adult>>");
scanf("%d", &nA);
printf("Enter the no. of child>>");
scanf("%d",&nC);
cost=(nA*200)+(nC*140);
break;
case 2: printf("Enter the no. of family package>>");
scanf("%d",&nFP);
cost=nFP*600;
break;
case 3: printf("Enter the no of group package>>");
scanf("%d",&nGP);
cost=nGP*1800;
break;
default: printf("You have entered an invalid code, please try again.\n");
}
}while(order_code>3);
return cost;
}
//Dream Cruise Holiday Company
//To calculate total cost for each customers
#include <stdio.h>
#include <conio.h>
int selection();
void showMenu();
int main(void)
{
int command, cost=0, meal;
showMenu();
do{
cost+=selection();
printf("Any other order, Sir.\nYES>>1 NO>>0\n>>");
scanf("%d",&command);
}while(command==1);
printf("Do you want to purchase meal vouchars, sir?\n");
printf("Enter amounts of meal vouchers>> RM");
scanf("%d",&meal);
cost+=meal;
printf("\nTotal of this transaction is RM%d.", cost);
printf("\n\nThank You For Purchasing Our Service.");
printf("\nHave a nice day...");
getch();
return 0;
}
void showMenu()
{
printf("Dream Cruise Holiday Company\nPrice List>>\n\n");
printf("Normal Price>>\nAdult:RM200 Child:RM140\nOrder Code: 1\n\n");
printf("Family Package>>\n2 Adults and 2 children only.\nAt only RM600.\nOrder Code: 2\n\n");
printf("Group Travel Package>>\n10 people whose travel together\nCost only RM1800 (save
RM200).\nOrder Code: 3\n\n");
}
int selection()
{
int nA, nC, nFP, nGP, order_code, cost;
do{
printf("Please enter your order code>>");
scanf("%d",&order_code);
switch(order_code)
{
case 1: printf("Enter the no. of adult>>");
scanf("%d", &nA);
printf("Enter the no. of child>>");
scanf("%d",&nC);
cost=(nA*200)+(nC*140);
break;
case 2: printf("Enter the no. of family package>>");
scanf("%d",&nFP);
cost=nFP*600;
break;
case 3: printf("Enter the no of group package>>");
scanf("%d",&nGP);
cost=nGP*1800;
break;
default: printf("You have entered an invalid code, please try again.\n");
}
}while(order_code>3);
return cost;
}
Sunday, 18 December 2011
Friday, 16 December 2011
Is person who you're eating with...
McD, I had you for so long time,
Finally, today I can have a McD french fries again...
And, I realized the taste wasn't same as before...
Not so delicious...
May be, the fries served not fresh..
I m a bit disappointed and starred at my friends...
"Is it okay?" I m asking...
"It's normal....", they are eating unstoppable...
Sometimes, it taste nice, is just because of a person....
McD, I had you for so long time,
Finally, today I can have a McD french fries again...
And, I realized the taste wasn't same as before...
Not so delicious...
May be, the fries served not fresh..
I m a bit disappointed and starred at my friends...
"Is it okay?" I m asking...
"It's normal....", they are eating unstoppable...
Sometimes, it taste nice, is just because of a person....
Thursday, 15 December 2011
Complex Life...
In real numbers, i, doesn't make sense...
i=surd(-1), something impossible 4 REAL...
Same to our life, not every "why" have the answer...
So, you shouldn't asking "y" anymore...
Maybe, "y" just don't exists...
Or, the answer maybe "x"...
(Doesn't make sense)
Try and learn to accept,
what life gave to you...
In real numbers, i, doesn't make sense...
i=surd(-1), something impossible 4 REAL...
Same to our life, not every "why" have the answer...
So, you shouldn't asking "y" anymore...
Maybe, "y" just don't exists...
Or, the answer maybe "x"...
(Doesn't make sense)
Try and learn to accept,
what life gave to you...

