- Stories
- March 15, 2021
Women of Aviation Worldwide Week - Featuring Stephanie, SJC's Information Technology Department Manager
Meet Stephanie, Mineta San José International Airport's (SJC) Information Technology Department Manager.
Approaching her five-year anniversary at SJC, Stephanie leads the Applications, Infrastructure, and IT Project Management teams. Her teams are responsible for managing the network, phone, applications, help desk, radios, and data center. In addition, Stephanie led her extraordinary teams quickly into action when the pandemic first began, by acquiring equipment and providing employees working remotely with the technology necessary to continue to keep the airport safe and operational.
At the very young age of 17, Stephanie earned her pilot’s license. From that point on, Stephanie’s career has centered around her love for aviation and technology, including working at the National Aeronautics and Space Administration (NASA) prior to SJC.
As the NASA Aviation Safety Reporting System Program Manager, Stephanie worked with the Federal Aviation Administration (FAA) and the National Transportation and Safety Board (NTSB) on aviation research studies. At NASA, she was the IT Project Manager responsible for migrating a legacy system to an Oracle database. Additionally, Stephanie worked at Rockwell Collins as the F-15 Product Line Manager and led new technology projects for flat panel color displays and heads up displays.
Stephanie earned a bachelor’s degree in Aviation from San José State University, and a Master’s degree in Information Systems from Golden Gate University. Currently, Stephanie serves on the Airport Councils International (ACI-NA) Business Information Technology Group.

document.addEventListener('DOMContentLoaded', function () { const acceptButton = document.querySelector('.cm-btn-success')[0]; const declineButton = document.querySelector('.cm-btn-danger')[0]; acceptButton.addEventListener('click', function () { // Handle accept action loadChatbot(); // Load chatbot immediately on accept }); declineButton.addEventListener('click', function () { loadChatbot(); // Load chatbot immediately on decline }); function loadChatbot() { (function (d, m) { var defaultSettings = { "defaultBotIds": ["sjc-oj2ht"], "defaultAssignee": "sjc-oj2ht", "skipRouting": true, }; var kommunicateSettings = { "appId": "115795fb883b8512e78ed54540345f318", "popupWidget": true, "automaticChatOpenOnNavigation": true, "talkToHuman": true, "primaryCTA": "TALK_TO_HUMAN", "onInit": function () { /* Hide Kommunicate branding */ var css = ".mck-running-on {display:none !important;}"; Kommunicate.customizeWidgetCss(css); // Disable input - before widget loads document.addEventListener("DOMContentLoaded", function () { const attempt = setInterval(() => { const iframeDoc = window.KommunicateGlobal?.document; if (!iframeDoc) return; const box = iframeDoc.querySelector(".mck-box-form.mck-row"); if (box) { box.style.pointerEvents = "none"; box.style.opacity = "0.5"; clearInterval(attempt); // stop polling } }, 50); }); // Main logic - Run after widget loaded setTimeout(() => { const kmDoc = window.KommunicateGlobal?.document; if (!kmDoc) return; let consentGiven = false; function disableInput() { const box = kmDoc.querySelector(".mck-box-form.mck-row"); if (box) { box.style.pointerEvents = "none"; box.style.opacity = "0.5"; } } function enableInput() { const box = kmDoc.querySelector(".mck-box-form.mck-row"); if (box) { box.style.pointerEvents = "auto"; box.style.opacity = "1"; } } /* Disable input again (persistent) */ disableInput(); /* Detect clicking the “I Agree” button */ Kommunicate.subscribeToEvents({ onRichMessageButtonClick: function (resp) { if (resp.eventLabel === "I Agree") { consentGiven = true; } } }); /* Keep enforcing the rule even after re-renders */ const observer = new MutationObserver(() => { if (consentGiven) enableInput(); else disableInput(); }); const target = kmDoc.querySelector("#mck-sidebox-content") || kmDoc.body; observer.observe(target, { childList: true, subtree: true }); }, 1200); // widget render delay Kommunicate.updateSettings(defaultSettings); } }; /* Default Kommunicate loader */ kommunicateSettings.restartConversationByUser = true; var s = document.createElement("script"); s.type = "text/javascript"; s.async = true; s.src = "https://widget.kommunicate.io/v2/kommunicate.app"; var h = document.getElementsByTagName("head")[0]; h.appendChild(s); window.kommunicate = m; m._globals = kommunicateSettings; })(document, window.kommunicate || {}); } });