Skip to main content

Disassociation

 I've been told I disassociate as a coping mechanism with my mental illness. I'm not sure what to think about that. I mean yeah, I disassociate a lot, but if I'm doing that as a coping mechanism? That doesn't sound very good to me. I need to find a way to stop that from happening. Either I find a way to control my mental illness, or I find a way to simply shut everything down. I'm not sure what shutting everything down would look like right now.

I have a song repeating over and over in my head lately. Not sure I like the lyrics. They feel negative. Yet they feel like something I am dealing with at the moment. So, who knows what's going on with any of it. I'm not sure I understand anything at the moment. Where am I headed with all of this? You tell me. Because I haven't the slightest clue of how this life is turning out, where it's headed etc. Who really knows what's going on in life. That's the big question I need to have answered. Who can answer that for me? I don't have a clue.

It would be nice to be able to tell the difference between life and what I want life to be. I'm not sure I can do that effectively. I can tell when I'm disassociating, it's just an odd place to be. I haven't figured out a way to break out of it yet. I just sit back and let it happen. Is that the wrong approach to any of it? I don't know.

There's a lot of things I don't have a clue about. That's interesting now isn't it. I need answers. Like now. Not ten years from now, I want them yesterday. I fear that I won't be having any answers anytime soon. That scares me. I'm not sure what to do about any of it. I feel like I'm on autopilot and am just surviving at the moment. Such a weird thought process to be sitting here on autopilot. I need to find a way out of whatever this is.

If I have to die to make everything make sense, then maybe that's the answer. I won't take my own life though. God has to take it from me. He's the one in charge, so He has to take my life. Does that make sense? I sure hope it makes sense because I'm not certain how else it would happen. I'll take Death Ideation over Suicidal Ideation any day.

It feels like there are so many questions I want answered. Too many questions. I'm not a fan.

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