ADVERTISEMENT
970x220

Creatures of  habit

Published Aug 11, 2021 12:02 am
OF TREES AND FOREST Former Senate President
Manny Villar We have been in some form of quarantine since March 15, 2020. I cannot remember all the acronyms (GCQ, ECQ, MECQ) assigned to the different levels of restrictions because they have mutated so much just like the COVID-19 variants. And starting August 6 until at least the 20th, we are again advised to stay home. No matter how frustrating it may be, we should heed the counsel of government and health experts—if you have nothing essential to do, stay home. The challenge of course is how to make the most of the lockdown. We can’t just wallow in misery inside our homes. We need to remain active and productive. We need to remain in shape, physically and mentally. For one, a lot of us will actually continue to work. Some companies have instituted work from home arrangements while some economic activities allowed during ECQ will necessarily need their workers to come in. In my case, work keeps me busy. I continue to hold meetings online, check on our existing projects and study plans for new business initiatives. I discovered that working hard is a good antidote to the boredom of quarantine. Diligence and industriousness are habits. It is something that a person learns and practices for a long time. And it is something you never unlearn, very much like riding a bicycle. We could use the time to celebrate our Olympic athletes. Hidilyn Diaz (Weightlifting—Gold), Nesthy Petecio (Boxing—Silver), Carlo Paalam (Boxing—Silver), and Eumir Marcial (Boxing—Bronze) should be honored by a nation in search of heroes and role models. I was reading stories about their journey and I was really impressed with the persistence and hard work they exhibited as they worked their way to success. What they have accomplished is proof that you can defeat poverty and provide a better future for your family. We could also use the quarantine time to plan our future. Some of our kababayans have been laid off work, some might be thinking about a career change given the emergence of the new normal. Remember that many of our people shifted to entrepreneurship when we first went into lockdown more than a year ago. They used online platforms to transition from being an employee to becoming an entrepreneur. This is also an opportunity for us to spend more time with family and loved ones. Do not violate health protocols and organize a big gathering of course. But the quarantine should give you and the people who live with you more time to talk, to do things together, reconnect. It’s as simple and inexpensive as having coffee together in the morning. In my experience, the lockdown also gives us the opportunity to appreciate the little things in life. Sometimes, we become so focused on whatever it is we are doing that we tend to forget the small things. For instance, the smell of coffee and bread in the morning. It is something we take for granted because we experience it everyday but recently when we opened two branches of Bread Basket! at Evia Lifestyle Center and Vistamall Santa Rosa, it triggered some nice memories when I was a kid in Tondo. I remember the smell of “nilagang kape” in the morning. I mean really early morning because my mother and I always get up early so we can walk to the market and sell shrimps and fish. I also remember the smell of freshly baked pan de sal. I like my pan de sal a bit tostado so I can dip it in my coffee. This was particularly delicious during the cold months of December and January when the mornings are pleasantly nippy. Nowadays that experience has been upgraded. When I visited our Bread Basket! Branch in Evia, I smelled freshly brewed coffee instead of the “barako” boiled in kettle. And aside from pan de sal, I smelled the aroma of a variety of bread and pastries—baguette, croissant, danish, etc. It’s a different experience but it evoked the same memories from my childhood. We are creatures of habit. And during times of difficulty we rely on these routines to give us a sense of normalcy. Let us develop routines that will keep us on our toes and habits that will keep us healthy and sane. Surviving the pandemic does not only mean that we stay COVID 19-free. It also means that we come out of the lockdown mentally and physically healthy. For Comments, please send email to: [email protected] and/or http://www.mannyvillar.com.

Related Tags

By Former Senate President Manny Villar Of Trees And Forest
ADVERTISEMENT
300x250
.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 72px 0 12px; } .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; } li:empty { display: none; } .hidden { display: none; }
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]; // The two offset values // changed to 10 from 1 , 2 const currentUrl = window.location.pathname.substring(1); let isLoading = false; // Prevent multiple calls if (!currentUrl) { console.log("Current URL is invalid."); return; } function isNearBottom() { return window.innerHeight + window.scrollY >= document.documentElement.scrollHeight - 100; } function onScroll() { if (isLoading) return; // Skip if already loading if (isNearBottom()) { if (loadCount >= offset.length) { console.log("Maximum load attempts reached."); window.removeEventListener("scroll", onScroll); return; } isLoading = true; // Set flag to prevent multiple calls const currentOffset = offset[loadCount]; window.loadMoreItems().then(() => { loadCount++; // Increment only after successful execution }).catch(error => { console.error("Error loading more items:", error); }).finally(() => { isLoading = false; // Reset flag after execution }); } } window.addEventListener("scroll", onScroll); }); // Mutation Observer for Newly Loaded Articles const observer = new MutationObserver(() => { const articles = document.querySelectorAll(".articles-observe"); if (articles.length > 0) { observeArticles(articles); } }); observer.observe(document.body, { childList: true, subtree: true }); // Intersection Observer for Updating URL function observeArticles(articles) { 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); } } }); }, { threshold: 0.1 } ); articles.forEach(article => intersectionObserver.observe(article)); }

Sign up by email to receive news.