- published: 27 Apr 2009
- views: 816514
'+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; })); }); -->
Dennis Waterman (born 24 February 1948) is an English actor and singer, best known for his tough-guy roles in television series including The Sweeney, Minder and New Tricks.
His acting career spans over 50 years, starting with childhood roles in film and theatre, and including adult roles in film, television, and West End theatre. He is notable for the range of roles he has played, including for example horror (Scars of Dracula), adventure (Colditz), comedy (Fair Exchange), comedy-drama (Minder), musical (Windy City) and sports (The World Cup: A Captain's Tale), as well as police TV series like The Sweeney. He has appeared in over 25 films.
Waterman was born the youngest of nine children to Rose Juliana (née Saunders) and Harry Frank Waterman in Clapham,London. The family, which included siblings Ken, Peter, Stella, Norma and Myrna, lived at 2 Elms Road, Clapham Common South Side. Harry Waterman was a ticket collector for British Railways. Two older sisters, Joy and Vera, had already left home by the time Dennis was born, and another brother, Allen, had died as a young child.
Dennis Waterman (born 1948 in Myrtle Point, Oregon) is a professional poker player and writer. He has over 30 years of poker experience with reported career winnings of $1,230,316 as of 2015.
Waterman became a chess master by the age of 16 and played backgammon competitively.
In 2007, Waterman appeared in the Fox Sports Net poker tournament Poker Dome Challenge. Waterman won his preliminary and semi-final matches, earning a seat at the $1 million final table. He lost in heads-up play when his all in call with 10-7 suited failed to improve against his opponent's pocket nines.
In addition to his success at the tables, Waterman also writes articles for such outlets as Pokernews.com. A Buddhist, Waterman has also written several books on spirituality and teaches meditation. His spiritual side has earned him the nickname "Swami" at the tables.
Waterman lives with his wife Geewon in Sedona, Arizona.
Dennis Waterman may refer to:
Nu-Flow is the debut studio album by British R&B/hip hop group Big Brovaz, originally released on 4 November 2002. The album features five singles, of which four were UK top 10 singles—the title track "Nu Flow", which was a hit across Europe; "OK"; "Favourite Things" (the highest charting hit from the album) and "Baby Boy". The fifth single from the album was "Ain't What You Do", which peaked at number 15. The album peaked at number 6 on the UK Albums Chart and has been certified double platinum by the BPI.
Version 1:
Version 2:
Bonus videos:
Version 3:
"Nu Flow" is the debut single by British R&B collective Big Brovaz. It was the first single from their debut album Nu-Flow, released in late 2002.
"Nu Flow" was a huge success in the UK, peaking at number three on the UK Singles Chart and becoming one of the most successful UK hip hop songs, spending four and a half months inside the UK top seventy-five. The single was also a huge success in Australia, where it also peaked at number three and was their joint-highest peaking hit with "Favourite Things". In Australia, the song was certified Platinum. The accompanying music video was directed by Vaughan Arnell.
UK CD 1
UK CD 2
This is a list of characters for the British television and radio sketch show Little Britain (and its American spin-off, Little Britain USA).
Played By: David Walliams
Appearances: Season 3
Alan works for the Donkey Hospice in the town of Achingballs. After contributors give him some money, he blatantly places stickers on embarrassing body parts, such as the genital region or breasts and on someone's rear in a deleted scene. He makes one appearance in Series 3.
Played by: David Walliams
Episodes: Radio Show; Season 1, episodes 4 and 5
Catchphrase: I love you Anne and I need you Anne
Peter Andre is a royal BBC correspondent who gets sacked after first making bizarre and inaccurate claims about the Royal Family (such as Prince Charles having magical powers, describing The Queen as "The Main One" and mistaking Princess Eugenie for her mother, Sarah, Duchess of York) and then declaring his love for Princess Anne through song. He later attempts to enter a royal garden party to give her some drawings, despite being disheveled and without trousers, and is turned away by police. The character's name is a reference to the singer. There are also two deleted scenes in which Peter Andre appears backstage at the Royal Variety Performance and at a drug rehab centre.
Dennis Waterman singing LIVE I Could Be So Good For You live on Top Of The Pops 1980. More at www.minder.org
Remembered best for his tough guy roles in The Sweeney, Minder and New Tricks, celebrated British TV star Dennis Waterman has died, aged 74. Subscribe and 🔔: http://9Soci.al/KM6e50GjSK9 | Get more breaking news at 9News.com.au: http://9Soci.al/iyCO50GjSK6 ► 9News Lunch Podcast | Listen Weekdays at 12.30pm AEST: https://omny.fm/shows/the-9news-lunch-podcast FOLLOW 9News Australia ► Facebook: https://www.facebook.com/9News/ ► Twitter: https://twitter.com/9NewsAUS ► Instagram: https://www.instagram.com/9news/ Join 9News for the latest in news and events that affect you in your local city, as well as news from across Australia and the world. #9News #BreakingNews #NineNewsAustralia #9NewsAUS
Denis talks about working with Dennis Waterman in New Tricks.
Dennis Waterman ~ It's Alright, It's Okay ~ Dennis Waterman (born 24 February 1948). New Tricks Theme Song with Lyrics. New Tricks, starring Alun Armstrong, Amanda Redman, Dennis Waterman, and James Bolam, sees a group of ex-policemen brought out of retirement to form a veteran detective team, tasked with investigating unsolved crime cases. Created by Nigel McCrery, and Roy Mitchell. It's alright, it's okay, It doesn't really matter if you're old and grey. It's alright, I say, it's okay, Listen to what I say. It's alright, we're doing fine, It doesn't really matter if the sun don't shine. It's alright, I say, it's okay, We're getting to the end of the day. High tech, low tech, take your pick, Cause you can't teach an old dog a brand new trick. I don't care what anybody says (at the e...
DUETS - SERIES TVs Minder, Dennis Waterman, demonstrates his versatility when he joins Val Doonican LIVE on the Val Doonican Music Show in 1982.
Provided to YouTube by Parlophone UK I Could Be so Good for You · Dennis Waterman I Could Be So Good For You ℗ 1979 Parlophone Records Ltd, a Warner Music Group Company Composer: Gerard Kenny Composer: Patricia Waterman Auto-generated by YouTube.
In memory of Dennis Waterman (1948 – 2022), much admired by Matt Lucas and David Walliams. In this video, the great Dennis Waterman (played by David Walliams) finally finds a worthy role! Subscribe: https://bit.ly/SubscribeToLucasAndWalliams Welcome to Lucas and Walliams, home to the all the best moments from comedy duo Matt Lucas and David Walliams! We are going to be sharing iconic moments from Little Britain, Rock Profile, Come Fly With Me, along with many other appearances and skits throughout the years. Subscribe to our channel to keep up with all new moments and for some classic clips. This is a commercial channel from BBC Studios. Service & Feedback: https://www.bbcstudios.com/contact/contact-us/ #LucasAndWalliams #Lucas&Walliams #LittleBritain #MattLucas #DavidWalliams
(Subsequently titled "The Wolves are Howling" for disambiguation with future episodes.) Randal (Derek Jacobi), a secret service agent investigating Irish Republican Army kingpin Liam Macaulay (Peter Vaughan), enlists the help of John Neil, a former SAS operative with a background in undercover work, to go undercover in Belfast posing as ex-pat Jackie O'Connell, the estranged brother of Father Fergal (Ian McElhinney), the Macaulay's parish priest. Neil's job is to get find out when and how Macaulay plans to bring in a new shipment of arms and ammunition. (Plot spoilers from here) Neil succeeds in winning Macaulay's confidence, as well as the romantic attentions of his daughter Ellish (Clare Higgins) after saving her from an arson attack, but as suspicions about his true identity begin t...
The golden age of television may be upon us, but history was not always so kind. Join us as we reveal the 10 Worst Television Shows of All Time!
Get a total dose of Comedy, Action, Drama, Music, Dance, Sci-Fi and much more with Youtube Original Tv Series and shows. Watch the best and most famous original series in English on Youtube Premium. Watch Part 2 - https://www.youtube.com/watch?v=qH31e9LNSUM Note: Ranked and filtered on personal choice. You should also watch #sideSwiped Youtube Originals tv show. #youtubeoriginals #youtubeoriginalsshows #youtubepremiumseries #youtubepremium #youtube #sci-fi #cobrakaiyoutubeoriginals #cobrakai #bestyoutubeoriginalshows #weirdcityyoutube #manikpokhetra Origin Series: https://www.youtube.com/playlist?list=PLmosFzxUfkqUcZ-IsKJ7ZjJPQpiJvvu24 WAYNE ACTION: https://www.youtube.com/playlist?list=PLLtYcdNLQ8ZQZ9UsdinNFlqxkOwgydajt IMPULSE ACTION: https://www.youtube.com/playlist?list=PLIN...
To make adequate decisions, businesses have to combine their databases - their own view of the world - with non-proprietary data. However, combining diverse data from multiple sources is a complex task. Matching concepts and entities across disparate data sources and recognizing their mentions in texts requires disambiguation of their meaning - something that comes easy to people, but computers often fail to do right. Because an average graduate has awareness about wide set of entities and concepts and computers do not. Ontotext developed technology to build Big Knowledge Graphs and apply cognitive analytics to them to provide entity awareness – semantic fingerprints derived from rich entity descriptions. Ontotext’s Company Graph provides entity awareness about all locations on Earth...
There is so little information about this band on the net - they're mentioned on a Wikipedia disambiguation page, but that's about it; their music can't be found on YouTube or anywhere else that I've found, other than maybe Tune In (Round Window), which appeared on the television series Malcolm in The Middle (MiTM) as well as the show's season 1 soundtrack CD. I originally sought to buy this album over a decade ago. After discovering that I couldn't buy it I contacted the publisher (can't remember who that is now, possibly WEA?), and asked them for a promo copy. After a few months, I finally heard back that the promo copies weren't obtainable for some bizarre reason. A year and a half later, I found the CD on ebay. It was an advance (promo) copy, for that matter! It was in storage fo...
Dennis Waterman (born 24 February 1948) is an English actor and singer, best known for his tough-guy roles in television series including The Sweeney, Minder and New Tricks.
His acting career spans over 50 years, starting with childhood roles in film and theatre, and including adult roles in film, television, and West End theatre. He is notable for the range of roles he has played, including for example horror (Scars of Dracula), adventure (Colditz), comedy (Fair Exchange), comedy-drama (Minder), musical (Windy City) and sports (The World Cup: A Captain's Tale), as well as police TV series like The Sweeney. He has appeared in over 25 films.
Waterman was born the youngest of nine children to Rose Juliana (née Saunders) and Harry Frank Waterman in Clapham,London. The family, which included siblings Ken, Peter, Stella, Norma and Myrna, lived at 2 Elms Road, Clapham Common South Side. Harry Waterman was a ticket collector for British Railways. Two older sisters, Joy and Vera, had already left home by the time Dennis was born, and another brother, Allen, had died as a young child.
[Intro.]
Ladies and Gentlemen:
Boys and girls
It is my pleasure to
introduce to you all
The finest; the brightest;
the meanest; the strongest
The very best of them all
The south London collective group
Known as:
For goodness sake Roger who is it?
[Chorus]
This is big bro (bro)
Taking over the show
With this new flow, flow
You need to listen up
And feel this shit, shit
Cause we wont quit, quit
We make them hits
And stack them chips
Its Flawless I came for the doe
As soon as I step in the door
I see that youre hating my glow
The crew, the flow were
soon to blow
Were tired of being this poor
And having to sleep on the floor
And working a 9 to 5
Just like a five-dollar whore
Knowing were worth more
We simply had to settle the score,
Thats why you see these albums
And the singles in the store
Its Big Brovaz baby trying to
cash some major figures
You mess with my cheese and Ill switch just like Schwazernegger
[Chorus]
This is big bro (bro)
Taking over the show
With this new flow, flow
You need to listen up
And feel this shit, shit
Cause we wont quit, quit
We make them hits
And stack them chips
Its Dion
I bet you wont forget my name
I probably maybe gonna
get inside your brain
My family does the same
Its BBs time to reign
Were doing them platinum things
I know youre not ready for me
You move you lose
Cant wear my shoes
Cherise brand new
Me and my crew
Dont try our flow
If your tongue dont roll
Youll lose control
Were just way too cold
[Chorus]
This is big bro (bro)
Taking over the show
With this new flow, flow
You need to listen up
And feel this shit, shit
Cause we wont quit, quit
We make them hits
And stack them chips
Hey yo this is Jay Rock
And Ive got more
Skills then average
Put us together man were more than all of yawl can manage
Cause we be the baddest at it
This here took years of practice
And now its only more
money and its more madness
Stack up on a daily basis,
Weve travelled so many places
Switching so many chicks were mixing up the names with faces
They see the ice and they trip,
they like to ride in the whip
But all I wanna know is if these girls is riding the ahhhhh
Whos, whos, Whos this!
This is the N.A.D.I you didnt
think I was coming at ya
Giving you people a different
kind of big brother flava
I bet yawl didnt think I be riding these beats and making the paper
But I guess that Im a paper chaser playa and its in my nature
[Chorus]
This is big bro (bro)
Taking over the show
With this new flow, flow
You need to listen up
And feel this shit, shit
Cause we wont quit
We make them hits
And stack them chips
[Chorus]
This is big bro (bro)
Taking over the show
With this new flow, flow
You need to listen up
And feel this shit, shit
Cause we wont quit
We make them hits