- published: 18 Dec 2014
- views: 10402221
'+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; })); }); -->
HIDDEN ERROR: Usage of "Spouse" is not recognized
Paul "Wix" Wickens (born 27 March 1956) is a British musician, singer-songwriter, multi-instrumentalist and composer from Essex, United Kingdom. Wickens has worked with musicians such as Paul McCartney, Nik Kershaw, Bob Dylan, Joni Mitchell, Bon Jovi and many other artists. Wickens has been a member of McCartney's touring band since 1989.
In the early 1980s Wickens was a member of Palmer Industries, a group that issued two singles distributed by Stiff Records, "Mumbo Jumbo" and "Identify."
Wickens began touring with Paul McCartney in 1989. As of then, he has appeared on many of McCartney's albums and DVDs, and has become the musical director for many of McCartney's tours. He continues to tour with McCartney (as his keyboardist, occasional guitarist and backing vocalist), and of the four musicians in McCartney's touring band, he has worked with McCartney the longest by a considerable margin.
Wickens recorded on albums by Tommy Shaw of the American rock group Styx, The Damned, Tim Finn, Paul Carrack, Nik Kershaw, Jim Diamond, Boy George, and David Gilmour, and was the co-producer of the first Savage Progress album. He also was the keyboardist and programmer for Edie Brickell & New Bohemians album, Shooting Rubberbands at the Stars – which was where he first met Chris Whitten. Paul was also instrumental in making the BANDAGED album the success it was, in aid of BBC Children in Need.
Men of Honor (released in the UK and Ireland as Men of Honour) is a 2000 drama film, starring Robert De Niro and Cuba Gooding, Jr. The film was directed by George Tillman, Jr. It is inspired by the true story of Master chief petty officer Carl Brashear, the first African American master diver in the United States Navy.
Carl Brashear (Gooding, Jr.) leaves his native Kentucky and the life of a sharecropper in 1948 by joining the United States Navy. As a crew member of the salvage ship USS Hoist, where he is assigned to the galley, he is inspired by the bravery of one of the divers, Master Chief Petty Officer Leslie William "Billy" Sunday (De Niro). He is determined to overcome racism and become the first black American Navy diver, even proclaiming that he will become a master diver. He eventually is selected to attend Diving and Salvage School in Bayonne, New Jersey, where he arrives as a boatswain's mate second class. He finds that Master Chief Sunday is the leading chief petty officer and head instructor, who is under orders from the school's eccentric, bigoted commanding officer to ensure that Brashear fails.
Men of Honor movie clips: http://j.mp/1IjBBIu BUY THE MOVIE: FandangoNOW - https://www.fandangonow.com/details/movie/men-of-honor-2000/1MV2dacfd89bfcad1483e9629310a6b3244?cmp=Movieclips_YT_Description iTunes - http://apple.co/1cy8W9S Google Play - http://bit.ly/1Iif9oL Amazon - http://amzn.to/1Qqw9Z3 Fox Movies - http://bit.ly/1HL2S6t Don't miss the HOTTEST NEW TRAILERS: http://bit.ly/1u2y6pr CLIP DESCRIPTION: Racist Pappy (Hal Holbrook) orders Chief Sunday (Robert De Niro) not to bring Carl (Cuba Gooding Jr.) back up from his diving test until he stops moving. FILM DESCRIPTION: This military drama is based on the true story of Carl Brashear, who was the first African-American to serve as a diver in the United States Navy. Brashear (played by Cuba Gooding Jr.) was born to a poor farming ...
A few days later, Carl is writing a letter home to his parents when the ship is rocked by an apparent crash. Their mail chopper has accidentally gone down in the ocean. Carl assists the others on deck in raising a Navy Diver from the sea floor with the wounded pilot. The Diver is Master Chief Sunday. Since Sunday is now back up on deck, regulations state that he must now undergo decompression. As the next diver is lowered, an accident with the winch severs the diver's air hose. Chief Sunday prepares to do a dangerous "bounce dive" to rescue his fallen ally. One officer, Lt. Cmdr Hanks (David Conrad) orders Sunday not to go, but Sunday disobeys and jumps off ship Men of Honor Scenes : https://www.youtube.com/playlist?list=PL-v9MNQtvBaU62JkZJM6CbzWX1eVYHNrU I do not own nor take credit for...
Check out the official Men of Honor (2000) Trailer starring Cuba Gooding Jr.! ► Watch on Vudu: https://www.vudu.com/content/movies/details/Men-of-Honor/8977?cmp=Classic_YouTube_Desc Subscribe to the channel and click the bell icon to be notified of your favorite trailers: http://bit.ly/2D01HJi Starring: Cuba Gooding Jr., Robert De Niro, Charlize Theron Director: George Tillman Jr. Synopsis: Carl Brashear (Cuba Gooding Jr.) is an ambitious sharecropper who joins the U.S. Navy to become the world's first black master diver. But as he works through diving training, the bitter and racist Master Chief Billy Sunday (Robert De Niro) sets out to make Carl's journey as difficult as possible. Despite the entire Navy doubting his potential and sabotaging his training, the determined Carl prove...
Later in the hospital, we see that Chief Sunday was indeed able to save the other diver, but doctors find that he has sustained a severe embolism in both lungs. This condition disqualifies Sunday from any more diving. Upon hearing this news, Sunday throws a fit, destroying some equipment in the hospital, and assaulting several of the staff. Carl is in attendance at the resulting disciplinary hearing, where Sunday is officially disqualified from further diving duty, and assigned to a training position. Carl, having seen Sunday's actions as heroic, is inspired and vows to become a Navy Master Diver. Men of Honor Scenes : https://www.youtube.com/playlist?list=PL-v9MNQtvBaU62JkZJM6CbzWX1eVYHNrU I do not own nor take credit for the clips uploaded here. All credit goes to the creatorsowners. I...
Men of Honor movie clips: http://j.mp/1IjBBIu BUY THE MOVIE: FandangoNOW - https://www.fandangonow.com/details/movie/men-of-honor-2000/1MV2dacfd89bfcad1483e9629310a6b3244?cmp=Movieclips_YT_Description iTunes - http://apple.co/1cy8W9S Google Play - http://bit.ly/1Iif9oL Amazon - http://amzn.to/1Qqw9Z3 Fox Movies - http://bit.ly/1HL2S6t Don't miss the HOTTEST NEW TRAILERS: http://bit.ly/1u2y6pr CLIP DESCRIPTION: Carl (Cuba Gooding Jr.) must take 12 steps in heavy diving gear to prove that he is capable of performing his job despite losing one of his legs. FILM DESCRIPTION: This military drama is based on the true story of Carl Brashear, who was the first African-American to serve as a diver in the United States Navy. Brashear (played by Cuba Gooding Jr.) was born to a poor farming family i...
The next day there is a training exercise, involving patching the hole in a sunken ship and raising it to the surface. All at once, the ship accidentally shifts its position, snaring the air hose on one diver while the other flees for his life. Carl volunteers to bring down a new line for the trapped diver, and after several tense seconds, Carl is able to save the young mans' life. Unfortunately, due to the prejudiced environment of the time, the diver who fled earlier receives a medal for his actions while Carl is ignored. Carl is, however, silently thanked by the recruit he saved on his way out of the school. Men of Honor Scenes : https://www.youtube.com/playlist?list=PL-v9MNQtvBaU62JkZJM6CbzWX1eVYHNrU I do not own nor take credit for the clips uploaded here. All credit goes to the cre...
Don’t forget to Subscribe, like or share! That always is appreciated and really helps the channel grow! If you’re looking for a way to support my work, buy me a cup of coffee and tell me your story in a message! https://www.buymeacoffee.com/conceptsjrs “The Navy diver is not a fighting man, he is a salvage expert. If it is lost underwater, he finds it. If it's sunk, he brings it up. If it's in the way, he moves it. If he's lucky, he will die young, 200 feet beneath the waves, for that is the closest he'll ever get to being a hero.” #MENOFHONOR A tribute to one of the stories that shaped me. I was lucky enough to see this at a young age with my father and it made lasting impression. Our history is fortified with humans who have sacrificed an incomprehensible amount. The ghosts of our...
In the political election season we have candidates making promises about their plans to "fix the nation." To fix the economy, to lower crime rates, even claims to heal the division of our nation. Anyone who has lived long enough through multiple of these cycles knows that that promises are rarely kept or fulfilled. God, however, does have a plan for the healing of the nations. Join us for this 4 part series "Scars and Stripes" on God's plan for healing the nations and our Christian responsibility in the public square. PRAYER Text FATHOM to 97000 if you would like a member of our prayer team to pray with or for you. NEXT STEPS Are you ready to learn more about what it means to walk with Christ, get baptized, or get connected within the church body? Click here to complete our digita...
Billy douses Carl with water wile he's sleeping. Carl spits out water, he next is seen running out of the cabin but Billy sprays him with a water hose. He picks up Carl and drags him over to a barrel filled with water and continues to dunk his head as he speaks. Men of Honor Scenes : https://www.youtube.com/playlist?list=PL-v9MNQtvBaU62JkZJM6CbzWX1eVYHNrU I do not own nor take credit for the clips uploaded here. All credit goes to the creatorsowners. I do not take or plan of making profit for any of the videos posted here. I upload the videos for entertainment purposes only.
HIDDEN ERROR: Usage of "Spouse" is not recognized
Paul "Wix" Wickens (born 27 March 1956) is a British musician, singer-songwriter, multi-instrumentalist and composer from Essex, United Kingdom. Wickens has worked with musicians such as Paul McCartney, Nik Kershaw, Bob Dylan, Joni Mitchell, Bon Jovi and many other artists. Wickens has been a member of McCartney's touring band since 1989.
In the early 1980s Wickens was a member of Palmer Industries, a group that issued two singles distributed by Stiff Records, "Mumbo Jumbo" and "Identify."
Wickens began touring with Paul McCartney in 1989. As of then, he has appeared on many of McCartney's albums and DVDs, and has become the musical director for many of McCartney's tours. He continues to tour with McCartney (as his keyboardist, occasional guitarist and backing vocalist), and of the four musicians in McCartney's touring band, he has worked with McCartney the longest by a considerable margin.
Wickens recorded on albums by Tommy Shaw of the American rock group Styx, The Damned, Tim Finn, Paul Carrack, Nik Kershaw, Jim Diamond, Boy George, and David Gilmour, and was the co-producer of the first Savage Progress album. He also was the keyboardist and programmer for Edie Brickell & New Bohemians album, Shooting Rubberbands at the Stars – which was where he first met Chris Whitten. Paul was also instrumental in making the BANDAGED album the success it was, in aid of BBC Children in Need.