Skip to main content

Anxiety

 Oh Anxiety, you know the feeling. Some anxiety is okay, other anxiety is not. Some anxiety keeps you moving forward like it should, other anxiety makes it so you cannot move forward completely. The bad kind of anxiety is the constant worry about everything and anything that can be worried about. Someone always watching your moves etc. Well, that goes into more paranoia than anxiety. But the feeling that you're not good enough, the constant put downs etc. The world is going to end in any moment, and you don't have a decent clothing option to meet death.

Oh yeah all of those feelings are real and valid. It's nothing to be ashamed of though, so please don't think you have to be ashamed of having anxiety. It's just real and normal for some people. Well, I shouldn't use the term "normal", it's not normal at all in any way possible. That's why there are doctors that specialize in such issues and medicine. There's medicine that will help you out.

I've personally have had issues with Anxiety since 2003. That was the first time I was diagnosed with it. I had this fear of answering the phone at work I would throw up every morning just thinking about it. It really threw me for a loop, and I had no way of dealing with it. I enjoyed my work, it was fun, but I just couldn't deal with the phones for some reason.

Went to the doctor and he suggested to put me on some medication. It helped out a lot, I was so happy. Years later that medication no longer worked for me, so I ended up getting put on something else that I now use that makes me work and function like I should.

So bottom line. It's okay if you have anxiety. But please seek medical professional help if it's more than the usual things that people experience. There's help for you.

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