- published: 07 Feb 2013
- views: 110195042
'+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.
Year 60 (LX) was a leap year starting on Tuesday (link will display the full calendar) of the Julian calendar. At the time, it was known as the Year of the Consulship of Caesar and Lentulus (or, less frequently, year 813 Ab urbe condita). The denomination 60 for this year has been used since the early medieval period, when the Anno Domini calendar era became the prevalent method in Europe for naming years.
The year 60 is the first identifiable year for which a date is cited complete with day of the week, i.e. 6 February 60, identified as a "Sunday" (as viii idus Februarius dies solis "eighth day before the ides of February, day of the Sun") in a Pompeiian graffito. According to the currently-used Julian calendar, 6 February 60 was a Wednesday (dies Mercurii, "day of Mercury"). This is explained by the existence of two conventions of naming days of the weeks based on the planetary hours system, 6 February was a "Sunday" based on the sunset naming convention, and a "Wednesday" based on the sunrise naming convention.
Year zero does not exist in the Anno Domini (or Common Era) system usually used to number years in the Gregorian calendar and in its predecessor, the Julian calendar. In this system, the year 1 BC is followed by AD 1. However, there is a year zero in astronomical year numbering (where it coincides with the Julian year 1 BC) and in ISO 8601:2004 (where it coincides with the Gregorian year 1 BC) as well as in all Buddhist and Hindu calendars.
The Anno Domini era was introduced in 525 by Scythian monk Dionysius Exiguus (c. 470–c. 544), who used it to identify the years on his Easter table. He introduced the new era to avoid using the Diocletian era, based on the accession of Roman Emperor Diocletian, as he did not wish to continue the memory of a persecutor of Christians. In the preface to his Easter table, Dionysius stated that the "present year" was "the consulship of Probus Junior [Flavius Anicius Probus Iunior]" which was also 525 years "since the incarnation of our Lord Jesus Christ". How he arrived at that number is unknown.
3C-E is a psychedelic of the amphetamine class. It was first synthesized by Alexander Shulgin. In his book PiHKAL (Phenethylamines i Have Known And Loved), Shulgin lists the dosage range as 30 to 60mg, consumed orally. The duration of action was stated to be 8–12 hours.
This compound is the three-carbon chain analogue of escaline.
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
Remix and Video Created by DJ Skandalous aka Kevin Rivera If you like Old-School Hip-Hop, Follow My 90's Hip-Hop Spotify Playlist! My Official Spotify Playlist 1 ▶ https://sptfy.com/OldSchoolHipHop My Official Spotify Playlist 2 ▶ https://sptfy.com/SkandalousHipHop CLICK below to checkout my Merch Store and Social Media profiles! 👉 https://solo.to/DJSkandalous If you wish to help support my YouTube channel or my 2Pac website, any donation would be appreciated! https://www.paypal.me/2PacRemix Original Song by J. Clyde ►https://www.youtube.com/user/jclyde757 ►https://www.instagram.com/jclyde757/ #2Pac #BuiltForThis #DJSkandalous #IceCube #NWA #2PacRemix #Remix #Oldschool #OldschoolHipHop #OldschoolRap #hiphopdx #worldstarhiphop #2pac2020 #tupac2020
Method Man, Jadakiss, Nas - Who Do We Trust? ft. Jadakiss, Immortal Technique & R.A. The Rugged Man (2022) (Remix) Method Man's New Album "Meth Lab Season 3 : The Rehab": https://onerpm.link/methlab3-rehab Inspiration from R.A. the Rugged Man's Song "Who Do We Trust?" https://naturesoundsmusic.com/amhad/ Inspiration from Berner's Album "Gotti" Apple Music: https://music.apple.com/us/album/gotti/1594489683 Spotify: https://open.spotify.com/album/37y72XuNwuPyzfB9kk2uIc Follow South Central Channel Instagram: https://www.instagram.com/westcoast.90s/ Facebook: https://www.facebook.com/90sHipHopEvolution/ Spotify: https://open.spotify.com/playlist/5BoMzGlwqsF88ndf0SpTgg Prod. by Dextah Beats YouTube: https://www.youtube.com/channel/UC8mO_IAsnQCfyKP7L0yXd5Q Website: https://dextah.beatstar...
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
Music video by Method Man, Redman performing Da Rockwilder. (C) 1999 The Island Def Jam Music Group
Music video by Method Man performing Bring The Pain. (C) 1994 The Island Def Jam Music Group
50 Cent, Method Man / Wu-Tang Clan & Redman - "Heavy" ft. Inspectah Deck (2024) (Remix) | Prod. Dextah Redman's New Album "Muddy Waters 2" Coming Soon In 2024! Check out his freestyles! Follow South Central Channel Instagram: https://www.instagram.com/westcoast.90s/ Facebook: https://www.facebook.com/OldschoolEra/ Spotify: https://open.spotify.com/playlist/5BoMzGlwqsF88ndf0SpTgg Prod. Dextah https://www.youtube.com/@dextah ______________________________ Follow Method Man From Wu-Tang Clan Instagram: https://www.instagram.com/methodmanofficial Facebook: https://www.facebook.com/methodman Follow Redman Instagram: https://www.instagram.com/redman Facebook: https://www.facebook.com/redman Follow 50 Cent from G-Unit Instagram: https://www.instagram.com/50cent Facebook: https://www.facebook...
#ShaghilAli #MusicVideo #NewReleaseAlert #newreleases #methodman #redman #snoopdogg #gamechangers #wizkhalifa #snoopdogg #mack10 #oldschool #eastcoast #Westcoast #saturday #Weekendmusic Snoop Dogg, Method Man, Redman, Wiz Khalifa - Game Changers ft. Mack 10 2024 | Prod. Shaghil Ali (Music Video) Credits Rapper: Method Man, Redman, Snoop Dogg, Wiz Khalifa, Mac 10 Music: Shaghil Ali Music & Mix Master - Shaghil Ali @Studio Master'sChoice There is NO AI usage in the song Disclaimer: This is ofcourse Fan made by Shaghil Ali and is not affiliated with the Official Artist page. Hip Hop/rap music Remix All rights reserved to the true owners of the song and video. Follow Shaghil Ali: Instagram: https://instagram.com/shaghil_ali/ Facebook: https://www.facebook.com/shaghil.ali/ Tw...
Music video by Method Man performing Release Yo' Delf. (C) 1995 Def Jam Records Inc.
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