- published: 24 Feb 2009
- views: 6500747
'+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; })); }); -->
Robert Earl Davis, Jr. (July 20, 1971 – November 16, 2000), better known by his stage name DJ Screw, was an American hip hop DJ who was based in Houston, Texas. He was known as a central figure in the Houston hip hop community and was the creator of the now-famous chopped and screwed DJ technique. This creation led to his nickname of "The Originator".
Davis was recognized for his various mixtapes and albums mostly on a regional level, until after his death. His legacy was discovered by a wider audience when Houston hip-hop began reaching a national audience in 2005.
DJ Screw was born in Smithville, Texas. His father, Robert Earl Davis Sr., was a long-haul truck driver based in Houston. His mother Ida May Davis (who had a young daughter from a previous marriage), came to the area to be with her mother when her son was born in 1971. She returned to Houston, but the marriage was floundering; soon it would be over, and she and her kids moved to Los Angeles for a couple of years, then back to Houston, and returned to Smithville in 1980 when Davis was age nine.
Sunny Day may refer to:
"Sunny Day" is the ninth single released by the American synthpop band Book of Love. The song was released as the second single from the band's third album, 1991's Candy Carol.
"Sunny Day" was written by band member Ted Ottaviano, who also sings the lead vocals on the track. It became the second Book of Love song to feature him on lead vocals. The single was featured in Jonathan Demme's 1991 film, The Silence of the Lambs. In a strange twist of fate, band member Lauren Roselli was cast in the role of Stacy Hubka in the movie.
The song was initially remixed by Ben Grosse and released as a CD promo single and cassette single. Shortly thereafter, the band themselves remixed the track, and this remix appeared on their following single "Counting The Rosaries", the CD maxi-single edition of which also included the Ben Grosse remix.
"Sunny Day" was reworked in 1993 for Ted Ottaviano's post Book of Love project with Basil Lucas, Doubleplusgood. The 1993 version, found on Sire's 1993 compilation, New Faces, features Lambert Moss on vocals and is more of a dance oriented track.
Coco Lee (Chinese: 李玟; pinyin: Lǐ Wén; born Ferren Lee, 17 January 1975, Hong Kong) is a Hong Kong-born American singer-songwriter, record producer, dancer, and actress. Lee's career began in Hong Kong and then expanded to Taiwan. Her single, "Do You Want My Love" also entered the US music charts. Her first full-length English language album was Just No Other Way. As a Chinese American, Lee is the first and only person of Chinese ethnicity to perform at the Oscars; she performed the Best Original Song nominated, "A Love Before Time" from the movie Crouching Tiger, Hidden Dragon.
After Lee graduated from high school in 1992, she returned to Hong Kong to see her sisters participate in the Miss Hong Kong Pageant. While there, she took part in the 12th Annual New Talent Singing Awards and was the first runner-up, singing Whitney Houston's Run to you. The following day, Capital Artists offered her a recording contract. She made her debut by appearing in several compilation albums, such as Red Hot Hits '93 Autumn Edition (火熱動感93勁秋版). In 1994, working with Fancy Pie Records, she released her first solo albums in Mandarin, Love from Now On (愛就要趁現在) and Promise Me (答應我). In 1995, she released an English language cover album, Brave Enough to Love, as well as her third Mandarin album, Woman in Love (被愛的女人). In 1996, Lee signed a contract with Sony Music Entertainment and her subsequent album, "Coco Lee" became the best-selling album of 1996 in Asia. In 1997, she released the Mandarin album "Sincere" as well as a self-titled Cantonese album. In 1998, the Mandarin album Di Da Di was released and sold to 1 million copies in less than 3 months.
One Of My favorites On Volume 2(all screwed up)
Provided to YouTube by Virgin Music Group The Game Goes On (feat. K-Rino & Z-Ro) · DJ Screw Bigtyme Recordz '95 - '99 Released on: 2010-01-07 Writer, Composer: Robert Earl Davis Jr Auto-generated by YouTube.
http://screwoftheday.tumblr.com/ Chapter 27 - Plots and Schemes
Provided to YouTube by Virgin Music Group Pimp Tha Pen (feat. Lil’ Keke) · DJ Screw Bigtyme Recordz '95 - '99 Released on: 2010-01-07 Writer, Composer: Robert Earl Davis Jr Auto-generated by YouTube.
flow session at dj screw's house
Provided to YouTube by Wreckshop Records So Real (Screwed Version) · Fat Pat · Mike D · Lil Keke Greatest Hits ℗ 2001 Wreckshop Records Released on: 2001-02-20 Main Artist: Fat Pat Featured Artist: Mike D Featured Artist: Lil Keke Lyricist: Patrick Hawkins Auto-generated by YouTube.
Provided to YouTube by CDBaby The Game Goes On · DJ Screw , K-Rino , Z-Ro The Legend ℗ 2001 Bigtyme Recordz Released on: 2001-01-01 Auto-generated by YouTube.
Provided to YouTube by Virgin Music Group After I Die · DJ Screw · Point Blank All Screwed Up, Vol. II ℗ Bigtyme Recordz/SoSouth Released on: 1995-08-01 Writer, Composer: Point Blank Auto-generated by YouTube.
Side A: 1. The Blackbyrds - Dreaming Of You 0:00 2. Brick - Push 6:40 3. Aurra - Make Up Your Mind 11:29 4. The Time - Get It Up 15:08 5. One Way Featuring Al Hudson - Pop It 22:03 6. Parliament - The Big Bang Theory 27:32 7. Tom Tom Club - Genius Of Love 33:19 8. Cameo - She's Strange 44:27 Side B: 1. William DeVaughn - Be Thankful For What You Got 51:16 2. Mtume - Juicy 54:32 3. Faze-O - Ridin' High 59:39 4. George Duke - Reach For It 1:05:48 5. One Way - Pull Fancy Dancer / Pull 1:11:48 6. One Way - Push 1:19:15 7, Yarbrough & Peoples - Don't Stop The Music 1:26:01 8. Bootsy Collins - Hollywood Squares 1:35:50
Diary Of The Originator - Chapter 57 - Wineberry Over Gold (Side A Disc 1 Track 3) Fat Pat - Freestyle (L.O.L. - I Wanna Be Free) Northside vs Southside Plex Keeping It Real RIP DJ Screw RIP Fat Pat RIP HAWK RIP Big Mello RIP Big Steve RIP Mr 3-2 RIP Big Moe RIP Big Pokey RIP Dat Boy Grace RIP BG Gator RIP D-Drew RIP Big Rue None of our videos are monetized. Check us out at thegreycoast.com
晴天 詞 周杰倫 曲 周杰倫 iTunes: https://itunes.apple.com/tw/album/qing-tian/id535824731?i=535824738&l=zh Panasonic廣告歌曲,春夏秋冬的戀曲,2003最貼心的情歌,溫暖的曲調,清新的歌詞,杰倫唱來絲絲入扣,一起約定,等到放晴的那天,共同來譜一段純純的愛。 【雙刀電影版】http://youtu.be/WM7K9mnLWzw 【雙刀】http://youtu.be/T4qPsRLjGCY 【懦夫】http://youtu.be/Xi_RBDWZaT0 【愛情懸崖】http://youtu.be/H5VQdhYh9rc 【東風破】http://youtu.be/qct0JLjaHDc 【妳聽得到】http://youtu.be/kLY11fv7fUk 【她的睫毛】http://youtu.be/gqzlB7Gla2E 【同一種調調】http://youtu.be/D0x09XJgyO4 【以父之名】http://youtu.be/9q7JOQfcJQM 【三年二班】http://youtu.be/_trE3M24kQY 【梯田】http://youtu.be/u9J99gB5psc ----------------------------------------------------------------------------------------- 【Connection with Jay Chou 周杰倫相關網頁】 ◎ Jay Chou FACEBOOK(臉書): http://www.facebook.com/jay ◎ Jay Chou YOUTUBE(視頻): http://www.youtube.com/JVRmuzic ◎ JVR Music Of...
Get the Super Simple App! ► http://bit.ly/TheSuperSimpleApp Play in any type of weather with The Roundabouts! Learning about the weather is fun! 🎶 Today is a sunny day. Let's go out and play, play, play! Today is a sunny day. Come and play with me! 🎶 PARENTS AND TEACHERS: Thank you so much for watching Super Simple Songs with your families and/or students. Here are some other places to find great Super Simple content: ► SUPER SIMPLE APP -- http://bit.ly/TheSuperSimpleApp Be the first to watch new Super Simple videos in the Super Simple App! Ad-free and designed for young learners. ► YOUTUBE KIDS -- http://bit.ly/You-Tube-Kids Designed to make it safer and simpler for young ones to watch online video, YouTube Kids includes a suite of parental controls so you can tailor the experience to...
Beabadoobee - Sunny Day Beatopia - Out Now -http://www.beabadoobee.com Directors - Luke Casey & Alexandra Leese Lyrics Know it’s been raining I swear I’m not lonely Always complaining that you never see me Call in the morning when you wake Maybe tomorrow we’re ok When it’s a sunny day I’ll keep you posted I promise I’m better With the sun we’ll leave my house I’m sorry for yesterday You know I don’t mean it I promise I’m better With the sun we’ll leave my house I’m sorry for yesterday Keep me here With your skin On mine again While you’re there It’s easy if I pretend Don’t know why I feel this way Treating all my friends the same Haven’t had enough to do But I’m not ignoring you Call in the morning when you wake Maybe tomorrow we’re ok When it’s a sunny day I’...
Provided to YouTube by The Orchard Enterprises sunny days · wave to earth · Daniel Kim 0.1 flaws and all. ℗ 2023 WAVY Released on: 2023-04-20 Producer: Daniel Kim Music Publisher: WAVY Auto-generated by YouTube.
Provided to YouTube by Universal Music Group Sunny Day · Akon · Wyclef Jean Freedom ℗ 2008 Universal Records, a Division of UMG Recordings, Inc. and SRC Records, Inc. Released on: 2008-01-01 Producer: Aliaune "Akon" Thiam Studio Personnel, Recording Engineer: Mark "Exit" Goodchild Producer: RedOne Studio Personnel, Asst. Recording Engineer: Mike Honeycutt Studio Personnel, Mixer: Leslie Brathwaite Studio Personnel, Assistant Mixer: Justin Trawick Composer Lyricist: Aliaune "Akon" Thiam Composer Lyricist: Nadir Khayat Composer Lyricist: N.W. Jean Auto-generated by YouTube.
LISTEN TO NEW SINGLE 'STUTTER' -SPOTIFY- https://open.spotify.com/track/5b6m97O0XLWniczYQK2akZ?si=b3fbed1a2e6a4fbc -iTunes- https://music.apple.com/us/album/stutter/1585526629?i=1585526630 -SOUNDCLOUD- https://soundcloud.com/graysonguard/stutter?si=724318e3558e49c08e530df24ef3fa10 FOLLOW on INSTAGRAM for new music: @graysonguard Check out my channel for all of New Akon singles from his new album, "Freedom." and MORE new music! LYRICS: Who'd ever thought that i would see this day.... Where i would see my ghetto life fade away... Cos i was lost and couldn't find a way... and now i look forward to every day....(welcome to my sunny day)... Block dont stop always stayed hot... No matter how the seasons got.. I still remember when they took me away.... Kept it ...
Stream 'sunny day' on my debut album 'summer camp' NOW: https://ffm.to/summercampalbum Come see me on tour: https://laylo.com/anees/m/tourtickets Follow Anees: Instagram: https://instagram.com/anees Tiktok: https://tiktok.com/@anees Facebook: https://facebook.com/anees Soundcloud: https://soundcloud.com/anees Twitter: https://twitter.com/aneestherapper Website: https://aneesofficial.com Listen to Anees: Apple Music: https://music.apple.com/us/artist/anees/1506924141 Spotify: https://open.spotify.com/artist/2HPqVfdPh9JkBSlFG5hK6h?si=7hsKGQuNSw6koj2Re_fY6w SoundCloud: https://soundcloud.com/anees Directed/Edited by - Mike O’Brien Director of Photography - Tony Zawahri Produced by Tony Zawahri, Mike O’Brien, Anees Starring - Anees, Priscilla Lam Gaffer / BTS - Darin Conrad VFX -...
Thanks for watching!
A new Inside Records release (Electro Posé label) Stream & Download here : https://backl.ink/147079440 ◆ Electro Posé ⊙ Spotify : http://bit.ly/elepose ⊙ Deezer : http://bit.ly/epdeezer ⊙ Apple Music : http://bit.ly/apepo ⊙ Soundcloud : http://bit.ly/scdepo ⊙ Facebook : http://fbl.me/epo ⊙ Instagram : http://bit.ly/instaepo ⊙ Twitter : http://bit.ly/ttepo ⊙ Subs to the channel : http://bit.ly/ytepo ------------------------------- Stream & Download : https://backl.ink/147079440 ------------------------------- ◆ MR TOUT LE MONDE II Spotify : https://open.spotify.com/artist/4MgxKih2gf4BgMkPVOfvrn?si=QX4NiItUTSyBKt7QEId7tg II Instagram : https://www.instagram.com/mrtoutlmonde/ II Facebook : https://www.facebook.com/MrToutlMonde II Soundcloud : https://soundcloud.com/mrtoutlemonde -------...
Robert Earl Davis, Jr. (July 20, 1971 – November 16, 2000), better known by his stage name DJ Screw, was an American hip hop DJ who was based in Houston, Texas. He was known as a central figure in the Houston hip hop community and was the creator of the now-famous chopped and screwed DJ technique. This creation led to his nickname of "The Originator".
Davis was recognized for his various mixtapes and albums mostly on a regional level, until after his death. His legacy was discovered by a wider audience when Houston hip-hop began reaching a national audience in 2005.
DJ Screw was born in Smithville, Texas. His father, Robert Earl Davis Sr., was a long-haul truck driver based in Houston. His mother Ida May Davis (who had a young daughter from a previous marriage), came to the area to be with her mother when her son was born in 1971. She returned to Houston, but the marriage was floundering; soon it would be over, and she and her kids moved to Los Angeles for a couple of years, then back to Houston, and returned to Smithville in 1980 when Davis was age nine.
[Lil Keke:]
I'm draped up and dripped out
Know what I'm talkin' 'bout
Three in the mornin, gettin' the gat out the stash spot
Fire up a fat sweet
Turnin' on the bulb lights
Hand on the wood grain
Ass on the tight white
I'm showin' naked butt in the great state of Texas
Home of the playas, so it never be no plexin'
So long we've been waitin'
Never ever hatin'
In Houston we Elbows, In Cali they Daytons
So 1996 you hoes better duck
Because the world gone drip candy and be all Screwed Up
Just pop in your grey cassette
Turn up your freakin' deck
Lend me your ear because the SOUTHSIDE finna wreck
Down here we smoke tree
Then let the world see true hidden talent like Screw and Lil Keke
Ain't no love for hatas and you bustin dick suckas
On the south side we stay paid MuthaFucka!
[Pocket Full of Stones - by UGK is in the background mix]
"I got a pocket fulla stones"
[DJ Screw:]
Lil Keke gone and tell 'em what time it is...
[Lil Keke:]
It's time to lay 'em down like a fresh set of dominoes
To all the playas, all the pimps, all the bitches, and all the hoes
Who's the man, who's the boss
Who's the nigga that payed the cost
I really don't give a damn cause I ain't the one who gonna take the
Loss
Grippin a grand up in the slant workin' the wood It's understood,
Flippin these fo's and slammin these doors,
Pullin' these girls, and wearing these clothes
Who in the the hell was able to tell the southside they had to chill
From hittin' that boulevard "con" belts and buckles, woman and grill
I'm poppin that trunk and smokin that skunk and pulling off candy red
Sittin on buck, not givin' a f**** and able to turn a head
Somethin' serious when I let go cause I got a way with words
I'm able to clown when using a noun to take the place of verbs
My lyrics go together like a pair of socks and shoes
My flow is slow because it's bolted down by DJ Screw
Take it from me, the boy Lil Ke, the H- The A- the R- and D
Menace to society
Born and raised to be a G
I grabs the "phone" go on and on
Two or three songs I won't postpone
Cause these lyrics comin' the very top of my dome
So many ways it pays
If you can flip the script by moving your tongue
And take a dose and listen close, promise that you'll be sprung
Jackers and hustlers, players and macks
Foreign doors and Cadillacs
Syrup codine that makes you lean and killer sweets rolled out the sack
All these things remain the same because I'm so able to win,