(function () { try { var pending = window.sessionStorage.getItem("ec_form_submit_pending"); if (pending) { window.sessionStorage.removeItem("ec_form_submit_pending"); window.dataLayer = window.dataLayer || []; window.dataLayer.push({ event: "ec_form_submit", user_data: JSON.parse(pending) }); } } catch (_) {} })(); // Defensive stub: a GTM tag calls window._zi_fc.fcRetrigger() which is // only defined once the ZoomInfo FormComplete SDK loads. If consent / // ad blockers / load order prevent that, the GTM call throws and // breaks downstream tags. The no-op below is harmlessly overwritten // when the real SDK initializes. (function () { try { window._zi_fc = window._zi_fc || {}; if (typeof window._zi_fc.fcRetrigger !== "function") { window._zi_fc.fcRetrigger = function () {}; } } catch (_) {} })();

2021 | Read Time: 2 Minutes

A Veterans Day Tribute

November 11, 2021

Darryl Johnson By: Darryl Johnson

The following is a guest post by Darryl Johnson, Senior QE Testing Analyst at Applied. IVANS is a division of Applied Systems, Inc.


Applied and its Diversity, Inclusion and Belonging Council are proud to commemorate the service and sacrifices made by our military veterans throughout the month of November. Veterans Month at Applied is an opportunity to recognize the contributions of the military members of all our nations, as well as the family members, friends and supporters who make their service possible.

What Is the Difference Between Veterans Day and Remembrance Day?

Veterans Day is observed in the United States as a tribute to ALL military veterans, including those currently serving in our armed forces. Remembrance Day is observed throughout the United Kingdom and Canada, and is very similar to Memorial Day in the United States, as they both honor those who have given their lives in our nations' conflicts. Both holidays are observed on November 11th and the Veterans of Applied Community will host several events and share content leading up to them, with the intent to educate one another and commemorate the service and sacrifice of our veterans.

How Applied Is Celebrating Veterans Month

The Veterans of Applied Community of Interest has planned a schedule of events and activities intended to deliver education on topics important to veterans and their supporters; provide opportunities for Applied teammates to share their experiences as veterans or family members and supporters of the service members in their lives; and spotlight several non-profit organizations working hard every day to improve the lives and opportunities for the veteran community.

Weekly themes will focus upon the challenges and triumphs of different groups within the military and veteran communities, and several speakers will be hosted to add their perspectives to the ongoing discussions. The intent behind these events and conversations is to welcome as many diverse perspectives as possible to be shared from across Team Applied as we work to learn more about one another and how we can build a stronger Team Applied community.

Who Are the Veterans of Applied?

Veterans of Applied is a Community of Interest within the broader Diversity, Inclusion and Belonging Council. We are a group of veterans, family members and supporters from across the Applied organization, including all nationalities and branches of service. Our driving objectives are to promote camaraderie and a supportive network within our community; increase awareness of veteran issues and opportunities at Applied; and provide meaningful outreach opportunities to organizations supporting veterans and their families.


Darryl Johnson

Darryl Johnson

Darryl Johnson, Senior QE Testing Analyst, has been with Applied for 22 years. Prior to Applied, he was an Electrician's Mate Third Class in the U.S. Navy from 1981-1983.

var swiper = new Swiper('.swiper-container', { pagination: '.swiper-pagination', nextButton: '.swiper-button-next', prevButton: '.swiper-button-prev', slidesPerView: 1, paginationClickable: true, spaceBetween: 30, loop: true }), waitForFinalEvent = (function () { var timers = {}; return function (callback, ms, uniqueId) { if (!uniqueId) { uniqueId = "000000"; } if (timers[uniqueId]) { clearTimeout(timers[uniqueId]); } timers[uniqueId] = setTimeout(callback, ms); }; })(); function getOuterHeight(element, includeMargin) { if (!element) return 0; var styles = window.getComputedStyle(element); var height = element.offsetHeight; if (includeMargin) { height += parseInt(styles.marginTop) + parseInt(styles.marginBottom); } return height; } function slideUp(element, duration, callback) { if (!element) return; var height = element.scrollHeight; element.style.height = height + 'px'; element.style.overflow = 'hidden'; element.style.transition = 'height ' + duration + 'ms'; requestAnimationFrame(function() { element.style.height = '0px'; setTimeout(function() { element.style.display = 'none'; element.style.height = ''; element.style.overflow = ''; element.style.transition = ''; if (callback) callback(); }, duration); }); } function slideDown(element, duration, callback) { if (!element) return; element.style.display = 'block'; var height = element.scrollHeight; element.style.height = '0px'; element.style.overflow = 'hidden'; element.style.transition = 'height ' + duration + 'ms'; requestAnimationFrame(function() { element.style.height = height + 'px'; setTimeout(function() { element.style.height = ''; element.style.overflow = ''; element.style.transition = ''; if (callback) callback(); }, duration); }); } function resizeWN() { var newCapabilities = document.getElementById("new-capabilities"); if (!newCapabilities) return; var wn = []; var wnIndex = 0; var tallest = 0; var overallHeight = 0; Array.prototype.forEach.call(newCapabilities.children, function(child, i) { wn.push(child); var h = 0; Array.prototype.forEach.call(child.children, function(grandchild) { var tagName = grandchild.tagName.toLowerCase(); switch (tagName) { case 'h4': h += getOuterHeight(grandchild, true); overallHeight += getOuterHeight(grandchild, true); break; case 'div': if (!grandchild.parentElement.classList.contains('active')) { grandchild.style.position = 'absolute'; grandchild.style.visibility = 'hidden'; grandchild.style.display = 'block'; } Array.prototype.forEach.call(grandchild.children, function(greatGrandchild) { h += getOuterHeight(greatGrandchild, true); }); if (!grandchild.parentElement.classList.contains('active')) { grandchild.removeAttribute('style'); } break; default: h += getOuterHeight(grandchild, true); break; } }); if (h > tallest) { var h4 = wn[wnIndex].querySelector('h4'); var currentH4 = wn[i].querySelector('h4'); if (h4 && currentH4) { overallHeight -= (tallest - getOuterHeight(h4, true)); overallHeight += (h - getOuterHeight(currentH4, true)); } tallest = h; wnIndex = i; } }); var parent = newCapabilities.parentElement; if (parent) { parent.style.height = overallHeight + 'px'; } } function init() { resizeWN(); var newCapabilities = document.getElementById("new-capabilities"); if (newCapabilities) { newCapabilities.addEventListener('mousemoveend', function(e) { var li = e.target.closest('li'); if (!li) return; var capability = li.getAttribute('data-screenshot'); var screenShot = document.querySelector('#new-capability-screens *[data-screenshot="' + capability + '"]'); var list = newCapabilities; var x = li; if (!list.classList.contains('animating') && !x.classList.contains('active')) { var activeDiv = list.querySelector(".active > div"); var xDiv = x.querySelector('div'); var animationsComplete = 0; function checkComplete() { animationsComplete++; if (animationsComplete === 2) { list.classList.remove('animating'); Array.prototype.forEach.call(list.children, function(child) { if (child !== x) { child.removeAttribute('class'); Array.prototype.forEach.call(child.children, function(grandchild) { grandchild.removeAttribute('style'); }); } }); x.classList.add('active'); } } if (activeDiv) { slideUp(activeDiv, 300, checkComplete); } else { checkComplete(); } if (xDiv) { slideDown(xDiv, 300, checkComplete); } else { checkComplete(); } list.classList.add('animating'); var screenshots = document.querySelectorAll(".screenshot"); Array.prototype.forEach.call(screenshots, function(screenshot) { if (screenshot !== screenShot) { screenshot.style.display = 'none'; } }); if (screenShot) { screenShot.style.display = ''; } } }); } window.addEventListener('resize', function () { waitForFinalEvent(function () { resizeWN(); }, 600, "1DB3E7"); }); } if (document.readyState !== 'loading') { init(); } else { document.addEventListener('DOMContentLoaded', init); } (function() { function fadeIn(element, duration) { if (!element) return; element.style.display = 'block'; element.style.opacity = '0'; element.style.transition = 'opacity ' + duration + 'ms'; requestAnimationFrame(function() { element.style.opacity = '1'; }); } function fadeOut(element, duration) { if (!element) return; element.style.opacity = '1'; element.style.transition = 'opacity ' + duration + 'ms'; requestAnimationFrame(function() { element.style.opacity = '0'; setTimeout(function() { element.style.display = 'none'; element.style.transition = ''; element.style.opacity = ''; }, duration); }); } function init() { var player; var lightbox = document.getElementById("lightbox"); var videoElement = document.getElementById("vjs_video_3"); if (videoElement && typeof videojs !== 'undefined') { videojs("vjs_video_3").ready(function () { player = this; player.one('loadedmetadata', function () { var teamVideo = document.getElementById("team-applied-video"); if (teamVideo) { var playButton = teamVideo.querySelector('#playbutton'); if (playButton) { playButton.addEventListener('click', function (event) { event.preventDefault(); if (lightbox) fadeIn(lightbox, 300); if (player) player.play(); }); } } var closeButton = document.getElementById("close"); if (closeButton) { closeButton.addEventListener('click', function (event) { event.preventDefault(); if (player) { player.pause(); player.currentTime(0); } if (lightbox) fadeOut(lightbox, 300); }); } }); }); } } if (document.readyState !== 'loading') { init(); } else { document.addEventListener('DOMContentLoaded', init); } })();