Skip to main content

I Don't Know What to Do with Life

 What is this life? I mean honestly what is it. Is it meant to be something special? Something important? I don't know what to do with this life. It doesn't make any sense to me. Nothing in this life makes sense and I just don't know what to do about any of it. I feel like screaming most of the time, but no one would hear me. I would just be screaming into a void of some sort of my own making. That's what this life has become for me. A torture chamber. So let it be what it will be, I guess. There's no reason to think otherwise about it.

If Only I Knew. I wish I knew sooner what was going to happen before it happened. But I don't have that gift. It would be helpful in so many situations, I think. Imagine knowing what would happen in a board meeting before it came to pass. You would have the ability to anticipate anything that was going to happen. Or what was going to happen in a relationship. You could know when it was time to jump ship before the iceberg came along. Those kinds of things.

Life Doesn't Matter. It really doesn't. We're here just to do whatever it is we came here to do. There's nothing important about it. I could die today, and no one would care. It seems like life just gets in the way sometimes. It's not meant to be this way, but it does just happen to do that. I wish I could deal with it better, but I'm not sure I have a way of doing that. It's just life that makes us miserable. Yet we are forced to live it.

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