Skip to main content

Slump

 I feel like I'm in a slump. I can't even think of what to write about. The cursor just sits there. It's a staring match that won't end. So why not type out my thoughts. Yeah, I thought it was a good idea until I started. There are so many thoughts in my brain right now that I don't even know what to do with them all. This could end up just as a big wall of text, with nothing of substance. Yep, it could end up just like that. Who knows what the future will bring. There are so many opportunities out there. Some might be good others could be bad. Either way? They are coming. Day in and day out I come to the realization that this is my life. What more could there be to it. That's a possible question I have to figure out.

Wow a new paragraph. We're making progress.

Feeling this way is upsetting to me. I'm not sure how to articulate the sensation, but it is annoying at best. I wish I could figure out what to do with all of these thoughts and emotions that come into my mind. But I don't see any possible way to deal with them. Not yet at least. Eventually I should be able to do something with these thoughts, hopefully sooner than later.

If you could see inside my mind, the mess that has become what it is. I wonder what you would think of it. Would you be scared? Would just the idea of looking into someone else's mind scare you off? Makes you wonder doesn't it. What would you do, dear reader, what indeed.

I need to write a book. Yes, a book would be wonderful to write. But what should I write about? Ah the age-old question indeed. I'm sure I will come up with something. Anything at this point would be progress. I have an idea of what I want to write about, but I'm not sure how well it would turn out. But the idea is sound.

Love when a plan gets together. I wish more things in life would shape up and get together too. But what do I know. I'm just me. Just me and my thoughts it seems. I wonder how anyone gets anything done when they have thoughts jumbling around in their head. I know I can't concentrate very well. It would be nice to be able to figure it all out for myself.

If I ever figure things out, I'm sure I'll be the first 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]; ...