- published: 30 Apr 2023
- views: 154
'+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; })); }); -->
Bruce Lorne Campbell (born June 22, 1958) is an American actor, voice artist, director, writer, producer and author. A cult film actor, Campbell is best known for portraying Ash Williams in Sam Raimi's hit Evil Dead franchise, from the 1978 short film Within the Woods to the currently ongoing TV series Ash vs. Evil Dead. He also has starred in many low-budget cult films such as Crimewave (1985), Maniac Cop (1988), Sundown: The Vampire in Retreat (1989), and Bubba Ho-Tep (2002). He has since made small appearances in successful films such as Darkman (1990), the Fargo film (1996) and TV series (2015), The X-Files (1999), Ellen (1996-1997), Charmed (2002), Raimi's Spider-Man trilogy (2002–2007), Cloudy with a Chance of Meatballs (2009) and Cars 2 (2011). Campbell is of Scottish descent.
Campbell started his directing career with Fanalysis (2002) and A Community Speaks (2004), and then with the horror comedy feature films Man with the Screaming Brain (2005) and My Name Is Bruce (2007), the latter being a spoof of his career. In television, Campbell also is known for his lead roles in both The Adventures of Brisco County, Jr. (1993-1994) and Jack of all Trades (2000), his starring role of Autolycus (the King of Thieves) in Hercules: The Legendary Journeys and Xena: Warrior Princess (1995-1999), and notably for his role as Sam Axe on the USA Network series Burn Notice (2007-2013).
Bruce Campbell (15 June 1912 – 9 January 1993) was an English ornithologist, writer and broadcaster, closely associated with the British Trust for Ornithology (BTO).
Campbell was born in Southsea, Hampshire on 15 June 1912. As a young boy, he was influenced by his father, an army officer, birds-nester and egg-collector, who later became the British Army's Inspector of Physical Training. After education at Winchester College, he studied at the University of Edinburgh, obtaining a BSc in forestry. He later gained a doctorate in comparative bird studies, so becoming one of the first field naturalists to also be a trained scientist. In 1938, he married Margaret Gibson-Hill, herself a writer, with whom he had two sons and one daughter. From 1936 to 1948, he was a teacher and university lecturer. After World War II, he brought the work of sound recordist Ludwig Koch to the attention of the BTO. In 1948, Campbell was appointed the first full-time secretary of the BTO, a post he held until 1959. He served on the panel of the Wildlife Collection with Julian Huxley, and was active in the British Ornithologists' Union, the British Ecological Society, and conservation bodies. He conducted a pioneering study of the pied flycatcher at the Nagshead woodland reserve, Gloucestershire. He made radio and television broadcasts relating to natural history for the BBC during the 1950s. In April 1959, despite his having had no previous experience as a producer, he was appointed senior producer at the BBC Natural History Unit in Bristol, a position he held until 1962. He died on 9 January 1993 in Witney, Oxfordshire.
(Keith) Bruce Campbell QC (25 October 1916 – 1990) was a New Zealand-born British lawyer, judge and politician. As a barrister, he specialised in divorce law, and during a brief Parliamentary career he also concentrated on family law issues. His term in office as a judge ended in scandal and enforced removal from office.
Campbell was born in Christchurch, New Zealand and attended Christchurch Technical College and Canterbury University. He moved to London in the late 1930s to undertake postgraduate training at the University of London. When his course was over in 1941 he was given an officer's commission in the Royal Army Service Corps; he served in North Africa and Italy.
On demobilisation Campbell was called to the bar at the Inner Temple. He practised in divorce law, usually on the North-Western circuit, and served on the General Council of the Bar from 1956 to 1960 and from 1965 to 1970. He was made a Queen's Counsel in 1964.
The Forgotten Garden is a 2008 novel written by Australian author Kate Morton, driven by the mystery of why a 4-year-old child is found abandoned on an Australian wharf in 1913.
While paying homage to Frances Hodgson Burnett, The Secret Garden and the Gothic novel, Morton's second work explores living with and overcoming loss - of trust, of identity, or of loved ones - and was inspired by Morton's own family history.
At Nell's joyous 21st birthday party her world falls apart when her father tells her she was adopted as a 4-year-old in 1913, seemingly abandoned on an Australian wharf and unable to remember her name. The knowledge shatters her self-image and changes the course of her life.
In 1975, the only surviving clues to Nell's past are given to her after her father's death; the memories they trigger lead her to travel to England to unravel the puzzle, part of which is connected to the author of a rare fairytale book in her possession. She discovers her true identity despite having been thought dead for more than 60 years, and finds her way to Tregenna, and Blackhurst Manor, on the coast of Cornwall.
Bruce Campbell (October 20, 1909 – June 17, 1995) was a professional baseball player from 1930 to 1942. Campbell began his career with the Chicago White Sox, but had very little playing time in the major leagues. In 1932, Campbell was traded from the White Sox to the St. Louis Browns, with Bump Hadley, for Red Kress. In St. Louis, Campbell was a starting outfielder, and performed well, driving in 106 runs in 1933. In the 1935 season, Campbell played with the Cleveland Indians, after being traded for multiple players and cash. In Cleveland, Campbell hit for considerably higher averages than he had in St. Louis, although injuries limited his playing time.
In January 1940, the Indians traded Campbell to the Detroit Tigers for Beau Bell. The trade worked out for Campbell, as the Tigers won the American League pennant, and Campbell played all seven games of the 1940 World Series. Campbell had nine hits, four walks, scored four runs, five runs batted in and a home run in the World Series, with a batting average of .360, on-base percentage of .448 and slugging percentage of .520.
Robert Wallace Bruce Campbell (2 May 1890 – 16 October 1964) was an Australian rules footballer who played with Carlton, Fitzroy and Melbourne in the Victorian Football League (VFL).
Campbell, a Victorian by birth, was brought up in Western Australia and debuted for Subiaco in 1908.
He started his VFL career at Carlton, appearing in the opening three rounds of the 1911 season. His first two league game ended in draws and the third was decided by a margin of just two points. They would be the only games he played for Carlton and he finished the season at Fitzroy.
Used as a forward, Campbell made an immediate impression at his new club and despite only playing the second half of the season was their leading goal-kicker with 25 goals. He would only make six appearances in 1912 and decided to return to Subiaco.
Campbell continued playing for Subiaco until 1919, although he missed three seasons during the war. He was a member of Subiaco's 1913 and 1915 premiership winning teams.
Bruce Campbell (June 6, 1923 – March 12, 2011) was a Canadian politician, commercial contractor, carpenter, and Rotarian. He was born in Cadomin, Alberta, and resided in Edmonton, Alberta, Canada, for most of his life.
Involved in the construction industry most of his life, Campbell began in 1946 as a carpenter apprentice for C.H. Whitham Ltd., and was promoted to superintendent. He was also the general superintendent of Forest Construction Company from 1955 to 1959, and founded Camwil Construction in 1959 which he operated until 1985.
Bruce served three terms as alderman of the City of Edmonton from 1986 to 1995, sitting on the Edmonton City Council. During his tenure he served as chair of many committees including the Police Commission, City Hall construction project, and others.
Bruce Campbell was also a mediator and arbitrator specializing in the construction industries.
As a Rotarian and community leader Bruce has garnered numerous awards. A youth centre was named in his honour, the Bruce Campbell Youth Centre.
Played by Roger Roger and his Orchestra. Credit to everyone.
Madonna CONFRONTS Piers Morgan For Calling Her An Old Joke Madonna, the legendary pop star and icon, recently took on controversial British commentator Piers Morgan in a public spat. Piers Morgan had made insensitive remarks about Madonna's age, calling her an "old joke." Madonna, however, wasn't going to take the insult lying down. In a series of posts on social media, Madonna hit back at Piers Morgan, defending herself against the disrespectful comments. This feud between Madonna and Piers Morgan continues to heat up, with fans taking sides on social media. — Will Piers Morgan apologize for his insensitive remarks? — Or will Madonna keep speaking out against age-shaming? Stay tuned for updates on this celebrity feud! Here on Just In we are all about the latest spill in Hollywood! You...
Sitting in the middle of one of the most wealthy neighborhoods in America. This $8.5 million dollar mansion once owned by country music legend Kenny Rogers. The mansion has become nothing but an eyesore to the neighbors. weeds have grown to be over 7 feet tall from the neglect of the landscape as well as an in ground pool that is full of algae. But what could have possibly happened for it to be this way. But let’s go back to the beginning. The mansion was first built in 1990 as a castle like estate with over 15,000 square feet of living space featuring 6 bedrooms, 7 bathrooms, a 4 car garage and full basement with a bar, state of the art gym and much more. Now one thing that makes this place very special is that it was once owned by the late and great Country music star Kenny Rogers. He li...
seeing wife face for first time #shorts . . . . . . . ---------- Please be advised that this page’s videos are intended for entertainment purposes only. The videos on this page include scripted dramas, satires, parodies, magic tricks, pre-recorded videos, and other forms of entertainment. Names, characters and incidents are often the product of the director’s imagination, so any resemblance to actual persons or actual events is purely coincidental. #Shorts
I have been working on this video for like two years, I think about Mr. Delicious at least once a week. He sells aluminum siding, but also goes to Bora Bora with...sex workers? Maybe? He's on his second marriage. He spends too much time at a bar called The Rusty Anchor. He is both effete and signals that he is wealthy while also being working-class? He also likes to read ROMANCE NOVELS WHILE EATING RAX?! So I guess that's what in the suitcase??? You can watch the full Mr. Delicious documentary here: https://www.youtube.com/watch?v=FP8boDmsBUM ---- Subscribe to our newsletter! https://nerdfighteria.com/nerdfighteria-newsletter And join the community at http://nerdfighteria.com Help transcribe videos - http://nerdfighteria.info Learn more about our project to help Partners in Health radi...
Eben Byers was a U.S. Amateur in golf. He earned notoriety in the early 1930s when he died from multiple radiation-induced cancers after consuming Radithor, a popular patent medicine made from radium dissolved in water, The picture was taking just before his death. #documentary #truecrime #death Check out my second channel: https://youtube.com/FascinatingGraveyard Support the channel: https://www.paypal.me/tacobellcriminalChin https://cash.app/$lamontatlarge https://www.patreon.com/lamontatlarge Links to all of my social media⚡️ https://linktr.ee/LamontAtLarge FAIR USE NOTICE: Copyright Disclaimer under section 107 of the Copyright Act 1976, allowance is made for “fair use” for purposes such as criticism, comment, news reporting, teaching, scholarship, education and research. Fair...
Drew Scott's Lifestyle 2024
How I dub all my channels into 28 Languages with AI: https://www.clonedub.com/ For copyright contact: stienlemane2379(at)gmail.com Welcome to Futureunity, where we explore the fascinating world of science, technology, and the universe! From the inner workings of the human body to the outer reaches of space, we delve into the latest and most interesting discoveries that are shaping our world. Whether you're a science buff or just looking for some mind-blowing facts, we've got you covered. Join us as we uncover the mysteries of the world around us and discover new frontiers in the fields of science and technology. Get ready for a journey. Please remember that our videos are purely made for entertainment purposes only. Our information may not be correct. Enjoy, but question and explore furt...
#harryandmeghan #meghanmarkle #meghanmarkleandprinceharry #meghanmarklenews #meghanmarklelatest #princeharrylatest #princeharrynews #fashion #fail #expensive #royalfamily #royalnews #shorts #shortsvideo #shortsviral #shortsfeed #coronation #meghanmarkleisabully #meghanmarkleisamonster #meghanmarkleisanarcissist #meghanmarkleisagrifter #meghanmarkleisaconartist
▬Contents of this video▬ 00:00 - Introduction 00:08 - Macaulay Culkin 00:50 - Lark Voorhies 01:28 - Jeremy Miller 01:56 - Haley Joel Osment 02:22 - Sean Astin 02:57 - Taran Noah Smith 04:13 - Josh Saviano 04:41 - Dustin Diamond 05:32 - Mara Wilson Like this content? Subscribe here: https://www.youtube.com/factsverse?sub_confirmation=1 Or, watch more videos here: https://www.youtube.com/playlist?list=PLkXAntdjbcSKgHx6EQVOwNKVz1cR2hKVw 10 Child Celebs Who Aged Badly!
Bruce Lorne Campbell (born June 22, 1958) is an American actor, voice artist, director, writer, producer and author. A cult film actor, Campbell is best known for portraying Ash Williams in Sam Raimi's hit Evil Dead franchise, from the 1978 short film Within the Woods to the currently ongoing TV series Ash vs. Evil Dead. He also has starred in many low-budget cult films such as Crimewave (1985), Maniac Cop (1988), Sundown: The Vampire in Retreat (1989), and Bubba Ho-Tep (2002). He has since made small appearances in successful films such as Darkman (1990), the Fargo film (1996) and TV series (2015), The X-Files (1999), Ellen (1996-1997), Charmed (2002), Raimi's Spider-Man trilogy (2002–2007), Cloudy with a Chance of Meatballs (2009) and Cars 2 (2011). Campbell is of Scottish descent.
Campbell started his directing career with Fanalysis (2002) and A Community Speaks (2004), and then with the horror comedy feature films Man with the Screaming Brain (2005) and My Name Is Bruce (2007), the latter being a spoof of his career. In television, Campbell also is known for his lead roles in both The Adventures of Brisco County, Jr. (1993-1994) and Jack of all Trades (2000), his starring role of Autolycus (the King of Thieves) in Hercules: The Legendary Journeys and Xena: Warrior Princess (1995-1999), and notably for his role as Sam Axe on the USA Network series Burn Notice (2007-2013).
He came in the dark night. Few men at his side.
Black Douglas' arm for the Bruce. They could not loose.
Stab Red Conym down. He won't wear a crown.
Fight and kill we will. Win the Battle of Louden Hill.
The heart of a lion. The blood of kings.
A sword like thunder. Death he will bring.
I am The Bruce - The King The Lion.
I am The Bruce - The Master of war.
March against me - pay in blood.
I rule forevermore.
The Bruce was crowned at Scone.
His glory shone. Still the English are marching.
We'll meet them at Sterling. One 'gainst three we stand.
Fight for your land. The Battle of Bannockburn A lesson they did
learn. (chorus again)