Menu

Archive: February 2012

Mathworks Sent Me a Rubik's Cube

So I'm sitting in my office, bashing away at my keyboard, when a small parcel arrives on my desk. I wasn't expecting anything, I'm new here so it wouldn't be work-related, it wasn't just a letter but a small parcel containing an object quite clearly in the third dimension. Who on Earth would...

Don't Copy That Floppy

Don't Copy That Floppy was an anti-copyright infringement campaign run by the Software Publishers Association beginning in 1992. The video for the campaign, starring M. E. Hart as "MC Double Def DP," was filmed at Cardozo High School in Washington, D.C. and produced by cooperation between the SPA,...

XP Manchester XL — Release Early, Release Often

Yesterday was XP Manchester's XL event – a Saturday coding session of pairing, katas and a team bot tournament hosted at the MadLab. I managed to persuade Kris, a friend I used to work with, to come along – it's his first experience of this sort of thing, so I'm really glad he got introduced to...

Ternary Operator and Other Shorthand Code

The ternary operator is a shorthand way of writing an if/else statement where a particular action occurs in both cases, but the value associated with that action depends on the condition stated. For example, the traditional if/else construct (C/Java/JavScript syntax): if (a > b) { result =...