About Me
Name: Choo Teck Peng
Nick: Apple
Gender: Male
DOB: 01/02/1986
Horoscope: Aquarius
Character: LONER, Serious attitude problem, kawaii, simple-minded person that thinks too much...
Email: apple_ah@hotmail.com
Camp: Hendon Camp
Course: Weapon
Now playing - Close to You – Carpenters
>/noscript>
Why do birds suddenly appear
Every time you are near?
Just like me, they long to be
Close to you.
Why do stars fall down from the sky
Every time you walk by?
Just like me, they long to be
Close to you.
On the day that you were born
The angels got together
And decided to create a dream come true
So they sprinkled moon dust in your hair of gold
And starlight in your eyes of blue.
That is why all the girls in town
Follow you all around.
Just like me, they long to be
Close to you.
On the day that you were born
The angels got together
And decided to create a dream come true
So they sprinkled moon dust in your hair of gold
And starlight in your eyes of blue.
That is why all the girls in town
Follow you all around.
Just like me, they long to be
Close to you.
Just like me (Just like me)
They long to be
Close to you.
Wahhhhhhhhhhh, close to you.
Wahhhhhhhhhhh, close to you.
Hahhhhhhhhhhh, close to you.
Lahhhhhhhhhhh, close to you.
Chat
Wishlist
Digital Cam... to share my precious memories
My own shop... F&B... haven decide wat to sell
Travel to Japan... wan to experience the culture
Travel with parents... see where they wan go
Travel with Fey... all of us... away from busy
Bungalow... design my own interior
Enjoy the weather... sun,wind,rain,snow
Let parents retire... time to change shift
Listen to my favourite music... 24hrs
Darling... my smile FOUND
2 kids... my toys
New computer... stop hanging
Money and time... to make the above happen... =p
My Only Dear Princess
Suyun ^_^
Fey
Awyong ^_^
Bell ^_^
Cass ^_^ (Journal / Blog / Blog II )
CK ^_^
Heli ^_^
Jinglin ^_^
YingXian ^_^
Brotherhood
Ah Boy ^_^
Carp ^_^
Clement ^_^
Leslie ^_^
weesoon ^_^
weizhong ^_^
Friends
Audrey ^_^ (Blog / Workz )
38 women ^_^
Benji ^_^
Bernice ^_^ (Old / New )
BE club ^_^
Chiewwei ^_^
Deborah ^_^
Eileen ^_^
Francine ^_^
Jacintha ^_^
Jacqueline ^_^
Jazelle ^_^
Joy ^_^
Junda ^_^
Kaiwen ^_^
Leng Yeow ^_^
Nam Ngee ^_^
Pei Shan ^_^
Robin ^_^
Shuting ^_^
Vanice ^_^
Xiangying ^_^
Xiaoran ^_^
Yaoming ^_^
Yixian ^_^
Yizhao ^_^
Links
Blogger
Cute Games
Deviantart
felicia chin
Happy Tree Friends
I Love Egg
Javascript
joanne peh
Mashimaro
Mr Brown
SHE's Official Site
Zemotion
Archives
December 2004
January 2005
February 2005
March 2005
April 2005
July 2005
August 2005
September 2005
October 2005
December 2005
January 2006
February 2006
March 2006
April 2006
May 2006
June 2006
August 2006
September 2006
November 2006
December 2006
January 2007
February 2007
March 2007
April 2007
May 2007
June 2007
July 2007
August 2007
September 2007
October 2007
November 2007
December 2007
January 2008
May 2008
June 2008
July 2008
December 2008
January 2009
February 2009
March 2009
April 2009
May 2009
June 2009
July 2009
August 2009
September 2009
October 2009
November 2009
December 2009
January 2010
February 2010
March 2010
June 2010
December 2011
February 2012
hmmm... why ar? why ar?
hmmm... why you all have so much to blog? perhaps your lives are more colourful than i am ba... lol... i lead a simple life, a happy go lucky life... though i am not lucky... haiz... bought 4d on wed and the no. came out on saturday... wat the... second time liao loh... so if you wanna earn some extra buck come and find me... anyway today... oops yesterday (after 12 le) is my last day for itp... ppl itp end on either fri or sat, mine on sunday... not that i am very nice to my supervisor on wat but i took off on sat that why return a day of work to them loh... anyway if you do not noe, my itp is 6-days per week hoh... haiz... but at least i bet i get higher pay than any of the year 2... wahaha... my itp is $440/month... so i worked for 1 and a half month my pay should be $660... but guess wat my pay cheque is $1000 wor... the extra $340 is bonus... wahaha... =p not because the boss like me or wat, or i have been very very hardworking... but becoz they are a bit shorthanded... so they wan me to work part-time for them in the future... hmmm... thinking of it, it also mean that i perform rather up to standard or else y they wan me still... wahaha... i wonder y... hehe... bhb... okie not sure if this what you wish to see clem, but i will try to blog more la... very embarrassing le... keep on tag i didn't blog... aiyoyo... give me some face la, msg me privately ma... tag on me blog, let everybody noe i lazy... " ppl who are early have nothing better to do"
- apple was bored @
12:32 AM
0
Comments
//Rain/Snow effect- By Craig Blanchette Craiga.topcities.com
//Script featured on Dynamic Drive
//Visit http://www.dynamicdrive.com for this script and more
snow = true; // false-snow; true-rain
snowsym = " * " //These are the symbols for each
rainsym = " ' " //You can put images here.
howmany = 30 //How many drops/snowflakes?
/**************Do not need to change anything below***********/
if(snow){sym = snowsym; speed=1; angle=10; drops=howmany}
else{sym = rainsym; speed=5; drops=howmany; angle=6}
movex = -speed/angle; movey = speed; count = 0;
function moverain(){
for(move = 0; move < drops; move++){
xx[move]+=movex; yy[move]+=mv[move];
hmm = Math.round(Math.random()*1);
if(xx[move] < 0){xx[move] = maxx+10;}
if(yy[move] > maxy){yy[move] = 10;}
drop[move].left = xx[move]
drop[move].top = yy[move]+document.body.scrollTop;
}setTimeout('moverain()','1')}
if (document.all){
drop = new Array(); xx = new Array(); yy = new Array(); mv = new Array()
ly = "document.all[\'"; st = "\'].style"
for(make = 0; make < drops; make++){
document.write(''+sym+'
');
drop[make] = eval(ly+'drop'+make+st);
maxx = document.body.clientWidth-40
maxy = document.body.clientHeight-40
xx[make] = Math.random()*maxx;
yy[make] = -100-Math.random()*maxy;
drop[make].left = xx[make]
drop[make].top = yy[make]
mv[make] = (Math.random()*5)+speed/4;
drop[make].fontSize = (Math.random()*10)+20;
if(snow){col = 'white'}else{col = '#9999ff'}
drop[make].color = col;
}
window.onload=moverain
}
scrollText(0)
function scrollit_r2l(seed) { var msg="where ever u go, whatever u do, I will be right here waiting 4 u. Whatever it takes, or how my heart breaks, I will be right here waiting 4 u.";
var out = " oh cant u see it baby - u've got me going crazy "; var c = 10;
if (seed > 100) { seed--; var cmd="scrollit_r2l(" + seed + ")"; timerTwo=window.setTimeout(cmd,100); } else
if (seed <= 100 && seed > 0) { for (c=0 ; c < seed ; c++) { out+=" "; }
out+=msg; seed--; var cmd="scrollit_r2l(" + seed + ")"; window.status=out; timerTwo=window.setTimeout(cmd,100); } else
if (seed <= 0) { if (-seed < msg.length) { out+=msg.substring(-seed,msg.length); seed--;
var cmd="scrollit_r2l(" + seed + ")"; window.status=out; timerTwo=window.setTimeout(cmd,100); }
else { window.status=" "; timerTwo=window.setTimeout("scrollit_r2l(100)",75); } } }
timerONE=window.setTimeout('scrollit_r2l(100)',500);