Skip to main content

Life Happens Only Once

 Life tends to happen only once. There's nothing wrong with that. It comes and goes before you are able to even blink your eyes at it. It really isn't that difficult of a process. Life just tends to happen. I don't know how it happens, just that it happens. It's an odd thought process to think about. But it is part of the equation which this life stems from. It would be nice to be able to understand all about what is going on, but I don't think there's a way to grasp what it is all about. So, we continue forward hoping that something will happen in a good turnabout of events. If those events don't happen though, life won't be able to turn out the way we want it to. I bet this life has things planned for me that I don't even know about yet. It would be nice to be able to figure all of that out now though. Maybe in time I will be able to figure out things that I do not understand now. That would be an ideal situation.

I wish I had the ability to look into my own future and see all there is to see. If I could grasp onto that future and never let go, if it's a good future of course, then I would do that. Does that sound crazy? It might to some. I'm not sure if that would be the case for most interested parties. Who are those interested parties though, I do not know.

Maybe there is a time in life that just makes sense to everyone. Wouldn't that be an amazing feat? I think it would be. Something has to happen before any of that can take place. I don't know how it works. That's all there is to it.

If a mental hospital would make everything better, I would land myself in there. But those places only work for a little while. They don't tend to do good long term. That's where therapy and psychologists come into play. They help out immensely.

It's funny how life tends to just come at us without warning. I wish I could tell reality from what's fake somedays.

I'm all alone. I have no one. What will I do when I have an episode? What will I do when I have issues that I just can't figure out and contain? So many what ifs. I don't know what to do about any of them. I just don't know how to control these emotions I have going on at the moment. There must be someway to overcome whatever these emotions are.

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