Skip to main content

18th Floor Balcony: Blue October

I lost of piece of me in you,
I think I left it in your arms.
I forget the reasons I got scared.
But remembered that I cared quite a lot.

You see but lately I've been on my own
Yeah one, but one by choice.
You see that's a first for me
This only me.
Yeah, There's only me.
And now I realize, for once,
It's just me.
It's just me.
It's just me and I'll find a way to make it.
There's no one left to stop me.
Here I go, can we take it
From the top.

So wide,
So long,
So sad I wanna be strong.
Don't try to take this from me.
I've already spent living half my life undone.
So wide,
So long,
So sad I wanna be strong.
Don't try to take this from me.
I've already spent my life living half undone.

I've been talking to my aunts and uncles
Mon and dad again.
I've been finding out that I have what this world has called friends.
I've tried to push them all away.
They push me back and wanna stay,
And that's one good thing I have.

I'm gonna feel a peace in me,
I'm gonna feel at home.
I'm gonna make this cloud above me disappear, be gone!
I wanna feel a punch inside my heart beat on the floor.
I don't wanna hurt no more.

Yeah it's just me.
It's just me and I'll find a way to make it.
There's no one left to stop me.
Here I go, can we take it
From the top.

So wide,
So long,
So sad, wanna be strong.
Don't try to take her from me,
I've already spent my life living half undone.
So wide,
So long,
So sad I wanna be strong.
Don't try to take her from me,
I've already spent my life living half undone.

It's me, the one who won before.
I used to smile, but don't no more.
I'm living just to watch it all go by.

Comments

Popular posts from this blog

XAMPP: Couldn't start MySQL!

XAMPP: Couldn't start MySQL! Trying to run mysql on ubuntu 10.10 and give this vauge error "XAMPP: Couldn't start MySQL!" Try this 1. Open a terminal. 2. run this command sudo chown -hR root /opt/lampp 3. then run this sudo chmod -R 777 /opt/lampp 4. Now Restart XAMPP sudo /opt/lampp/lampp restart U are all set. And if u r getting the follwing warning after restarting "Warning: World-writable config file ‘/opt/lampp/etc/my.cnf’ is ignored" 1.Open terminal 2.Migrate to /opt/lampp/etc 3.run the command sudo chmod 755 my.cnf

Difference between is_file and file_exists

If you want to know that the argument supplied is a file or not use is_file() file_exists() will take both file and directory as input and return true if they exists. So, unless you specifically want to check if the argument passed is a file use is_file otherwise use file_exists()