- published: 03 Nov 2022
- views: 213079
'+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; })); }); -->
Todd N. Terry (born April 18, 1967) is an American DJ, producer, and remixer.
Terry's productions extensively used samples blending the sounds of classic disco, the Chicago sound, and elements of hip-hop.
Terry began in the 1980s by DJing at parties in New York, playing Italo disco and hip-hop - then later, house music, upon its mid-80s emergence. He debuted, as Masters at Work, with 12” “Alright Alright” (1987, Fourth Floor) and an edit from this was then included on 'Chicago house' vanguard compilation “Jackmaster 1” (1987, D.J. International). Much of Terry's early work, in the late 1980s, is considered a milestone in the development of both progressive and modern deep house. He was responsible for releasing two of the house era's most respected crossover remixes: "I'll House You" by the Jungle Brothers (late-1988) and "Missing" by Everything but the Girl (Aug 1994).
Todd's tracks "Something Goin' On" and "Keep on Jumpin'" were both UK Top 10 hits, with the vocals on both provided by Jocelyn Brown and Martha Wash. Freestyle diva Shannon was the featured vocalist on the UK top 20 hit "It's Over Love" in 1997, which also topped the Billboard Dance/Club Play Songs Chart in the US, as did "Just Wanna Dance"/"Weekend".
Wendy Phillips (born January 2, 1952) is an American actress, noted for playing David Selby's character's last wife, Lauren Daniels, during the final season of Falcon Crest and for playing Gerald McRaney's wife, Claire Greene, on both Touched by an Angel and Promised Land. Other television series in which she has been a featured player have included A Year in the Life, Homefront and Studio 60 on the Sunset Strip. Among her movie works, there is a role in Airplane II: The Sequel and also on Bugsy.
Phillips was born in Brooklyn, New York, the daughter of Wendell Phillips and Jean Shelton, both of whom are actors and acting teachers.
She and her husband actor Scott Paulin have been married since 1981. They have a daughter, Jenny Dare Paulin.
Wendy Philips is a Canadian author. She grew up in Kamloops, British Columbia, and wrote her first book at the age of 11, and completed degrees in Journalism, English, Education and a Children’s Literature degree from the University of British Columbia in Vancouver, BC. Her past jobs have included journalism, bookbinding and teaching English. She has lived in Lesotho, Ottawa, South Africa and Australia, but currently lives in Richmond, British Columbia with her husband, son and daughter. Phillips currently works as a teacher-librarian at MacNeill Secondary School in Richmond, BC. Phillips is also an author of young adult fiction, whose first book Fishtailing won the 2010 Governor General’s Award for children’s literature.
Philip's first and only book Fishtailing was published in 2010 by Coteau Books after only two previous rejections. She was the 2010 winner of the Governor General's Literary Awards for Children's Literature in Ottawa, Canada. Fishtailing follows the lives of four fictional Vancouver high school students; Natalie, Tricia, Miguel and Kyle. The book switches perspectives between the four characters, showing how they interact and deal with violence, bullying and their desires to fit in. This book is unusual because it is written in verse instead of prose. Therefore, the book switches between the four central characters by displaying poems written by them. This book comes from Phillips’ experiences with students. As a Librarian and teacher, Phillips was exposed to both the positive diversity of different cultures of a multicultural society, as well as the negative experiences students’ bear at home that affect their school and social behaviour. With an equal representation of students, teachers and school counsellors in her novel, Phillips expresses the conflicts of getting through to students and identifying challenges from each role within the schools.
Follow our Best House & Club Tracks playlist: http://defstream.lnk.to/BestHouseClub. New York house legend, Todd Terry joined us in The Basement for a very special session... which coincides with a takeover of our Best House & Club Tracks playlist. Stream Defected Broadcasting House HERE: https://defected.lnk.to/BroadcastingHouse. Music: https://defected.lnk.to/Music Shop: http://defected.com/store Defected YouTube is the home of house music with artists including MK, Sam Divine, CamelPhat, Gorgon City, Monki, Louie Vega & Dennis Ferrer. Music: https://defected.com/music/releases/ Playlists: https://defected.com/music/playlists/ Radio: https://defected.com/music/radio/ #HouseMusicAllLifeLong
Todd will be joining us at Defected London FSTVL: http://defected.com/london. Music: https://defected.lnk.to/Music Shop: http://defected.com/store Defected YouTube is the home of house music with artists including MK, Sam Divine, CamelPhat, Franky Rizardo, Dennis Ferrer, Low Steppa and Amine Edge & Dance http://defected.com http://instagram.com/defectedrecords http://facebook.com/defectedrecords http://twitter.com/defectedrecords #HouseMusicAllLifeLong
Music video by Everything But The Girl performing Missing (Todd Terry Remix) [Official Music Video] Follow Everything But The Girl; Music Online - https://EBTG.lnk.to/Stream Website - https://EBTG.lnk.to/Web Facebook - https://EBTG.lnk.to/FB Twitter - https://EBTG.lnk.to/TW Lyrics: I step off the train I'm walking down your street again And past your door, but you don't live there anymore It's years since you've been there And now you've disappeared somewhere, like outer space You've found some better place And I miss you, like the deserts miss the rain And I miss you, like the deserts miss the rain Could you be dead? You always were two steps ahead, of everyone We'd walk behind while you would run I look up at your house And I can almost hear you shout down to me Where I always used to ...
► Download audio: http://blrrm.tv/br-app ► More here: http://blrrm.tv/toddterry ► School yourselves with a fine set from a true innovator. It's Todd Terry in the Boiler Room
Grammy Award nominated DJ/Producer Todd Terry hits top gear during the Defected summer takeover in Tisno! Recorded August 2017. - Subscribe to our channel: http://bit.ly/BE-AT-YouTube Facebook: http://bit.ly/BE-AT-Facebook Twitter: http://bit.ly/BE-AT-Twitter Instagram: http://bit.ly/BE-AT-Instagram
#ToddTerry,#JocelynBrown,#MarthaWash#SomethingGoinOn,#hd,#remastered 🔔 Subscribe & Turn on notifications to stay updated with new uploads! Jocelyn Lorette Brown is an American R&B and dance singer. Although she has only one Billboard Hot 100 chart entry solely in her name, she has an extensive background in the music industry and is well known in the world of dance music. Brown sang on 23 hit singles from the Official UK Singles Chart, 8 of which have reached the Top 20. Brown further developed her musical career in the late 1970s singing on records by studio-created bands like Revanche, Musique, Inner Life, Disco-Tex and the Sex-O-Lettes, Cerrone, Bad Girls, Chic, and Change,[2] later singing with the Salsoul Orchestra, Soiree or Dazzle in 1979. More in https://en.wikipedia.org/wiki/Joc...
▄ █ ▄ █ ▄ █ ▄ █ ▄ █ ▄ █ ▄ █ ▄ █ ▄ █ ▄ Handmade bracelets : http://www.kamabijoux.etsy.com/
Ministry Sessions present Todd Terry's DJ set at The Ministry, London, recorded February 2020. Subscribe to the channel for more videos and releases: https://mosr.lnk.to/YTSubscribe Follow Ministry of Sound: https://www.instagram.com/ministryofsound http://www.facebook.com/ministryofsound http://www.twitter.com/ministryofsound http://www.ministryofsound.com #ministryofsound #ministrysessions #toddterry #ministryofsoundrecords #ministryofsound2020 #theministry #music #newmusic #newmusicvideo #ministryofsoundanthems #ministryofsoundmixes
Todd Terry - Something's Going On (Full Mix HQ)
Wendy Phillips aka Shelley Green gives us her memories from working on Aaron Sorkin's "Studio 60 on the Sunset Strip" The George Lucas Talk Show is an improvised talk show in New York City hosted by comedian Connor Ratliff, who appears as George Lucas, the creator of Star Wars, and he interviews real guests as themselves in a panel format. The show stars Connor Ratliff, Griffin Newman and Patrick Cotnoir and airs on the Planet Scum Twitch channel. MERCH: https://www.planetscum.live/merch DONATE: https://paypal.me/georgelucastalkshow Twitter: @glucastalkshow @connorratliff @grifflightning @patrickcotnoir
[Artist: Wendy Phillips ] [Title: stay (Airscape Club Mix) ] [More Infos: http://www.discogs.com/Wendy-Phillips-Stay/master/111775 ]
REMASTERED IN HD! Official video of Wilson Phillips performing Hold On from the album Wilson Phillips. Buy It Here: http://smarturl.it/qlsvs8 Like Wilson Phillips on Facebook: http://www.facebook.com/wilsonphillip... Follow Wilson Phillips on Twitter: https://twitter.com/WilsonPhillips Official Website: http://www.wilsonphillipsmusic.com/ See More Videos: http://www.youtube.com/user/WilsonPhi... #WilsonPhillips #HoldOn #Remastered
U of T Scarborough's Indigenous Elder on Ojibwe traditions. #UTSC #UofT - University of Toronto Scarborough is a place of energy, enthusiasm and passion. Our commitment to inclusive excellence attracts the brightest learners, scholars and employees from around the globe. Our campus is located in one of the most diverse areas of the city - Toronto's vibrant east side neighbourhood of Scarborough. Our success has been made possible by the opportunity given to us by our Indigenous hosts to operate on their territory, and we cherish our continuing partnerships with these communities.
Beach Boy Brian Wilson's daughter Wendy now has four kids of her own but she leaves discipline to husband Dan. Can Jo help them share responsibility? ▶ SUBSCRIBE FOR MORE: http://bit.ly/SupernannyYT #Supernanny #JoFrost ▶ SUPERNANNY NEW SEASON 8: https://bit.ly/3fqGEPj ▶ WATCH FULL EPISODES HERE: http://bit.ly/SupernannyS2FE ▶ SUPERNANNY MOMENTS WE LOVE THE MOST: https://bit.ly/2MiofHH Supernanny is here to tackle tantrums, fights and naughty kids all over the world! Have you ever given your parents a hard time? How do you compare to these kids? Supernanny will help families get their behavior back on track- but it won’t be easy!! 😭 Expect lots of extreme tantrums, fighting kids and broken rules! 🎥 These episodes were originally on TV from 2004 to 2012, so it might look like it was...
Subscribe to TRAILERS: http://bit.ly/sxaw6h Subscribe to COMING SOON: http://bit.ly/H2vZUn Subscribe to CLASSIC TRAILERS: http://bit.ly/1u43jDe Like us on FACEBOOK: http://goo.gl/dHs73 Follow us on TWITTER: http://bit.ly/1ghOWmt The Wizard Trailer - Directed by Todd Holland and starring Luke Edwards, Luke Edwards, Vince Trankina, Wendy Phillips, Dea McAllister. The Wizard is a story about two brothers who run away from divorcing parents to cross the country and compete in a national video game championship. Universal - 1989
[Artist: Wendy Phillips ] [Title: stay (Tony Moran Original Mix) ] [More Infos: http://www.discogs.com/Wendy-Phillips-Stay/master/111775 ]
Such an uplifting and happy tune, I can just close my eyes and get lost in how floaty it is! BEAUTIFUL from Airscape, take me back to 2001 time machine please :D Some people thought its cheesy, but I've always loved it! They don't make them like this anymore. Enable channel notifications to know when my next favourite drops! --- #TRANCE #UPLIFTING #CLASSICTRANCE #MUSIC #TRANCEMUSIC #UPLIFTME #POSITIVETRANCE Visit Proper Trance Music on Facebook for more awesome TRANCE - https://www.facebook.com/pages/category/Musician-Band/Proper-Trance-Music-1381725998724148/ ------- DISCLAIMER: All rights go to "Wendy Phillips, Johan Gielen & Sven Maes" for producing this awesome track. If there is a problem please contact me and I will take the video down within 48 hours. It...
Carnie Wilson, Wendy Wilson and Chynna Phillips of Wilson Phillips reveal what it was like having famous musicians (Brian Wilson of The Beach Boys and John and Michelle Phillips of The Mamas and The Papas) as their parents. Later, the ladies take a bite of the delicious dessert Carnie personally made for Kelly the night before. #KellyClarksonShow #WilsonPhillips Subscribe to The Kelly Clarkson Show: https://bit.ly/2OtOpf8 FOLLOW US Instagram: https://www.instagram.com/kellyclarksonshow/ Twitter: https://twitter.com/KellyClarksonTV Facebook: https://www.facebook.com/KellyClarksonShow/ For even more fun stuff, visit https://kellyclarksonshow.com/ The Kelly Clarkson Show is daytime's newest destination for humor, heart, and connection, featuring music sensation and America’s original ...
Todd N. Terry (born April 18, 1967) is an American DJ, producer, and remixer.
Terry's productions extensively used samples blending the sounds of classic disco, the Chicago sound, and elements of hip-hop.
Terry began in the 1980s by DJing at parties in New York, playing Italo disco and hip-hop - then later, house music, upon its mid-80s emergence. He debuted, as Masters at Work, with 12” “Alright Alright” (1987, Fourth Floor) and an edit from this was then included on 'Chicago house' vanguard compilation “Jackmaster 1” (1987, D.J. International). Much of Terry's early work, in the late 1980s, is considered a milestone in the development of both progressive and modern deep house. He was responsible for releasing two of the house era's most respected crossover remixes: "I'll House You" by the Jungle Brothers (late-1988) and "Missing" by Everything but the Girl (Aug 1994).
Todd's tracks "Something Goin' On" and "Keep on Jumpin'" were both UK Top 10 hits, with the vocals on both provided by Jocelyn Brown and Martha Wash. Freestyle diva Shannon was the featured vocalist on the UK top 20 hit "It's Over Love" in 1997, which also topped the Billboard Dance/Club Play Songs Chart in the US, as did "Just Wanna Dance"/"Weekend".
[Intro:]
No souls to sell here mate...
They say The fool thinks himself to be wise man, but the wise man knows himself to be a fool.
I say that, to say this...
[Chorus:]
You might take my life,
But you can't take my soul!
You can't take my soul!
You might take my freedom,
But you can't take my soul!
You can't take my soul!
You might take my life,
But you can't take my soul!
You can't take my soul!
You might take my freedom,
But you can't take my soul!
You can't take my soul!
[Verse 1:]
They can't use my music to advertise for Coca Cola
They can't use my music to advertise for Motorola
They can't use my music to advertise for anything
The truth, I guess that's the reason the industry won't let me in
Refuse to be a product or brand, I'm human
Refuse to contribute to the gangster Illusion
Whether I'm number One, Number two, or Number Three
I'm unique and there will never be another me
And there will never be another you
Be proud of who you are, don't copy what the others do
They are not superior, you are not inferior
When we realize that is gonna be hysteria
Not commercial, always controversial what my pen has written
When they listen many have risen from the mental prison
That's why you don't see my face upon the television
But every time I try to sleep I hear the devil singing
[Chorus:]
You might take my life,
But you can't take my soul!
You can't take my soul!
You might take my freedom,
But you can't take my soul!
You can't take my soul!
You might take my life,
But you can't take my soul!
You can't take my soul!
You might take my freedom,
But you can't take my soul!
You can't take my soul!
[Verse 2:]
They can't use my music to advertise your watch or your car
Can't use it to advertise the drink you got at the bar
Can't use my music to advertise for anything
The truth, I guess that's the reason the industry won't let me in
My Integrity is the reason I'm thinking separately
Keep your three-sixty I can do this independently
It's likely I'm quite mad (why?)
Cause I say with ease slavery gave the streets Nikey's and I-pads
They don't like my rhymes, see my style is like a lecture
But I'd rather die, than smile with my oppressor
I'm an honourable student, with the facts and you're Ju-dish
Your not Hip Hop or Grime, your just McDonald's music
Not commercial, always controversial what my pen has written
When they listen many have risen from the mental prison
That's why you don't see my face upon the television
But every time I try to sleep I hear the devil singing
[Chorus: x2]
You might take my life,
But you can't take my soul!
You can't take my soul!
You might take my freedom,
But you can't take my soul!
You can't take my soul!
You might take my life,
But you can't take my soul!
You can't take my soul!
You might take my freedom,
But you can't take my soul!