- published: 05 Jul 2022
- views: 1672451
'+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; })); }); -->
Dame Julia "Julie" Elizabeth Andrews, DBE, (née Wells; born 1 October 1935) is an English film and stage actress, singer, author, theatre director and dancer. Andrews, a former child actress and singer, appeared on the West End in 1948, and made her Broadway debut in a 1954 production of The Boy Friend. She rose to prominence starring in musicals such as My Fair Lady and Camelot, both of which earned her Tony Award nominations. In 1957, she appeared on television with the title role in the musical Cinderella, which was seen by over 100 million viewers.
She made her feature film debut in Mary Poppins (1964), with her performance in the title role winning her the Academy Award for Best Actress. She received her second Oscar nomination for The Sound of Music (1965), playing Maria, and won the Golden Globe Award for Best Actress in a Musical. Adjusted for inflation, the latter film is the third-highest grossing film of all time. Between 1964 and 1967, she also had box office successes with, The Americanization of Emily, receiving a nomination for the BAFTA Award for Best British Actress in a Leading Role, Hawaii, Alfred Hitchcock's Torn Curtain, and Thoroughly Modern Millie, making her the most successful film star in the world at the time.
"Two Little Boys" is a song written by American composer Theodore F. Morse and lyricist Edward Madden. It was written in 1902 and became a popular music hall song of the time, made popular by Harry Lauder. It describes the story of two boys who grow up to fight in a war. In 1969, it became a surprise No. 1 top-selling single for entertainer Rolf Harris in the United Kingdom and Beryl Middleton in the United States.
In 1969, it was revived by Australian entertainer Rolf Harris, who briefly visited folk musician Ted Egan during a tour of Arnhem Land in Australia. Egan sang him the song, which Harris recorded on tape. Back in the UK, Harris persuaded his television producer to incorporate the song into his BBC variety show. Harris discovered he had lost the tape and rang Egan, 10,000 miles away in Canberra, and asked him to sing the song over the phone. Alan Braden arranged and co-wrote the song for the TV show, and a favourable audience reaction prompted Harris to record and release it as a single. The song reached No. 1 on the singles chart on 18th December 1969, where it stayed for six weeks, thus becoming the first No. 1 single of the 1970s as well as the last of the 1960s. On BBC Radio Blackburn in 1979, Margaret Thatcher picked it as a favourite song.
Two Little Boys is a 2012 New Zealand feature film based on the 2008 novel of the same name by Duncan Sarkies. It stars Bret McKenzie and Hamish Blake in the two title roles, and is directed by Robert Sarkies (brother of the author). Duncan Sarkies served as a script writer, adapting his own novel.
Nige (Bret McKenzie) and Deano (Hamish Blake) are two childhood friends who live in Invercargill in the South Island of New Zealand. However, estrangement has since resulted, because Nige has stopped flatting with Deano over concerns about Nige's self-perceived emotional dependence on his friend, and moved in with a third friend, Gav (Maaka Pohatu). However, Nige inadvertently runs over a Norwegian backpacker with his unreliable Ford Laser and kills him, and enlists the assistance of Deano to conceal the body, although not without ambivalence from Deano due to his 'abandonment' issues after Nige terminated their earlier flatting cohabitation. The film also deals with the consequently bungled and incompetent police investigation into the comedy of errors that produced this chain of events, with humorous consequences.
Julie Andrews takes us through her illustrious career, including her roles in 'The Boyfriend,' 'My Fair Lady,' 'Mary Poppins,' 'Thoroughly Modern Millie,' 'Victor/Victoria,' 'Duet For One,' 'The Princess Diaries' and 'Minions: The Rise of Gru.' 00:00 Intro 00:29 The Boyfriend 02:20 My Fair Lady 03:56 Mary Poppins 06:23 The Sound of Music 07:53 Thoroughly Modern Millie 09:08 Victor/Victoria 11:42 Duet For One 13:15 The Princess Diaries 14:25 Minions: The Rise of Gru Director: Adam Lance Garcia Director of Photography: Bradley Wickham Editor: Michael Suyeda Assistant Editor: Billy Ward Producer: Efrat Kashai Line Producer: Jen Santos Associate Producer: Jessica Gordon Production Manager: Marilee Hodge Production Coordinator: Jamal Colvin Gaffer: Devan Davies-Wood Cam...
Julie Andrews reveals the complicated and dirty way they filmed that iconic meadow scene in The Sound of Music. Subscribe NOW to The Tonight Show Starring Jimmy Fallon: http://bit.ly/1nwT1aN Watch The Tonight Show Starring Jimmy Fallon Weeknights 11:35/10:35c Get more Jimmy Fallon: Follow Jimmy: http://Twitter.com/JimmyFallon Like Jimmy: https://Facebook.com/JimmyFallon Get more The Tonight Show Starring Jimmy Fallon: Follow The Tonight Show: http://Twitter.com/FallonTonight Like The Tonight Show: https://Facebook.com/FallonTonight The Tonight Show Tumblr: http://fallontonight.tumblr.com/ Get more NBC: NBC YouTube: http://bit.ly/1dM1qBH Like NBC: http://Facebook.com/NBC Follow NBC: http://Twitter.com/NBC NBC Tumblr: http://nbctv.tumblr.com/ The Tonight Show Starring Jimmy Fallon fe...
Julie Andrews and some of the former cast members of Von Trapp children (Angela Cartwright, Kym Karath, Debbie Turner, Duane Chase, and Nicholas Hammond), sing along with the audience to ‘Do-Re-Mi’ from The Sound of Music. #TNT #JulieAndrews #AFIAward SUBSCRIBE: http://bit.ly/SubscribeTNT Download the TNT App: http://bit.ly/1GcZDJb About the American Film Institute (AFI) The American Film Institute (AFI) is a nonprofit organization with a mandate to champion the moving image as an art form. Established in 1967, AFI launched the first comprehensive history of American film and sparked the movement for film preservation in the United States. In 1969, AFI opened the doors of the AFI Conservatory, a graduate-level program to train narrative filmmakers. AFI’s enduring traditions include the ...
Sidney Poitier presenting Julie Andrews the Oscar® for Best Actress for her performance in "Mary Poppins" at the 37th Academy Awards® in 1965. Introduced by Bob Hope. Watch more of the 1965 Oscars: https://www.youtube.com/playlist?list=PLJ8RjvesnvDP4YEe-_yhIRB3yickk9A3y Subscribe for more #Oscars videos ►► http://osca.rs/subscribeyt Julie Andrews Wins Best Actress | 37th Oscars (1965) #JulieAndrews #BestActress #MaryPoppins #AcademyAwards #SidneyPoitier
Andy Cohen asks Julie Andrews some juicy bits about her new memoir including if she and Audrey Hepburn competed and talks about suing tabloids and offers advice to Meghan Markle. ►► Subscribe To WWHL: http://bravo.ly/WWHLSub Watch WWHL Sun-Thu 11/10c: WWHL Website: https://www.bravotv.com/watch-what-happens-live Follow WWHL: https://twitter.com/BravoWWHL Like WWHL: https://www.facebook.com/WatchWhatHappensLive/ WWHL Tumblr: http://bravowwhl.tumblr.com/ 'Watch What Happens: Live' is Bravo's late-night, interactive talk show that features guests from the world of entertainment, politics, and pop culture. Hosted by Andy Cohen, the series includes lively debates on everything from fashion, the latest on everyone's favorite Bravolebrities, and what celebrity is making headlines that week. Pas...
Dame Julie Andrews & Reese Witherspoon talk about the effect on winning an Oscar, and Jennifer Anniston talks about being warned of the fame that would come with Friends. #TheGNShow #TheGrahamNortonShow #GrahamNorton Follow us! Facebook - https://www.facebook.com/thegrahamnortonshow/?ref=page_internal Instagram - https://www.instagram.com/thegrahamnortonshowofficial/ Twitter - https://twitter.com/TheGNShowFollow us here: Facebook: https://www.facebook.com/thegrahamnortonshow/ Instagram: https://www.instagram.com/thegrahamnortonshowofficial/ Twitter: https://twitter.com/TheGNShow TikTok: https://www.tiktok.com/@thegnshow Snapchat: https://www.snapchat.com/discover/The_Graham_Norton_Show/3773416663
"A Spoonful Of Sugar" is a song from "Mary Poppins", the 1964 musical motion picture. It is an uptempo song sung by Julie Andrews instructing the two children to clean their room. But even though the task is daunting, with a good attitude, it can still be fun.
A 13-year-old Julie Andrews ('Mary Poppins', 'The Sound of Music') sings the British National Anthem in the presence of King George VI and Queen Elizabeth (The Queen Mother) at the 1948 Royal Command Performance at London's Palladium. FILM ID 2749.03 For Archive Licensing Enquiries Visit: https://goo.gl/W4hZBv Explore Our Online Channel For FULL Documentaries, Fascinating Interviews & Classic Movies: https://goo.gl/7dVe8r #BritishPathé #History #Royals #King #JulieAndrews #Celebrity Subscribe to the British Pathé YT Channel: https://goo.gl/hV1nkf Julie Andrews (Aged 13) Sings for King George VI in 1948 [HD]. Julie Andrews sings the British National Anthem at the 1948 Royal Command Performance at London's Palladium. She runs on in front of Danny Kaye wearing a white A-frame dress an...
Element Dance Arts, Cambridge Celebration of the Arts, Cambridge, Ontario Supercalifragilisticexpialidocious - From "Mary Poppins" Soundtrack - Julie Andrews, Dick Van Dyke, The Pearlie Chorus Element Dance Arts https://elementdancearts.com/
Julie Andrews meets the real Maria von Trapp from the 45th anniversary Blu-ray of THE SOUND OF MUSIC. Originally from The Julie Andrews Hour. The 1965 film The Sound of Music is produced and directed by Robert Wise, and starring Julie Andrews and Christopher Plummer, with Richard Haydn and Eleanor Parker. The film is an adaptation of the 1959 Broadway musical of the same name, composed by Richard Rodgers with lyrics by Oscar Hammerstein II. The film's screenplay was written by Ernest Lehman, adapted from the stage musical's book by Lindsay and Crouse. Based on the memoir The Story of the Trapp Family Singers by Maria von Trapp, the film is about a young Austrian woman studying to become a nun in Salzburg in 1938 who is sent to the villa of a retired naval officer and widower to be governe...
Find this track here... http://jimmysavilesplaylist.blogspot.co.uk/ on "Jimmy Savile's Peado Playlist".
Big no1 hit for Rolf Harris
Rolf Harris Two Little Boys --------------------- Two little boys had two little toys Each had a wooden horse Gaily they played each summer's day Warriors both of course One little chap then had a mishap Broke off his horse's head Wept for his toy then cried with joy As his young playmate said Did you think I would leave you crying When there's room on my horse for two Climb up here Jack and don't be crying I can go just as fast with two When we grow up we'll both be soldiers And our horses will not be toys And I wonder if we'll remember When we were two little boys Long years passed, war came so fast Bravely they marched away Cannon roared loud, and in the mad crowd Wounded and dying lay Up goes a shout, a horse dashes out Out from the ranks so blue Gallops away to where Joe lay Then ...
The track from the Monkey Hangerz' 2005 album Poolie Pride which incredibly reached Number 24 in the UK Top 40.
Inspired by true events. Written & Directed by: Farbod Khoshtinat Producer: Sepehr Mikaeilian Principal Cast: Trace Talbot as Josh Asa Germann as Tyler Jordan Kyle as Sam Principal Crew: Director of Photography: Sam Chatterjee Associate Producer: Mathew Davis Production Manager: Nila Zojaji Make-Up: Samuel Riley, Sarah Contreras Stunt Coordinator: Omid Zader Notable festival selections: - Out on Film : Best Short Film Audience Award - Manhattan shorts: Finalist - Nashville Film Festival: Official Selection - Norwich Film Festival: Official Selection - Brooklyn Film Festival: Official Selection www.twolittleboys.net Follow Farbod: https://instagram.com/farbod_khoshtinat
~ Two Little Boys ~ Different Nations have Different Versions of this Song. Brother fought brother, father fought son, families were destroyed. Two little boys had two little toys - Each had a wooden horse. Gaily they played each summer's day, Warriors both of course. One little chap, he had a mishap, Broke off his horse's head. Wept for his toy and then cried for joy When he heard what his brother said: Do you think I could leave you crying When there's room on my horse for you? Climb up here, Jack, and stop your crying. We'll mend up your horse with glue. When we grow up we'll both be soldiers, Our horses will not be toys. Maybe then we'll remember When we were two little boys. When we were two little boys." Long years had passed,...
Rolf Harris singing his classic re-make of "Two Little Boys" (2008). Visit our Facebook page - https://www.youtube.com/watch?v=nH_Eubq4djs
Top Of The Pops - September 11th 1980. This has a restored intro edited from the broadcast version.
Provided to YouTube by Universal Music Group Two Little Boys · Fron Male Voice Choir · Rolf Harris Voices Of The Valley: Home ℗ 2008 Universal Classics & Jazz Released on: 2008-01-01 Producer, Studio Personnel, Mixer, Associated Performer, Keyboards, Programming: Jon Cohen Studio Personnel, Mixer, Engineer, Producer, Additional Producer: Phil Da Costa Studio Personnel, Asst. Recording Engineer: Ronan Phelan Studio Personnel, Engineer: Al Unsworth Studio Personnel, Editor: Ed Bainton Choir: Fron Male Voice Choir Musical Director: Ann Atkinson Associated Performer, Vocals: Rolf Harris Orchestra: Royal Philharmonic Orchestra Conductor: Cliff Masterson Studio Personnel, Engineer: Gary Thomas Composer Lyricist: Edward Madden Composer Lyricist: Theodore Morse Auto-generated b...
Two little boys had two little toys, both had a wooden horse. Gaily they played each summer's day, warriors both of cause. Now, one little chap he had a mishap and broke off his horse's head. Wept for his toy, then cried with joy as his young playmate said. Did you think I would leave you crying, When there's room on my horse for two? Climb up here, Joe and don't be crying. I can go just as fast with two. When we grow up we'll both be soldiers and our horses will not be toys. And I wonder if we'll remember when we were two little boys. Long years past, war came at last. Bravely they marched away. Cannon roared loud and in the mad crowd, wounded and dieing lay Up goes a shout, A horse dashes out, out from the ranks so blue. Gallops away to where joe lay, then came a voice he knew. Did y...
Dame Julia "Julie" Elizabeth Andrews, DBE, (née Wells; born 1 October 1935) is an English film and stage actress, singer, author, theatre director and dancer. Andrews, a former child actress and singer, appeared on the West End in 1948, and made her Broadway debut in a 1954 production of The Boy Friend. She rose to prominence starring in musicals such as My Fair Lady and Camelot, both of which earned her Tony Award nominations. In 1957, she appeared on television with the title role in the musical Cinderella, which was seen by over 100 million viewers.
She made her feature film debut in Mary Poppins (1964), with her performance in the title role winning her the Academy Award for Best Actress. She received her second Oscar nomination for The Sound of Music (1965), playing Maria, and won the Golden Globe Award for Best Actress in a Musical. Adjusted for inflation, the latter film is the third-highest grossing film of all time. Between 1964 and 1967, she also had box office successes with, The Americanization of Emily, receiving a nomination for the BAFTA Award for Best British Actress in a Leading Role, Hawaii, Alfred Hitchcock's Torn Curtain, and Thoroughly Modern Millie, making her the most successful film star in the world at the time.
Hark the herald angels sing
"Glory to the newborn King!
Peace on earth and mercy mild
God and sinners reconciled"
Joyful, all ye nations rise
Join the triumph of the skies
With the angelic host proclaim:
"Christ is born in Bethlehem"
Hark! The herald angels sing
"Glory to the newborn King!"
Joyful, all ye nations rise
Join the triumph of the skies
With the angelic host proclaim:
"Christ is born in Bethlehem"
Hark! The herald angels sing