- published: 25 Oct 2009
- views: 15064516
'+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; })); }); -->
Jeffrey Scott "Jeff" Buckley (November 17, 1966 – May 29, 1997), raised as Scott "Scottie" Moorhead, was an American singer-songwriter and guitarist. After a decade as a session guitarist in Los Angeles, Buckley amassed a following in the early 1990s by playing cover songs at venues in Manhattan's East Village, such as Sin-é, gradually focusing more on his own material. After rebuffing much interest from record labels and his father's manager Herb Cohen, he signed with Columbia, recruited a band, and recorded what would be his only studio album, Grace, in 1994. Rolling Stone considers him one of the greatest singers of all time.
Over the following two years, the band toured widely to promote the album, including concerts in the U.S., Europe, Japan, and Australia. In 1996, they stopped touring and made sporadic attempts to record Buckley's second album in New York with Tom Verlaine as producer. In 1997, Buckley moved to Memphis, Tennessee, to resume work on the album, to be titled My Sweetheart the Drunk, recording many four-track demos while also playing weekly solo shows at a local venue. On May 29, 1997, while awaiting the arrival of his band from New York, he drowned during a spontaneous evening swim, fully clothed, in the Mississippi River when he was caught in the wake of a passing boat; his body was found on June 4.
Grace is the only complete studio album by Jeff Buckley, released on August 23, 1994. While the album initially had poor sales, peaking at number 149 in the U.S., and received mixed reviews, it gradually acquired critical acclaim and commercial success and, as of 2007, had sold over 2 million copies worldwide. An extended version of the album (subtitled "Legacy Edition") celebrating its tenth anniversary was released on August 23, 2004, and it peaked at No. 44 in the UK.
Grace re-entered the albums chart in Australia at number 44 for the week of January 29 – February 5, 2007 – 13 years after its original release date. It is currently certified 6x Platinum in Australia.
Jeff's version of "Corpus Christi Carol" was based on a version by Janet Baker. A childhood friend introduced him to the song, and Buckley sang a version on the album as a way of thanking him.
Grace has been highly rated in magazines such as Q, in which readers voted Grace the 75th greatest album of all time in 1998; the same vote was taken again in 2005 and Grace then ranked 13th. In 2003, the album was ranked number 303 on Rolling Stone's list of the 500 greatest albums of all time. In 2006, Mojo named Grace the No. 1 Modern Rock Classic of all Time. It was also rated as Australia's second favourite album on My Favourite Album, a television special aired by the Australian Broadcasting Corporation on December 3, 2006. In 2003, Buckley's version of "Hallelujah" was ranked No. 259 on Rolling Stone's list of the 500 greatest songs of all time.VH1 also rated the album No. 73 on its "100 Greatest Albums of Rock & Roll" show/list.David Bowie considered Grace to be the best album ever made, and had said it would be one of his ten "Desert Island Records."
Coordinates: 53°10′19″N 3°05′10″W / 53.172°N 3.086°W / 53.172; -3.086
Buckley (Welsh: Bwcle [ˈbʊklɛ]) is a town and community in Flintshire, located in north-east Wales. It is situated 2 miles (3.2 km) from the county town of Mold and is contiguous with the nearby villages of Ewloe, Alltami (which are both under the jurisdiction of Buckley town council) and Mynydd Isa. The town is located on the A549 road, with the larger A55 road passing nearby.
Buckley is the second largest town in Flintshire in terms of population. According to the 2001 Census, the community had a total population of 14,568, increasing to 15,665 at the 2011 census.
Notable nearby landmarks include Ewloe Castle.
Buckley was an Anglo-Saxon location, with some of its houses later recorded in the Norman Domesday Book of the 11th century. However, the first documented evidence of its existence dates from 1294 when it was described as the pasturage of the Manor of Ewloe, spelled as "Bokkeley".
The name Buckley may derive from the Old English bok lee, meaning meadow, or field. The likely meaning of the name was "clearing in a beech wood" (with boc meaning beech tree and ley meaning wood, glade or clearing). The name could also have been construed from bucc, a buck or deer; or bwlch y clai, meaning clay hole.
USS Buckley (DE/DER-51), a Buckley-class destroyer escort of the United States Navy, was named in honor of Ordnanceman John D. Buckley (1920–1941), who was killed in action during the Japanese attack on the Hawaiian Islands.
Buckley was launched on 9 January 1943 by Bethlehem-Hingham Shipyard, Inc., Hingham, Massachusetts, sponsored by Mrs. James Buckley, mother of Aviation Ordnanceman Buckley; and commissioned on 30 April 1943 with Lieutenant Commander A. W. Slayden in command.
Between July 1943 and 22 April 1944, Buckley operated along the eastern seaboard as training ship for prospective officers and nucleus crews of other destroyer escorts.
On 22 April 1944, she joined hunter-killer Task Group 21.11 (TG 21.11) for a sweep of the North Atlantic and Mediterranean convoy routes. On the morning of 6 May, aircraft from the escort carrier Block Island (CVE-21) reported an enemy submarine near Buckley. She steamed toward the surfaced submarine, evading her torpedoes and gunfire, and commenced firing. At 0328 Buckley rammed the German submarine U-66 and then backed off. Shortly thereafter, the submarine struck Buckley, opening a hole in the escort vessel's starboard side. Hand-to-hand combat ensued between crew members of the two combatants on Buckley's foredeck. The U-66 drew astern of Buckley and sank at 0341 in 17°17′N 32°24′W / 17.283°N 32.400°W / 17.283; -32.400 (German submarine U-66).
The Royal Tenenbaums is a 2001 American comedy-drama film directed by Wes Anderson and co-written with Owen Wilson. The film stars Gene Hackman, Anjelica Huston, Bill Murray, Gwyneth Paltrow, Ben Stiller, Luke Wilson, Owen Wilson and Danny Glover.
It follows the lives of three gifted siblings who experience great success in youth, and even greater disappointment and failure after their eccentric father leaves them in their adolescent years. An ironic and absurdist sense of humor pervades the film.
Hackman won a Golden Globe for his performance. The screenplay was nominated for an Academy Award. In 2008, a poll taken by Empire ranked it as the 159th greatest film ever made.
Royal Tenenbaum explains to his three children, Chas, Margot, and Richie, that he and his wife, Etheline, are separating. Each of the Tenenbaum children achieved great success at a very young age. Chas is a math and business genius, from whom Royal steals money. Margot, who was adopted by the Tenenbaums, was awarded a grant for a play that she wrote in the ninth grade. Richie is a tennis prodigy and artist. He expresses his love for adopted sister Margot through many paintings. Royal takes him on regular outings, to which neither of the other children are invited. Eli Cash is the Tenenbaums' neighbor, and Richie's best friend.
Jeff Buckley's official music video for 'Grace'. Click to listen to Jeff Buckley on Spotify: http://smarturl.it/JefBSpotify?IQid=JefBG As featured on Grace (Legacy Edition). Click to buy the track or album via iTunes: http://smarturl.it/JefBGLEiTunes?IQid=JefBG Google Play: http://smarturl.it/JefBGPlay?IQid=JefBG Amazon: http://smarturl.it/JefBGLEAmazon?IQid=JefBG More from Jeff Buckley Hallelujah: https://youtu.be/y8AWFf7EAc4 So Real: https://youtu.be/EcaxrqhUJ4c Forget Her: https://youtu.be/HO0svGjVEP8 More great 90's Alternative videos here: http://smarturl.it/Alternative90?IQid=JefBG Follow Jeff Buckley Website: http://www.jeffbuckley.com Facebook: https://www.facebook.com/JeffBuckley Twitter: https://twitter.com/jeffbuckley Subscribe to Jeff Buckley on YouTube: http://smarturl.it...
Jeff Buckley performing "Grace" live at Cabaret Metro, Chicago Listen to Jeff Buckley: https://JeffBuckley.lnk.to/listenYD Subscribe to the official Jeff Buckley YouTube Channel: https://JeffBuckley.lnk.to/subscribeYD Grace is the only complete studio album by Jeff Buckley, released on August 1994. The two-disc Legacy Edition also featured a DVD including a documentary and videos for "Grace", "Last Goodbye", "So Real", "Eternal Life" (the "road version") and "Forget Her". Disc One features the original album newly remastered for a new sonically rich, crisp sound not heard before. Disc Two features previously unreleased live recordings & material recorded during the Grace sessions, including the highly sought-after track "Forget Her." Grace (Legacy Edition) also includes a bonus DVD featu...
The legacy edition consists of disc 1 - the original album, disc 2 - un-released songs from the grace sessions and tour, and disc 3, the music vids.
Provided to YouTube by Columbia/Legacy Mojo Pin · Jeff Buckley Grace (Legacy Edition) ℗ 1994 Columbia Records, a division of Sony Music Entertainment Released on: 1994-08-23 Guitar, Composer, Lyricist: Gary Lucas Drums, Percussion: Matt Johnson Bass: Mick Grondahl Producer: Andy Wallace Executive Producer: Steve Berkowitz Assistant Engineer: Chris Laidlaw Assistant Engineer: Steve Cisco Assistant Engineer: Bryant Jackson Assistant Engineer: Reggie Griffith Auto-generated by YouTube.
I do not own the rights to this video; all rights belong to their respective owner(s). BBC SME Please like (click the thumbs up icon under the title), share, and subscribe, if you feel inclined, as it helps the channel grow. This video is dedicated to William Lane Craig. Jeff Buckley and his band, performing the title track from the album, Grace, live on The Late Show (BBC). Recorded on 17 January 1995, in London, England. Host: Tracey MacLeod Special thanks to TREON for his patience and perseverance, which made it possible to enhance this amazing performance, both audio-wise and visually. He used Topaz Video AI to upscale the footage and combined that with the soundboard recording from the Grace Around the World CD, which resulted in greater volume and sound clarity. Jeff Buc...
Provided to YouTube by Columbia/Legacy Dream Brother · Jeff Buckley Grace ℗ 1994 Columbia Records, a division of Sony Music Entertainment Released on: 1994-08-23 Drums, Percussion, Vibraphone, Composer, Lyricist: Matt Johnson Bass, Composer, Lyricist: Mick Grondahl Tabla: Misha Masud Engineer, Mixing Engineer, Producer: Andy Wallace Assistant Engineer: Clif Norrell Executive Producer: Steve Berkowitz Assistant Engineer: Chris Laidlaw Assistant Engineer: Steve Cisco Assistant Engineer: Bryant Jackson Assistant Engineer: Reggie Griffith Auto-generated by YouTube.
I do not own the rights to this video; all rights belong to their respective owner(s). Coldplay Anton Corbijn Back in 2011, photographer, Anton Corbijn, interviewed Coldplay. One of the questions that he asked the band members was who their musical influences were. Here, lead singer, Chris Martin, briefly talks about how Jeff Buckley was a major source of inspiration during the bands early years. Here is the full interview: https://www.youtube.com/watch?v=FrA0MugKcLs Chris Martin Admits That He Tried to Rip-Off Jeff Buckley & Others: https://www.youtube.com/watch?v=4rybnWxi6kQ Brad Pitt and Jimmy Page on Jeff Buckley: https://www.youtube.com/watch?v=PndSaitIBXk Jimmy Page About Jeff Buckley: https://www.youtube.com/watch?v=h6q-7GO0aaw Robert Plant on Jeff Buckley: https://www.y...
#shorts #Adele #AdeleMusic #AdeleFans #interview #jeffbuckley #interesting In this exclusive Adele interview, join us as we delve deep into the untold stories and captivating musical journey of the iconic British singer-songwriter, Adele. From her soulful ballads to chart-topping hits, Adele has captured the hearts of millions worldwide. Discover the inspiration behind her emotionally charged lyrics, the evolution of her powerful vocals, and the impact she has made on the music industry. Keywords: Adele interview, Adele stories, Adele musical journey, Adele soulful ballads, Adele chart-topping hits, Adele inspiration, Adele emotionally charged lyrics, Adele powerful vocals, Adele impact, iconic British singer-songwriter
#music #musicreaction #musicreview #jeffbuckley #hallelujah #shrek
Jeffrey Scott "Jeff" Buckley (November 17, 1966 – May 29, 1997), raised as Scott "Scottie" Moorhead, was an American singer-songwriter and guitarist. After a decade as a session guitarist in Los Angeles, Buckley amassed a following in the early 1990s by playing cover songs at venues in Manhattan's East Village, such as Sin-é, gradually focusing more on his own material. After rebuffing much interest from record labels and his father's manager Herb Cohen, he signed with Columbia, recruited a band, and recorded what would be his only studio album, Grace, in 1994. Rolling Stone considers him one of the greatest singers of all time.
Over the following two years, the band toured widely to promote the album, including concerts in the U.S., Europe, Japan, and Australia. In 1996, they stopped touring and made sporadic attempts to record Buckley's second album in New York with Tom Verlaine as producer. In 1997, Buckley moved to Memphis, Tennessee, to resume work on the album, to be titled My Sweetheart the Drunk, recording many four-track demos while also playing weekly solo shows at a local venue. On May 29, 1997, while awaiting the arrival of his band from New York, he drowned during a spontaneous evening swim, fully clothed, in the Mississippi River when he was caught in the wake of a passing boat; his body was found on June 4.