Skip to main content

Threshold

Threshold are everything I love abut music. They're everything I look for in a band: drama, passion. big heavy guitars, Gilmour solos, strong vocals that compliment the music like another instrument and layers of keyboards.

Forget Mercury May and even Lennon McCartney, Groom West is the best there is. I've always been a fan of big dramatic rock. Starting with Alice cooper and then progressing to Marillion, Pink Floyd, Dream Theatre, Evegrey and finally Threshold. They beat all the others hands down, even their modern contemporariness such as Stratovarius, Evergrey and Pagan's Mind.

Threshold are a progressive heavy metal band through and through. They're not heavy like Hypocrisy or Deicide, but they're closer to that than they are to Marillion or Pink Floyd. As a guitar writer and player I rate Groom up there with Gilmour and no one on this earth plays or writes for guitar like Gilmour (Knopfler, Clapton, May and Hendrix, although superb, cannot get close in my opinion).

Andrew “Mac” McDermott is a superb singer. I've always loved strong vocals. Until I discovered progressive metal I thought the strong female vocals in bands such as Nightwish and Within Temptation were as good as it could get. I've only seen Threshold with Mac singing once. Shortly before I was going to see them for the second time (having planned a very short honeymoon so that I could be back in time) he left the band to be replaced by original singer Damien Wilson. I have to admit that I was devastated. Mac's vocals are as much a part of the band for me as Carl Groom's guitar playing. The three pre-Mac albums, two of which featured Wilson, are not good albums musically and even less so vocally. However, Damien Wilson has performed superbly on both the occasions I have seen him with Threshold. I'm reserving final judgement until they record a new album with him, but I'd love to see Mac back in the band even more than I'd like to see Fish back in Marillion (even though I love everything Steve Hogarth did with them up until This Strange Engine), Freddie Mercury alive and back in Queen and all the members of Pink Floyd alive and back together (maybe Sebastian Bach back in Skid Row is pushing it?).

I discovered Threshold at the first ever ProgPower UK in 2006. Every band, except the head liners Therion, were new to me and I picked up all of their albums shortly after the gig. Firewind opened and blew everyone, including me, away and I expected them to have the best albums too, but it wasn't so. I spend most of the following year, including a summer working in Munich and an autumn and winter working at Canary Wharf listening to Threshold and not much else. They're that good. At about the same time I discovered Alistair Reynolds and the two go hand in hand and one always reminds me of the other.

Their best album is Critical Mass even though, like all of their albums, it's a bit preachy lyrically in places. The stand out song is Choices, but there isn't a bad song on the album. In fact there isn't a bad song on any album from Clone through to the most recent Dead Reckoning.

Comments

  1. I've heard and read in several places that Subsurface was widely recognised by fans of the band as a weaker album than its predecessors and it's follow up Dead Reckoning. Subsurface was the first Threshold album I heard and maybe that tints my view slightly, but it's just as good as all the other "Mac" albums.

    ReplyDelete

Post a Comment

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 resour...