Skip to main content

Sometimes This Life Hurts


Let's face it, life can hurt at times. Sometimes you have to deal with voices in your head, voices outside of your head, and just voices in general. You never know what will happen if those voices stop you from doing whatever you want to accomplish. So that's what this life can be about. Does that make any sense? I sure hope it does, because I'm not sure if it does or not. There are times where I am simply not able to understand if I am understanding what's going on correctly.

Sometimes the voices don't make sense to me. I don't know what's going on with this life. If that's acceptable then that's the way, it's meant to be. Personally, I wish the voices didn't come and visit or exist at times. They come and go anytime they please. That's really all there is to it. This life will come and go as it pleases. There isn't anything we are able to do regarding it. If we had the ability to make the voices, go away completely I do believe this life would be much better. It would be nice to be able to find a way to make the voices go away. But they still want to stick around contaminating our minds with whatever there is to contaminate them with.

You see, some voices are internal others are external. For the most part I hear the internal voices. At present they are fighting among themselves. It's distracting and exhausting at the same time. Somedays you just have to recharge after a day of hearing them constantly in and out of your mind. So, I find a quiet place to be and read a book. It helps, I swear.

There are times when I'm unable to recognize what's going on. It wouldn't be me if things were different. Sometimes an audio book is helpful. I can escape into the world of the book, that's all. It can be an enjoyable experience. That much is for certain. Waiting for something to happen.

The waiting, oh the waiting. It's nothing possible or impossible. Life doesn't make sense at times. I hate that feeling. To feel free would be the best feeling in the world. That's what I want out of this life is to feel free. Forget the voices, forget everything else. It all needs to become something different. This life can be arranged in a manner that doesn't make sense and yet here we all are. I'm not sure what that means exactly but, that's all-which matters, I guess.

Either way here we are, this life will continue the way it's meant to be, and we will be allowed to finish what we started. Until I think like the voices, I'm unable to figure out everything that was going on.

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