- published: 17 Jun 2009
- views: 1467513946
'+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; })); }); -->
My Life may refer to:
My Life is the second studio album by American R&B recording artist Mary J. Blige, released on November 29, 1994, by Uptown Records. Many of the topics on My Life deal with clinical depression, Blige's battling with both drugs and alcohol, as well as being in an abusive relationship. Similar to her debut album What's the 411?, My Life features vast production from Sean Combs aka Puff Daddy, who provided a hip hop soul sound.
Considered to be her breakthrough album, My Life became Mary J. Blige's second album to reach the top ten of the Billboard 200 charts, peaking at number seven, and debuting at number one on the Top R&B/Hip-Hop Albums chart for eight weeks. In 1995, the album was nominated for Best R&B Album at the 38th Grammy Awards, while in December of the same year, the album was certified 3x Platinum by the Recording Industry Association of America, for shipments of three million copies in the United States. It also won the 1995 Billboard Music Award for Top R&B Album.
"My Life" is a song by Australian hip hop group Bliss N Eso, with guest vocals performed by American recording artist, Ceekay Jones. Written by Max McKinnon, Matthew Kirk, Jonathan Notley, Ebony West (Runway Star) and Nigel Kirk, the song was first released in November 2013 as the fifth single from Bliss N Eso's fifth studio album, Circus in the Sky (2013).
In late 2012, Bliss n Eso began recording material for their fifth studio album, Circus in the Sky (2013) in Australia and Los Angeles, with the goal of "creating their most electric and progressive album to date". After touring North America and visiting Afghanistan to perform for Australian troops, Bliss N Eso released "My Life" as the fifth single from their aforementioned album in November 2013.
The song's accompanying music video, which runs for four minutes and forty-nine seconds was directed by Allan Hardy. While the video contains footage from Bliss n Eso's visit to Canada and the United States, it mostly centres on Australian freestyle motocross racer, Cam Sinclair. The video chronicles Sinclair's life-threatening accident at the 2009 Red Bull X Fighters Freestyle Motocross event in Madrid, Spain, the rehabilitation and training he undergoes in the aftermath of this accident and his subsequent return to competition at the 2010 X Games in Los Angeles. In addition to Sinclair, the video also features appearances from a number of other athletes including, Robbie Maddison, TJ Lavin, Aaron "Wheelz" Fotheringham, Jaie Toohey, Cam White and James Doerfling among others.
Plato (/ˈpleɪtoʊ/;Greek: ΠλάτωνPlátōn pronounced [plá.tɔːn] in Classical Attic; 428/427 or 424/423 – 348/347 BC) was a philosopher in Classical Greece and the founder of the Academy in Athens, the first institution of higher learning in the Western world. He is widely considered the most pivotal figure in the development of philosophy, especially the Western tradition. Unlike nearly all of his philosophical contemporaries, Plato's entire œuvre is believed to have survived intact for over 2,400 years.
Along with his teacher, Socrates, and his most famous student, Aristotle, Plato laid the very foundations of Western philosophy and science.Alfred North Whitehead once noted: "the safest general characterization of the European philosophical tradition is that it consists of a series of footnotes to Plato." In addition to being a foundational figure for Western science, philosophy, and mathematics, Plato has also often been cited as one of the founders of Western religion and spirituality, particularly Christianity, which Friedrich Nietzsche, amongst other scholars, called "Platonism for the people." Plato's influence on Christian thought is often thought to be mediated by his major influence on Saint Augustine of Hippo, one of the most important philosophers and theologians in the history of Christianity.
Plato is the lava-filled remains of a lunar impact crater on the Moon. It is located on the northeastern shore of the Mare Imbrium, at the western extremity of the Montes Alpes mountain range. In the mare to the south are several rises collectively named the Montes Teneriffe. To the north lies the wide stretch of the Mare Frigoris. East of the crater, among the Montes Alpes, are several rilles collectively named the Rimae Plato.
The age of Plato is about 3.84 billion years, only slightly younger than the Mare Imbrium to the south. The rim is irregular with 2-km-tall jagged peaks that project prominent shadows across the crater floor when the Sun is at a low angle. Sections of the inner wall display signs of past slumping, most notably a large triangular slide along the western side. The rim of Plato is circular, but from the Earth it appears oval due to foreshortening.
The flat floor of Plato has a relatively low albedo, making it appear dark in comparison to the surrounding rugged terrain. The floor is free of significant impact craters and lacks a central peak. However, there are a few small craterlets scattered across the floor.
Plato (also Plato Comicus; Ancient Greek: Πλάτων Κωμικός) was an Athenian comic poet and contemporary of Aristophanes. None of his plays survive intact, but the titles of thirty of them are known, including a Hyperbolus (c. 420-416 BC), Victories (after 421), Cleophon (in 405), and Phaon (probably in 391). The titles suggest that his themes were often political. In 410 BC, one of his plays took first prize at the City Dionysia.
Phaon included a scene (quoted in the Deipnosophistae of Athenaeus) in which a character sits down to study a poem about gastronomy (in fact mostly about aphrodisiacs) and reads some of it aloud. The poem is in hexameters, and therefore sounds like a lampoon of the work of Archestratus, although the speaker calls it "a book by Philoxenus", meaning either the poet Philoxenus of Cythera, the glutton Philoxenus of Leucas, or both indiscriminately.
Of Plato the comic poet's plays, only the following thirty titles have come down to us, along with 292 associated fragments.
New album ‘2020’ out now https://BonJovi.lnk.to/2020-TheAlbum Follow Bon Jovi: Facebook: https://www.facebook.com/BonJovi Instagram: https://www.instagram.com/bonjovi/ Twitter: https://twitter.com/bonjovi Website: https://www.bonjovi.com/ Music video by Bon Jovi performing It's My Life. (C) 2003 The Island Def Jam Music Group #BonJovi #ItsMyLife #Remastered
Buy Now! http://smarturl.it/50MyLife Music video by 50 Cent performing My Life ft. Eminem & Adam Levine. © 2012 Interscope
J. Cole - The Off-Season is available now: https://JCole.lnk.to/OffSeason Connect with J. Cole: https://www.instagram.com/realcolewor... https://twitter.com/jcolenc https://www.facebook.com/JColeMusic/ Connect with Dreamville: http://dreamville.com/ https://www.instagram.com/dreamville https://twitter.com/Dreamville https://www.facebook.com/dreamville #JCole #TheOffSeason
Playlist Best of The Game https://goo.gl/aqjwq5 Subscribe for more https://goo.gl/eNqmsy Music video by The Game performing My Life. YouTube view counts pre-VEVO: 4,679,210. (C) 2008 Geffen Records #TheGame #MyLife #Vevo #HipHop #LilWayne
Official Audio for "My Life" by Billy Joel Listen to Billy Joel: https://billyjoel.lnk.to/listenYD Subscribe to the Billy Joel YouTube Channel: https://billyjoel.lnk.to/subscribe Watch more Billy Joel videos: https://billyjoel.lnk.to/listenYC/youtube Facebook: https://billyjoel.lnk.to/followFI Instagram: https://billyjoel.lnk.to/followII Twitter: https://billyjoel.lnk.to/followTI Website: https://billyjoel.lnk.to/followWI Spotify: https://billyjoel.lnk.to/followSI YouTube: https://billyjoel.lnk.to/subscribe Lyrics: Got a call from an old friend we'd used to be real close Said he couldn't go on the American way Closed the shop, sold the house, bought a ticket to the west coast Now he gives them a stand-up routine in L.A. I don't need you to worry for me 'cause I'm alright I don't want y...
Provided to YouTube by Universal Music Group My Life · Mary J. Blige My Life ℗ A Geffen Records Release; ℗ 1994 UMG Recordings, Inc. Released on: 1995-01-01 Producer: Chucky Thompson Producer: P. Diddy Producer: Sean "Puffy" Combs Composer Lyricist: Sean Combs Composer Lyricist: Roy Ayers Composer Lyricist: Mary J. Blige Composer Lyricist: P. Diddy Composer Lyricist: Chucky Thompson Composer Lyricist: Arlene Delvalle Auto-generated by YouTube.
Official music video for "Nhance - My Life" Artist: Nhance Song: My Life Produced By: TEGO BOSS - SAINTkingstonMUSIC | Sweet Music | SGBZ Composed By: SAINTkingstonMUSIC Visual By: Elite One Available on All Platforms. Buy/Stream Here: https://onerpm.link/Nhance-MyLife Follow #nhance ⤵️ https://www.instagram.com/nhancemusic/ https://www.tiktok.com/@nhancemusic All inquiries: Contact Tego Boss, Email: [email protected]
Listen to “My Life” on ‘Mercury – Act 1’: https://ImagineDragons.lnk.to/Mercury Filmed On Location at Shangri La Studios in Malibu Footage Directed and Shot by Joey Armario Creative Direction by Justin Moon @1824 Edited by Ethan Madison @1824 Produced by Jared Shelton @Interscope Records Shop Imagine Dragons: http://smarturl.it/ImagineDragonsShop Sign up for email updates: http://smarturl.it/ID_Email Listen to Imagine Dragons on Spotify: http://smarturl.it/ID_Discography Catch Imagine Dragons on tour: http://imaginedragonsmusic.com/tour Follow Imagine Dragons: Facebook: https://www.facebook.com/ImagineDragons Twitter: https://twitter.com/Imaginedragons Instagram: https://www.instagram.com/imaginedragons YouTube: https://youtube.com/imaginedragons TikTok: https://tiktok.com/@ima...
Official audio for Nicki Minaj "My Life" available everywhere now: https://NickiMinaj.lnk.to/PinkFriday2 ►Connect with Nicki 🎀🦄 https://www.nickiminajofficial.com https://instagram.com/nickiminaj https://twitter.com/nickiminaj https://facebook.com/nickiminaj https://snapchat.com/add/nickiminaj https://tiktok.com/@nickiminaj ►Shop Official Merch: https://shop.nickiminajofficial.com ►Subscribe on YouTube: http://bit.ly/NickiMinajYTSub #NickiMinaj #PinkFriday2
Official HD music video for "My Life" by Billy Joel Listen to Billy Joel: https://billyjoel.lnk.to/listenYD Subscribe to the Billy Joel YouTube Channel: https://billyjoel.lnk.to/subscribe Watch more Billy Joel videos: https://billyjoel.lnk.to/listenYC/youtube Follow Billy Joel: Facebook: https://billyjoel.lnk.to/followFI Instagram: https://billyjoel.lnk.to/followII Twitter: https://billyjoel.lnk.to/followTI Website: https://billyjoel.lnk.to/followWI Spotify: https://billyjoel.lnk.to/followSI YouTube: https://billyjoel.lnk.to/subscribe Chorus: I don't need you to worry for me, 'cause I'm alright I don't want you to tell me it's time to come home I don't care what you say anymore, this is my life Go ahead with your own life, leave me alone Billy Joel's official YouTube channel features...
DOWNLOAD 'CIRCUS IN THE SKY' FROM ITUNES - http://bit.ly/13H6u5D After spending the past couple of months travelling to Afghanistan to perform for our troops, touring through Canada, L.A and Las Vegas and catching up with old friends, today we are very excited to present the video for our track "My Life' featuring Ceekay Jones. In addition to some big moments from our recent trip, (including Eso's wedding in Las Vegas!) this video centers around our friend and Australian FMX athlete Cam (sincs) Sinclair's near-fatal crash at the 2009 Red Bull X Fighters Freestyle Motocross event in Madrid, then his incredible comeback at the 2010 X Games in Los Angeles. My Life also features some of our mates inspirational stories including Robbie Maddison, TJ Lavin, Aaron "Wheelz" Fotheringham, Jaie Too...
DOWNLOAD FOR FREE FROM: http://blissneso.com/unplugged Bliss and Eso are joined by DJ Izm, Ceekay Jones and James Illingworth at Stdudios 301 in Sydney for a very special late night recording of MY LIFE. DOWNLOAD 'CIRCUS IN THE SKY' FROM ITUNES - http://bit.ly/13H6u5D http://blissneso.com | http://facebook.com/blissneso | http://twitter.com/blissneso | http://instagram.com/blissneso28 | http://blissneso.tv | http://illusive.com.au
Bliss n Eso - My Life (Feat. Ceekay Jones)
This song is for my girlfriend, I hope you like it honey!
Aussie Hip-Hop artist Bliss n Eso perform their single My Life for Take 40 (@take40). Take 40 is Australia's longest running chart show, counting down the top 40 most bought, heard and downloaded songs each week. For our newest videos head to: http://www.take40.com http://www.take40.com/music/music-charts/take-40-countdown http://www.facebook.com/take40australia http://twitter.com/take40
This is my lyric video: My Life by Bliss n Eso ft. Ceekay Jones! Bliss n Eso ft. Ceekay Jones - My Life (Lyrics) Bliss n Eso ft. Ceekay Jones - My Life (Lyrics) Bliss n Eso ft. Ceekay Jones - My Life All credit and all rights belong to Bliss n Eso, Ceekay Jones and their respective partners. I do not own this song, nor do I claim to do so.
Doing it BIG once again!! Check out BLISS N ESO OFFICIAL NEW VIDEO featuring CEEKAY JONES for "My Life"!! We spot our MAFIOSO CLOTHING 'LOADED' Tee up in the mix!!! Support & Download 'CIRCUS IN THE SKY' from iTunes NOW!!
My Life may refer to:
[ Chorus ]
And I'm grindin' til I'm tired
They say "You ain't grindin' until you tired."
So I'm grinding with my eyes wide,
Looking to find,
A way through the day,
A life for the night,
Dear lord you've taok so many of my people
I'm just wondering why you haven't taken my life
Like what the hell am I doing right?
[ Verse 1 ]
Father, I've sinned, I've commited many sins,
So plenty to go through, I don't know where to begin,
Well, swell, my life is like spendin' life in a cell,
Though I've never been in jail, I've done been through hell,
Is this the life you chose for me? Eternally condemned?
Though I've never condescend, I still don't comprehend,
When I make choices they are overpowered by Satan,
I lost everything I touched, what do I keep my faith in?
To make things worst, I lose my girl and my homeboys,
Drive my casket in a Rolls Royce if I make the wrong choice
I've danced with the devil more than I prayed to you Lord,
I have every fucking reason to have my prayers ignored,
Life is hard enough, I'ma just end it,
I'll take the cowards way out, show me where's the exit,
If I see a white light, heaven's where I'm headin',
But if it's shallow in shadows, I know I'm burnin'!
[ Chorus ]
And I'm grindin' til I'm tired
They say "You ain't grindin' until you tired."
So I'm grinding with my eyes wide
Looking to find,
A way through the day
A life for the night
Dear lord you've taok so many of my people
I'm just wondering why you haven't taken my life
Like what the hell am I doing right?
[ Verse 2 ]
Wait a minute, I'm a man, I must stand on both feet,
I look up in the skies, eyes closed and yell: "Lord speak."
Another brother died, didn't get a chance to say goodbye,
Shed a tear for him, like 2Pac said: "Even thugs cry."
No! What am I doin'?! Gotta pull this gun away from my head,
What difference will it make? My soul already bled,
Surely, it's obvious, I'm purely wounded sorely,
Suicide? Why kill myself? Life will do it for me,
I'm so fed up, I don't know what I'm livin' for,
When it comes to love, fuck, man, I'm just giving more,
Fuck love, show no love, love will get you killed,
It's a forever burnin' burden, it will never be healed,
With all this struggle and pain, I will never give up,
My hype will thrive as he strives and will always live up,
Now, I'ma continue walkin' forward like a peaceful dove,
And if there's really a God, show me a sign from above, Peace!
[ Chorus ]
And I'm grindin' til I'm tired
They say "You ain't grindin' until you tired."
So I'm grinding with my eyes wide
Looking to find,
A way through the day
A life for the night
Dear lord you've taok so many of my people
I'm just wondering why you haven't taken my life
Like what the hell am I doing right?