- published: 04 Jul 2009
- views: 871313
'+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; })); }); -->
Philip Martin (born October 31, 1978 in Inglewood, California), better known as Bishop Lamont, is an American rapper from Carson, California. He was signed to Dr. Dre's Aftermath Entertainment record label, but left in 2010.
Martin started rapping at age thirteen. Dr. Dre met Martin while on set filming The Game's music video for "Dreams". After giving him praises on an L.A. radio station, Dr. Dre signed Martin in 2005. Martin was featured in The Source's Unsigned Hype section, but he was already signed to Aftermath by the time the issue hit stands.
According to Martin, Dr. Dre stated that along with Eminem, Martin is the only other rapper that made him uncomfortable, due to his protégé's controversial and political lyrics.Damizza said "When Bishop signed with Dre I said that guy makes me "eminem nervous" he said with a confused face "why" i said you'll see.. when Bishop did the Ni**er noize mixtape .. I showed Dre the artwork and said "see why he makes me nervous.." He ran with it after that.. "
Warren Griffin III (born November 10, 1970), better known by his stage name Warren G, is an American West Coast rapper and hip hop producer.
From June to September 2013, Warren G toured on the West Coast Fest tour.
On July 13, 2015, Warren G released the first single "My House" for his upcoming EP "Regulate.. G Funk Era, Pt. II" which also features Nate Dogg. The EP was released on August 6, 2015.
Warren G is the step-brother of rapper and producer Dr. Dre, who brought him into the rap scene. The Mayor of Long Beach, California dedicated the week of August 1 to 6, 2005 as the "Warren G Week," because he donated time to the community.
Lamont Warren (born January 4, 1973 in Indianapolis, Indiana) is a former professional American football player who played running back for eight seasons for the Indianapolis Colts, New England Patriots, and Detroit Lions.
We Need Each Other is the fourth album released by Christian rock band Sanctus Real. It was released in the United States on February 12, 2008 through Sparrow Records. It debuted at #153 on the Billboard 200. Three songs have been released as singles: "Whatever You're Doing (Something Heavenly)", "Turn On the Lights", and the title track "We Need Each Other".
We Need Each Other was recorded over a few months in 2007, beginning in the middle of the year. The album's name had not yet been decided in late August 2007, but in early November the working title was announced as Turn On the Lights. However, by December 2007 the title was solidified as We Need Each Other.
Christopher Stevens produced We Need Each Other as he had also done with band's previous release The Face of Love. Lead singer Matt Hammitt explained that the album's title represents its general theme. "There's a longing for something bigger than oneself, a band, a song or a crowd of concertgoers. We need to come together as the body of Christ, unifying to see God’s work done through us. There’s so much simple truth in the statement, 'we need each other.' We can accomplish so much more if we stand together as one."
"We Need Each Other" is a song by Christian rock band Sanctus Real, from their fourth album We Need Each Other. The song was released on November 13, 2007, and reached number 1 on R&R's Christian CHR chart in January 2008. It was the 8th most played song of 2008 on Christian CHR radio.
The song has a pop-based sound, and has been described as keeping an "energetic pace" for the album. According to lead vocalist Matt Hammit, "This is a song about communication. I wrote it when I made a personal commitment to communicate honestly (out of love) with the people I hold dear. Unresolved conflict wears on my soul ... I don't want to end up alone because I wasn't willing to take the time and energy to tell someone how I felt."
On November 13, 2007, "We Need Each Other" was released as the lead single from the band's album of the same name, We Need Each Other. It began to climb R&R's Christian CHR chart, and reached number 1 in January 2008.
Incredible track by Bishop Lamont & Xzibit produced by Dr Dre Follow PaperChaserDotCom @PaperChaserDotCom Instagram: https://www.instagram.com/paperchaserdotcom/ Twitter: https://twitter.com/PaperChaserBlog Facebook: https://www.facebook.com/Paperchaserdotcom/ Website: https://www.paperchaserdotcom.com/ #BishopLamant #Xzibit #DrDre
First single off bishop lamont first album The Reformation, produced by Dr.Dre
Bishop Lamont - http://www.bishoplamont.com
This is Bishop Lamont's first street single (Procuded by Focus) in relation to his upcoming 2008 album - "The Reformation".
Bishop Lamont - http://www.bishoplamont.com
Bishop taking shots at Snoop & The Game
The Confessional Album (Bishop Lamont & Various Artist) DOWNLOAD ALBUM 4 FREE: http://bishoplamont.com Subscribe NOW to BishopLamontTV for the latest uploads & releases Get more Bishop Lamont: Listen to Bishop - https://soundcloud.com/bishop-lamont Follow Bishop - https://instagram.com/bishoplamont1 Like Bishop - https://facebook.com/bishoplamont Follow Bishop - https://twitter.com/bishoplamont
Now in 2004 Bishop Lamont released his first mixtape called Who I got to kill to get a record deal. This mixtape caught the attention of Kanye west who wanted to sign him and the two of them made plans to meet at the Game’s video shoot for his single called dreams (2005). Bishop lamont attended the video shoot however Kanye wasn’t able to make it, but instead of meeting Kanye West, Bishop Lamont met the west coast legend and Aftermath entertainment owner Dr.Dre Instead of waiting for Dre to hear his music organically Bishop Lamont took matters into his own hands, he walked up to Dr.Dre and handed him a copy of his mixtape. Two weeks after their brief interaction Dr.Dre appeared in a radio interview and expressed interest of working with Bishop Lamont. He was signed to Aftermath later that...
WELCOME ————— On behalf of our Senior Pastor Bishop Lamont Brown and First Lady Shalon Brown we'd like to welcome you to worship with us today. We pray that you are blessed and encouraged by this live stream. OUR MISSION ————— Evangelizing To The Family While Building Disciples PARTICIPATE ————— We encourage you to plug into this experience. from wherever you are watching from. If you are blessed by anything that is said or done feel free to comment in the chat on the platform you are using. Also feel free to share and invite others to join in streaming so that others others can be blessed. Thank you for joining us! SALVATION & MEMBERSHIP ————— If you'd like to know Jesus Christ as your Lord and Savior you can contact us by giving us a call at the church at (732) 988-1816. Leave us a...
Bishop Lamont - http://www.bishoplamont.com Get more Bishop Lamont: Listen to Bishop - https://soundcloud.com/bishop-lamont Follow Bishop - https://instagram.com/bishoplamont1 Like Bishop - https://facebook.com/bishoplamont Follow Bishop - https://twitter.com/bishoplamont MORE AT BISHOPLAMONT.COM Bishop Lamont - Grow Up (Lyrics) [Verse 1:] I use to think fucking up was cool Loved ditchin' class, till I didn't pass high school My dad always said it's easier to keep up Then it is to catch up But all I did was mess up Roll around the streets Get drunk and shoplift Freestyle meanwhile I continue to bullshit A teenage life, when you think you know everything About everything, and don't know a damn thing Hit the Shaw, liquor, bank, then the gas station Get to duckin', when they buckin', gan...
REMASTERED IN HD! Official Music Video for "Regulate" performed by Warren G feat. Nate Dogg, from the album 'Regulate...G Funk Era.' The song was released in the spring of 1994, it reached No. 2 on the Billboard Hot 100 and No. 8 on the R&B/Hip-Hop chart. Listen to more Legendary 90's Hip-Hop: https://www.youtube.com/watch?v=1plPyJdXKIY&list=PLJygS-sIE3ybt9rMcDz8yErBp-JDE5Ykn Watch more videos remastered in HD! https://www.youtube.com/watch?v=vimZj8HW0Kg&list=PLJygS-sIE3yYX-u4qIJ6c7cFZM6zEghci Music video by Warren G performing Regulate. (C) 1994 The Island Def Jam Music Group #WarrenG #Regulate #Remastered
Music video by Warren G performing This D.J.. (C) 1994 The Island Def Jam Music Group #WarrenG #ThisDJ #Vevo
⤵️Download the free Dash Radio app for 24/7 commercial-free music! ⤵️ Mobile: https://dashradio.app/ Desktop: https://dashradio.com Skee.TV presents: Warren G in "Party We Will Thrown Now" featuring the late Nate Dogg and The Game. Directed by: Frederic Esnault WarrenG.com Skeetv.com @djskee @skeetv @regulator [Hook: Nate Dogg] As I travel this lonely gangster road Just me and my negroes We still got bomb hydro We just double independent And the night falls that's when young girls go home Big girls put on small clothes A party we will throw A party we will throw now [Verse 1: The Game] All I need is the chronic to keep me fit A bad bitch, a project apartment and 2 pits Red chucks, a red bic to keep my kush lit Thank god for what I get but never really needed shit I'm a hustler nigga, ...
bring you back in time when hip-hop was hip-hop! - PURPLIE
Music video by Warren G performing Do You See. (C) 1994 The Island Def Jam Music Group
Music video by Warren G performing Lookin' At You. (C) 2001 Universal Records
Warren G featuring Nate Dogg With Pictures and LYRICS Enjoy ... & R.I.P. Nate Dogg your music will be missed. Your music and other old school Rapper's music. Had lyrics that actually made sense.
American Bowl Camp - Lamont Warren
Lamont Warren (born January 4, 1973 in Indianapolis) is a former professional American football player who played running back for eight seasons for the Indianapolis Colts, New England Patriots, and Detroit Lions.
Former American football player Lamont Warren at the 5th American Bowl Camp http://www.americanbowl.org
4. American Bowl Camp 2013 - Trieste Lamont Warren video: fluido.it
Lamont Warren is a former professional football running back who played for 8 seasons from 1994 to 2002. In college, Warren played for the Colorado Buffaloes in Boulder Colorado. Professionally, Warren played for the Indianapolis Colts, the New England Patriots, and the Detroit Lions.
Prom Studio Session with Lamont Warren Photography
Lamont Warren American Bowl Camp 2012 Stadio Nereo Rocco - Trieste
visiting the location the house that is the site based off the major motion picture the conjuring. I also visit the graves of paranormal investigators the Warren's. Check out my second channel: https://youtube.com/FascinatingGraveyard Support the channel: https://www.paypal.me/tacobellcriminalChin https://cash.app/$lamontatlarge https://www.patreon.com/lamontatlarge Links to all of my social media⚡️ https://linktr.ee/LamontAtLarge FAIR USE NOTICE: Copyright Disclaimer under section 107 of the Copyright Act 1976, allowance is made for “fair use” for purposes such as criticism, comment, news reporting, teaching, scholarship, education and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Not withstanding the provisions of sections 106 and 106...
Former NFL RB, Lamont Warren, Discussed the Importance of Asking Questions. Find your camp at footballuniversity.org and sign up now!
1 Mike Sulcer Muir 47.54 2 Lamont Warren Dorsey 47.60 3 John Floyd Locke 47.83 4 Curtis Shearer Silver Creek 48.10 5 Merril Samuels California Deaf, Fremont 48.13 6 Jerrald McCladdie Centennial 48.17
Philip Martin (born October 31, 1978 in Inglewood, California), better known as Bishop Lamont, is an American rapper from Carson, California. He was signed to Dr. Dre's Aftermath Entertainment record label, but left in 2010.
Martin started rapping at age thirteen. Dr. Dre met Martin while on set filming The Game's music video for "Dreams". After giving him praises on an L.A. radio station, Dr. Dre signed Martin in 2005. Martin was featured in The Source's Unsigned Hype section, but he was already signed to Aftermath by the time the issue hit stands.
According to Martin, Dr. Dre stated that along with Eminem, Martin is the only other rapper that made him uncomfortable, due to his protégé's controversial and political lyrics.Damizza said "When Bishop signed with Dre I said that guy makes me "eminem nervous" he said with a confused face "why" i said you'll see.. when Bishop did the Ni**er noize mixtape .. I showed Dre the artwork and said "see why he makes me nervous.." He ran with it after that.. "
Warren G-
1, 2 buckle my shoe,
3, 4 we gotta hit the store,
5, 6 back in the mix,
7, 8 Warren G and Nate,
Nate Dogg-
Bang to the boogy say up jump the boogy
to the rhythm of the boogidy beat
I dont love no hoes they know so they don't be fuckin wit me
Warren G-
A long time ago I met Annie Mae
she was killing me softly like everyday
penetentiary steel, was stickin for real
blockbustin through the walls
now I'm makin housecalls
Nate Dogg-
I thought I'd met a lot of scandalous women, and then I met Annie Mae
kinda thin light skinned big butt (yes yall)
But she didn't have a place to stay
Warren G-
She was shackin at mine and shackin at his
blowin my socks, tellin his biz
Nate Dogg this and Nate Dogg that
213 skirt, and we stay intact
So I told the homey Nate don't be mislead
ain't no fun if the homey can't shake a leg
so I went to the house and knocked on the door
and guess who it was, Annie Mae you H-O
(Chorus)
I once knew a trick named Annie Mae (oooooh)
(I once met a bitch named Annie Mae)(Snoop Dogg)
I once knew a trick named Annie Mae (oooooh)
I once knew a trick named Annie Mae
Nate Dogg-
Remember yesterday I asked you baby have I seen you somewhere before
with just one look, the pussy was took
cuz I make music that you adore
Now I'm not sure and I might be trippin
but in 94 I heard a song
it ain't no fun unless the homies can come
so Warren G put a condom on
Warren G-
Now Nate you know me and I know you
I got rubbers, gin and socco(?) too
so lets do the do, on how we do,
never my boo, just a freak that I knew
Chorus
Warren G-
Annie Mae, Annie Mae, you ran out of time
Warren G and Nate Dogg blew your mind
cuz if you trickin wit him
you trickin wit me, you trickin wit the 2 1 muthafuckin 3
I came from rags to riches
trustin no snitches
thats how we do on 9 S I X bitches
buck em, fuck em, and put em in the trash
and jump in the 600 Benz and dash
Nate Dogg-
Hold up Warren before you go just a couple things I got to say
Are you goin home, I wanna be alone
You need to take this... hoe