- published: 25 Oct 2009
- views: 76042302
'+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; })); }); -->
Todd Anthony Shaw (born April 28, 1966), better known by the stage name Too Short (stylized as Too $hort), is an American rapper, producer, and actor. He is best known for his hit songs like "The Ghetto" and "Blow the Whistle". Too Short is one of the very few musicians to have been able to collaborate with both 2Pac and The Notorious B.I.G. during the height of their careers.
Too Short is credited as being one of the pioneer rappers of West Coast hip hop. Many of his rap lyrics are about pimping, drug use & sexual antics.
Shaw was born and grew up in South Central Los Angeles, California. In the early 1980s, Shaw and his family moved to Oakland, California. He was a drummer in the band at Fremont High School in Oakland. In the mid 1980s, Shaw produced custom songs (called "special requests") for people with his high school friend, Freddy B. In 1985, Too Short had his first release, Don't Stop Rappin' which, along with the following three releases, featured raw, simple drum beats from a LinnDrum drum machine. This was also one of the first hip hop records to use the word "bitch" - a word which became one of the rapper's trademarks and was the focus of subsequent raps such as Ain't nothing but a word to me.
In golf, a hole in one or hole-in-one (also known as an ace, mostly in American English) is when a ball hit from a tee shot finishes in the cup. This awards the player a score of one for the hole. Holes in one most commonly occur on par 3 holes, the shortest distance holes on a standard size golf course. Longer hitters have also accomplished this feat on longer holes, though nearly all par 4 and par 5 holes are too long for golfers to reach in a single shot. While well known outside of golf and often requiring a well hit shot and significant power, holes in one are considered to also contain an element of luck. As such, they are more common and considered less impressive than other hole accomplishments such as completing a par 5 in two shots (an albatross). As of October 2008, a condor (four under par) hole-in-one on a par 5 hole had been recorded on four occasions, aided by thin air at high altitude, or by cutting the corner on a doglegged or horseshoe-shaped hole.
Holes-in-one ("aces") are also recorded in the sport of disc golf, in which a round plastic disc is thrown toward a metal basket-shaped target.
A hole in one is a golf shot where a player hits the ball directly from the tee into the cup with one shot.
Hole in one may also refer to:
Hole in One: American Pie Plays Golf (also known as ParFection: The Golf Movie) is a 2010 comedy movie starring Steve Talley. It is about a cool under graduate boy who gets tricked by some surgeons and they operate on him, giving him a set of breasts. Now, he has to earn money through golf for the reverse surgery. The movie was released by Universal Studios via Universal Pictures and launched in the United Kingdom on September 12, 2010. With a wide release in an additional 65 territories and countries. It is awaiting a US Domestic release. Universal 'Tagged' the movie as 'American Pie Plays Golf' and so many people have mistaken for it being an American Pie movie because Steve Talley, who appeared in American Pie Presents: The Naked Mile and American Pie Presents: Beta House stars in it. Further evidence shows that Steve Talley is called 'Eric Keller' in Hole in One and is called 'Dwight Stifler' in the American Pie movie Franchise series which shows the distinct differences between the movies. Box Office figures report $1,600,000 GBP in London England. Universal release Hole in One in a total of 65 countries. No other figures reported.
Life's Too Short is a British sitcom mockumentary created and written by Ricky Gervais and Stephen Merchant, from an idea by Warwick Davis, about "the life of a showbiz dwarf". Davis plays a fictionalised version of himself, and both Gervais and Merchant appear in supporting roles as themselves. The show began airing on BBC Two on 10 November 2011. Premium cable channel HBO, which co-produced the series with the BBC, have the US rights and began airing the series on 19 February 2012.
In January 2013, it was announced that Life's Too Short would end later in the year with a special that would bring the series closure. The one-hour special aired on 30 March 2013 in the UK and 5 July 2013 in the US.
The genesis of the show came when Davis worked with Gervais and Merchant in an episode of the second series of Extras, when he co-starred with Daniel Radcliffe. Gervais said that real Warwick is funny and tells great stories and Stephen Merchant commented of Davis that he helped come up with the idea. Gervais and Merchant approached the BBC about developing a show centred on a character based on Davis.
Life's Too Short is the sixth album by singer/songwriter Marshall Crenshaw and his first not on Warner Bros.
All songs written by Marshall Crenshaw, except where noted.
Six Feet Under, an American television drama series created by Alan Ball, premiered on the premium cable network HBO in the United States on June 3, 2001, and ended its original run of five seasons and 63 episodes on August 21, 2005. The series chronicles the Fishers, a family of funeral directors who struggle with relationships and their own personal demons, while trying to maintain a small funeral home. All five seasons are available on DVD in individual box sets and in a collected volume.
Official HD video for “Blow The Whistle” by Too $hort Listen to Too $hort: https://TooShort.lnk.to/listenYD Subscribe to the official Too $hort YouTube Channel: https://TooShort.lnk.to/subscribeYD Follow Too $hort: Facebook: https://TooShort.lnk.to/followFI Twitter: https://TooShort.lnk.to/followTI Instagram: https://TooShort.lnk.to/followII Website: https://TooShort.lnk.to/followWI Spotify: https://TooShort.lnk.to/followSI Lyrics: I go on and on Can't understand how I last so long I must have super powers Rap two hundred twenty five thousand hours Get it calculated do the math I made a thousand songs that made you move your ass And for the last three hundred months I made sixteen albums with me on the front and the bump Where you get your beats? I heard ninety three rappers say bitch l...
Provided to YouTube by Jive Gettin' It · Too $hort · Parliament Funkadelic Gettin' It (Album Number Ten) ℗ 1996 Zomba Recording LLC Released on: 1996-05-20 Associated Performer: Too $hort feat. Parliament Funkadelic Mixing Engineer, Producer: Shorty B Composer, Lyricist: George Clinton Jr. Composer, Lyricist: G.J. Cooper Composer, Lyricist: Todd Shaw Composer, Lyricist: Belita Woods Mixing Engineer: Ant Banks Composer, Lyricist: William Collins Auto-generated by YouTube.
http://www.kaspakapaz.com
From the project, The Pimp Tape. Stream: https://empire.lnk.to/ThePimpTape Official music video by Too $hort feat. Ty Dolla $ign, Jeremih, French Montana & Joyner Lucas performing Ain't My Girlfriend. 2018 Dangerous Music / EMPIRE http://vevo.ly/KL3qlY
Official Video for “The Ghetto” by Too $hort Listen to Too $hort: https://TooShort.lnk.to/listenYD Subscribe to the official Too $hort YouTube Channel: https://TooShort.lnk.to/subscribeYD Follow Too $hort: Facebook: https://TooShort.lnk.to/followFI Twitter: https://TooShort.lnk.to/followTI Instagram: https://TooShort.lnk.to/followII Website: https://TooShort.lnk.to/followWI Spotify: https://TooShort.lnk.to/followSI Ask your voice device to play Too $hort! Lyrics: Even though the streets are bumpy, lights burned out Dope fiends die with a pipe in their mouth Old school buddies not doing it right Every day it's the same and it's the same every night I wouldn't shoot you, bro, but I'd shoot that fool If he played me close and tried to test my cool #TooShort #Theghetto #shortdogsinthehou...
Provided to YouTube by Jive Just Another Day · Too $hort Get In Where You Fit In ℗ 1993 Zomba Recording LLC Released on: 1993-10-26 Producer: QD III Engineer: Rob Chiarelli Mixing Engineer, Recording Engineer: Ant Banks Composer, Lyricist: Quincy D. Jones Composer, Lyricist, Mixing Engineer, Recording Engineer: Todd Shaw Auto-generated by YouTube.
Official Video for "I'm A Player" by Too $hort Listen to Too $hort: https://TooShort.lnk.to/listenYD Subscribe to the official Too $hort YouTube channel: https://TooShort.lnk.to/subscribeYD Watch more Too $hort videos: https://TooShort.lnk.to/listenYD/youtube Follow Too $hort: Facebook: https://TooShort.lnk.to/followFI Instagram:https://TooShort.lnk.to/followII Twitter: https://TooShort.lnk.to/followTI Website: https://TooShort.lnk.to/followWI Spotify: https://TooShort.lnk.to/followSI YouTube: https://TooShort.lnk.to/subscribeYD Lyrics: And we sure do like to play I'm a player, and I'm playing just to play And we sure do like to play I'm a player, and I'm playing just to play #TooShort #ImAPlayer #OfficialVideo
Provided to YouTube by Jive Don't Fight the Feelin' · Too $hort · Rappin' 4-Tay Life Is... Too $hort ℗ 1988 Zomba Recording LLC Released on: 1989-01-31 Associated Performer: Too $hort ft. Rappin' 4-Tay Composer, Lyricist: Todd Shaw Mixing Engineer, Producer: Todd Shaw Co- Producer: R. Austin Composer, Lyricist: T. Goins Co- Producer: Ted Bohanon Mixing Engineer: Al Eaton Composer, Lyricist: J. Brown Composer, Lyricist: Anthony Forté Auto-generated by YouTube.
This stream is created with #PRISMLiveStudio
He needs a freak.
Todd Anthony Shaw (born April 28, 1966), better known by the stage name Too Short (stylized as Too $hort), is an American rapper, producer, and actor. He is best known for his hit songs like "The Ghetto" and "Blow the Whistle". Too Short is one of the very few musicians to have been able to collaborate with both 2Pac and The Notorious B.I.G. during the height of their careers.
Too Short is credited as being one of the pioneer rappers of West Coast hip hop. Many of his rap lyrics are about pimping, drug use & sexual antics.
Shaw was born and grew up in South Central Los Angeles, California. In the early 1980s, Shaw and his family moved to Oakland, California. He was a drummer in the band at Fremont High School in Oakland. In the mid 1980s, Shaw produced custom songs (called "special requests") for people with his high school friend, Freddy B. In 1985, Too Short had his first release, Don't Stop Rappin' which, along with the following three releases, featured raw, simple drum beats from a LinnDrum drum machine. This was also one of the first hip hop records to use the word "bitch" - a word which became one of the rapper's trademarks and was the focus of subsequent raps such as Ain't nothing but a word to me.
Sophisticated, educated
That's what I get from you
That's what I see in you...
You spoke the latest, fly young lady
Do what you wanna do
That's why I fucks with you, ooooooh
You still a freak, but you ain't out swingin' on poles
Choosin' on pimps, and bringin' 'em hoes
It's the same everyday, little dress and a thong
You just doin' yo' thang bein' sexy and grown
Sucker found out, he only wanna be friends
He can't deal with you, you make more money than him
I see you baby, droppin' that top in the Benz
Wasn't bought from the money that you got from him
It's those two degrees and that good ass job
You never act wild in the hood in your car
You so classy... so flashy
I ain't trippin' girl, you could be nasty
Got me a cute ass prosecuter
Too smart to let a nigga prostitute her
Before we fucked, she liked to read my rights
And afterwards give a nigga legal advice
She' so -
Sophisticated, educated
That's what I get from you
That's what I see in you...
You spoke the latest, fly young lady
Do what you wanna do
That's why I fucks with you, ooooooh
Y'all thought Too $hort was just all about pimpin'
Foul-mouth mack that talk bad about women
I guess - you ain't really pay attention
You heard "bitch" and cut it all, you ain't even listen
All I said was if the shoe fits wear it
And if it don't apply act like you didn't hear it
I know all about you went to school and did good
Made somethin' of yourself and you're straight from the hood
You came too far to fuck up and be nothin'
Fine broke ass bitch walkin' round sufferin'
Actin' like her shit don't stank
Ask her what she's doin' and her mind goes blank
Gotta stay on the grind, make your own figures
You wastin' time, waitin' on them niggaz
Cause if you catch me and you're tryin' to impress me
Ain't nothin' more sexy than a -
Sophisticated, educated
That's what I get from you
That's what I see in you...
You spoke the latest, fly young lady
Do what you wanna do
That's why I fucks with you, ooooooh
Call me after work
I see the little cuties, I don't have to flirt
You never have to question all the stuff I do
Cause they don't look, cook, or fuck like you
You's a real one, don't fight the feelin'
Let's do it all night, up by the ceilin'
I just want some lovin', I don't wanna fight
You don't want a husband, I don't want a wife
I spend nights at yo' house, you can stay at mine
Wake up and go home when it's daytime
You ain't all up under me, a pimp always know
With your Benz and your penthouse condo
And your fly ass fits, diamonds and whips
You're damn near leavin' me and I'm in the six
You just like your car, sexy and fast
I'll put the pedal to the metal, I'ma catch yo' ass
Sophisticated, educated
That's what I get from you
That's what I see in you...
You spoke the latest, fly young lady
Do what you wanna do