- published: 15 Mar 2013
- views: 272788
'+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; })); }); -->
Lucky Peterson (born Judge Kenneth Peterson, December 13, 1964, Buffalo, New York) is an American musician who plays contemporary blues, fusing soul, R&B, gospel and rock and roll. He plays guitar and keyboards. Music journalist Tony Russell, in his book The Blues - From Robert Johnson to Robert Cray has said, "he may be the only blues musician to have had national television exposure in short pants."
Peterson's father, bluesman James Peterson, owned a nightclub in Buffalo called The Governor's Inn. The club was a regular stop for fellow bluesmen such as Willie Dixon. Dixon saw a five-year-old Lucky Peterson performing at the club and, in Peterson's words, "Took me under his wing." Months later, Peterson performed on The Tonight Show, The Ed Sullivan Show and What's My Line?. Millions of people watched Peterson sing "1-2-3-4", a cover version of "Please, Please, Please" by James Brown. At the time, Peterson said "his father wrote it". Around this time he recorded his first album, Our Future: 5 Year Old Lucky Peterson, for Today/Perception Records and appeared on the public television show, Soul!.
Too Young to Die? is a 1990 television movie starring Brad Pitt and Juliette Lewis. It touches on the debate concerning the death penalty. It is based on a true story. Three years later, Pitt and Lewis would reunite, portraying somewhat similar characters, in Kalifornia.
Although set in Oklahoma, the film is loosely based on Attina Marie Cannaday, who along with David Gray, killed Ronald Wojcik, with a knife, in Harrison County, Mississippi on June 3, 1982.
Cannaday (born September 8, 1965) was charged with robbery, kidnapping, and homicide. At the time of her trial, she was a sixteen-year-old divorcee, who had married at thirteen and divorced at fourteen. She was convicted in Harrison County Circuit Court of the kidnap and murder of U. S. Air Force Sergeant Ronald Wojcik and the jury sentenced her to death by lethal injection. The guilty verdict was upheld, but the sentence was reversed in 1984, Cannaday v. State, 455 So.2d 713, 720 (Miss. 1984), and she was resentenced to one life sentence and two 25-year sentences at Central Mississippi Correctional Facility (inmate number 42451). She was released on parole on March 9, 2008.
Too Young to Die may refer to:
"Too Young to Die" is the second single taken from British funk/acid jazz band Jamiroquai's debut studio album, Emergency on Planet Earth. The original version of the track runs at 10:18, however, both the single and album versions were cut, running at 3:22 and 6:05 respectively. The single peaked at #10 on the UK Singles Chart.
The commercial single includes all three versions of the track. The song's lyrics are about the fear of war and death due to political machinations. A music video was shot for "Too Young to Die". It was directed by W.I.Z., and consisted mainly of Jay Kay singing in what appears to be a desert military installation. The single's cover art depicts Jay Kay in the background, looking into the camera, with a sky-blue "grill" of the Buffalo Man in the left, as hollow spots, which are slowly morphing into solid blue crosses, headstones, the polar opposites to the meaning of the buffalo man. This morphing happens as one moves his eyes from left to right over the cover of the single. There is also a banner near the bottom of the sleeve which has several images on it, including a picture of a baby with a caption beside it reading "Too Young to Die", an image of the mushroom cloud, and a Swastika, with the latter having a red "X" over it.
Tracklist : 0:00 Real Mother For Ya 4:12 Ta' Ta' You 12:20 Up from The Skies 16:29 Truly A Friend 27:36 Lucky In Love 46:59 Ain't No Stopping Us Now
LUCKY PETERSON " THE SON OF A BLUESMAN " New Album " The Son of a Bluesman " to be released in June 2014 Toutes les informations sur mes concerts de cet été // All informations about my summer concerts www.luckypeterson.com *********************************************************** Order album " THE SON OF A BLUESMAN " Deezer : http://www.deezer.com/album/7774386 Spotify : http://open.spotify.com/album/4ncErgtor51fjBYPYQ7hk9 iTunes std : http://bit.ly/1j6K9un iTunes dlx : http://bit.ly/LPETERSONTheSonofaBluesmanDLXMP3 Qobuz : http://bit.ly/LPETERSONTheSonofaBluesmanHD *********************************************************** Artist FB Page : https://www.facebook.com/LuckyPeterso... Official Website : http://www.lucky-peterson.com Label FB Page : https://www.facebook.com/jazzv...
Track list: - Boogie Thang - Giving Me The Blues - Smooth Sailing - Don't Let Go - Instrumental - Trouble - Blues Medley - Knocking - How Do I, Why Do I - Last Night You Left - This Love - Proud Mary (feat. Tamara Peterson on vocals) Lucky Peterson, voc, guitar, organ, keys Tamara Peterson, voc, Shawn Kellerman, g, Tim Waites, b, Raul Valdes, dr, Bill Eden, s, Jeff Taylor, tp, Calvin Sexton, tb Recorded live at Estival Jazz Lugano, Piazza della Riforma, Lugano, Switzerland, 2011 Judge Kenneth Peterson (December 13, 1964 – May 17, 2020), known professionally as #LuckyPeterson, was an American musician who played contemporary #blues, fusing soul, R&B, gospel and #rockandroll. He played guitar and keyboards. Music journalist Tony Russell, in his book The Blues - From Robert Johnson to Robe...
Provided to YouTube by Universal Music Group Who's Been Talkin'? · Lucky Peterson I'm Ready ℗ 1992 Decca Records France Released on: 1992-12-02 Associated Performer, Vocals, Wurlitzer Electric Piano, Guitar: Lucky Peterson Producer: John Snyder Associated Performer, Alto Saxophone, Baritone Saxophone: Crispin Cioe Associated Performer, Bass Guitar: Paul Ossola Associated Performer, Bass Guitar: Wilbur Bascomb, Jr. Associated Performer, Drums: Crusher Green Associated Performer, Drums: Tony Coleman Associated Performer, Horn: Uptown Horns Associated Performer, Percussion: James Saporito Associated Performer, Guitar: Danny Draher Associated Performer, Guitar: Ernie Lancaster Associated Performer, Tenor Saxophone: Arno Hecht Associated Performer, Trombone: Bob Funk Ass...
Concert intégral de Lucky Peterson - 12/14 - Sweet home Chicago dans RTL JAZZ FESTIVAL présenté par Jean-Yves Chaperon
Invité du Live du Figaro, Lucky Peterson, guitariste et chanteur de blues américain, interprète le titre éponyme extrait de son nouvel album «The Son Of A Bluesman».
August 4, 2012 Marciac, France Wynton Marsalis (trumpet); Lucky Peterson (vocal, guitar, organ); Walter Blanding (sax); Dan Nimmer (piano); Carlos Henriquez (bass); Ali Jackson (drums)
Lucky Peterson - Purple Rain
Lucky Peterson, Popcorn, Ron Hanes, Rico McFarland, Charles Mack,
New Album " The Son of a Bluesman " Book your tickets right now for an exceptional concert in July 3th 2014 - 20h at Odéon - Théâtre de l'Europe - Paris Réservez dés maintenant vos places pour ce concert exceptionnel le 3 Juillet 2014 à 20h à l'Odéon - Théâtre de l'Europe - Paris Reservation tickets : http://bit.ly/R5RWNy ***************************************************************** Order Album Deezer : http://www.deezer.com/album/7774386 Spotify : http://open.spotify.com/album/4ncErgtor51fjBYPYQ7hk9 iTunes std : http://bit.ly/1j6K9un iTunes dlx : http://bit.ly/LPETERSONTheSonofaBluesmanDLXMP3 Qobuz : http://bit.ly/LPETERSONTheSonofaBluesmanHD ***************************************************************** Artist FB Page : https://www.facebook.com/LuckyPeterso... Officia...
Jamiroquai's official music video for 'Too Young to Die'. Click to listen to Jamiroquai on Spotify: http://smarturl.it/JamiroquaiSpot?IQid=JamiTYTD As featured on High Times: Singles 1992 - 2006. Click to buy the track or album via iTunes: http://smarturl.it/JamiroquaiHTiTunes?IQid=JamiTYTD Google Play:http://smarturl.it/JamiroquaiTYTDGplay?IQid=JamiTYTD Amazon: http://smarturl.it/JamiroquaiHTAmazon?IQid=JamiTYTD Stream more music from Jamiroquai here: http://smarturl.it/JamiroquaiHTStream?IQid=JamiTYTD More from Jamiroquai Virtual Insanity: https://youtu.be/4JkIs37a2JE Alright: https://youtu.be/9kXiLeBXzG4 Too Young to Die: https://youtu.be/OPkjnRIdQXQ More great 90's videos here: http://smarturl.it/Ultimate90?IQid=JamiTYTD Follow Jamiroquai Website: http://www.jamiroquai.co.uk/ Faceb...
This is the original Jamiroquai's song "Too Young To Die", from the album "Emergency on Planet Earth", withou the radio edit. I hope you enjoy :D
Jamiroquai - Too Young To Die (Extended) [Audio] Listen on Spotify: http://smarturl.it/Jami_EOPE_Spotify Click to buy the track or album via iTunes: http://smarturl.it/Jami_EONE_iTunes Amazon: http://smarturl.it/Jami_EOPE_Amazon Follow Jamiroquai Website: http://www.jamiroquai.co.uk/ Facebook: https://www.facebook.com/JamiroquaiOfficial/ Lyrics Everybody Don't want no war, 'Cos we're too young to die, So many people, All around the world, Seen their brothers fry. What's the motive? In your madness. You've made my people cry. So politicians this time Keep your distance. 'Cos we're too young to die. You know we're too young to die, You know we're too young to die, You know we're too young to die, You know we're too young to die, What's the answer? To our problems. I think we've gone too h...
A 1990 television movie starring Brad Pitt and Juliette Lewis. It touches on the debate concerning the death penalty. It is based on a true story.
Too many young innocent lives being taken due to online bullying! This needs to stop!! This is a song I wrote to raise awareness. Please share this and help raise some awareness for this! http://www.nathangrisdale.com
Lucy Spraggan You're Too Young From her October 2013 album Join The Club. She was so clever for her age as a kid She took pride in everything she ever said and did She was born as an angel Ticked every box in the list How could someone so beautiful end up like this? She was bought up in an everyday council estate Had friends and family who were never too far away Even as a kid she'd sometimes loose her temper And if attentions being given Guaranteed she's in the centre School was a struggle Result of her behaviour Excluded for the fights The same a few days later 'Cause when she got angry, she'd flip, see red "You're too pretty for the violence," her mum always said She had high aspirations She was chasing the dream Until her first conviction at the age of fourteen S...
Jamiroquai - Too Young To Die (Danny Baker Show) Buy vinyl here: https://jamiroquai.lnk.to/Vinyl Stream and download here: https://Jamiroquai.lnk.to/Streaming Subscribe to Jamiroquai YouTube Channel: https://Jamiroquai.lnk.to/YouTubeSubscribe WATCH YOU GIVE ME SOMETHING ► https://youtu.be/OEcBz6VtyDg WATCH ALRIGHT ► https://youtu.be/9kXiLeBXzG4 WATCH SEVEN DAYS IN SUNNY JUNE ► https://youtu.be/FRSH-egVyzk Follow Jamiroquai Website: http://www.jamiroquai.co.uk/ Facebook: https://www.facebook.com/Jamiroquai/ TikTok: https://www.tiktok.com/@jamiroquaiofficial Instagram: https://www.instagram.com/jamiroquaihq/ Twitter: https://twitter.com/JamiroquaiHQ #Jamiroquai #TooYoungToDie #JamiroquaiLive #TooYoungToDieDannyBakerShow #JamiroquaiTooYoungToDie #JamiroquaiOfficialAudio #TooYoungToDieLive...
Jamiroquai - Too Young To Die (Official 4K Video) Buy Vinyl here: https://jamiroquai.lnk.to/Vinyl Stream and download here: https://Jamiroquai.lnk.to/Streaming Subscribe to Jamiroquai YouTube Channel: https://Jamiroquai.lnk.to/YouTubeSubscribe WATCH YOU GIVE ME SOMETHING ► https://youtu.be/OEcBz6VtyDg WATCH ALRIGHT ► https://youtu.be/9kXiLeBXzG4 WATCH SEVEN DAYS IN SUNNY JUNE ► https://youtu.be/FRSH-egVyzk Follow Jamiroquai Website: http://www.jamiroquai.co.uk/ Facebook: https://www.facebook.com/Jamiroquai/ TikTok: https://www.tiktok.com/@jamiroquaiofficial Instagram: https://www.instagram.com/jamiroquaihq/ Twitter: https://twitter.com/JamiroquaiHQ #Jamiroquai #TooYoungToDie #JamiroquaiOfficial4KVideo #TooYoungToDieOfficial4KVideo #JamiroquaiTooYoungToDie #JamiroquaiOfficialAudio #Too...
Provided to YouTube by The Orchard Enterprises Too Young to Die · Agent Orange Living In Darkness (30th Anniversary Edition) ℗ 2011 Posh Boy Music Released on: 2011-10-26 Music Publisher: Covina High Music Auto-generated by YouTube.
Lucky Peterson (born Judge Kenneth Peterson, December 13, 1964, Buffalo, New York) is an American musician who plays contemporary blues, fusing soul, R&B, gospel and rock and roll. He plays guitar and keyboards. Music journalist Tony Russell, in his book The Blues - From Robert Johnson to Robert Cray has said, "he may be the only blues musician to have had national television exposure in short pants."
Peterson's father, bluesman James Peterson, owned a nightclub in Buffalo called The Governor's Inn. The club was a regular stop for fellow bluesmen such as Willie Dixon. Dixon saw a five-year-old Lucky Peterson performing at the club and, in Peterson's words, "Took me under his wing." Months later, Peterson performed on The Tonight Show, The Ed Sullivan Show and What's My Line?. Millions of people watched Peterson sing "1-2-3-4", a cover version of "Please, Please, Please" by James Brown. At the time, Peterson said "his father wrote it". Around this time he recorded his first album, Our Future: 5 Year Old Lucky Peterson, for Today/Perception Records and appeared on the public television show, Soul!.
Yes I'm lonely wanna die
Yes I'm lonely wanna die
If I ain't dead already
Ooh girl you know the reason why.
In the morning wanna die
In the evening wanna die
If I ain't dead already
Ooh girl you know the reason why.
My mother was of the sky
My father was of the earth
But I am of the universe
And you know what it's worth
I'm lonely wanna die
If I ain't dead already
Ooh girl you know the reason why.
The eagle picks my eye
The worm he licks my bones
I feel so suicidal
Just like Dylan's Mr. Jones
Lonely wanna die
If I ain't dead already
Ooh girl you know the reason why.
Black cloud crossed my mind
Blue mist round my soul
Feel so suicidal
Even hate my rock and roll
Wanna die yeah wanna die
If I ain't dead already