- published: 08 Jan 2021
- views: 1657304
'+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; })); }); -->
LaRon Louis James (born February 18, 1982), better known by his stage name Juelz Santana, is an American rapper and actor. He is from the Harlem neighborhood in New York City, and is member of East Coast hip hop group The Diplomats. He appeared on Cam'ron's 2002 singles, "Oh Boy" and "Hey Ma". In 2003, his debut album From Me to U was released by Roc-A-Fella Records; his next album What the Game's Been Missing! contained the top-ten single "There It Go (The Whistle Song)". He is currently working on his long awaited third studio album Born to Lose, Built to Win set to be released at an unannounced date.
LaRon James was born in New York City and raised in the Manhattan neighborhood of Harlem. He began rapping at the age of five and at age twelve started duo Draft Pick, which was signed to Priority Records. In 2000, at the age of 18, he made a guest performance on a track on Cam'ron's album S.D.E. and eventually joined The Diplomats.
The Diplomats (popularly known as Dipset), are an American hip hop group founded in 1997 by Cam'ron and Jim Jones, in Harlem, New York City. The group was originally composed of members Cam'ron, Jim Jones and Freekey Zekey, all of whom grew up together in Harlem. In 1999, fellow Harlem-based rapper Juelz Santana was added to the group.
In the year 2001, following Cam'ron's signing, the group secured a recording contract with Def Jam and Brooklyn-bred rapper Jay-Z's Roc-A-Fella Records. They subsequently began recording their debut album, Diplomatic Immunity, and released it under the aforementioned labels in March 2003. Following tensions and controversy between Cam'ron and Jay-Z, the group severed ties with the labels and signed to indie record label Koch Records. The group released their second album Diplomatic Immunity 2, in November 2004 under Koch. After a hiatus because of artistic differences, in 2010 the original members began recording music together again and announced a reunion album. In February 2011, it was announced they had signed with Interscope Records. However in May 2013, Freekey Zekey revealed they were no longer signed to Interscope. Freekey Zekey stated, "I don't know. [Juelz Santana] had...I guess...had personal problems that was negating him from hittin' the studio hard. I don't know what they are or what they was, but his mind was with it. 'Cause every time we talked to him or spoke to him, he [was excited]. But whatever was lurkin' in his personal life or whatever the case may be, would basically stop him from getting into that studio."
The Diplomats is a lost 1929 talking film produced and distributed by Fox Film Corporation. It was directed by Norman Taurog and starred the comedy team of Bobby Clark and Paul McCullough.
Listen to the album "El Capo (Deluxe)". Out now! Stream: https://music.empi.re/elcapo_deluxe.oyd #JimJones #MarcScibilia #JuelzSantana Official music video by Jim Jones ft. Marc Scibilia & Juelz Santana performing "Election" © 2021 Vamp Life / Heatmakerz / EMPIRE http://vevo.ly/HF8dMM
REMASTERED IN HD! Official Music Video for Dipset Anthem performed by The Diplomats ft. Cam'Ron and Juelz Santana. #TheDiplomats #DipsetAnthem #Remastered
Download/Stream: https://MassAppeal.lnk.to/TimeTickingID Juelz Santana and Dave East drop off the latest New York anthem "Time Ticking" featuring Bobby Shmurda and Rowdy Rebel. Subscribe to Mass Appeal here: http://goo.gl/LqG3wZ --------------Mass Appeal-------------- Website: http://massappeal.com Twitter: http://twitter.com/massappeal Instagram: http://instagram.com/massappeal Facebook: http://facebook.com/massappeal What started as a humble graffiti ‘zine in 1996 would soon grow to be one of the most trusted outlets for youth-spawned urban culture. Today, Mass Appeal is a media collective led by authentic voices and inspired minds. We are a platform for radical creatives who are transforming culture.
Watch the official music video of "Santana Bandana" by Juelz Santana, directed by PropaTV. SUBSCRIBE to the Official WorldStarHipHop Channel for more original WorldStar material, music video premieres, and more: http://goo.gl/jl4las More WorldstarHipHop: http://worldstarhiphop.com https://twitter.com/worldstar (Follow) https://fb.com/worldstarhiphop (Like) http://instagram.com/worldstar (Photos) http://shop.worldstarhiphop.com (Shop)
REMASTERED IN HD! Official Music Video for Back To The Crib performed by Juelz Santana ft. Chris Brown. #JuelzSantana #ChrisBrown #BackToTheCrib #Remastered
Watch the official music video for "Up In The Studio Gettin Blown Freestyle" by Juelz Santana. Directed by PropaTV. Intro commentary by Jordan Tower. SUBSCRIBE to the Official WorldStarHipHop Channel for more original WorldStar material, music video premieres, and more: http://goo.gl/jl4las More WorldstarHipHop: http://worldstarhiphop.com https://twitter.com/worldstar (Follow) https://fb.com/worldstarhiphop (Like) http://instagram.com/worldstar (Photos) http://shop.worldstarhiphop.com (Shop)
REMASTERED IN HD! Music video by Cam'Ron performing Oh Boy. (C) 2002 Roc-A-Fella Records, LLC Follow Cam'Ron: Instagram: www.instagram.com/mr_camron Facebook: www.facebook.com/OfficialCamron Twitter: www.twitter.com/mr_camron Website: www.shop.purplehaze2.com #CamRon #OhBoy #Remastered
REMASTERED IN HD! Official Music Video for Clockwork performed by Juelz Santana. #JuelzSantana #Clockwork #Remastered
Watch the music video of "Time Ticking" by Juelz Santana Feat. Dave East, Bobby Shmurda & Rowdy Rebel. SUBSCRIBE to the Official WorldStarHipHop Channel for more original WorldStar material, music video premieres, and more: http://goo.gl/jl4las More WorldstarHipHop: http://worldstarhiphop.com https://twitter.com/worldstar (Follow) https://fb.com/worldstarhiphop (Like) http://instagram.com/worldstar (Photos) http://shop.worldstarhiphop.com (Shop)
A British diplomat finds himself caught up in a web of espionage and deceit as he tries to prevent terrorists from trading a nuclear bomb. When Ian's connections with the Russian mafia are revealed, the deal is threatened, forcing the terrorists to stop at nothing. A high-stake action movie starring Dougray Scott (Hitman) and Claire Forlani (Meet Joe Black). Tense, gripping and mesmerising - a must watch. The Diplomat was originally released as a two-part miniseries but we have bought it together here so you can watch it in one thrilling session! Watch more Full Thriller Movies completely free and in English by clicking on the playlist here - https://www.youtube.com/playlist?list=PLFUC1JQH6zr_GLlP9flsTsq0_PfnrJGMd Watch more Full Action Movies completely free and in English by clicking ...
REMASTERED IN HD! Official Music Video for Dipset Anthem performed by The Diplomats ft. Cam'Ron and Juelz Santana. #TheDiplomats #DipsetAnthem #Remastered
Off of the 2004 "Diplomatic Immunity 2" project. Available now: https://itunes.apple.com/us/album/diplomatic-immunity-2/30092034 The Diplomats - Crunk Muzik (Classic Official HD Music Video) Dipset: Cam'Ron, Jim Jones, Juelz Santana 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/ #Dipset #TheDiplomats #CrunkMuzik
The Diplomats: Juelz Santana - S.A.N.T.A.N.A. (Starring Cam'Ron) (Official HD Music Video) "S.A.N.T.A.N.A." is a banger from Juelz Santana featuring Ja’quaye off of the 2004 "Diplomatic Immunity 2" by The Diplomats. Produced by Treblemakers The video stars Dipset boss, Killa Cam'Ron Cop "Diplomatic Immunity 2" from wherever music is streamed and sold! Spotify: https://open.spotify.com/album/0NWdaN356TO10pTgIAHD2i iTunes/Apple Music: https://music.apple.com/us/album/diplomatic-immunity-2/30092034 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/ #JuelzSantana #CamRon #TheDiplomats #DiplomaticI...
Provided to YouTube by Universal Music Group I'm Ready · The Diplomats Diplomatic Immunity ℗ 2003 UMG Recordings, Inc. Released on: 2003-03-25 Producer: Heatmakerz Studio Personnel, Recording Engineer: Gimel "Young Guru" Keaton Studio Personnel, Mixer: Eric "IBO" Butler Composer Lyricist: Cameron Giles Composer Lyricist: Jimmy Jones Composer Lyricist: LaRon James Composer Lyricist: Gregg Green Composer Lyricist: Seon Thomas Composer Lyricist: Barbara Mason Auto-generated by YouTube.
Stream the new single, "Once Upon A Time". Out Now! iTunes: https://itunes.apple.com/us/album/once-upon-a-time-single/1313092820?uo=4&at=1001l3Iq&ct=888915490365&app=itunes Spotify: https://open.spotify.com/album/57MK5b1TlijJzqBcz0ex6D Google Play: https://play.google.com/store/music/album?id=Bsjv4uxvvxpy3yidtbrw7aa26jq&tid=song-Tk4mfjdznwh5fsmcfnyagjtzznm&PAffiliateID=1101l3z7&PCamRefID=888915490365 Directed by Kid Art & Jim Jones Official Music Video by The Diplomats - Once Upon A Time. © 2017 Diplomats
SUBSCRIBE IF YOU'RE NEW!! #Dipset #camron Second Channel- https://www.youtube.com/channel/UC3s9G8NiRDo263roD1VSEAg Business Inquiries- [email protected] Follow my Patreon- https://www.patreon.com/user?u=44764951 PAYPAL https://www.paypal.me/kingahmadtv1 Cashapp- $KingAhmadTV FOLLOW ME ON INSTAGRAM https://www.instagram.com/hotboy.ahmad/ FOLLOW ME ON TWITCH https://www.twitch.tv/kingahmadtv FOLLOW ME ON TWITTER https://mobile.twitter.com/KingAhmadTv PSN HotboyAhmad *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, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or p...
Official Video by The Diplomats - On God (Official Video) © 2018 Set Life, LLC / EMPIRE Stream "On God" here: https://empire.lnk.to/Ongod New Album #DiplomaticTies out 11/22
Provided to YouTube by Universal Music Group Who I Am · The Diplomats Diplomatic Immunity ℗ 2003 UMG Recordings, Inc. Released on: 2003-03-25 Producer: Heatmakerz Studio Personnel, Recording Engineer: Shane "Bermuda" Woodley Studio Personnel, Mixer: Carlisle Young Composer Lyricist: Cameron Giles Composer Lyricist: LaRon James Composer Lyricist: Gregg Green Composer Lyricist: Seon Thomas Composer Lyricist: Phil Hurtt Composer Lyricist: Walter "Bunny" Sigler Auto-generated by YouTube.
LaRon Louis James (born February 18, 1982), better known by his stage name Juelz Santana, is an American rapper and actor. He is from the Harlem neighborhood in New York City, and is member of East Coast hip hop group The Diplomats. He appeared on Cam'ron's 2002 singles, "Oh Boy" and "Hey Ma". In 2003, his debut album From Me to U was released by Roc-A-Fella Records; his next album What the Game's Been Missing! contained the top-ten single "There It Go (The Whistle Song)". He is currently working on his long awaited third studio album Born to Lose, Built to Win set to be released at an unannounced date.
LaRon James was born in New York City and raised in the Manhattan neighborhood of Harlem. He began rapping at the age of five and at age twelve started duo Draft Pick, which was signed to Priority Records. In 2000, at the age of 18, he made a guest performance on a track on Cam'ron's album S.D.E. and eventually joined The Diplomats.
[Juelz Santana]
People say my theories is backwards
I tell them, sincerly, it's clearly, you hearing me backwrds
I tell 'em I'm great, but still I need practice
I tell them to wait, go and comeback quick, they don't understand me
It's not logic, I'm not logic, I got problems
I worship the late prophet, the great Muhammad Ali
For the words that he spoke, that stung like a bee
Soaked into me, you niggaz will see but
I'm still insane, I'm Rodman, dealing my brain
I'm grinding sharing my pain, fuck, where is the fame
Niggaz, they still rhyming, still in the game
They still dealing the cane, still cock shit in your brain, homie
I still smell the rotten people that lay
There in ground zero, forgotten, left in for days
Probably left there to stay, left in decay
Broken pieces of towers, left in their graves
I pray they be saved, until then, that's just a suggestion I made
Follow me homie, listen, I subjected my ways nigga
Weapons that spray, at your fucking face nigga
It's Santana the great, in the place niggaz, stay away nigga
Cause I'm headed straight to the top, niggaz
Diplomat Taliban slash ROC nigga
Oh yeah, I do this for my block niggaz
D train, Al Gator, pop niggaz
Young drugs, young twins, Shiest bug
Niggaz I love, my thugs
Now, come fuck with your boy
Jones, Killa, Freakay, come fuck with your boy, WHOA
It's Santana again nigga, no bandanas just him nigga
In the flesh, like
[Cam'Ron]
I seen it time, business and friendship
Friendships ended, business attended, clips get extended
Lawyers get called, accountants get faxed
That was my man, well I wish that he meant it
It's been a long time, hereing the mobsters
This ain't overnight, it's years in the process
Shed a tear in the process, now process is over
All my niggaz get prepared for the Oscars
Back to the block, sharing a lobster
Morris Malone, Sam Malone, preparing the vodka, holla
Hallejulah, no hum-du-allah, but respecting my Aki
He held me down, when it was getting real rocky
Hustling, isn't a hobby
I sit in the lobby, look at my ovie, have visions of Gotti
Visions of lotties, pictures of Blood, scenes of L
I wanna see my son, piss in that potty
Jimmy, I'm going to make sure your wrist is real rocky
See my plans are for long term like Mr. Miyagi
Wax on, wax off, put our wax on, take that wack off
Over some nights, I had fights over the white
The roads to the lows, I knows what it's like
Now, career over like Mike: anyone
Tyson, Jordan, Jackson, it's over
This shit right here touched my soul, man
My grandmother or something, 56 bless her soul
Apartment 56 that is, 101, West 140th
Rest In Peace Liddiah Giles, Blood Shed..