- published: 27 Apr 2009
- views: 823995
'+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:
"Blinded by the Light" is a song written and originally recorded by Bruce Springsteen, although it is mostly known by its 1977 #1 hit version recorded by Manfred Mann's Earth Band. Mann's remake was released in the United Kingdom in August 1976, where it reached No. 6 in the BMRB charts.
The song came about when Columbia president Clive Davis, upon listening to an early version of Greetings from Asbury Park N.J., felt the album lacked a potential single. Springsteen wrote this and "Spirit in the Night" in response.
According to Springsteen, the song came about from going through a rhyming dictionary in search of appropriate words. The first line of the song, "Madman drummers, bummers, and Indians in the summers with a teenage diplomat" is autobiographical—"Madman drummers" is a reference to drummer Vini Lopez, known as "Mad Man" (later changed to "Mad Dog"); "Indians in the summer" refers to the name of Springsteen's old Little League team; "teenage diplomat" refers to himself. The remainder of the song tells of many unrelated events, with the refrain of "Blinded by the light, cut loose like a deuce, another runner in the night".
Blinded by the Light is a 1980 television film starring Kristy McNichol and directed by John A. Alonzo. The film is based upon a Robin F. Brancato novel.
David Bowers is a teenager who runs away from home to join a quasi-religious cult. His sister Janet is determined to find him, but almost winds up getting brainwashed by the cult herself.
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.
Thats the one, Oy
How did he not find the baggy, with his hand in my shoe?
Way too close for me, ah well at least they allowed me through.
Should be a good night in here, Ramo in the main room,
People keep pushing me though, no reception on the phone.
And i'm thinkin'...
(Light are blinding my eyes)
They said they'd be here they said, they said in the corner,
And im thinkin'...
(People pushin' by, and walkin' off into the night)
These look well speckly, bit of green and blue,
Freeze is well cheap though, so i'll take three if i need to.
Right im on the plan, i wish the bouncers would go away,
Borrow water off this man, here goes nothing OK,
And i'm thinkin'...
(Lights are blinding my eyes)
Thats proper rank, that tastes like hairspray
And i'm thinkin'...
(People pushin' by, and walkin' off into the night)
I hate coming to the entrance, just to get bars on my phone,
You have no new messages, so why haven't they phoned?
Menu, write message, so where are you and Simone?
Send message, dans number, where've they gone?
And im thinkin'...
(Lights are blinding my eyes)
Why's the message pending? where the fuck are ya?
And i'm thinkin'...
(People pushin' by, and walkin' off into the night)
Hmm, brandy or beer? Waters a good idea,
Wish that bar lady'd appear; and come serve over here.
Where the fuck could they be? still not over in the corner,
This nights a tragedy, i keep thinking i saw her.
And i'm thinkin'...
(Lights are blinding my eyes)
No thats not them, thats not them either...
And i'm thinkin'...
(People pushin' by, and walkin' off into the night)
I'm still not feeling anything, this has got to be a dud.
It's been ages since i necked it, and smoked six tabs to the nub.
Belly's not even tingling, i just feel a bit pissed..
No-one looks like minglin', i cant see her or him..
And im thinkin'...
(Lights are blinding my eyes)
I'm gonna do another i think. Yeah, one more, these are shit.
And i'm thinkin'...
(People pushin' by, and walkin' off into the night)
These toilets are a piss take, queue's bigger than the door.
Gotta get rid of this pill taste, what are they chattin so much for?
Glad i'm not a girl in this place, they'll be here til dawn.
Sure my belly's tingling a bit, somethings happening im sure.
And im thinkin'...
(Lights are blinding my eyes)
Maybe i shouldnt have done the second one, i feel all fidgety and warm...
(People pushin' by, and walkin' off into the night)
Whoa, everything in the room is spinning, i think i'm going to fall down,
My heart's beating to quick, i'm fucking tripping out.
I wonder whether they got in, turned away no doubt.
Who cares, this is a tune coming in, that who where hes like..
Im thinkin'...
(Lights are blinding my eyes)
My eyes are rolling back, i'm rubbing my thighs with my hand.
And i'm thinkin'...
(People pushin' by, and walkin' off into the night)
Yeah yeah they cheer - can they see my hand in the air?
Need to wave 'em over here. Swear Simone's kissing Dan.
My head is twisted sever, body's rushing everywhere,
They could have texted me when they were near, but i'm fucked and i don't care.
(Lights are blinding my eyes)
What was i thinkin' about? Ah who cares, i'm maaaashed.
(People pushin' by, and walkin' off into the night)
Totally fucked, cant hardly fuckin' stand.
This is fuckin amazing; argh.