'+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; })); }); -->

Judge Dread

Alexander Minto Hughes (2 May 1945 – 13 March 1998), better known as Judge Dread, was an English reggae and ska musician. He was the first white recording artist to have a reggae hit in Jamaica, and the BBC has banned more of his songs than any other recording artist due to his frequent use of sexual innuendo and double entendres.

Career

Hughes was introduced to Jamaican music when he lodged as a teenager in a West Indian household in Brixton, South West London. He met Jamaican artists Derrick Morgan and Prince Buster through his job as a bouncer at London nightclubs such as the Ram Jam in Brixton, and through another job as a bodyguard. After working as a professional wrestler (under the name "The Masked Executioner") and as a debt collector for Trojan Records, he worked as a DJ on local radio.

When Prince Buster had a big underground hit in 1969 with "Big 5", Hughes capitalized on it with the recording of his own "Big Six", based on Verne & Son's "Little Boy Blue", which was picked up by Trojan boss Lee Gopthal, and released on Trojan's 'Big Shot' record label under the stage name Judge Dread, the name taken from another of Prince Buster's songs. "Big Six" reached No. 11 in the UK Singles Chart in 1972, selling over 300,000 copies and spending six months on the chart, despite getting no radio airplay due to its lyrics. Further hit singles followed with "Big Seven" (co-written by Rupie Edwards) and "Big Eight" – both following the pattern of lewd versions of nursery rhymes over a reggae backing – as well as "Y Viva Suspenders" and "Up with the Cock".

John Wayne

Marion Mitchell Morrison (born Marion Robert Morrison; May 26, 1907 – June 11, 1979), known by his stage name John Wayne and by his nickname "Duke", was an American film actor, director, and producer. An Academy Award-winner for True Grit (1969), Wayne was among the top box office draws for three decades. An enduring American icon, for several generations of Americans he epitomized rugged masculinity and is famous for his demeanor, including his distinctive calm voice, walk, and height.

Born in Iowa, Wayne grew up in Southern California. He found work at local film studios when he lost his football scholarship to USC as a result of a bodysurfing accident. Initially working for the Fox Film Corporation, he mostly appeared in small bit parts. His first leading role came in Raoul Walsh's lavish widescreen epic The Big Trail (1930), which led to leading roles in numerous B movies throughout the 1930s, many of them in the Western genre.

Wayne's career took off in 1939, with John Ford's Stagecoach making him an instant mainstream star. Wayne went on to star in 142 pictures. Biographer Ronald Davis says: "John Wayne personified for millions the nation's frontier heritage. Eighty-three of his movies were Westerns, and in them he played cowboys, cavalrymen, and unconquerable loners extracted from the Republic's central creation myth."

John Wayne (disambiguation)

John Wayne and similar may refer to:

People

Born names

  • John Wayne Bobbitt, penis amputee by wife Lorena, pornographic film star, musician, bartender, limo driver, mover, pizza delivery driver, tow truck operator, and Universal Life Church minister
  • John Wayne Gacy, American serial killer
  • Taken names

  • John Wayne, American actor born Marion Robert Morrison
  • Johnny Wayne, comedian born Louis Weingarten
  • Other

  • John Wayne (album) by Terry Scott Taylor
  • John Wayne Airport, in Orange County, California
  • John Wayne Elementary School
  • John Wayne Parkway
  • John Wayne Pioneer Trail
  • Jon Wayne, Los Angeles cowpunk band
  • The P-38 can opener (U.S. military equipment) was sometimes known as the "John Wayne"
  • Isla Taborcillo (a.k.a. John Wayne Island) is a small private island off the coast of Panama which was once owned by American film actor John Wayne
  • "John Wayne", a song from Billy Idol's 2008 album The Very Best of Billy Idol: Idolize Yourself
  • See also

  • All pages with titles containing John Wayne
  • John Wain
  • Terry Scott Taylor

    Terry Scott Taylor (born May 24, 1950) is an American songwriter, record producer, writer and founding member of the bands Daniel Amos and The Swirling Eddies (credited as Camarillo Eddy). Taylor is also a member of the roots and alternative music group, Lost Dogs. He is currently based in San Jose, California, U.S.

    Taylor is highly regarded for his songwriting skills. These often include allusions to and reworkings of material ranging from Elizabethan poets to modern authors. Foremost among Taylor's influences is William Blake. The Daniel Amos album title Fearful Symmetry was drawn from Blake's poem "The Tyger," and numerous songs across The Alarma! Chronicles series of albums have Blake-inspired references. Some other poets who have influenced Taylor's work are T. S. Eliot and Christina Rossetti. Eliot's poetry inspired the song "Hollow Man" from the Doppelgänger album. "Where Dreams Come True" from Taylor's solo LP A Briefing for the Ascent draws heavily from Rosetti's poem "Echo."

    Podcasts:

    Judge Dread

    ALBUMS

    Died: 1998-03-12

    • Lady Gaga - John Wayne (Official Music Video)

      LADY GAGA / JOANNE NEW ALBUM / OUT NOW iTunes: http://gaga.lk/Joanne Apple Music: http://gaga.lk/JoanneAP Spotify: http://gaga.lk/JoanneSP Google Play: http://gaga.lk/JoanneGP Amazon: http://gaga.lk/JoanneAMZ Website: www.ladygaga.com Store: http://gaga.lk/GagaStore THE JOANNE WORLD TOUR http://www.ladygaga.com/tourdates FOLLOW LADY GAGA: Facebook: http://gaga.lk/facebook Twitter: http://gaga.lk/Twitter Instagram: http://gaga.lk/Instagram Snapchat: http://gaga.lk/Snapchat Spotify: http://gaga.lk/Spotify Production: Serial Pictures Director: Jonas Akerlund Executive Producer: Violaine Etienne Producers: Violaine Etienne, Scott Pourroy, Michel Waxman Cinematographer: Par Ekberg 1st Assistant Director: Andy Coffing Production Designer: Emma Fairley Editor: Matt Nee Post Production: Chim...

      published: 09 Feb 2017
    • The Undefeated | WESTERN MOVIE | John Wayne | HD 1080p | Full Length Classic Western Film

      Free Western Movie, Full Length Cowboy Film, English: The Undefeated is a 1969 American Western and Civil War era film directed by Andrew V. McLaglen and John Wayne (uncredited) and starring John Wayne and Rock Hudson. The film portrays events surrounding the French Imperial intervention in Mexico during the 1860s period of the neighboring American Civil War with the Archduke Maximillian of Austria set up as Emperor in Mexico in 1863 by French Emperor Napoleon III and is also loosely based on Confederate States Army General Joseph Orville Shelby's factual escape to Mexico after the American Civil War (1861-1865). and his attempt to join with Maximilian's Imperial Mexican forces supported by French Imperial regiments sent by Emperor Napoleon III from Europe. After the Civil War, ex-Confede...

      published: 18 Sep 2019
    • John Wayne - Cigarettes After Sex

      our new album 𝑿’𝒔 is out now: https://cigsaftersex.lnk.to/_xs John Wayne - Cigarettes After Sex from Cigarettes After Sex LP: http://cigsaftersex.lnk.to/cas website: https://cigsaftersex.lnk.to/web ----------------------------------------------------------------- subscribe: https://cigsaftersex.lnk.to/subscribe listen: https://cigsaftersex.lnk.to/listen fb: https://cigsaftersex.lnk.to/fb tw: https://cigsaftersex.lnk.to/tw ig: https://cigsaftersex.lnk.to/ig uk store: https://cigsaftersex.lnk.to/UK-store us store: https://cigsaftersex.lnk.to/US-store ----------------------------------------------------------------------- recorded December 2015 in Brooklyn, NY Written by Greg Gonzalez Greg Gonzalez - vocals, electric guitar, acoustic guitar Phillp Tubbs - keyboards Randy Miller - bass ...

      published: 09 Jun 2017
    • McLintock | WESTERN MOVIE | John Wayne | Free Cowboy Film | Full Movie

      Free Western Movie, Full Length Cowboy Film, English, 1963: McLintock - Wealthy rancher G.W. McLintock uses his power and influence in the territory to keep the peace between farmers, ranchers, land-grabbers, Indians and corrupt government officials. Director: Andrew V. McLaglen Writer: James Edward Grant (original screenplay) Stars: John Wayne, Maureen O'Hara, Patrick Wayne ···················································································· FOLLOW US! ✘ Twitter - https://twitter.com/Grjngo_com SUPPORT US! ✘ Merchandise - https://bit.ly/2FLB0sV MORE MOVIES! ► Classics: https://bit.ly/2CBLt8c ► Spaghetti Western: https://bit.ly/2CyCe8I ► All Playlists: https://bit.ly/2EOOfIH #westernmovies #grjngo #freewestern ····················································...

      published: 15 May 2020
    • John Wayne | Angel and the Badman (1947) Classic Western | Colorized Movie, Subtitles

      The dramatic story of a girl in a man's world who taught a killer the real meaning of love! Quirt Evans, an all round bad guy, is nursed back to health and sought after by Penelope Worth, a Quaker girl. He eventually finds himself having to choose between his world and the world Penelope lives in. Original title: Angel and the Badman (1947) Original B&W version: https://youtu.be/EMqvUjAthqc Director & Writer: James Edward Grant Cast: Gail Russell, Harry Carey, Bruce Cabot & John Wayne Genres: Colorized, Classics, Romance, Western This film comes with original English audio, and dubbed audio in French, German, Italian, Spanish. And is also subtitles in more than 30+ languages. Click on ⚙️ and choose your preferred language. @CultCinemaClassics premiere trailer: https://youtu.be/vmjL3S...

      published: 01 Jun 2023
    • The Undefeated | JOHN WAYNE | American Western | Cowboys | Adventure

      Western Movie in Full Length starring John Wayne: The Undefeated - After the Civil War, ex-Confederate soldiers heading for a new life in Mexico run into ex-Union cavalrymen selling horses to the Mexican government but they must join forces to fight off Mexican bandits and revolutionaries. The Undefeated (1969) Director: Andrew V. McLaglen Writers: James Lee Barrett (screenplay), Stanley Hough (story) (as Stanley L. Hough) Stars: John Wayne, Rock Hudson, Antonio Aguilar Genres: Action, Adventure, Romance, War, Western Country: USA Language: English Release Date: 25 September 1969 Filming Locations: Bavispe River, Sonora, Mexico Storyline: After the Civil War, ex-Union Colonel John Henry Thomas and ex-Confederate Colonel James Langdon are leading two disparate groups of people through...

      published: 13 Feb 2022
    • McLintock [1963] John Wayne - Full Movie English version

      George Washington McLintock, "GW" to friends and foes alike, is a cattle baron and the richest man in the territory. He anxiously awaits the return of his daughter Becky who has been away at school for the last two years. He's also surprised to see that his wife Katherine has also returned. She had left him some years before without really explaining what he had done, but she does make the point of saying that she's returned to take their daughter back to the State Capitol with her. GW is highly respected by everyone around him, including the farmers who are pouring into the territories with free grants of land and the Indians who are under threat of being relocated to another reservation. Between his wife, his headstrong daughter, the crooked land agent and the thieving government Indian ...

      published: 02 Aug 2017
    • JOHN WAYNE-FRESH HOME

      JOHN WAYNE-FRESH HOME

      published: 19 Jun 2009
    • The Tall Man Full Western Movie Classic English #moviewesternclassic

      The Tall Man Full Western Movie Classic English #moviewesternclassic Sinopse: The Tall Man Two brothers discharged from the Confederate Army join a businessman for a cattle drive from Texas to Montana where they run into raiding Jayhawkers, angry Sioux, rough terrain and bad weather. Director Raoul Walsh Writers Sydney BoehmFrank S. NugentHeck Allen Stars Clark Gable, Jane Russell, Robert Ryan Tags: free movies,movie,free films,cowboy movies full movies,free western movies,western,western movies,free movies to watch,western feature films,django movies,old western movies,cowboy,full length movies,best western movies,cowboys,wild west,westerns,full length,western movie, entire movies, full movie, western movies full length,django,cowboy movies,western movies full length free,george mont...

      published: 02 Sep 2023
    • Michael Caine’s Incredible Encounter With John Wayne | The Graham Norton Show

      Amazing! #TheGNShow #TheGrahamNortonShow #GrahamNorton Follow us! Facebook - https://www.facebook.com/thegrahamnortonshow/?ref=page_internal Instagram - https://www.instagram.com/thegrahamnortonshowofficial/ Twitter - https://twitter.com/TheGNShowFollow us here: Facebook: https://www.facebook.com/thegrahamnortonshow/ Instagram: https://www.instagram.com/thegrahamnortonshowofficial/ Twitter: https://twitter.com/TheGNShow TikTok: https://www.tiktok.com/@thegnshow Snapchat: https://www.snapchat.com/discover/The_Graham_Norton_Show/3773416663

      published: 19 Oct 2018
    • John Wayne Makes a Surprise Walk-On Appearance | Carson Tonight Show

      Original Airdate: 01/08/1976 #johnnycarson #thetonightshow #johnwayne

      published: 08 Aug 2022
    • McLintock! (Western, 1963) John Wayne, Maureen O'Hara, Patrick Wayne | Movie, Subtitles

      He likes his whiskey hard... His women soft... And his west all to himself! Wealthy rancher G. W. McLintock uses his power and influence in the territory to keep the peace between farmers, ranchers, land-grabbers, Indians and corrupt government officials. Original title: McLintock! (1963) Director: Andrew V. McLaglen Writer: James Edward Grant Stars: John Wayne, Maureen O'Hara, Patrick Wayne, Stefanie Powers Budget: $2,000,000 Genres: Classic Movie, Comedy, Romance, Western Movie This video is available with original English audio, and additional French, German, Italian, Portuguese & Spanish dubbed audio. Also subtitled in more than 30+ languages. Select your preferred audio & subtitles languages in settings ⚙️

      published: 25 May 2023
    developed with YouTube
    Lady Gaga - John Wayne (Official Music Video)
    2:57

    Lady Gaga - John Wayne (Official Music Video)

    • Order:
    • Duration: 2:57
    • Uploaded Date: 09 Feb 2017
    • views: 52436498
    LADY GAGA / JOANNE NEW ALBUM / OUT NOW iTunes: http://gaga.lk/Joanne Apple Music: http://gaga.lk/JoanneAP Spotify: http://gaga.lk/JoanneSP Google Play: http://gaga.lk/JoanneGP Amazon: http://gaga.lk/JoanneAMZ Website: www.ladygaga.com Store: http://gaga.lk/GagaStore THE JOANNE WORLD TOUR http://www.ladygaga.com/tourdates FOLLOW LADY GAGA: Facebook: http://gaga.lk/facebook Twitter: http://gaga.lk/Twitter Instagram: http://gaga.lk/Instagram Snapchat: http://gaga.lk/Snapchat Spotify: http://gaga.lk/Spotify Production: Serial Pictures Director: Jonas Akerlund Executive Producer: Violaine Etienne Producers: Violaine Etienne, Scott Pourroy, Michel Waxman Cinematographer: Par Ekberg 1st Assistant Director: Andy Coffing Production Designer: Emma Fairley Editor: Matt Nee Post Production: Chimney Pot Music video by Lady Gaga performing John Wayne. (C) 2017 Interscope Records http://vevo.ly/1OY8Jf
    https://wn.com/Lady_Gaga_John_Wayne_(Official_Music_Video)
    The Undefeated | WESTERN MOVIE | John Wayne | HD 1080p | Full Length Classic Western Film
    1:58:17

    The Undefeated | WESTERN MOVIE | John Wayne | HD 1080p | Full Length Classic Western Film

    • Order:
    • Duration: 1:58:17
    • Uploaded Date: 18 Sep 2019
    • views: 6658194
    Free Western Movie, Full Length Cowboy Film, English: The Undefeated is a 1969 American Western and Civil War era film directed by Andrew V. McLaglen and John Wayne (uncredited) and starring John Wayne and Rock Hudson. The film portrays events surrounding the French Imperial intervention in Mexico during the 1860s period of the neighboring American Civil War with the Archduke Maximillian of Austria set up as Emperor in Mexico in 1863 by French Emperor Napoleon III and is also loosely based on Confederate States Army General Joseph Orville Shelby's factual escape to Mexico after the American Civil War (1861-1865). and his attempt to join with Maximilian's Imperial Mexican forces supported by French Imperial regiments sent by Emperor Napoleon III from Europe. After the Civil War, ex-Confederate soldiers heading for a new life in Mexico run into ex-Union cavalrymen selling horses to the Mexican government but they must join forces to fight off Mexican bandits and revolutionaries. Director: Andrew V. McLaglen Writers: James Lee Barrett (screenplay), Stanley Hough (story) (as Stanley L. Hough) Stars: John Wayne, Rock Hudson, Antonio Aguilar Also Known As (AKA): (original title) The Undefeated Austria Die Unbesiegten Brazil Jamais Foram Vencidos Bulgaria (Bulgarian title) Непобедените Canada (English title) The Undefeated Denmark De ubesejrede Finland Voittamattomat France Les géants de l'Ouest Germany Die Unbesiegten Greece (transliterated ISO-LATIN-1 title) Oi aittitoi Hungary A legyőzhetetlen Italy I due invincibili Japan (working title) Ôinaru otoko-tachi Mexico Los invencibles Norway (alternative title) De ubeseirede Poland Niezwyciezeni Portugal Nunca Foram Vencidos Romania Neînvinşii Serbia Nepobedivi Soviet Union (Russian title) Непобежденные Spain Los indestructibles Sweden De obesegrade Turkey (Turkish title) Batinin devleri USA The Undefeated Venezuela El dúo invencible West Germany Die Unbesiegten Yugoslavia (Serbian title) (literal title) Nepobedivi ···················································································· FOLLOW US! ✘ Twitter - https://twitter.com/Grjngo_com SUPPORT US! ✘ Merchandise - https://bit.ly/2FLB0sV MORE MOVIES! ► Classics: https://bit.ly/2CBLt8c ► Spaghetti Western: https://bit.ly/2CyCe8I ► All Playlists: https://bit.ly/2EOOfIH #freemovies #grjngo #watchfree ···················································································· COPYRIGHT: All of the films published by us are legally licensed. We have acquired the rights (at least for specific territories) from the rightholders by contract. If you have questions please send an email to: info@amogo.de, Amogo Networx - The AVOD Channel Network, www.amogo-networx.com.
    https://wn.com/The_Undefeated_|_Western_Movie_|_John_Wayne_|_Hd_1080P_|_Full_Length_Classic_Western_Film
    John Wayne - Cigarettes After Sex
    4:19

    John Wayne - Cigarettes After Sex

    • Order:
    • Duration: 4:19
    • Uploaded Date: 09 Jun 2017
    • views: 11660157
    our new album 𝑿’𝒔 is out now: https://cigsaftersex.lnk.to/_xs John Wayne - Cigarettes After Sex from Cigarettes After Sex LP: http://cigsaftersex.lnk.to/cas website: https://cigsaftersex.lnk.to/web ----------------------------------------------------------------- subscribe: https://cigsaftersex.lnk.to/subscribe listen: https://cigsaftersex.lnk.to/listen fb: https://cigsaftersex.lnk.to/fb tw: https://cigsaftersex.lnk.to/tw ig: https://cigsaftersex.lnk.to/ig uk store: https://cigsaftersex.lnk.to/UK-store us store: https://cigsaftersex.lnk.to/US-store ----------------------------------------------------------------------- recorded December 2015 in Brooklyn, NY Written by Greg Gonzalez Greg Gonzalez - vocals, electric guitar, acoustic guitar Phillp Tubbs - keyboards Randy Miller - bass Jacob Tomsky - drums Recorded by Greg Gonzalez Mixed by Rocky Gallo Mastered by Greg Calbi Cover design by Randy Miller Released on Partisan Records on June 9th, 2017 ----------------------------------------------------------------------- Lyrics: He’s got so much love for her, But he doesn’t know what to do Sitting in the car waiting outside her school He’s in for a heartbreak if it’s all been blind faith from my point of view Baby, he’s got to be crazy Living like he’s John Wayne Always facing the world or chasing the girl Baby, he’s got to be crazy He’s got so much in his heart, But he doesn’t know what to do All he wants is her lying inside his room He’s always feeling cheated telling all his secrets that I couldn’t keep Baby, he’s got to be crazy Living like he’s John Wayne Always facing the world or chasing the girl Baby, he’s got to be crazy
    https://wn.com/John_Wayne_Cigarettes_After_Sex
    McLintock | WESTERN MOVIE | John Wayne | Free Cowboy Film | Full Movie
    2:06:49

    McLintock | WESTERN MOVIE | John Wayne | Free Cowboy Film | Full Movie

    • Order:
    • Duration: 2:06:49
    • Uploaded Date: 15 May 2020
    • views: 7936249
    Free Western Movie, Full Length Cowboy Film, English, 1963: McLintock - Wealthy rancher G.W. McLintock uses his power and influence in the territory to keep the peace between farmers, ranchers, land-grabbers, Indians and corrupt government officials. Director: Andrew V. McLaglen Writer: James Edward Grant (original screenplay) Stars: John Wayne, Maureen O'Hara, Patrick Wayne ···················································································· FOLLOW US! ✘ Twitter - https://twitter.com/Grjngo_com SUPPORT US! ✘ Merchandise - https://bit.ly/2FLB0sV MORE MOVIES! ► Classics: https://bit.ly/2CBLt8c ► Spaghetti Western: https://bit.ly/2CyCe8I ► All Playlists: https://bit.ly/2EOOfIH #westernmovies #grjngo #freewestern ···················································································· COPYRIGHT: All of the films published by us are legally licensed. We have acquired the rights (at least for specific territories) from the rightholders by contract. If you have questions please send an email to: info@amogo.de, Amogo Networx - The AVOD Channel Network, www.amogo-networx.com.
    https://wn.com/Mclintock_|_Western_Movie_|_John_Wayne_|_Free_Cowboy_Film_|_Full_Movie
    John Wayne | Angel and the Badman (1947) Classic Western | Colorized Movie, Subtitles
    1:39:40

    John Wayne | Angel and the Badman (1947) Classic Western | Colorized Movie, Subtitles

    • Order:
    • Duration: 1:39:40
    • Uploaded Date: 01 Jun 2023
    • views: 2684364
    The dramatic story of a girl in a man's world who taught a killer the real meaning of love! Quirt Evans, an all round bad guy, is nursed back to health and sought after by Penelope Worth, a Quaker girl. He eventually finds himself having to choose between his world and the world Penelope lives in. Original title: Angel and the Badman (1947) Original B&W version: https://youtu.be/EMqvUjAthqc Director & Writer: James Edward Grant Cast: Gail Russell, Harry Carey, Bruce Cabot & John Wayne Genres: Colorized, Classics, Romance, Western This film comes with original English audio, and dubbed audio in French, German, Italian, Spanish. And is also subtitles in more than 30+ languages. Click on ⚙️ and choose your preferred language. @CultCinemaClassics premiere trailer: https://youtu.be/vmjL3S_E4hI
    https://wn.com/John_Wayne_|_Angel_And_The_Badman_(1947)_Classic_Western_|_Colorized_Movie,_Subtitles
    The Undefeated | JOHN WAYNE | American Western | Cowboys | Adventure
    1:53:13

    The Undefeated | JOHN WAYNE | American Western | Cowboys | Adventure

    • Order:
    • Duration: 1:53:13
    • Uploaded Date: 13 Feb 2022
    • views: 4572614
    Western Movie in Full Length starring John Wayne: The Undefeated - After the Civil War, ex-Confederate soldiers heading for a new life in Mexico run into ex-Union cavalrymen selling horses to the Mexican government but they must join forces to fight off Mexican bandits and revolutionaries. The Undefeated (1969) Director: Andrew V. McLaglen Writers: James Lee Barrett (screenplay), Stanley Hough (story) (as Stanley L. Hough) Stars: John Wayne, Rock Hudson, Antonio Aguilar Genres: Action, Adventure, Romance, War, Western Country: USA Language: English Release Date: 25 September 1969 Filming Locations: Bavispe River, Sonora, Mexico Storyline: After the Civil War, ex-Union Colonel John Henry Thomas and ex-Confederate Colonel James Langdon are leading two disparate groups of people through strife-torn Mexico. John Henry and company are bringing horses to the unpopular Mexican government for $35 a head while Langdon is leading a contingent of displaced southerners, who are looking for a new life in Mexico after losing their property to carpetbaggers. The two men are eventually forced to mend their differences in order to fight off both bandits and revolutionaries, as they try to lead their friends and kin to safety. Written by Alfred Jingle Reviews: "John Wayne and Rock Hudson play off each other with confidence and style in this fine movie western. THE UNDEFEATED endlessly frames its two super-popular movie stars from low camera angles and often adds perfect blue skies above and picturesque western vistas in deep focus behind. Both in full command of the camera, regal, standing straight and tall -- here John Wayne and Rock Hudson live forever larger than life. THE UNDEFEATED is pure hero worship eye candy! Although the story is rather flawed, everything else is A+. The music is among the best of bold western movie scores. The direction as noted above is respectful to the picture's two great American icons. It is not perfect, but THE UNDEFEATED is an exceptionally fun movie to watch." Written by Pro Jury on IMDb.com "This was one of Hugo Montenegro's finest scores. John Wayne and Rock Hudson played off each other magnificently. Of course, it doesn't hurt to have a great supporting cast including Bruce Cabot, Ben 'Son' Johnson, and Edward Faulkner. Marian McCargo played a great role as the widow of a Confederate soldier and Roman Gabriel as Blue Boy, Duke's adopted Indian son, was surprisingly good. Andrew V. McLaglen was an underrated director and The Undefeated proves that." Written by frank4122 on IMDb.com Also Known As (AKA): (original title) The Undefeated Austria Die Unbesiegten Brazil Jamais Foram Vencidos Bulgaria (Bulgarian title) Непобедените Canada (English title) The Undefeated Denmark De ubesejrede Finland Voittamattomat France Les géants de l'Ouest Germany Die Unbesiegten Greece (transliterated title) Oi aittitoi Hungary A legyőzhetetlen Italy I due invincibili Japan (working title) Ôinaru otoko-tachi Japan (Japanese title) 大いなる男たち Mexico Los invencibles Norway (alternative title) De ubeseirede Poland Niezwyciężeni Portugal Nunca Foram Vencidos Romania Neînvinşii Serbia Nepobedivi Soviet Union (Russian title) Непобежденные Spain Los indestructibles Sweden De obesegrade Turkey (Turkish title) Batının devleri UK The Undefeated USA The Undefeated Venezuela El dúo invencible West Germany Die Unbesiegten Yugoslavia (Serbian title) (literal title) Nepobedivi ✘ Website: https://www.grjngo.com FOLLOW US! ✘ Instagram - https://www.instagram.com/grjngo_westernmovies ✘ Twitter - https://twitter.com/Grjngo_com SUPPORT US! ✘ Membership - https://bit.ly/2V63h4q ✘ Merchandise - https://bit.ly/2FLB0sV MORE MOVIES! ► Classics: https://bit.ly/2CBLt8c ► Spaghetti Western: https://bit.ly/2CyCe8I ► All Playlists: https://bit.ly/2EOOfIH #westernmovies #freemovies #spaghettiwesterns COPYRIGHT: All of the films published by us are legally licensed. We have acquired the rights (at least for specific territories) from the copyright holders by contract. If you have questions please send an email to: info@amogo.de, Amogo Networx - The AVOD Channel Network, www.amogo-networx.com.
    https://wn.com/The_Undefeated_|_John_Wayne_|_American_Western_|_Cowboys_|_Adventure
    McLintock [1963] John Wayne - Full Movie English version
    2:06:46

    McLintock [1963] John Wayne - Full Movie English version

    • Order:
    • Duration: 2:06:46
    • Uploaded Date: 02 Aug 2017
    • views: 3841537
    George Washington McLintock, "GW" to friends and foes alike, is a cattle baron and the richest man in the territory. He anxiously awaits the return of his daughter Becky who has been away at school for the last two years. He's also surprised to see that his wife Katherine has also returned. She had left him some years before without really explaining what he had done, but she does make the point of saying that she's returned to take their daughter back to the State Capitol with her. GW is highly respected by everyone around him, including the farmers who are pouring into the territories with free grants of land and the Indians who are under threat of being relocated to another reservation. Between his wife, his headstrong daughter, the crooked land agent and the thieving government Indian agent, GW tries to keep the peace and do what is best for everyone. Wealthy rancher G.W. McLintock uses his power and influence in the territory to keep the peace between farmers, ranchers, land-grabbers, Indians and corrupt government officials. Director: Andrew V. McLaglen Writer: James Edward Grant Stars: John Wayne, Maureen O'Hara, Patrick Wayne 1080p HD
    https://wn.com/Mclintock_1963_John_Wayne_Full_Movie_English_Version
    JOHN WAYNE-FRESH HOME
    4:26

    JOHN WAYNE-FRESH HOME

    • Order:
    • Duration: 4:26
    • Uploaded Date: 19 Jun 2009
    • views: 1814383
    JOHN WAYNE-FRESH HOME
    https://wn.com/John_Wayne_Fresh_Home
    The Tall Man Full Western Movie Classic English   #moviewesternclassic
    2:02:42

    The Tall Man Full Western Movie Classic English #moviewesternclassic

    • Order:
    • Duration: 2:02:42
    • Uploaded Date: 02 Sep 2023
    • views: 345
    The Tall Man Full Western Movie Classic English #moviewesternclassic Sinopse: The Tall Man Two brothers discharged from the Confederate Army join a businessman for a cattle drive from Texas to Montana where they run into raiding Jayhawkers, angry Sioux, rough terrain and bad weather. Director Raoul Walsh Writers Sydney BoehmFrank S. NugentHeck Allen Stars Clark Gable, Jane Russell, Robert Ryan Tags: free movies,movie,free films,cowboy movies full movies,free western movies,western,western movies,free movies to watch,western feature films,django movies,old western movies,cowboy,full length movies,best western movies,cowboys,wild west,westerns,full length,western movie, entire movies, full movie, western movies full length,django,cowboy movies,western movies full length free,george montgomery,jim davis,john wayne,
    https://wn.com/The_Tall_Man_Full_Western_Movie_Classic_English_Moviewesternclassic
    Michael Caine’s Incredible Encounter With John Wayne | The Graham Norton Show
    2:22

    Michael Caine’s Incredible Encounter With John Wayne | The Graham Norton Show

    • Order:
    • Duration: 2:22
    • Uploaded Date: 19 Oct 2018
    • views: 3224664
    Amazing! #TheGNShow #TheGrahamNortonShow #GrahamNorton Follow us! Facebook - https://www.facebook.com/thegrahamnortonshow/?ref=page_internal Instagram - https://www.instagram.com/thegrahamnortonshowofficial/ Twitter - https://twitter.com/TheGNShowFollow us here: Facebook: https://www.facebook.com/thegrahamnortonshow/ Instagram: https://www.instagram.com/thegrahamnortonshowofficial/ Twitter: https://twitter.com/TheGNShow TikTok: https://www.tiktok.com/@thegnshow Snapchat: https://www.snapchat.com/discover/The_Graham_Norton_Show/3773416663
    https://wn.com/Michael_Caine’S_Incredible_Encounter_With_John_Wayne_|_The_Graham_Norton_Show
    John Wayne Makes a Surprise Walk-On Appearance | Carson Tonight Show
    5:22

    John Wayne Makes a Surprise Walk-On Appearance | Carson Tonight Show

    • Order:
    • Duration: 5:22
    • Uploaded Date: 08 Aug 2022
    • views: 1794063
    Original Airdate: 01/08/1976 #johnnycarson #thetonightshow #johnwayne
    https://wn.com/John_Wayne_Makes_A_Surprise_Walk_On_Appearance_|_Carson_Tonight_Show
    McLintock! (Western, 1963) John Wayne, Maureen O'Hara, Patrick Wayne | Movie, Subtitles
    2:06:48

    McLintock! (Western, 1963) John Wayne, Maureen O'Hara, Patrick Wayne | Movie, Subtitles

    • Order:
    • Duration: 2:06:48
    • Uploaded Date: 25 May 2023
    • views: 920718
    He likes his whiskey hard... His women soft... And his west all to himself! Wealthy rancher G. W. McLintock uses his power and influence in the territory to keep the peace between farmers, ranchers, land-grabbers, Indians and corrupt government officials. Original title: McLintock! (1963) Director: Andrew V. McLaglen Writer: James Edward Grant Stars: John Wayne, Maureen O'Hara, Patrick Wayne, Stefanie Powers Budget: $2,000,000 Genres: Classic Movie, Comedy, Romance, Western Movie This video is available with original English audio, and additional French, German, Italian, Portuguese & Spanish dubbed audio. Also subtitled in more than 30+ languages. Select your preferred audio & subtitles languages in settings ⚙️
    https://wn.com/Mclintock_(Western,_1963)_John_Wayne,_Maureen_O'Hara,_Patrick_Wayne_|_Movie,_Subtitles
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • Lady Gaga - John Wayne (Official Music Video)
      2:57
      Lady Gaga - John Wayne (Official Music Video)remove from playlist
    • The Undefeated | WESTERN MOVIE | John Wayne | HD 1080p | Full Length Classic Western Film
      1:58:17
      The Undefeated | WESTERN MOVIE | John Wayne | HD 1080p | Full Length Classic Western Filmremove from playlist
    • John Wayne - Cigarettes After Sex
      4:19
      John Wayne - Cigarettes After Sexremove from playlist
    • McLintock | WESTERN MOVIE | John Wayne | Free Cowboy Film | Full Movie
      2:06:49
      McLintock | WESTERN MOVIE | John Wayne | Free Cowboy Film | Full Movieremove from playlist
    • John Wayne | Angel and the Badman (1947) Classic Western | Colorized Movie, Subtitles
      1:39:40
      John Wayne | Angel and the Badman (1947) Classic Western | Colorized Movie, Subtitlesremove from playlist
    • The Undefeated | JOHN WAYNE | American Western | Cowboys | Adventure
      1:53:13
      The Undefeated | JOHN WAYNE | American Western | Cowboys | Adventureremove from playlist
    • McLintock [1963] John Wayne - Full Movie English version
      2:06:46
      McLintock [1963] John Wayne - Full Movie English versionremove from playlist
    • The Tall Man Full Western Movie Classic English   #moviewesternclassic
      2:02:42
      The Tall Man Full Western Movie Classic English #moviewesternclassicremove from playlist
    • Michael Caine’s Incredible Encounter With John Wayne | The Graham Norton Show
      2:22
      Michael Caine’s Incredible Encounter With John Wayne | The Graham Norton Showremove from playlist
    • McLintock! (Western, 1963) John Wayne, Maureen O'Hara, Patrick Wayne | Movie, Subtitles
      2:06:48
      McLintock! (Western, 1963) John Wayne, Maureen O'Hara, Patrick Wayne | Movie, Subtitlesremove from playlist
    developed with YouTube
    PLAYLIST TIME:

    Lady Gaga - John Wayne (Official Music Video)

    LADY GAGA / JOANNE NEW ALBUM / OUT NOW iTunes: http://gaga.lk/Joanne Apple Music: http://gaga.lk/JoanneAP Spotify: http://gaga.lk/JoanneSP Google Play: http://gaga.lk/JoanneGP Amazon: http://gaga.lk/JoanneAMZ Website: www.ladygaga.com Store: http://gaga.lk/GagaStore THE JOANNE WORLD TOUR http://www.ladygaga.com/tourdates FOLLOW LADY GAGA: Facebook: http://gaga.lk/facebook Twitter: http://gaga.lk/Twitter Instagram: http://gaga.lk/Instagram Snapchat: http://gaga.lk/Snapchat Spotify: http://gaga.lk/Spotify Production: Serial Pictures Director: Jonas Akerlund Executive Producer: Violaine Etienne Producers: Violaine Etienne, Scott Pourroy, Michel Waxman Cinematographer: Par Ekberg 1st Assistant Director: Andy Coffing Production Designer: Emma Fairley Editor: Matt Nee Post Production: Chimney Pot Music video by Lady Gaga performing John Wayne. (C) 2017 Interscope Records http://vevo.ly/1OY8Jf
    2:57
    Lady Gaga - John Wayne (Official Music Video)
    LADY GAGA / JOANNE NEW ALBUM / OUT NOW iTunes: http://gaga.lk/Joanne Apple Music: http://...
    published: 09 Feb 2017
    Play in Full Screen
    1:58:17
    The Undefeated | WESTERN MOVIE | John Wayne | HD 1080p | Full Length Classic Western Film
    Free Western Movie, Full Length Cowboy Film, English: The Undefeated is a 1969 American We...
    published: 18 Sep 2019
    Play in Full Screen
    4:19
    John Wayne - Cigarettes After Sex
    our new album 𝑿’𝒔 is out now: https://cigsaftersex.lnk.to/_xs John Wayne - Cigarettes Afte...
    published: 09 Jun 2017
    Play in Full Screen
    2:06:49
    McLintock | WESTERN MOVIE | John Wayne | Free Cowboy Film | Full Movie
    Free Western Movie, Full Length Cowboy Film, English, 1963: McLintock - Wealthy rancher G....
    published: 15 May 2020
    Play in Full Screen
    1:39:40
    John Wayne | Angel and the Badman (1947) Classic Western | Colorized Movie, Subtitles
    The dramatic story of a girl in a man's world who taught a killer the real meaning of love...
    published: 01 Jun 2023
    Play in Full Screen
    1:53:13
    The Undefeated | JOHN WAYNE | American Western | Cowboys | Adventure
    Western Movie in Full Length starring John Wayne: The Undefeated - After the Civil War, ex...
    published: 13 Feb 2022
    Play in Full Screen
    2:06:46
    McLintock [1963] John Wayne - Full Movie English version
    George Washington McLintock, "GW" to friends and foes alike, is a cattle baron and the ric...
    published: 02 Aug 2017
    Play in Full Screen
    4:26
    JOHN WAYNE-FRESH HOME
    JOHN WAYNE-FRESH HOME
    published: 19 Jun 2009
    Play in Full Screen
    2:02:42
    The Tall Man Full Western Movie Classic English #moviewesternclassic
    The Tall Man Full Western Movie Classic English #moviewesternclassic Sinopse: The Tall ...
    published: 02 Sep 2023
    Play in Full Screen
    2:22
    Michael Caine’s Incredible Encounter With John Wayne | The Graham Norton Show
    Amazing! #TheGNShow #TheGrahamNortonShow #GrahamNorton Follow us! Facebook - https://...
    published: 19 Oct 2018
    Play in Full Screen
    5:22
    John Wayne Makes a Surprise Walk-On Appearance | Carson Tonight Show
    Original Airdate: 01/08/1976 #johnnycarson #thetonightshow #johnwayne
    published: 08 Aug 2022
    Play in Full Screen
    2:06:48
    McLintock! (Western, 1963) John Wayne, Maureen O'Hara, Patrick Wayne | Movie, Subtitles
    He likes his whiskey hard... His women soft... And his west all to himself! Wealthy ranche...
    published: 25 May 2023
    Play in Full Screen

    Judge Dread

    Alexander Minto Hughes (2 May 1945 – 13 March 1998), better known as Judge Dread, was an English reggae and ska musician. He was the first white recording artist to have a reggae hit in Jamaica, and the BBC has banned more of his songs than any other recording artist due to his frequent use of sexual innuendo and double entendres.

    Career

    Hughes was introduced to Jamaican music when he lodged as a teenager in a West Indian household in Brixton, South West London. He met Jamaican artists Derrick Morgan and Prince Buster through his job as a bouncer at London nightclubs such as the Ram Jam in Brixton, and through another job as a bodyguard. After working as a professional wrestler (under the name "The Masked Executioner") and as a debt collector for Trojan Records, he worked as a DJ on local radio.

    When Prince Buster had a big underground hit in 1969 with "Big 5", Hughes capitalized on it with the recording of his own "Big Six", based on Verne & Son's "Little Boy Blue", which was picked up by Trojan boss Lee Gopthal, and released on Trojan's 'Big Shot' record label under the stage name Judge Dread, the name taken from another of Prince Buster's songs. "Big Six" reached No. 11 in the UK Singles Chart in 1972, selling over 300,000 copies and spending six months on the chart, despite getting no radio airplay due to its lyrics. Further hit singles followed with "Big Seven" (co-written by Rupie Edwards) and "Big Eight" – both following the pattern of lewd versions of nursery rhymes over a reggae backing – as well as "Y Viva Suspenders" and "Up with the Cock".

    '); } 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)); } }); }); }); // -->
    ×