'+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; })); }); -->
Bo Diddley (December 30, 1928 – June 2, 2008), born Ellas Otha Bates but changed as a child to Ellas McDaniel, was an American R&B and Chicago Blues vocalist and guitarist. In addition, he was a songwriter and music producer, usually as Ellas McDaniel, and had cameo appearances in movies. He was nicknamed The Originator because of his key role in the transition from the blues to rock and roll, and rock, and influenced a host of acts, including Elvis Presley,Buddy Holly, the Beatles,The Rolling Stones, the Yardbirds, Eric Clapton,The Who, Jimi Hendrix and Parliament Funkadelic.
He instigated a constant driving rhythm and biting electric guitar sound which he applied to a wide range of songs. His use of African rhythms and a signature beat, a simple five-accent clave rhythm, is a cornerstone of hip hop, rock, and pop. In recognition of his achievements Bo Diddley was inducted into the Rock and Roll Hall of Fame and received Lifetime Achievement Awards from the Rhythm and Blues Foundation and a Grammy Award from the National Academy of Recording Arts and Sciences. He is also recognised for his technical innovations, including his trademark rectangular guitar.
Bo Diddley is a studio album by American rock and roll pioneer Bo Diddley, not to be confused with the 1958 compilation album of the same name. The 1962 album was released as Checker LP-2984 in August 1962 and featured the Willie Dixon-penned classic "You Can't Judge a Book by the Cover", which was released as a 7" 45 rpm single in July 1962.
In Britain, Bo Diddley was released as an LP by Pye International Records. The UK release charted at #11 on the UK Albums Chart. The success of the album followed the UK package tour that Bo had begun at the beginning of the year with the Everly Brothers, Little Richard, and the Rolling Stones.
Due to the album's success in the UK, many British bands recorded songs from the record.
All songs were written and composed by Ellas McDaniel (Bo Diddley), except where noted.
Bo Diddley is a compilation album by American rock and roll musician Bo Diddley. It is a compilation of his singles since 1955. It collects several of his most influential and enduring songs. It was released on the Chess label in 1958.
Allmusic's Matthew Greenwald gave Bo Diddley four-and-a-half out of five stars and recommended it as one of the "few" essential albums for listeners who want to "play rock & roll, real rock & roll". Greenwald said that its 12 songs are exemplary of the Bo Diddley beat: "This is one of the greatest rock sounds that you're likely to hear, and it's all on this one record, too."
All songs written and composed by Ellas McDaniel, except where noted.
Per liner notes
Robert Bernard Greene, Jr. (born March 10, 1947) is an American journalist. He worked for 24 years for the Chicago Tribune newspaper, where he was an award-winning columnist. Greene has written books on subjects as varied as Michael Jordan, small towns, touring with Alice Cooper and U.S. presidents. His Hang Time: Days and Dreams with Michael Jordan became a bestseller. Greene has two children, Nick and Amanda, from a 31-year marriage with Susan Koebel Greene.
Originally from Bexley, Ohio (a suburb of Columbus), Greene attended Northwestern University in Evanston, Illinois, and became a reporter and feature writer for the Chicago Sun-Times upon graduating in 1969, receiving a regular column in the paper within two years. Greene first drew significant national attention with his book, Billion Dollar Baby (1975), a diary of his experiences while touring with rock musician Alice Cooper and portraying Santa Claus during the show.
Greene's primary focus remained his newspaper column, for which he won the National Headliner Award for best column in 1977 from an American journalism group. Shortly afterward, Greene was hired by Chicago Tribune and began making occasional guest appearances on local television, eventually landing a commentary slot on the ABC news program Nightline. He also wrote the "American Beat" column in Esquire.
Bob Greene (born December 8, 1958) is an American exercise physiologist and certified personal trainer specializing in fitness, metabolism, and weight loss. Greene is the creator of Best Life, a diet and fitness plan, and Best Life Foods, which sells a line of butter substitutes.
Greene was born in Cherry Hill, New Jersey and is a graduate of Cherry Hill High School East. Greene studied physical education at the University of Delaware and then went on to get a master's degree in exercise physiology from the University of Arizona. He is a member of the American College of Sports Medicine.
Greene has authored over ten books concerning weight-loss, diet and health, including two books co-authored by Oprah Winfrey. He is a frequent guest on The Oprah Winfrey Show, has a radio show on the "Oprah and Friends" satellite radio network and is a contributor to O magazine. He lives in Santa Barbara, California with his wife Urania and daughter Kylee. Winfrey was the "best woman" at his 2005 wedding.
Robert "Bob" Greene Sr. (April 16, 1918 – June 21, 2010) was an American Makah elder. Greene was the oldest living Makah man and the second-to-last surviving Makah veteran of World War II at the time of his death in 2010. He was a fluent speaker of the Makah language, an indigenous language spoken by the Makah people of Washington state.
Greene was born on April 16, 1918, in Neah Bay, Washington, to parents, Walter and Florence Tucker-Greene. He enrolled in Chemawa Indian Boarding School, located near Salem, Oregon, where he became a boxing champion. He was a fluent Makah language speaker, an increasingly rare language.
He enlisted in the United States Army after leaving Chemawa. Greene served in the Pacific theater during World War II. He would be honored at the Makah Days Parade for 52 years for service during the war.
Greene died of natural causes on June 21, 2010, at the age of 92. His wife, Hazel Butler-Greene, and two daughters predeceased him. Greene was survived by four daughters, Janice La Chester, Elaine Richardson, Pam Greene and Trudy Ward, and four sons, Bob Greene Jr., Keith Greene, Craig Greene Sr. and Kevin Greene.
Bo Diddley (1928–2008) was an American R&B vocalist, guitarist and songwriter.
Bo Diddley may also refer to:
The great grand-pappy when the land was young
Barred his do' wit' a wagon tongue
Oooh-ho-ho-ho-ho
When the times got tough and redskins smart
Said his prayers with his shotgun cocked
Oh-oh-oh, whoa-ooh-ooh-ooh, oh-whoa-oh
The great grand-pappy was a busy man
Cooked his grub in a fryin' pan
Picked his teeth with a huntin' knife
He wore the same suit all-a his life
Oh-oh, ooo-oh-ooo, ooo-ooo
A-ay-oh
(Guitar & piano)
Twenty-one children, came to be blessed
The old man's house in the wilderness
Oh-oh-oh
Oh-oh-a-whoa-oh
Doubt his story if you can
The great grand-pappy was a busy man
Ooh-ooh-ooh-ooh
Oh-hoo! (ah-hoo)
Ooow
FADES-
Whoa-ooh-a-ooo.
Loading...');
var query = jQuery('.radio_query').val();
jQuery.ajax({
data: { query: query },
url: '/api/upge/cheetah-photo-search/radio',
success: function(text) {
jQuery('.radio-search-results').html(jQuery(text));
updateHeight();
$('#RadioSearchTable').tablesorter();
$('#RadioSearchTable').trigger("update");
}
});
return false; // do not submit the form
});
$(".search-tools-btn").click(function () {
header = $(this);
content = $(".search-tools-content");
if(content.is(':visible')) {
content.hide('slow');
header.html('Tools ');
}else{
content.show('slow');
header.html('Hide ');
}
});
});