Skip to main content

SGU: Human

In the latest episode, we get some nice character development in regards to Dr. Rush. Actually we're inside his mind for the majority of the episode. You see, he's hooked himself up to the chair that's on the ship... hopefully to find a way to control the thing. Very nice episode. I highly enjoyed this one.

You also get to see what was going on in his life before the whole Stargate thing entered it. Complete with a cameo from Dr. Daniel Jackson. That was a nice touch. His wife has cancer, and in this version of things, he's not paying attention to her... because he's already lived it. Makes you wonder... how he handled things before? I'd like to believe that he took care of her, was by her side etc.

Anywho, during the whole episode... the thing he keeps pushing away is the key to it all. There are 46 chromosomes in the human genome... that is the key to guiding the ship and making it do whatever they want. Rather amusing if you ask me. Wait a second.... I thought there were 23? Now I'm confused... I'll have to re-watch the episode.

The sub plot. Okay, so they come across a planet with ancient ruins. The team that goes gets stuck and the ship has to leave. It's now up to Rush in the coming weeks to find a way to turn the ship around to pick them up... or... hey they have Stargates on the planets right? Hmmm could they I don't know perhaps go planet hopping hoping to find that Destiny is near by? Oh yes, that would rock.

We'll see how this pans out. It's picking up speed again... should prove interesting.

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