- published: 06 Dec 2024
- views: 83050
'+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; })); }); -->
Coordinates: 38°52′59″N 77°0′59″W / 38.88306°N 77.01639°W / 38.88306; -77.01639
The National Aeronautics and Space Administration (NASA) is the agency of the United States Federal Government responsible for the civilian space program as well as aeronautics and aerospace research.
President Dwight D. Eisenhower established the National Aeronautics and Space Administration (NASA) in 1958 with a distinctly civilian (rather than military) orientation encouraging peaceful applications in space science. The National Aeronautics and Space Act was passed on July 29, 1958, disestablishing NASA's predecessor, the National Advisory Committee for Aeronautics (NACA). The new agency became operational on October 1, 1958.
Since that time, most US space exploration efforts have been led by NASA, including the Apollo moon-landing missions, the Skylab space station, and later the Space Shuttle. Currently, NASA is supporting the International Space Station and is overseeing the development of the Orion Multi-Purpose Crew Vehicle, the Space Launch System and Commercial Crew vehicles. The agency is also responsible for the Launch Services Program (LSP) which provides oversight of launch operations and countdown management for unmanned NASA launches.
NASA is a Swedish synthpop band fronted by Patrik Henzel and Martin Thors. They debuted in 1983 with a song for a Swedish film. In 1985 they had a Swedish top ten hit "Paula". In the 1980s, the band had little success outside of Sweden. A planned US album was recorded, but then shelved by Columbia Records. They continued to have numerous hit singles in their home country of Sweden. They were basically defunct for most of the 1990s, but had a resurgence with the album "Remembering the Future" in 1999.
NASA is the National Aeronautics and Space Administration. NASA or Nasa may also refer to:
Find out more about the NASA missions mentioned in this 2024 year-end highlight video by taking a deep dive with these resources. Artemis Campaign: https://www.nasa.gov/specials/artemis/ Commercial Lunar Payload Services (CLPS): https://www.nasa.gov/commercial-lunar- payload-services/ Crew Health and Performance Exploration Analog (CHAPEA): https://www.nasa.gov/humans-in-space/chapea/ Ingenuity Mars Helicopter: https://www.jpl.nasa.gov/missions/ingenuity/ Artemis Accords: https://www.nasa.gov/artemis-accords/ 2024 Total Eclipse: https://science.nasa.gov/eclipses/future-eclipses/eclipse-2024/ Commercial Crew: https://www.nasa.gov/humans-in-space/commercial- space/commercial-crew-program/ International Space Station (ISS): https://www.nasa.gov/international-space-station/ PACE (Plankton, Ae...
NASA has revealed a concept for the next generation of flight on the Red Planet, the "Mars Chopper." "In about a week, you could cover the entire distance that perseverance has driven. So it's really a game changer when it comes to exploration and discovery, " according to Teddy Tzanetos, Ingenuity’s project manager at JPL. Credit: Space.com | animation courtesy: NASA/JPL-Caltech | edited by [Steve Spaleta](https://www.instagram.com/spaleta_space_odyssey/) Music: Last Odyssey by ELFL / courtesy of http://www.epidemicsound.com
Just what you need for the holidays... the coziness of a crackling and roaring rocket engine! Technically, this fireplace packs the heat of the SLS rocket’s four RS-25 engines and a pair of solid rocket boosters – just enough to get you to the Moon! (And get through the holidays with your in-laws.) This glowing mood-setter is brought to you by the SLS (Space Launch System) rocket that launched Artemis I on its mission around the Moon and back on Nov. 16, 2022. 8.8 million pounds of total thrust – and a couple glasses of eggnog – might just be enough to make your holidays merry. Video description: A stock fireplace illustration frames looping archival video of the blasting RS-25 engines that launched the Artemis I rocket to the Moon on Nov. 16, 2022 (source: https://go.nasa.gov/4g...
Suscríbete a nuestro canal: https://bit.ly/40B8C4d Nasa Histoires - Otro Final (AudioCover) ❤️🩹Música alegre con letras melancólicas en tu plataforma favorita: https://ONErpm.lnk.to/NasaHistoiresAW Escucha "Otro Final" en tu plataforma favorita: https://onerpm.link/OtroFinal Puedes seguirnos en: ⇒Pagina oficial : https://nasahistoires.com/ ⇒Instagram: https://bit.ly/-NasaHistoires ⇒TikTok: https://www.tiktok.com/@nasahistoires ⇒Facebook: https://www.facebook.com/nasahistoires ⇒Twitter: https://twitter.com/nasahistoires Otros éxitos de Nasa Histoires: Bugambilia: https://youtu.be/IMbW-slqPcw Cactus: https://youtu.be/6iT_1LvYV1M Girasol: https://youtu.be/nmVnHYI8gl4 Trébol: https://youtu.be/mDr_35b1NR4 Playlist By Nasa Histoires: Videos Oficiales: https://ONErpm.lnk.to/NasaHistoi...
NASA (Feat. FKJ) Lyrics by Deanfluenza Composed by Deanfluenza, FKJ, T.Y Arranged by FKJ, Deanfluenza, T.Y, No Identity Produced by FKJ, Deanfluenza, T.Y, No Identity you.will.knovv A&R Harrison Hong, John Um, Jungbeen Yoon Admin coordinator Woohee Park Universal Music Korea Artist & Label Creative Director: DEAN Director: OSRIN (PERIMETRON) Producer: Kento Yoshida (PERIMETRON) DOP: Tomoyuki Kawakami 1stAC: Yuta Kakei 2ndAC: Kakeru Sudou 3rdAC: Hiviki Shono Steadicam Operator: Taro Kimura Steadicam Assistant: Yuta Suzuki Gaffer: James Thompson BestBoy: Manabu Katoh Electricians: Ryohei Murauchi , Kentaro Hirabayashi , Arisa Murakami , Haruka Itagaki Production Designer: Chihiro Matsumoto (R-mond) Production Design Assistants : Masayuki Nakayama , Takumu Ishii , Momo Kawasaki , Y...
This morning scientists and engineers from JPL & NASA presented their investigation into the crash of Ingenuity, the Mars Helicopter which had pushed the limits of technology over its 3 year career. The root cause was the navigation system became unable to track features over the bland terrain where the accident happened leading to a loss of control. The full investigation will be published next month but you can watch the presentation from the AGU Meeting https://www.youtube.com/watch?v=p45y3ea9vHY Follow me on Twitter for more updates: https://twitter.com/DJSnM I have a discord server where I regularly turn up: https://discord.gg/zStmKbM If you really like what I do you can support me directly through Patreon https://www.patreon.com/scottmanley
NASA is set to launch the Europa Clipper spacecraft to explore Europa, an ocean moon orbiting Jupiter. Europa Clipper’s launch is targeted for no earlier than Monday, Oct. 14, 2024 at 12:06 p.m. EDT (1606 UTC). The spacecraft, the largest NASA has ever built for a planetary mission, will launch on a SpaceX Falcon Heavy rocket from Launch Complex 39A at NASA’s Kennedy Space Center in Florida. Europa is one of the most promising places in our solar system to find an environment suitable for life beyond Earth. Evidence suggests that the ocean beneath Europa’s icy surface could contain the ingredients for life — water, the right chemistry, and energy. While Europa Clipper is not a life-detection mission, it will answer key questions about the moon’s potential habitability. For more informa...
O espaço acima da Terra é uma verdadeira incógnita para quem estuda o clima espacial. Felizmente, nosso planeta conta com a presença de um campo magnético poderoso o suficiente para proteger a superfície de grandes doses de radiação nociva vinda do próprio Sol, assim como de estrelas e galáxias distantes. No entanto, o que poucos imaginam é que o campo magnético da Terra pode criar zonas muito, mas muito estranhas, algumas tidas como perigosas para atravessarmos com sondas espaciais. Essas regiões são conhecidas como cinturões de Van Allen, onde satélites gravaram assobios impressionantes. No vídeo de hoje, vamos ouvir o que a NASA gravou nessas regiões. Instagram: @misteriosdoespaco e @alexsandromota805 X (Twitter): @misteriosespaco e @alexsandromota8 Facebook: /misteriosdoespaco Inscre...
NASA astronaut Jack Fischer demonstrates what happens to water in space when there’s no pull of gravity. VOA Facebook: https://www.facebook.com/voiceofamerica/videos/10155058569253074/
On June 12, 2009, a fortuitous orbit of the International Space Station (ISS) made it possible for an astronaut on board to capture Sarychev Volcano in the early stages of eruption. The volcano is located on the northwestern end of Matua Island, which is part of the Kuril Islands, a chain of 56 islands northeast of Japan. The eruption sent a plume of brown-colored ash and white steam rising into the atmosphere. The plume was so immense that it cast a large shadow on the island. Sarychev is one of the most active volcanoes in the Kuril Island chain. Prior to June 12, the last explosive eruption occurred in 1989, with eruptions in 1986, 1976, 1954, and 1946 also producing lava flows. Watch the video to see how the eruption looked from space. A fortuitous orbit of the International Space Sta...
Swedish TV August 23rd 1987
Description
1984 Debut single by Swedish synthpop pioneers NASA. Brilliant stuff!
NASA, Swedish synth group active from the mid 1980s, consisting of Patrik Henzel, Martin Thors and Jonas Zachrisson. The group climbed high on the Tracks list, and released a number of singles. They were, however, a small commercial hit with the song The Bird (their best selling single) just before they took off. Nasa, svensk syntgrupp verksam från mitten av 1980-talet, som består av Patrik Henzel, Martin Thors och Jonas Zachrisson. Gruppen klättrade högt på tracks-listan och släppte ett antal singlar. De fick dock en liten kommersiell hit med låten The Bird (deras bäst säljande singel) precis innan de lade av.
"Nattens Drömmar" is Swedish synthpop band Nasa's first appearance on record. It featured on the soundtrack of the movie "G" (Glen Disc HGP 3025) from 1983, two years before they released their debut single "Paula". Short but sweet!
NEW YOUTUBE SERIES (Rare Earth): https://www.youtube.com/playlist?list=PLPfak9ofGSn9sWgKrHrXrxQXXxwhCblaT Rest in peace, Starman. A revised version of David Bowie's Space Oddity, recorded by Commander Chris Hadfield on board the International Space Station. Composition: “SPACE ODDITY” Written by David Bowie Published by Onward Music Limited (Note: This video cannot be reproduced and is licensed for online music use only.) With thanks to Emm Gryner, Joe Corcoran, Andrew Tidby and Evan Hadfield for all their hard work. Captioning kindly provided by CHS (www.chs.ca) From the album “Space Sessions: Songs From a Tin Can.” Available everywhere now. CD/LP: http://www.smarturl.it/SpaceSessionsPhys Download: http://www.smarturl.it/SpaceSessionsDL Stream: http://www.smarturl.it/SpaceSesionsSt...
I am not owner of the video and the song. So if you are copyright owner and you have a problem please inform me. I will delete it. See my audio channel too: https://www.youtube.com/channel/UCnwOBBWzYfmN7hLB1ehUYcQ/videos
Martinishake by Swedish synthpop pioneers NASA. Featured on the 1985 album " Power of the Century" and the 1998 best of "Echoes down the hall". If you happen to find any of these records - BUY them! THIS ONE IS FOR YOU, Andrew TSq!
Läs mer på: http://www.beatbox.se/2014/06/11/henzel-thors-klippta-vingar-1990/ Henzel & Thors - Klippta vingar (Henzel & Thors, Henzel) 1990, Mistlur Producerad av Patrik Henzel
Produced by Nasa and written by Patrik Henzel. Video is a mix of the vintage edit by Bissenses Swedish Retro Vintage Music and Film Art Production and the Swedish TV, August 1987. https://youtu.be/BCaT0YuF0YU https://youtu.be/AT-kOcOnVGI This upload is for demonstration purposes only. If you see your copyrights violated please contact me and I will take it down immediately.
Coordinates: 38°52′59″N 77°0′59″W / 38.88306°N 77.01639°W / 38.88306; -77.01639
The National Aeronautics and Space Administration (NASA) is the agency of the United States Federal Government responsible for the civilian space program as well as aeronautics and aerospace research.
President Dwight D. Eisenhower established the National Aeronautics and Space Administration (NASA) in 1958 with a distinctly civilian (rather than military) orientation encouraging peaceful applications in space science. The National Aeronautics and Space Act was passed on July 29, 1958, disestablishing NASA's predecessor, the National Advisory Committee for Aeronautics (NACA). The new agency became operational on October 1, 1958.
Since that time, most US space exploration efforts have been led by NASA, including the Apollo moon-landing missions, the Skylab space station, and later the Space Shuttle. Currently, NASA is supporting the International Space Station and is overseeing the development of the Orion Multi-Purpose Crew Vehicle, the Space Launch System and Commercial Crew vehicles. The agency is also responsible for the Launch Services Program (LSP) which provides oversight of launch operations and countdown management for unmanned NASA launches.
There's a place not far away
where we can go to get away
there's no rules and there's no laws
there's no fighting you can't go wrong
[Chorus:]
'cause we're the next generation
destroy your generation.
Help me up when i'm down and out
hear me scream and hear me shout
time to blow their generation away
let 'em that we're here and we're here to stay
[Chorus]
my freedom's been takin' away
don't wanna hear what i gotta say
lock me up and throw away the key