- 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
Do You may refer to:
"Do You" is a 2007 single by American singer-songwriter Ne-Yo. It is about Ne-Yo questioning his ex-girlfriend if she ever thinks about him anymore. It is the second single from his second album, Because of You. The single was officially released to radio the week of June 12, 2007. In an interview with BET, Ne-Yo said that "Do You" is the second part to his song "So Sick" from his debut album, In My Own Words.
"Do You" was released on July 30 in UK as a download only single, despite receiving more video play than follow-up single "Can We Chill" (which received a physical release), resulting in a lower chart position of number 100 there, his lowest charting single.
Ne-Yo premiered "Do You" on BET's Access Granted on May 23, 2007.
Two duet remixes of the song have been released, both versions featuring the female singer singing the second verse with different lyrics: one with fellow American R&B singer Mary J. Blige and the other with Japanese American pop singer Hikaru Utada. Utada's version was released digitally in Japan on November 21, 2007 as her 7th English single (her 27th single overall). The version with Utada was included on the Ne-Yo: The Collection Japanese compilation.
Carl Terrell Mitchell (born November 27, 1973), better known by his stage name Twista (formerly Tung Twista), is an American hip hop recording artist from Chicago, Illinois. He is perhaps best known for his chopper style of rapping and for once holding the title of fastest rapper in the world according to Guinness World Records in 1992, being able to pronounce 598 syllables in 55 seconds.
In 1997, after appearing on Do or Die's hit single "Po Pimp", produced by The Legendary Traxster, Twista signed with Big Beat and Atlantic Records, where he released his third album Adrenaline Rush and formed the group Speedknot Mobstaz, in 1998. His 2004 album Kamikaze reached the top of the US Billboard 200 album chart, after the success of the Billboard Hot 100 #1 single "Slow Jamz".
Carl Mitchell grew up in the K-Town area of the North Lawndale neighborhood on the West Side of Chicago, Illinois and began rapping when he was 12.
In 1992, Mitchell released his first album called Runnin' Off at da Mouth under the name Tung Twista.
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:
[Bow Wow]
uh-huh, uh-huh, UH.
106 & Park ain't been the same since I had it
So I'm back at it - freeze
Still a +juvenile+ at +400 Degrees+
Lil' girls still fallin' out, I'm still ballin'
Crawlin' out the hottest speeds on these ATL streets
From the Garden, to the box office, I shuts down both
And no matter where I go I'm still, O-H-I-Ohhhhhhh
E'rybody know this is MY turf!
Who had it crunk first, and had girls of all ages off one verse?
(YOU!) Ain't nobody else can name
Another seventeen year-old manye that do it this HARD
"Oh LORD", that's what them old niggaz say about me
Young niggaz play, can't go a day without me
If bling was a drug, I'd DIE from an overdose
Fresh Prince to Sugarloaf, Homey I'm the most you've seen
I got the same affects on both coasts
And e'rything hot on fo' wheels, homey I'm ghost
[Hook 1]
Do you - stop tryna be me, stop tryna be he
Stop tryna do what you see
Do you - 'Cause right here is my love homey
Go back to where you came from and get yo own homey
Do you - It's so-so sloppy and the fans know a copy
When they see one, I would neva wanna be one
Do you - As long as it sound right
E'rybody in town like it
Don't worry 'bout nobody else, else
Do you
Not just the rap game, the whole industry the same
E'rybody wanna look and sound like the next manye
But I'm definite there ain't another me
And I'm So-So-Definite, back wit J.D
Back to give these little imitators sumthin' to talk on
Breathe, Stretch, let it go, homey get yo walk on!
Black Beat, Teen People, can't forget Right On!
A lotta things changed since the young don's been gone
What chug on roll with? The future is me!
Only youngins that's movin' units is.ugh.ME
Young Ali, float like a butterfly
Get up out them stores quick, why wouldn't you wanna buy?
The carbon copy, not the copy
Imitators mimic, but them guys is sloppy, heh, heh
As for me, I'm the leader of the new school
I can just ad-just, so the rest of y'all just
[Hook 1]
Do you - stop tryna be me, stop tryna be he
Stop tryna do what you see
Do you - 'Cause right here is my love homey
Go back to where you came from and get yo own homey
Do you - It's so-so sloppy and the fans know a copy
When they see one, I would neva wanna be one
Do you - As long as it sound right
E'rybody in town like it
Don't worry 'bout nobody else, else
Do you
[Jermaine Durpi - talking]
See?!
It's rare to find people like us.
Everybody out there doin what I'm doin!
Or tryna do what I'm doin, you can't man!
At one point in ya life, man, you gotta get in yo own lane and stop swervin' in mine!
See what I do, I do my way!
What about you, huh?! HUH?! CAN YOU SAY THAT?!
[Hook 2]
Do you - stop tryna be me, stop tryna be he
Stop tryna do what you see
Do you - 'Cause right here is my love homey
Go back to where you came from and get yo own homey
Do you- [Choir singing]
Do you
Do you