Skip to main content

I Feel Worthless

 I'm feeling worthless lately. There's no reason for me to feel this way, yet I feel it. My mind is shouting at me to do things. Things I don't want to do. Things I shouldn't do. There are so many things that I feel the urge to do, it's weird. But I can't do it. Ending my life is not an option. God has to take me out of this life. There's no other way. So let the voices be damned. I don't want to live anymore. I feel like that's me talking not the voices. That scares me. Is that really something I want? I don't know.

My mind feels so fragile right now. There are so many thoughts and feelings that I don't know what to do with. I wish I could figure this all out, but I don't know where to begin. I feel like I'm a mess. Wanting to die isn't new. It's a wish I've had for years now. At least since 2020 when everything started just going downhill for me mentally. That's when I was misdiagnosed with schizoaffective disorder. Does that make me crazy? I hope not. Am I just a human trying to live? I think so. Life is so complex.

Wishing I was dead is just a deeply rooted feeling I have. I don't know what to do about it. I need to find something worth living for. Too many thoughts this morning to control. I don't know what to do about any of them. Oh, there are the voices again. They're always around to keep me company. I'm never alone because I have them. They aren't nice though. They are rather mean. I don't like when they're mean. They get angry and tell me to do things. Things I don't like. So, I try my best to ignore them. There's no reason to let them free. They are just angry little hobos without any hope of survival.

Nobody has time for voices talking in their ears. Telling them to do things to themselves and whatnot. Really no one has time for any of that. So why do I allow them to talk down to me? Why do I allow them to walk all over me? It's a constant fight to be able to get free from it all. I don't know how to do it. I'm sure there has to be a way to do it, but I just don't know what that way is.

Do you know how difficult it is to have these voices always tearing into you? They say the meanest of things. Always putting me down. Never giving me a chance to breathe. I know my mind is making them up, but I don't know how to stop them. I don't want to live anymore. There's no point in it. I wish I were dead.

I feel so alone. I don't like this feeling. There must be another way to not feel alone. There's got to be something I can do, anything I can do to make me feel not alone. I wonder what that way is. Is there a simple way to make this happen? I do not know. I wish I could figure it out quick. Without this I am lost. Being lost and alone and afraid are all things that make me sad. There's no reason to live anymore. There really isn't.

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