Skip to main content

Depression Sucks

 I feel trapped in my own body full of emotions and I don't know what to do with any of them. I'm severely depressed. I can tell the symptoms. I don't even want to get out of bed anymore. I feel so lost. It sucks. I really don't know what to do about it. I've gone downhill so fast it feels. I need something to push my engine back uphill. Like the "Little Engine That Could", kind of thing. But I don't even know if that will do anything. I hate feeling this way. Putting on a fake smile for everyone to see. Lying to myself that I'm okay, that I'll be okay. I am not going to be okay. There's a problem with me, and I don't know what to do about it. So that's where I am currently in this stage of life. It sucks. I hate it. I wish I could do something about it.

Life needs to end. Everyone needs a free ride to Heaven. I'm not going to Heaven. I'm not going to Hell either. I think I'll just be in the middle somewhere chilling out the best way I know how. Can't wait for that day to happen. I'll be so mellow and chill. None of these Earthly illnesses can follow me there.

But for now, I have to deal with them. There needs to be a way to get over this depressive state I am in. I just don't know what to do about it. Something, anything. I just need to find something to do about it. I wish I had a plan in place. Something that would prevent me harming myself. Perhaps logic is enough? I sit here listening to things and they don't help any. I wish I could just find a way to get better. What's the point of it all? What's the point of this life. I don't have a clue. I want to have a clue.

Depression affects a lot of people. With Winter coming upon us, it tends to get even worse, the depression that is. I wish I could not have to deal with Winter. The snow is cold it chills me to my bones. Feels like my bones are hurting all the time. There's nothing that I am able to do to make it feel better.

I feel like screaming, but I don't know I have the breath to do so. My brain is screaming loud enough for me to try and deal with it. It's a release of sorts which is greatly needed. I just don't know what to do about any of it. Damn life. Getting in my way. So many things just getting in my way at the moment. I don't know what to do about it.

Such is life. I hate that phrase. But it seems to fit here.

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