Skip to main content
  • SJC Duck
  • April 25, 2018

Chapter 3: Seymour in the Nation’s Capital

Seymour loves fast cars and fast… airplanes. So he turned in his luxury rental and was ready to take flight again – this time to Washington’s Dulles International Airport. (Daily one-stop, no-plane-change continuing service to Dulles from San Jose is offered by Frontier Airlines.)

#SJCDuck-chillin-in-New-Orleans-living-the-life-of-luxury..jpg

Seymour’s luxury rental car

At the airport, he parted ways with his new friend who was heading to Albuquerque. 

@augiezl-is-flying-for-the-first-time-to-Albuquerque-and-today-this-is-the-first-direct-flight-by-@southwestair-he’s-traveling-with-his-new-buddy-#SJCduck.jpg

Augiezel and Seymour going their separate ways at the airport

After arriving in D.C., Seymour headed to Nationals Park to take in a game from the good seats.


Where-was-Seymoure-J.-Canard-tonight-#SJCduck-#nationalpark-#washington-nationals-#dippindots-#bryceharper34.jpg

Where-was-Seymour-J.-Canard-tonight-#washingtonnationals.jpg

Seymour in the stands at a Washington Nationals game

Before calling it a night, he hopped on the Metro to go scope out the Washington Monument and the Lincoln Memorial.

Where-is-Seymour-J.-Canard-headed-#SJCduck-#swipeleft-#themetro-#washingtonmonument-#lincolnmemorial-#whatagreatday.jpg

Seymour riding Washington, D.C.’s Metro to see famous landmarks


Inspired by the sights on the National Mall, Seymour started planning his next trip…

Washington-Monument.jpg

Seymour at the Washington Monument

Lincoln-Memorial.jpg

Seymour at the Lincoln Memorial
 

To be continued… Chapter 4

Return to Chapter 1

Photo Gallery

 

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 || {}); } });