Skip to main content

Who Knows?

 Ever sit and wonder who is really in control of everything? Like the universe, this Earth, everything that the eye can see and beyond. I'm talking about everything here. Everything covers a lot of things, that much is for sure. I don't know how else to explain it. Some say it's God, other's say it's just a random cosmic being who's out there doing whatever they want to do. There are so many different theories out there, it can get quite confusing.

Personally, I believe we are in a simulation. Well at least I am in a simulation. None of this is real. We are all manifestations of the creator in different forms. Whoever is in charge of this simulation, that's how it works. I don't know if I've been in this simulation for five minutes, or an hour, or years. The memories could have been preloaded into this thing I call a brain. So, who knows how that works. I don't have a clue.

The experiences we have don't matter. That's just how it works. Someone is monitoring everything that goes on. For some reason it amuses them. They see value in all of that, but in reality, there is no value in any of it. Who cares what I do day by day.

The depression and anxiety get annoying at times. I wonder what the reason is for having that. Is it some kind of laboratory experience? Is that all I've become? A lab rat? They run tests on me, see where my levels get and go from there. That's what it sounds like to me. They just want to mess with me is all that's going on. We'll see what happens with all of that. What more torture they can come up with to test me.

What is the purpose of this simulation though? There must be something that is going on to make it make sense. I don't know how that works though. There are probably some kinds of rules that exist for all of this experiment. There would have to be right? That's what I'm thinking.

At the end of the day, none of this is real. It's all made up in someone's mind, and that's all there is to 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]; ...