- published: 11 Mar 2016
- views: 20688255
'+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; })); }); -->
Give It Up may refer to:
"Give It Up!" ("Gibs auf!") is a short story by Franz Kafka written between 1917 and 1923. The story was not published in Kafka's lifetime, but first appeared in Beschreibung eines Kampfes (1936, Description of a Struggle, translated 1958). A comic-book adaptation of the story, illustrated by Peter Kuper, is included in Give It Up!.
Victorious: Music from the Hit TV Show is the debut soundtrack for the Nickelodeon TV series Victorious. The majority of the album was sung by the lead actress of the television series, Victoria Justice, with the Victorious cast being listed beside her. Some of the other singers on the album feature Ariana Grande, Elizabeth Gillies, Miranda Cosgrove and Matt Bennett. The majority of the album was written by Michael Corcoran, Dan Schneider, Savan Kotecha, Kool Kojak and CJ Abraham with Victoria Justice involved in the composition of "Best Friend's Brother" and Leon Thomas III on "Song 2 You".
The album was released August 2, 2011 by Nickelodeon Records, in association with Sony Music Entertainment. All of the songs on this soundtrack appear on previously aired episodes of both seasons of Victorious. The soundtrack debuted on the Billboard 200 at number 5 with over 40,000 copies sold. It also peaked at number one on the Billboard Kid Albums chart and the Billboard Top Soundtracks chart.
Arthur Herbert Fonzarelli (also known as "Fonzie" or "The Fonz") is a fictional character played by Henry Winkler in the American sitcom Happy Days (1974–1984). He was originally a secondary character, but was soon positioned as a lead character when he began surpassing the other characters in popularity.
Happy Days producer and writer Bob Brunner created both Arthur Fonzarelli's "Fonzie" nickname and his iconic comeback phrase, "Sit on it."
In 1999 TV Guide ranked him number 4 on its 50 Greatest TV Characters of All Time list.
Fonzie first appeared in the first episode of Season 1 and was one of only two characters (along with Howard Cunningham) to appear in all 255 episodes.
Fonzie is a Portuguese rock band from Lisbon, formed in 1996. Consisting of vocalist and guitarist Hugo Maia, guitarist David Marques, bass guitarist Carlos Teixeira, and drummer João Marques. It was nominated for "Best Portuguese Act" two times at the MTV Europe Music Awards in 2003 and in 2007. The band did three world tours playing in the four corners of the world for more than one time (USA, Japan, Australia, Singapore, UK, Brazil, Germany, Portugal, Spain, France, Belgium, Italy, Netherlands, Austria, Czech Republic, Sweden, Colombia, Venezuela, Ecuador, Chile, Argentina etc... Fonzie had shared the same stage with bands such as Linkin Park, Korn, Pennywise, The Offspring, Soulfly, Nofx, Millencolin, Jimmy Eat World, Lost Prophets, All American Rejects, My Chemical Romance, Black Eyed Peas, Muse, Misfits, Nickelback and more. Their music were featured on major music TV channels throughout the world such as (MTV, MTV2, MTV ASIA, NBC, Fuse TV, MCM) and was played in the most prestigious radio stations around the world. Their song "Gotta Get Away" were featured in American MTV series "Laguna Beach" and "MTV MADE".
Provided to YouTube by Epic/Legacy Give It Up · KC & The Sunshine Band All In a Night's Work (Expanded Version) ℗ 1982 Epic Records, a division of Sony Music Entertainment Released on: 2016-03-11 Composer, Lyricist: Harry Casey Producer: H.h. Casey Composer, Lyricist: D. Carter Producer: Rick Finch Auto-generated by YouTube.
Harry Wayne Casey started disco group KC & The Sunshine Band back in 1973. KC and the Sunshine Band is an American disco and funk band, founded in 1973 in Hialeah, Florida.Their best-known songs include the hits "That's the Way (I Like It)", "(Shake, Shake, Shake) Shake Your Booty", "I'm Your Boogie Man", "Keep It Comin' Love", "Get Down Tonight", "Boogie Shoes", "Please Don't Go" and "Give It Up". The band took its name from lead vocalist Harry Wayne Casey's last name ('KC') and the 'Sunshine Band' from KC's home state of Florida, the Sunshine State. The group had six top 10 singles, five number one singles and two number two singles on the Billboard 100 Chart. Also on the Toppop Channel: Please Don’t Go, Keep It Comin’ Love , Give It Up, Something’s Happening. Watch our great music vid...
Ariana Grande and Liz Gillies sing "Give It Up" in the Victorious episode "Freak the Freak Out"!
Music video by KC performing Give It Up. (C) 2015 Epic Records, a division of Sony Music Entertainment http://vevo.ly/ltT4ag
"Give It Up" by the Victorious Cast Listen to the Victorious Cast: https://VictoriousCast.lnk.to/listenYD Chorus: Give it up, you can't win 'Cause I know where you've been Such a shame you don't put up a fight That's a game that we play at the end of the night It's the same old story, but you never get it right Give it up #VictoriousCast #GiveItUp #OfficialAudio
Ariana Grande & Elizabeth Gillies - Give it up - Lyrics This is for Dida145
Artista: Elizabeth Gillies (Jade), Ariana Grande (Cat) Album: Victorious Música: Give it up NO COPYRIGHT INFRINGEMENT INTENDED ALL CREDITS TO THE OWNERS Redes sociais: Twitter: owenbraus Instagram: owenstuff_
Sweetener tour Atlanta,Ga
#KC #kcandthesunshineband #GiveItUp #remastered #hd #TopOfThePops 🔔 Subscribe & Turn on notifications to stay updated with new uploads "Give It Up" is a song by American disco group KC and the Sunshine Band, although it was simply credited as KC in many countries, including the US. Following the backlash against many disco artists on the charts at the beginning of the 1980s, the song was a comeback hit for the act in the US. Epic Records refused to release it; however, the independent Meca Records label showed its support and the song peaked at No. 18 on the Billboard Hot 100 in March 1984. The song had been an even bigger hit in the UK several months earlier, where it had hit No. 1 on the UK Singles Chart for three weeks in August 1983. It went on to become the 18th best-selling single...
"Give It Up!" (German: "Gibs auf!") is a short story by Franz Kafka written between 1917 and 1923. The story was not published in Kafka's lifetime but first appeared in Beschreibung Eines Kampfes (1936, Description of a Struggle, translated 1958).
Learn english through story English story English stories English listening Practice #learnenglishthroughstory #englishstories #englishlisteningpractice youtube link : https://www.youtube.com/c/ENGLISHPRACTICEPv @ENGLISH PRACTICE Please like and subscribe my channel, Thank you 🙏 Email ID : [email protected] Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for 'Fair Use' for purposes such as criticism, comment, news reporting, teaching, scholarship, and research, Fair use is a permitted by copyright statute that might otherwise be infringing, Non-profit, educational or personal use tips the balance in favor of fair use
Give It Up -- A parable by Franz Kafka. About the author -- Franz Kafka (1883 -- 1924) was an influential German author known for his novels and short stories. During his lifetime, he published only a few short stories but never finished any of his full length novels. A peculiar feature of Kafka's work is the extensive use of a characteristic particular to the German language allowing for long sentences that sometimes can span an entire page. For more videos log onto http://www.youtube.com/pearlsofwisdom Also find us on Facebook at https://www.facebook.com/pearlsofwisdomchannel Subscribe & Stay Tuned - http://www.youtube.com/subscription_center?add_user=pearlsofwisdom
This short story is very simple,but it makes you sad,cry and hurt, try to understand the plot then you will get what i mean okay?
This Race Called Life - a beautiful inspirational short-story is another Dare to do. story about life and how we live it and what to llok out for in this race called life!! Stay blessed everybody :) Support me: https://paypal.me/daretodomotivation Listen to your heart...be happy...don't give up and always believe! ===================================================================================================================== Hi everybody i write and speak most of the speeches myself, so if you need some material or want to do some sort of collaboration, feel free to contact me : [email protected] Speaker: Dare to do.MOTIVATION https://www.youtube.com/channel/UC5VP2Yr-U7PHyDKHQQfkH9w?disable_polymer=true =====================================================================...
feeling helpless, anxious, nervous, depressed or just sad? Watch this story and maybe it will put a little smile on your face :) Thank you si much for watching and feel free to leave a comment down below and STAAAAY BLESSED :) Support me: https://paypal.me/daretodomotivation Listen to your heart...be happy...don't give up and always believe! ===================================================================================================================== Hi everybody i write and speak most of the speeches myself, so if you need some material or want to do some sort of collaboration, feel free to contact me : [email protected] Speaker: Dare to do.MOTIVATION https://www.youtube.com/channel/UC5VP2Yr-U7PHyDKHQQfkH9w?disable_polymer=true =========================================...
Look who's back! Audrey's been waiting out all the Auradon drama at her favorite spa, but she's ready to spill the tea on the VKs... Watch Descendants 3 on Disney Channel and in the DisneyNOW app! Mal (Dove Cameron), Evie (Sofia Carson), Carlos (Cameron Boyce) and Jay (BooBoo Stewart) return to the Isle of the Lost to recruit a new batch of villainous offspring to join them at Auradon Prep. When a barrier breach jeopardizes the safety of Auradon during their departure off the Isle, Mal resolves to permanently close the barrier, fearing that nemeses Uma (China Anne McClain) and Hades (Cheyenne Jackson) will wreak vengeance on the kingdom. Despite her decision, an unfathomable dark force threatens the people of Auradon, and it's up to Mal and the VKs to save everyone in their most epic b...
🚨 SUBSCRIBE: http://bit.ly/GRMsubscribe 📲 FOLLOW: @grmdaily 📰 VISIT: http://grmdaily.com/
Part 1: https://youtu.be/SchIWlQIWRk Previously as Taylor disguised herself as her twin brother to join this all-boy military school, she got involved in the campus fantom case. And it got her off guard and accidentally leaked her one vital secret to its culprit ... Ellis!!! Better believe this guy's gonna take full advantage of it, one wrong move, and she's out of the school for good. On the other hand, there's this crazy girl Ivy, who's obsessed with her and wouldn't leave her alone for 1 minute. Needless to say, Taylor has a lot on her back, yet she never gives up though. What do you think? Will she manage to turn the tables or accept her defeat? Come watch and cheer on our Taylor! Don't Forget To Subscribe
Give It Up may refer to:
[ VERSE 1: MC Eiht ]
Yo, I got a word for a skee tryin to bust me
All they gotta do is just give up that pussy
Girls, save the drama, cause I know you're in heat
Spread your legs and get ready for the Compton meat
I'm a hound, cause the twat makes the Eiht go wild
Throw your legs on my shoulder, or doggy style
Got to play the role like a punk-ass skee
Next thing that you know is, you give it to me
Girls in Compton say they ain't with it
Save the drag, stupid bitch, in other words, quit it
Cause I deliver quick fast like Roto-Rooter
Say the dick ain't potent, crazy duck, I shoot her
First you tell me 'no', then you tell me 'yes'
In a week you're sayin 'maybe', then you say 'I guess'
??? Compton ain't the Eiht, so what
All I know is that I'm a pussy hound, and you got to give it up
[ CHORUS ]
(Give it up, you give it up
You know what's on my mind
Give it up, you give it up now
You been wasting too much time)
[ VERSE 2: Tha Chill ]
I know you're frontin like a virgin queen
But Tha Chill is on attack smooth, more like a hype sex fiend
Give it up, don't play dumb, sayin what?
I got a little love, because my hand's on your butt
Girls walk, girls talk, girls talk smack
Don't play him, cause Chill ain't goin out like that
Shake your tight butt while you rock to the beat
Then you hound like a female dog in heat
Girls, I see the games that you're playin
Moment I arrive in the pussy, bitch, start prayin
Kotex, I fill it, girls too serious
Down some satin to the head, then I fuck you on your period
My dick's on hard while I'm rhymin
I want the real pussy, to hell with the grindin
I don't show no mercy
So go ahead and curse me
Chill gives a fuck
So yo, give it up
(Give it up, you give it up)
(Make love to me)
(Make love to me)
(Give it up, you give it up)
(You know I will make love to you)
(I wanna fuck you)
(Give it up, you give it up)
(I want a blowjob, and I'm not kiddin)
(Give it up, you give it up)
(Wing-ding-ding-a-ling down your throat)
[ VERSE 3: MC Eiht ]
Not a drag, so why you play me like a kitten?
Straighforward to the point, girl, no bullshittin
We can get loaded, and as you get hot
Think a plot you can drop, yo, it pops on the twat
Juice me like a fruit, but you know it ain't cute
Stinky slut, Eiht'll give your punk ass the boot
Cause I'm the type of brother who don't waste time
With the fancy-ass dress and red roses and wine
I'm a Compton nigga, Compton got it goin
Peace to the Compton girls, because they hoein
So if another brother try to call you a skee
Fuck the shit that he's talkin, you can skid to E
[ VERSE 4: Tha Chill ]
Here's the final word to the girls that skip
Should they give it up, E? (Hell geah)
Chill is ready for the ultimate takin
Got no time for no bitch that's fakin
Let me be the first to break you in
Another skee comes along, and yo, I'm in like Flynn
You say it's too soon, I don't give a fuck
But if the E want some (Bitch, we got to toss you up)
It's simple, don't try to front like you don't know
But if you skee with Tha Chill, then you got to be a hoe
No draggin, no laggin, and please stop naggin
Chill is ready for the fuck
So yo, give it up
[ CHORUS ]
(Give it up, you give it up)
(We wanna fuck you)
(Give it up, you give it up)
(Compton's Most Wanted)
(Give it up, you give it up)
(Biiitch)
(I wanna fuck you too)
(Give it up, you give it up)
(Whose pussy is this?
Who's it?)
(Give it up, you give it up)
(It's yours) (yours) (yours)
(Yeah, I'm tryin to dog the best I can