Wednesday, February 12, 2014

Raspberry Pi & RetroPie


So what do you do with a Raspberry Pi?  Well to start with I built a case out of lego, never too old!!


Got loads of ideas like the next version of my birdcam but lack of time hasn't been on my side to progress, I tried a build of XBMC but was to sluggish for my liking on my 256Mb Pi.

Finally I settled on an RetroPie install from an image and plodded my way through the setup instructions, not too bad as most are already setup but not being from the linux world where sudo is the kill command it was a case on slowly going through the instructions.  One area to setup is the fanart, there's a ES Script that does much of the work but does miss some or picks the wrong details for you.  So being from the world of Windows - groan I hear ;) I wrote a crude visual basic app to help fill in the gaps, which you can see a screenshot below.

You can download my 'less crude' app from my Google Drive - Retropie Metadata Manager v2

Update: New version at link above designed to work with the new RetroPie v2.X directory structures as well as ReproPie v1.X, also added a few more sources to search for FanArt - Original version available here - Retropie Metadata Manager v1

Basic Steps
  • Run RetroPie.exe
  • Follow instructions on Settings Tab to get setup in copying files from your Pi
  • Go to Main Tab and select an emulator
  • Select game from next list, details should appear on right side, which you can update a save via [Update] button
  • If you don't have the fan art, type a search term and press one of the three buttons to manual find what you want
  • The rest you'll need to figure out :)



Tuesday, July 30, 2013

UK Public Radio Browser hits Beta


Come a long way but finally the latest version has moved to Beta and is now feature complete, I've cut down what needs to be downloaded to just the executable and logo pack and the first time it's run it'll create the directories and xml's needed to manage the application - just copy the contents of the zip file to an empty directory and launch the exe - there isn't an installer so if you want to remove just delete all files in the folder/sub folders where the exe resides.

Following are some screenshots to help you out a tad figuring your way around the application 

requires Windows with minimum .Net Framework 4.0 installed

First tab you're see when you launch the application, click on the AZ the first time and it'll download all the metadata, once complete click again to see programmes currently available or soon available

Double click on a programme that interests you to be taken to the next tab to see available episodes, from this tab you can add the programme to your favourites and schedules


Example of programme in your favourites list, I use this to keep track of programmes I don't listen to regularly but want on keep a eye on to see if the odd episode interests me.


Example of programme added to the schedule list, this I use to keep track of programmes that I want to be notified of being available.  Note that the application it's self doesn't do this notification but instead executes an external command (ie batch script).  I've developed like this to keep it flexible and it's an area where one size won't fit all and could easily become a drain on development time.

An example is included which shows metadata being passed to an external command as shown in the screenshot - the application can't control the external command but can read return codes to indicate within application how the command have performed.  At bottom of post is an example for passing a parameter to get_iplayer.

Return Code Translation
Success 0
Failed 1 or greater
Unprocessed -1


Details of schedule run, if a episode is marked as success then it won't be picked up on the next schedule run.  Currently there is no option to process just the latest addition on the first run, as seen below where many episodes are available which you may not be interested in


Final tab, you can switch on the scheduler rather than manually running it.  Be mindful as to how often the metadata is polled, for most using the application once or twice a day then 8 - 12 hours would be a suitable period, currently I've got it set so if a local version of the metadata is less than 4 hours old than that version will be presents instead of the online version, so no point in setting any lower than 4.

Finally is the details for calling the batch file and the parameters that can be passed from the metadata



Script example of calling get_iplayer
create get_iplayer.bat (create in root folder) with following:-

SET iplayer_path="C:\Program Files (x86)\get_iplayer"
SET ffmpeg_path="C:\Program Files (x86)\get_iplayer\FFmpeg\ffmpeg-shared\bin\ffmpeg.exe"
SET Lame="C:\Program Files (x86)\get_iplayer\LAME\lame.exe"
SET RTMPDump_path="C:\Program Files (x86)\get_iplayer\RTMPDump\rtmpdump.exe"
SET Meta_Path="C:\Program Files (x86)\get_iplayer\AtomicParsley\AtomicParsley\AtomicParsley.exe"
SET MPlayer="C:\Program Files (x86)\get_iplayer\MPlayer\mplayer-svn-36348\mplayer.exe"

%iplayer_path%\get_iplayer.pl --type=radio --pid=%1 --modes default --rtmpdump %RTMPDump_path% --ffmpeg %ffmpeg_path% --atomicparsley %Meta_Path% --mplayer %Mplayer% --lame %Lame% --tag-podcast --file-prefix="-" --force > .\log\%1.log

exit %ERRORLEVEL%



Modify setupCMD.xml in folder root/setup to following:-


name = Get_iplayer
    command = get_iplayer.bat
    argument = PID

Sunday, July 14, 2013

UK Public Radio Browser - v003 now available


New release available, still alpha, no instructions so you'll need to figure your way around - isn't that what everyone does?  or you can watch the quick video shown below to get the picture ;)




Monday, July 08, 2013

New Release

Change Log
Prerequisites reduced to minimum .Net Framework 4.0
Schedule section updated, not currently usable but any programmes can be added
Installer removed, extract contents of zip including directories anywhere on your local harddisk and run UK Public Radio Browser.exe to start the app

UK Public Radio Browser - Alpha v002.zip

To download, select on menu [File] then [Download] to get the zip

This release has been tested on the following systems
Windows 7 with .Net Framework 4.5 - 20sec delay on initial call to internet, ok after
XP with .Net Framework 4.0 - no delay noted

Sunday, July 07, 2013

UK Public Radio Browser - Alpha

A couple of weeks back the excellent Radio Downloader application became no more due to the author being asked by the BBC to remove the application from his site, reasons are unknown but guessing it could be due to the BBC planning to offer next year radio programmes for download on a 30 day availability basis.

Excluding the download feature this applications had alot of useful features to help keep track of radio programmes the BBC has broadcast so I didn't missing the start of a new radio series.  When these features now unavailable and not finding an alternative I've attempt to build my first app using Visual Basic 2012 Express.  Today I'm releasing a very early alpha release and what I've coded over the past few days.

It's been tested on Window 7 with .Net 4.5 framework installed, it won't install on my XP PC with checks pointing to the Visual Studio Express 2012 installer not being compatible with XP, so think minimum is Vista or above.

Go to the link below, on the file menu is a download option to get the zip file, extract to a temp directory and run setup.exe

UK Public Radio Browser v001.zip
See recent post for latest version

Currently Features
A - Z of all currently programmes
Find programme from A - Z list
Favourites
Open Favourite in web browser
Send to external command (example provided on notify details in dos prompt)

Proposed 
Add A - Z to web browser
Scheduling
See if the install can be improved, currently the install is hidden in the depths of the user data
Alter sections that are currently double click to select (A-Z programme list, Favourite programme list)

Sunday, February 26, 2012

SLDC Council Meeting Webcasts

Last Thursday South Lakeland District Council did a live webcast of their Full Council meeting for the first time following a previous pilot.  This is an area I've casually moaned about in various forums (see bottom of post for various links) - councillors over time in general have commented on the lack of public coming to watch the council proceedings, my argument is that peoples working life don't allow the time needed to get themselves to these meetings to see what goes on, the council need to switch from assuming the public should come the them to making it easier for the council to get closer to the public.

Last year BBC4 broadcast a programme called Tales from the National Park, the first programme covered a issue in the Lake District which involved a planning application, one of the planning meeting was filmed, you could see the councillor stating their cases before a vote, some were with passion, others with nimby-ism.  But what was clear was reinforcing my thoughts that with the technology we have available today why were these meetings not being made for open to the general public (the ones that can't attend)

So I'll cut to the chase, below is the live view I had (plus the football), a fixed camera on the whole meeting with the audio fed in so you can hear everything clearly.  It was more than I was expecting, councillors were conscious of the webcast and acknowledged at odd points to need to do certain things to benefit those watching, like naming councillors as the majority of watchers won't recognise the councillor speaking.

Turned out the webcast had 250 viewers, which is a large number for something so local.  For me it's not important how many watch live, it that's we with have a clearer record of what is said in council meetings, so it I read or hear a sound bite in the media that I can go to the council recording and listen to it myself and get the full context that you would never of got from reading the minutes.

So could this broadcast be improved on?  I don't think it could or needs to - it would be interesting to see a meeting for a smaller committee, whether the camera needs to change it's position or how webcasts are dealt with which have sections which the public can't watch - also I think next they should move to broadcasting meetings that more often are likely to have the public involved like the planning meetings.

Next I need to see if LDNPA will start webcasting, recording their meetings which are open to the public


Monday, September 26, 2011

Broadband Cumbria Map

Below are two interactive maps, first map contains parish boundaries, green representing parishes that are known to have a parish champion, red if a parish champion isn't currently known (see previous post on how to supply info of champions that can be used to update this map).  Also on the map is the locations of current BT cabinets, data supplied for this was postcode based so location may not be exact.

In the second map is a guide of current broadband speed rate as supplied by BT, do I hear coughing in the audience, yes you'll correct in noticing that the circles look very uniform and I expect from you local experience that the reality of this speed estimates from BT are likely to be wildly different in the lower direction.

Now the fun bit, these maps are interactive, click anywhere on the maps and you'll get a popup giving champion details, cabinet details or BT speed estimate details.

Move one of the maps, the other map will move in line and vis-versa. You can zoom in/out of each map to make it easier to see your parish.  Finally as well at the normal Google Maps, I've included an OpenStreetMap overlay (set as default) which in some areas will contain more detail.

Thanks goes to everyone who's helped add to the data that's used for the overlays on these maps

Tuesday, August 09, 2011

London Trip - Strange Times

Today I travelled down to London for an afternoon meeting which was planned to finish around 5pm,with all the mindless looting going on around London I paid closer attention to all the news reports, seeing if there were any reports of trouble within the bounds of central London.  There was only one report of a problem at Oxford Circus on Sunday which the police said was contained so my main thinking was whether to walk to our meeting or to take the tube but I think it would be more the return journey that had the potential to be at risk.

I arrived at Euston just after 11:15am with a couple of colleagues, it was a clear sunny day so we decided to do a 30 minute walk to where the meeting was planned to take place.  The route was normal / uneventful, all shops along the way were open and there were no signs on problems or concerns.

We finally got to our destination which is a long street that is just full of expensive jewellery shops (no Ratners here).  We were expected at what we told is known as the diamond exchange because as the name suggests it's where diamond dealers go to trade and with this security to get in is very tight with thick full length turn gates like you'd see in those bank job movies.  This place also has normal office lets for none diamond related business which is what we were visiting.

Now when we entered this street the atmospheric had changed, alot of the jewellery shops had their shutters half way down and the odd one had a staff member outside looking on nervously.  We were early and had an hour to kill so went for a bite to eat and also met up with some other colleagues who were also attending.  When the hour was up we headed back to the street where we now noticed that a few of shops had cleared down there diamond shop front displays and shut up shop, we got into the building for our meeting and commenced business.

Within 30-45 minutes an office worker came into our meeting room and said the police had advised us to leave the area, so with that advise we quickly wrapped up and headed into the street to decide how best to get back to Euston (tube or walk).  Out in the street all the jewellery shops were now closed with their security shutters down.  Two police were at one end of the street with another five at the other end in the direction we decided to walk back to Euston.  Once we got out of the street the rest of the walk back was pretty normal, on the route there are not many shops that match the type you seen in news reports.

I think the police had decided to play safe and get everyone out of the area that has a potential risk so it's easier for them to deal with any issues and based on previous days things seemed to be at risk of happening from late afternoon although I've not heard of looting of jewellery shops, seems it's trainers and mobiles that are order of the day.

Sunday, July 31, 2011

Oxenholme to Heathrow in half the time?

This week on the drive home I managed to catch the last part of Lakeland Radio's news bulletin which mentioned the possibility of travelling from Oxenholme to Heathrow in half the currently time that being in just two hours.  I thought this very strange, why Heathrow, is there a need to travel there when we have airports closer at Manchester, Liverpool, Blackpool, and don't you have to travel into London first then back out to Heathrow.

Back home I did a search of the web to see if I'd heard things right and was only able to find two media outlets in the North West reporting this story, one of them being this news report by Lakeland Radio and the other from the Blackpool Gazette.

From reading these two online reports it became clear that they were probable mostly copy n pasted from a Department for Transport press release that is trying garner support for the proposed High Speed Rail link (HS2) and seems to make out that it's be possible to travel from any North West station to Heathrow in two hours - the press release must be written by someone who thinks England doesn't pass the bounds of the M25

Does this two hour claim stack up?  I've tend to do the train journey into London from Oxenholme once or twice a year and it's possible to get down to London Euston from Oxenholme in 2 hours 45 mins, just enough time to settle down and watch a movie.  If you want to then goto Paddington then the train times allow you 1 hours to get on the tube to Paddington then it's a 15 minutes train to Heathrow.

Keeping the Euston to Heathrow times the same that would mean the journey between Oxenholme and Euston would need to be done in 45 minutes to meet the 2 hour claim - so is this possible with HS2.

Short answer is No.  Well HS2 could have a speed of around 240MPH and London is around 250 miles away so at best the journey would be over 1 hour into London.  Now the HS2 proposed will only get as far north as Birmingham although the release implies that it's go as far as Manchester as uses this as the basis for the 2 hour claim.  So lets say HS2 was to get as far as Manchester, could that help, I don't think so - all trains from Oxenholme tend to stop at other North Western stations which take up to a hour of the journey, I can't the number of stops reducing, so I can't see any time savings.

Conclusion is I think the report is pie in the sky, at best I think it would reduce journey times by upto 30 minutes but that will be lost if you have to change trains on route to London.

I wonder why more of the local media hasn't report this, is it obvious it's not a going or is it bad timing publication wise.

Sunday, July 24, 2011

Cumbria Broadband Champions Map

I've produced a overlay map of Cumbria marking out all the parishes and which have a known Broadband Champion based on information found on Cumbria Broadband, looks sparse doesn't it, I'm sure there are more but look on the web it's not obvious who there are.  So this is where you guys come in to help fill in the blanks so we see a sea of green instead of the current red.

A walk-though on how to provide to details is available at the bottom of this post.

I've created a Google Spreadsheet where at minimum the name of the Broadband champion should be added against the relevant parish, also details like social network links can be added, these are optional but would be good to be added so as to extend the community and add ways on communicating on this subjects between those interested.  The spreadsheet can be updated by anyone, I will periodically pull the data from the spreadsheet to update the map, I'm also happy to input names myself if that's easier for some, a link to the various ways of contacting me is on the spreadsheet.

The current version of the map is shown below, link to larger interactive version is shown below which has options to embed in websites, this map can be reused by anyone supporting Cumbria Community Broadband, I'll post updates on this blog and on the spreadsheet, free free to let me know what your think of the map.

Walk-through on how to fill in the spreadsheet with details 

Saturday, July 09, 2011

Google+

Yesterday my Google+ invite came through after someone kindly invited me earlier in the week - these things take time.  This post is on my initial thoughts on using Google+

Before getting onto Google+ the only knowledge I had was from watching the demonstration video's and certain users views from podcasts like TwiG.  This was probable a mistake as these guys are the Google fan boys and give an impression that it's great but I'll come back to the difference between them and us 'normal' users.  The impress I got was I could find and join a circle/hangout - how wrong could I be - VERY!!!

So I logon Google+ for the first time and I'm presented with a blank canvas consisting of just me and a message from the kind soul who invited me.  So lets find a circle to join, first problem met, there are no 'public' circles, you have to create your own circle and find people to add to it - they'll know they're in your circle but not what circle it is.  If you're from the Twitter wealm think of a circle as a Twitter list which can't be shared, so rather than one person doing all the hard work curating a circle that can be shared, with G+ everyone has to create their own in the vain hope that everyone is roughly having the same Circles.

To start with I've created a Circle called Locals - South Lakes, Cumbria, England and using names from Twitter added 11 people with Google+ accounts (you search in real names not nicknames), so I've been using it for nearly 24hrs now and between the 12 of us in my circle we've conversed between each other zero times.  This may lie a problem for ordinary users like me, I think you're going to have to have alot of people in your circle to get to the point of finding out whether it's going to be useful for anything.  You could say twitter on occasions is the same, alot goes on during the day but once midnight comes everyone turns into a punkin and all goes quiet till the morning.

So why have the likes of Leo Laporte's TwiG clan taken to it so easily compared to Joe Public (you and I), well they've got the advantage to being able to quickly create a network of circles just by adding well known people from tech and as this network listen to shows like TwiG then Leo's Clan are invited into the right circles so they're able to get the most out of what Google+ is offering.  For Joe Public we have to do alot of work upfront to just tip the surface to what Google+ has to offer and there maybe easier non Google ways of achieving the same goals for certain people.

So far I have 40 people in my circles and my feeling of Google+ is like it's just Buzz 2.0, I can see alot of newbies losing interest and sticking with Twitter and/or Facebook, too much effort if needed to hunt out other people you think maybe of interest and create circles for them.  Then when you have a starting point the next difficulty is turning your one way messages into a two way conversion both in written form and in a hangout.  

For me the only part I could see being useful is the hangout feature for discussing certain topics between upto 10 people via webcam, for example at work I use a suite of applications known as SAP Business Objects, there is a very good forum called BOB Forums for post requests for help regarding the application or helping others in written form.  I think it would be good to have a Business Objects hangout for occasions when it makes sense to discussion face to face rather than through a long winded post thread.  At the moment I trying to see if I can find a way to make this work - this maybe a long road as I'm having to try and set it up by posting in BOB Forums ask people to come and find me on Google+ - if Google was to allow people to setup public Circles then this would be a lot easier, all that would be need is for me to point people to the public circle.

I've seen this sort of hangout type activity happen very successful and easily using a combination of Twitter and TinyChat.  It's a simply a case of tweeting everyone in a Twitter list asking them to join a TinyChat session.

My Initial Opinion - Google+  =  Buzz 2.0
Improvements Needed - Public Circles

Monday, July 04, 2011

Cold Phone Call - International Routing System Scam

Last weekend I was fortunate to get a cold call which when you hear the first few words you know it's a scam, normally I would just put the phone down but I wasn't the one who answered the phone and they managed with no difficultly to get past my first line of defense (another family member).  So how do they know these details, well it's not hard to get this sort of info, the electrol roll matched to the phone directory - all bound to be sound on the open market - basic marketing data sold on and on to the point that it's being used illegally.

So I decided to have a bit of fun, to see how long I could string them along - see end of post for some audio of the conversation (headphones recommended).  The last time I did this was when someone called me saying they could do me a better deal on the cost of my phone calls, to which I asked how they were going to better a deal that doesn't currently costs me anything.

Before I go through the details of the call I'll give a quick overview of the scam.  You'll be picked a random from their list to be called and they'll imply that there systems have detected a slow response coming from your computer and would like to sort the problem out.  They'll ask you if you have a computer and could you go to it and look at a part of the windows logs (Event Viewer) to give the impression that your computer has problems.  Then they'll ask you to download some software from a website, this is the sting where the software could do anything, you're as good as installing there malware for them.  Then the scammer attempts to get their reward where for a fee they'll offer to remove offending virus's they say you have - It's all a con and if you follow any instructions they give on your computer then you're good as opening up your computer to the whole world.

Well I was never going to fall for this in a month of Sunday's, as I'm usually the first point of call from family & friends requesting tech support from me.

Let the FUN commence:-

An Indian girl starts going through a short script explaining that they're router has identified a slow response coming from my PC and they're calling to check everything is ok.  The art to not playing ball with these type of calls is to response with answers/questions that are less likely to form part of their script responses.

Having said they've identified a slow response they asked if I have a computer to which I responded "What is a computer?" and proceed to have them explain what they are meaning, whether it is like a fax machine.  I finally gave them the impression that I now had a rough idea from them of what a computer was and had access to one although I'm woolly on whether it was mine, works etc..

Next they ask me to go and switch my computer on, now there's a difference between switching on a computer and saying you have - for my part in this exchange I just said to my Indian cold caller than I had switched it on but was nowhere near my computer through out this phone call.  Time for the next phase of Operation String Along - I wait a couple of minutes, pretending the computer is booting up with them during this time asking if I'd switched it on and me saying yes then a finally response of "It's on a screen which says 'Checking system files - 2%'", this confused them but they were quite happy to see the progress of this message through, although my made up screen text I relayed wasn't in there script - so I put the phone down for a few minutes.

When I next pick up the phone they were still there on the other end eagerly awaiting an update to which I responded "It's now saying 3%", this went on and on with me edging the % progress another notch when twenty minutes later I was saying it was at 15% which it stayed stuck at for the next 10minutes.  Now if I was giving tech support then I would of quickly worked out that at this rate I was going to be here all day and would make my excuses to end the call but these guys were very happy to wait it out.

Next phase now was to see what would it take for them to end the call, so I asked them as this was taking along time to resolve could they help with something else while I waiting - first I asked them if they can solve problems with televisions, then I moved onto trying to get them to help with a printer problem.  Well they couldn't help with my television problem but were happy to help with the printer problem but not until they resolve my computer problem, to which I said my computer problem is going to take all day at this rate and whilst we're waiting could help me with my printer problem.

At this point she was getting lost in how to deal with the call and wanted to put me through to a senior technical person who by coincidence sits next to her.  Now over half an hour had passed and it was clear they were going stick at this so it was time to quickly bring this to an end - so I told the 'senior' guy I wasn't happy with the service I was getting, I'd asked for help with sorting out my printer whilst we waited and that I wasn't happy to wait until the computer problem was resolved first.  During this part of the discussion I questioned them on how they got my details and where they were based, the answers they gave didn't make much sense, they said they got the information from the International Routing System, then said it came from the info entered when you register Windows.  I asked whether they were based - Salt Lake City the response (unlikely), also I asked if they get the information from Microsoft to which they said yes, so I tripped them up by saying I never registered windows - at this point they were starting to trip themselves up.

I finally brought the call to an end when they said they'd have to put me through to their technical support team in order to resolve my issues but the sting in the tail which is the point to this whole scam if I'd allowed the call to follow their script is that they would be a charge of £29 for this service if they were able to solve the problem.  I gave them a minute to put me through and solve to my problem but they wasted that time and I decided to terminated the call.

Whilst this was all going on I dug out a mic and connected it to my ipod to record some of the conversation (last 8 minutes of the call) - now this was unplanned so the result isn't the best with me sounding loud and the other side being very quiet but it's still worth listening to as you'll get a good idea of the call from mostly my side and when listened through headphones you can pick up good parts of the other side.

I've posted my clips using SoundBoard which also allow comments be to added to the track which I thought would be useful to allow listeners to do.

(Listen through headphones recommended)
Clip by lakeuk
Clip by lakeuk

Some websites I've found where others have come across this type of scam:-
Theo Gray - Blog Post
Money Watch - Blog
Eaton Bray
Computer World - Austrailia

Saturday, April 30, 2011

Homecoming Parade through Kendal

Today the Duke of Lancaster's Regiment paraded through Kendal starting at 12.10pm from the town centre to Kendal's Parish Church for a thanksgiving service at 1pm, returning to Kendal town centre just after 2pm.  Below is a short video I took of the return at Kendal's Town Hall

Sunday, April 10, 2011

Sparrowhawk eating it's prey

This video is of a Sparrowhawk at the bottom of our garden eating it's last kill - probably a pigeon.

Secret Kendal - Royal Observer Corps Monitoring Post

Not a lot of people will be aware that hidden away on top of a hill just across from Kendal Castle towards Heron Hill is a Royal Observer Corps Monitoring Post, it was closed in 1991 as the Cold War ended and was designed to detect radioactive fallout.  In the 80's our scout group were shown down inside the bunker, we were shown how they detected movement outside which didn't strike me as reliable as examples we were shown were the result of cloud movements.

Below 2 photos are what I took last summer, you can get to it by taking the footpath straight up the hillside from the entrance to Wasdale Close - I don't recommend exploring inside the bucker and previous visitor comments that there is asbestos inside. 



Following is a photo of the inside from a Jun 08 / Mar 09 visitor who posted photos here link1 link2









Layout plan

More Info:-
Wikipedia - Link


Location 

Best approach from Valley Drive or Parkside Road ends, take the public footpaths to the point marked with blue X, then take the upper path southwards to point mark with a red X, look left to see the site (marked green X).  The footpath is slightly below the level of the private land, recommend tripod/monopod to aid any photography above eye level height.





Blogger Views

Blogger has introduces new ways to view blogs, here's a short video of how they look against my blog.

(1st few secs in the video are grey then it's ok)

UK Radioplayer

A couple weeks back a new website launched Radioplayer that is a one stop shop for listening to UK radio and will allow UK radio stations to embed a common radio player into their own station websites making it easier for the listeners to access radio content across the country.

At the time of writing this post all the BBC stations and alot of the national/local commercial stations are now of the platform, the backers of Radioplayer say those that have registered so far should be available on Radioplayer by end of May.  Hopefully our two local commercial stations Lakeland Radio and The Bay have registered their interest and are not the odd ones out.  Searching for Cumbria and only the BBC Radio Cumbria comes up as local radio stations available. 

I've done a short walkthrough of how to get the best out of it. (the first few seconds of the video show up grey, but then it's ok)

Sunday, January 09, 2011

BBC2's Antiques Road Trip - Kendal - Levens Hall - Cockermouth

Got home on Friday to find rest of household switched onto BBC2, different from the usual fair of Ch4's Come Dine With Me.  Reason - they'd been tipped of that a local antique shop in Kendal would feature.

It's a series that follows two antiques experts in competition with each other, they spend the week travelling to various places buying antiques with the aim of selling them for a profit at the end of the week at auction - sounds familiar !!

This episode saw them visiting auction shops traveling between Morecambe, Lancaster, Kendal then at an auction in Cockermouth.  One of the experts after buying all his antiques visited Leven's Hall for a guided tour by the wife of owner Susie Bagget, the other expert was up the Kendal to visit Sleddall Hall Antique Centre on Wildman Street where he bought a picture from owner Robert Aindow for £30.

The episode can be viewed on BBC iPlayer until Friday 14th January 2011, watch from 24mins in for feature on Levens Hall then Kendal

Tuesday, January 04, 2011

ITV Series - The Lakes - My view on 1st Episode

On Monday at 8pm saw the return on ITV of The Lakes above people living and working in Cumbria (yes they're very loose with The Lakes).  Locals who are watching this series have love/hate relationship with this programme, mainly due to the over exposure of hotelier Thomas The Gladiator Noblett and his right hand man Andrew The Admiral Tighe repeating the same thing in each episode / series, and also how the series is presented in that the peoples stories are limited to sound bites across many episodes.  Following is an overview of the first episode, yes I was abit anal in working out the timings:-

ITV have put the programme in a prime time half hour slot at 8pm between Monday nights two Coronation Street episodes.  The runtime of the show is 22mins 55secs, excluding a 2min 23secs break in the middle  (Although it finished around 8:25pm the end break was short as Corrie started around 8:27pm).  So what did we get in the way of juicy content, well....

  • 3mins 7secs - Starting titles and preview of what was coming up in the rest of the series
  • 3mins 29secs - Sailing instructor Joe Pester and his wife Lindy who are preparing for their perfect lakeside wedding 
  • 4mins 31secs - Rob Rose and his micro pigs
  • 0mins 13secs - Short preview of Thomas The Gladiator Noblett then into a break
  • 2mins 23secs - Commercial break
  • 0mins 58secs - Preview of whats coming up in rest of the series
  • 2mins 54secs - Another preview of what Thomas The Gladiator Noblett will be doing in the rest of the series including why he's now laughs at being refered to as The Gladiator
  • 3mins 23secs - Back to this episode with Rob Rose's micro pigs
  • 2mins 50secs - Joe Pester and his Lindy Wedding
  • 1min 30secs - Preview of what's coming up in the next episode and end credits including Joe and Lindy's Honeymoon

So in summary the 22mins 55secs episode was broken down into 8mins 42secs of titles/previews/fillers that will get repeated from episode to episode and just 14mins 13secs of actually watchable content.

This series could be a whole lot better if they didn't keep stringing us along and gave us more of a characters story in an episode.

Recommendation is to record the the show but to fast forward through the soundbites.

Monday, January 03, 2011

Cumbria Earthquake - 3rd January 2011 - Update

British Geological Survey have updated details on tonight Earthquake

Seismic Alert PDF of event

Location was near Ripon



Earthquake Details

  • This event has been reviewed by a seismologist.
Magnitude3.7
Date-Time
Location54.181°N, 1.633°W
Depth11 km (6.8 miles) set by location program
RegionENGLAND, UNITED KINGDOM
Distances45 km (25 miles) N of Leeds, England, UK
85 km (55 miles) NNE of Manchester, England, UK
90 km (55 miles) S of Newcastle upon Tyne, England, UK
315 km (195 miles) NNW of LONDON, United Kingdom
Location UncertaintyError estimate not available
ParametersNST= 3, Nph= 3, Dmin=162.3 km, Rmss=0 sec, Gp=209°,
M-type=local magnitude (ML), Version=5
Source
  • British Geological Survey, Edinburgh, Scotland, UK
Event IDus2011frb5