Skip to main content

Alone

 I feel alone again. I don't understand why this is happening. I am surrounded by people who are kind to me. Why do I feel so alone?! It makes no sense. I would like for something to make sense for once. Something in my life at least. Other things make sense. But my life does not. I'm sure life makes sense to someone out there, and I am envious of them. If I could have that same clarity, maybe I wouldn't hate life so much. But I do. There's no rhyme or reason to any of it. I just don't grasp the simple concept of life.

I've thought about it over and over again, how we are born we live, and we eventually die. Then someday there's a judgement for all of what we did while on this Earth. Maybe there is nothing to get. It could be all a charade meant to fool me into a false sense of belief, if I were to have something make sense. No matter what happens I am still alone. So, I will go forth and try to exist the best way I know how.

Life shouldn't be this way. It needs to be something better. Only I can make my life better than it currently is. How do I go about doing that exactly. There must be a way to reason with myself about how this life unfolds. I can't be the only person who doesn't understand life in general. If I am? Then I am one poor bastard. But I don't think it is that way. I try to live my best life as it currently stands. There are days I just don't get the hang of it and I fall flat on my face. A trigger there, a memory here. Something can catch me off guard and I'm down for the count.

I don't want to go back to a hospital. I probably should though. Damn I hate when I know what I should do, but I'm too stubborn to do anything about it. None of it makes sense to me. Why should it. I'm here awake and alive. I'm no harm to anyone but myself. That's all there is to it. There's no reason for me to be hospitalized. No reason at all.

I don't think I'm over my grief and loss of my dad. Not yet. I've just managed to stuff it down so far that I don't think about it. Somedays it comes to the surface, and I am unable to resist the thoughts of how much I miss him. Those days are the worst. Eventually I'll forget what his voice sounded like. I don't want that to happen. It can't happen. I can't let it happen. He was my hero. He was like superman in a way. But he was taken away too soon for me. I regret not talking to him more. I always ended up talking with my mom on the phone. Wherever he is, I hope he remembers me.

There are so many things about this life that I don't get or understand. I'm not sure I want to understand everything that enters my path. It might be too much for my brain to handle. I wish I could forget about the understanding part or trying to understand it all and just live my life. I try to be a good person. I try to be there for others, but I'm sure there's more I could do to do my part. I just do not know. That scares me to a point. Not knowing has always scared me. I fear the unknown. Probably not a good thing to have going on inside my brain, but what am I supposed to do about it. There can't be that many ways to figure things out, can there? Why am I pushing myself to figure everything out all at once. It doesn't make sense.

I am but a man and I do as I wish. It doesn't matter what it is for I am just me.

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