Skip to main content

Flying

 I've never liked flying. It just gets under my skin. Thing thought, it's the airport more than the actual flying that gets to me. But I did it. Probably for the last time in a long time. I don't know what to do with myself. I don't like this feeling. I feel alone.

I'm sure if I go upstairs, I'll find something to do, but I don't know about it yet. I just took a much-needed nap. I'm not sure what to do about anything right now. Like I said, I feel so alone. Even though I know I'm not alone, there are other people in the house. Yet I feel alone. I hate this feeling. I don't want to be offensive either. That's just what this life feels like at the moment.

So, I'll just have to go along with whatever happens I guess. It's not what you would expect though. I wasn't expecting such a welcoming sight and view. I am grateful for these people. I hope I don't overstay my welcome.

But I got here by flying. That was the main part of it. Luckily it was a short flight. Not bad at all. I like short flights; they manage to work out just right. On the flight all they had was coffee, tea, or water to drink. I wonder why that is. No sodas of any kind. Maybe just because it was like an hour. Poof and you're there. We landed a half hour early. That was nuts. Maybe the pilot was just in a hurry to get somewhere? I don't know. That's just how everything crumbles I suppose. Whatever the case, it worked out.

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