- published: 17 Apr 2020
- views: 36962
'+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; })); }); -->
Tony Humphries is a former Administrator of the British Indian Ocean Territory (BIOT), a British overseas territory in the Indian Ocean. Humphries was Administrator from February 2005 to December 2007.
Tony Humphries became a New York, US DJ in the early 1980s. He was one of the earliest proponents of house music and has been instrumental in spreading the genre on both sides of the Atlantic.
Humphries' work encompasses studio production and remixes, radio slots on KISS-FM and Hot 97 and DJ residencies at clubs including Club Zanzibar (NJ) and the Ministry Of Sound in London, UK.
Born in Brooklyn in 1957, Tony Humphries began collecting records at age ten. Humphries' passion for music was encouraged from a very early age. His father, Rene, had emigrated from Colombia some years earlier, before going on to lead the New York Combo. Rene "El Grande Combo" Humphries, as he was known, performed alongside salsa performers including Tito Puente.
Humphries began DJing at college and got his first professional gig in 1981 at the, then-new, New York station KISS-FM following a chance encounter with Shep Pettibone.
In 1982 Humphries got his residency at the Club Zanzibar, in Newark, New Jersey, home of the so-called "Jersey Sound".
Carry On may refer to:
Carry On is a 1927 British silent drama film directed by Dinah Shurey and starring Moore Marriott, Trilby Clark and Alf Goddard.
The Carry On franchise primarily consists of a sequence of 31 low-budget British comedy motion pictures (1958–92), four Christmas specials, a television series of thirteen episodes, and three West End and provincial stage plays. The films' humour was in the British comic tradition of the music hall and bawdy seaside postcards. Producer Peter Rogers and director Gerald Thomas drew on a regular group of actors, the Carry On team, that included Sidney James, Kenneth Williams, Charles Hawtrey, Joan Sims, Kenneth Connor, Peter Butterworth, Hattie Jacques, Terry Scott, Bernard Bresslaw, Barbara Windsor, Jack Douglas and Jim Dale.
The Carry On series contains the largest number of films of any British series; and, next to the James Bond films, it is the second-longest continually running UK film series although with a fourteen-year break (1978–92). Anglo Amalgamated Film Distributors Ltd produced twelve films (1958–66), and the Rank Organisation made the remaining nineteen (1967–92).
[The Paradise Exclusive Playlist] Mix The Vibe Playlist: https://bit.ly/MixTheVibe Love Times Playlist: https://bit.ly/LoveTimesPlaylist Chill Lounge Playlist: https://bit.ly/ChillLoungePlaylist Workout Playlist: https://bit.ly/TheParadiseWorkoutPlaylist City Cruise Playlist: https://bit.ly/CityCruisePlaylist Party On!!! Playlist: https://bit.ly/PartyOnPlaylist Please Subscribe!: https://www.youtube.com/c/theparadiseonkingstreet?view_as=subscriber http://www.kingstreetsounds.com/ http://www.facebook.com/kingstsounds/ http://www.soundcloud.com/kingstreetsounds/ http://www.twitter.com/kingstreetnyc/ Compiled and mixed by Tony Humphries Track List 1. Mateo & Matos feat. Shauna / Tension 2. Overtown feat. Shauna / Satisfaction (Oscar's Long ass Mix) 3. MOOD II SWING / Got To Have It 4. Reg...
Ministry of Sound Uk present a new series documenting 'pivotal moments in dance music history' Tony Humphries legendary sets at Ministry of Sound from his 1993 residency are now documented here. 1. AD'E -- "Change The World" (X Genetics mix) 2. Seven Grand Housing Authority -- "The Question" (Terence Parker's original version) 3. Masters At Work -- "I Can't Get No Sleep" (feat India -- Ken Lou 12′) 4. Yo Yo Honey -- "Groove On" (DJ Pierre dub) 5. The Daou -- "Surrender Yourself" (Ballroom revisited) 6. Lindy Layton -- "We Got The Love" (essential new mix) 7. Clivilles & Cole -- "A Deeper Love" 8. The Aloof -- "Purity" (Heller & Farley mix) 9. Martha Wash -- "Carry On" (Tee's Crazy mix) 10. Freedom Williams -- "Voice Of Freedom" 11. Glenn Underground -- "Future Shock" (Real Space) 12. The ...
GROOVE ODYSSEY 6TH BIRTHDAY & ALBUM LAUNCH Saturday 7th November @ Ministry of Sound - 23:00 - 06:00 * Event link: on.fb.me/1jqSnki * Ticket link: bit.ly/1O50KyP The Box: Tony Humphries Joey Negro Bobby and Steve PA: Natasha Watts Hanlei 103: Spen & Teddy Douglas – The Basement Boys CJ Mackintosh Neil Pierce Martin Lodge Funky P Baby Box: Bigger Ronnie Herel Sammy Confunktion Lloyd Life Buzzhard Selly J Loft: Joel S Kev Chase David Bailey Richie Smooth Lee Major Timez
Other Radio Recordings: https://www.youtube.com/playlist?list=PLadWtLlrSKjzE0ZV5cW1CH4Zv0oQ3mymJ House Tape Facebook: https://www.facebook.com/housetape
Track Listing 1. All Funked Up - Mother 2. Mings Incredible Disco Machine - Brother Love Dubs 3. Let's Dance - Mr. Peach 4. Movin' On - Roach Motel 5. Take A Ride - Club 69 6. Dreams - Gabrielle 7. Take It To The Top - New Dance Republic 8. London X Press - X-Press 2 9. Black Sky - Shakespear's Sister 10. Questions - Seven Grand Housing Authority 11. Slide On The Rhythm - Arizona & Zietia 12. Testament One - Chubby Chunks
*Some of the tracks in this set might be BLOCKED and MUTED by YOUTUBE due to copyright violation. Appreciate your understanding in advance. Artist INFO : https://www.facebook.com/ToruS.NohashiRecords/ UN-released mixes and BOOTlegs exclusively on BANDCAMP: https://torusnohashi.bandcamp.com/ My private COLLECTION of 90's HOUSE used & Mint VINYLs available on DISCOGS https://www.discogs.com/seller/NohashiRecordsToruS/profile Old dj LIVE sets archives : https://www.mixcloud.com/NohashiRecordsToruS/ TWITTER: https://twitter.com/Toru_S BEATPORT : https://pro.beatport.com/artist/toru-s/97621 Nohashi Records YOUTUBE : https://www.youtube.com/channel/UCVQigFKUw1T3mElkPsGTSfw
https://www.youtube.com/watch?v=umuwP8NCihMThe 5th annual Weeqhahic Park Unity House Festival newark new jersey CaptureD By Gene
Azuli presents Tony Humphries - A Collection of Club Zanzibar Classics (2003)
Official Audio by XXXTENTACION - Carry On (Audio) © 2017 Bad Vibes Forever / EMPIRE
Fun.'s music video for 'Carry On' from the album, Some Nights - available now on Fueled By Ramen. Celebrate the 10th anniversary of fun.’s breakthrough album and relive the magic of 'Some Nights'. Listen to the full album here: https://lnk.to/FunSomeNights Go behind the scenes of this video at http://youtu.be/3k4EvMh7xWk Directed by Anthony Mandler and featuring an original score by Andrew Dost Website: http://ournameisfun.com iTunes: http://smarturl.it/somenights Spotify: http://bit.ly/1dhwfAc Facebook: http://facebook.com/ournameisfun Twitter: http://twitter.com/ournameisfun Store: http://store.ournameisfun.com LYRICS Well I woke up to the sound of silence The cars were cutting like knives in a fist fight And I found you with a bottle of wine Your head in the curtains And heart l...
Pre-order our new album, Life Is But A Dream… Out June 2, 2023: https://a7x.lnk.to/libad New single "Nobody" is streaming everywhere now: https://a7x.lnk.to/nobody 2023 tour dates and tickets: https://www.avengedsevenfold.com/tour Official A7X World exclusive merch available here: https://a7xworld.com Avenged Sevenfold's "Carry On" from Call of Duty: Black Ops II.' Subscribe to more new music on Youtube- http://bit.ly/YbmcT8 Itunes- http://bit.ly/RNyT8o Facebook- http://on.fb.me/11J5jHK Twitter- http://bit.ly/XPOa8S Instagram- http://bit.ly/11Jn5dZ
Pre-order our new album, Life Is But A Dream… Out June 2, 2023: https://a7x.lnk.to/libad New single "Nobody" is streaming everywhere now: https://a7x.lnk.to/nobody 2023 tour dates and tickets: https://www.avengedsevenfold.com/tour Official A7X World exclusive merch available here: https://a7xworld.com Watch the official music video for Carry On by Avenged Sevenfold featured in Call of Duty: Black Ops 2. 🔔 Subscribe to the channel: https://youtube.com/c/avengedsevenfold?sub_confirmation=1 Follow Avenged Sevenfold: Facebook- https://on.fb.me/11J5jHK Twitter- https://bit.ly/XPOa8S Spotify- https://bit.ly/1hA3xR0 Instagram- https://instagram.com/avengedsevenfold Avenged Sevenfold is a rock band renowned for their hits “So Far Away,” “Hail To The King,” “Nightmare,” “Dear God,” “Afterl...
Provided to YouTube by Rhino Atlantic Carry On · Crosby, Stills, Nash & Young Deja Vu ℗ 1970 Atlantic Recording Corp. Engineer: Bill Halverson Percussion: Dallas Taylor Band Member, Vocals: David Crosby Producer: David Crosby Percussion, Vocals: Graham nash Producer: Graham nash Bass Guitar: Gregory Reeves Band Member, Vocals: Neil Young Producer: Neil Young Bass Guitar: Stephen Stills Producer: Stephen Stills Vocals: Stephen Stills Writer: Stephen Stills Auto-generated by YouTube.
Provided to YouTube by The Orchard Enterprises Carry On · Bobby Caldwell Carry On ℗ 1991 Big Deal Records Released on: 1991-10-24 Music Publisher: THE MUSIC FORCE LLC Auto-generated by YouTube.
My new album 'KYGO' is out now: https://kygo.lnk.to/kygothealbum Shop new merch: https://kygo.lnk.to/shop Kygo & Rita Ora’s “Carry On” out now featured in POKÉMON Detective Pikachu! http://smarturl.it/xCarryOn Follow Kygo: https://www.facebook.com/kygoofficial http://www.instagram.com/kygomusic http://www.twitter.com/kygomusic http://kygomusic.com Follow Rita Ora: https://twitter.com/RitaOra https://www.instagram.com/ritaora/ https://www.facebook.com/RitaOra/ https://ritaora.com/ Director: @jonawthin Executive Producer: @jamee3 @colinseyes @boyinthecastle line producer: @robinspears AD: @neekkp Cinematographer: @eliaslabot Editor: @emiaubry Stedi Cam: @g2arch Post Producer: @Dankarp Production Coordinator: @zubin_asaria Production manager: @pipstagrram Production Designer: @Chris...
Sexy and Steamy; Grown folks business! A snapshot of two strangers turned lovers. . . Written by Problem Child Produced by Parry Jack of Jack Spaniard Productions Riddim - Pop's Guitar Riddim . . Executive Producers LORD EDiT PATRICE ROBERTS Director LORD EDiT Assistant Director TROUBLE PATRICE ROBERTS Production Assistants LEO ANTON SUMMA HOMER Camera Operators TROUBLE KENNY AJODHA CONCEPTS Drone Operators SPYDAMANX Editor LORD EDiT Actors PATRICE ROBERTS ROB CHRISTOPHER RILEY CHEYENNE SKYE SPOOGY THE BOSS JASMINE DAISY Makeup Artist SHAWNA Hairstylist TEAM MAGGIE Stylist PATRICE ROBERTS VANESSA GRAHAM Special Thanks To BARNACLES LEO DEXTER THOMAS DEMARCO [Subscribe]http://tiny.cc/SubscribePatriceRMusic | [Follow] https://Instagram.com/patriceroberts1 ...
My Comedy Film Review of Carry On Camping 1969 DVD. #comedy #britishcomedy #review #dvd #film #movie
Get Olivia Holt’s debut Olivia EP here: Apple: http://smarturl.it/oholta1 Amazon: http://smarturl.it/oholtaa1 Google Play: http://smarturl.it/oholtagp1 Streaming: http://smarturl.it/oholtaws1 Sheet Music: http://mnot.es/1UgPlJS Follow Olivia http://facebook.com/officialoliviaholt http://twitter.com/olivia_holt http://instagram.com/olivia_holt Music video by Olivia Holt performing Carry On. (C) 2014 Walt Disney Records
Tony Humphries is a former Administrator of the British Indian Ocean Territory (BIOT), a British overseas territory in the Indian Ocean. Humphries was Administrator from February 2005 to December 2007.
When you're lost and you're lonely
And your only way is up
When your day rises from you
Like a mountain to its top
Look beside you and you will find me
I will guide you when your will is gone
So carry on, carry on, carry on
What ever comes and however painful, however long
When your hope has been denied you
I will walk beside you, carry on
All my life has been a battle
Fought within me with myself
You always know what the truth is
But the trick is to know yourself
I looked around me in the darkness
And you found me
When there was no one else
So carry on, carry on, carry on
Whatever comes and however painful, however long
When your hope has been denied you
I will walk beside you, carry on
Let me count the ways that I love you
Let me count the days that we have known
Show me a place to be with you
'Cos I can't do this on my own, on my own
So carry on, carry on, carry on
What ever comes and however painful, however long
When your hope has been denied you
I will walk beside you, carry on
So carry on, carry on, carry on
Whatever comes and however painful, however long
When your hope has been denied you
I will walk beside you, carry on
When your hope has been denied you