- published: 08 Jan 2016
- views: 2040
'+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; })); }); -->
Remedies is the third album released by New Orleans R&B artist Dr. John. The photography was by Steve LaVere, taken in 1969 at the Whisky a Go Go.
In his interview with Uncut Magazine (October 2010), Dr. John explained the "bad trip" environment which led to the epic closing track "Angola Anthem":
All songs written and composed by Mac Rebennack.
Malcolm John "Mac" Rebennack (born November 21, 1940), better known by the stage name Dr. John (also Dr. John Creaux, or Dr. John the Night Tripper), is an American singer, songwriter, pianist and guitarist, whose music combines blues, pop, jazz as well as zydeco, boogie woogie and rock and roll.
Active as a session musician since the late 1950s, he gained a cult following in the late 1960s following the release of his album Gris-Gris and his appearance at the Bath Festival of Blues and Progressive Music. He performed a wildly theatrical stage show inspired by medicine shows, Mardi Gras costumes and voodoo ceremonies. Rebennack has recorded over 20 albums and in 1973 scored a top-20 hit with the jaunty funk-flavored "Right Place Wrong Time", still his best-known song.
The winner of six Grammy Awards, Rebennack was inducted into the Rock and Roll Hall of Fame by singer John Legend on March 14, 2011. In May 2013, Rebennack was the recipient of an honorary doctorate of fine arts from Tulane University. He was jokingly referred to by Tulane's president, Scott Cowen, as "Dr. Dr. John".
"@" is a studio album by John Zorn and Thurston Moore. It is the first collaborative album by the duo and was recorded in New York City in February, 2013 and released by Tzadik Records in September 2013. The album consists of improvised music by Zorn and Moore that was recorded in the studio in real time with no edits or overdubs.
Allmusic said "@ finds two of New York City's longest-running fringe dwellers churning out sheets of collaborative sounds that conjoin their respective and distinct states of constant freak-out... These seven improvisations sound inspired without feeling at all heavy-handed or urgent. More so, @ succeeds with the type of conversational playing that could only be achieved by two masters so deep into their craft that it probably feels a lot like breathing to them by now".
All compositions by John Zorn and Thurston Moore
?! is the third studio album by Italian rapper Caparezza, and his first release not to use the former stage name MikiMix.
Reviewing the album for Allmusic, Jason Birchmeier wrote, "The Italian rapper drops his rhymes with just as much fluency and dexterity as his American peers throughout the album. [...] Caparezza's mastery of the Italian dialect [makes] this album so stunning."
"Album" is the seventh episode of the first season of the 1974 American television series Land of the Lost. Written by Dick Morgan and directed by Bob Lally, it first aired in the United States on October 19, 1974 on NBC. The episode guest stars Erica Hagen.
Will awakens in the early morning to a high-pitched whirring sound which fills the jungle, but eventually it goes away. Rick has Holly build a trap to catch whatever has been breaking into their stores, and Will goes to weed the garden. While outside, he again hears the sound and follows it to the Lost City. Within, he enters a chamber with a very crude-looking attempt to simulate a matrix table but filled with colored stones instead of crystals. On the ground is a pulsating blue crystal that attracts his attention. Picking it up, he sees his mother (Erica Hagen) materialize in a cloud of mist. Afterwards, he returns to High Bluff but doesn't speak of his encounter.
The next day Holly's trap has not worked, and Will again hears the sound. Holly hears it briefly as well, but dismisses it. Will returns to the Lost City and again witnesses his mother while holding a blue stone. His mother calls for him, but he is interrupted by Holly, who sees nothing until she touches the blue crystal as well. Holding it together, they are both beckoned by their mother to "come home," but then she quickly adds, "Too late. Come tomorrow. Don't tell." Will explains to Holly that he wants to tell Rick about his discovery but for some reason he is unable to. Holly replies that she will tell their father if he does not and Will sincerely hopes that she can. Will theorizes that they were looking through a time doorway that is open to a period when she was still alive. When Holly asks why her image is not very clear, her brother suggests that it might be because they do not remember her very well.
"John" or "John the bookmaker" is the name given to an Indian bookmaker who in 1994–95 gave money to Australian cricketers Mark Waugh and Shane Warne, in return for pitch and weather information. However, according to the players, they refused to divulge more strategic material, such as team tactics and player selection policies. One of the most publicised of a series of betting controversies in cricket in the 1990s, the matter was initially covered up by the Australian Cricket Board (ACB), which decided that it was sufficient to privately fine the players. The ACB concluded that, since Waugh and Warne had previously accused Pakistani cricket captain Saleem Malik of attempting to bribe them to lose matches, their credibility as witnesses would be damaged if their own involvement with John was publicised. The ACB reported the matter to the International Cricket Council, and there the matter ended.
When the issue was uncovered by the media in late 1998, the two players were widely condemned by the press and public, as was the ACB for their cover-up. Waugh received a hostile reaction from the Australian public when he walked out to bat during a Test match immediately after the news broke. On the other hand, the sports community was generally supportive of the players. The ACB appointed Rob O'Regan QC to conduct an independent inquiry into the matter. O'Regan concluded that the fines were inadequate and wrote that a suspension for a "significant time" would have been a more appropriate penalty. He strongly condemned the players' behaviour and their failure as role models for young fans. O'Regan further added that players needed to be better informed about the dangers of gambling and unauthorised bookmakers.
The First Epistle of John, often referred to as First John (US) or One John (UK) (and written 1 John) is a book of the New Testament. This fourth catholic or "general" epistle is attributed to John the Evangelist, traditionally thought to be the author of the Gospel of John and the other two Epistles of John. This Epistle was probably written in Ephesus between the years 95–110. The work was written to counter docetism, which is the belief that Jesus did not come "in the flesh", but only as a spirit. It also defined how Christians are to discern true teachers: by their ethics, their proclamation of Jesus in the flesh, and by their love.
The Epistle is traditionally held to have been composed by John the Evangelist, at Ephesus, when the writer was in advanced age. The epistle's content, language and conceptual style are very similar to the Gospel of John, 2 John, and 3 John, indicating that they were written by the same author. Indeed, at the end of the 19th century scholar Ernest DeWitt Burton wrote that there could be "no reasonable doubt" that 1 John and the gospel were written by the same author, and Amos Wilder has said that, "Early Christian tradition and the great majority of modern scholars have agreed on the common authorship of these writings, even where the author has not been identified with the apostle John."
Get it on iTunes: https://itunes.apple.com/ar/album/only-hits/id1054710334 Tracklist: Mama Roux 00:00 What Goes Around Comes Around 02:59 Tippatina 06:00 Qualified 09:26 Whichever Way The Wind Blows 14:15 Bald Head 16:57 Danger Zone 19:35 Mean Cheatin' 23:16 One Late Night 27:58 Quitters Never Win 30:20 Helping Hand 33:35 A Little Close To My Home 36:37 I Pulled The Cover 39:51 In The Night 42:44 Subscribe http://bit.ly/2mictQ3
Provided to YouTube by Rhino/Elektra Wash, Mama, Wash · Dr. John Remedies ℗ 1970 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States Writer: Mac Rebennack Writer: Rebennack Auto-generated by YouTube.
Provided to YouTube by Rhino/Elektra Loop Garoo · Dr. John Remedies ℗ 1970 Atlantic Records Vocals: Dr. John Producer: James Austin Composer: Mac Rebennack Auto-generated by YouTube.
Malcolm Rebennack came into this world direct from between the thighs of Marie Laveau one Mardi Gras morning. As soon as he started breathing, the attending physicism, Dr. Lolo Robicheaux, gave him a spoonful of secret gumbo from a receipe inspired by Jean Laffite. Folks, he ain't never been the same since. Once he could walk and talk, Dr. Robicheaux gave him an infusion of voodoo blood mos' sociously due to the gris-gris that was laying aroun' his front door, and tol' Malcolm that he was really Dr. John, da Night Tripper. Rather than raise a fuss about schoolin' and books, the boy they once called Malcolm decided than and there to heal people wit' his music. He immediately jumped the St. Charles stratocar to the end of the line and direct to the heaven, then touched his finger to the fing...
Provided to YouTube by Rhino/Elektra Mardi Gras Day · Dr. John Remedies ℗ 1970 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States Writer: Rebennack Auto-generated by YouTube.
Hugh Coltman & Matthis Pascaud "Loop Garoo" cover (DrJohn from Remedies album) - Live au New Morning le 27 Juillet 2021- Hommage à Dr John A paraître sur l'album "Night Trippin" en Février 2022
Features music and vocals taken from the original tapes that Dr. John recorded in 1974 and Includes performances by Sonny Landreth, Joe Louis Walker and Doug Kershaw. Purchase the album here: https://cleorecs.com/store/shop/dr-john-gumbo-blues-cd/
Provided to YouTube by Rhino/Elektra What Comes Around (Goes Around) · Dr. John Desitively Bonnaroo ℗ 1974 Atco Records a div. of Atlantic Records Producer: James Austin Composer: Mac Rebennack Auto-generated by YouTube.
Remedies is the third album released by New Orleans R&B artist Dr. John. The photography was by Steve LaVere, taken in 1969 at the Whisky a Go Go.
In his interview with Uncut Magazine (October 2010), Dr. John explained the "bad trip" environment which led to the epic closing track "Angola Anthem":
All songs written and composed by Mac Rebennack.