Skip to main content

Burdens

 Ever feel like a burden? I have. I currently feel like a burden to everyone I know. It's annoying to say the least. I wish I didn't feel this way. But I do and there really isn't anything to stop me from feeling this way. I just have to live with it and figure it all out. I wish I didn't feel this way. Let's face it, no one wakes up and says, "Hey I want to be a burden to everyone I know!" It just doesn't happen. So, I shy away and become quiet and distant. I'm not trying to push people away, it's just how I react to situations. I don't know how to do it any other way. I've walked away from friendships because I felt like I was a burden. I've cut ties to people I was close to at one point in time, just because I thought I was a burden. That's all I really am though a burden to people. Those I care about, those I love, I am a burden to them all. I've seen people's reactions to me. It says it all.

I've hit a low point in life. I'm depressed, alone, afraid, scared, you name it. I wish I had an idea of what to do about it all. It would be nice to be able to figure something out. I eventually will. I can't stay in one place forever. It doesn't work that way. This life is just too much for me it feels. I'm not sure what is going on with me, well I kind of do know. Major life changes happen, and things go south. Let's just put it that way. I wish I didn't feel this way. I wish I could lift myself up and be the bubbly cheerful guy that I was. When I was happy. It wasn't that long ago that I was happy. Peaceful with life and all of that. I want to feel that way again. I wish I could figure it all out.

Everyone has burdens. If you can think of it, I'm sure it exists. There are too many to name. It's a lot. I want to be able to lift others burdens not be a burden myself. If that makes sense. Other people need it more than I do. Anything can happen to me, it doesn't matter. Life comes and goes, and we are just here sitting waiting for something to happen. It's quite simple. There's nothing wrong with that, it's a fine way of living. Being prepared for such things of course is necessary. Whatever happens in life, it might surprise you and you have to be prepared for that possible surprise.

It would be nice if I could apologize to all of those people I just pissed off in one way or another. Those who I've been a burden to. I'm not sure that's possible though. I don't know where half of them is at this point in time. A lot of things would be nice, but I doubt any of it would ever get done. That's just how this life is.

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