- published: 16 Jun 2009
- views: 63139019
'+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; })); }); -->
Dwight E. Grant (born March 6, 1974), better known by his stage name Beanie Sigel, is an American rapper from Philadelphia, Pennsylvania. He is a former member/artist of Damon Dash's Dame Dash Music Group and Roc-A-Fella Records where he had formed a close association with rappers Jay-Z, Freeway and other former and current artists on the Roc-A-Fella roster. His stage name comes from a street in South Philadelphia, the rapper's former stomping grounds where he worked alongside Senior Durham in wilson projects. He has sold more than two million albums worldwide.
In 2002, Sigel and much of the Roc roster starred in a Dame Dash-produced movie entitled State Property. Its release coincided with the creation and promotion of State Property, a group of artists signed to Roc-A-Fella that hailed from Philadelphia and organized by Sigel and Freeway. Its members included Peedi Crakk, the Young Gunz (Neef Buck & Young Chris), Oschino and Omilio Sparks. Their first collaboration was for the movie's soundtrack, an eponymous release that featured the original "Roc the Mic" by Sigel and Freeway. They followed up with 2003's The Chain Gang Vol. 2, featuring the single "Can't Stop, Won't Stop" by the Young Gunz; the record was nominated for a Grammy Award for Best Rap Performance By a Duo or Group.
Tip may refer to:
HIDDEN ERROR: Usage of "former_members" is not recognizedHIDDEN ERROR: Usage of "family" is not recognized
T.I.P. Crew is a bboy crew from South Korea. T.I.P. stands for Teamwork is Perfect. Founded in 1996 by Virus (Hwang Dae Gyun; 황대균), T.I.P is the first b-boy crew in Korea. The crew has won numerous awards around the world and are still ongoing to this day. They have also appeared in music videos, movies, TV shows and commercial films.
In May 2010, 3 members of T.I.P. were arrested for feigning mental illnesses to be exempt from the South Korean compulsory military service in which able-bodied men between the ages of 18-35 must serve in the military for a minimum of 2 years. The arrested crew members are Bboy Virus, Bboy Differ, and Bboy Random.
In 2007, T.I.P. were the winners of the UK B-boy Championships which was held in London. The UK B-Boy Championships are viewed as one of the world’s five major break dancing contests. The others are:
T.I.P. is the second Independent album by rapper Young Buck. It was released on November 8, 2005, through the independent label, Mass Appeal Entertainment. Guest appearances on the album include D-Tay, Rizin Sun, First Born and Bun B.
The album was recorded before Young Buck signed with G-Unit in 2002, but it was not released until after his 2004 solo debut album, Straight Outta Cashville.
T.I.P. sold more than 26,000 copies in its first week of release to debut at number 40 on the Billboard 200 albums chart. It also reached number 11 on the Top R&B/Hip-Hop Albums chart.
Stylus Magazine writer Evan McGarvey criticized the album's "meager" production values, and he noted that "Young Buck’s charms are alluring, if a little unrefined." McGarvey praised Young Buck for knowing "even then that two rappers make a song intrinsically different than one voice. That in itself is a lesson most rappers seldom learn as rookies." Steve Juon of RapReviews wrote that opening track "Blood in Blood Out" sounded similar to Young Buck's later work, providing the album with a "fairly promising" start. However, Juon added that "too much of this album is just plain mediocre", and that its release was an obvious attempt "to cash in on Buck's fame."
REMASTERED IN HD! Official Music Video for Feel It In The Air performed by Beanie Sigel. #BeanieSigel #FeelItInTheAir #Remastered
Provided to YouTube by Universal Music Group I Can't Go On This Way · Beanie Sigel · Freeway · Young Chris The B.Coming ℗ 2005 The Island Def Jam Music Group Released on: 2005-01-01 Producer: Aqua Studio Personnel, Recording Engineer: Shane "Bermuda" Woodley Studio Personnel, Mixer: Gimel "Young Guru" Keaton Composer Lyricist: Dwight Grant Composer Lyricist: N. McCarrell Composer Lyricist: C. Reis Composer Lyricist: L. Pridgen Composer Lyricist: T. Brocker Composer Lyricist: L. Mcleod Auto-generated by YouTube.
REMASTERED IN HD! Official Music Video for What We Do performed by Freeway ft. JAY-Z, Beanie Sigel. #Freeway #WhatWeDo #JayZ #BeanieSigel #Remastered
REMASTERED IN HD! Official Music Video for The Truth performed by Beanie Sigel. #BeanieSigel #TheTruth #Remastered
Beanie Sigel feat Freeway - Roc Da Mic HQ Beanie Sigel feat Freeway - Roc Da Mic (720p) HD
Queenzflip runs down on Beanie Sigal & Freeway & yell. about a Verzuz against Nore
REMASTERED IN HD! Official Music Video for Beanie (Mack B****) performed by Beanie Sigel. #BeanieSigel #Beanie #Remastered
N.O.R.E. & DJ EFN are the #DrinkChamps. In this episode, we chop it up with the legendary #BeanieSigel! Coming from South Philly, Beans shares stories of his come up and how he signed to the iconic Roc-A-Fella Records! He also talks about JAY Z, the "Hard Knock Life Tour," State Property and much much more! Make some noise for the great Beanie Sigel!!! 🏆🏆🏆 #interview Find REVOLT on TV here: https://revolt.tv/request-revolt Stay connected with REVOLT.TV here: + Subscribe now: http://bit.ly/REVOLT_Subscribe_Now Website: http://REVOLT.TV (Surf) Instagram: http://Instagram.com/REVOLTTV (Follow) Twitter: http://twitter.com/REVOLTTV (Follow) Facebook: http://www.facebook.com/REVOLTTV (Like) Snapchat: Revolt.TV (Add) About REVOLT.TV : Launched by Sean "Diddy" C...
Provided to YouTube by Universal Music Group Die · Beanie Sigel The Truth ℗ 2000 UMG Recordings, Inc. Released on: 1999-01-01 Producer: Daven Paul Vanderpool Producer: Eddie Scoresazy Producer: Daven Vanderpool Associated Performer, Rap Vocalist: Beanie Sigel Composer Lyricist: Daven Vanderpool Composer Lyricist: Eddie Scoresazy Composer Lyricist: Daven Paul Vanderpool Composer Lyricist: Dwight Grant Auto-generated by YouTube.
★ YouTube Channel: https://www.youtube.com/channel/UC-cY4X2sLECUhishGNiyofQ?sub_confirmation=1 Look! Bebefinn is learning how to walk after Mommy Bora. Tip-tap tip-tap. Hop, hop, hop! Let's walk and run with Bebefinn Family 🏃🏾♂️🏃🏻♀️ ---- ★Lyrics Watch me carefully! Walking, walking. Walking, walking. Hop, hop, hop. Hop, hop, hop. Running, running, running. Running, running, running. Now, let’s stop! Now, let’s stop! Count me in! Walking, walking. Walking, walking. Hop, hop, hop. Hop, hop, hop. Running, running, running. Running, running, running. Now, let’s stop! Now, let’s stop! Let’s try some new moves! Yes, yes! Count me in! Tiptoe, tiptoe. Tiptoe, tiptoe. Skip, skip, skip. Skip, skip, skip. Jumping, jumping, jumping. Jumping, jumping, jumping. Now, let’s...
Tip Tip Barsa Paani !! Ankita Bhattachariya 90's bollywood songs !! Alka Yagnik, Udit Narayan | Maa Studio #maa_studio #maa_studio_live
This is the incredible and heartwarming moment showing how waitress Ashley Barrett received a surprise $1,300 tip from customers who were dining at the Stonybrook Family Restaurant located in York, Pennsylvania on December 10. With over 4 million views on TikTok, Jamie Carmen, the customer carrying the conversation on video with Ashley, can be seen handing her the wad of cash. Carmen told Newsflare that he and his friends chipped in for the gesture and that Barrett is expecting her second child. This footage is being managed exclusively by Newsflare. To license this video email [email protected] or call: +44 (0) 203 937 6280 Clip ID: 531162 Subscribe to NewsflareBreaking: http://bit.ly/newsflare Facebook https://www.facebook.com/Newsflare Twitter https://twitter.com/Newsflare ...
Tiny Tim performing his song "Tiptoe Through the Tulips" live, originally released in 1968 and from the album "God Bless Tiny Tim." More from Tiny Tim: https://www.youtube.com/playlist?list=PLTNYdROqkHG0fhRQ2SL6Bww4HxOVzPhyF In 1968, Tiny Tim, known for his high-pitched singing, released a popular song called "Tip Toe through the Tulips." With just his ukulele, Tiny Tim sang this tune, and it became a hit. He even appeared on famous TV shows like Rowan and Martin’s Laugh In and the Tonight Show with Johnny Carson. The song itself, written by Al Dubin and Joe Burke way back in 1929, was a big success then too, staying at number one on the charts for ten weeks. It's about wanting to meet someone in a tulip garden for a romantic kiss under the moonlight. Although it's not clear if the songw...
follow my twitter: https://twitter.com/camman18_ ↓ ↓ ↓ FOLLOW ME EVERYWHERE ↓ ↓ ↓ ► LIKELY STREAMED LIVE ON TWITCH: https://www.twitch.tv/camman18 ► 2ND YOUTUBE CHANNEL: https://www.youtube.com/c/camman18VODS ► MY DISCORD: https://discord.gg/45tvHdhUPA ► TWITTER: https://twitter.com/camman18_ camman18 does another Minecraft challenge, a Minecraft, But challenge, but not Minecraft, But You Can't Touch Grass, Minecraft But You Can't Touch The Color Blue, Minecraft, But You Can't Touch Sand, Minecraft But You Can't Touch The Color Green, or any of his other Minecraft 1.17 challenges in 2021! Today camman18 plays not Minecraft, But Water Rises or Minecraft, But Lava Rises, or any other Minecraft but challenge like that, but Minecraft short from camman18! It was HILARIOUS. #camman18 #shor...
Produced by HYBS Music by HYBS Lyrics by HYBS Arranged by HYBS Bass by Akkaraphon Suwannamake Mixed & Mastered by Henry Watkins ---------------------------- Go follow HYBS on Facebook : https://www.facebook.com/hybsband Instagram : https://www.instagram.com/hybsband/ Twitter : https://twitter.com/hybsband ---------------------------- Tip Toe Take me back to the Ground cause girl You look fine as hell I’m not easily distracted But you’re acting like a magnet You pull me in I’ll be putting on a suit Be tip toeing to you If you’re down for it We got nothing else to do And nothing else to lose And I’m down for this If you’re in the mood We can take it to the moon Just like a movie scene Table for two No need to be fed I want you instead If you’re in the mood We can tip toe to the moo...
The official visualizer for Austin Rogers "Tip" - OUT NOW! Stream "Tip": https://austinrogers.ffm.to/tip Follow Austin Rogers: https://www.instagram.com/imaustinrogers https://www.tiktok.com/@imaustinrogers https://music.apple.com/us/artist/austin-rogers/1577801559 https://open.spotify.com/artist/3p1bUsnP0yXHSFp5PCLntq?si=VYlNGpvRR9u6Jz9tXh57xw #AustinRogers #Tip #OfficialVisualizer
Tipping in the United States is on the rise and experts are calling it tipflation. In the fourth quarter of 2022, the number of tips provided at full-service restaurants grew by 17% from the fourth quarter of 2021. Meanwhile the tip frequency at quick-service restaurants rose 16% during the same time period. Experts say that's because of the newer and sleeker-looking Point-of-Sale, or POS, systems by tech companies like Square, Toast and Clover, who also have increased their sales as a result. The pressure to tip well in front of the tip receiver, before a service is completed, or in front of other customers makes a difference for many. After customers swipe their credit card, they're typically prompted with three large tipping options on a screen. While businesses can opt out of the tippi...
Dwight E. Grant (born March 6, 1974), better known by his stage name Beanie Sigel, is an American rapper from Philadelphia, Pennsylvania. He is a former member/artist of Damon Dash's Dame Dash Music Group and Roc-A-Fella Records where he had formed a close association with rappers Jay-Z, Freeway and other former and current artists on the Roc-A-Fella roster. His stage name comes from a street in South Philadelphia, the rapper's former stomping grounds where he worked alongside Senior Durham in wilson projects. He has sold more than two million albums worldwide.
In 2002, Sigel and much of the Roc roster starred in a Dame Dash-produced movie entitled State Property. Its release coincided with the creation and promotion of State Property, a group of artists signed to Roc-A-Fella that hailed from Philadelphia and organized by Sigel and Freeway. Its members included Peedi Crakk, the Young Gunz (Neef Buck & Young Chris), Oschino and Omilio Sparks. Their first collaboration was for the movie's soundtrack, an eponymous release that featured the original "Roc the Mic" by Sigel and Freeway. They followed up with 2003's The Chain Gang Vol. 2, featuring the single "Can't Stop, Won't Stop" by the Young Gunz; the record was nominated for a Grammy Award for Best Rap Performance By a Duo or Group.
Get that dough, still huggin' the strip
Get that dough, get the dough nigga
Uhh uhh, sig' get that dough
Uhh yo, uhh yo get that dough
I'm sick of niggaz talkin' 'bout they whips, when they bustin' 'em out
Summertime come around, don't nuttin' come out
Snappin' on they bitch, cussin' her out
Mad 'cause they crack, ain't no crack, they sufferin' a drought
Man you know how mac play when I sling my butter
Take my show state to state like the ring ling brothers
Keep clowns high-wired off the shit I juggle
F.B.I. eyes spyin' from the shit I smuggle
Keep the trunk of the car lined with coffee grounds
The cops pull us over it throw off the hounds
Got a bitch that let me stash shit in the crib
Break her off, every week, to fix up her wig
Man I stay on a mission with whores
'Cause I get down and get around like the late Mr. Shakur
Stay in the kitchen with raw
I'm the shit when I whip, I always turn two into four
Yo, get your mind right, get your grind right
Till you get the shine right and get that dough
Stay on the low-low, duckin' the po'-po'
Tuck in the fo'-fo' and get that dough
You get your team right and that's the green light
To cut your cream right and get that dough
It won't stop y'all, until I drop y'all
I'ma hug the block y'all and get that dough
Yo, aiyyo I got plenty dough but there's more to make
And I'm the chef, I bake, I don't order cakes
If I'm short, shit you caught a break
I can make twenty look like twenty-eight off of water weight
I'm the shit when I'm twistin my wrist
In the kitchen with that thang that got fiends skitzin' to hit
From the drugs that I drug in the narcs be buggin'
I keep my eye on the block and a pie in the oven
Smokers come straight, I ain't breakin' off nuttin'
Got two thirty-eights, I can break you off a dozen
You know how Mac play, when it come to that yea
I got 'em locked up on the block like it's crack day
I fucks with the pipers, ducks from the bikers
Punks on the righteous, bust at the sheisters
Stay in the kitchen with a block of raw
Razor blade play partner straw, yo
Get your mind right, get your grind right
Till you get the shine right and get that dough
Stay on the low-low, duckin' the po'-po'
Tuck in the fo'-fo' and get that dough
You get your team right and that's the green light
To cut your cream right and get that dough
It won't stop y'all, until I drop y'all
I'ma hug the block y'all and get that dough
Yo, yo, aiyyo I cops that coke, cooks that coke
Chops that coke and give out perks work
Makes that dough, gets them ends
How you want it dog, pipe or syringe?
Aiyyo I hit the block quickly and lick up a fifty
Tear the highway like freeway Ricky
Spit it my way and pop shit sickly
Till the feds come and get me or the lead bullet hit me
Yo get your mind right, get your grind right
Till you get the shine right and get that dough
Stay on the low-low, duckin' the po'-po'
Tuck in the fo'-fo' and get that dough
You get your team right and that's the green light
To cut your cream right and get that dough
It won't stop y'all, until I drop y'all
I'ma hug the block y'all and get that dough
Yo get your mind right, get your grind right
Till you get the shine right and get that dough
Stay on the low-low, duckin' the po'-po'
Tuck in the fo'-fo' and get that dough
You get your team right and that's the green light
To cut your cream right and get that dough
It won't stop y'all, until I drop y'all