- published: 28 Aug 2014
- views: 2910047
'+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; })); }); -->
Lee Elwood Holdridge (born March 3, 1944) is an American composer and orchestrator.
Holdridge was born in Port-au-Prince, Haiti, of a Puerto Rican mother and an American father, the botanist and climatologist Dr. Leslie Holdridge. While living in Costa Rica, at age ten, he studied the violin with Hugo Mariani, who was at the time the conductor of the National Symphony Orchestra of Costa Rica. Holdridge then moved to Boston, where he finished high school and studied composition with Henry Lasker.
As an adult, Holdridge moved to New York City to continue his music studies and begin his career as a professional composer. There, he composed chamber works, rock pieces, songs, theater music and background scores for short films, and eventually came to Neil Diamond's notice. Diamond then brought Holdridge with him to Los Angeles to write arrangements for his forthcoming albums. After several gold and platinum hits, the two collaborated on the Grammy Award winning film score for Jonathan Livingston Seagull.
The Pyramid (Tarakoikoia) is a small island south of Pitt Island in the Chatham Islands group of New Zealand. The site has been identified as an Important Bird Area by BirdLife International because it supports the only known breeding colony of Chatham albatrosses, with 4575 pairs recorded in 2001.
Coordinates: 44°25′56″S 176°14′27″W / 44.43222°S 176.24083°W / -44.43222; -176.24083
The Pyramid (1967) is a novel by the English author, William Golding. It describes the experiences of growing up in the 1920s in a small market town in England for the narrator, Oliver. It tells three separate stories from his childhood, resolving them many years later. All three stories end with Oliver seeing the other main character for the last time.
The Pyramid is a 2014 American found footage supernatural horror film directed by Grégory Levasseur, produced by Alexandre Aja, and written by Daniel Meersand and Nick Simon. The film stars Ashley Hinshaw, Denis O'Hare, James Buckley and Daniel Amerman.
The film was released on December 5, 2014, by 20th Century Fox and was widely panned by critics.
The film takes place during the Egyptian protests in 2013. An archaeological team discover a vast pyramid buried under the Egyptian desert; a pyramid that has three sides and not four like the pyramids of Giza, Egypt. Using satellite technology they determine the pyramid to be 600 feet (180 m) deep. A tunnel that leads into the apex of the pyramid is discovered and upon opening, releases toxic air which poisons a worker. Shortly afterwards the team is ordered to leave the site because of the uprising in Giza. The team, composed of father and daughter Miles and Nora Holden, argue over leaving the dig site because they are uncertain of when they can return. Eventually they agree on sending in a remote controlled robot to survey the first few rooms and document the pyramid. Shorty, the robot, enters the pyramid and after examining a small portion of the structure is attacked by an unknown creature and goes offline. They make their way inside to recover Shorty, and rapidly become lost, then a section of floor collapses beneath them, wounding and trapping Zahir (Amir K) pinning his leg to the ground by fallen debris. While attempting to climb back up, Sunni (Nicola) is scratched across the face by an unseen creature and falls. Leaving Zahir behind to find another way out, they hear him scream, and return to find only a bloody trail leading up the wall.
Generally, a battle is a combat in warfare between two or more parties.
Battle or battles may also refer to:
Fictional characters
The Battle is an album by American country music artist George Jones released in 1976 (see 1976 in country music) on the Epic Records label.
The Battle was Jones's second album following his divorce from Tammy Wynette and continued his mid-seventies commercial slide. Although it did slightly better than his previous album Memories of Us on the Billboard country album charts, reaching number 36, it was a far cry from what the singer had been accustomed to. Despite the absence of a hit single, Jones's singing is characteristically impeccable, especially on the title track, which peaked at number 14 on the singles chart. Roy Kasten of Amazon.com argues, "The extended metaphor of "The Battle," in which satin gowns become armor and tears deadly weapons, would be absurd in most hands; yet the story of a marriage disintegrating into war, but somehow finding peace, becomes transcendent in the hands of Jones..." The singer gives an equally moving vocal on David Allan Coe's "I Still Sing The Old Songs", which is topped off by producer Billy Sherrill having a lone violin playing "The Red River Valley" on the outro. The Battle also includes a song Jones wrote with Wynette called "Wean Me", in which Jones begs an unnamed woman to "Take this bottle from my hand" and laments his "childish ways," lines that may have been all too prescient for Wynette. In the liner notes to the 1999 reissue of the LP, Wynette is quoted, "It's funny, George and I have lived our life in our music. It's all there...the fans don't have to ask."
Malachai are a two-piece band from Bristol, England. They were renamed Malachai in 2010 from the previous spelling Malakai after the band discovered that the name Malikai was already used by an American rap artist. The members of the band are Gee Ealey (vocals) and DJ Scott Hendy (music). Their sound is a mix of beats and samples, drawing on a wide range of influences from BBC Radiophonic-type experimentalism through 'Golden Era' Hip-Hop to 1960s Psyche Pop.
Discovered by Geoff Barrow from the Bristol based band Portishead, Malachai (then as Malakai) released a limited edition 12" on Barrow's Invada Records record label called Fading World. This track was used as the music to accompany the I Count: Stop Climate Chaos video that first aired at the 2007 Glastonbury Festival. It was directed by Gerald McMorrow, whose film Franklyn also contained four Malachai tracks. In 2012 Snowflake provided the background ambience for the Lexus Walk the Walk All Weather Drive TV commercial.
Watch FREE FULL MOVIES in exclusive 👉🏼 https://bit.ly/3woTiHZ THE PYRAMID Official Trailer (2014) HD directed by Grégory Levasseur ► Download APP (iOS): http://goo.gl/EyzIaF ► Download APP (Android): http://goo.gl/AOLpgm ► Click to Subscribe: http://bit.ly/SubFIN A team of U.S. archaeologists unearths an ancient pyramid buried deep beneath the Egyptian desert. As they search the pyramid's depths, they become hopelessly lost in its dark and endless catacombs. Searching for a way out, they become desperate to seek daylight again. They come to realize they aren't just trapped, they are being hunted. Release date: 5 December 2014 (USA) Director: Grégory Levasseur Cast: Ashley Hinshaw, James Buckley, Denis O'Hare Genre: Horror Country: USA Production Companies: Fox International Productions,...
How I dub all my channels into 28 Languages with AI: https://www.clonedub.com/ For copyright contact: stienlemane2379(at)gmail.com Welcome to Futureunity, where we explore the fascinating world of science, technology, and the universe! From the inner workings of the human body to the outer reaches of space, we delve into the latest and most interesting discoveries that are shaping our world. Whether you're a science buff or just looking for some mind-blowing facts, we've got you covered. Join us as we uncover the mysteries of the world around us and discover new frontiers in the fields of science and technology. Get ready for a journey. Please remember that our videos are purely made for entertainment purposes only. Our information may not be correct. Enjoy, but question and explore furt...
Subscribe to TRAILERS: http://bit.ly/sxaw6h Subscribe to COMING SOON: http://bit.ly/H2vZUn Like us on FACEBOOK: http://goo.gl/dHs73 Follow us on TWITTER: http://bit.ly/1ghOWmt The Pyramid Official Trailer #1 (2014) - Horror Movie HD The ancient wonders of the world have long cursed explorers who've dared to uncover their secrets. But a team of U.S. archaeologists gets more than they bargained for when they discover a lost pyramid unlike any other in the Egyptian desert. As they unlock the horrific secrets buried within, they realize they aren't just trapped; they are being hunted. The Movieclips Trailers channel is your destination for the hottest new trailers the second they drop. Whether it's the latest studio release, an indie horror flick, an evocative documentary, or that new RomCom...
How I dub all my channels into 28 Languages with AI: https://www.clonedub.com/ For copyright contact: stienlemane2379(at)gmail.com Welcome to Futureunity, where we explore the fascinating world of science, technology, and the universe! From the inner workings of the human body to the outer reaches of space, we delve into the latest and most interesting discoveries that are shaping our world. Whether you're a science buff or just looking for some mind-blowing facts, we've got you covered. Join us as we uncover the mysteries of the world around us and discover new frontiers in the fields of science and technology. Get ready for a journey. Please remember that our videos are purely made for entertainment purposes only. Our information may not be correct. Enjoy, but question and explore furt...
The pyramid (2014) climax scene hd clip, watch, share and enjoy and please support us.
https://www.youtube.com/user/PioneerProductionsUK ...Built during a time when Egypt was one of the richest and most powerful civilizations in the world, the pyramids—especially the Great Pyramids of Giza—are some of the most magnificent man-made structures in history. Their massive scale reflects the unique role that the pharaoh, or king, played in ancient Egyptian society. Though pyramids were built from the beginning of the Old Kingdom to the close of the Ptolemaic period in the fourth century A.D., the peak of pyramid building began with the late third dynasty and continued until roughly the sixth (c. 2325 B.C.). More than 4,000 years later, the Egyptian pyramids still retain much of their majesty, providing a glimpse into the country’s rich and glorious past. During the third and four...
💰 $50,650 FREE BITCOIN BONUS! 💰 💰Trade on BYBIT 👉 https://bit.ly/bybit-emz 🔥 Get Up To $30,030 BONUS & 0 Fees on Spot (Use THIS Link👆) ⭐Become a MUSK FAN & get access to perks: https://www.youtube.com/channel/UCXAWX5r69jcqPTNAhXCSA7Q/join 🔔 TURN ON NOTIFICATIONS, and be the first to watch every video! 'China Will KILL US!' - Elon Musk 👉 https://youtu.be/OmVZmOhrb28 Elon Musk's Speech Will Leave You SPEECHLESS 👉 https://youtu.be/vyzdlD44ebk "Most People Don't Even Realize What's Coming" | Elon Musk 👉 https://youtu.be/d2aujK2HZkI 'Watch Before They DELETE This!' - Elon Musk 👉 https://youtu.be/K5LeI7l1_ko Elon Musk's Speech That Freaked Out World Leaders 👉 https://youtu.be/zcvLgzg9WE0 Elon Musk Talks About Aliens 👉 https://youtu.be/isdaZHSM_p0 💼Business or copyright inquiries? ilti08fcr (a...
Offizieller THE PYRAMID - Grab des Grauens Trailer German Deutsch 2014 | Abonnieren ➤ http://abo.yt/kc | (OT: The Pyramid) Movie #Trailer | Kinostart: 29 Jan 2015 | Full Movie http://amzo.in/prime | Filminfos https://KinoCheck.de/film/3ma/the-pyramid-grab-des-grauens-2014 Eine Gruppe amerikanischer Archäologen entdeckt mitten in der ägyptischen Wüste eine tief vergrabene Pyramide. Getrieben vom Forscherdrang beschließen sie auch das Innere des lange verlassenen Grabmals zu erkunden. Doch dauert es nicht lange, bis sie sich hoffnungslos in der Dunkelheit verirren. Während sie endlosen Katakomben durchstreifen merken sie, dass ihre Sorge nicht nur dem Finden des Ausgangs gelten sollte, sondern auch dem was hinter ihnen liegt. Denn irgendjemand oder irgendetwas verfolgt sie… Stream | Diesen ...
The ancient Egyptian pyramids are a feat of architectural achievement that still baffles visitors today, but in our new video we are going to investigate how the pyramids were built, and we dive into the controversial topic of WHO built the ancient pyramids! Was it aliens trying to teach us their advanced methods, or was it sheer man-power? Stick around and watch because this video will surely amaze you! 🔔 SUBSCRIBE TO THE INFOGRAPHICS SHOW ► https://www.youtube.com/c/theinfographicsshowOFFICIAL?sub_confirmation=1 🔖 MY SOCIAL PAGES TikTok ► https://www.tiktok.com/@theinfographicsshow Discord ► https://discord.gg/theinfoshow Facebook ► https://www.facebook.com/TheInfographicsShow Twitter ► https://twitter.com/TheInfoShow 💭 SUGGEST A TOPIC https://www.theinfographicsshow.com 📝 SOURCES...
Lee Elwood Holdridge (born March 3, 1944) is an American composer and orchestrator.
Holdridge was born in Port-au-Prince, Haiti, of a Puerto Rican mother and an American father, the botanist and climatologist Dr. Leslie Holdridge. While living in Costa Rica, at age ten, he studied the violin with Hugo Mariani, who was at the time the conductor of the National Symphony Orchestra of Costa Rica. Holdridge then moved to Boston, where he finished high school and studied composition with Henry Lasker.
As an adult, Holdridge moved to New York City to continue his music studies and begin his career as a professional composer. There, he composed chamber works, rock pieces, songs, theater music and background scores for short films, and eventually came to Neil Diamond's notice. Diamond then brought Holdridge with him to Los Angeles to write arrangements for his forthcoming albums. After several gold and platinum hits, the two collaborated on the Grammy Award winning film score for Jonathan Livingston Seagull.
I've tried and tried to run and hide
To find a life that's new
But wherever I go I always know
I can't escape from you
A jug of wine to numb my mind
But what good does it do?
The jug runs dry and still I cry
I can't escape from you
These wasted years are souvenirs
Of love I thought was true
Your memory is chained to me
I can't escape from you
There is no end, I can't pretend
That dreams will soon come true
A slave too long to a heart of stone
I can't escape from you