Hugh Cornwell @ Cork, Ireland 25th May 2016

Staying at the Jury’s Inn in the centre of Cork we’ve not far to walk to reach the venue. In fact it’s so close that we stop off at a couple of pubs along the way (rude not to). Having spent the bulk of that day in the delightful Kinsale we were rounding off a perfect day with drinks, food and a Hugh gig.

Arriving at the venue shortly after doors opening at 8pm I find we instantly double the attendance. Heading to the bar for a couple of glasses of wine I’m informed that Hugh would be on at 8.45 and the bar would be closed whilst he was onstage. Fine by me, I’ll get this wine down me then head for another before he hits the stage. 8.45 arrives and there’s no sign off Hugh. On the upside however the crowd has increased dramatically and if everyone was sat down then all seats would be taken. It’s a good solid turn out for a midweek gig with little publicity.



Hugh walks through the crowd and takes to the stage at around 9.10. It’s a similar setlist to what he toured back in Blighty towards the end of last year. I was expecting he would do that not having played this set to the Irish fans (they were in for a treat). The set is a potted history of Stranglers right through to current day solo stuff. He starts with Strange Little Girl and ends with the yet to be recorded Grand Dame (off the forthcoming “Villains” album). The crowd are very receptive and having a good old sing-a-long.



hugh_cork1




After the gig Hugh fronts the merch stand and is there for any fan who wants to chat. I wait around to have a chat with him and he’s trying to hint for a drink “*clears throat* Ooo I could do with a drink” all fans seem to ignore his repeated calls. “Hugh can I get you a beer?” “Jim! thought you’d never ask” – I grab him an ale (it’s the least I can do) and we have a catch up. Another classic Hugh gig!.



hugh_cork3

hugh_cork4



Credit to Mick on the forums for a much better review and setlist
http://www.themeninblack.co.uk/forums/viewtopic.php?f=3&t=21534


01-Strange Little Girl 02-Get A Grip On Yourself 03-Dagenham Dave 04-Outside Tokyo 05-Duchess 06-Second Coming 07-Tramp 08-Never Say Goodbye 09-No Mercy 10-Always The Su 11-Break Of Dawn 12-Man Of The Earth 13-First Bus To Babylon 14-Black Hair Black Eyes Black Suit 15-Lay Back On Me Pal 16-Under Her Spell 17-Beat Of My Heart 18-I want One Of Those 19-La Grande Dame 20-Nice N Sleazy 21-Cadiz 22-Golden Brown

Twitter Bot with Python

twitter_logoPretty easy really:

    1. Create your twitter account for your bot.
    2. Go to dev.twitter.com
    3. Register your app
    4. Gain your app keys
    5. In your Python script “import tweepy” (you may need to pip install tweepy first).
    6. Add a function to perform the tweet
    7.  
       

      def tweet(message):
      #enter the corresponding information from your Twitter application:
      CONSUMER_KEY = "" #keep the quotes, replace this with your consumer key
      CONSUMER_SECRET = "" #keep the quotes, replace this with your consumer secret key
      ACCESS_KEY = "" #keep the quotes, replace this with your access token
      ACCESS_SECRET = "" #keep the quotes, replace this with your access token secret
      auth = tweepy.OAuthHandler(CONSUMER_KEY, CONSUMER_SECRET)
      auth.set_access_token(ACCESS_KEY, ACCESS_SECRET)
      api = tweepy.API(auth)
      api.update_status(message)

    8. Simply then call your function passing in the message you wish to Tweet.

    Kudos to http://www.dototot.com/how-to-write-a-twitter-bot-with-python-and-tweepy/

Using Deploy Keys with TeamCity and Git

Had a number of TeamCity projects connecting to the Git repo using my user account.  Was thinking I should really request for service accounts to do the connection.  This becomes a pain when I change my user password as I have to remember to go in to TeamCity and Octopus Deploy to update the passwords on anything using my user account. Really bad practice!

After doing a bit of digging I stumbled across “Deploy Keys” whereby you can gen ssh keys to configure Git and TeamCity to play nicely with each other so that deploy keys are then used to establish a read only connection from Team City to Git to pull down the repository.

Steps as follows:

  1. Generate ssh keys  ssh-keygen -t rsa -C “your.email@example.com”
  2. Go to Git project settings.  Click on Deploy Key – Add the public key – I had to paste the full contents of public key here although I believe some versions will allow upload of file.
  3. Go to TeamCity.  Click on the Project.  “Edit Project Settings”…….”SSH Keys”…..”Upload SSH Key” – Upload the private SSH key.
  4. Now go into the Team City project settings and “Edit Configuration Settings” ….. “Version Control Settings” …..”Edit”…..Under “Authentication Settings” change the “Authentication Method” to “Uploaded Key” and select the “Uploaded Key” to the key you uploaded in step 3.
  5. Depending on how you had the Version Control Settings configured previously you may need to now switch to the SSH version of the “Fetch URL” in the configuration settings.

All done.  No more dodgy personal accounts used for TeamCity and Git interaction.

Wussy – The Crescent Working Mens Club – York – 29th April 2016

Last (and only time previously?) time Wussy toured the UK was about 4 years ago.  They played York at the time at the now defunct Stereo venue.  Once heralded as “the best band in America” they’ve never really broke the UK, evident by the 20 fans bothering to turn up last time I saw them.  Although tonight the numbers seemed to have doubled Wussy are still relatively unknown in the UK.  They’ve released a couple of albums since then and tonight they’re promoting their recent “Forever Sounds” album which is a return to form IMO.

 

Tonight’s venue is great.  It’s a typical old Working Men’s club, no fuss bar, a bit of bunting up across the stage, nice big dancefloor and a stage that’s probably seen many a tombowler draw and bingo nights.

 

wussy_york

Highlights for me:

new tracks She’s Killed Hundreds and Hello, I’m a Ghost sounding particularly good live. Lisa Walker’s vocals are in fine fettle on To the Lightning.  The band end with Maglite and a cover version (for the recent RSD 2016) of New Order’s Ceremony.  It ends there but there’s something rather fitting yet bizarre about an American band covering a Joy Division/New Order song in a Northern Working Mens Club.

Configuring Azure web and SQL UK Culture

For MVC 5 you’ll need the following:

 <configuration>
    <system.web>
        <globalization uiCulture="en-GB" culture="en-GB" />
    </system.web>
 </configuration>

http://stackoverflow.com/questions/28430862/configuring-azure-web-and-sql-uk-culture