Skip to main content

I Didn't Ask To Be Born

 You hear the phrase "I didn't ask to be born" over and over again. It's in the media; people say it out loud in frustration and the like. Did any of us ask to be here? Maybe there was a time before we came to Earth and were born that we chose to be here, we just don't remember it. I know some religions believe that to be the case. Not everyone does believe that to be true, but some do. It's an interesting concept. To have one's memories wiped of another lifetime and then they are born on Earth.

On Earth we experience things like grief and pain. Loneliness and sadness. All of the different emotions that make us who we are. Coming to terms with loss can be difficult at times, and it's a thing that we go through several times in our lifetime. Loss isn't just something that's made up, it's deeply rooted within us. It's not surface level deep, and it sucks.

Personally, I wish I didn't have to suffer through loss. But I'm human and that's what I have to do. Losing a loved one can happen in many ways. Death isn't the only way. There are other ways to feel loss.

There has to be a way to get through this. I just don't know how to do it. Life tends to come at us faster than we can say lightbulb and that's not a good thing. It can be confusing at times. I know to me it's confusing a lot of the time. I don't know how else to put it.

Being divorced twice now I don't see happiness in marriage. I only remember the bad times, the sad times, the times that makes me want to go mad. I know there were good times, but my mind just seems to block it for some reason. I wish things could have turned out differently. But they didn't and here I am now experiencing loss a second time. It's not an easy thing to go through.

First there was the death of my father and now this. Why must life bring about so many terrible things at once on me? I don't understand.

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