- published: 23 Mar 2010
- views: 23531
'+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; })); }); -->
William Frederick "Buffalo Bill" Cody (February 26, 1846 – January 10, 1917) was an American scout, bison hunter, and showman. He was born in the Iowa Territory (now the U.S. state of Iowa) in Le Claire but he grew up for several years in his father's hometown in Canada before his family moved to the Kansas Territory.
Buffalo Bill started working at the age of eleven after his father's death, and became a rider for the Pony Express at age 14. During the American Civil War, he served for the Union from 1863 to the end of the war in 1865. Later he served as a civilian scout to the US Army during the Indian Wars, receiving the Medal of Honor in 1872.
One of the most colorful figures of the American Old West, Buffalo Bill started performing in shows that displayed cowboy themes and episodes from the frontier and Indian Wars. He founded his Buffalo Bill's Wild West in 1883, taking his large company on tours throughout the United States and, beginning in 1887, in Great Britain and Europe.
Buffalo Bill, William F. Cody, (1845–1917) was an American soldier, buffalo hunter and showman.
Buffalo Bill may also refer to:
Relapse is the sixth studio album by American rapper Eminem. The album was released on May 19, 2009 under Shady Records, Aftermath Entertainment, and Interscope Records. It was his first album of original material since Encore (2004), following a four-year hiatus from recording due to his writer's block and an addiction to prescription sleeping medication. Recording sessions for the album took place during 2005 to 2009 at several recording studios, and Dr. Dre, Mark Batson, and Eminem handled production. Conceptually, Relapse concerns the ending of his drug rehabilitation, rapping after a non-fictional relapse, and the return of his Slim Shady alter-ego.
One of the most anticipated album releases of 2009, Relapse debuted at number one on the US Billboard 200 chart, selling 608,000 copies in its first week. It produced three singles that attained chart success and has been certified double platinum by the Recording Industry Association of America. The album received mixed reviews from most music critics, who were divided in their responses towards Eminem's lyrics. It has sold more than three million copies in the United States and more than ten million copies worldwide.
Buffalo Bill (1944) Technicolor is a biographical Western about the life of the legendary frontiersman, starring Joel McCrea and Maureen O'Hara with Linda Darnell and Anthony Quinn in supporting roles.
A fictionalized account of the life of William F. "Buffalo Bill" Cody, a hunter and Army Scout who rescues a US Senator and his beautiful daughter, Louisa Frederici; Federici eventually becomes his devoted wife. Cody is portrayed as someone who admires and respects the Indians. He is a good friend of Yellow Hand, who will eventually become Chief of the Cheyenne. Public opinion is against the Indians, and military leaders, politicians and businessmen are prepared to take their lands and destroy their hunting grounds for their own profit. Cody is eventually forced to fight the Cheyenne on their behalf. He meets a writer, Ned Buntline, whose accounts of Cody's exploits make him a sensation in the eastern United States and Europe. He establishes a wild west show that becomes an international sensation. His career as a performer is threatened when he takes a stand against the mistreatment of the Native American population.
Jame Gumb (known by the nickname Buffalo Bill) is a character and the primary antagonist of Thomas Harris's 1988 novel The Silence of the Lambs and its 1991 film adaptation, in which he is played by Ted Levine. In the film and the novel, he is a serial killer who murders overweight women and skins them so he can make a "woman suit" for himself.
According to the novel, Gumb was born in California on October 25, 1949, and abandoned by his mother — an alcoholic prostitute who misspelled "James" on his birth certificate — and then taken into foster care at age two. The film's screenplay omits Gumb's backstory, but does imply that he had a traumatic childhood. In the movie, Lecter summarizes Gumb's life thus: "Billy was not born a criminal, but made one by years of systematic abuse."
The novel goes on to tell of Gumb living in foster homes until the age of 10 before getting adopted by his grandparents, who became his first victims. The story then puts him in Tulare Vocational Rehabilitation, a psychiatric hospital where he learns to be a tailor. Later, Gumb has a relationship with Benjamin Raspail. After Raspail leaves him, he kills Raspail's new lover, Klaus, and flays him.
Buffalo Bill is an American television situation comedy that featured the misadventures of an egotistical talk show host, played by Dabney Coleman and his staff (including Geena Davis and Joanna Cassidy) at WBFL-TV, a small TV station in Buffalo, New York. It premiered June 1, 1983 on NBC and ran for two seasons (1983–84). It was also shown on the then-new UK fourth TV channel Channel 4.
Most of the humor came from Bill's completely unredeemable qualities and from the staff's frustration at dealing with him.
In 2005, Lionsgate released the entire series on Region 1 DVD.
"Überlin" is a song by American alternative rock band R.E.M.. It was released as the second single from their fifteenth and final studio album Collapse into Now on January 25, 2011.
The song's music video was directed by Sam Taylor-Wood and stars her fiancé, actor Aaron Johnson.
Colonel Buffalo Bill from Irving Berlin's Annie Get Your Gun. No Copyright Infringment Intended. Everything I upload is for Entertainment purposes only, I love musical theater and I love sharing that passion with others. Enjoy! (Davenport) Who's got the stuff that made the Wild West wild? Who pleases every woman, man, and child? Who does his best to give the customers a thrill? (Company) Who? (Davenport) Colonel Buffalo Bill! Who's got the show that gets the most applause? Five-hundred Indians and fifty Squas! Ten featured acts and there's a special feature still? (Company) Who? (Davenport) Colonel Buffalo Bill! (Dolly) Have you ever seen a cowboy rope a steer? (Company) No, we haven't (Dolly) Or an Indian with feathers throw a spear? (Company) N...
ANNIE GET YOUR GUN 1950. GEORGE SINNEY and BUSBY BERKELEY. Lyrics and Music IRVING BERLIN.
Provided to YouTube by Warner Classics Annie Get Your Gun, Act I: Colonel Buffalo Bill (Charlie, Crowd, Small Girl) · Kim Criswell · London Sinfonietta · John McGlinn Irving Berlin: Annie Get Your Gun ℗ 1991 Warner Classics, Warner Music UK Ltd Chorus: Ambrosian Chorus Vocals: Clare Buckfield Vocals: David Garrison Chorus: John McCarthy Lead Vocals: London Sinfonietta Lead Vocals: John McGlinn Conductor: John McGlinn Orchestra: London Sinfonietta Producer: Simon Woods Composer, Lyricist: Irving Berlin Auto-generated by YouTube.
Annie Get Your Gun (1963 Studio Recording). Music and lyrics by Irving Berlin. Orchestra conducted by Franz Allers.
Provided to YouTube by Universal Music Group My Defenses Are Down · Ray Middleton · Annie Get Your Gun 1946 Original Broadway Male Chorus Annie Get Your Gun ℗ 1946 Decca Music Group Limited Released on: 1946-01-01 Conductor: Jay Blackton Musical Director: Joshua Logan Composer Lyricist: Irving Berlin Auto-generated by YouTube.
Tom Wopat sings "My Defenses Are Down" from the 1999 Broadway revival of ANNIE GET YOUR GUN (Irving Berlin).
William Frederick "Buffalo Bill" Cody (February 26, 1846 – January 10, 1917) was an American scout, bison hunter, and showman. He was born in the Iowa Territory (now the U.S. state of Iowa) in Le Claire but he grew up for several years in his father's hometown in Canada before his family moved to the Kansas Territory.
Buffalo Bill started working at the age of eleven after his father's death, and became a rider for the Pony Express at age 14. During the American Civil War, he served for the Union from 1863 to the end of the war in 1865. Later he served as a civilian scout to the US Army during the Indian Wars, receiving the Medal of Honor in 1872.
One of the most colorful figures of the American Old West, Buffalo Bill started performing in shows that displayed cowboy themes and episodes from the frontier and Indian Wars. He founded his Buffalo Bill's Wild West in 1883, taking his large company on tours throughout the United States and, beginning in 1887, in Great Britain and Europe.
[Verse:]
Metropolitan nights bring me memories dear
Voices clear keep ringing in my ear
Metropolitan girls with their sweet musical themes
Haunt my dreams and ev'ry night it seems
[Refrain:]
I see a horseshoe set with diamonds
A diamond horseshoe set with girls
And ev'ry lovely maiden I see
Is calling to me with a sweet melody
I hear them saying it with music
Until each tragic tale unfurls
And my heart is laden with love for each maiden
In my diamond horseshoe of girls