Monday, March 06, 2006
i'm becoming more and more lazy to blog...less commitments less thoughts... Sometimes i really wish of my brain to be a box or something, a physical one so that i can just take out all those i dun wanna keep in my mind and really "keep' those that i want.....or rather, need. I feel so immature now. I feel like just complaining everything to someone. And the only one who might be willing and able to do so is this blog. No one bothers, at times. And even if someone bothers, its always at the wrong time, wrong situation. Don't blame me if I shoo you off many a times, cos I jolly well know that I can get real pissed off. I'd rather shoo u off then scare u off with my loud screams of anger. I can't believe myself at times, being so quiet... At the same time, I can't believe myself being so childish and noisy and mad too... who says keeping silence = observing the surroundings = mature? CRAP.I MISS AJC!!!!
posted @ 14:16
_______________________________________________________________________
function initArray(n) {
this.length = n;
for (var i =1; i <= n; i++) {
this[i] = ' '
}
}
typ = new initArray(14)
typ[0]="Here comes the rain again,"
typ[1]="Falling from the stars."
typ[2]="Drenched in my pain again,"
typ[3]="Becoming who we are."
typ[4]="As my memory rest,"
typ[5]="But never forgets what I lost."
function typewrite() {
var m = typ[current]
window.status = m.substring(0, x++) + ""
if (x == m.length + 1) {
x = 0
current++
if (current > typ.length - 1) {
current = 0
}
setTimeout("typewrite()", speed2)
}
else {
setTimeout("typewrite()", speed)
}
}
typewrite()
//-->