Skip to main content

Something Good Will Come

 I believe that something good will come out of any situation that we are placed in. It has to be something good right? Because something bad would be terrible. That something all depends on the situation we are facing at the moment. There isn't one answer to all situations. It doesn't work that way. I wish there were a blanket statement that could fix all things. But there isn't. That is a pipe dream.

Good and Bad situations come about because that's just how life rolls. Some happen because we did something to cause it. Others happen just because, no reason really. They just happen to us and we have to accept and deal with the outcome. Without consequences we wouldn't have the ability to change our behavior towards things. Life is full of those certain ways.

Now you may have a bad thing come out of a situation, but the good part is you've learned something. It was a learning lesson for you. Sometimes all we need is to be able to learn something from one another. Is that not the goal of the human life? To learn? I believe that's why we are here on Earth. To learn something from our mistakes and grow from the learning.

Learning has a way of healing our wounds. We can grow from the learning and heal the holes that have been placed in our heart and mind. I don't know exactly how that works, but it does. I have experienced it first-hand. As I'm sure many of you have experienced healing from learning.

If you hope for something good, it will come to you. It might not come to you right away, but eventually it will come to you. There's nothing wrong with that. It's okay to wish for something good to happen. No one wants anything bad to happen to them. That's just not right. The good things will come. There's no doubt to any of that.

It can be difficult waiting for the good things to come to your life. If there were anything I could say to make things feel better, I would say this. Hold on. The light at the end of the tunnel is near. You are so close, don't give up now.

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