- published: 22 Dec 2010
- views: 13434673
'+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.
Down South can refer to:
South Down can refer to:
South Down is an electoral constituency for the Northern Ireland Assembly.
The seat was first used for a Northern Ireland-only election for the Northern Ireland Assembly in 1973. It usually shares boundaries with the South Down UK Parliament constituency, however the boundaries of the two constituencies were slightly different from 1983 to 1986 as the Assembly boundaries had not caught up with Parliamentary boundary changes and from 1996 to 1997 when members of the Northern Ireland Forum had been elected from the newly drawn Parliamentary constituencies but the 51st Parliament of the United Kingdom, elected in 1992 under the 1983–95 constituency boundaries, was still in session.
Members were then elected from the constituency to the 1975 Constitutional Convention, the 1982 Assembly, the 1996 Forum and then to the current Assembly from 1998.
Some of the most high-profile MLA's for the constituency include Caitríona Ruane, Margaret Ritchie, and John McCallister.
The famous 35 minute freestyle session to celebrate Demo's birthday.
One Of My favorites On Volume 2(all screwed up)
Provided to YouTube by Ingrooves 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.
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
Download free http://GET1000FREEDOWNLOADS.INFO dj screw - Pimp Tha Pen - 3 N The Mornin
DJ Screw - Hellraiser (Tape) (1997) Hellraiser Freestyle - Hard Jarv, Mike D, Big Pokey & Big Moe Screw Mix
Provided to YouTube by Ingrooves Sailin da South · DJ Screw · E.S.G. 3 ‘n the Mornin’ 20th Anniversary (Deluxe Edition) ℗ Bigtyme Recordz/SoSouth Released on: 2016-12-02 Writer, Composer: Robert E. Davis Writer, Composer: Cedric Hill 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
Provided to YouTube by Universal Music Group Screw The World (Interlude) · Drake For All The Dogs ℗ 2023 OVO, under exclusive license to Republic Records, a division of UMG Recordings, Inc. Released on: 2023-10-06 Producer: DJ Screw Studio Personnel, Recording Engineer, Mixer: Noel Cadastre Studio Personnel, Mixer: Noah Shebib Studio Personnel, Assistant Mixer: OUPSiNG Studio Personnel, Mastering Engineer: Chris Athens Studio Personnel, Mastering Engineer: Dave Huffman Composer Lyricist: S. Barnes Composer Lyricist: J C Olivier Composer Lyricist: A. W. Felder Composer Lyricist: N. R. Harris Composer Lyricist: J. Hutchins Composer Lyricist: N. Jones Composer Lyricist: A O'Bryant Composer Lyricist: D. Reeves Composer Lyricist: L. Smith Composer Lyricist: K. Walker Au...
Stream Down South Here: http://smarturl.it/LoopsDownSouth Keep in touch with me here: http://.jeremyloops.com http://www.facebook.com/jeremyloops http://twitter.com/jeremyloops http://instagram.com/jeremyloops Keep in touch with Motheo Moleko here: http://www.facebook.com/motheomolekom... http://twitter.com/motheomoleko http://instagram.com/motheomoleko Edited by: Ewald Hoon Directed by: Jeremy Loops Shot by: Tash Montlake, Rio Allen, Rory Allen, Ben Brown, Chris Rogers, Makhulu Productions, Jeremy Loops Special thanks to my family, friends, and everyone who's supported me on this journey so far. Like so many people, it took me a long time to find what it is I wanted to do, and I went through all sorts of trials and tribulations to get there. When you feel like you've found it, and peopl...
Kodak Black - Down South [Official Audio] Pre-Order/Pre-Save 'Kutthroat Bill Vol. 1'- https://kodak.lnk.to/KutthroatBillVol1 Follow Kodak Black https://twitter.com/KodakBlack1k https://facebook.com/TheRealKodakBlack https://instagram.com/kodakblack https://soundcloud.com/kodak-black https://open.spotify.com/artist/46SHBwWsqBkxI7EeeBEQG7 The official YouTube channel of Atlantic Records artist Kodak Black. 2017 saw Kodak rack up impressive certifications including: his gold-certified album ‘Painting Pictures’, 2x platinum single “Tunnel Vision”, and his gold-certified track “Too Many Years (feat. PnB Rock)”. To round out 2017, Kodak Black was named on both Rolling Stone’s and Complex’s “Best of 2017” lists, as well as Billboard’s “21 Under 21” list. In the same year, he released ‘Project...
Album 'Folarin II' out now: https://wale.lnk.to/folarin2 https://twitter.com/wale https://www.instagram.com/wale/ https://www.facebook.com/waleofficial/ https://soundcloud.com/walefolarin https://open.spotify.com/artist/67nwj3Y5sZQLl72VNUHEYE?si=16hL3nd9QHy52Y3bOVWGbA http://www.walemusic.com/ #Wale #YellaBeezy #MaxoKream #DownSouth "Down South" Lyrics: Hook 2x Down south slangin Rollin with these hustlers Tryin to get rid a you hatas and you bustas V1 WALE What's the sense of it all? Pimpin, powder, and pussy tryin to make pennies See niggas lie on the stand guess hell ain’t harder than prison who knows In the 90s a traffic stop get you tickets a joke Now the find you a traffic stop get you riddled with holes We be living too fast we be sipping it slow One of my niggas was sellin...
down south from paid in fulls greatest hits
Kodak Black - Down South (Lyrics) ► For All Enquiries Email: [email protected]
Frog gigging or free hand fishing? We've got 20 questions for Daddy and Tiffany... and nothing's off limits! Party Down South premieres Thursday, January 16 at 10/9c on CMT.
Deuce Komradz - Down With The South
Official video for "In Hell I'll Be In Good Company" by The Dead South. Stream/Buy the full album, "Good Company": https://sixshooterrecords.lnk.to/GoodCompanyHY Stream the new single "Will The Circle Be Unbroken": https://sixshooterrecords.lnk.to/WTCBUHY Save / Order "Easy Listening For Jerks Part 1": https://sixshooterrecords.lnk.to/EL4JP1HY Save / Order "Easy Listening For Jerks Part 2": https://sixshooterrecords.lnk.to/EL4JP2HY --- Follow The Dead South Facebook: http://facebook.com/thedeadsouth Instagram: https://instagram.com/thedeadsouth Twitter: https://twitter.com/thedeadsouth4 TikTok: https://tiktok.com/@thedeadsouth Join The Dead South’s mailing list: https://www.thedeadsouth.com/newsletter --- Directed by Zach Wilson of Two Brothers Films. Recorded and Mixed by Orio...
SUBSCRIBE: https://www.youtube.com/user/WatchStadium Visit the Stadium website: http://www.watchstadium.com Follow Stadium on Twitter: https://twitter.com/stadium Like Stadium on Facebook: https://www.facebook.com/watchstadium Follow Stadium on Instagram: http://www.instagram.com/WatchStadium
Album 'Folarin II' out now: https://wale.lnk.to/folarin2 https://twitter.com/wale https://www.instagram.com/wale/ https://www.facebook.com/waleofficial/ https://soundcloud.com/walefolarin https://open.spotify.com/artist/67nwj3Y5sZQLl72VNUHEYE?si=16hL3nd9QHy52Y3bOVWGbA http://www.walemusic.com/ #Wale #YellaBeezy #MaxoKream #DownSouth "Down South" Lyrics: Hook 2x Down south slangin Rollin with these hustlers Tryin to get rid a you hatas and you bustas V1 WALE What's the sense of it all? Pimpin, powder, and pussy tryin to make pennies See niggas lie on the stand guess hell ain’t harder than prison who knows In the 90s a traffic stop get you tickets a joke Now the find you a traffic stop get you riddled with holes We be living too fast we be sipping it slow One of my niggas was sellin...
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,