ADVERTISEMENT

Christmas joy

Published Dec 16, 2025 12:01 am  |  Updated Dec 15, 2025 01:08 pm
I tend to agree with the Andy Williams song: “It’s the most wonderful time of the year.” While other people may not have nice things to say about the Christmas season, the point is that it is, indeed, the best time of the year. Top of mind among the things that make this season special is the generally good mood of people, brought about by the religious and cultural traditions of Christians celebrating with Christmas decorations, parties, family get-togethers, gift-giving, night masses, Noche Buena, and many other festivities.
There are many other, more practical reasons for this Christmas joy. First is that we enjoy much milder and cooler weather, giving us a little freedom from the harsh heat of the summer months and relief from the monsoon rains, typhoons, and flooding. This allows people to have a pleasant walk at night on streets that are neither muddy nor dusty, and for me, it’s a great time to play golf!
The Philippines, along with a handful of other countries, mandates the payment of a 13th-month pay, which benefits most workers, including SSS pensioners. This, in turn, provides people with the spending money to buy gifts, host parties, and take care of the other needs of the season. Of course, this is also the time of the year when bonuses on top of the 13th-month pay are handed out, providing even more cash into the economy.
This is also the best chance you will get to catch up with old friends and relatives you haven’t seen in a while, given the number of parties and reunions scheduled during this time of the year. You never know who you will run into and what possible opportunities may arise from such encounters. As you get older, you appreciate getting together and chatting about the good old days. You may also end up meeting new friends and perhaps upgrading acquaintances into buddies. A truly delightful experience is running into someone you have lost touch with or even thought had passed away, only to find out that they are doing quite well and are equally happy to see you.
Buy yourself something you have always wanted. Christmas is a great excuse to splurge on yourself. Pamper yourself with a spa treatment or travel somewhere you have always wanted to go. Take the day off and light up that Cuban cigar, open the 40-year-old single malt you have been saving for a special occasion, and live a little. Try out that fancy restaurant you have always wanted to go to. I am not asking you to spend your entire life savings in a day, but in relative terms, only what you can afford.
Celebrate the good things you have done in your life, what you have done for yourself, your family, your community, and other people. First of all, the fact that you are still alive and kicking is reason enough to be happy. If you have any regrets in your life, face up to them and correct what you can. Learn how to apologize and express regret for the bad things you have done, and make amends. Don’t carry this burden with you for the rest of your life. But then again, don’t feel guilty about things that are not your fault. A few years ago, in certain Christian countries, it was considered inappropriate to say “Merry Christmas,” and they could only say “Happy Holidays.” I am glad to hear that is no longer the case. Merry Christmas to you all!
(The views and comments of the author are his own and not of the newspaper or FINEX. Dr. George S. Chua was 2016 FINEX President, 2010 to 2020 FPI President, an active entrepreneur, and a Professorial Lecturer 2 at the University of the Philippines Diliman and BGC. He is a Fellow at the Institute of Corporate Directors, Vice Chairman of the Market Governance Board of the Philippine Dealing & Exchange Corp., and loves playing golf. Comments may be sent to [email protected] or [email protected])

Related Tags

Financial Executives Institute of the Philippines (FINEX)
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.