- published: 13 May 2019
- views: 765114
'+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; })); }); -->
Clifford Smith (born March 2, 1971), better known by his stage name Method Man, is an American rapper, record producer, and actor. He took his stage name from the 1979 film Method Man. He is perhaps best known as a member of the East Coast hip hop collective Wu-Tang Clan. He is also one half of the hip hop duo Method Man & Redman. In 1996, he won a Grammy Award for Best Rap Performance by a Duo or Group, for "I'll Be There for You/You're All I Need to Get By", with American R&B singer-songwriter Mary J. Blige.
Method Man has appeared in films such as Belly, How High, Garden State, The Wackness, Venom, Red Tails and The Cobbler. On television, he and frequent collaborator, fellow East Coast rapper Redman, co-starred on the short-lived Fox sitcom Method & Red. He also had a recurring role as Tug Daniels on HBO's Oz and Calvin "Cheese" Wagstaff on the HBO's The Wire.
In 2012, The Source placed him on their list of the Top 50 Lyricists of All Time.
Born on March 2, 1971, in Staten Island, New York, Smith divided his childhood between his father's Long Island residence and his mother's home in the Park Hill section of Staten Island (colloquially known as Killa Hill). He has two sisters, Terri and Missy.
Method Man, AKA The Fearless Young Boxer, AKA "Avenging Boxer" is a martial arts film directed by Jimmy Shaw starring Casanova Wong.
Wu Pa Feng (Casanova Wong) kills one of his former gang members (Lung Fei) in a duel. Before the duel Fei Lung gives his son Shao Lung (Peter Chen) a golden plate that the gang is looking for. Shao Lung joins his uncles' travelling kung fu show to improve his fighting skills and escape the gang of killers.
Rapper Method Man got the name from this film. Method Man was given the name Method Man by RZA because he smoked a lot of weed and Method is another term for weed. This is described in the book The Wu-Tang Manual.
Method Man may refer to:
Music:
Film:
"Method Man" is the B-side to the single "Protect Ya Neck" from critically acclaimed debut album by the Wu-Tang Clan titled Enter the Wu-Tang (36 Chambers). It was a solo track for the first successful solo star of the Wu-Tang Clan, Method Man. The song was chosen for The Source magazine 100 best rap singles. The refrain of the song (M-E-T-H-O-D) draws from the 1984 Hall & Oates hit "Method of Modern Love" from Big Bam Boom.
It is featured on The RZA Hits compilation. The remix is featured on Method Man's debut album, Tical.
Music video for M.E.T.H.O.D Man can be found in citation.
Within the songs lyrics, Method Man references many notable quotes from popular culture.
Goes ( pronunciation ) is a municipality and a city in the southwestern Netherlands on Zuid-Beveland, in the province of Zeeland. The town of Goes has approximately 27,000 residents.
Goes was founded in the 10th century on the edge of a creek: de Korte Gos (the Short Gos). The village grew fast, and in the early 12th century it had a market square and a church devoted to Mary Magdalene. In 1405 Goes received city rights from William, Duke of Bavaria, by his right as count of Holland, and in 1417 it was allowed to build town walls. The prosperity of the city was based upon the cloth industry and the production of salt. In the 16th century Goes declined. Its connection to the sea silted up and in 1554 a large fire destroyed part of the city.
In Autumn 1572, during the course of the Eighty Years' War, Goes, in the Spanish Netherlands, was besieged by Dutch forces with the support of English troops. The siege was relieved in October 1572 by Spanish Tercios, who waded across the Scheldt to attack the besieging forces. In 1577 the Spanish soldiers who occupied Goes were driven out by Prince Maurits of Nassau. The prince built a defence wall around Goes, which is still partly standing. From the 17th century Goes did not play an important role, except as an agricultural centre. In 1868 a railway was constructed through it, but this did not lead to industrialisation. Agriculture remains the most important economic activity.
Goes is a genus of longhorn beetles, containing the following species:
GOES 11, known as GOES-L before becoming operational, is an American weather satellite, which is part of the US National Oceanic and Atmospheric Administration's Geostationary Operational Environmental Satellite system. It was launched in 2000, and operated at the GOES-WEST position, providing coverage of the west coast of the United States, until December 6, 2011.
GOES-L was launched aboard an International Launch Services Atlas IIA rocket, flying from Space Launch Complex 36A at the Cape Canaveral Air Force Station. The launch occurred at 07:07 GMT on 3 May. The launch was originally scheduled for 15 March 1999, however it was delayed to allow the Eutelsat W3 satellite to be launched first. Following this, it was rescheduled for 15 May. On 30 April, the Centaur upper stage of a Titan IV(401)B failed during the launch of USA-143. Since a version of the Centaur was also used on the Atlas II, the launch of GOES-L was delayed a week to ensure that the same problem would not affect its launch. Less than five days after the Titan failure, a Delta III failed to launch Orion 3. The failure occurred during the second stage restart, and as the Delta III and Atlas II both used RL10 engines on their second stages, this resulted in a further delay.
On this episode of "Actually Me," Wu-Tang Clan's Method Man goes undercover on the Internet and responds to real comments from Twitter, Reddit, Quora, YouTube, and more. Who is the leader of the Wu-Tang clan? Who would win if the entire Wu-Tang Clan fought Hunger Games style? Check out WU-TANG CLAN: OF MICS & MEN on SHOWTIME, Friday, May 10 at 9 PM ET/PT Check out Method Man's profiles here: -Quora: https://www.quora.com/profile/Method-Man-21 -Twitter: https://twitter.com/actuallymethod1 -Reddit: https://www.reddit.com/user/actuallymethodman/ -YouTube: https://www.youtube.com/channel/UCPXoHKcxe_iDoMd0HKP3S0g?view_as=subscriber -IMDB: https://www.imdb.com/user/ur102376045/?ref_=nb_usr_prof_0 -Instagram: https://www.instagram.com/actuallymethodman/ Still haven’t subscribed to GQ o...
"If Time Is Money (Fly Navigation)" / "Hood Go Bang" are from 'Wu-Tang: The Saga Continues' out now via 36 Chambers ALC (www.36chambers.com) Listen to Wu-Tang: The Saga Continues - http://smarturl.it/thesagacontinues Produced by Mathematics Directed by Itchy House Executive Produced by Rza #WuTangTheSagaContinues http://vevo.ly/WUpiKH
Download/Stream - https://tommyboy.lnk.to/MethodManTheMethLab Deluxe Fan Bundles & Merch: https://methodman.bandcamp.com/ Vinyl: http://amzn.com/B010B79A66 Follow Our Official Spotify Playlist: https://tommyboy.lnk.to/PlaylistSpotify Listen to More Tommy Boy Classics: https://VA.lnk.to/TommyBoyClassics ************************************ Tommy Boy Music is a legendary Hip Hop & Electronic record label founded in New York City in 1981. The label is credited with launching the careers of notable legends Afrika Bambaataa, Coolio, Queen Latifah, House of Pain, De La Soul, and Naughty By Nature. ************************************ Follow Tommy Boy: https://tommyboy.lnk.to/subscribe https://tommyboy.lnk.to/website https://tommyboy.lnk.to/facebook https://tommyboy.lnk.to/twitter ht...
Official HD Video for ”Method Man” by Wu-Tang Clan Listen to Wu-Tang Clan: https://Wu-TangClan.lnk.to/listenYD Watch more videos by Wu-Tang Clan: https://Wu-TangClan.lnk.to/listenYD/youtube Subscribe to the official Wu-Tang Clan YouTube channel: https://Wu-TangClan.lnk.to/subscribe_YD Follow Wu-Tang Clan Facebook: https://Wu-TangClan.lnk.to/followFI Instagram: https://Wu-TangClan.lnk.to/followII Twitter: https://Wu-TangClan.lnk.to/followTI Website: https://Wu-TangClan.lnk.to/followWI Spotify: https://Wu-TangClan.lnk.to/followSI YouTube: ttps://Wu-TangClan.lnk.to/subscribe_YD Lyrics: M-E-T-H-O-D Man M-E-T-H-O-D Man M-E-T-H-O-D Man M-E-T-H-O-D Man #WuTangClan #MethodMan #OfficialVideo #HDRemastered
Music video by Method Man performing I'll Be There For You / You're All I Need To Get By. (C) 1995 The Island Def Jam Music Group
People Say is from Wu-Tang: The Saga Continues Out 10.13 via 36 Chambers ALC (www.36chambers.com) Listen to Wu-Tang: The Saga Continues - http://smarturl.it/thesagacontinues Produced by Mathematics Directed by Navegante Executive Produced by Rza #TheSagaContinues http://vevo.ly/WUpiKH
http://www.discogs.com/Jonell-Round-And-Round/release/3974202
Method Man Feat. Redman - Dis Iz 4 All My Smokers Blackout! 2 [2009]
Subscribe to Blazed Music to get more music daily! ....... Wu-Tang Clan • Soundcloud - https://soundcloud.com/wu-tang_clan • Twitter - https://twitter.com/WuTangClan • Facebook - https://www.facebook.com/wutangclan/ • Instagram - https://www.instagram.com/wutangbrand/ • Website - http://www.wutang-corp.com/ Phoniks • Soundcloud - https://soundcloud.com/phoniksbeats • Twitter - https://twitter.com/hookedonphonikz?lang=de • Facebook - https://www.facebook.com/phoniksbeats/ • Instagram - https://www.instagram.com/hookedonphoniks/ • Youtube - https://www.youtube.com/user/awonandphoniks • Website - http://phoniksbeats.com/ • Picture Credits http://nd06.jxs.cz/774/411/1c5e94d24c_102861205_o2.jpg ....... There is no copyright infringement intended for the song or picture. If you have an iss...
Music video by Method Man, Redman performing Y.O.U.. (C) 1999 The Island Def Jam Music Group
Official HD Video for ”Triumph” by Wu-Tang Clan featuring CappaDonna Listen to Wu-Tang Clan: https://Wu-TangClan.lnk.to/listenYD Watch more videos by Wu-Tang Clan: https://Wu-TangClan.lnk.to/listenYD/youtube Subscribe to the official Wu-Tang Clan YouTube channel: https://Wu-TangClan.lnk.to/subscribe_YD Follow Wu-Tang Clan Facebook: https://Wu-TangClan.lnk.to/followFI Instagram: https://Wu-TangClan.lnk.to/followII Twitter: https://Wu-TangClan.lnk.to/followTI Website: https://Wu-TangClan.lnk.to/followWI Spotify: https://Wu-TangClan.lnk.to/followSI YouTube: https://Wu-TangClan.lnk.to/subscribe_YD Lyrics: What? Y'all thought y'all wasn't gonna see me? I'm the Osiris of this shit Wu-Tang is here forever, motherfuckers This like, this '97 Aight my niggas ...
Clifford Smith (born March 2, 1971), better known by his stage name Method Man, is an American rapper, record producer, and actor. He took his stage name from the 1979 film Method Man. He is perhaps best known as a member of the East Coast hip hop collective Wu-Tang Clan. He is also one half of the hip hop duo Method Man & Redman. In 1996, he won a Grammy Award for Best Rap Performance by a Duo or Group, for "I'll Be There for You/You're All I Need to Get By", with American R&B singer-songwriter Mary J. Blige.
Method Man has appeared in films such as Belly, How High, Garden State, The Wackness, Venom, Red Tails and The Cobbler. On television, he and frequent collaborator, fellow East Coast rapper Redman, co-starred on the short-lived Fox sitcom Method & Red. He also had a recurring role as Tug Daniels on HBO's Oz and Calvin "Cheese" Wagstaff on the HBO's The Wire.
In 2012, The Source placed him on their list of the Top 50 Lyricists of All Time.
Born on March 2, 1971, in Staten Island, New York, Smith divided his childhood between his father's Long Island residence and his mother's home in the Park Hill section of Staten Island (colloquially known as Killa Hill). He has two sisters, Terri and Missy.
Expect the unexpected, motherfucker, let's go, come on
Yeah, M-E-F, hahahaha, special guest
(Fuck you, fuck you, fuck you, fuck)
Hahahaha.. yeah..
Yo, you don't wanna ride with Dirt, you still stuck in coach
You don't wanna fly in first, yo, I can spit
One verse, and leave in a new Benz-er
Take a trip down south and put some hoes to work, you hear me
Dirt McGirt, you niggaz gon' respect it
I'm drunk and crunk so don't come in my direction
I'm ready to thump, and get the whole crew arrested
Bail 'em out, and laugh about it in Texas, yo
And get with Rome, down in Caki-Lac
And hit the spot, in the hood where the happenings at
Where the shootin' and the fightings and the stabbings at
Where the Lincolns and the Chevys and the Cadi's at, shit
Them down south niggaz been loved Dirt
Take a shot to the head, if you been through the worse
Show respect to your niggaz, who been doin' it first
And be comin' with that shit, I'm just doin' the worse
Yo, you don't wanna ride with Dirt, you still stuck in coach
You don't wanna fly in first, yo, I can spit
(Yo, you don't wanna ride with Meth, we still sniffing coke
Even if you tried your best, yo, I can spit)
Yeah, damn, I'm just like Dirt in the booth
I'm the truth, I don't need to go to church in a suit
Each verse is the proof, I drink a 100 Proof
Cop searching the coup, I got some herb in my boot
When Wu is coming through, the outcome: critical
Fucking with this style, the outcome: get physical
Meth get lyrical, and y'all can get my genitals
Don't forget them aid essentials, vitamins & minerals
Heh, ya'meen, I'm taking one for the team
Like Martin Luther King, taking one for a dream
I'm dope, to many fiends, live by many means
If you don't stand for nothing, you'll fall for anything
That's real shit, let's get this money real quick
Dirt Dog, I'm feeling this, but I'd rather feel rich
I mean filthy rich, I'm corporate now
Big Meth, the label's Def, that's why I talk so loud, nigga
Fuck you, fuck you, fuck you, fuck you