FILM FORTNIGHT: The History Boys

OK, back to films this time, specifically The History Boy. Something of an old favourite of mine, the kind of thing I occasionally catch myself running through in my head. And with the death just a few weeks ago of one of the film’s stars Richard Griffiths, it seemed only right to turn my gaze to it now. So…,

There is a particular type of film that attempts to be compelling by getting rid of almost all the distractions of plot in favour of plundering the rich resources posed by character, behaviour, context and emotional development. The storyline of such films tend to be based around small scenes that mean very little on their own but serve largely as a framework for the important parts of the film itself to play out around them; a nice idea, if it can be pulled off. Done wrong and we are left with two hours of tedium whilst a bunch of theatrical hipsters pretend to hold the emotional and intellectual high ground, and a lot is left down to the sheer ability of the actors concerned to execute their roles; it’s one of the reasons why reading Shakespeare out of a textbook is so much less compelling than a well-executed live performance, and why so many schoolchildren get turned off by it. That, combined with the overly florid Elizabethan language, and the fact that they have to study Twelfth Night.

The History Boys is, thankfully, burdened by neither of the latter two issues, but its format makes the former a major point of potential worry; set in a Sheffield school in 1983, our story opens with eight history student getting their A-level grades, and very well they’ve done too. For this reason, the school (and its rather ambitious headmaster, Clive Merrison’s Felix) encourages them to apply to read history at Oxbridge, for which they need to take an entrance exam that will require another term’s schooling and revision. The other main players are their teachers: history teacher Mrs. Lintott (Francis de la Tour), specialist exam-preparation teacher Irwin (Stephen Campbell Moore) and the colourful General Studies teacher Hector (Griffiths). “General Studies” here being taken as a rather loose term.

The teachers are the main source of the film’s drama; Irwin, recruited at the start of the film, offers up a totally different approach to the boys’ previous teaching style and, indeed, a different perspective on history itself, which results in one or two moments that strike a little close to the bone for some. Then we have Hector, who doesn’t teach so much as mess around in a classroom for a couple of hours, before offering the boys a lift home on his moped and casually groping them along the way. Whilst the boys have an amicable relationship with him over this, it’s kind of obvious to see that this isn’t going to end well.

It should be pointed out that all of this is established within the first 20 minutes of the film, and indeed there is practically no plot movement in the centre of the film; it is all left open purely for character interaction and development. This ‘interaction’ is frequently rather risqué in nature, but for such a serious, deeply emotional film it’s surprising the extent to which the film seems determined to have fun and enjoy itself; credit must go to Alan Bennett (the writer of the original play) for managing to inject so much humour into the piece. The actors also appear suffused with the spirit of the thing, and turn out some wonderful performances; special mention must go to Dominic Cooper for a starring turn as the sexually-charged, rather aggressively bright Dakin, and Griffiths, who at no point in the entire film looks like he’s acting rather than just doing what comes naturally. However, none of that changes the fact that this is a film built around practically nothing happening, and looking back now I struggle to visualise how the rather confused web of scenes fit together, and how indeed the film manages to make any sense at all.

However, no matter how much I try to apply fridge logic to the situation, the fact is that it simply does; it’s just that well done. Nicholas Hytner’s film is so engrossing and insidiously enthralling that everything becomes just about the characters, as if one is in fact part of this eclectic little group and this is your life playing out around you. These are your friends, your mentors, the people you laugh with, the people you cry over; it’s a slice of life at its most real yet most compelling, and most beautiful. 99 times out of 100 this sort of thing surely wouldn’t work, but by its being sit at a point in these boys’ lives that is so pivotal, and by framing it in such a fantastically well-executed manner, the realism of the event manages to feel purposeful rather than meandering. There’s something deeply satisfying, like watching an old friend come good, about watching the way these characters develop and grow over 100 minutes’ screentime, and it’s all very… right, somehow. And that’s even before we get to the ending; a tear-jerking third act that manages to hit every point on the emotional spectrum before cascading into a bittersweet crescendo of beauty and hope that would strike dumb even the most loquacious of critics. I could spend all day analysing every little intricate moment of these few minutes, every emotional tug and every moment of simultaneous hope and pain, but am restricted by both my wish not to spoil anything and my wish not to write something 5000 words long.

The History Boys is many things; relatively slow, rather lacking in plot and based around a decidedly unconventional idea being among them. But it honestly doesn’t matter; when a film attempts to mean this much, and pulls it off with such spectacular aplomb, any attempt to degrade it somewhat misses the point. If you haven’t watched it yet, then you’re missing out on something special.

Advertisement

Practical computing

This looks set to be my final post of this series about the history and functional mechanics of computers. Today I want to get onto the nuts & bolts of computer programming and interaction, the sort of thing you might learn as a budding amateur wanting to figure out how to mess around with these things, and who’s interested in exactly how they work (bear in mind that I am not one of these people and am, therefore, likely to get quite a bit of this wrong). So, to summarise what I’ve said in the last two posts (and to fill in a couple of gaps): silicon chips are massive piles of tiny electronic switches, memory is stored in tiny circuits that are either off or on, this pattern of off and on can be used to represent information in memory, memory stores data and instructions for the CPU, the CPU has no actual ability to do anything but automatically delegates through the structure of its transistors to the areas that do, the arithmetic logic unit is a dumb counting machine used to do all the grunt work and is also responsible, through the CPU, for telling the screen how to make the appropriate pretty pictures.

OK? Good, we can get on then.

Programming languages are a way of translating the medium of computer information and instruction (binary data) into our medium of the same: words and language. Obviously, computers do not understand that the buttons we press on our screen have symbols on them, that these symbols mean something to us and that they are so built to produce the same symbols on the monitor when we press them, but we humans do and that makes computers actually usable for 99.99% of the world population. When a programmer brings up an appropriate program and starts typing instructions into it, at the time of typing their words mean absolutely nothing. The key thing is what happens when their data is committed to memory, for here the program concerned kicks in.

The key feature that defines a programming language is not the language itself, but the interface that converts words to instructions. Built into the workings of each is a list of ‘words’ in binary, each word having a corresponding, but entirely different, string of data associated with it that represents the appropriate set of ‘ons and offs’ that will get a computer to perform the correct task. This works in one of two ways: an ‘interpreter’ is an inbuilt system whereby the programming is stored just as words and is then converted to ‘machine code’ by the interpreter as it is accessed from memory, but the most common form is to use a compiler. This basically means that once you have finished writing your program, you hit a button to tell the computer to ‘compile’ your written code into an executable program in data form. This allows you to delete the written file afterwards, makes programs run faster, and gives programmers an excuse to bum around all the time (I refer you here)

That is, basically how computer programs work- but there is one last, key feature, in the workings of a modern computer, one that has divided both nerds and laymen alike across the years and decades and to this day provokes furious debate: the operating system.

An OS, something like Windows (Microsoft), OS X (Apple) or Linux (nerds), is basically the software that enables the CPU to do its job of managing processes and applications. Think of it this way: whilst the CPU might put two inputs through a logic gate and send an output to a program, it is the operating system that will set it up to determine exactly which gate to put it through and exactly how that program will execute. Operating systems are written onto the hard drive, and can, theoretically, be written using nothing more than a magnetized needle, a lot of time and a plethora of expertise to flip the magnetically charged ‘bits’ on the hard disk. They consist of many different parts, but the key feature of all of them is the kernel, the part that manages the memory, optimises the CPU performance and translates programs from memory to screen. The precise translation and method by which this latter function happens differs from OS to OS, hence why a program written for Windows won’t work on a Mac, and why Android (Linux-powered) smartphones couldn’t run iPhone (iOS) apps even if they could access the store. It is also the cause of all the debate between advocates of different operating systems, since different translation methods prioritise/are better at dealing with different things, work with varying degrees of efficiency and are more  or less vulnerable to virus attack. However, perhaps the most vital things that modern OS’s do on our home computers is the stuff that, at first glance seems secondary- moving stuff around and scheduling. A CPU cannot process more than one task at once, meaning that it should not be theoretically possible for a computer to multi-task; the sheer concept of playing minesweeper whilst waiting for the rest of the computer to boot up and sort itself out would be just too outlandish for words. However, a clever piece of software called a scheduler in each OS which switches from process to process very rapidly (remember computers run so fast that they can count to a billion, one by one, in under a second) to give the impression of it all happening simultaneously. Similarly, a kernel will allocate areas of empty memory for a given program to store its temporary information and run on, but may also shift some rarely-accessed memory from RAM (where it is accessible) to hard disk (where it isn’t) to free up more space (this is how computers with very little free memory space run programs, and the time taken to do this for large amounts of data is why they run so slowly) and must cope when a program needs to access data from another part of the computer that has not been specifically allocated a part of that program.

If I knew what I was talking about, I could witter on all day about the functioning of operating systems and the vast array of headache-causing practicalities and features that any OS programmer must consider, but I don’t and as such won’t. Instead, I will simply sit back, pat myself on the back for having actually got around to researching and (after a fashion) understanding all this, and marvel at what strange, confusing, brilliant inventions computers are.

Why we made the bid in the first place

…and now we arrive at the slack time, that couple of weeks between the end of the Olympics and start of the Paralympics where everyone gets a chance to relax, wind down a little, and take time away from being as resolutely enthusiastic and patriotic as we have been required to for the last two weeks (or a lot longer if you factor in the Royal Wedding and Queen’s Jubilee). However, it’s also an undoubtedly good time to reflect on what have been, whatever your viewpoint, a very eventful last couple of weeks.

To my mind, and certainly to those of the Olympic organisers, these games have been a success. Whether you feel that it was all a colossal waste of money (although how anyone can think that of an event featuring the Queen parachuting out of a helicopter alongside James Bond is somewhat puzzling to me), or the single most amazing thing to grace the earth this side of its existence (in which case you could probably do with a nice lie down at the very least), its motto has been to ‘Inspire a Generation’. From a purely numerical perspective, it appears to have worked- sports clubs of all sorts up and down the land, even in niche areas such as handball, have been inundated with requests from enthusiastic youngsters after membership, and every other sentence among BBC pundits at the moment appears to include the phrase ‘the next Mo Farah/Usain Bolt/Ben Ainslie/Chris Hoy’ (delete as applicable).

However, I think that in this respect they are missing the point slightly, but to explain what I mean I’m going to have to go on a bit of a tangent. Trust me, it’ll make sense by the end.

So…, what is the point of sport? This has always been a tricky one to answer, the kind of question posed by the kind of awkward people who are likely to soon find an answer flying swiftly towards them in foot-shaped form. In fact, I have yet to hear a convincing argument as to exactly why we watch sport, apart from that it is for some unexplained reason compelling to do so. But even if we stick to the act of participation, why do we bother?

Academics and non-sportspeople have always had a whole host of reasons why not, ever since the days that they were the skinny, speccy one last to be picked in the dreaded playground football lineup (I’ve been there- not fun). Humans are naturally lazy (an evolutionary side-effect of using our brains rather than brawn to get ahead), and the idea of running around a wet, muddy field expending a lot of precious energy for no immediately obvious reason is obviously unappealing. Then we consider that the gain of sport, the extent to which it contributes to making the world a better place is, in material terms at least, apparently quite small. Humankind’s sporting endeavours use up a lot of material for equipment, burn a lot of precious calories that could be used elsewhere around the world to help the starving, and often demand truly vast expenses in terms of facilities and, in the professional world, salaries. Even this economic consideration does not take into account the loss in income presented by the using up of acres upon acres of valuable land for sports facilities and pitches. Sport also increases the danger factor of our lives, with a heavy risk of injury ranging from minor knocks to severe, debilitating disabilities (such as spinal injury), all of which only adds to the strain on health services worldwide and further increases the ‘cost’ of sport to the world.

So why do we bother with it at all? Why is it that the question governments are asking themselves is “why aren’t enough kids playing sport?” rather than ‘why are so many of them doing so’? Simple reason is that, from every analytical perspective, the benefits of sport far outweigh the costs. 10% of the NHS’ entire budget is spent on dealing with diabetes, just one of a host of health problems associated with obesity, and if just half of these cases were to disappear thanks to a healthier lifestyle it would free up around an extra £5 billion- by 2035, diabetes could be costing the country around £17 billion unless something changes. Then there are the physical benefits of sport, the stuff it enables us to do. In the modern world being able to run a kilometre and a half in four minutes might seem like a pointless skill, but when you’re being chased down the street by a potential mugger (bad example I know, but it’ll do) then you’d definitely rather be a fit, athletic runner than slow, lumbering and overweight. Sport is also one of the largest commercial industries on earth, if not on a professional level then at least in terms of manufacture and sale of equipment and such, worth billions worldwide each year and providing many thousands or even millions of jobs (although some of the manufacturing does admittedly have a dubious human rights record). The health benefits of sport go far beyond the physical & economic too, as both the endorphins released during physical activity and the benefits of a healthy lifestyle are known to increase happiness & general well-being, surely the ultimate goals of all our lives. But perhaps most valuable of all is the social side of sport. Whilst some sports (or, more specifically, some of the &%^$£*)@s involved) have a reputation for being exclusive and for demoralising hopeful youngsters, sport when done properly is a powerful force for social interaction & making friends, as well as being a great social equaliser. As old Etonian, heir his father’s baronet and Olympic 110m hurdles finalist Lawrence Clarke recently pointed out in an interview ‘On the track it doesn’t matter how rich your family is or where you’ve come from or where you went to school; all that matters is how fast you can get to the finish line’ (I’m paraphrasing, but that was the general gist). Over the years, sport has allowed mixing between people of a myriad of different genders and nationalities, allowing messages of goodwill to spread between them and changing the world’s social and political landscape immeasurably. This Olympics was, for example, the first in which Palestinian and Saudi Arabian women competed, potentially paving the way for increased gender equality in these two countries.

Clearly, when we all get behind it, sport has the power to be an immense tool for good. But notice that nowhere in that argument was any mention made of being the physical best, being on top of the world, breaking world records because, try as one might, the value of such achievement is solely that of entertainment and the odd moment of inspiration. Valuable though those two things surely are, they cannot begin to compare with the incalculable benefits of a population, a country, a world united by sport for the good of us all. So, in many respects, the success of an Olympic games should not be judged by whether it inspires a new superstar, but rather by how it encourages the guy who turns up with him at that first training session, who might never be that good a competitor… but who carries on turning up anyway. The aim of top-flight sport should not be to inspire the best. It should simply be to inspire the average.