Skip to main content

Why Must I Live

 It's the age-old question. Why must I live? What's the purpose of living anymore. Breathing in air and seeing all there is to see. What is the purpose of it all. I don't understand any of it. Why must I exist. I didn't ask to be born, I didn't ask to exist. There's nothing good about life. Everything has its way to go south and it usually does. There's no reason to live. People don't understand how tormenting this is for me. They don't get why I feel this way. I don't understand how people can just live their lives like there is nothing wrong. There are so many things wrong in this world, I can't even begin to name them all. Why can't I grasp a simple thing like existing. There seems to be too many thoughts running around in my head why I shouldn't be able to understand any of it. So, I continue to move forward. Wherever that will take me. I do not know.

Staying with a friend and his family. I feel nothing but a burden to them. There's nothing to do about it. I don't know what to do about any of it. I wish there were some way to get past this. A way to simply get what I need and cut loose. There's got to be a way to do that. So, I'm not a burden to anyone anymore. I have to figure out a way to make all of that happen. There must be a way. If I could find a way to make any of that happen, I probably wouldn't be any better off mentally. I hate my life. There's nothing I can do to make my life any better than it is right now. I need to figure out a plan. No one can know about it; they would stop me if they did. But what is it I want to do? Where will I go? How will I end up? Too many questions to things I won't ever have an answer for.

So, what happens to me?

It's a simple question, isn't it? I mean one would think so. If it's not, I need to find a different question to ask. Something with a little more meat to it perhaps. There has to be something I can do, something I can understand and seek out to simply see all that is going on. I don't believe there is a way to overcome any of this at my present condition. It's something I have to figure out by myself. No one can help me. Maybe this time things will be different. The other two times are different in the fact they didn't go through. But this time. This time is something way different.

I'm discarded, unwanted, unloved, a piece of scrap thrown to the dogs at the table. That's what I feel like right now. I had to leave; there was no staying not even another day. Your life is what you make of it. I don't quite understand how to make my life anything. I'm lost in that department. There's nothing out there to make me believe or think something of worth is really out there. I have no worth left in me. I am nothing, a nobody. What is wrong with me?

I would like to think there is something out there for me. Someone I can have a relationship that will last. I don't know how to make any of that work though. There doesn't seem to be a simple place where I am able to do what it is I need to do. I'm a stranger, lost, alone, and confused. There doesn't seem to be a place for me to lay my head where I don't feel like a burden to anyone. If I could figure out what to do, where to go, and how to do it; I think I would be better off. But for now, I am just lost.

Don't worry about me. I always say. I'll figure it out someday. There's nothing to worry about. Nothing a sharp knife can't handle. An overdose of medicine maybe. Harmful poisons, yes those are all possible. There's one problem with that plan. I'm too chicken to do it. So that won't be happening. I need to be able to find a way to get out of this life peacefully. Something I can handle, something that will help me. Anything that will simply make this life look not as bad, is that possible?

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]; ...