ADVERTISEMENT

The oldest person I know

Published Dec 30, 2020 11:00 pm
LANDSCAPE Gemma Cruz Araneta The oldest person I know may, sooner or later, be no other than myself. That entered my awareness with a jolt; there are now very few people whom I know, who are at least 10 years older than I am. Frightful, isn’t it? One fine day before the pandemic, I was thinking of whom I could consult about the whereabouts of Mr. X during WW II. Although this person was quite revered in the local scene up until Pearl Harbor was bombed, there is absolutely no record, good or bad, of what he was doing during the Japanese Occupation, or how he escaped being killed. Until recently, there were two reliable sources who were old enough to have answered my queries and confirmed my assumptions about Mr. X. They could have shared valuable information not contained in history books, nor online. They must have patronized the same tailor and barber as Mr. X , flirted with the same society girls, had coffee at the Botica Boie on the Escolta. But I procrastinated and before I knew it, the pandemic fell upon us. Both of them died, months apart, not of Covid-19, but without warning. Now, I shall never know about the exploits of Mr. X. How can I ever forgive myself! Should I tell my grandchildren, nieces and nephews to draw up a list of questions while I am still around? Should I warn them that they might regret it, if they do not ask me now? Or, should I take it upon myself to tell them about family matters, political stuff, events that they might want to know about when they are older? Shall I start shaking the family tree? I had a paternal aunt who did just that. She delighted in telling stories about our family and other families we know, as we younger ones lingered at the edge of a conversation after a sumptuous Sunday lunch. In the course of years, I realized that my aunt was not merely spreading naughty gossip because her stories had pith and context. She was actually a pioneer in local oral history. A pity that she never had time to write anything down, much less give a seminar or arrange a conference for historians. She answered a lot of my questions and perhaps, I should write down, or make a hard copy, of my aunt’s vocalized histories, while memory still serves. My only grandson—he will be 21 next month—does ask me a lot of things simply because he was born and grew up in Mexico and has not completely mastered the ramifications of our luxuriant family tree, or trees. He asks me profound questions as well about things that can only occur to someone that young and innocent. Lola, he once asked, if you could have had one of these gadgets, this technology, in your youth, which would you choose? He looked at me expectantly, he really could not imagine what my choice would be. The cell phone, I said firmly. My friends and I agree that if we had had cell phones, our lives would have been completely different. Silence. My grandson could not figure it out. Why, Lola? Because we could have called up all the boys we knew and sent them all kinds of messages. In those days, it was taboo for nice girls to telephone guys—we only had landlines—it was considered cheap, too forward. You never called up Lolo Tonypet? Never, I said. I had to wait for him to call me. My grandson laughed uncontrollably . What other gadget, Lola? The laptop, I love the cut and paste and how easily I can access information with a click of a finger. When I was in school, we had to physically consult volumes in the school library just to counter-check a historical date. Next time my grandson zooms—he is living somewhere else now because of the quarantine—I shall encourage him to ask about his great grandparents on both sides of the family because in their own way they participated in building this nation. I shall start sharing oral histories of the family, both happy and sad; he should begin recording all this now that he is still not the oldest person he knows. ([email protected])(gemmacruzaraneta.com)

Related Tags

Gemma Cruz Araneta
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.