- published: 18 Apr 2020
- views: 1601211
'+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; })); }); -->
Patrick Denard Douthit (born January 15, 1975 in Winston-Salem, North Carolina), better known as 9th Wonder is a hip hop record producer, record executive, DJ, lecturer, and rapper from Durham, North Carolina, U.S. He began his career as the main producer for the group Little Brother, and has also worked with Mary J. Blige, Jean Grae, Wale, Jay-Z, Murs, Drake, Buckshot, Chris Brown, Destiny's Child, J. Cole, Kendrick Lamar, Erykah Badu, Ludacris, Mac Miller, David Banner, and Lecrae. As of 2010, 9th Wonder raps under the name of 9thmatic.
9th Wonder has a smooth and soulful production style that relies on samples from artists such as Al Green and Curtis Mayfield. He attributes the bass lines that he uses in production to DJ Premier, Pete Rock and J Dilla, while he claims to have learned the sampling of "Wails and moans" from other works of music and where to position them in his songs from RZA.
9th Wonder's first significant career breakthrough came in 2003 when, as an up-and-coming producer, he released an unofficial remix album of Nas' 2002 album God's Son entitled God's Stepson. Released through internet outlets, the album garnered significant attention and acclaim. The producer has said that he was not thinking in terms of using it to generate a buzz or promote his skills at that point: "I never thought any of this of me as a producer was going to happen." The album has since been credited as starting the now regular trend for unofficial 'home-made' remixes of whole albums.
Roy Lee (born March 23, 1969) is an American film producer who regularly takes well known Asian films and remakes them for American audiences. Examples include, The Ring and The Grudge. Vertigo Entertainment, Lee's production company in Beverly Hills, California, has a first-look deal with Warner Bros. Pictures.
Lee was born in 1969 at Wyckoff Heights Hospital, in Brooklyn, New York, USA, to Korean parents. His father, a doctor, and his mother, had been in America for just three years and were still trying to acclimate. Lee’s mother, a devout Christian, nurtured hopes that he would become a minister.
Lee graduated Walter Johnson High School in 1987. During his undergraduate studies at George Washington University, Lee did an internship at the law firm Fried Frank Harris Shriver & Jacobson. After graduating GWU, Lee attended law school at American University Washington College of Law where he prepared for a career in corporate law.
Roy Edwin Lee (September 28, 1917 – November 11, 1985) was an American baseball player and collegiate coach. He was a Major League Baseball pitcher who played for the New York Giants in 1945.
Roy Lee was named the head coach of the Saint Louis University baseball program in 1960. In seven years, his Billikens built a record of 125–84–5. His teams won the Missouri Valley Conference (MVC) regular season title in 1966 and the MVC Tournament championship in 1964–66, earning a place in the National Collegiate Athletic Association (NCAA) playoffs. Lee's Billikens placed third in the 1965 College World Series.
In 1967, Lee departed the successful Division I program at St. Louis to start the new Division II program at Southern Illinois University Edwardsville (SIUE). With no scholarships and almost no budget, he quickly built a successful program. In his eleven years as the Cougars' head coach, his teams had a record of 237–144–3 and made eight successive appearances in the NCAA playoffs. Lee's Cougars advanced to the Division II College World Series three times and finished as the 1976 runners-up.
Even though he produced three beats for “Duckworth,” 9th Wonder had a realization during our interview. Three samples, three genres, three generations-- Kendrick Lamar intentionally wove "threes all the way across." Watch the second season early at npr.org/theformula READ THE COMPANION ESSAY “Kendrick Lamar Thinks Like A Jazz Musician” by Marcus J. Moore Kendrick Lamar's song "DUCKWORTH." is made up of three beats, each built around a different sample, by producer 9th Wonder. The way Lamar stitched those beats together illuminates his relationship with contemporary and historical jazz musicians. That essay is here: https://n.pr/2VdwOIz FULL SERIES PLAYLIST HERE https://www.youtube.com/playlist?list=PLy2PCKGkKRVbYfsJ9gn-LrWPuALxU2Z1T CREDITS Host: Rodney Carmichael; Producers: Nick Mic...
Merry Christmas and Happy Holidays, Rhythm Roulette fans. While most of y’all don’t deserve shit the way you’ve been wilding in the comments sections this past year, we decided to let it slide and gift you with a new episode featuring the North Carolina legend 9th Wonder. After linking up at The Record Krate in Raleigh, we joined 9th back at his studio to watch the master at work. With Charly McClain, Jermaine Jackson, and The Temprees at his disposal, the GRAMMY award-winning producer warmed up with a few quick flips before ultimately chopping up Lovemen. The final result was so crazy, Rapsody immediately hopped in the booth to bless it with a proper verse. --------------Mass Appeal-------------- Website: http://massappeal.com Twitter: http://twitter.com/massappeal Instagram: http://inst...
HipHopDX Asia presents THE REGIONALS: VIETNAM Produced by 9th Wonder Written and performed by B-Wine, Blacka, Gonzo, Tlinh Arranged by Nicholas Cheung Pre-add/pre-save now: https://asiatic.lnk.to/vietnam Follow 9th Wonder: https://www.instagram.com/9thwonder https://www.facebook.com/9thWonder https://twitter.com/9thwonder Follow B-Wine: https://www.instagram.com/b_wine.uth https://www.facebook.com/dafinestwine Follow Blacka: https://www.instagram.com/blacka083 https://www.facebook.com/Blacka083 Follow Gonzo: https://www.instagram.com/rpt.gonzo https://www.facebook.com/rpt.gonzo Follow Tlinh: https://www.instagram.com/lf.tlinh https://www.facebook.com/tlinhww/ Music Video Director: Khanh Nguyen & Anh Phi Cako Production Crew: Booncha Studio Cinematography: Hai Kent Creative Producer:...
✘ WHAT IS THIS ? The purpose of this channel is to stream instrumental music and pay homage to some of the most remarkable producers and emcees that helped building this culture. We do not own the rights to the music You are listening to, if you wish to enjoy some of these tracks in better quality use iTunes, Bandcamp, or google to purchase an original copy ! The motivation for this channel is stricktly none commercial, any monitozation and advertisment on the videos is in favor of the copy rights owners and it's not control by the author of this channel. ✘ Follow me (The creator of this channel) ► SoundCloud: https://goo.gl/GO2s3y ► Instagram: https://goo.gl/FlEHuq ► Facebook: https://goo.gl/rQIZTl ► YouTube: https://goo.gl/w6abzS ► BandCamp: https://...
30 Tracks. Produced by 9th Wonder.
From the album "Brighter Daze". Out now! Stream: https://empire.lnk.to/brighterdaze Official Music Video by Murs & 9th Wonder performing God Black / Black God © 2019 Murs 316 / Jamla / EMPIRE http://vevo.ly/BuRzpI
From 1994 Album: "Blowout Comb"..... Digable Planets Myspace: http://www.myspace.com/digableplanets Get Digable Planets Music: http://www.amazon.com/Digable-Planets/e/B000AQ2AGG/ref=ntt_mus_gen_pel & http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewArtist?id=637259 Digable Planets is a Grammy Award-winning American Alt Hip Hop group based in New York City, composed of Ishmael "Butterfly" Butler (from Seattle), Craig "Doodlebug" Irving (from Philadelphia), and Mary Ann "Ladybug Mecca" Vieira (from Washington, D.C.). They were backed by Silkworm, who later embarked on a solo career under the name King Britt. Digable Planets' fusion of jazz and hip hop received excellent reviews and solid sales with the release of its debut album, Reachin' (A New Refutation of Time and Sp...
9th wonder taught me this - make beats like 9th wonder Learn More About Boom Bap With TheycallmeHeat: ➜ Join Our Community On Discord: https://dsc.gg/heatcafe ➜ Producer Kits | Beat Making Courses: https://boombapuniversity.com ➜ Get The Sounds Used In This Video: https://patreon.com/theycallmeheat ======================================= STREAM MUSIC FROM HEAT: ➜ Apple Music - https://bit.ly/heatonapplemusic ➜ Spotify - https://bit.ly/heatonspotify ➜ Bandcamp - theycallmeheat.bandcamp.com ======================================= Affiliate Link (Purchasing Through these links help support the channel): ➜ Get 15 Free Credits With Tracklib https://www.tracklib.com/subscribe/theycallmehea ➜ Get 10% Off Any WAVES Plugins - https://www.waves.com/r/m9ll41 ➜ MY STUDIO GEAR LIST: Desk - https:...
Provided to YouTube by EMPIRE Distribution LoveKills!!! · 9th Wonder Zion II ℗ 2017 Jamla Records Released on: 2017-12-15 Auto-generated by YouTube.
Buckshot & 9th Wonder - Chemistry (2005) https://itunes.apple.com/us/album/chemistry/355818962 © Duck Down Music Inc. DISCLAIMER: Uploaded for promotional purposes only. I do not own the rights to the content used in this video. If you are the owner of this original content and you want the video deleted, please either leave a comment below or send me a message through YouTube. I will comply with your wishes as soon as possible.
Song Credits: Documentary by Alec Koff Hashtags: #archives #rockydennis #mask #reallifestory #history
Join Patron: Patreon: https://www.patreon.com/yeonmipark To purchase sign copies of my book, "In Order To Live"; Paperback - https://py.pl/1YqqRN Hardcover - https://py.pl/70pvx Donate - paypal.me/YeonmiPark Please find me at: Book: In Order To Live: https://www.amazon.com/Order-Live-Korean-Journey-Freedom/dp/014310974X Instagram: https://www.instagram.com/yeonmi_park/ Facebook: https://www.facebook.com/officialyeonmipark/ Twitter: https://twitter.com/YeonmiParkNK For interviews & collaboration requests, please email me at [email protected].
Get ready to feel the burn with some famous body builders then and now! Suggest a topic here to be turned into a video: http://bit.ly/2kwqhuh Subscribe for more! ► https://goo.gl/pgcoq1 ◄ Stay updated ► https://goo.gl/JyGcTt https://goo.gl/5c8dzr ◄ For copyright queries or general inquiries please get in touch: [email protected] Legal Stuff. Unless otherwise created by BeAmazed, licenses have been obtained for images/footage in the video from the following sources: https://pastebin.com/sDha7AGa
7/8/10: Roy Oswalt gives up only one hit and strikes out eight in a shutout of the Pirates About Major League Baseball: Major League Baseball (MLB) is the most historic professional sports league in the United States and consists of 30 member clubs in the U.S. and Canada, representing the highest level of professional baseball. Led by Commissioner Robert D. Manfred, Jr., MLB currently features record levels of labor peace, competitive balance and industry revenues, as well as the most comprehensive drug-testing program in American professional sports. MLB remains committed to making an impact in the communities of the U.S., Canada and throughout the world, perpetuating the sport’s larger role in society and permeating every facet of baseball’s business, marketing and community relations e...
We chatted with Tom Giffen about the Roy Hobbs Baseball World Series which in held throughout Fort Myers starting October 20. Roy Hobbs World Series one of the best amateur baseball events around. This tournament brings people of all ages from all over the world together to enjoy the game of baseball. More info at http://www.royhobbs.com/
There were warning signs before the attack. ◂ San Diego's News Source - 10News, KGTV, delivers the latest breaking news, weather forecasts, video on demand and live video streaming straight to you, keeping you in touch anywhere, any time. It's the best way to keep informed and connected to your community wherever and whenever you want backed by the resources of 10News - San Diego, California. For more download the 10News mobile app: iPhone: http://bit.ly/iOS-kgtv Android: http://bit.ly/kgtv-android
Can You Beat These IMPOSSIBLE QUIZZES? (BANBALEENA RIDDLE, NABNAB QUIZ, JUMBO JOSH MINDHACK & MORE!) Check out the videos we watched!▼ https://www.youtube.com/channel/UCttFk8-Nysnyw59aNlWOWzw LANKYBOX MERCH (Foxy+Boxy+Rocky plushie!)! ► https://www.LankyBoxShop.com Get Foxy & Boxy PLUSHIES on Amazon! https://www.Amazon.com/lankybox GET LANKYBOX MERCH AT WALMART & TARGET! 😁 Order LankyBox FOOD HERE! https://www.LankyBoxKitchen.com Listen to LankyBox on Spotify HERE! https://open.spotify.com/artist/5ZW1R5JS4WcZiDOmpfhS7d FOLLOW US ON TIKTOK! TIKTOK ► https://www.tiktok.com/@lankybox LankyBox World! YOUTUBE ► https://www.youtube.com/LankyBoxWorld
Basketball machine Michael (Steve Carell) and the office workers challenge Darryl (Craig Robinson) to a game of basketball. Loser works over the weekend. ("Basketball," Season 1, Episode 5) Streaming now on Peacock: https://pck.tv/3mPrdWB Watch The Office US on Google Play: http://bit.ly/2xYQkLD & iTunes http://apple.co/2eW0rcK Subscribe: https://www.youtube.com/channel/UCa90xqK2odw1KV5wHU9WRhg?sub_confirmation=1 Welcome to The Office Channel! This channel is dedicated to everything The Office, from behind-the-scenes videos to fan theories. We'll be uploading new videos every week, so be sure to subscribe and hit the bell icon to be notified when we upload new content. In this channel, you'll find: * Behind-the-scenes videos: We'll take you behind-the-scenes of The Office, showing yo...
Patrick Denard Douthit (born January 15, 1975 in Winston-Salem, North Carolina), better known as 9th Wonder is a hip hop record producer, record executive, DJ, lecturer, and rapper from Durham, North Carolina, U.S. He began his career as the main producer for the group Little Brother, and has also worked with Mary J. Blige, Jean Grae, Wale, Jay-Z, Murs, Drake, Buckshot, Chris Brown, Destiny's Child, J. Cole, Kendrick Lamar, Erykah Badu, Ludacris, Mac Miller, David Banner, and Lecrae. As of 2010, 9th Wonder raps under the name of 9thmatic.
9th Wonder has a smooth and soulful production style that relies on samples from artists such as Al Green and Curtis Mayfield. He attributes the bass lines that he uses in production to DJ Premier, Pete Rock and J Dilla, while he claims to have learned the sampling of "Wails and moans" from other works of music and where to position them in his songs from RZA.
9th Wonder's first significant career breakthrough came in 2003 when, as an up-and-coming producer, he released an unofficial remix album of Nas' 2002 album God's Son entitled God's Stepson. Released through internet outlets, the album garnered significant attention and acclaim. The producer has said that he was not thinking in terms of using it to generate a buzz or promote his skills at that point: "I never thought any of this of me as a producer was going to happen." The album has since been credited as starting the now regular trend for unofficial 'home-made' remixes of whole albums.
Ah yea (echo)
Whole world
Whose slick
We lounge stay phat notice our G limp
A natural flair with our fresh ass hair
Style baggy out clouts slick
creamy and fresh east coast to west
Brooklyn
uptown
to the universal fair
old school mcs
(being scratched in the background)
make your money
I'm slicker this year
I'm slicker this year
Myrtle Ave A-train got the pick in my hair
and what, 16 joints later, still lounge
fresh, from flatbush in my baggy, boots, to Guess [name brand]
style is tight ees bust the cami' fatigues
50,000 leagues of black, so what's up
can we avenue slide player style ghetto walk
to the east, son--wild Crooklyn, New York
creamy kid yo smith and wesson win a blessing
the angular slang blow spots..bang..eleven
hangin' like bats 'cause the 12-inch wax.
say scorpio
and my hair say 'fro
and my blood say bro
my cliques say "eh, yo!"
make sparks from the barrel me-tal pistol
to the depths I dive, seems lunar like aqua
the cool blast mega, we black, we wild flowers
"Scott La Rock had emm all," I gots the ball
and roll with little panthers through these project halls
the 3-color flag can't hold my baggy sag
7-1-8 to omega
black motion is ocean style
slick in my ways since days of the classic
now glamour boys want to be triple phatted
but I'm slicker this year
I'm slicker this year, yea
east born
beast candles on?
lovely all over the city
and your tape deck blasting
7ods and the phat fly sneakers
and the camouflage
(being scratched in the background)
make your money
to the hip hop nation
to the mixtape crew
to the west coast
to the boogie down bronx
I was raised in the ways of the Manchu Clan
and 5 elements posture take a B-boy stance
with the gold front shinin' the baggy pants saggin'
this Brooklyn stylin' got the fly girls smilin'
but I'm climbin' findin' new ways of rhymin'
not livin' like a star is strictly about survivin'
divin', deep into the groove of the ghetto
this downtown flavor shines from many angles
yes the notorious, with rhymes so glorious
the Manchu Monkey over flunkies is victorious
rappers be boring us with rhymes of conventional
dazed and amazed when they hear the three dimensional
lyrical skills of the insect emotion
coasting down fulton with a bag of magic potion
now I'm rolling with the seven and the crescent
puffin' some expression
manifestin' today's lesson
stressin the fact that I'm solar guarenteed to go far
cause the mind is intestellar
still pieced like that so have no fear
but I'm slicker this year
I'm slicker this year
to the queens everywhere
to the whole S.I.
to the lumpen mass
don't forget about your peeps when ya...
now you see that I am 68 inches above sea level
93 million miles above these devils
play me in the winter
play me in the summer
play me in the autumn
any order
You want 'em? I got 'em, drippin' like water
catch me at a hot spot with the dusk daughters
we bouncing... moving within the truth circles
we played you made you change...straight "New Yorked" you
we stratify our wealth from my loochie [money] in the bank
there's love amongst the ranks, now...I'm a...
...bout to meet my homegirl 'cause we be alike
a alike, c alike, let's g alike
jazzy joyce [on the wheels]
jazzy joyce [no one's smoother]
jazzy joyce [phatter than a '94 land cruiser]
where you from?
[the bronx representin' like whatever, pop]
cool are you slicker this year?
[yea, watch]
hit it...
"" ""
"" ""
"" ""