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
老婆 - SHE
To my only 老婆... CHUA SOO HOON... very understanding and cute 老婆... sayang... haha... 1 more week is a month liao... time spent wif u is never enough... love to have ur presence... love to have ur company... love to hold ur hand... love to see u smilez... simply just love everything about u... okie cya later... my 老婆...
从昨天到今天 还有明天
感谢老天让你们 陪在我身边
爱的心痛的心 等待的心
因为有你们 的拥抱我很放心
当初见面的不安彼此探索
也许有点茫然迷惑
朝夕相处才发现这世界中
没有人 比你们 更懂我
朋友姐妹
都已不够来形容
我们的默契骄傲扶持与包容
老婆老婆
我们一起打勾勾
请记得约定的旅程到永久
X 2
lalalala ~~
朝夕相处才发现这世界中
没有人 比你们 更懂我
朋友姐妹
都已不够来形容
我们的默契骄傲扶持与包容
老婆老婆
我们一起打勾勾
请记得约定的旅程到永久
- apple was bored @
8:52 PM
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);