Skip to main content

Tired Of Life

 When will this life come to an end for me? I want to know. I could plan the rest of my life accordingly if I had that answer. But I don't. There's no reason to have such an answer I understand that. But it still would be nice to know. Maybe life doesn't really exist for any of us. We are merely just pretending to be alive, in a role with billions of others. I don't understand how I can go on living. So many things have happened to me in the past, terrible incidences that I cannot erase from my memory. Yet here I am still breathing for some reason. I wish I knew what that reason was. Life is but a joke.

There are days that I want to forget. Memories I want to forget. Thoughts I want to forget. Yet they all stay with me for some reason. I don't understand why they stick with me. Always reminding me of things lost. Never reminding me of the good times, always the bad. It doesn't make sense to me. There doesn't appear to be any point to it.

I can wish all I want but it won't change anything. I'll still be here wishing. Oh life, why must you do this to me? I don't deserve any of these thoughts. I don't deserve the voices whispering in my ear, telling me to die. There's too much stress right now.

I'm tired. That's all I ever feel. Tired. Like I could take a nap for the rest of the day and be fine with that. I don't quite understand why that is. Is it the depression that surrounds me? Is it something more? What exactly is it that bothers me so much? There doesn't seem to be any way out of this mess. For I am simply lost. Unable to function fully within the confines of my own thoughts. Oh let's not even get started about thoughts. They torment me on so many levels. It sucks.

Comments

Popular posts from this blog

Suicidal Ideation

 Over the years I've had to deal with suicidal ideation. Those are thoughts of being dead, some more extreme than others. It causes issues for me a lot of the time. It's not an easy thing to talk about at all. Here's what it is: Suicidal ideation ( suicidal thoughts )  are thoughts or ideas centered around death or suicide . Experiencing suicidal ideation doesn’t mean you’re going to kill yourself, but it can be a warning sign.

Ever Wonder

 Ever just sit and wonder about the things to wonder about? There are so many things that you can enjoy and think about or wonder about. It's just possible that you would be able to do such a thing. I'm not certain how it would go for you, as I am only a person. I don't know how you feel. So here we are, just waiting for something amazing to happen. It doesn't happen all the time unfortunately. It can be annoying at best.

Multidimensional Arrays

Ah Multidimensional Arrays. Nothing too crazy in JavaScript. Just a little bit of this and that. So typical arrays are fun and easy. You create them like so: var colors = new Array(); colors[0] = "Red"; colors[1] = "Yellow"; colors[2] = "Blue"; Well that's fine and dandy, but what if you want to associate something with each of those? For example, what if you wanted to create a menu? You'll need at minimum a link name and a target. We could do something like this: var colors = new Array(); colors[0] = new Array(); colors[0][0] = "red.htm"; colors[0][1] = "Red"; colors[1] = new Array(); colors[1][0] = "yellow.htm"; colors[1][1] = "Yellow"; colors[2] = new Array(); colors[2][0] = "blue.htm"; colors[2][1] = "Blue"; function createColors() { document.write('<ul id="colors">'); for (var i = 0; i < colors.length; i++) { var link = colors[i][0]; ...