- published: 16 Jun 2009
- views: 708051910
'+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; })); }); -->
Charles Hirsch "Chuck" Barris (born June 3, 1929) is an American game show creator, producer, and host. He is best known for hosting The Gong Show, and creating The Dating Game and The Newlywed Game. He is also a songwriter, who wrote the hit "Palisades Park" for Freddy Cannon and the author of Confessions of a Dangerous Mind, his autobiography, which became a film directed by George Clooney.
Barris was born in Philadelphia, Pennsylvania. He attended Drexel Institute of Technology where he was a columnist for the student newspaper, The Triangle. He graduated in 1953.
Barris got his start in television as a page and later staffer at NBC in New York City, and eventually worked backstage at the TV music show American Bandstand (then filmed in Philadelphia), originally as a standards-and-practices person for ABC. Barris soon became a music industry figure. He produced pop music on records and TV, but his most successful venture was writing "Palisades Park". Recorded by Freddy Cannon, it peaked at No. 3 on the Billboard Hot 100 for two weeks (June 23-30, 1962), the biggest hit of Cannon's career. Barris also wrote or co-wrote some of the music that appeared on his game shows.
"Family/Affair" is the second episode in season two of the American dramedy series Ugly Betty, which aired on October 4, 2007. It is the 25th episode in the series, which was written by Bill Wrubel and directed by Victor Nelli, Jr.
At a MODE staff meeting, Wilhelmina walks around reading a statement about pulling together in difficult times, like a family. And as usual, Betty reaches back for a bagel off of the food table and ends up knocking everything over. To add to Betty's embarrassment, Marc loudly whispers "Don't worry, nobody noticed" whilst holding a bagel aloft. Turns out that what Wilhelmina was reading was the letter from the editor going in the newest issue of MODE about the Meade family misfortunes, which has Betty wondering if the letter from the editor should be written by Daniel. Wilhelmina tells Betty that Daniel's been through a lot and needs a break, but as Betty protests that he's fine, Wilhelmina tells her to shut up.
American Dad!'s fifth season originally aired on the Fox network from September 28, 2008, to May 27, 2009. It consisted of twenty episodes and was released as two DVD box sets and in syndication. American Dad! follows the dysfunctional Smith family—father Stan, mother Francine, daughter Hayley, son Steve, the pet fish Klaus, and extraterrestrial alien Roger, all of whom reside in their hometown of Langley Falls, Virginia. Season 5, which premiered with the episode "1600 Candles" and ended with "Stan's Night Out", was executive produced by David Zuckerman, Kenny Schwartz, Rick Wiener, Richard Appel, Matt Weitzman, Mike Barker, and series creator Seth MacFarlane. Weitzman and Barker served as the season's showrunners.
Season 5 satirized various political and social topics, including incest, the coming out aspect of homosexuality, and appeal to fear propaganda. The season was met with generally positive reception from critics. Some went on to criticize the show for the level of inconsistency. However, the over-all development of the show during this season was praised by critics, saying that "the show has grown into its own over the past seasons." The season premiere was nominated for a Primetime Emmy Award for Outstanding Animated Program (for Programming Less Than One Hour) in 2009.
Family Affair is an album by The Bear Quartet, released in 1993.
REMASTERED IN HD! Official Music Video for Family Affair performed by Mary J. Blige. Follow Mary J. Blige Instagram: https://www.instagram.com/therealmaryjblige Twitter: https://twitter.com/maryjblige Facebook: https://www.facebook.com/maryjblige (C) 2001 Geffen Records #MaryJBlige #FamilyAffair #Remastered
►Follow Mary: https://linktr.ee/therealmaryjblige http://twitter.com/maryjblige http://facebook.com/maryjblige http://instagram.com/therealmaryjblige ► Mary J. Blige: What's The 411? Shirt - Blackhttps: - //amzn.to/49e7q9q ( Amazon ) 👉Music Disc Lyrics (Exclusive Merch Collection ) https://www.bonfire.com/store/music-disc-lyrics/ 👉Music Disc Lyrics ( Amazon ) https://www.amazon.com/shop/musicdisclyrics 👉I use Wondershare Filmora to create my music videos! https://shareasale.com/r.cfm?b=430559&u=4211874&m=44487&urllink=&afftrack= ------------------------------------------------------------------------------- Family Affair Lyrics Let's get it crunk up on Have fun up on, up in this dancery We got ya'll open, now ya floatin' So you gots to dance for me Don't need no hateration Hollerat...
A surprising romance kicks off comic consequences for a young woman (Joey King), her mother (Nicole Kidman) and her movie star boss (Zac Efron) as they face the complications of love, sex, and identity. Directed by Richard Lagravenese and written by Carrie Solomon, A Family Affair debuts June 28, only on Netflix. https://www.exploregeorgia.org/film Georgia’s Film Works Video: https://www.youtube.com/watch?v=ZyPVMo5Ac9k Watch on Netflix: https://www.netflix.com/title/81361154 About Netflix: Netflix is one of the world's leading entertainment services, with 270 million paid memberships in over 190 countries enjoying TV series, films and games across a wide variety of genres and languages. Members can play, pause and resume watching as much as they want, anytime, anywhere, and can change t...
Contains several different samples and is personally my favorite remix / version
Provided to YouTube by Universal Music Group Family Affair (Radio Edit) · Mary J. Blige Family Affair ℗ 2001 UMG Recordings, Inc. Released on: 2001-01-01 Producer: Dr. Dre Composer Lyricist: Mary J. Blige Composer Lyricist: Bruce Miller Composer Lyricist: Andre R. Young Composer Lyricist: Camara Kambon Composer Lyricist: Mike Elizondo Composer Lyricist: Asiah Kewis Composer Lyricist: Luchana N. Lodge Auto-generated by YouTube.
Mary J. Blige - Family Affair Cassiopeia on Spotify 🌸 : https://cassiopeia.lnk.to/o-yCQ "Family Affair" is out now. Follow Mary J. Blige: https://www.instagram.com/therealmaryjblige https://twitter.com/maryjblige https://www.facebook.com/maryjblige (Lyrics): [Chorus] Let's get it crunk up on Have fun up on up in this dancery We got y'all open, now ya floatin' So you gots to dance for me Don't need no hateration Holleration in this dancery Let's get it percolatin', while you're waitin' So just dance for me [Verse 1] Come on, everybody, get on up 'Cause you know we gots to get it crunk Mary J. is in the spot tonight And I'ma make it feel alright (Make it feel alright) Come on, baby, just party with me Let loose and set your body free (Oh) Leave your situations at the door So when you st...
Cherry (Ivana Alawi) confess everything to Paco (Sam Milby). Stream it on demand and watch the full episode on https://bit.ly/3cMQ5gv or download the iWantTFC app via Google Play or the App Store. Available for Free, Premium and Standard Subscribers in the Philippines. Available for Premium and Standard Subscribers Outside PH. Subscribe to the ABS-CBN Entertainment channel! http://bit.ly/ABS-CBNEntertainment Watch full episodes on iWantTFC for FREE here: http://iwanttfc.com Visit our official website! http://entertainment.abs-cbn.com http://www.push.com.ph Facebook: http://www.facebook.com/ABSCBNnetwork Twitter: https://twitter.com/ABSCBN Instagram: http://instagram.com/abscbn #AFAClifHanger #AFamilyAffair #AFamilyAffairTrueEpisode87 #ivanaalawiartist
Here are some of the best and funniest moments from season 5 which I believe broadly portray the type of comedy use in this season. The video includes insulting and making jokes about popular topics and relatable real life situations and personifying them. I DO NOT own any of the property and rights, the are owned by Twentieth Century Fox. I am simply giving commentary on what I believe to be some of the best and funniest moments. This is considered to be fair use. I am in no way using this video for monetization. American Dad is an animated show created by Seth Macfarlane which is about the Smith family consisting of Stan (Father), Francine (Mother), Steve (Son), Hayley (Daughter), Roger (Alien) and Klaus (Talking Fish). Other popular characters include Gregg and Terry (neighbours and...
Start watching American Dad with Season 1: https://www.youtube.com/show/SCXqQClnFnOi39HuhHXn4TMA?season=1 My tribute to the hilarious series American Dad and my favorite character: Roger Smith, the bisexual, amoral, drug-using, sociopathic alien. Fair use notice: For entertainment purposes only, non profit use. I do not own this material and no copyright infringement is intended. Support this amazing and hilarious show! NOTE: The episode guides are hopelessly mixed up. My series uses the Wikia Fandom version.
I’ve told you time and again that AIDS was the FBI. American Dad! is property of TBS and Fox.
Like comment and subscribe! For more videos
Who ate all the Pecan Sandies Peter?
While it’s hard to pick the best of Roger’s many great personas, here is a sampling of fan-favorite characters such as Ricky Spanish, Tearjerker, Legman, General Juanito Pequeño, and Jeannie Gold. #TBS #AmericanDad #SethMacFarlane SUBSCRIBE: http://bit.ly/TBSSub Download the TBS App: http://bit.ly/1qBbkMW About American Dad: Stan Smith leads the all-American family in this animated sitcom filled with wild and crazy extremes. Everyday life is taken to the limit as Stan applies the same drastic measures used in his job at the CIA to his home-life. Driven by machismo and the American dream, he is often blind to how horribly he fails at his attempts. This father may not know best but he never stops trying! Starring Seth MacFarlane (Stan Smith, Roger), Wendy Schaal (Francine Smith), Rachael...
From the episode "Great Space Roaster." Don't make Roger mad at you... I do not claim to own any American Dad! content. Please like, share and subscribe! ------------------------------------------------------------------------------------------------------------- Personal Blog: http://the54thdeadline.com Twitter: https://twitter.com/NhanFiction Become My Patron: https://www.patreon.com/nhanpham54 Donate to My PayPal: https://www.paypal.me/the54thdeadline Tumblr: https://the54thdeadline.tumblr.com/
oh, i'm singing a summer day song... like, comment, subscribe! let's watch barbra does celine together! #americandad #shorts #s05e01 season 5, episode 1: "in country... club".
I'm not a cat.......meow Appreciate your support! Patreon: https://www.patreon.com/AddictedtoAmericanDad PayPal: https://PayPal.me/Addicted2AmericanDad?locale.x=en_US
Charles Hirsch "Chuck" Barris (born June 3, 1929) is an American game show creator, producer, and host. He is best known for hosting The Gong Show, and creating The Dating Game and The Newlywed Game. He is also a songwriter, who wrote the hit "Palisades Park" for Freddy Cannon and the author of Confessions of a Dangerous Mind, his autobiography, which became a film directed by George Clooney.
Barris was born in Philadelphia, Pennsylvania. He attended Drexel Institute of Technology where he was a columnist for the student newspaper, The Triangle. He graduated in 1953.
Barris got his start in television as a page and later staffer at NBC in New York City, and eventually worked backstage at the TV music show American Bandstand (then filmed in Philadelphia), originally as a standards-and-practices person for ABC. Barris soon became a music industry figure. He produced pop music on records and TV, but his most successful venture was writing "Palisades Park". Recorded by Freddy Cannon, it peaked at No. 3 on the Billboard Hot 100 for two weeks (June 23-30, 1962), the biggest hit of Cannon's career. Barris also wrote or co-wrote some of the music that appeared on his game shows.
[Shareefa:]
Feel like niggaz taking us as a joke
Gotta show 'em whose boss
My team gotta eat
You niggaz be stupid, you come with that beef shit you losing
my squad of Guerillas no questions don't like us then sue us
a natural disaster I follow the footsteps of Luda
it's my time to shine
Don't need no co-signer I speak through my music I'm tighter
than any female in your camp, see I'm taking the title
these ghetto streets, these snakes hating on me
time to expose these chicks underlining me
[Lil' Fate:]
Cheah! Lil' Fate, nigga
G-Road, Southside
You niggaz can't compete, I do this in my sleep
dream about money, laying on million dollar sheets
Look at my feet, Louie, Gucci
to me bathing ain't cheap, truly who he?
Banky ears looking all fruity
ghetto-ass nigga got some money and turned bugee
Look at all them groupies, bopping, jocking
Fuck that shit, Lil' Fate's a problem, and you can't stop him
[Tity Boi:]
I got a buncha shit
I got a buncha shit
Buncha flows, buncha dough, me and a buncha hoes
drop some elbows on to ya, call 'em *Dusty Rhodes*
I done bought alot of ice, I don't fuck with clothes
I was a felon, you see me fail
Now the truck so big I need CDL's
only child that's poverty stricken
Project lifestyle, I will get rid of you nigga
quicker than a sack off in the trap
Do it like the dons do it
serve the next car that come through here
[Dolla Boy:]
We defeated the odds, my squad is the realest
end up reaching the stars, they say the sky was the limit
from the start to the finish the hardest that did it
anything different is not realistic, we're not listening
this is now a intro of a click called DT
Punch you in your shit folk, get wrong, silencer hit home
ugly when they hit home
tell them sucka niggaz we from Southside we been on, we been on
[Brolic D:]
Now I'm the hood's best I dun travel the long road up on this rap quest
strap vest young'n, North Carolina accent
Don't act amped, Mac 10 bring truth with its back stance
black bands on the money knots when I'm in the spot
posted whipping pigeons in the kitchen for them lemon drops
I'll fix ya when I hit ya clip hit ya for your lemon pop
nowadays I ain't on the block pitching but I'm in the spot shifting
for the top and the 6 is from the lot
[Perfect Harmony:]
Oasis of this desert, rap mirage higharchy
KN guns play for the your Suns like Barkley
So don't bother me, we got choppers like west coast or Orange County
born with that norm about me
They be high up like a balcony
inspiration get it out of me especially when they doubting me
I'll never go back to the Bedford Drive way of living
cuz I thrive on precision you're high off wisdom
Yes I am a Christian, I make niggaz listen
how my intermission one time found it's way in prison
cuz I don't act up, make you take a needle on
beam in the mattress. Ya hear me? Yeah!
[Small World:]
Since I been wit a DTP, man everything just been better man
better whips, better chains, better grip in the bank
Extra clips cuz the young boy gun got better aim
Young veteran, let me spell my name, S-M-A-L-L-W-O-R-L-D
you are on to me, cover y'all niggaz in dirt like pottery
My influence on this earth's surface is certain 4.4 certain to blow
you who it's curtains fo' when it's for Kurtis Blows
This here for the world to know, we fixing to blow like Merlin's nose
Twist chicks and curl they toes, then twist and twirl the dro
[Smoke:]
They say roses are red so is the gold on my neck
they say violets are and my diamonds are too
DTP, got me on the bubble like court top
since I met Luda I been playing diamond like shortstops
Sold rock, whiter than Caucasians
yellower than a coward tar hills in my red chain
bluer than Smurfette's face, see through like an X-Ray
thanks to Chak and Jeff lots of wealth
blocks and bells and stock and shares, I'm outta here
[Shawn J:]
Man, when it come to getting head I'm the local champ
the only male that get licked more than a postage stamp
It's the house and my garage, bought caine wit a green card
it's European that means that you're a pe-yon
Punch lines bruise egos, rap Zab Judah
don't get *Furious 2 Fast* and *Crash* like Luda
Get dashed on, Bobby Johnson that ass
got potatoes for haters, niggaz want beef, they get mashed on
You ain't know? Some motherfuckers say DTP, FBI, every motherfucker
[I-20:]
It's the verse that you been waiting on, from the nigga they be hating on
20 is the anchor every bitch is conversating on
Your crib got square feet, too much for me to talk about
you saving for your car note, my driveway's a parking lot
Eastside OG, they hate it when a nigga leave
I'm coming up in this world, you niggaz dry heave
This is my speed I been here from the first day
y'all niggaz can't take our spot, y'all just valets
[Ludacris:]
Motherfuckin right. You betta understand it man, it's a Family Affair
Disturbing Tha Peace. Ludacris on the microphone
And as I told you before, we just getting started
That's right. We don't die, we multiply, nigga
So whoever want it, come on and get it
Whatever you want, we could supply it
That's right dammit
Oh wait a second y'all thought I wasn't gonna rap on this motherfucker too?
I'm the boss nigga, look...
Motherfucker, I'm a monster in this game, I thought I told you before
fans so geeked up you think I sold them some blow
they sowed on the flo', this rap game I'm closing the do'
5 years in a motherfucking row, who want it? I got it
Cuz my raps are chaotic, your face blue like Hypnotiq
cuz I'm a multi-millionaire who still using Ebonics
or country grammar we gon' bananas in South Atlanta
Jesus was a carpenter so we're proud about cocking them hammers. Nigga