Skip to main content

What Is Wrong With Death

 People are afraid of death. I don't know why that is. Shouldn't people be looking forward to death? It's a release from all mortal concerns and worries. Any impairment you have will be gone once you die. I'm not suggesting anyone kill themselves, no that wouldn't be right. But death caused just by itself should be a happy thing. Sure, we'll miss those who pass on, but eventually we will see them again.

So, I ask, what is wrong with death? Maybe people are afraid of going through the process of death and feeling the pain of death. I can understand that. I don't want to die in a painful way. But I'm not the one who decides how I will die. Sure, I can do myself in, but the way I have in mind would be painful. Probably the reason I haven't tried it yet. Who knows.

I often wonder what's on the other side of death. I have seen family members die and I wonder what they're up to. There doesn't seem to be a good reason to think about that, but I do. It's just life for me. I guess.

Being depressed makes me think about death a lot. I don't like it and am trying to figure out a way to make the thoughts stop. The voices on the other hand, they don't stop. They are constantly against me. I don't think it's fair that I'm being hit on two sides, possibly more.

If death will bring peace to my life, I welcome it. Because there is so much chaos in my life right now. I can't keep track of anything at the moment. It scares me. There seems to be no relief from it all. I don't understand how I can be this overwhelmed. There's just too much to think about right now. I guess I'll just take it as is and wonder when it will all stop.

Life doesn't feel like it matters if death is the final destination. It doesn't matter what you do in this life, you'll die anyways. What's the point of it all? I guess a final judgment day will come where all of your deeds here on Earth will be judged. Is it fair to judge someone based on a few minutes compared to eternity? I'm not sure about that.

Right now, I'd rather be dead than alive. Yeah, I want to be dead. I wouldn't have to worry about worldly things anymore. There would be no need to worry about anything in this life. I'd miss people, sure, but I would see them again eventually. I want to go where my dad went. That's what I want.

Maybe I can't have what I want. I'll have to deal with not having anything. It makes no sense right now, I understand that. But what are you supposed to do about something that just won't go away. These thoughts, I've had them for months now. Ever since he passed.

So, I want to die. It's almost like I'm obsessed with it. But I probably am not. It's just a goal I have in life. To eventually get there. I don't know how that will happen. I just know it will eventually happen when I least expect it. Might as well live life for now, I guess.

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