- published: 19 Mar 2022
- views: 26947314
'+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
Picture This is an album by vibraphonist Gary Burton released on the ECM label in 1982.
The Allmusic review by Scott Yanow awarded the album 3 stars stating "Burton always had the ability to blend in with nearly anyone, and the alto/vibes frontline is attractive... Well-played, if not overly memorable music".
Picture This is a 2008 romantic comedy film released on July 13, 2008 on television by ABC Family, branded as an ABC Family Original Movie, and on July 22, 2008 on DVD. The film is produced by Metro-Goldwyn-Mayer and drew 5.3 million viewers, one of the top movie ratings of the night.
Mandy Gilbert (Ashley Tisdale) is an unpopular teenager at Nottingham High School. She lives with her overbearing father Tom (Kevin Pollak), and has only two friends, Alexa (Lauren Collins) and Cayenne (Shenae Grimes). Mandy is constantly bullied and embarrassed by the popular girls of school, particularly Lisa Cross (Cindy Busby). However, it so happens that she is in love with Lisa's boyfriend, the popular Drew Patterson (Robbie Amell). She is about to turn 18 and wants her life to change. She wants to be noticed by Drew.
When she discovers Drew is on the school swimming team, she decides to apply as well. At the pool, she loses her glasses and hits her head then falls in the swimming pool. It results in Mandy being knocked unconscious and falling into the water. When she awakens, she finds out Drew gave her CPR. Drew now gets to meet Mandy and they talk to each other. Lisa thinks Mandy is a threat and tries to humiliate her, by taking Drew to the pet shop where Mandy works. Because Mandy is a clerk there, Lisa hopes Drew will laugh at her. Things take a different way, as Drew doesn't care about Mandy being a clerk there. They converse yet again, and Drew invites her to go to the Commons the next day.
Picture This was a short-lived TV series on NBC Television hosted by Wendy Barrie. In this 10-minute show, which ran Wednesdays from 8:20pm to 8:30pm ET, guest cartoonists drew cartoons to illustrate jokes or stories submitted by the studio audience. The first show aired November 17, 1948 and the final show February 9, 1949.
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.
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:
[Featuring Mia X]
Niggas (Niggas) Bitches (Bitches)
Uhmm this is some player shit right here
Holler at my home girl on this one Mia
Moma Mia Have you seen her (seen her)
Yah real G's shit. Tell me
Moma Mia niggas wanna G her (Snoop Dogg)
Bitches wanna be her
Motherfuckers can't see her
Give it up for Moma Mia
[Mia X]
What chew you want to do nigga is fine with me
Name your game, scandalous sprees, or robberies
Moving keys for your needs, from state to state
I seen my braw take down your boy from around tha way
If you fake IM gunna let you know from the top
And leave that dick in your mouth, and put them infrared dots
On your whole crew, nigga betta ask fo show
Gunna let that ass know what's goin' down like Waco
This is business, and who the fuck you think is runnin' this
Mama, and who's the first to shoot that gun in this
Mama, drama, layin' No Limit and when its intended my hands all up in
it
Now, we can do this like intelligent folk
But fuck around, I be that second ward ignorant hoe
Hard headed, with the soft behind, niggas real hittin' it
So Snoop Dogg for the keepin' it real with a strength
[Snoop Dogg]
Now picture, Bonnie and Clyde, We side as we slide,
Side by side, to keep this pimpin' alive
Do a lick for me, set a trick for me, get us some chips
It's all about you and me Mia, fuck that bitch
You a fall girl, go get it all girl
You in my world, IM gunna make sure you ball girl
Do it for me, do it for you, now it's our world
(Our world, It's our world, now go on and get it)
Now everyone in my click know I don't love no hoes
I don't quit bitch rush a boy to get a new set of them MOMO's
Cus I attack 'Emm, crack 'Emm and smack 'Emm
All on the same note, until that bitch is broke
Charge it to the game, man it's a cold game
But somebody gotta do it, that's real for shes'a
It ain't easy, pimpin' to me is four girls on your team
Down to scheme, aim to beam, for that cream
Cross country track, greyhound buss ride
Down to get your muthafuckin' fetti on, you hear me though
There ain't no limit to what she does
On the really, on to Philly, lemme get a ride on cus
Ghetto love, and every thug need a little
All I want is the money, motherfuck the middle
No backbone is back on to get yah
Unless you got a down ass sister to twist her, cant twist yah
Bonnie and Clyde, We side as we slide,
Side by side, to keep this pimpin' alive
Do a lick for me, set a trick for me, get us some chips
It's all about you and me Mia, fuck that bitch