- published: 14 Apr 2017
- views: 1769065428
'+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; })); }); -->
Karim Kharbouch (born November 9, 1984), better known by his stage name French Montana, is an American rapper, entrepreneur, former videographer, and hip hop socialite. Born in Morocco, his family emigrated to the US when he was 13 years old. He is the founder of Coke Boys Music, and its predecessor Cocaine City Records. In 2012, he signed a joint-venture recording deal with Bad Boy Records and Maybach Music Group. Montana has been known for his frequent collaborations with producer Harry Fraud, and with rapper Max B before his conviction. More recently he is known for his collaborations with Rick Ross, Diddy and his MMG and Bad Boy labelmates along with his Coke Boys which include the late Chinx, Lil Durk, and his brother Zack.
French made his mixtape debut in 2007, and released his debut studio album Excuse My French on May 21, 2013. In 2003, he survived a gunshot to the head. Allegedly blackballed by radio and media in his earlier career stemming from his stint with Max B. In 2010, he had his breakthrough with "Choppa Choppa Down" which became a regional hit in clubs and radio throughout the South. By 2012, his single "Shot Caller" would be one of the most added/played tracks on urban contemporary radio in the country. His most successful commercial single "Pop That" remains a popular hit on club and summertime radio playlists to date. In 2014, French Montana was dating Khloé Kardashian, and the couple would be the frequent subject of tabloids and celebrity gossip. The couple formally broke up in mid-2015; French has also been linked to rapper Trina and actress Sanaa Lathan. Best known for his mixtapes, club hits, and feature collaborations, he has been called titles from "King of Mixtapes" to "King of Features".
Talk About It may refer to:
"Talk about It" Paradise Fears 2015 from Life in the Real Time
Compton (also known as Compton: A Soundtrack by Dr. Dre) is the third studio album by American hip hop recording artist Dr. Dre. It was released on August 7, 2015 on Apple Music and the iTunes Store, with the physical editions released on August 21, 2015. It is the follow-up to his second album 2001 (1999) and the cancellation of Detox.
Production for the album took place with Detox, but the album itself was devised when production of the movie Straight Outta Compton gave Dre the idea for a soundtrack, with album specific production taking place in 2015 at several recording studios and was handled by Focus..., Dem Jointz, DJ Dahi, Cardiak, DJ Premier and Dr. Dre himself, among others. Compton features guest appearances from Kendrick Lamar, Snoop Dogg, Eminem, Cold 187um, King Mez, The Game, Ice Cube, Xzibit, Anderson .Paak and others.
The album debuted at number 2 on the US Billboard 200, selling 295,000 equivalent album units in its first week. Upon its release, Compton received general acclaim from music critics.
Talk About It is the fourth album by Christian singer/songwriter Nicole C. Mullen. The album includes the single and music video "Call On Jesus." Mullen won a 2001 Dove award for Female Vocalist of the Year.
Montana i/mɒnˈtænə/ is a state in the Western region of the United States. The state's name is derived from the Spanish word montaña (mountain). Montana has several nicknames, although none official, including "Big Sky Country" and "The Treasure State", and slogans that include "Land of the Shining Mountains" and more recently "The Last Best Place". Montana is ranked 4th in size, but 44th in population and 48th in population density of the 50 United States. The western third of Montana contains numerous mountain ranges. Smaller island ranges are found throughout the state. In total, 77 named ranges are part of the Rocky Mountains.
The economy is primarily based on agriculture, including ranching and cereal grain farming. Other significant economic activities include oil, gas, coal and hard rock mining, lumber, and the fastest-growing sector, tourism. The health care, service, and government sectors also are significant to the state's economy. Millions of tourists annually visit Glacier National Park, the Little Bighorn Battlefield National Monument, and Yellowstone National Park.
Montana is an American crime film released in 1998, directed by Jennifer Leitzes, written by Erich Hoeber and Jon Hoeber, and produced by Sean Cooley, Zane W. Levitt, and Mark Yellen.
Claire (Kyra Sedgwick) is a professional hit woman who has been targeted by her own organization. Her boss (Robbie Coltrane) gives her a low level task of retrieving his runaway girlfriend Kitty (Robin Tunney). Once Claire tracks down Kitty, she is unable to stop her from killing the boss' incompetent son (Ethan Embry).
Kyra Sedgwick ... Claire Kelsky
Stanley Tucci ... Nicholas 'Nick' Roth
Robin Tunney ... Kitty
Robbie Coltrane ... The Boss
John Ritter ... Dr. Wexler
Ethan Embry ... Jimmy
Philip Seymour Hoffman ... Duncan
Mark Boone Junior ... Stykes
Tovah Feldshuh ... Greta
Montana was a paddle steamer that was wrecked off the north coast of Bermuda on 30 December 1863.
The vessel was intended for operation as a blockade runner supplying Confederate Forces in the American Civil War. It was on its maiden voyage from London, headed ultimately for Wilmington in North Carolina. She was carrying cargo from Britain to help the Confederates. Britain could not be seen to be directly aiding the Confederates, hence various levels of secrecy were used for this and similar vessels. For example, at the time she was using an assumed name of Nola, a ruse to help avoid the attention of Union forces. She had used at least two other names at various times, namely the Gloria, and Paramount.
Captain Pittman was in command of the vessel, and saw her safely across a rough Atlantic Ocean as far as Bermuda, where Pittman planned to stop to take on coal before departing for Wilmington. The ship hit the reef of Bermuda's north shore, in an area known as the Western Blue Cut on 30 December 1863.
Official Video for “Unforgettable” by French Montana feat. Swae Lee Listen to French Montana: https://FrenchMontana.lnk.to/listenYD Subscribe to the official French Montana YouTube Channel: https://FrenchMontana.lnk.to/subscribeYD Watch more of French Montana music videos: https://FrenchMontana.lnk.to/listenYD/youtube Follow French Montana Facebook: https://FrenchMontana.lnk.to/followFI Instagram: https://FrenchMontana.lnk.to/followII Twitter: https://FrenchMontana.lnk.to/followTI Website: https://FrenchMontana.lnk.to/followWI Spotify: https://FrenchMontana.lnk.to/followSI YouTube: https://FrenchMontana.lnk.to/subscribeYD Lyrics: It's not good enough for me Since I've been with you, ooh It's not gonna work for you Nobody can equal me (I know) I'm gonna sip on this drink, when I'm fucke...
French Montana & Skilla Baby - Skyami [Vizualizer] 🔔 Subscribe to French Montana's channel: http://bit.ly/3MKywvx Follow French Montana: Instagram: https://www.instagram.com/frenchmontana/ Facebook:https://www.facebook.com/FrenchMontanaOfficial/ Twitter: https://twitter.com/FrencHMonTanA Snapchat: https://www.snapchat.com/add/frenchmontana?locale=en-US TikTok: https://www.tiktok.com/@frenchmontana?lang=en All Platforms: https://frenchmontana.komi.io #frenchmontana #skillababy #hiphop
Listen to "Okay (ft. Lil Baby)" out now: https://cokeboys.lnk.to/Okay Follow French Montana: Website: https://www.frenchmontanamusic.com Instagram: https://www.instagram.com/frenchmontana Facebook: https://www.facebook.com/FrenchMontanaOfficial Twitter: https://twitter.com/FrencHMonTanA Snapchat: https://www.snapchat.com/add/frenchmontana TikTok: https://www.tiktok.com/@frenchmontana All Platforms: https://frenchmontana.komi.io Director: Kid Art Production Co: Chariot Pictures Executive Producers: Cartier Brown and Andrew Goor Lyrics: She wanna ride with the star Ended up dropping my top, ok My ex told me she needed space I guess we both going to Mars, ok I cannot forget the base I’m taking my mop on my dates, ok Just look at the look on they faces They wanna jump in my place, ok Told...
🎵 Follow the official 7clouds playlist on Spotify : http://spoti.fi/2SJsUcZ 🎧 French Montana - Unforgettable (Lyrics) ft. Swae Lee ⏬ Download / Stream: https://FrenchMontana.lnk.to/listenYD 🔔 Turn on notifications to stay updated with new uploads! ❤️ Follow our Spotify playlists: http://bit.ly/7cloudsSpotify 👉 French Montana https://www.facebook.com/FrenchMontanaOfficial https://www.instagram.com/frenchmontana/?hl=en https://twitter.com/FrencHMonTanA ☁️ 7clouds: https://open.spotify.com/user/7cloudsmusic https://soundcloud.com/7cloudsmusic https://audiomack.com/7cloudsmusic https://facebook.com/7cloudsofficial https://discord.com/invite/d5Arh8Y https://twitter.com/7cloudsmusic https://instagram.com/7clouds https://tiktok.com/@7clouds https://7clouds.org ......... 🎤 Lyrics: French Mont...
"Jungle Rules" available at iTunes http://smarturl.it/JungleRules Apple Music http://smarturl.it/JungleRules_AM Spotify http://smarturl.it/JungleRules_Sptfy French Montana online http://www.frenchmontanamusic.com/ https://twitter.com/FrencHMonTanA https://www.instagram.com/frenchmontana https://www.facebook.com/FrenchMontanaOfficial (C) 2017 Bad Boy Entertainment / Epic Records, a division of Sony Music Entertainment #FrenchMontana #Famous #Vevo
Music video by French Montana performing Shot Caller. (C) 2011 Bad Boy/Interscope Records #FrenchMontanta #ShotCaller #Vevo
http://smarturl.it/ExcuseMyFrench Music video by French Montana performing Ain't Worried About Nothin (Explicit). (C) 2013 Bad Boy/Interscope Records
Official music video for Dirty Bronx Intro Mac & Cheese 5 available now: https://cokeboys.lnk.to/MacAndCheese5 Follow French Montana: Website: https://www.frenchmontanamusic.com Instagram: https://www.instagram.com/frenchmontana Facebook: https://www.facebook.com/FrenchMontanaOfficial Twitter: https://twitter.com/FrencHMonTanA Snapchat: https://www.snapchat.com/add/frenchmontana TikTok: https://www.tiktok.com/@frenchmontana All Platforms: https://frenchmontana.komi.io #FrenchMontana #AmberRun #DirtyBronxIntro http://vevo.ly/U2d1IS
" CASINO LIFE " performed by French Montana Buy on iTunes(https://frenchmontana.komi.io) #Frenchmontana #casinolife #Mac&cheese5 Facebook-http://goo.gl/Uri82E | Twitter-http://goo.gl/ZBwrw3 Instagram-http://goo.gl/dBSc29 | www.frenchmontanamusic.com
"No Stylist" available at http://smarturl.it/NoStylist Directors: Glenn Michael & Christo Cinematographer: Kelly Jeffrey Producers: Ryan Hahn & Vince Tran Production Company: HPLA Post-Producer: Julien Nieva French Montana online: https://twitter.com/FrencHMonTanA https://www.instagram.com/frenchmontana https://www.facebook.com/FrenchMontanaOfficial http://www.frenchmontanamusic.com/ (C) 2018 Epic Records, a division of Sony Music Entertainment
REMASTERED IN HD! Official Music Video for Straight Outta Compton performed by N.W.A. Get N.W.A vinyl here: http://smarturl.it/NWAstore Listen to N.W.A on Spotify: http://smarturl.it/NWASpotify Find N.W.A titles on Apple Music: http://smarturl.it/AppleMusicNWA and Google Play: http://smarturl.it/NWAGooglePlay Get the ‘Straight Outta Compton’ CD here: http://smarturl.it/NWAOuttaComptonCD Like N.W.A on Facebook http://facebook.com/NWAmusic Like Eazy-E on Facebook http://facebook.com/EazyEMusic Find iconic hip hop albums reissued on vinyl here: http://respecttheclassics.com #NWA #StraightOuttaCompton #Remastered
N.W.A. - Straight Outta Compton [LP 2002] [Full Album] (FLAC) [4K] TrackList 01. Straight Outta Compton (Dr. Dre, Ice Cube, MC Ren & Eazy-E) 00:00 - 04:15 02. _ _ _ _ Tha Police (Dr. Dre, The D.O.C., Ice Cube, MC Ren & Eazy-E) 04:16 - 09:59 03. Gangsta Gangsta (Ice Cube & Eazy-E) 10:00 - 15:32 04. If It Ain't Ruff (MC Ren) 15:33 - 19:06 05. Parental Discretion Iz Advised (The D.O.C., Dr. Dre, MC Ren, Ice Cube & Eazy-E) 19:07 - 24:20 06. 8 Ball [Remix] (Eazy-E) 24:21 - 29:11 07. Something Like That (MC Ren & Dr. Dre) 29:12 - 32:43 08. Express Yourself (Dr. Dre) 32:44 - 37:07 09. Compton's N The House [Remix] (MC Ren & Dr. Dre) 37:07 - 42:24 10. I Ain't Tha 1 (Ice Cube) 42:25 - 47:17 11. Dopeman [Remix] (Ice Cube & Eazy-E) 47:18 - 52:36 12. Quiet On Tha Set (MC Ren) 52:37 - 56:32 13. Someth...
Provided to YouTube by Universal Music Group Medicine Man · Dr. Dre · Eminem · Candice Pillay · Anderson .Paak Compton ℗ 2015 Aftermath/Interscope Records Released on: 2015-08-21 Producer: Dem Jointz Producer: Focus... Composer Lyricist: André Romell Young Composer Lyricist: Marshall Mathers Composer Lyricist: Candice Pillay Composer Lyricist: J. Mohrle Composer Lyricist: B. Anderson Composer Lyricist: M. Ricks II Composer Lyricist: Dwayne Abernathy Composer Lyricist: B. Edwards Jr. Composer Lyricist: C. Chambers Auto-generated by YouTube.
Provided to YouTube by Universal Music Group Talking To My Diary · Dr. Dre Compton ℗ 2015 Aftermath/Interscope Records Released on: 2015-08-21 Producer: Dr. Dre Producer: DJ Silk Producer: Choc Composer Lyricist: André Romell Young Composer Lyricist: A. Johnson Composer Lyricist: M. Johnson Composer Lyricist: R. Brown Auto-generated by YouTube.
Provided to YouTube by Universal Music Group For The Love Of Money · Dr. Dre · Jill Scott · Jon Connor · Anderson .Paak Compton ℗ 2015 Aftermath/Interscope Records Released on: 2015-08-21 Producer: Cardiak Composer Lyricist: André Romell Young Composer Lyricist: J. Freeman Jr. Composer Lyricist: M. Ricks II Composer Lyricist: B. Anderson Composer Lyricist: J. Mohrle Composer Lyricist: C. McCormick Auto-generated by YouTube.
_ℕ_𝕎_𝔸_ - 𝕊𝕥𝕣𝟠 𝟘𝕦𝕥𝕥𝕒 ℂ𝕠𝕞𝕡𝕥𝕠𝕟 FULL ALBUM (1988)
Provided to YouTube by Universal Music Group Just Another Day · The Game · Asia Bryant Compton ℗ 2015 Aftermath/Interscope Records Released on: 2015-08-21 Producer: Trevor Lawrence Jr. Producer: Theron Feemster Composer Lyricist: André Romell Young Composer Lyricist: J. Taylor Composer Lyricist: Asia Bryant Composer Lyricist: S. Benton Composer Lyricist: T. Lawrence Jr. Composer Lyricist: T. Feemster Auto-generated by YouTube.
Provided to YouTube by Universal Music Group Deep Water · Dr. Dre · Kendrick Lamar · Justus · Anderson .Paak Compton ℗ 2015 Aftermath/Interscope Records Released on: 2015-08-21 Producer: Dr. Dre Producer: Focus... Producer: Cardiak Producer: Dahi Producer: Dem Jointz Composer Lyricist: André Romell Young Composer Lyricist: Kendrick Lamar Composer Lyricist: M. Ricks II Composer Lyricist: J. Mohrle Composer Lyricist: B. Anderson Composer Lyricist: B. Edwards Jr. Composer Lyricist: C. McCormick Composer Lyricist: D. Natche Composer Lyricist: Dwayne Abernathy Auto-generated by YouTube.
Karim Kharbouch (born November 9, 1984), better known by his stage name French Montana, is an American rapper, entrepreneur, former videographer, and hip hop socialite. Born in Morocco, his family emigrated to the US when he was 13 years old. He is the founder of Coke Boys Music, and its predecessor Cocaine City Records. In 2012, he signed a joint-venture recording deal with Bad Boy Records and Maybach Music Group. Montana has been known for his frequent collaborations with producer Harry Fraud, and with rapper Max B before his conviction. More recently he is known for his collaborations with Rick Ross, Diddy and his MMG and Bad Boy labelmates along with his Coke Boys which include the late Chinx, Lil Durk, and his brother Zack.
French made his mixtape debut in 2007, and released his debut studio album Excuse My French on May 21, 2013. In 2003, he survived a gunshot to the head. Allegedly blackballed by radio and media in his earlier career stemming from his stint with Max B. In 2010, he had his breakthrough with "Choppa Choppa Down" which became a regional hit in clubs and radio throughout the South. By 2012, his single "Shot Caller" would be one of the most added/played tracks on urban contemporary radio in the country. His most successful commercial single "Pop That" remains a popular hit on club and summertime radio playlists to date. In 2014, French Montana was dating Khloé Kardashian, and the couple would be the frequent subject of tabloids and celebrity gossip. The couple formally broke up in mid-2015; French has also been linked to rapper Trina and actress Sanaa Lathan. Best known for his mixtapes, club hits, and feature collaborations, he has been called titles from "King of Mixtapes" to "King of Features".
Annotate [Intro]
Yeah
It's time for the smoke and mirrors to come down
Niggas be talkin', but they don't be livin' that shit
A whole lotta deception goin' on it the world
It's Original Bad Boy Gang, nigga
Check this out
Click, clack
Bang, bang
Diamond Range Rover
Chains like a dope dealer
Fourth quarter player
Three quarter chinchilla
Gold chains, golden boy
Front row sitter
Niggas buyin' cars, we buy the whole dealer
We buy the whole plane
While them hoes playin' with 'em
100 chains, all the bad hoes came with us
Shawty held me down when the people on it
Ghostface, right hand, eagle on it
My brother keeper, with the motherload
And I ain't fuckin' undercover with them cover hoes
Talkin' 100 chains on, cold dealer
Montana, write your name on the smoke and mirrors
If the money ain't the issue I
I don't subscribe
If the money ain't the reason
Well then the question is why
Get money with my people
Then we never divide
It's for the love and the money
Make her love stay real
And the money multiply
Them niggas can't go where we go
They can't get dough like we do
Them niggas can't smoke like we smoke
Them niggas can't go where we go
Cause we go wherever we want
I skip prayers just to make money
I hope God forgive me, man
I was hungry
I'm tryin' clear my thoughts and?
Apple red Porsche, army guns, air force
Tryna count bills in the sunny hills
Balenciagas, make more than doctors
My crib bigger than your school, nigga
I'm just skiing in the pool, nigga
10 mil just to settle, nigga
Dead-ass like?, nigga
I done started from the block, boy
Now me and Ne-Yo on the top, boy
Ayo, that's me kid
Words produce
Harry Winston under the goose
Half moon, the wave's exclusive
Catch me uptown shopping in a?
Watch cost 1.5, I got the blue shit
Everybody love me
His texture's automatic money
Independent drug game dummy
Gettin' his, raisin' kids
These are big boy scholars
Flash money like Floyd
Got the big gold wallet
Roll out, it's 40 of us frontin' a bus
That's the new stretch bubble
Pipe the color of crust
Gettin' high, chillin' fly, yellin'?
Now I'm in hard bottoms