- published: 19 Mar 2022
- views: 26055651
'+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; })); }); -->
Do or Die may refer to:
Do or Die is a 1991 action film starring Cynthia Brimhall, Pat Morita and Erik Estrada. It was directed, written and produced by Andy Sidaris.
Do or Die is the second album by rapper Tim Dog. The album represented Tim's shift of focus, away from confrontation with the West Coast and concentrated on hardcore East Coast rap. The album contained a shout-out to Tupac Shakur whom Tim thanked for assisting him when involved in a potentially violent situation when touring in California.
All tracks by Tim Dog except were noted
Malik Cox (born June 23, 1978), best known as Memphis Bleek or "Bleek", is an American rapper mainly known for his tenure with Roc-a-Fella Records and CEO of his own label Get Low Records. He has released four albums during his career (all of which went Gold), and had planned to release The Process in 2011, although the album has not yet been released.
Do or Die is the first album released by Boston's Irish-American punk band, Dropkick Murphys. It was released in 1998. A music video for the single "Barroom Hero" was released. This is the only album that featured original lead vocalist, Mike McColgan who went on to become a fireman before forming his own band, the Street Dogs.
Allmusic gave Do or Die a rating of three stars out of five, and said that the album was "an interesting blend of hardcore-style punk with traditional Irish inflections."
A Do or Die poster appears on the wall of John Connor's bedroom in the pilot episode of Terminator: The Sarah Connor Chronicles. "Barroom Hero" was used in the final credits of the documentary "Restrepo." "Never Alone" was featured in the Extreme sports video game Dave Mirra Freestyle BMX.
Many songs were a collaborative effort.
Do or Die is the second album released by Gospel Gangstaz. It was released on November 28, 1995 for Holy Terra Records and featured production from Mr. Solo, Tik Tokk, DMG, Aaron Connor, Paul Andris, Sean Freehill and Steve Good. Do or Die peaked at 24 on the Top Christian Albums Billboard chart, but again no charting singles were released.
Do or Die is an American rap trio originally from the Westside of Chicago, consisting of group members Belo Zero, N.A.R.D. and AK. The group experienced mainstream success with the platinum single "Po Pimp", which peaked at #22 on the Billboard Hot 100.
Do or Die gained a hit with their first single, "Po Pimp". Released on a tiny Chicago label, the track became a local hit and sparked the group's signing by Houston's Rap-A-Lot Records. Given a wide release in the summer of 1996, the single hit number 22, increasing the buzz for a full-length from the group. In September of that year, Picture This was released on Rap-A-Lot. The album was certified Gold, and launched the group, as well as fellow Chicago rapper Twista, who was featured on the track, into superstardom.
In 1998, the group released their sophomore album, "Headz or Tailz". Like the group's previous album, Headz or Tailz was a success, peaking at #13 on the Billboard 200 and #3 on the Top R&B/Hip-Hop Albums, producing the successful single, "Still Po Pimpin", which featured Twista and Johnny P, and peaked at #62 on the Billboard Hot 100 and #16 on the Hot Rap Singles.
Dream, GeorgeNotFound, Sapnap, BadBoyHalo, Antfrost, and Awesamdude fight to the death in this Minecraft animated song by Cubical. Stream Do or Die!! - Spotify: https://open.spotify.com/album/6iuxFvWYIJePJx4J4E1urU - iTunes / Apple Music: https://music.apple.com/us/album/do-or-die-single/1591829892 Rendered with FOX Renderfarm : https://www.foxrenderfarm.com/ Production Supervision: https://www.youtube.com/c/QCAnimations Production Direction: https://twitter.com/sweeepr This is a Minecraft song animation is similar to the previous animated videos by Cubical and ZAMination, where the song was created by CG5, TryHardNinja, JT Music, etc, but this time we created the song! This isn't a Poppy Playtime song, or a Bendy and the Ink Machine song. But a Five Nights at Freddy's security breach ...
DPR ARTIC - Do or Die Feat. DPR IAN (Official Music Video) https://radi.al/dprartic-presave _DPR ARTIC Instagram: https://www.instagram.com/dprartic/ Twitter: http://twitter.com/DPR_ARTIC _ DPR IAN Instagram: http://instagram.com/DPRIAN Twitter: http://twitter.com/DPRIAN_ TikTok: https://www.tiktok.com/@mito.is.real _ DPR Instagram: http://instagram.com/dpr_official Facebook: https://www.facebook.com/dreamperfectregime Youtube: @DreamPerfectRegime
Shop Mars merch: http://bit.ly/MarsStore http://www.thirtysecondstomars.com A Message from JARED LETO: I’m sitting in the dark writing this having just finished this little film and although I don’t feel quite done yet it’s time to let it go. This is a story about an incredible adventure that we all shared together this summer. A summer that we will never forget. It’s also a reminder (for myself as well) to LIVE LIFE NO MATTER WHAT. But ultimately it’s a love letter to you all. The believers. Even before I started shooting I thought of it as a companion piece to Closer To The Edge, a sequel of sorts, the next chapter. I knew it had to be special as Closer is held in such high regard by you all. So we worked hard. And then worked even harder. Sharing this journey with you all has been the...
Available:https://linktr.ee/biumurati -------------------------------------------------------- Directed by 2PAC Produced by 2PAC Recorded by Biu Murati Mix Master by Biu Murati Cinematographer Skin 2018 Video: New Russian Rap & Biu Murati -------------------------------------------------------- Connect with Biu Murati Instagram https://www.instagram.com/biumurati Twitter https://twitter.com/biumurati YouTube https://www.youtube.com/@biumurati SoundCloud https://soundcloud.com/biumurati Spotify https://open.spotify.com/artist/40dpHMOftBJoSc7SbnE5ll iTunes https://music.apple.com/us/artist/biu-murati/1523176974 Deezer https://www.deezer.com/us/artist/100549732 Mixcloud https://www.mixcloud.com/biumurati -------------------------------------------------------- Lyrics: [Intro] Get money nigga...
#임영웅 #LimYoungWoong #DoOrDie 임영웅 웅튜브 구독♡좋아요♡알람설정 열심히 할게요/당신도 누를 수 있도록 Lim Young Woong [I'm HERO] Youtube Channel Subscribe Like Alert Setting Thank You♡ 공식 팬카페 [영웅시대] http://cafe.daum.net/hero0616
Provided to YouTube by The Orchard Enterprises DO OR DIE · Dxrk ダーク DO OR DIE ℗ 2021 Black 17 Media, LLC. Released on: 2021-07-16 Producer: Dxrk ダーク Auto-generated by YouTube.
Provided to YouTube by The Orchard Enterprises Do U? · Do or Die Pimpin Ain't Dead ℗ 2013 RAP-A-LOT 2K RECORDS, INC. Released on: 2013-08-15 Auto-generated by YouTube.
[HOUSE OF TRICKY : HOW TO PLAY] Release Date : 2023. 08. 02 6PM (KST) iTunes ▶ https://apple.co/3ZqCPRi Spotify ▶ https://spoti.fi/3KokwHQ YouTube Music ▶ https://bit.ly/3rTthDa Melon ▶ http://kko.to/QJ8ZPgpeNv genie ▶ http://genie.co.kr/1JUHJ0 VIBE ▶ https://bit.ly/3Kqk63o ▶ xikers Official Platform https://xikers.kr ▶ xikers Official Twitter: https://twitter.com/xikers_official ▶ xikers Official Instagram: https://instagram.com/xikers_official/ ▶ xikers Official TikTok: https://tiktok.com/@xikers_official/ ▶ xikers Official Facebook: https://facebook.com/xikersKQ/ ▶ KQ Official Homepage: http://kqent.com ▶ KQ Official Facebook: https://facebook.com/kqent ▶ KQ Official Twitter: https://twitter.com/kqent ▶ KQ Official Instagram: https://instagram.com/kqent #xikers #싸이커스 #DOorDIE ...
Stream AleXa's "Do Or Die" ⇢ https://lnk.to/alexa_200306digital “Do Or Die,” the dark continuation to “Bomb,” is a groovy dance track combining Brazilian funk, electro and EDM. Set to a choreography that stands out for being one of the most difficult in K-Pop, “Do or Die” is a fight song that speaks with an all-or-nothing attitude. "Bomb"에 이어 "“Do Or Die” 브라질 펑크, 일렉트로, EDM을 결합한 그루비한 댄스 음악입니다. K-POP중 가장 격렬하고 난이도 높은 안무 중 하나이며 어려움 앞에 섰을 때, 포기하지 말고 싸워 이기라는 메시지를 담은 곡이다. Subscribe to AleXa on YouTube (Bell on!): ⇢ https://www.youtube.com/channel/UCWWzmRMh6BPcEt46XlTyp1w?sub_confirmation=1 Stream AleXa's Best Hits: ⇢ Spotify: https://spoti.fi/32hmAK8 ⇢ Apple Music: http://bit.ly/AleXaOnAppleMusic ⇢ Melon: http://bit.ly/AleXaOnMelon ⇢ genie: http://bit.ly/AleXaOnGenie About AleXa: The daughte...
Check out my channel for future releases. Please subscribe if you like what you hear. Ripped from my personal CD collection. 01. I Don't Give a Fuck 02. Grab Your Gat 03. I Get Wrecked (feat. KRS-One) 04. Timberlands 05. If I Was a Cop 06. Hardcore 07. Game 08. Skip to My Loot 09. Silly Bitch 10. Maddog 11. Make Room 12. Breakin North
Provided to YouTube by Ruffhouse/Columbia Game · Tim Dog Do Or Die ℗ 1993 Columbia Records, a division of Sony Music Entertainment Released on: 1993-04-13 Composer, Lyricist: T. Blair Auto-generated by YouTube.
Provided to YouTube by Ruffhouse/Columbia I Don't Give a Fuck · Tim Dog Do Or Die ℗ 1993 Columbia Records, a division of Sony Music Entertainment Released on: 1993-04-13 Composer, Lyricist: T. Blair Auto-generated by YouTube.
Provided to YouTube by Ruffhouse/Columbia If I Was a Cop · Tim Dog Do Or Die ℗ 1993 Columbia Records, a division of Sony Music Entertainment Released on: 1993-04-13 Composer, Lyricist: T. Blair Auto-generated by YouTube.
"Music video by Tim Dog;KRS-One performing I Get Wrecked. (C) 1993 Ruffhouse Records LP"
Provided to YouTube by Ruffhouse/Columbia Silly Bitch · Tim Dog Do Or Die ℗ 1993 Columbia Records, a division of Sony Music Entertainment Released on: 1993-04-13 Composer, Lyricist: T. Blair Auto-generated by YouTube.
Artist-Tim Dog Album-Do Or Die Year-1993 Label-Ruffhouse Records
Tim Dog & KRS-One - I Get Wrecked Video- http://www.youtube.com/watch?v=7BCvDXRyPoE Tim Dog - Hardcore Video- http://www.youtube.com/watch?v=94KSer7hDiU Tim Dog - Hardcore (Album Version)- http://www.youtube.com/watch?v=JeXnllDTpTc Tim Dog Having Fun With A Royal Guard at Buckingham Palace -1993- http://www.youtube.com/watch?v=T2xQmQotEIA Tim Dog Source Interview Back in '93 Part 1- http://babylonfalling.tumblr.com/search/tim+dog Tim Dog Source Interview Back in '93 Part 2- http://babylonfalling.com/images/tumblr/timdogday2_small.jpg Music Played: 1.Dilated Peoples- Third Degree 2.Kool G Rap & DJ Polo- I Aint Trickin' 3.The Juggaknots- Loosifa Starvin Art Clique- Keep Pushin On
Artist/Group: Tim Dog Album: Do or Die Released: 1993 Label: Ruffhouse/Columbia -------------------------------------------------- "I Don't Give a Fuck" is a dissing towards Dj Quik -------------------------------------------------- Follow Us: https://www.hhbars.com https://www.facebook.com/realhhbars https://www.instagram.com/realhhbars https://www.tiktok.com/@realhhbars #timdog #raplyrics #hiphoplyrics #lyrics
Do or Die may refer to:
Yeah you know, just vibe with me, just understand my life
And ya don't understand me still
I never enjoyed success, but my family did..
And Ama write with that
I eat good, smoke good, you see I push the latest whips with the hottest bitch
Take trips to the coast of Bermudas
But dog I'm from Flush Ave. where I pop toast for Aruba
And I am Proud of myself, cause me true Dog, never acted never lie to myself
I been in hollywood and back, guess what I'm Still M
Say Number from the blue tops days, I'm still him
You dudes think I'm touring like I'm part of you and out
But is just about the performance, get the money we out
Trying chill, trying to take the wife to eat
But most girl, disrescpectful when they try to speak, as if
They don't understand, Let me live, Ma
I'm with my fam, let me live, and I
Try to be nice about being disrespectful
One gets respects, when show one respect too
But you don't understand me still
I never enjoyed success, but my family will
And Ama write with that (Ama write with that, Ama write with that)
But you don't understand me still
I never enjoyed success, but my family will
And Ama write with that (Ama write with that, Ama write with that)
Yo..
I take it back home every chance I get
Because I've been through every ghetto, but home I can't forget
Wish I could take em all, on this ride with me
But it wont be real, and if you asked it aint be reality
I only fucked with a few, and If you real you know
Soon you go, but if not, you don't yeah.
We still family right, that's what you leave me to believe
But ya don't understand my life
I took Dre down to South Beach, just to show him what A few ones to do
When you amongst your crew, we living
I never picture I could ever loose him
But I found myself with the thoughts that I'ma loose him
I put the stash up, I'm just trying to save his life
Just moved moms, had to moved her twice... down to Miami
I thank God everyday of my life, that I could provide for my family
Yo..
My brother survive, now everybody's doing fine
I kept my moms away, to let her enjoy life
I wish I could do the same, but I cant theirs work to do
Rent due, there's more work to do
I copped bikes let my niggaz ride them
I copped coupes, let my niggaz drive them
I'm proud to see my niggaz wilding, cause I remember them days
They still vivid of me, huggin the block, young soul committed
When I wrote rhymes dayly
To get my flow up pray one day They whole world could hear me
I love it when the crowd recited every word of it
When they bounce, Let me know that they all a part of it
That two things make me proud of my life
I thought I had it all, but the best give was life
The third ?? I'ma brand new father
Of a Healthy baby boy and its making me work harder
ya'll don't know, ya'll don't know
And I'ma write with that
All this cold nights risking my life