Skip to main content

Anxiety VS Human

 Waking up every morning and going through the routine is getting tiresome. Having anxiety on top of it just makes it worse. Will today be a good day? Will it be an eventful day? A meaningful day? I don't know but I must know. It's like someone shut me in a room and locked the door, then the door disappears, and the room is filled with people. People I don't know.

Then my mind gets overloaded with things. Thinking about the future, where I'll live. How I'll live and get around. I feel doomed to repeat this vicious cycle over and over again. It doesn't make sense to me. This life just doesn't make any sense to me at this time. I wish it would, but it doesn't. I want to scream and yell and just shout at the world. Things are not getting better.

I feel abandoned by family. I get it; I'm a burden they don't want around. No one wants a burden around them. It's that simple. So why bother with it? Why bother with any of it. There's no point in wondering if I'll ever be able to live with them. They said no. So that's it. No further explanation needed. Message received.

I want to die. This isn't just wishful thinking. It's a fact. I don't want to live anymore. I'm ready to go to wherever you go when you pass away. There's no point in living this life anymore. It doesn't make sense I know, but it makes sense to me in my own mind. All of the answers are there. There doesn't appear to be any other answers, no more questions. It is all a waste of energy to try and think it through. I just want to die.

People won't understand my request. They wouldn't understand if I did die. I'm too young, they would say. Death is for old people. Things like that. I don't blame them for thinking that way. I of course am guessing at how they would react. There's no way of telling how they will respond. Wait, am I talking about what I think I'm talking about? Oh dear, that's not good. But I must.

There is no other way about it.

Everything needs to change somehow. I can't do it on my own. There's got to be help out there somewhere. I just don't know where to find it. So many things in this world don't make sense and we are here trying to live life to the best we can. Living that life doesn't mean it's easy though. Sometimes it's downright hard and difficult. I hate it. I hate it all. Yet I must endure. If I had the knowledge that I need to have, I wouldn't be in this problem. There's no way out right now. I can feel it.

Life needs to slow down for a moment so I can catch my breath. It's moving too fast, I don't know where I'm headed right now. I don't know where I'm going. Eventually I'll have to find something. Anything to get me out of here. Out of this life. There has to be a way to escape from here, right? If not, then I'm just messed up without a way to do anything. I don't like the thought of that. No one can tell me otherwise. It's already in my mind. It's too late to do anything about it.

Oh my.

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