Skip to main content

What Is This Life?

 It would be nice to be able to explore thoughts and feelings outside of our known thought process. I'm not certain that is possible with all of the things that happen left and right. It would be interesting to try it though. If such an attempt were possible, I wonder how far along it would get. Would it be shut down immediately? Maybe so. If that's the case, then we are but a challenge yet to be found and yet to be destroyed by our own undoing.

If, however, we are something more. Something to be described as an intelligent being then I could be persuaded to understand how the rest of it goes. Who's to know exactly what's going on in this life. I for one do not know or have the perception to be able to figure that out. It is an unfortunate thought process at best. One upon which I do not have any idea how this life will make it out in the end.

On the other hand, if we are nothing but people simply trying to get to a home type destination...then I suppose I could handle that thought process. I suppose it belongs in the category of who came first the chicken or the egg? If you can figure that question out, you can probably summerize the cosmos.

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