Skip to main content

It's Friday I'm in Love

I booked tickets for the wrong night and I’m so glad I did! The Cure announced two dates at the Hammersmith Apollo in December and I was ready at 9am on the day they went on sale as if I failed to get them there was no way Charlotte would forgive me. When the list of gigs came up I selected the latest one as I assumed that would be the least popular. Little did I know that they’d added a third date last minute and that was the date I had bought tickets for. After the initial panic with what I thought was the wrong date on the confirmation email I decided it didn’t matter.

After the second of the three nights I looked up the setlist online. Charlotte has told me of a number of bands she wants to see and asked me to look out for tickets. The first was Placebo. I’m not the biggest Placebo fan ever, but I thought as long as they play Nancy Boy, which I like, it’ll be fine. They didn’t. I’m not the biggest fan of the Cure, but I love Friday I’m in Love. They didn’t play it on either of the first two nights, so I wasn’t really looking forward to the gig.

We arrived in time for the support band, The Trees. They started off well, but became very inconsistent in their playing and the lead singer was a pretentious muppet. I don’t think we’ll be bothering with them again.

The Cure came on soon after. They were good from the start. I knew very little that they played up until In Between Days but it was all great. We were in seats and most people were stood up around us. Some people had just sat down when Robert Smith said “I know I’m going to regret this!” and started playing Friday I’m in Love. We really weren’t expecting it to be played and were both over the moon. It’s the only song we stood for.

The remainder of the first set consisted of 23 songs. The last 10 or so were quite heavy by Cure standards and really amazing. I was surprised how many I recognised and there were quite a few from Wish, which is an album I really like. The four encores consisted of more songs I didn’t know plus all the classics you’d expect like Boys Don’t Cry and Love Cats. All played brilliantly. In fact in the end the only thing that could have made it better for me would have been Killing an Arab and Letter for Elise.

(Thanks to Penny Batson for the photo).

Comments

Popular posts from this blog

Write Your Own Load Balancer: A worked Example

I was out walking with a techie friend of mine I’d not seen for a while and he asked me if I’d written anything recently. I hadn’t, other than an article on data sharing a few months before and I realised I was missing it. Well, not the writing itself, but the end result. In the last few weeks, another friend of mine, John Cricket , has been setting weekly code challenges via linkedin and his new website, https://codingchallenges.fyi/ . They were all quite interesting, but one in particular on writing load balancers appealed, so I thought I’d kill two birds with one stone and write up a worked example. You’ll find my worked example below. The challenge itself is italics and voice is that of John Crickets. The Coding Challenge https://codingchallenges.fyi/challenges/challenge-load-balancer/ Write Your Own Load Balancer This challenge is to build your own application layer load balancer. A load balancer sits in front of a group of servers and routes client requests across all of the serv

Catalina-Ant for Tomcat 7

I recently upgraded from Tomcat 6 to Tomcat 7 and all of my Ant deployment scripts stopped working. I eventually worked out why and made the necessary changes, but there doesn’t seem to be a complete description of how to use Catalina-Ant for Tomcat 7 on the web so I thought I'd write one. To start with, make sure Tomcat manager is configured for use by Catalina-Ant. Make sure that manager-script is included in the roles for one of the users in TOMCAT_HOME/conf/tomcat-users.xml . For example: <tomcat-users> <user name="admin" password="s3cr£t" roles="manager-gui, manager-script "/> </tomcat-users> Catalina-Ant for Tomcat 6 was encapsulated within a single JAR file. Catalina-Ant for Tomcat 7 requires four JAR files. One from TOMCAT_HOME/bin : tomcat-juli.jar and three from TOMCAT_HOME/lib: catalina-ant.jar tomcat-coyote.jar tomcat-util.jar There are at least three ways of making the JARs available to Ant: Copy the JARs into th

RESTful Behaviour Guide

I’ve used a lot of existing Representational State Transfer (REST) APIs and have created several of my own. I see a lot of inconsistency, not just between REST APIs but often within a single REST API. I think most developers understand, at a high level, what a REST API is for and how it should work, but lack a detailed understanding. I think the first thing they forget to consider is that REST APIs allow you to identify and manipulate resources on the web. Here I want to look briefly at what a REST API is and offer some advice on how to structure one, how it should behave and what should be considered when building it. I know this isn’t emacs vs vi, but it can be quite contentious. So, as  Barbossa from Pirates of the Caribbean said, this “...is more what you’d call ‘guidelines’ than actual rules.” Resources & Identifiers In their book, Rest in Practice - Hypermedia and Systems Architecture (‎ISBN: 978-0596805821), Jim Webber, Savas Parastatidis and Ian Robinson describe resources