Skip to main content

Confusion

 There needs to be some good thought process in life. Something good. Something worth living for. I wonder what those thoughts are. If I could understand exactly what I'm feeling? That would be a good start. But well I don't know what I'm feeling right now and that isn't any good. It would be nice to be able to figure life out. Just want to figure this life out and if I can't? Well that's a different problem now isn't it.

So here we are. Overthinking and wondering what on earth is going on in this life. If there's anything I can say or do to fix it all, I best be thinking about it quick. However I don't know what's going on in life most days. That's where it sucks the most. It would be nice to be able to understand. Just to understand why I'm like this. I wish I could figure things out.

What is it I can't figure out though exactly? I'm not sure I get that part of it all. Life is so messed up right now, I wish I could understand it all to some degree. Maybe I'm not meant to understand it all. Is that possible? Maybe it is.

If that is possible? Then I'm rather stuck aren't I? There's something new to think about. Yeah...I'm just lost right now. I'm sure it will eventually make sense. Do I have the time for everything to make sense? How long until it will all make some kind of sense? I don't have any idea.

So many things it would be nice to know.

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