'+pages+''); $('.stream > div:odd').addClass('bgr_color'); updateHeight('#history'); }); window.activateTabArea = ensure(function(tab, areas){ var parsed = false; var parts = (areas || '').split('/'); window.fsonload = $.inArray('fs', parts) >= 0; if(fsonload){ parts.splice(parts.indexOf('fs'), 1); } var replayMode = false; if($.inArray('replay', parts)>=0){ replayMode = 'replay'; } var noSoundMode = false; if($.inArray('nosound', parts)>=0){ noSoundMode = 'nosound'; } if($.inArray('ns', parts)>=0){ noSoundMode = 'ns'; } var previewMode = null; if($.inArray('p', parts)>=0){ previewMode = 'p'; } if($.inArray('preview', parts)>=0){ previewMode = 'preview'; } if($.inArray('repeat', parts)>=0){ replayMode = 'repeat'; } if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){ replayMode = 'r'; } if(replayMode){ parts.splice(parts.indexOf(replayMode), 1); } if(noSoundMode){ parts.splice(parts.indexOf(noSoundMode), 1); } if(previewMode){ parts.splice(parts.indexOf(previewMode), 1); } if(previewMode){ if(!parts.length){ parts = ['1-14', '999:59']; } } var area = parts[0]; if(tab == 'history' && false){ var page = parseInt(area || '1') || 1; $.ajax({ url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1), dataType: 'jsonp', success: function(response){ $ensure(function(){ renderHistory(response, page); }); } }); return true; } if(tab == 'global_history' && false){ var page = parseInt(area || '1') || 1; globalHistory.fetchStream(page, '', function(){ updateHeight('#global_history'); }); return true; } if(tab == 'my_playlists' && false){ var page = parseInt(area || '1') || 1; myPlaylists.fetchStream(page, '', function(){ updateHeight('#my_playlists'); }); return true; } if(tab == 'my_videos' && false){ var page = parseInt(area || '1') || 1; myVideos.fetchStream(page, '', function(){ updateHeight('#my_videos'); }); return true; } if(tab == 'related_sites' && areas && matchPosition(areas)){ var seconds = parsePosition(areas); scrollRelated(seconds); return false; } if(matchPosition(area) || matchAction(area)){ parts.unshift('1'); area = parts[0]; } if(tab == 'expand' && area && area.match(/\d+/)) { var num = parseInt(area); if(num < 100){ //FIX ME. Load news page with ajax here } else if(num > 1900){ //FIX ME. Load timeline page with ajax here } } else if(tab.match(/^playlist\d+$/)){ var playerId = parseInt(tab.substring(8)); var vp = videoplayers[playerId]; window.descriptionsholder = $('.descriptionsplace'); if(!vp) return; // why? no player? if(replayMode){ $('.replaycurrent'+playerId).attr('checked', true); vp.setReplayCurrent(true); } var playQueue = []; window.playQueue = playQueue; var playQueuePosition = 0; var playShouldStart = null; var playShouldStop = null; var parseList = function(x){ var items = x.split(/;|,/g); var results = []; for (i in items){ try{ var action = parseAction(vp, items[i]); if(!action.video){ if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]); }else{ results.push(action); } }catch(e){ if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]); } } return results; }; var scrollToPlaylistPosition = function(vp){ var ppos = vp.getPlaylistPosition(); var el = vp.playlistContainer.find('>li').eq(ppos); var par = el.closest('.playlist_scrollarea'); par.scrollTop(el.offset().top-par.height()/2); } var updateVolumeState = function(){ if(noSoundMode){ if(noSoundMode == 'turn-on'){ clog("Sound is on, vsid="+vp.vsid); vp.setVolumeUnMute(); noSoundMode = false; }else{ clog("Sound is off, vsid="+vp.vsid); vp.setVolumeMute(); noSoundMode = 'turn-on'; } } } var playQueueUpdate = function(){ var playPosition = playQueue[playQueuePosition]; vp.playFromPlaylist(playPosition.video); scrollToPlaylistPosition(vp); playShouldStart = playPosition.start; playShouldStop = playPosition.stop; }; var playQueueAdvancePosition = function(){ clog("Advancing play position..."); playQueuePosition ++; while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){ playQueuePosition ++; } if(playQueuePosition < playQueue.length){ playQueueUpdate(); }else if(vp.getReplayCurrent()){ playQueuePosition = 0; playQueueUpdate(); vp.seekTo(playShouldStart); vp.playVideo(); }else{ vp.pauseVideo(); playShouldStop = null; playShouldStart = null; } }; function loadMoreVideos(playerId, vp, start, finish, callback){ var playlistInfo = playlists[playerId-1]; if(playlistInfo.loading >= finish) return; playlistInfo.loading = finish; $.ajax({ url: '/api/upge/cheetah-photo-search/query_videos2', dataType: 'json', data: { query: playlistInfo.query, orderby: playlistInfo.orderby, start: start, count: finish-start }, success: function(response){ var pl = vp.getPlaylist().slice(0); pl.push.apply(pl, response); vp.setPlaylist(pl); callback(); } }); } if(parts.length == 1 && matchDash(parts[0])){ var pl = vp.getActualPlaylist(); var vids = parseDash(parts[0]); parts = []; for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': null }) } if(vids.length){ if(vids[vids.length-1]-1>=pl.length){ loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){ if(fsonload){ activateTabArea(tab, parts[0]+'/fs'); }else{ activateTabArea(tab, parts[0]); } var pls = vp.getPlaylist(); vp.playFromPlaylist(pls[pls.length-1]); vp.playVideo(); scrollToPlaylistPosition(vp); }); return true; } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; playShouldStart = 0; } } if(previewMode){ var vids = []; var dur = 0; var pl = vp.getActualPlaylist(); area = parts[0]; if(parts.length == 1 && matchPosition(parts[0])){ vids = parseDash('1-'+pl.length); dur = parsePosition(parts[0]); parts = []; }else if(parts.length == 1 && matchDash(parts[0])){ vids = parseDash(parts[0]); dur = parsePosition("999:59"); parts = []; } if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){ vids = parseDash(parts[0]); dur = parsePosition(parts[1]); parts = []; } for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': dur }) } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } } if(parts.length>1){ for(var i = 0; i < parts.length; i++){ var sel = findMatchingVideo(vp, parts[i]); if(sel){ playQueue.push({ 'video': sel, 'start': 0, 'stop': null }) } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } }else if(area){ var sel = findMatchingVideo(vp, area); if(sel){ vp.playFromPlaylist(sel); playShouldStart = 0; parsed = true; } } if(fsonload || replayMode){ playShouldStart = 0; } if(document.location.search.match('at=|queue=')){ var opts = document.location.search.replace(/^\?/,'').split(/&/g); for(var o in opts){ if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){ playShouldStart = parsePosition(opts[o].substr(3)) } if(opts[o].match(/^queue=/)){ playQueue = parseList(opts[o].substr(6)); if(playQueue){ playQueuePosition = 0; playQueueUpdate(); } } } } if(matchPosition(parts[1])){ playShouldStart = parsePosition(parts[1]); parsed = true; } if(matchAction(parts[1])){ var action = parseAction(vp, area+'/'+parts[1]); playShouldStart = action.start; playShouldStop = action.stop; parsed = true; } if(playShouldStart !== null && !playQueue.length){ playQueue.push({ video: vp.getCurrentVideo(), start: playShouldStart, stop: playShouldStop }); } if(playShouldStart != null){ setInterval(function(){ if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){ playShouldStop = null; if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){ playQueueAdvancePosition(); }else{ playShouldStart = null; } } }, 500); vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){ if(state == 'ended'){ // advance to the next video playQueueAdvancePosition(); } }); vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){ if(state){ updateVolumeState(); if(playShouldStart !== null){ vp.seekTo(playShouldStart); playShouldStart = null; }else{ playShouldStop = null; // someone started other video, stop playing from playQueue } } if(fsonload) { triggerFullscreen(playerId); fsonload = false; } }); } } else if(tab.match(/^wiki\d+$/)){ if(firstTimeActivate){ load_wiki($('#'+tab), function(){ if(area){ var areaNode = $('#'+area); if(areaNode.length>0){ $('html, body').scrollTop(areaNode.offset().top + 10); return true; } } }); } } return parsed; }) window.activateTab = ensure(function(tab, area){ window.activeArea = null; if(tab == 'import_videos'){ if(area){ import_videos(area); }else{ start_import(); } return true; } if(tab == 'chat'){ update_chat_position($('.chat').eq(0)); window.activeArea = 'chat'; jQuery('.tabtrigger').offscreentabs('activateTab', 'chat'); return true; } if(tab in rev_names){ tab = rev_names[tab]; } if(tab.match(':')){ return false; } var sup = $('ul li a[id=#'+tab+']'); if(sup && sup.length>0){ window.activeArea = area; sup.first().click(); if(!window.activateTabArea(tab, area)){ window.activeArea = null; } window.activeArea = null; return true; }else{ var have_tabs = $('#playlist_menu li').length; if(tab.match(/^playlists?\d+$/)){ var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs; if(to_add>0 && have_tabs){ add_more_videos(to_add); return true; } } } return false; }); window.currentPath = ensure(function(){ return window.lastHistory.replace(basepath, '').split('?')[0]; }); window.main_tab = window.main_tab || 'videos'; window.addHistory = ensure(function(path){ if(window.console && console.log) console.log("Adding to history: "+path); if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){ if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = basepath; } else if( path.match('^'+main_tab+'/') ){ path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/'); } else { path = basepath + '/' + path.replace('--','/'); } if(document.location.search){ path += document.location.search; } if(window.lastHistory) { history.pushState(null, null, path); } else if(window.lastHistory != path){ history.replaceState(null, null, path); window.lastHistory = path; } } else{ path = path.replace('--','/'); if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = ''; } if(window.lastHistory != '/'+path){ window.location.hash = path? '/'+path : ''; window.lastHistory = '/'+path; } } }); $('.tabtrigger li a').live('click', ensure(function() { var tab = $(this).attr('id'); if(tab.substring(0,1) == '#'){ var name = tab.substring(1); if(name in menu_names){ name = menu_names[name][0]; } realTab = rev_names[name]; $('#'+realTab).show(); if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:'')); var path = name; if(window.activeArea){ path = path + '/' + window.activeArea; } if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){ $('.multiple-playlists').show(); $('.related_playlist').show(); $('.longest_videos_playlist').show(); }else { $('.multiple-playlists').hide(); $('.related_playlist').hide(); $('.longest_videos_playlist').hide(); } // start the related script only when the tab is on screen showing if (tab.match(/related_sites/)) { if (mc) { mc.startCredits(); } } window.activeTab = realTab; addHistory(path); setTimeout(ensure(function(){ if(tab.match(/language--/)){ $('.tabtrigger').offscreentabs('activateTab', 'language'); } if(tab.match(/weather/)) { $('.tabtrigger').offscreentabs('activateTab', 'weather'); loadContinent(); } updateMenus(tab); updateHeight(); }), 10); } return false; })); }); -->

Gordon Goody

Douglas Gordon Goody (11 March 1930 – 29 January 2016) was a British criminal and small businessman. He was born in Oxford, England, but raised in County Tyrone, Northern Ireland. Goody was known for playing a role in the Great Train Robbery in 1963 that was led by Bruce Reynolds. Goody was sentenced to 30 years in jail, but was released in 1975. A year after his release, he moved to Spain, where he opened a small business as a bar owner.

Goody died at his home in Mojácar, Spain, from a heart attack on 29 January 2016 at the age of 85.

References

External links

  • Gordon Goody at the Internet Movie Database
  • Great Train Robber Gordon Goody Confesses 50 Years On, mirror.co.uk; accessed 5 February 2016.
  • Great Train Robbers, Who Were They?, bbc.com; accessed 5 February 2016.
  • Podcasts:

    • I Was a Great Train Robber - True Crime Documentary

      The inside story of Britain's most famous crime, in the words of the men who carried out the Great Train Robbery, as well as their wives. Although Ronnie Biggs may be the most famous of the gang, the programme reveals that, in fact, he was just a bit-part player.

      published: 15 Jun 2023
    • Tale of Two Thieves: pre-MIPDoc World Premiere Screening trailer

      Chris Long's "Tale of Two Thieves" is MIPDoc 2014's inaugural World Premiere Screening. This feature doc tells the inside story of the mastermind behind one of the most exclusive British crime enigmas, the 1963 Great Train Robbery. 50 years after the heist, Gordon Goody speaks about his long life of crime, the intimate details of his most famous caper and reveals the 'inside man' who walked away and disappeared for half a century. "Tale of Two Thieves" is directed by "The Mentalist" Showrunner Chris Long - who will be in Cannes for the Premiere Screenings - and produced by Kowalski TV and Scallie Filmworks. Worldwide Distribution: Balanga Register for MIPDoc 2014 (April 5-6, Cannes): http://bit.ly/registermipdoc

      published: 17 Mar 2014
    • The Only Great Train Robber that Never Got Caught

      Subscribe to Channel 4 Documentary: https://bit.ly/2IzNJyi Watch the FULL documentary on All 4: https://bit.ly/2H8ufBd Exploration of how Danny Pembrooke turned out to be the only man who didn't get caught for the Great Train Robbery. #TheGreatTrainRobberyTheHiddenTapes #Channel4Documentary #Channel4 #Documentary

      published: 22 Aug 2019
    • Train robber Gordon Goody dies aged 86

      Gordon Goody, one of the last surviving members of the Great Train Robbery gang, has died aged 86, more than 50 years since the infamous heist. He had been living in the southern Spanish town of Mojacar, where he ran a bar. A statement from the local town hall said he had died surrounded by friends. It did not reveal the cause of death. Goody was sentenced to 30 years for his part in the 1963 robbery - one of the most notorious in British history. On 8 August 1963 a gang masterminded by Bruce Reynolds stopped the Glasgow to London Euston overnight mail train as it passed through the Buckinghamshire countryside close to Cheddington. The train was driven a mile-and-a-half to Bridego Bridge, where the gang unloaded more than £2.6m in used notes - worth about £46m today. But they were la...

      published: 29 Jan 2016
    • The Great British Train Robbery: A Tale of Two Thieves

      In 1963, fifteen men pulled off “The Great Train Robbery,” netting today’s equivalent of £45 million. This incredible film features Gordon Goody, one of the main instigators behind the crime, for the first time ever, reveals the identity of the missing mastermind behind Britain’s most famous heist – the elusive and mysterious “Ulsterman”.

      published: 18 Sep 2014
    • Tales From The Jails 104. Gordon Goody & Tony Lambriano

      John tells of talking to Great Train Robber Gordon Goody.

      published: 07 May 2022
    • Bruce Reynolds, Gordon Goody and the Great British Train Robbery of 1963 (Volume 6, Episode 9) Pa...

      In 1963, two British criminals masterminded the robbery of 2.6 million pounds in cash from a Royal Mail Train, an amount worth 45 million pounds today. The robbery and its aftermath caused a nationwide sensation.

      published: 25 Aug 2024
    • The Great Train Robbery - 50 years on

      Nick Russell-Pavier, author of 'The Great Train Robbery' discussed the anniversary of the robbery alongside Peter Jones, a former Metropolitan Police detective inspector. Interview by Jon Sopel on BBC World News' programme 'Global'.

      published: 09 Aug 2013
    • QI | What Was Great About The Great Train Robbers?

      16 April: On this day in 1964, the Great Train Robbers were jailed. Follow QI on Twitter ▶ http://twitter.com/qikipedia Follow QI on Facebook ▶ http://facebook.com/officialQI Follow QI on Instagram ▶ http://instagram.com/theqielves Subscribe on YouTube ▶ http://youtube.com/theqielves For more visit ▶ http://qi.com This clip is from QI Series G, Episode 10, 'Greats' with Stephen Fry, Alan Davies, Jo Brand, Sean Lock and David Mitchell.

      published: 16 Apr 2017
    • Great Train Robbery questions, Mastermind, January 2016

      Great Train Robbery questions, Mastermind, January 2016.

      published: 05 Feb 2016
    developed with YouTube
    I Was a Great Train Robber - True Crime Documentary
    49:59

    I Was a Great Train Robber - True Crime Documentary

    • Order:
    • Duration: 49:59
    • Uploaded Date: 15 Jun 2023
    • views: 377
    The inside story of Britain's most famous crime, in the words of the men who carried out the Great Train Robbery, as well as their wives. Although Ronnie Biggs may be the most famous of the gang, the programme reveals that, in fact, he was just a bit-part player.
    https://wn.com/I_Was_A_Great_Train_Robber_True_Crime_Documentary
    Tale of Two Thieves: pre-MIPDoc World Premiere Screening trailer
    3:05

    Tale of Two Thieves: pre-MIPDoc World Premiere Screening trailer

    • Order:
    • Duration: 3:05
    • Uploaded Date: 17 Mar 2014
    • views: 14180
    Chris Long's "Tale of Two Thieves" is MIPDoc 2014's inaugural World Premiere Screening. This feature doc tells the inside story of the mastermind behind one of the most exclusive British crime enigmas, the 1963 Great Train Robbery. 50 years after the heist, Gordon Goody speaks about his long life of crime, the intimate details of his most famous caper and reveals the 'inside man' who walked away and disappeared for half a century. "Tale of Two Thieves" is directed by "The Mentalist" Showrunner Chris Long - who will be in Cannes for the Premiere Screenings - and produced by Kowalski TV and Scallie Filmworks. Worldwide Distribution: Balanga Register for MIPDoc 2014 (April 5-6, Cannes): http://bit.ly/registermipdoc
    https://wn.com/Tale_Of_Two_Thieves_Pre_Mipdoc_World_Premiere_Screening_Trailer
    The Only Great Train Robber that Never Got Caught
    4:18

    The Only Great Train Robber that Never Got Caught

    • Order:
    • Duration: 4:18
    • Uploaded Date: 22 Aug 2019
    • views: 85306
    Subscribe to Channel 4 Documentary: https://bit.ly/2IzNJyi Watch the FULL documentary on All 4: https://bit.ly/2H8ufBd Exploration of how Danny Pembrooke turned out to be the only man who didn't get caught for the Great Train Robbery. #TheGreatTrainRobberyTheHiddenTapes #Channel4Documentary #Channel4 #Documentary
    https://wn.com/The_Only_Great_Train_Robber_That_Never_Got_Caught
    Train robber Gordon Goody dies aged 86
    1:38

    Train robber Gordon Goody dies aged 86

    • Order:
    • Duration: 1:38
    • Uploaded Date: 29 Jan 2016
    • views: 3935
    Gordon Goody, one of the last surviving members of the Great Train Robbery gang, has died aged 86, more than 50 years since the infamous heist. He had been living in the southern Spanish town of Mojacar, where he ran a bar. A statement from the local town hall said he had died surrounded by friends. It did not reveal the cause of death. Goody was sentenced to 30 years for his part in the 1963 robbery - one of the most notorious in British history. On 8 August 1963 a gang masterminded by Bruce Reynolds stopped the Glasgow to London Euston overnight mail train as it passed through the Buckinghamshire countryside close to Cheddington. The train was driven a mile-and-a-half to Bridego Bridge, where the gang unloaded more than £2.6m in used notes - worth about £46m today. But they were later captured and 12 were jailed for a total of more than 300 years. Train driver Jack Mills was struck over the head during the robbery and never worked again. He died in 1970. More than one of the gang broke out of prison, including Ronnie Biggs, who spent over 30 years on the run before he finally returned to Britain in 2001 to face arrest. Biggs died in 2013 aged 84. Reynolds, who served 10 years in jail, also died in 2013 aged 81. Goody, who had been a hairdresser before the heist, was sentenced to 30 years but released in 1975, setting up his Spanish bar four years later.
    https://wn.com/Train_Robber_Gordon_Goody_Dies_Aged_86
    The Great British Train Robbery: A Tale of Two Thieves
    1:11

    The Great British Train Robbery: A Tale of Two Thieves

    • Order:
    • Duration: 1:11
    • Uploaded Date: 18 Sep 2014
    • views: 6488
    In 1963, fifteen men pulled off “The Great Train Robbery,” netting today’s equivalent of £45 million. This incredible film features Gordon Goody, one of the main instigators behind the crime, for the first time ever, reveals the identity of the missing mastermind behind Britain’s most famous heist – the elusive and mysterious “Ulsterman”.
    https://wn.com/The_Great_British_Train_Robbery_A_Tale_Of_Two_Thieves
    Tales From The Jails 104. Gordon Goody & Tony Lambriano
    7:43

    Tales From The Jails 104. Gordon Goody & Tony Lambriano

    • Order:
    • Duration: 7:43
    • Uploaded Date: 07 May 2022
    • views: 2641
    John tells of talking to Great Train Robber Gordon Goody.
    https://wn.com/Tales_From_The_Jails_104._Gordon_Goody_Tony_Lambriano
    Bruce Reynolds, Gordon Goody and the Great British Train Robbery of 1963 (Volume 6, Episode 9) Pa...
    48:18

    Bruce Reynolds, Gordon Goody and the Great British Train Robbery of 1963 (Volume 6, Episode 9) Pa...

    • Order:
    • Duration: 48:18
    • Uploaded Date: 25 Aug 2024
    • views: 26
    In 1963, two British criminals masterminded the robbery of 2.6 million pounds in cash from a Royal Mail Train, an amount worth 45 million pounds today. The robbery and its aftermath caused a nationwide sensation.
    https://wn.com/Bruce_Reynolds,_Gordon_Goody_And_The_Great_British_Train_Robbery_Of_1963_(Volume_6,_Episode_9)_Pa...
    The Great Train Robbery - 50 years on
    4:45

    The Great Train Robbery - 50 years on

    • Order:
    • Duration: 4:45
    • Uploaded Date: 09 Aug 2013
    • views: 19156
    Nick Russell-Pavier, author of 'The Great Train Robbery' discussed the anniversary of the robbery alongside Peter Jones, a former Metropolitan Police detective inspector. Interview by Jon Sopel on BBC World News' programme 'Global'.
    https://wn.com/The_Great_Train_Robbery_50_Years_On
    QI | What Was Great About The Great Train Robbers?
    3:14

    QI | What Was Great About The Great Train Robbers?

    • Order:
    • Duration: 3:14
    • Uploaded Date: 16 Apr 2017
    • views: 649781
    16 April: On this day in 1964, the Great Train Robbers were jailed. Follow QI on Twitter ▶ http://twitter.com/qikipedia Follow QI on Facebook ▶ http://facebook.com/officialQI Follow QI on Instagram ▶ http://instagram.com/theqielves Subscribe on YouTube ▶ http://youtube.com/theqielves For more visit ▶ http://qi.com This clip is from QI Series G, Episode 10, 'Greats' with Stephen Fry, Alan Davies, Jo Brand, Sean Lock and David Mitchell.
    https://wn.com/Qi_|_What_Was_Great_About_The_Great_Train_Robbers
    Great Train Robbery questions, Mastermind,  January 2016
    2:38

    Great Train Robbery questions, Mastermind, January 2016

    • Order:
    • Duration: 2:38
    • Uploaded Date: 05 Feb 2016
    • views: 14196
    Great Train Robbery questions, Mastermind, January 2016.
    https://wn.com/Great_Train_Robbery_Questions,_Mastermind,_January_2016
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    developed with YouTube
    PLAYLIST TIME:

    I Was a Great Train Robber - True Crime Documentary

    The inside story of Britain's most famous crime, in the words of the men who carried out the Great Train Robbery, as well as their wives. Although Ronnie Biggs may be the most famous of the gang, the programme reveals that, in fact, he was just a bit-part player.
    49:59
    I Was a Great Train Robber - True Crime Documentary
    The inside story of Britain's most famous crime, in the words of the men who carried out t...
    published: 15 Jun 2023
    Play in Full Screen
    3:05
    Tale of Two Thieves: pre-MIPDoc World Premiere Screening trailer
    Chris Long's "Tale of Two Thieves" is MIPDoc 2014's inaugural World Premiere Screening. T...
    published: 17 Mar 2014
    Play in Full Screen
    4:18
    The Only Great Train Robber that Never Got Caught
    Subscribe to Channel 4 Documentary: https://bit.ly/2IzNJyi Watch the FULL documentary on A...
    published: 22 Aug 2019
    Play in Full Screen
    1:38
    Train robber Gordon Goody dies aged 86
    Gordon Goody, one of the last surviving members of the Great Train Robbery gang, has died ...
    published: 29 Jan 2016
    Play in Full Screen
    1:11
    The Great British Train Robbery: A Tale of Two Thieves
    In 1963, fifteen men pulled off “The Great Train Robbery,” netting today’s equivalent of £...
    published: 18 Sep 2014
    Play in Full Screen
    7:43
    Tales From The Jails 104. Gordon Goody & Tony Lambriano
    John tells of talking to Great Train Robber Gordon Goody.
    published: 07 May 2022
    Play in Full Screen
    48:18
    Bruce Reynolds, Gordon Goody and the Great British Train Robbery of 1963 (Volume 6, Episode 9) Pa...
    In 1963, two British criminals masterminded the robbery of 2.6 million pounds in cash from...
    published: 25 Aug 2024
    Play in Full Screen
    4:45
    The Great Train Robbery - 50 years on
    Nick Russell-Pavier, author of 'The Great Train Robbery' discussed the anniversary of the ...
    published: 09 Aug 2013
    Play in Full Screen
    3:14
    QI | What Was Great About The Great Train Robbers?
    16 April: On this day in 1964, the Great Train Robbers were jailed. Follow QI on Twitter ...
    published: 16 Apr 2017
    Play in Full Screen
    2:38
    Great Train Robbery questions, Mastermind, January 2016
    Great Train Robbery questions, Mastermind, January 2016.
    published: 05 Feb 2016
    Play in Full Screen

    Gordon Goody

    Douglas Gordon Goody (11 March 1930 – 29 January 2016) was a British criminal and small businessman. He was born in Oxford, England, but raised in County Tyrone, Northern Ireland. Goody was known for playing a role in the Great Train Robbery in 1963 that was led by Bruce Reynolds. Goody was sentenced to 30 years in jail, but was released in 1975. A year after his release, he moved to Spain, where he opened a small business as a bar owner.

    Goody died at his home in Mojácar, Spain, from a heart attack on 29 January 2016 at the age of 85.

    References

    External links

  • Gordon Goody at the Internet Movie Database
  • Great Train Robber Gordon Goody Confesses 50 Years On, mirror.co.uk; accessed 5 February 2016.
  • Great Train Robbers, Who Were They?, bbc.com; accessed 5 February 2016.
  • '); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->

    Latest News for: gordon goody

    Edit

    Candlelight hike, snowshoe and ski events in Wisconsin in 2025

    Milwaukee Journal Sentinel 31 Dec 2024
    Free refreshments and goodies will be available to enjoy around a bonfire ... 10, Gordon Bubolz Nature Preserve, Appleton ... 24, Gordon Bubolz Nature Preserve, Appleton ... Free refreshments and goodies will be available to enjoy around a bonfire.
    Edit

    Establishing a New Habitability Metric for Future Astrobiology Surveys

    Universe Today 18 Oct 2024
    The study was led by Kenneth Goodis Gordon, a graduate student with the University of Central Florida’s (UCF) Planetary Sciences Group ... But as Goodis Gordon told ... As Goodis Gordon explained..
    Edit

    Dale Earnhardt Jr. Defends NASCAR Driver's Controversial Move At Daytona

    Aiken Standard 29 Aug 2024
    recalled a similar incident that he had with Jeff Gordon at the 2014 Goody's Headache Relief Shot 500 at Martinsville where he found himself in front of his then-teammate.
    Edit

    Dover High School Quarter 4 Honor Roll, 2023-2024

    Seacoast Online 16 Jul 2024
    Gavin Beauregard, Sadie Bellerose, Eric Berg, Reagan Bernard, Magnus Boucher, Daniel Bretz, Quinn Carberry, Alessandra Carrier, Grady Cedrone, Bryan Chanthavong, Kaden Cook, Owen Corringham, Emilie ...
    Edit

    Marmee's Table at the farmer's market

    Vincennes Sun-Commercial 05 Jul 2024
    ... Gordon, who set up shop at the farmer’s market on Wednesday evening ... Alongside baked goods, Gordon also sells dehydrated starter for sourdough for those who want to bake their own sourdough goodies.
    Edit

    ‘I Haven’t Been In The Ocean Since’: Christian Slater Shares Experience Seeing Jaws At Five While Talking About Influential Early Movies For Him

    Cinema Blend 24 Apr 2024
    That’s right… five! ... Robert Shaw is fantastic ... I was seven or eight years old, and Indiana Jones and all these great movies that just kind of took my brain to, even that movie Flash Gordon. I wanted to be Flash Gordon. That was a goodie ... .
    Edit

    Tana Ramsay wows in plunging black dress as she holds hands with husband Gordon after ...

    The Daily Mail 21 Apr 2024
    Gordon and Tana Ramsay clutched onto each other as ... Gordon made sure to take care of both of their goody bags from the fashioned designer's big night before they stopped and smiled as they headed home.
    Edit

    Gordon Mckernan And Modesto Partner To Celebrate LSU Baseball's Home Opener With '8,888 Reasons To ...

    MENA FN 15 Feb 2024
    (MENAFN - EIN Presswire) Gordon McKernan and Modesto collaborate to celebrate LSU Baseball's first home game by giving away exclusive "8,888 Reasons to Rally" hats and goodie bags to fans. Gordon ... .
    Edit

    Candlelight hike, snowshoe and ski events in Wisconsin in 2024

    Marshfield News Herald 26 Dec 2023
    Free refreshments and goodies will be available to enjoy around a bonfire ... 13, Gordon Bubolz Nature Preserve, Appleton ... 26, Gordon Bubolz Nature Preserve, Appleton ... Free refreshments and goodies will be available to enjoy around a bonfire.
    Edit

    Son of Great Train Robbery mastermind Bruce Reynolds - the inspiration for Michael Caine's 'Harry ...

    The Daily Mail 08 Aug 2023
    'To make sense of it, I think I thought my dad was a spy ... It must have blown her mind.' ... The Great Train Robbers Roy James, Buster Edwards, Roger Cordery, Jimmy White, Gordon Goody and Jimmy Hussey, who attended a Cambridge Union debate at Cambridge ... .
    Edit

    Nuggets fans revel in team’s first championship parade: 'One of the best times of my life'

    Eagle-Tribune 16 Jun 2023
    Carmelo Anthony and Dikembe Mutombo, Mahmoud Abdul-Rauf and Nick Van Exel ... Supermascot Rocky threw goodies into the masses. Aaron Gordon, the indispensable defensive cog, soaked in the adulation, a cigar hanging out of his mouth ... Police say Sgt ... .
    Edit

    Denver Nuggets fans revel in team’s first championship parade: “One of the best times of ...

    Denver Post 16 Jun 2023
    Carmelo Anthony and Dikembe Mutombo, Mahmoud Abdul-Rauf and Nick Van Exel ... Supermascot Rocky threw goodies into the masses. Aaron Gordon, the indispensable defensive cog, soaked in the adulation, a cigar hanging out of his mouth ... Police say Sgt ... WATCH.
    Edit

    Page 2 Tuesday, May 16, 2023

    Jamaica Observer 16 May 2023
    Boss Mom, a network that exists to support 'momtrepreneurs' who can benefit from a community of successful, like-minded women — operated by parenting consultant Michelle Gordon — teamed up with Gabby Glam to provide beauty boxes.
    Edit

    What's NXT

    Herald Mail 27 Apr 2023
    Information in the calendar is subject to change or cancellation ... CLASS ... Gordon's Grocery 100-Year Anniversary Block Party ... Gordon's Grocery ... DJ Mike Schultz, two bounce houses, Fireside Pizza truck, free samples of Gordon's goodies, beer truck and more.

    Most Viewed

    ×