Skip to main content

Feels Like No One Cares

 I know this sounds silly. But it feels like no one cares at the moment. About me. I know there are people out there who do care about me. But my mind says otherwise. There doesn't feel like there's anything I am able to do about it. I feel like my hands are tied at the moment. I don't like this feeling. It's too complex to even figure out in my own mind. I'm sure it seems like something easy to anyone else, but to me it's complex. I don't get it.

It would be nice not to feel this way. I am not a fan of it. I wish I could feel normal again. I have a hard time trying to remember when I was normal. I don't seem to know when that was. What exactly is normal anyways? I don't think anyone has an answer to any of it. It would be nice if someone did have an answer to what normal is, but I don't think there's even an official definition of normal.

Life is too weird to try to understand everything going on in it. I mean we have a life, that we live. That much is a given. Then we have a state of being that comes along every so often. We feel ok, good, normal even. After that, things fall apart, and we all feel inadequate for anything that comes our way.

If I knew how to feel normal, don't you think I would have tried that by now? It would be way nice to feel that way. Instead, I feel anxious, depressed and other things I can't even describe. The part where I can't describe it annoys me the most. But that would be a given wouldn't it. Wishing never did a damn thing to be honest. But if I could wish, I would wish to feel life without all of these illnesses. That would be my ideal wish. But it could never be granted. Nothing like that exists for me.

I feel like shutting down now. With nothing to go forward into life with, it all feels useless. What am I supposed to do about any of it. I am so confused about this life. I don't understand it. I don't understand people, even family members I don't get. There are a few people who I do understand. I keep them close to my heart. They mean a great deal to me. The others? Not so much. But then again, that's just life isn't it.

So, I'm left with a question. What do I do? Why do I care so much? There has to be a reason I care what others think about me. I don't know what that reason is. If there's anything that can help me, I wish I could find it. But I don't know what that is. Anything at all would be helpful.

I wish people would educate themselves about mental illness and all the things that can happen with it. Certain conversations would be saved by such knowledge. No more "why can't you just..." type of questions. You know the ones I'm talking about. They don't make any sense. They never make any sense.

Why can't they just understand. How about we start there. That's a good place to start, don't you think? Yeah, that's what I was thinking. Anything to do with that would be a good thing. But no one ever does that. They don't grasp what one person goes through. All the while that one person tries and understands those around them.

So that's why it feels like no one cares.

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