// StartMathJax Script window.MathJax = {loader: {load: [ 'input/asciimath', 'ui/lazy', 'output/chtml', 'ui/menu']} }; (function() { var script = document.createElement('script'); script.src = "https://cdn.jsdelivr.net/npm/mathjax@3/es5/startup.js"; script.async = true; document.head.appendChild(script); })(); ---------- (Different files) ---------- // UpdateTypeset Script config = { attributes: true, childList: true, subtree: true }; // Callback function to execute when mutations are observed callback = (mutationList, observer) => { for (mutation of mutationList) { if (mutation.type === 'childList') { console.log('A child node has been added or removed.'); MathJax.typeset(); } else if (mutation.type === 'attributes') { console.log(`The ${mutation.attributeName} attribute was modified.`); } } }; // Create an observer instance linked to the callback function observer = new MutationObserver(callback); document.onreadystatechange = () => { if (document.readyState === 'complete') { console.log("Loaded fully according to readyState") targetNode = document.getElementById('content-wrapper') console.log(targetNode) // Start observing the target node for configured mutations observer.observe(targetNode, config); } }
top of page

The Maiden Flight of Space Shuttle Endeavour

Updated: Jul 1, 2022

#02 Science in History

7th May 1992


On this day, the last Space Shuttle to be built was launched from Kennedy Space Center. Its mission was the capture, repair and redeployment of Intelsat VI, a malfunctioning communications satellite.




Image credit: NASA



Named after Captain Cook’s research vessel, Endeavour replaced the Challenger shuttle that had disintegrated in the upper atmosphere 6 years earlier with the loss of 7 lives.


There had been a 32-month interruption to the Space Shuttle program following the Challenger disaster. During this time, the accident was investigated by the Rogers Commission whose findings influenced NASA’s future missions.


After 25 missions, including one to repair the Hubble Space Telescope, Endeavour was retired in 2011 following its return from the International Space Station.

Space shuttle Endeavour, mission STS-134, launched from Kennedy Space Center on its final flight. Image credit: NASA

 

Like to know more?


On the Web…







YouTube: Endeavour's First Flight



Comments/Likes always.welcome!




16 views0 comments
bottom of page