- published: 27 Jul 2019
- views: 3715000
'+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; })); }); -->
Apollo 11 was the first spaceflight that landed humans on the Moon. Americans Neil Armstrong and Buzz Aldrin landed on July 20, 1969, at 20:18 UTC (46 years ago). Armstrong became the first to step onto the lunar surface six hours later on July 21 at 02:56 UTC. Armstrong spent about two and a half hours outside the spacecraft, and together with Aldrin collected 47.5 pounds (21.5 kg) of lunar material for return to Earth. The third member of the mission, Michael Collins, piloted the command spacecraft alone in lunar orbit until Armstrong and Aldrin returned to it just under a day later for the trip back to Earth.
Launched by a Saturn V rocket from Kennedy Space Center in Merritt Island, Florida, on July 16, Apollo 11 was the fifth manned mission of NASA's Apollo program. The Apollo spacecraft had three parts: a Command Module (CM) with a cabin for the three astronauts, and the only part that landed back on Earth; a Service Module (SM), which supported the Command Module with propulsion, electrical power, oxygen, and water; and a Lunar Module (LM) for landing on the Moon (which itself was composed of two parts). After being sent toward the Moon by the Saturn V's upper stage, the astronauts separated the spacecraft from it and traveled for three days until they entered into lunar orbit. Armstrong and Aldrin then moved into the Lunar Module and landed in the Sea of Tranquility. They stayed a total of about 21½ hours on the lunar surface. After lifting off in the upper part of the Lunar Module and rejoining Collins in the Command Module, they returned to Earth and landed in the Pacific Ocean on July 24.
Apollo 11 was the mission that sent the first people to the surface of moon.
It can also refer to:
Apollo 11 is a television film which aired on November 17, 1996 on The Family Channel. It was nominated for a Primetime Emmy.
Fearful that the Soviets would continue their lead in the space race and be the first to put a man on the moon, NASA felt an enormous pressure to push the Apollo Program forward as quickly as possible, though they knew that pushing too hard could lead to the ultimate disaster. This film recreates the tensions that were felt not only by the three astronauts, Neil Armstrong, Buzz Aldrin and Michael Collins, but also by their families and by the teams of technicians training to deal with anything that could go wrong.
Buzz Aldrin, one of the three Apollo 11 astronauts, contributed to this movie as technical advisor.
WAAL ("The Whale") is a classic rock radio station broadcasting at 99.1 MHz and licensed to Binghamton, NY and is under ownership of Townsquare Media. WAAL is the oldest FM radio station in the Southern Tier. During weekday mornings and weekday afternoons, traffic reports are announced after every classic rock ride.
Weekends - Classic Rock Weekend Themes
Doug Mosher is on the air from 5am-10am on weekdays. They have many contests, music news, fun, crazy stuff, traffic, and weather.
Each hour featuring at least 6 great Classic Rock songs in a row,after the Whale Morning Show.
An hour of requests and dedications hosted by Don Morgan.
For 15 years, the Whale has been playing a triple shot of Led Zeppelin every weeknight at 9:15pm.
A whale is a sea mammal.
Whale or The Whale may also refer to:
United Kingdom
United States
Other
"The Whale" is the seventh episode of the ninth season of the American comedy television series The Office. The episode originally aired on NBC on November 15, 2012. The episode guest stars Jack Coleman as Robert Lipton and marks the return of actress Melora Hardin as Jan Levenson.
The series depicts the everyday lives of office employees in the Scranton, Pennsylvania branch of the fictional Dunder Mifflin Paper Company. In this episode, Dwight Schrute (Rainn Wilson) is tasked with selling paper to a woman—who is later revealed to be Jan (Hardin)—from the Scranton White Pages, so Pam Halpert (Jenna Fischer) and the women of the office teach him how to interact with women. Angela Lipton (Angela Kinsey) confides in Oscar Martinez (Oscar Nunez) that her husband, Robert (Jack Coleman)—who is secretly having a relationship with Oscar—is cheating on her. Oscar helps her spy on her husband at his yoga class. Meanwhile, Toby Flenderson (Paul Lieberstein) convinces several of the men in the office to grow mustaches for "Movember".
On July 20, 1969, humans walked on another world for the first time in history, achieving the goal that President John F. Kennedy had set in 1961, before Americans had even orbited the Earth. After a landing that included dodging a lunar crater and boulder field just before touchdown, Apollo 11 astronauts Neil Armstrong and Buzz Aldrin explored the area around their lunar landing site for more than two hours. When the lunar module landed at 4:17 p.m EDT, only 30 seconds of fuel remained. Armstrong radioed "Houston, Tranquility Base here. The Eagle has landed." Mission control erupted in celebration as the tension breaks, and a controller tells the crew "You got a bunch of guys about to turn blue, we're breathing again." For more information on the Apollo Program, visit https://www.nasa.g...
The moon landing was a feat of engineering, accomplished through the careful deconstruction of a 3,000 ton spacecraft. Subscribe to our channel! http://goo.gl/0bsAjO Apollo 11 launched on July 16, 1969, carrying Neil Armstrong, Buzz Aldrin, and Michael Collins on a journey to pull off humankind’s first moon landing. The eight-day journey was made possible by the careful deconstruction of the Saturn V rocket and Apollo spacecraft, and made use of a technique of docking components of the spacecraft in lunar orbit so the astronauts could land on, and then launch from, the lunar surface. Vox.com is a news website that helps you cut through the noise and understand what's really driving the events in the headlines. Check out http://www.vox.com. Watch our full video catalog: http://goo.gl/I...
Apollo 11 Explained / Space Race Documentary | On July 16th 1969, the world watched as the Saturn V launched Apollo 11 into space, bringing the Space Race to an end, a defining moment in the Cold War. One of humanity's greatest achievements, Neil Armstrong, Buzz Aldrin and Michael Collins would embark on an 8-day journey to the Moon and back, 240,000 miles away. After decades of preparation and research, Neil Armstrong and Buzz Aldrin would become the first humans to step foot on another world, cementing America as the victors of the Space Race, 12 years of technological warfare between the worlds two largest superpowers; the United States and the Soviet Union. Man's journey to the moon would become the defining moment of the second half of the 20th century. Time Stamps 📽 Intro 0:00 ...
The Apollo 11 mission to the moon is one of the most intense stories of survival. The whole trip was nearly a disaster, and somehow the astronauts managed to make their way back to earth and not get trapped on the moon or die in space! Watch here to see how they made it out alive! 🔔 SUBSCRIBE TO US ► https://www.youtube.com/c/theinfographicsshowOFFICIAL?sub_confirmation=1 🔖 MY SOCIAL PAGES DISCORD ►https://discord.gg/theinfoshow Facebook ► https://www.facebook.com/TheInfographicsShow Twitter ► https://twitter.com/TheInfoShow 💭 SUGGEST A TOPIC https://www.theinfographicsshow.com 📝 SOURCES: https://pastebin.com/u4pnQ1pp
Apollo 11 was the spaceflight which landed the first humans, Neil Armstrong and Edwin "Buzz" Aldrin, Jr, on Earth's Moon in 1969. Launched from the Kennedy Space Center Florida on July 16, Apollo 11 was the 5th manned mission, and the 3rd lunar mission, of NASA's Apollo program. A Saturn V launched Apollo 11 from Launch Pad 39A, part of the Launch Complex 39 site at the Kennedy Space Center. It entered orbit 12 minutes later. After one and a half orbits, the S-IVB third-stage engine pushed the spacecraft onto its trajectory toward the Moon.
A detailed account of every second of the Apollo 11 descent and landing. The video combines data from the onboard computer for altitude and pitch angle, 16mm film that was shot throughout the descent at 6 frames per second. The audio recording is from two sources. The air/ground transmissions are on the left stereo channel and the mission control flight director loop is on the right channel. Subtitles are included to aid comprehension. As well as Neil Armstrong, Buzz Aldrin and Mike Collins, the video includes the following people from the mission control team: Flight - Gene Kranz CapCom - Charlie Duke GNC - Buck Willoughby EECOM - John Aaron FIDO - Jay Greene RETRO - Chuck Deiterich Guidance - Steve Bales Control - Bob Carlton TELCOM - Don Puddy Surgeon - John Zieglschmid This is part of ...
JAMIE – Apollo 11 feat. Jay Park Official Music Video LISTEN NOW: https://wmk.lnk.to/A11 #JAMIE #Apollo11#박지민#JAMIEPARK #제이미#아폴로11#JAYPARK#박재범 JAMIE OFFICIALS Instagram: https://www.instagram.com/jiminxjamie Twitter: https://twitter.com/jiminpark07 TikTok: https://www.tiktok.com/@jiminxjamieofficial YouTube: https://www.youtube.com/officialjamie
Original Mission Video as aired in July 1969 depicting the Apollo 11 astronauts conducting several tasks during extravehicular activity (EVA) operations on the surface of the moon. The EVA lasted approximately 2.5 hours with all scientific activities being completed satisfactorily. The Apollo 11 (EVA) began at 10:39:33 p.m. EDT on July 20, 1969 when Astronaut Neil Armstrong emerged from the spacecraft first. While descending, he released the Modularized Equipment Stowage Assembly on the Lunar Module's descent stage. A camera on this module provided live television coverage of man's first step on the Moon. On this, their one and only EVA, the astronauts had a great deal to do in a short time. During this first visit to the Moon, the astronauts remained within about 100 meters of the lunar...
Neil Armstrong and Buzz Aldrin spent more than two hours outside their spacecraft on the Moon. They studied the surface. They collected rocks. After almost a day, they blasted off. They docked with Michael Collins in orbit around the Moon. For more information on their voyage to the Moon and one small step on the lunar surface for all of mankind, visit https://www.nasa.gov/specials/apollo50th/
With footage and interviews directly from the people that made the big steps for mankind, Moon Landing Apollo 11 gives us a firsthand insight to how the people of NASA orchestrated one of the most exciting events in space exploration of the 20th century. It's like Netflix for history... Sign up to History Hit, the world's best history documentary service, at a huge discount using the code 'TIMELINE' ---ᐳ http://bit.ly/3a7ambu You can find more from us on: https://www.facebook.com/timelineWH https://www.instagram.com/timelineWH This channel is part of the History Hit Network. Any queries, please contact [email protected]
#Apollo11 is in theaters everywhere March 8. From director Todd Douglas Miller (Dinosaur 13) comes a cinematic event fifty years in the making. Crafted from a newly discovered trove of 65mm footage, and more than 11,000 hours of uncatalogued audio recordings, Apollo 11 takes us straight to the heart of NASA’s most celebrated mission—the one that first put men on the moon, and forever made Neil Armstrong and Buzz Aldrin into household names. Immersed in the perspectives of the astronauts, the team in Mission Control, and the millions of spectators on the ground, we vividly experience those momentous days and hours in 1969 when humankind took a giant leap into the future.
From director Todd Douglas Miller (Dinosaur 13) comes a cinematic event 50 years in the making. Crafted from a newly discovered trove of 65mm footage, and more than 11,000 hours of uncatalogued audio recordings, Apollo 11 takes us straight to the heart of NASA's most celebrated mission—the one that first put men on the moon, and forever made Neil Armstrong and Buzz Aldrin into household names. Immersed in the perspectives of the astronauts, the team in Mission Control, and the millions of spectators on the ground, we vividly experience those momentous days and hours in 1969 when humankind took a giant leap into the future. Bonus Features • Apollo 11: Discovering the 65MM • Trailer Website: https://uphe.com/movies/apollo-11-2019 Trailer: http://uni.pictures/Apollo11Trailer Facebook: https...
First Man - We Have Liftoff: The lunar mission begins on the launchpad. BUY THE MOVIE: https://www.fandangonow.com/details/movie/first-man-2018/MMVAE831EAE3647BD4C1B150A539222BA0BB?cmp=Movieclips_YT_Description Watch the best First Man scenes & clips: https://www.youtube.com/playlist?list=PLZbXA4lyCtqoHdRBubuyGsQVbLtHmbkeH FILM DESCRIPTION: Hoping to reach the moon by the end of the decade, NASA plans a series of extremely dangerous, unprecedented missions in the early 1960s. Engineer Neil Armstrong joins the space program, spending years in training and risking his life during test flights. On July 16, 1969, the nation and world watch in wonder as Armstrong and fellow astronauts Buzz Aldrin and Michael Collins embark on the historic Apollo 11 spaceflight. CREDITS: TM & © Universal (201...
This thrilling documentary covers the Space Race, the Gemini program, and the pivotal Apollo 8 and Apollo 10 missions that paved the way for the monumental achievement. Witness the triumphs and challenges faced by the brave astronauts, the ingenuity of NASA's engineers, and the groundbreaking scientific advancements that made this extraordinary feat possible. Prepare to be inspired by the story of how human determination and innovation conquered the final frontier. --- With everything from breathtaking cosmic vistas to fascinating insights into the lives of astronauts, Cosmic has the perfect documentary for any space lover out there. Whether you're an expert astronomer or a novice at the beginning of your extra-terrestrial journey, we've got just the thing for you. #apollo17 #apollo #...
Directed by TODD DOUGLAS MILLER Apollo 11 is the cinematic event fifty years in the making. Featuring never-before-seen large-format film footage of one of humanity’s greatest accomplishments. Twitter: @apollo11movie Instagram: @apollo11movie Facebook: @apollo11movie
From director Todd Douglas Miller (Dinosaur 13) comes a cinematic event fifty years in the making. Coming Soon To Theaters. Subscribe to GameSpot Universe Trailers! https://www.youtube.com/channel/UCJkvlOQedZfOijDDVXHYcXA/?sub_confirmation=1 Follow Us - http://twitter.com/GSUniverse Like Us - http://facebook.com/GameSpotUniverse http://www.gamespot.com
Moonwalk One is a feature-length documentary film about the flight of Apollo 11, which landed the first humans on the Moon. Besides portraying the massive technological achievement of that event, the film places it in some historical context and tries to capture the mood and the feel of the people on Earth when man first walked on another world. A year and a half before the Apollo 11 flight, NASA had approached Francis Thompson Inc about making a very ambitious film telling the story of the whole Apollo program, culminating with the landing on the Moon. Francis Thompson and his partner Alexander Hammid were at that time generally regarded as the best documentary filmmakers in the USA, having won fame as the creators of the hit of the 1964-65 New York World's Fair To Be Alive!, a multi-scr...
Join us as we delve deep into the details of the upcoming Apollo 11 Mission in 2024! Learn all about the history, significance, and exciting new developments surrounding this monumental event in space exploration. Get ready to witness history in the making with the ultimate guide to the Apollo 11 Mission! Stay tuned for all the latest updates and insider information. Don't miss out on this epic journey to the stars!Moon landing anniversary,Apollo 11 anniversary,Michael Collins,NASA,Apollo 11,Buzz Aldrin,Moon landing,Space exploration,Neil Armstrong,Space travel,Historic space mission,Apollo 11 documentary,Apollo program,Moon mission,Apollo 11 mission,Apollo mission,Lunar landing,Space history,Moon landing facts,Astronauts#Shorts #YouTubeMonetization #ShortsMonetization #whatifwonders
Apollo 11 Explained / Space Race Documentary | On July 16th 1969, the world watched as the Saturn V launched Apollo 11 into space, bringing the Space Race to an end, a defining moment in the Cold War. One of humanity's greatest achievements, Neil Armstrong, Buzz Aldrin and Michael Collins would embark on an 8-day journey to the Moon and back, 240,000 miles away. After decades of preparation and research, Neil Armstrong and Buzz Aldrin would become the first humans to step foot on another world, cementing America as the victors of the Space Race, 12 years of technological warfare between the worlds two largest superpowers; the United States and the Soviet Union. Man's journey to the moon would become the defining moment of the second half of the 20th century. Time Stamps 📽 Intro 0:00 ...
Apollo 11 was the first spaceflight that landed humans on the Moon. Americans Neil Armstrong and Buzz Aldrin landed on July 20, 1969, at 20:18 UTC (46 years ago). Armstrong became the first to step onto the lunar surface six hours later on July 21 at 02:56 UTC. Armstrong spent about two and a half hours outside the spacecraft, and together with Aldrin collected 47.5 pounds (21.5 kg) of lunar material for return to Earth. The third member of the mission, Michael Collins, piloted the command spacecraft alone in lunar orbit until Armstrong and Aldrin returned to it just under a day later for the trip back to Earth.
Launched by a Saturn V rocket from Kennedy Space Center in Merritt Island, Florida, on July 16, Apollo 11 was the fifth manned mission of NASA's Apollo program. The Apollo spacecraft had three parts: a Command Module (CM) with a cabin for the three astronauts, and the only part that landed back on Earth; a Service Module (SM), which supported the Command Module with propulsion, electrical power, oxygen, and water; and a Lunar Module (LM) for landing on the Moon (which itself was composed of two parts). After being sent toward the Moon by the Saturn V's upper stage, the astronauts separated the spacecraft from it and traveled for three days until they entered into lunar orbit. Armstrong and Aldrin then moved into the Lunar Module and landed in the Sea of Tranquility. They stayed a total of about 21½ hours on the lunar surface. After lifting off in the upper part of the Lunar Module and rejoining Collins in the Command Module, they returned to Earth and landed in the Pacific Ocean on July 24.
The Whale
(spoken) Here's a song about a whale
with a most amazing appetite.
(sung)
In San Francisco town there lived a whale
Who ate pork chops by the pale,
By the pill-box, by the suitcase,
By the bathtub, by the schooner.
Her name was Sara and she's a peach
But you can't leave food within her reach
Nor nurse-maids, nor Airedales,
Nor chocolate ice cream sodas.
She eats a lot but when she smiles
You can see her teeth for miles and miles,
And her adenoids, and her spare ribs,
And things too fierce to mention.
So what can you do in a case like that?
what can you do except sit on your hat,
Or your toothbrush, or your grandmother,