Skip to main content

I Love Penguins

 

I was having a bad day. I closed my browser, and this guy shows up on my screen. It's the daily picture Microsoft shows you. I took one look at him and thought, yeah today will get better. Just looking into the eyes of this penguin made me feel better. I don't know why. But it was like he was saying "You've got this!" I took it to heart.

Penguins are my spirit animal, I swear. When they mate, they mate for life. That's always been my thought process of marriage. Stick with who you are married to forever. Forever is a long time, so make sure it's right.

The males watch over the egg while the females go and hunt. I find this very interesting. Sometimes the males aren't mature enough and they let the egg die, which is very sad. But it happens.

Life has an interesting way of telling us we're alive. Sometimes it's through pain, sometimes it's through a picture. Either way, we understand and get that we are living to some degree. I wish life were black and white somedays. I think it would be easier if it were. Just simple yes or no will get you through a day. There's not much else you can do, just yes or no. I think that would make things very interesting. Don't you?

Speaking of interesting, I need to write a book. I haven't written a book in ages. Maybe a book about penguins. A short story perhaps. Nothing too crazy or wild. I mean they are my favorite animal. A flightless bird who just scoots on its tummy to get places. Or waddles. Oh have you seen them waddle? They are so freaking cute!

If it were actually doable, I would have a penguin as a pet. But well, you know how that is. Not possible. A house is no place for a penguin. There just isn't the right temperature and it's not the right environment for them. A shame really. But if it doesn't work it doesn't work.

In my new place, when I get one, I am totally getting a picture of a penguin to put up. That or Moopsy. (Yeah don't ask about Moopsy, it won't end well.) Either way I will have a cool picture up and it will be mine.

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