'+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; })); }); -->

Untitled Nas album

The untitled ninth studio album by American rapper Nas was released by Def Jam Recordings and Columbia Records on July 15, 2008 in the United States, with earlier dates in some other countries. Its original title—Nigger—was changed due to controversy surrounding the racial epithet. The album is distinguished for its political content, diverse sources of production and provocative subject matter.

The album debuted at number one on the US Billboard 200 chart, Nas' fifth to do so. It was certified gold by the Recording Industry Association of America (RIAA), for shipments of 500,000 copies in the United States. Upon its release, the album received generally positive reviews from music critics; it holds an aggregate score of 71/100 from Metacritic.

Background

Title controversy

The original title of the album—Nigger—was mentioned by Nas several times, as well as on an October 12, 2007, performance at the Roseland Ballroom in New York City where he announced the title and release date.Def Jam made no comment on the title. This was similar to attempts to name his 2006 album—eventually titled Hip Hop Is Dead—both Nigga and Hip Hop Is Dead... The N. On May 19, 2008, it was confirmed that Nas changed the name of the album to an untitled one (although on iTunes, the album is self-titled), stating that "the people will always know what the real title of this album is and what to call it." The cover of the album shows the back of a shirtless Nas with flagellation scars forming the shape of the letter N, a reference to the racial slur and how slaves were tortured. Fort Greene, Brooklyn assemblyman Hakeem Jeffries requested New York's Comptroller Thomas DiNapoli to withdraw $84 million from the state pension fund that has been invested into Universal and its parent company, Vivendi, if the album's title was not changed.

Nas

Nasir bin Olu Dara Jones (/nɑːˈsɪər/; born September 14, 1973), better known as Nas /ˈnɑːz/, is an American rapper, songwriter, entrepreneur, record producer and actor. The son of jazz musician Olu Dara, Nas has released eight consecutive platinum and multi-platinum albums and sold over 25 million records worldwide since 1994. He is also an entrepreneur through his own record label; he serves as associate publisher of Mass Appeal magazine and is the owner of a Fila sneaker store. He is currently signed to Mass Appeal Records.

His musical career began in 1991 when he was featured on Main Source's track "Live at the Barbeque". His debut album Illmatic, released in 1994, received universal acclaim from both critics and the hip hop community; it is frequently ranked as one of the greatest hip hop albums of all time.

Nas' follow-up album, It Was Written, debuted at number one on the Billboard 200, stayed on top for four consecutive weeks, went Platinum twice in only two months, and made Nas internationally known. From 2001 to 2005, Nas was involved in a highly publicized feud with rapper Jay Z. In 2006, Nas signed to Def Jam. In 2010, he released a collaboration album with reggae artist Damian Marley, donating all royalties to charities active in Africa. His eleventh studio album, Life Is Good, was released in 2012, and was nominated for Best Rap Album at the 55th Annual Grammy Awards.

This page contains text from Wikipedia, the Free Encyclopedia - https://wn.com/Nas

Nas (Ikaria)

Nas is a small village on the Greek island of Icaria. It is famous for the beach which is located near the ruins of an ancient temple dedicated to the goddess Artemis.

Coordinates: 37°37′19″N 26°03′36″E / 37.62194°N 26.06000°E / 37.62194; 26.06000


814 Naval Air Squadron

814 Naval Air Squadron is a squadron of the Royal Navy Fleet Air Arm. It was formed in December 1938 and has been disbanded and reformed several times. Its nickname is "the Flying Tigers", not to be confused with the American Volunteer squadron of WWII.

History

The squadron was formed on December 1938 as a Torpedo plane Squadron equipped with six Fairey Swordfish aircraft. Originally embarked on HMS Ark Royal, it transferred to HMS Hermes at the outbreak of the Second World War. HMS Hermes helped search for the Graf Spee and taking part in the Battle of Dakar, damaging the French battleship Richelieu on 8 July 1940. HMS Hermes travelled to the Indian Ocean December 1940, providing support for the land forces in British Somaliland and capturing 5 enemy merchant ships. In May 1941 the squadron provided support to the Royal Air Force in Iraq and later providing convoy protection in the Indian ocean. In April 1942, while the squadron was ashore, HMS Hermes was sunk by Japanese aircraft off Ceylon and 814 subsequently disbanded at Katukurunda in December. The squadron was reformed in July 1944, equipped with Fairey Barracudas, to embark on HMS Venerable and headed to the Far East for patrols, although seeing no action.

Podcasts:

  • Nas - Make The World Go Round (Official Music Video) ft. Chris Brown, The Game

    REMASTERED IN HD! Official Music Video for Make The World Go Round performed by Nas featuring Chris Brown, The Game. Follow Nas: Website: https://www.nasirjones.com Facebook: https://m.facebook.com/Nas Instagram: https://www.instagram.com/nas Twitter: https://twitter.com/nas #Nas #ChrisBrown #TheGame #MakeTheWorldGoRound #Remastered

    published: 14 Dec 2009
  • We Make The World Go Round - NAS ft. Chris Brown ++++++++++++ Lyrics

    [Nas] Lace the macy's don't have it A hatred addict I need faces mad with frowns When I'm around Or I wasted fabric I don't feel greater To my plush pieces 'Cause you to suck your teeth So mean-mugging on my clean-thugging Mean nothing Women dream I'm your husband I'm Alex Pushkin The black poetry-writing Russian Ice disgusting I started bling How could you question my direction Or my time for collection Gangstas two-steppin' You hate me Should thank me But lately I burned so much trees I keep environmentalists angry I'm a rare dude, I'm a wonder Your best success is my worst blunder Y'all living trendy on pennies I cop plenty Fendi Vivienne Westwood, I'm good Get the whole Trump Tower top floor for the hood Dre & Cool, we riding heavy And why to Miami? 'Caus...

    published: 26 Nov 2008
  • Nas - Make The world Go Round feat. The Game & Chris Brown {UNCENSORED - OFFICIAL VIDEO}

    Artist:Nas Featuring:The Game & Chris Brown Song:Make The World Go Round Album:Untitled Lyrics(Album Version) [Verse 1: Nas] Lace the macy's don't have it A hatred addict I need faces mad with frowns When I'm around Or I wasted fabric I don't feel greater To my plush pieces 'Cause you to suck your teeth So mean-mugging on my clean-thugging Mean nothing Women dream I'm your husband I'm Alex Pushkin The black poetry-writing Russian Ice disgusting I started bling How could you question my direction Or my time for collection Gangstas two-steppin' You hate me Should thank me But lately I burned so much trees I keep environmentalists angry I'm a rare dude, I'm a wonder Your best success is my worst blunder Y'all living trendy on pennies I cop plenty Fendi Vivienne Westwood, I'm good Get the w...

    published: 21 Dec 2008
  • Nas, Chris Brown & The Game: Make The World Go Round (EXPLICIT) [UP.S 1080] (2008)

    ORIGINAL: https://youtu.be/u2de0RBcqiE Director: Chris Robinson Produced by : Cool N Dre & The Game Album: Track 4 on Nas (Untitled) Additional Vocals: DJ Khaled #NAS #CHRISBROWN #THEGAME #CHRISROBINSON #MAKETHEWORLDGOAROUND #COOLnDRE #DJKHALED #REMASTEREDHIPHOP #CLASSIC #HIPHOP #RAP #FLASHBACK

    published: 02 Sep 2022
  • Nas ft. The Game and Chris Brown- We Make The World Go Round

    Artist: Nas Featuring: The Game and Chris Brown Album: Untitled Song: We Make The World Go Round Genre: Hip-Hop/Rap Nas The Game Chris Brown We Make The World Go Round Nas The Game Chris Brown We Make The World Go Round Nas The Game Chris Brown We Make The World Go Round Nas The Game Chris Brown We Make The World Go Round Nas The Game Chris Brown We Make The World Go Round Nas The Game Chris Brown We Make The World Go Round Nas The Game Chris Brown We Make The World Go Round Nas The Game Chris Brown We Make The World Go Round

    published: 02 Jul 2008
  • Nas Ft Chris Brown And The Game Make The World Go Round [Official Video] Dvdrip

    it's Nasir Jones (Nas) From QB In NYC And The Game From Compton in California when i saw this music video now i have a dream lol

    published: 11 Nov 2008
  • Nas - Make The World Go Round ft. The Game and Chris Brown Lyrics

    published: 23 Jan 2019
  • Nas Ft.Chris Brown, & The Game - Make The World Go Round (Music Video) (2008)

    published: 11 Jan 2011
  • Nas Feat. Chris Brown & The Game - Make The World Go Round [High Definition Music Video]

    Make The World Go Round Track From Nas' Brand New Album "Independence Day", Featuring Chris Brown & The Game. (C) 2008 Def Jam Records

    published: 23 Feb 2009
  • Nas ft Chris Brown and The Game - make the world go round

    BlackMixed

    published: 19 Nov 2008
developed with YouTube
Nas - Make The World Go Round (Official Music Video) ft. Chris Brown, The Game
3:54

Nas - Make The World Go Round (Official Music Video) ft. Chris Brown, The Game

  • Order:
  • Duration: 3:54
  • Uploaded Date: 14 Dec 2009
  • views: 3600836
REMASTERED IN HD! Official Music Video for Make The World Go Round performed by Nas featuring Chris Brown, The Game. Follow Nas: Website: https://www.nasirjones.com Facebook: https://m.facebook.com/Nas Instagram: https://www.instagram.com/nas Twitter: https://twitter.com/nas #Nas #ChrisBrown #TheGame #MakeTheWorldGoRound #Remastered
https://wn.com/Nas_Make_The_World_Go_Round_(Official_Music_Video)_Ft._Chris_Brown,_The_Game
We Make The World Go Round - NAS ft. Chris Brown  ++++++++++++ Lyrics
3:50

We Make The World Go Round - NAS ft. Chris Brown ++++++++++++ Lyrics

  • Order:
  • Duration: 3:50
  • Uploaded Date: 26 Nov 2008
  • views: 74452
[Nas] Lace the macy's don't have it A hatred addict I need faces mad with frowns When I'm around Or I wasted fabric I don't feel greater To my plush pieces 'Cause you to suck your teeth So mean-mugging on my clean-thugging Mean nothing Women dream I'm your husband I'm Alex Pushkin The black poetry-writing Russian Ice disgusting I started bling How could you question my direction Or my time for collection Gangstas two-steppin' You hate me Should thank me But lately I burned so much trees I keep environmentalists angry I'm a rare dude, I'm a wonder Your best success is my worst blunder Y'all living trendy on pennies I cop plenty Fendi Vivienne Westwood, I'm good Get the whole Trump Tower top floor for the hood Dre & Cool, we riding heavy And why to Miami? 'Cause . . . [Nas and Chris Brown] (We make the world go round) Now let's toast to the hustlers (We make the world go round) Tell the hustlers, toast to the gangstas. (We make the world go round) Tell the gangstas, toast to the ballers (We make the world go round) And tell the ballers pour glass for all us. (We make the world go round) [Game] I see the haters on the floor jockin my swag I'm popping Ralph Lauren tags I'm pouring champagne inside a polo glass Model b'tches rollin grass Escobar folding cash toasting wit my entourage went from robbing armored cars to armored stars red carpet to the Larmitage To throwin red dice at the Mirage I pull that red Lamborghini on twenties out my garage instead of shopping South Beach like Khaled and Terror Squad We the Best! big pimpin Top down chrome spinnin Top Gun Tom Cruise Tucked inside my Gucci linen No Just Romo you tryna shine I put the nine up on your jersey for promo Jessica Simpson that's so-so Nick want his baby back but thats low so. Tell Hawaii 5-0 to catch me at the pro bowl on the field diamonds choking the jockey on my polo CB let em know though [Nas and Chris Brown] (We make the world go round) Tell the hustlers, toast to the gangstas. (We make the world go round) Tell the gangstas, toast to the ballers (We make the world go round) And tell the ballers pour glass for all us. (We make the world go round) [Chris Brown] We make the world go round From my town to your town We on top no stopping us now We got patron to ballers two steppin Ladies on the floor and all em two steppin From L.A. to Harlem two stepping (echo) So iced up cause we need to put em haters out [Nas] We start with Bellini's and end with Patron shots H. Lorenzo belt buckle from Chrome Heart A-life tag popper It'd be sad not to walk out the store with bags Worth a 100 cash, shopping Balance only would hafta Hafta to swell you up before a pea snaps as you wet a vanilla dutch Mets cap, that's Queens, I'm a vet Bet that, 300 carats the average up on the neck, black Paid the cost, be the boss, Black Caesar floss Weekends at the Venetian, pull up in that black Porsche Top down, new fashion Seeing me is like seeing through the lens of Helmut Newton's camera Light flashing, and I'm laughin' My plaque's from album sales Y'all is ringtone platinum But .99 cents adds up I don't hate 'em, I congratulate 'em The new young Prince with young Mike Jackson on the same track, what! [Nas and Chris Brown] Now let's toast to the hustlers (We make the world go round) Tell the hustlers, toast to the gangstas. (We make the world go round) Tell them gangstas, toast to the ballers (We make the world go round) And tell the ballers pour glass for all us. (We make the world go round)
https://wn.com/We_Make_The_World_Go_Round_Nas_Ft._Chris_Brown_Lyrics
Nas - Make The world Go Round feat. The Game & Chris Brown {UNCENSORED - OFFICIAL VIDEO}
3:55

Nas - Make The world Go Round feat. The Game & Chris Brown {UNCENSORED - OFFICIAL VIDEO}

  • Order:
  • Duration: 3:55
  • Uploaded Date: 21 Dec 2008
  • views: 3960
Artist:Nas Featuring:The Game & Chris Brown Song:Make The World Go Round Album:Untitled Lyrics(Album Version) [Verse 1: Nas] Lace the macy's don't have it A hatred addict I need faces mad with frowns When I'm around Or I wasted fabric I don't feel greater To my plush pieces 'Cause you to suck your teeth So mean-mugging on my clean-thugging Mean nothing Women dream I'm your husband I'm Alex Pushkin The black poetry-writing Russian Ice disgusting I started bling How could you question my direction Or my time for collection Gangstas two-steppin' You hate me Should thank me But lately I burned so much trees I keep environmentalists angry I'm a rare dude, I'm a wonder Your best success is my worst blunder Y'all living trendy on pennies I cop plenty Fendi Vivienne Westwood, I'm good Get the whole Trump Tower top floor for the hood Dre & Cool, we riding heavy And why to Miami? 'Cause . . . [Chorus: Nas and Chris Brown] (We make the world go round) Now let's toast to the hustlers (We make the world go round) Tell the hustlers, toast to the gangstas. (We make the world go round) Tell the gangstas, toast to the ballers (We make the world go round) And tell the ballers pour glass for all us. (We make the world go round) [Verse 2: The Game] I see the haters on the floor jockin my swag I'm popping Ralph Lauren tags I'm pouring champagne inside a polo glass Model b'tches rollin grass Escobar folding cash toasting wit my entourage went from robbing armored cars to armored stars red carpet to the Larmitage To throwin red dice at the Mirage I pull that red Lamborghini on twenties out my garage instead of shopping South Beach like Khaled and Terror Squad We the Best! big pimpin Top down chrome spinnin Top Gun Tom Cruise Tucked inside my Gucci linen No Just Romo you tryna shine I put the nine up on your jersey for promo Jessica Simpson that's so-so Nick want his baby back but thats low so. Tell Hawaii 5-0 to catch me at the pro bowl on the field diamonds choking the jockey on my polo CB let em know though [Chorus: Nas and Chris Brown] (We make the world go round) Tell the hustlers, toast to the gangstas. (We make the world go round) Tell the gangstas, toast to the ballers (We make the world go round) And tell the ballers pour glass for all us. (We make the world go round) [Chris Brown] We make the world go round From my town to your town We on top no stopping us now We got patron to ballers two steppin Ladies on the floor and all em two steppin From L.A. to Harlem two stepping (echo) So iced up cause we need to put em haters out [Verse 2: Nas] We start with Bellini's and end with Patron shots H. Lorenzo belt buckle from Chrome Heart A-life tag popper It'd be sad not to walk out the store with bags Worth a 100 cash, shopping Balance only would hafta Hafta to swell you up before a pea snaps as you wet a vanilla dutch Mets cap, that's Queens, I'm a vet Bet that, 300 carats the average up on the neck, black Paid the cost, be the boss, Black Caesar floss Weekends at the Venetian, pull up in that black Porsche Top down, new fashion Seeing me is like seeing through the lens of Helmut Newton's camera Light flashing, and I'm laughin' My plaque's from album sales Y'all is ringtone platinum But .99 cents adds up I don't hate 'em, I congratulate 'em The new young Prince with young Mike Jackson on the same track, what! [Chorus: Nas and Chris Brown] Now let's toast to the hustlers (We make the world go round) Tell the hustlers, toast to the gangstas. (We make the world go round) Tell them gangstas, toast to the ballers (We make the world go round) And tell the ballers pour glass for all us. (We make the world go round) DON'T OWN THIS VIDEO!
https://wn.com/Nas_Make_The_World_Go_Round_Feat._The_Game_Chris_Brown_Uncensored_Official_Video
Nas, Chris Brown & The Game: Make The World Go Round (EXPLICIT) [UP.S 1080] (2008)
3:58

Nas, Chris Brown & The Game: Make The World Go Round (EXPLICIT) [UP.S 1080] (2008)

  • Order:
  • Duration: 3:58
  • Uploaded Date: 02 Sep 2022
  • views: 3532
ORIGINAL: https://youtu.be/u2de0RBcqiE Director: Chris Robinson Produced by : Cool N Dre & The Game Album: Track 4 on Nas (Untitled) Additional Vocals: DJ Khaled #NAS #CHRISBROWN #THEGAME #CHRISROBINSON #MAKETHEWORLDGOAROUND #COOLnDRE #DJKHALED #REMASTEREDHIPHOP #CLASSIC #HIPHOP #RAP #FLASHBACK
https://wn.com/Nas,_Chris_Brown_The_Game_Make_The_World_Go_Round_(Explicit)_Up.S_1080_(2008)
Nas ft. The Game and Chris Brown- We Make The World Go Round
3:51

Nas ft. The Game and Chris Brown- We Make The World Go Round

  • Order:
  • Duration: 3:51
  • Uploaded Date: 02 Jul 2008
  • views: 270408
Artist: Nas Featuring: The Game and Chris Brown Album: Untitled Song: We Make The World Go Round Genre: Hip-Hop/Rap Nas The Game Chris Brown We Make The World Go Round Nas The Game Chris Brown We Make The World Go Round Nas The Game Chris Brown We Make The World Go Round Nas The Game Chris Brown We Make The World Go Round Nas The Game Chris Brown We Make The World Go Round Nas The Game Chris Brown We Make The World Go Round Nas The Game Chris Brown We Make The World Go Round Nas The Game Chris Brown We Make The World Go Round
https://wn.com/Nas_Ft._The_Game_And_Chris_Brown_We_Make_The_World_Go_Round
Nas Ft Chris Brown And The Game Make The World Go Round [Official Video] Dvdrip
3:54

Nas Ft Chris Brown And The Game Make The World Go Round [Official Video] Dvdrip

  • Order:
  • Duration: 3:54
  • Uploaded Date: 11 Nov 2008
  • views: 395
it's Nasir Jones (Nas) From QB In NYC And The Game From Compton in California when i saw this music video now i have a dream lol
https://wn.com/Nas_Ft_Chris_Brown_And_The_Game_Make_The_World_Go_Round_Official_Video_Dvdrip
Nas - Make The World Go Round ft. The Game and Chris Brown Lyrics
3:50

Nas - Make The World Go Round ft. The Game and Chris Brown Lyrics

  • Order:
  • Duration: 3:50
  • Uploaded Date: 23 Jan 2019
  • views: 4597
https://wn.com/Nas_Make_The_World_Go_Round_Ft._The_Game_And_Chris_Brown_Lyrics
Nas Ft.Chris Brown, & The Game - Make The World Go Round (Music Video) (2008)
6:35

Nas Ft.Chris Brown, & The Game - Make The World Go Round (Music Video) (2008)

  • Order:
  • Duration: 6:35
  • Uploaded Date: 11 Jan 2011
  • views: 3706
https://wn.com/Nas_Ft.Chris_Brown,_The_Game_Make_The_World_Go_Round_(Music_Video)_(2008)
Nas Feat. Chris Brown & The Game - Make The World Go Round [High Definition Music Video]
3:54

Nas Feat. Chris Brown & The Game - Make The World Go Round [High Definition Music Video]

  • Order:
  • Duration: 3:54
  • Uploaded Date: 23 Feb 2009
  • views: 166
Make The World Go Round Track From Nas' Brand New Album "Independence Day", Featuring Chris Brown & The Game. (C) 2008 Def Jam Records
https://wn.com/Nas_Feat._Chris_Brown_The_Game_Make_The_World_Go_Round_High_Definition_Music_Video
Nas ft Chris Brown and The Game - make the world go round
3:54

Nas ft Chris Brown and The Game - make the world go round

  • Order:
  • Duration: 3:54
  • Uploaded Date: 19 Nov 2008
  • views: 132
BlackMixed
https://wn.com/Nas_Ft_Chris_Brown_And_The_Game_Make_The_World_Go_Round
developed with YouTube
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
developed with YouTube
PLAYLIST TIME:

Nas - Make The World Go Round (Official Music Video) ft. Chris Brown, The Game

REMASTERED IN HD! Official Music Video for Make The World Go Round performed by Nas featuring Chris Brown, The Game. Follow Nas: Website: https://www.nasirjones.com Facebook: https://m.facebook.com/Nas Instagram: https://www.instagram.com/nas Twitter: https://twitter.com/nas #Nas #ChrisBrown #TheGame #MakeTheWorldGoRound #Remastered
3:54
Nas - Make The World Go Round (Official Music Video) ft. Chris Brown, The Game
REMASTERED IN HD! Official Music Video for Make The World Go Round performed by Nas featur...
published: 14 Dec 2009
Play in Full Screen
3:50
We Make The World Go Round - NAS ft. Chris Brown ++++++++++++ Lyrics
[Nas] Lace the macy's don't have it A hatred addict I need faces mad with frowns When ...
published: 26 Nov 2008
Play in Full Screen
3:55
Nas - Make The world Go Round feat. The Game & Chris Brown {UNCENSORED - OFFICIAL VIDEO}
Artist:Nas Featuring:The Game & Chris Brown Song:Make The World Go Round Album:Untitled L...
published: 21 Dec 2008
Play in Full Screen
3:58
Nas, Chris Brown & The Game: Make The World Go Round (EXPLICIT) [UP.S 1080] (2008)
ORIGINAL: https://youtu.be/u2de0RBcqiE Director: Chris Robinson Produced by : Cool N Dre &...
published: 02 Sep 2022
Play in Full Screen
3:51
Nas ft. The Game and Chris Brown- We Make The World Go Round
Artist: Nas Featuring: The Game and Chris Brown Album: Untitled Song: We Make The Worl...
published: 02 Jul 2008
Play in Full Screen
3:54
Nas Ft Chris Brown And The Game Make The World Go Round [Official Video] Dvdrip
it's Nasir Jones (Nas) From QB In NYC And The Game From Compton in California when i saw t...
published: 11 Nov 2008
Play in Full Screen
3:50
Nas - Make The World Go Round ft. The Game and Chris Brown Lyrics
published: 23 Jan 2019
Play in Full Screen
6:35
Nas Ft.Chris Brown, & The Game - Make The World Go Round (Music Video) (2008)
published: 11 Jan 2011
Play in Full Screen
3:54
Nas Feat. Chris Brown & The Game - Make The World Go Round [High Definition Music Video]
Make The World Go Round Track From Nas' Brand New Album "Independence Day", Featuring Chri...
published: 23 Feb 2009
Play in Full Screen
3:54
Nas ft Chris Brown and The Game - make the world go round
BlackMixed
published: 19 Nov 2008
Play in Full Screen

Untitled Nas album

The untitled ninth studio album by American rapper Nas was released by Def Jam Recordings and Columbia Records on July 15, 2008 in the United States, with earlier dates in some other countries. Its original title—Nigger—was changed due to controversy surrounding the racial epithet. The album is distinguished for its political content, diverse sources of production and provocative subject matter.

The album debuted at number one on the US Billboard 200 chart, Nas' fifth to do so. It was certified gold by the Recording Industry Association of America (RIAA), for shipments of 500,000 copies in the United States. Upon its release, the album received generally positive reviews from music critics; it holds an aggregate score of 71/100 from Metacritic.

Background

Title controversy

The original title of the album—Nigger—was mentioned by Nas several times, as well as on an October 12, 2007, performance at the Roseland Ballroom in New York City where he announced the title and release date.Def Jam made no comment on the title. This was similar to attempts to name his 2006 album—eventually titled Hip Hop Is Dead—both Nigga and Hip Hop Is Dead... The N. On May 19, 2008, it was confirmed that Nas changed the name of the album to an untitled one (although on iTunes, the album is self-titled), stating that "the people will always know what the real title of this album is and what to call it." The cover of the album shows the back of a shirtless Nas with flagellation scars forming the shape of the letter N, a reference to the racial slur and how slaves were tortured. Fort Greene, Brooklyn assemblyman Hakeem Jeffries requested New York's Comptroller Thomas DiNapoli to withdraw $84 million from the state pension fund that has been invested into Universal and its parent company, Vivendi, if the album's title was not changed.

'); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->
×