Skip to main content

Thinking

 There are days that are better than others. I find myself looking forward to the good days ahead and not the bad days behind me. The bad days are a reminder that I survived whatever was put before me. I am able to get through the trying times and live in the present.

I need to shave, but don't feel like it. I mean whose choice is it to shave to begin with? Me. That's who. So, if I decide not to shave, I don't need to shave. Having that one choice to make empowers me. I feel like I have control over something in a world where I don't have any control.

Life feels meaningless at times. There's nothing I'm able to comprehend about it, it just exists, and I don't feel one way or the other about it. It would be nice to be able to say no more, no longer will I be bound by this life's meaningless existence, but I can't. It keeps its hold on me, and I cannot let go.

I've compared life to music before. Like music this life continues to play on, there's nothing stopping it, it just keeps going round and round again. It would be nice for the music to stop once in a while to allow me to catch my breath. But at the moment, it doesn't allow me to do any of that. So, I am stuck.

Sometimes I wonder what life would be like without racing thoughts in my mind. Those constant thoughts that I'm not good enough, that I will never amount to anything. Thoughts that cripple me down to the depths of despair. Thoughts that simply don't make any sense to me. I doubt they would make sense to anyone.

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