ADVERTISEMENT

Thriving in the 'new normal'

Published Dec 4, 2021 12:05 am

IT'S THE SMALL THINGS

Alex Eduque

As the days go on, and as new variants spring out again just when we thought we had things under control, the more convinced I am that we have to accept that the world we live in today (and in the days to come) will be a “new normal.” I was so resistant to that term for so long because I always thought we would go back to life as we once knew it. But almost two years into the pandemic, I realized that the world has shifted. And although more aspects of our lives today resemble more of the normal we once knew when compared to last year, there will always be a part that will never go back. Or maybe, it will take quite some time. Acceptance is key, and once we learn to do so, we find that it is much easier to be happy, content and at peace with whatever, and wherever our present situation finds us.

I had this realization just as I was writing a speech I had to deliver to a college body of students via Zoom the other day. It is always a privilege to be asked to share a nugget of wisdom (or two, if you can even call it that) on volunteerism to the youth. And though some ideas from speeches I have given before find its way to new speeches, I always make it a point to start from scratch and create a new one specifically for the audience. Why? Because I always feel that when we are given the honor and privilege; a platform to share our ideas if you will – that we must always give it nothing short of our very best.

That, and, things have most definitely changed from the last time I gave a speech. Although this is not my first speech on Zoom, and I do miss the adrenaline of physically standing on stage, behind a podium, flipping through pages of my notes in front of a large audience, for everyone’s safety, this will have to do for now. That is when I had the realization that prompted today’s article: if not for this “new normal,” finding myself on the opposite side of the world from Manila these days, I otherwise would have had to turn down the invitation. Instead, staying up late and adjusting to the time zone of the host is but a small sacrifice and compromise I am more than willing to endure for the great honor given to me.

Indeed, this “new normal” as we try to navigate it the best we can everyday has its perks if we look hard enough, and in my case, this is definitely one of it. Technology, when it works well, is definitely an asset like no other that is able to bring the world together no matter where you may find yourself physically today. It is inevitable that some days bring more frustrations than others, and that our patience for incompetence and mediocrity these days are running low. But, we must never forget to seek the silver linings too – it is in finding this balance that our happiness, at the very least, our sanity lies.

So as we dive into the full holiday swing on this first weekend of December, let us not forget that even though we may be overcome with worry and anxiety as uncertainty still looms about us, more often these days, that we must not forget to see the blessings that this “new normal” has been able to gift us with. Although harder, and more difficult at times, you will be surprised to find the fulfillment that consciously counting your blessings can bring you. Believe me.

Related Tags

ITS THE SMALL THINGS Thriving in the ‘new normal’ Alex M. Eduque
ADVERTISEMENT
.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1561_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1562_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1563_widget.title }}

{{ articles_filter_1564_widget.title }}

.mb-article-details { position: relative; } .mb-article-details .article-body-preview, .mb-article-details .article-body-summary{ font-size: 17px; line-height: 30px; font-family: "Libre Caslon Text", serif; color: #000; } .mb-article-details .article-body-preview iframe , .mb-article-details .article-body-summary iframe{ width: 100%; margin: auto; } .read-more-background { background: linear-gradient(180deg, color(display-p3 1.000 1.000 1.000 / 0) 13.75%, color(display-p3 1.000 1.000 1.000 / 0.8) 30.79%, color(display-p3 1.000 1.000 1.000) 72.5%); position: absolute; height: 200px; width: 100%; bottom: 0; display: flex; justify-content: center; align-items: center; padding: 0; } .read-more-background a{ color: #000; } .read-more-btn { padding: 17px 45px; font-family: Inter; font-weight: 700; font-size: 18px; line-height: 16px; text-align: center; vertical-align: middle; border: 1px solid black; background-color: white; } .hidden { display: none; }
function initializeAllSwipers() { // Get all hidden inputs with cms_article_id document.querySelectorAll('[id^="cms_article_id_"]').forEach(function (input) { const cmsArticleId = input.value; const articleSelector = '#article-' + cmsArticleId + ' .body_images'; const swiperElement = document.querySelector(articleSelector); if (swiperElement && !swiperElement.classList.contains('swiper-initialized')) { new Swiper(articleSelector, { loop: true, pagination: false, navigation: { nextEl: '#article-' + cmsArticleId + ' .swiper-button-next', prevEl: '#article-' + cmsArticleId + ' .swiper-button-prev', }, }); } }); } setTimeout(initializeAllSwipers, 3000); const intersectionObserver = new IntersectionObserver( (entries) => { entries.forEach((entry) => { if (entry.isIntersecting) { const newUrl = entry.target.getAttribute("data-url"); if (newUrl) { history.pushState(null, null, newUrl); let article = entry.target; // Extract metadata const author = article.querySelector('.author-section').textContent.replace('By', '').trim(); const section = article.querySelector('.section-info ').textContent.replace(' ', ' '); const title = article.querySelector('.article-title h1').textContent; // Parse URL for Chartbeat path format const parsedUrl = new URL(newUrl, window.location.origin); const cleanUrl = parsedUrl.host + parsedUrl.pathname; // Update Chartbeat configuration if (typeof window._sf_async_config !== 'undefined') { window._sf_async_config.path = cleanUrl; window._sf_async_config.sections = section; window._sf_async_config.authors = author; } // Track virtual page view with Chartbeat if (typeof pSUPERFLY !== 'undefined' && typeof pSUPERFLY.virtualPage === 'function') { try { pSUPERFLY.virtualPage({ path: cleanUrl, title: title, sections: section, authors: author }); } catch (error) { console.error('ping error', error); } } // Optional: Update document title if (title && title !== document.title) { document.title = title; } } } }); }, { threshold: 0.1 } ); function showArticleBody(button) { const article = button.closest("article"); const summary = article.querySelector(".article-body-summary"); const body = article.querySelector(".article-body-preview"); const readMoreSection = article.querySelector(".read-more-background"); // Hide summary and read-more section summary.style.display = "none"; readMoreSection.style.display = "none"; // Show the full article body body.classList.remove("hidden"); } document.addEventListener("DOMContentLoaded", () => { let loadCount = 0; // Track how many times articles are loaded const offset = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; // Offset values const currentUrl = window.location.pathname.substring(1); let isLoading = false; // Prevent multiple calls if (!currentUrl) { console.log("Current URL is invalid."); return; } const sentinel = document.getElementById("load-more-sentinel"); if (!sentinel) { console.log("Sentinel element not found."); return; } function isSentinelVisible() { const rect = sentinel.getBoundingClientRect(); return ( rect.top < window.innerHeight && rect.bottom >= 0 ); } function onScroll() { if (isLoading) return; if (isSentinelVisible()) { if (loadCount >= offset.length) { console.log("Maximum load attempts reached."); window.removeEventListener("scroll", onScroll); return; } isLoading = true; const currentOffset = offset[loadCount]; window.loadMoreItems().then(() => { let article = document.querySelector('#widget_1690 > div:nth-last-of-type(2) article'); intersectionObserver.observe(article) loadCount++; }).catch(error => { console.error("Error loading more items:", error); }).finally(() => { isLoading = false; }); } } window.addEventListener("scroll", onScroll); });

Sign up by email to receive news.