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
不可思议 - 金莎
歌手:金莎 专辑:不可思议 闪烁不停爱的信息 三言两语扣进心里 捂住脸呵口气 才不轻易泄露了心情 仅仅傻笑而已 也能够彻夜想你 Chorus: 爱到不可思议 创世纪到末期 不用甜言蜜语 其实我爱的 是你是你 烦恼的是我虽然很粗心 但我会很努力 爱到不可思议 越老却越美丽 牙掉了没关系 皮肤皱皱也 爱你爱你 就孩子气 这一百分的相遇 就是我和你 你的信息传个不停 随时提醒甜蜜关系 丢个硬币决定 每天应该说几遍爱你 不仅思念而已看看我 无懈的坚定 Chorus x3
- apple was bored @
3:37 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);