Skip to main content

All Of This Has Happened Before

 There's a famous line from Battlestar Galactica (BSG).

All of this has happened before, and all of this will happen again.

Makes you wonder if the human race has been through all of this before. If we are but copies of another set of humans that once lived on an Earth like our own. But in some misfortune failed to execute their role as what they should be. Something like that. Wouldn't that be interesting if we were all just test subjects, Guinea pigs to see how we react to certain obstacles. I can see that happening. Just toys for someone to play with.

When they get tired of their creation, they reset everything and we all go through it over again.

There, of course, isn't any concrete proof that this is the case. But it is an interesting thought exercise. Kinda rules out reincarnation as we are just ourselves again. Makes you wonder how everything will go down eventually. How will death be perceived. Will it be just a slight resting point before being thrown back into the arena as it were.

If that's all this life is, I want no part of it. When it comes time for my final resting point, I want to be able to rest. I don't want to be thrown back into the arena to be tried and tested again. Who knows how many times I could have had this thought. A hundred? A thousand? If I am the same person throughout all of these incarnations, wouldn't I come to the same conclusion? Now there's an interesting question.

So many thoughts can come from this one point. How else could God get all of his children back home? There's another thought. He keeps putting us in the same situations in hopes that we will eventually make the right choices and be able to be with Him. How would that be?

If we are going through the same processes over and over again, that would be kind of mean for a creator to do to his children. I think at least. Just something to consider.

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