Category: General

  • Just in time for Primeval

    Discover magazine has posted the following Rules for Time Travelers.

    Actually, it takes most of the fun out of the whole concept, but in summary they are:

    0. There are no paradoxes

    1. Traveling into the future is easy

    2. Traveling into the past is hard – but maybe not impossible

    3. Traveling through time is like traveling through space

    4. Things that travel together, age together

    5. Black holes are not time machines

    6. If something happened, it happened

    7. There is no meta-time

    8. You can’t travel back to before the time machine was built

    9. Unless you go to a parallel universe

    10. And even then, your old universe is still there

    I strongly encourage the writers of Primeval to read them…

    …of course, it would be the end of the show… but that can’t be far off, anyway.

  • Do they really listen to me?! – Primeval, Series 3, Episode 8 – Review, Spoilers

    Synopsis

    An anomaly opens at a test track, the crew dispatch the scene, and encounter a giant bug, which is luckily killed by a car. The anomaly is closed.

    Abby’s brother Jack (hereafter referred to as Jack-Ass) pokes through his sister’s purse and finds the anomaly detector. When she won’t tell him what it’s really for, he (quite naturally, it seems) steals it. (I mean, what else would somebody do if they’ve been told to mind their own business?)

    At the anomaly site, two of the dumbest soldiers ever put on this earth are killed by a second insect without even raising the alarm.

    Back at the base, Abby performs an autopsy on the dead bug and proclaims it to be related to an ant or a wasp and that it’s stinger has mutated into an ovitube – capable of implanting baby bugs inside hosts – like humans. She also notes high levels of selenite. Sarah realizes that the artifact was also covered in selenite, therefore they must come from the same place. (Logical really, there’s only a whole planet and 4.6 billion years (plus all the future) of time for these two things to have come from, so finding a similar substance must be conclusive proof, right?)

    About this time, Jack-ass has peddled his little bicycle right to the anomaly, where he finds the two dead soldiers, now hatching baby bugs. Conner calls the soldiers to warn that they are returned, but Jack-ass picks up the phone lying on the floor. Conner realizes what’s happened, just as the big bug attacks Jack-ass. Sadly, Jack-ass gets in the car and escapes. In the process, he breaks the anomaly locking device, and drives into the future. It’s clearly the same place where we earlier saw the artifact retrieved from. He drives a short distance in the ruins, then gets out of the car and falls into a big hole.

    The team arrive again at the anomaly and, without any form of back, proper equipment or the slightest bit of common sense, enter the anomaly to help Abby find her worthless turd of a brother. Sara stays behind to get the second locking device working, unaware that there are still baby bugs waiting for her.

    In the future, predators are everywhere, and the team slowly advances towards Jack-ass’s car.

    They find him, hoist him up, get him out, burn the bug hill, start a fight between the giant bugs and the predators and escape, but not before Quinn sees one of Christine Johnson’s carrying out an operation to retrieve a woman.

    Analysis

    So why do I say they must have been listening to me? No because this story is any better, but because at least throughout the episode they kept pointing out how incredibly stupid they were being. At least they’ve given up the pretense that they’re not morons.

    Once again, I’m not going to go into a deep analysis of the implications of this episode. I’ll not bother pointing out that insect size is limited by their physiology and their environment. They don’t have lungs, so they absorb oxygen from the environment. Bigger bugs means higher Oxygen content. Oxygen levels high enough to yield bugs as big as this episode showed would mean a highly combustible atmosphere- easily detonated by Becker’s gunfire (not to mention Quinn’s flare.) I’ll not linger on Jack-ass’s twisted worldview – “If you hadn’t lied to me about things, I wouldn’t have to steal your stuff to find out what you’re lying to me about.” Clearly this boy’s quest for knowledge is epic in its proportions. I’ll not bother mentioning (yet again) that the predators just aren’t that dangerous. They’re nothing that a well-equipped group of soldiers couldn’t handle and yet Conner says, “If they got out, mankind wouldn’t have a chance.” Rubbish.

    No, I’m going to concentrate on a pointless exercise in analyzing what we saw of the future. What does it tell us? (Honestly, I don’t really believe that the vision of the future will be at all internally consistent when they get around to revealing it, but, “What the heck?” It’s fun to speculate.

    Let’s start with the architecture and the technology. Ignoring the artifact and the fancy dohicky we see in the previews for next week, everything looks contemporary. Contemporary cars, contemporary buildings. I don’t recall seeing any signs or license plates to see what kind of language was in use.

    The streets are lined with stopped cars, the doors flung open, as if the entire city was trying to escape and the traffic jam stopped them, so they took to their feet. It was a massive, immediate crisis, not a slow incursion of predators. (Unless a huge number of predators arrived all at once, which would imply they came from another anomaly.) Similarly, the insects seem like an unlikely reason for a sudden evacuation.

    Although the buildings show some sign of decay, it isn’t more than 100 years worth, and the cars would have deteriorated faster, leaving the conclusion that the evacuation may have only been 20-50 years ago (relative to the anomaly) and since the cars are contemporary, that puts it, lets say 30-60 years in our future. 100 years at the outside.

    Not enough time for super bugs to evolve, for the atmosphere to beef up enough oxygen to produce the bugs (oh, wait, that didn’t happen) and not enough time for the predators to evolve.

    But wait, there’s more – the mountains have risen up under the cities (or did valleys fall away?) I think we can safely say it isn’t London. Any timescale long enough to produce ruined cities atop spiring peaks would have either been long enough for (a) Cars and technology to have advanced beyond anything recognizable or (b) human city and car ruins to crumble to dust long ago.

    Any way you slice, their view of the future is all wrong.

  • Primeval – Here’s a twist I never expected!

    From Variety:

    In a high-six-figure deal, Warner Bros. has acquired screen rights to “Primeval,”the ITV series that airs in the U.S. on BBC America and Sci Fi Channel.

    Akiva Goldsman and Kerry Foster will produce through Goldsman’s WB-based Weed Road banner. Emily Cummins will also be involved in a producing capacity.

    Goldsman, who scripted the Ron Howard-directed “Angels and Demons” withDavid Koepp, will hire a writer to draft “Primeval.”


    Movie? Primeval? Why do I almost fear this more than the Land of the Lost movie?

  • Adventures in Objective-C – Part 1

    I’ve been trying to get my head around Objective-C and Mac/iPhone programming for the last month or so. At this point, I think I’ve got most of the major concepts down.

    As an Object Oriented (OO) language, it bears a certain familial resemblance to Java, which I typically program in these days.

    While I’m not going to say that Java is a “better” language, I do feel that parts of Objective-C are a capricious conglomeration of logic-unfriendly syntax.

    It’s the implementation of these things that’s irritating. Obviously there’s a certain amount of familiarity and personal preference, but over this series of articles, I’ll highlight a few. I’ll start with a simple syntax example.

    Generally in OO programming, you break things into programatic “objects”, which define the properties of an object and the actions that such an object could do.

    In Java speak, these are properties and methods, in Objective-C they are properties and selectors. In Java you “call” a method, in Objective-C you “message” a selector. Same thing, different terminology. Clear as mud? Good, then let’s continue.

    Typically, properties on an object are protected behind accessor method, such as “getXXXX” and “setXXXX” where XXXX is the property name. Sometimes these are called “getters and setters” – that’s in Java, of course, Objective-C calls them “accessors” and “mutators”. Objective-C also uses a slightly different convention. Mutators are still “setXXXX” but accessors are just “XXXX”, which can result in a little ambiguity as to whether you’re looking at the actual property variable or the accessor selector.

    Java uses “dot-syntax” to refer to an object’s methods, so far example, if you have an object called “newton” and it has a method called “dropApple()”, you would access it like this:

    newton.dropApple();

    Objective-C uses square bracket syntax, so the same thing would be:

    [newton dropApple];

    …and if each one took a single parameter, they would look like this:

    newton.dropApple(velocity);

    vs

    [newton dropApple:velocity];

    It gets a little muddier when we move to two parameters.

    In the example above, I’ve passed a variable called “velocity” which we’ll say is of object type “Speed”. Let’s add a second object type of “Height”, with an instance variable called “headHigh”

    We would DECLARE the java method like this:

    void dropApple(Speed incomingSpeed, Height incomingHeight) {

    …. do stuff

    }

    and call it like this

    newton.dropApple(velocity, headHigh);

    Objective-C would be declared like this:

    (void)dropApple:(Speed *)incomingSpeed dropHeight:(Height *)incomingHeight {

    …. do stuff

    }

    and called like this:

    [newton dropApple:velocity incomingHeight:headHigh];

    Here’s my first irritant, Objective-C selectors use named parameters – which I like better than Java, but only on the second and subsequent parameters. The first is identified by the name of the selector. It’s just a mixed-bag inconsistency. I hate inconsistencies in my programming languages.

    This same system also helps cause Objective-C messages to tend to be very long.

    Java and Objective-C also share another trait, that being if a message/call returns an object, you can then, in turn message/call that object immediately without passing it through an unnecessary intermediary object variable.

    Let’s say we’re somewhere inside an object that is running active code – like a program. I can always reference back to myself with the special keyword “self”, so if my program has a property of type Person, and a Person object has a property of type “phoneNumber” and a PhoneNumber has a method that returns a formatted representation of the number, we can get to that formatted string in java like this:

    self.getPerson().getPhone().format();

    Self being an object with a getPerson() accessor that returns a Person, which in turn has a getPhone() accessor which returns a Phone, which in turn has a format() method to return a pretty string. It’s not uncommon to see these things strung together 4 and 5 levels deep inside Java code, and it’s a bit difficult to read, but convenient, and sometimes a lot better than assigning each step to a new variable, like this:

    Person aPerson = self.getPerson();

    Phone aPhone = aPerson.getPhone();

    String aString = aPhone.format();

    How does Objective-C handle this? Like this:

    [[[self person] phone] format];

    Simpler, right? Yes and No. It’s irritating. Why? Because you have to know, in advance, how many layers deep you are going so that you can put the right number of square brackets on the left. If not, you have to come back later and add them, which really “breaks the stride” of typing. It may be less letters to type, but it takes longer to type.

    Ah, but along comes Objective-C 2.0 with a “solution” to this: Dot-Syntax!

    Oh, but it isn’t the same as Java’s dot-syntax. Objective-C’s dot-syntax only applies to properties, not selectors. (Actually, properties are selectors, you’re not seeing the actual variable, but these are special) That means you can do this:

    self.person;

    or

    self.person.phone;

    but not

    self.person.phone.format;

    instead it would be:

    [self.person.phone format];

    Why is this a problem? You don’t always know if something is a “property” or “selector”, and since the IDE (XCode in this case) helps fill this stuff in from it’s calculated list of available options, it promotes a certain natural “coding laziness” by letting the IDE do the work of remembering names for you.

    So you start typing “self.pe…” and about that time it suggests “self.person”, so you hit the arrow and continue typing “.ph…” and it breaks in again and suggests .”phone” so you hit the arrow to accept and then you start “.format” and nothing happens, then you realize, “oh, it’s not a property”, so you go back and delete the period. That’s bad typing technique. And, then, of course, you have to go back to the beginning of the clause to add a “[” and the end of the line to add “]”

    I know, I know. “Gripe, gripe, gripe, gripe”

    Next time (probably) “Why there isn’t a consistent method for delegates, actions and ad hoc delegates”

  • Work here, please

    We need employees to kick around your food before we serve it.

  • Fate is Determined – Primeval, Series 3, Episode 7 – Review, Spoilers

    Worms? What can of worms?

    Synopsis

    In the middle ages (14th, I think) a “dragon” menaces a village. Sir William goes forth to do battle and we see the “dragon” to be a dinosaur.

    In the 21st Century, an anomaly opens up in a car wrecking yard and out comes a dracorex hogwartsia (no, I’m not making that up.) The terrified crane operator fights back and nearly kills the dracorex, which is already wounded with a lance in its side.

    Meanwhile, Conner discovers Rex up for auction on eBay and contacts Abby’s good-for-nothing-plot-complication-of-a-brother Jack and tells him to get rex back. Keeping the incident a secret from Abby.

    Better late than never, the anomaly detector notices the anomaly and alerts the crew, who arrive just in time to save the dracorex. They try to heard it back through – not seeming the slightest bit interested in how a manmade artifact is imbedded in its side – the anomaly, and just as they are about to succeed, Sir William charges through the anomaly in pursuit of the dracorex, which runs away with Sir William in pursuit.

    While Quinn and Conner pursue the knight, Abby and Becker track down the dracorex.

    The knight is causing all sorts of problems, but, coincidentally, there’s a carnival parade through the streets of London, so he doesn’t quite stick out like a sore thumb. Quinn and Conner catch up to him several times, but he repeatedly escapes them.

    Abby and Becker catch up with the dracorex, and Becker wants to shoot it, but Abby threatens to shoot him with a tranquilizer dart if he does. The beast finally collapses rendering the Mexican standoff moot and they haul the beast back to the junk yard where Abby tries to nurse it back to health.

    While all this is going on, Sarah Page decides to trick her way through the anomaly, where she does field research on Sir William. She lies about her authority to pass through the anomaly, and then demands that the guard pretend he saw nothing when she comes back.

    Using her knowledge of Sir William, and the extremely fortuitous placement of Sir William’s grave, Sarah convinces him to return to the anomaly. He then battles it out with Abby, who seems to be the only one man enough to take him on, to save the dracorex’s life. He defeats her, but her willingness to sacrifice herself wins him over and he departs, leaving the dracorex behind. Another pet for Abby, it seems.

    Jack fails to get Rex back, so Conner takes Becker and some armed soldiers to Jack’s friend and retrieves Rex.

    Analysis

    Ever since this series started, there’s been the “new” concept that the anomalies have opened in the past, giving rise to various mythological legends. It was that information that allowed Cutter to devise his map of the anomalies, which was verified to be accurate, therefore it was just a matter of time before that showed up in the plot, but this opens a huge can of worms.

    Destiny, fate, pre-determinancy and all that baggage that goes along with time travel stories. We’ve mentioned this before, but it’s time for a refresher: Either the past is fixed or it isn’t. Conversely, since the future is someone’s else’s past, the present is either fixed or it isn’t.

    Primeval as followed the notion that the past is not fixed, hence the need to return as many creatures through the anomalies as possible. It’s also the reason that Cutter’s world disappeared and was replaced by the current universe and lead to the non-existing of Claudia Brown and replacement by Jenny Lewis. The anomalies represent a very real and incredibly far-reaching threat for the very fabric of reality. Frankly, the ARC doesn’t take this seriously enough. There is nothing more important in the world than stopping the anomalies. It is simply a matter of time before the universe gets changed again – and yet, the people working at the ARC seem to have no grasp that their very existence hangs on a thread that could be severed with the opening of the next anomaly.

    A commenter noted earlier that Jenny Lewis would never quit her job just because she nearly died. Could someone walk away – no matter what the reason – from the single most important job in the world? The lives of billions of people, plus billions, if not trillions of plants and animals throughout all time are threatened and the ARC is the only place (we know of) that is combating them. There’s a lot of pressure in a job like that, but it isn’t one that anyone with a conscience could walk away from.

    But now we have a new wrinkle. Sir William left his time – he was no longer there to get married and die and be buried. When he left, time would have changed and his grave would be gone – unless it was pre-destined that he would return to the past. If that’s the case, then time can’t be changed and history is safe – but we know it isn’t because of Claudia/Jenny.

    So, the next question is, what about the second anomaly in the 14th century? You know, the one that must be there letting the dracorex through in the first place? Keeping with Cutter’s map/theory those events are now part of historical fact – and always have been. They apparently did no lasting damage to the fabric of time. (Although, how would we know it if it had?) If these anomalies have been opening throughout human history, can we not also assume that they’ve been happening throughout the entire 4.6 billion year history of Earth? Are Permian creatures walking through anomalies into the Cretaceous? And why is it that creatures seem to come through the anomalies to our time, but for the most part, things in our time don’t go into the anomalies? If an anomaly opened on a farm in Surrey, would cows be just as likely to walk through into the past as a dinosaur would into the present?

    Should we be wondering if anomalies are more one-way than another? Consider, they’re highly magnetic – hold up a spoon and it shoots into the anomaly. What’s it do on the other side? Shoot back through? If not, what does that mean? What would have happened to Sir William in that armor suit of his?

    Oh, wait, they’re anomalies they don’t have to behave in a consistent fashion.

    Let’s turn to the ARC team then and their procedural operations. Can we at least assume that they keep all their needed gear in their vehicles, ready for a scramble? If so, why don’t they get it out of the car when they go to investigate? They always seem to arrive completely unprepared.

    Clearly, from the way Dr. Page has to trick her way through the anomaly, the ARC has standing orders not to go through. That’s probably a good idea when it could lead to the destruction of time. In that case, shouldn’t they also have a standing rule to put creatures back through the anomaly? Wouldn’t Becker know that? Why was he planning on shooting the dinosaur? Would Abby have really shot him with the tranquilizer dart? Does she realize (and as a zoologist, she should) that a dosage big enough for the dracorex would surely kill Becker?

    Speaking of Dr. Page going through the anomaly. First she lies to the guard, telling him she has authorization, then on the way out she tells him that he never saw her. Shouldn’t that have been a tip off that she BSed her way in in the first place? Shouldn’t he report that to someone? At least she showed enough curiosity to want to defy orders to go through the anomaly and research. That kind of spirit of inquiry is completely missing in everyone else on the team.

    Looks like the end is heating up next week – an expedition into the future to see the aftermath of the destruction of the human race. (Unfortunately, it looks like they’ll be chasing Abby’s good-for-nothing-plot-complication-of-a-brother Jack.)

  • Just when you thought it couldn’t get worse… Primeval – Series 3, Episode 6, Review (Spoilers)

    Can no one put two and two together?

    Synopsis

    Quinn and Becker test the ARC’s security, unknown to them, Christine Johnson and her soldiers watch everything through concealed surveillance cameras.

    Meanwhile, Conner and Page continue to study the artifact. Page gets the idea of passing a laser through it, and, after various attempts, the artifact projects a 3D image of something that looks very much like Cutter’s modern-art piece of an anomaly map. Christine sees this and launches a takeover of the ARC.

    Quinn discovers one of the cameras and they realize the game is up. Becker helps Quinn, Conner, Abby and Page, along with the artifact, escape to a safe house Lester has arranged, just as Christine’s people take over the ARC and assume command.

    Lester is fired and Becker is taken into Christine’s team.

    At the safe house, there’s a mystery. It hasn’t been used in years, since before the war. It was a research base for a group of scientists working on a top secret project, who left the place as if they expected to come back, but never did.

    Conner discovers the dead body of one of the scientists in a nearby bunker, trapped in a small observation room. His coded diary, which Page easily decodes, ends on the note, “oh no they’re back” or something like that.

    With nothing better to do, everyone gets dressed up in period costumes and dances the afternoon away. Unbeknownst to them, and anomaly opens up right in the very bunker where they found the dead scientist and the area is now swarming with Terror Birds.

    The anomaly detector at the ARC alerts Christine and her staff, and a team are dispatched. Meanwhile, our heroes battle it out, unarmed against the ferocious birds.

    Christine’s team is killed by the birds, but Quinn manages to lure them back into the anomaly, which conveniently closes.

    Due to some unguarded words spoken by Christine to Becker, who recorded her, the minister has her removed and Lester is put back in charge of the ARC.

    All’s well that ends well, as the episode closes with a rendition of “Somewhere over the Rainbow.”

    (Oh, and Abby’s little brother holds a poker party while she’s out and looses Rex in a hand of poker.)

    Analysis

    Do I have to start every analysis section with the sentence, “There’s a lot wrong with the episode?”

    So, let’s dwell on the good for a moment or two. It was a bit of an action-packed story, which. on that level, was rather entertaining.

    So much for the good part.

    Ignoring all the stuff going on with political intrigue and costume drama, does no one on the ARC staff have enough of a brain to realize that the safe house having an anomaly cannot possibly be a coincidence?!?!?! Is is not obvious that scientists either died because of the anomaly – or went through it, never (yet) to return? Does it not seem very, very, very, very, very suspicious to them that this was an laboratory working on top secret defense projects and yet nobody ever apparently bothered to even check up on them and clean up the food left on the tables? Or that this is a safehouse from Lester’s Ministry?!?!?!?The same people who brought you Christine Johnson – who knows more about the anomalies than the ARC people?

    Hello! Even in this corner of the universe, 2+2=4, and yet no one mentioned any notion that there could be a connection between the safehouse and the anomalies, or the scientific research and the anomalies. This might even be the source of the anomalies to begin with.

    Instead we get a heartwarming return of Lester and lots of applause and a musical interlude. What’s up with that?

    Next week looks even better, a medieval knight and a dragon. (No, I’m not making that up.)

  • Will “Bad Wolf” Mr. Saxon Torch Wood into Ashes (to Ashes)?

    It’s just a question that’s been bugging me…

  • Apple = Fail

    How’s that for a sensationalist headline?

    OK, Apple for all their attention to detail and all their attention to asthetics continues to miss on one major point:

    None of their web pages auto detect iPhones and format them in an iPhone friendly fashion.

    That seems unconscionable.

  • Are they just trying to alienate me? – Primeval – Series 3, Episode 5 – Review – Spoilers

    I’ll never look at athlete’s foot the same way again.

    Synopsis

    Rich Sir Richard has a groovy pad in the city overlooking the Thames, his subordinate can’t tell the difference between a piece of modern art and anomaly. He’s sucked into another time but not before he deposits spores he’s been infected with on the floor. The anomaly disappears, trapping him – presumably forever.

    Sir Richard later touches the spores and becomes infected, heading into the busy, yet picturesque, St. Pancras train station.

    Back at the ARC, Conner’s little pets have chewed a cable, deactivating the anomaly detector. Once reconnected it registers the now-closed anomaly, which the team investigates. Conner takes a sample of the spores back to the ARC. At the same time, Danny Quinn breaks into the ARC trying to join the team.

    At the ARC, Conner discovers the spores are virulent and contains them in the new environmental greenhouse.

    Christine Johnson arrives at the ARC, looking for the artifact. Lester denies any knowledge of it. While Lester is distracted, Christine’s people snoop around and one becomes infected with the spores. When Conner and Danny try to rescue him, it’s too late. At first they think he is dead, but then he resurrects as a walking fungus monster. Conner thinks he kills the creature with heat and Danny, now somewhat improbably trusted with the task, heads to St. Pancras with flame throwers to destroy the creature Sir Richard has become.

    Conner then learns heat helps the fungus spread and that freezing cold is the answer.

    Danny captures the creature and brings it back to the ARC, where they’ve laid a freezing trap.

    Jenny is nearly killed by both the creature and the freezing cold, but in the end (barely) survives. So, she quits the team and Danny is put in charge.

    Analysis

    Just another day in the completely illogical world of Primeval.

    I’m not going to ask questions like, “What kind of life cycle does this fungus creature have? What does it gain by morphing into a man-like monster? What was the monster trying to do? Was it going to do the nasty with Jenny or was it just going to explode and spore on her? What kind of environmental pressures and conditions would lead to such a fungus to evolve? How did a walking collection of fungus make noises? It seemed like very little of Sir Richard was left, did it still have lungs? Why?”

    OK, I’ll ask that question. WHY? WHY? WHY?

    But most of all I’ll ask, “Why are they trying to ruin the show by having Jenny leave?” They’d just got her back to being Claudia-like and now she’s gone. Does anyone else buy this whole, “I used to be Claudia Brown now I don’t know who I am” nonsense? Obviously she doesn’t get it. No, she was never Claudia Brown. She is a genetically identical person in a different timeline. She’s no more Claudia Brown than identical twins are the same person.

    At least Lester is getting a few good lines. He’s going to need them, pretty soon he’s going to have to carry the show by himself.

    Here’s another one that frightens me, Abby’s little brother, Jack. So, what’s his point for being in the show? You never pay money for an actor/character if you’re not going to use them. Is it just to get Conner into a new apartment, and why would they want to do that. Surely Conner’s place for living is irrelevant. Is Jack going to be the next newest team member or is he going to be be eaten by something nasty so that Abby can decide to leave the team, too? Or… oh, no, no, no… what if Abby is killed and he takes her place on the team. That’s really adding insult to injury!

    Here’s a couple things to throw out just to nit pick (and to avoid really tearing into the fungus monster). Detector? Cable chewed through? No alarms are sounded and yet, somehow the recording device still worked? I guess that idea is OK if you think of the equipment like a VCR, which typically traps the signal before reaching the final destination (the TV), but that’s not typically how ad-hoc devices like the anomaly detector are thrown together, which would do primary function first (hence the name, “primary“) and recording for analysis second.

    This is a perfect example of what I mentioned in my previous review. Plot-wise, they’ve buttoned themselves into a corner. Without a stupid happening like this cable incident, they know too much, too soon about the appearance of the anomalies to tell a story that requires a “stealth” invasion through an anomaly. From now on – if there is an “on” in the future – we’re going to be subjected to an unavoidable stream of technical faults, accidents and sabotage to move the plots along.

    Here’s another one: What’s that environmentally-controlled greenhouse room for? I mean apart from it’s immediate, one-time, disposable need in this particular episode? Has there ever been any indication that the ARC is attempting to collect samples from the past for research? The only specimens that I’m aware of are those that have become trapped – typically, they ones that come through and get trapped are not plants.

    So here’s my last thought, my last glimmer of hope for Primeval not that both Jenny and Claudia are gone. The producers have done something admirable this year, they’ve eliminated the characters slowly, rather than waiting for the season finale. That’s depressing, because their “end” comes sooner, but plot-wise, it’s more dramatic and surprising, because everybody knows that characters (and more specifically actors) leave at the end of the season, not in the middle.

    But why is that? It’s because television is a structured environment, actors are hired, usually, for whole series/seasons – typically, they’re paid for it even if they’re written out early – consequently, they’re not written out early.

    I said “glimmer of hope,” didn’t I? Yes, I think we can actually count on that structure to return Jenny (or perhaps even Claudia), and even Cutter and maybe even Stephen for the series finale in about 2 or 3 episodes time. It’ll be a final farewell, and it will obviously have to involve some jiggery-pokery with the timelines again – which will perhaps “fix” some of the plot traps they’ve built into this timeline – assuming the series continues.

    I wonder if it is significant that Quinn and Cutter never met?