- published: 06 Jun 2020
- views: 909
'+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; })); }); -->
Warren Clarke (26 April 1947 – 12 November 2014) was an English actor. He was known for his appearances in many films after a significant role as 'Dim' in Stanley Kubrick's Clockwork Orange and for numerous television appearances, including lead roles in the TV series The Manageress, Sleepers and Dalziel and Pascoe as Detective Superintendent Andy Dalziel.
Born Alan James Clarke in Oldham, Lancashire, his father worked as a stained-glass maker and his mother as a secretary. He left Barlow Hall Secondary Modern School, Chorlton-cum-Hardy, Manchester, aged 15 and began work at the Manchester Evening News as a copy boy. He later moved on to amateur dramatics and performed at Huddersfield Rep before working as an actor full-time. During this period he also decided to change his first name to Warren, a name he chose as his girlfriend of the time had a crush on Warren Beatty.
Clarke's first television appearance was in the long running Granada soap opera Coronation Street, initially as Kenny Pickup in 1966 and then as Gary Bailey in 1968. His first major film appearance was in Stanley Kubrick's Clockwork Orange (1971) where he played a 'droog' named 'Dim' opposite Malcolm McDowell. He appeared with McDowell again in the film O Lucky Man! (1973) and in the TV film Gulag (1985).
Lara Jennifer McAllen is a chart vocalist, singer/songwriter, and vocal producer.
Lara McAllen is the singer for the pop/dance music project Angel City. McAllen began dancing at age 5, and briefly pursued a modelling career before becoming a backing dancer for the pop singer Shakira at age 19. She then began her career as a dance music vocalist with Angel City when she signed her first recording contract with Ministry of Sound at age 20. Before Angel City, Lara found dancefloor success with Stuart's 2001 trance release "Free (Let It Be)", released through Incentive, an offshoot of Ministry of Sound.
While originally credited as a guest vocalist in Angel City, McAllen later joined the group as lead singer and performed all the tracks on the debut album "Love Me Right". McAllen had UK Top 10 records with Angel City before pursuing further work both in vocal production and songwriting. As a partner of the production company responsible for the Angel City records, McAllen worked alongside producers such as Jason Nevins, Rob Davis (Kylie Minogue) and Armin Van Buuren. She has also presented for various Sky Channels on programmes like FYC as well as featuring on TV shows such as Never Mind the Buzzcocks, CD:UK, Des and Mel and performing her debut single Love Me Right on Top of the Pops.
Something Good may refer to:
"Something Good" is a song by English alternative rock quartet alt-J from their debut studio album An Awesome Wave (2012). The song was released on 28 September 2012 as the album's fourth single. The song was written by Joe Newman, Gus Unger-Hamilton, Gwilym Sainsbury, Thom Green and produced by Charlie Andrew.
The song was featured in the 2013 version of BBC Two's "Tent" ident. It was also featured in the 2015 video game Life Is Strange.
A music video to accompany the release of "Something Good" was first released on YouTube on 18 September 2012 at a total length of three minutes and forty-two seconds. The video was shot in Los Angeles, CA by Brewer, a directing duo by brothers Alex and Ben Brewer and has earned them the 2013 Young Director Award for Non-European Music Video.
"Something Good" is a song released by Utah Saints in 1992. It was first included as the lead song on a seven-track EP titled Something Good, then later included on the Utah Saints album. "Something Good" contains a vocal sample from Kate Bush's "Cloudbusting" (originally appearing on her 1985 album Hounds of Love). Issued as a single, the track hit number four in the UK Singles Chart as well as number seven on the U.S. Hot Dance Club Play chart. The BBC used the song during its coverage of the Opening Ceremony of the Barcelona Olympic Games of 1992, and was also used for Carlton Television's pre-launch trailer.
In 2008 the track was remixed as "Something Good '08", and released with a new music video. Bush's vocal sample was re-recorded by Davina Perera — a West End singer/actress and former Pop Idol contestant — but remained the focal point of the song. The remix entered the top 10 on downloads alone, climbing to number eight after the 17 March CD release — the band's first top 20 hit in fifteen years. The video won the category for Best Dance Video at the UK Music Video Awards 2008.
Funny moment about Clint
We look back at the career of Warren Clarke, the distinguished actor best-known for the TV drama Dalziel and Pascoe, who has died at the age of 67. SUBSCRIBE for more at http://bit.ly/1qC9RqV Follow us on Twitter at https://twitter.com/Daily_E... Follow us on Facebook at https://www.facebook.com/Da... Check out the Express website at http://www.express.co.uk/
Nigel Havers & Warren Clarke's Cortina
Warren Alan James Clarke (26 April 1947 - 12 November 2014) "Pay Your Tribute" Twitter: https://twitter.com/RIP3ooo Facebook: https://facebook.com/RIP3ooo Google+: https://plus.google.com/103940510051527837606 "Share Your Good Thoughts" Tumblr: http://rip3ooo.tumblr.com Nowvia: https://www.nowvia.com/RIP3ooo Pinterest: http://www.pinterest.com/rip3ooo
One of those tunes that seems to have resurfaced recently and is doing the rounds. To everyone that asked here it is
Released: 27/09/04 http://www.beatport.com/release/drama/18876 Chi based DJ Rhythm has been there from the start back in 86. 'Drama' pumped in the clubs for a whole year, but never really reached the peak that Big room Vocal'ed deserved. Signed at WMC 04 by Defected. Dropped into the hand of the Big Room master Warren Clarke for some remix action and what ensued was the biggest tune since Power House 'What U Need' '" MASSIVE ! http://defected.com http://twitter.com/defectedrecords http://facebook.com/defectedinthehouse http://soundcloud.com/defectedrecords http://mixcloud.com/defectedrecords http://defectedrecords.tumblr.com http://instagram.com/defectedrecords http://open.spotify.com/user/defected.records
Warren Clarke biography: https://www.youtube.com/watch?v=dvpwZN_peNc Warren Clarke biography
Available now - https://www.simplyhe.com/products/the-locksmith-dvd Roland Pierce (Warren Clarke) is a locksmith and proud of it. He believes in an honest day's work, unlike his apprentice Barry who was born to party. Then Roland’s ex-wife is nearly killed by an intruder in an attempted robbery, and his life spins out of control. The police are certain they’ve got their man; a local junkie (John Simm) who is known for causing trouble. Roland is unconvinced though and decides to takes the law into his own hands.
Warren Clarke & Tara McDonald "Love Crazy" [HED KANDI RECORDS] Available from Beatport.com NOW!!!! https://www.beatport.com/en-US/html/content/release/detail/168095/Love%20Crazy
RTÉ Radio 1's weekday arts programme Arena mentions the death of veteran British television and film actor Warren Clarke, best remembered by many for his role as Detective Superintendent Andy Dalziel in the long-running BBC One crime drama "Dalziel and Pascoe", as well as for playing the character Dim in Stanley Kubrick's 1971 classic "A Clockwork Orange". R.I.P. Warren Clarke (1947-2014)
If you'd like to make a real and positive impact, please consider supporting me on Patreon so I can continue to create more videos: https://www.patreon.com/BofangChang Please like and subscribe if you enjoyed! Some of you have requested I make a Paypal for one-time donations: https://www.paypal.com/ncp/payment/4BW7PWHCNUY3U Join my YouTube channel as a member so you can get cool perks: https://www.youtube.com/channel/UCTuK9I5lHq8E971RMez3PHg/join Follow my Twitch for random livestreams: https://www.twitch.tv/bofangchang Join the Chang Gang: https://discord.com/invite/uSJaahT2Ak Instagram: https://www.instagram.com/bofangchang Twitter: https://www.twitter.com/BofangChang Music list, sources, and more of my insights for this video are available exclusively to Patrons. This is my 7th v...
Gateway Worship performing their song “Something Good” live. From the album: Greater Than Leader: Levi Smith Available here: Apple Music: http://smarturl.it/GATEWAYGreaterThan/applemusic iTunes: http://smarturl.it/GATEWAYGreaterThan/itunes Spotify: http://smarturl.it/GATEWAYGreaterThan/spotify Amazon Music: http://smarturl.it/GATEWAYGreaterThan/az Connect with Gateway Worship: Instagram | https://www.instagram.com/gatewayworship Facebook | https://www.facebook.com/gatewayworship Lyrics: [VERSE 1] When I’m in the roughest water I won’t go under I won’t drown When I’m in over my head I know that You won’t let me down [PRE-CHORUS] When I am broken And down to nothing [CHORUS] I know that You are always up to something good I know that You are always up to something good You’ll make a ...
MINISTRY VAULTS 🔓 Bringing you classic music videos from our dusty archives. Listen to the playlist: https://mosuk.lnk.to/vaults/ The official HD remaster of Utah Saints - Something Good '08. Subscribe to the channel for all the latest releases: https://mosr.lnk.to/YTSubscribe Follow Ministry of Sound: https://www.instagram.com/ministryofs... http://www.facebook.com/ministryofsound http://www.twitter.com/ministryofsound http://www.ministryofsound.com #ministryofsound #ministryvaults #ministryofsound2020 #utahsaints #somethinggood #music #newmusic #newmusicvideo #ministryofsoundanthems #ministryofsoundmixes #remaster #HD
Taken from the Mercury Prize nominated debut album 'An Awesome Wave'. Purchase online here http://smarturl.it/AnAwesomeWave http://www.altjband.com/ http://www.facebook.com/altJ.band http://twitter.com/alt_J #AltJ #SomethingGood #Vevo
“Something Good” from Gateway Kids Worship is available everywhere you listen to music! Song Title: Something Good Worship Leader: John Michael Howell Connect with Gateway Kids Worship: Website | https://www.gateway-music.com Connect with Gateway Worship: Instagram | https://www.instagram.com/gatewayworship Facebook | https://www.facebook.com/gatewayworship Connect with Gateway Church: Website | https://www.gatewaypeople.com LYRICS [VERSE 1] When I’m in the roughest water I won’t go under I won’t drown When I’m in over my head I know that You won’t let me down [PRE-CHORUS] When I am broken And down to nothing [CHORUS] I know that You are always up to something good I know that You are always up to something good You’ll make a way Whatever it takes There’s nothing Your love won’t ...
นั่งเล่น ในบ้าน เพลง "Something good" ในวันร้ายๆ ถ้ามองดีๆ อาจเห็นสิ่งดีๆ ในวันร้ายๆ วันที่เราล้ม สิ่งดีคือเราจะได้เห็นคนที่จริงใจห่วงเรา วันที่เราต้องออกจากงาน สิ่งดีคือเราจะได้มีเวลาทบทวนและอาจเห็นหนทางใหม่ที่ดีกว่าเดิม ดาวน์โหลดเพลง *4922301961 📞 ได้ทั้ง ริงโทน เพลงเต็ม เพลงรอสาย 🎧 รับฟังได้แล้วทาง Music Streaming Joox : http://bit.ly/31hnMf9 Spotify : https://spoti.fi/2YB9vrQ iTunes & Apple Music : https://apple.co/2ZovYJT TIDAL : https://tidal.com/browse/album/105316537 TrueID MUSIC : http://bit.ly/2GFckSy ------------------------------------------------------------------------------------ ติดต่อพูดคุยกันได้ที่แฟนเพจ Facebook : วงนั่งเล่น - Nanglen Band https://www.facebook.com/nanglen.page/ #วงนั่งเล่น #SomethingGood
For the first time ever, hear Christopher Plummer’s original vocals (dubbed by Bill Lee in the 1965 film and original soundtrack), featured on The Sound of Music’s Super Deluxe Edition – now available to stream or purchase. Watch the video above then stream the film on Disney+ and Hulu! 🍿 Order The Sound of Music Super Deluxe Edition, available in a variety of formats, here: https://found.ee/som-superdeluxe CONNECT WITH RODGERS & HAMMERSTEIN http://www.rodgersandhammerstein.com http://www.facebook.com/RodgersandHammerstein https://twitter.com/RnH_Org http://instagram.com/rodgersandhammerstein https://www.tiktok.com/@rodgersandhammerstein CONNECT WITH THE SOUND OF MUSIC https://www.facebook.com/TheSoundOfMusic https://twitter.com/SoundofMusic https://www.instagram.com/soundofmusic/ A...
Sierra Boggess and Rodney Gilfry performing Something Good from The Sound of Music in the BBC Proms 2010 - Rodgers and Hammerstein with the John Wilson Orchestra. I do not claim to own any content, this belongs to the original broadcaster. I am only uploading this for prosperity's sake.
ktalnews.com
Music video by Julie Andrews, Bill Lee performing Something Good (Audio). (C) 2015 Sony Music Entertainment
Warren Clarke (26 April 1947 – 12 November 2014) was an English actor. He was known for his appearances in many films after a significant role as 'Dim' in Stanley Kubrick's Clockwork Orange and for numerous television appearances, including lead roles in the TV series The Manageress, Sleepers and Dalziel and Pascoe as Detective Superintendent Andy Dalziel.
Born Alan James Clarke in Oldham, Lancashire, his father worked as a stained-glass maker and his mother as a secretary. He left Barlow Hall Secondary Modern School, Chorlton-cum-Hardy, Manchester, aged 15 and began work at the Manchester Evening News as a copy boy. He later moved on to amateur dramatics and performed at Huddersfield Rep before working as an actor full-time. During this period he also decided to change his first name to Warren, a name he chose as his girlfriend of the time had a crush on Warren Beatty.
Clarke's first television appearance was in the long running Granada soap opera Coronation Street, initially as Kenny Pickup in 1966 and then as Gary Bailey in 1968. His first major film appearance was in Stanley Kubrick's Clockwork Orange (1971) where he played a 'droog' named 'Dim' opposite Malcolm McDowell. He appeared with McDowell again in the film O Lucky Man! (1973) and in the TV film Gulag (1985).
Verse 1:
Microphone check 1, 2
Got my heat beneath the seat, it ain't nothing new
Just picked up Dre, that's my cousin
He got the E & J, so we buzzing
But I forgot to mention that he had a freak with him
Good Lord, he told me how she did him
He say the bitch want to be his main
But she free to let us run this train
Hoe don't know she dealing with professionals
Street niggas that's intellectual
When it comes to recognizing game, we pros
We let these bitches be bitches and hoes be hoes
That's the way love goes when I'm dealing with hoes
I get that pussy like I'm supposed
Other than that, I'll ignore you
But if you're with it, I got something good for you
Chorus: (2x)
Girl, I got something good for you
Guess what it is (what?)
Dick!
Verse 2:
It's a big fat black long dick
I can't afford to be buying you shit
It ain't that a motherfucker broke
Get off my shoulder, you motherfucking freeloader
Telling me your other man bought you a Caddy
But fuck that shit, I ain't a sugar daddy
I'm just a hustling motherfucker from 5th Ward
In these streets, trying to make ends meet
And my dick is about ready to meet you girlfriend
So put your pussy on the other end
I want to fuck you like a dog
In your combat boots and make you pussy say 'woof'
but first let me find myself a rubber
Before I fuck around and get in trouble
And stop talking about knowing me better before you put me in
Bitch you know I got a girlfriend
You look good from head to toe
But I ain't leaving my woman for a straight up hoe
You're looking for a wedding ring
But I can't do nothing but give you this ding-a-ling
Chorus (2x)
Verse 3:
I'm that nigga who can hit the pussy proper
And make a bitch jump around like a grasshopper
I don't take them out on the town like a sucker
I just meet a fine bitch and I fuck her
But some of y'all still don't know
Hoes like dick just as much as we like the pussy hole
You gotta let her know from the get
That her pussy ain't no more important than your dick
Cause I had this hoe the other night, bro
Yo, peep the scenario
She tried to take Willie D to the cleaners
But when she saw she couldn't she settled for the penis
Cause I rubbed that clit with me index
And made that pussy soaking wet
In the driver's seat of my Explorer
I had something good for her
Chorus (2x)