ADVERTISEMENT

The 2020 US elections

Published Oct 24, 2020 08:56 pm
THE VIEW FROM RIZAL Dr. Jun Ynares Dr. Jun Ynares “Who do you think would win –  Trump or Biden?” “What do you think of the US elections – has it started to resemble Philippine elections?” “If you were an American, would you go Republican or Democrat in this election?” “What’s at stake for us in this election?” Those were some of the messages I got from friends and colleagues in the local government sector. The 2020 United States presidential elections is just a little more than a week away. The proximity of the date seems to have fueled a growing interest among Filipinos on the conduct and outcome of this exercise. We have closely watched US presidential elections in the past. These contests are well-documented and the excitement has been captured well in books and videos that are now available online. The campaign for what is called “the most powerful office on earth” is made of thriller novel stuff. Those who closely observe the campaigns have their eyes on the strategists, the image-makers, the message spinners, the stylists, the speechwriters, and other members of what we believe is a cabal of experts who “create” the candidate. “Packaging” the candidate – that’s what it is called. If such teams are still at work in this particular US election, some of our friends joke that “Filipino political strategists must have been included.” We believe the joke stemmed from observations that the 2020 contest for the White House has been less civil compared to past elections. There have also been certain elements in the political battle that have never been heard of in US elections. For example, this seems to be the first time that the very credibility of the election process was put in question by a candidate. This also appears to be the first time that certain quarters worried over speculations that the sitting president may not accept a possible defeat in the polls. Observers also point out that attacks on the person of the candidate seemed to have the upper hand in this campaign, overshadowing the usual sober discussion of the issues that truly matter to American voters. They summed the contest as being about “character,” making many wonder if party platform would matter less in the 2020 US presidential polls. We do not have any basis to make a prediction as to who would win: the incumbent or the challenger. We are also sympathetic to neither Republicans and Democrats. In other words, we have no genuine interest in the politics of the US Presidential election. We may have valid interests in the conduct and outcome. We hope that this particular election would not damage or put into question the soundness of the American democratic system. We hope that this election would prove once again that choosing leaders in an atmosphere of robust democracy works. After all, our democracy is patterned after the American model. The logic is simple: if the system continues to work well for them, it will continue to serve us as well. We also hope that the use of character assassination would not demolish the dignity and credibility of whoever wins the US presidential election. No matter how one feels about the United States of America, the fact remains that a US president remains to be considered the leader of the free world. The free world needs a leader who has both dignity and credibility. We also hope that the US elections on November 3 will come to a quick conclusion and a winner declared right away. We also hope that the winner could be inaugurated and assume office at the usual date of the traditional turnover of the US presidency. Political chaos in the US could create negative ripples all over the world. It could affect stock markets, trade and commerce, and geopolitical stability. We wish the same thing that most Americans are praying for – for this political season to be over soon. The next US president will oversee the rebuilding of his country in the aftermath of the pandemic. We have an interest in how that rebuilding process will be done – how and how much the US government will be investing to get businesses and enterprises back on their feet. Our economy is still tied to that of the US, after all. Our hope for a quick and peaceful conclusion to the 2020 US presidential election also stems from our sentimental ties with the American people. Despite the setback in our bilateral relations, the American people remain our friends. Friends wish each other only the best. *For feedback, please email it to [email protected] or send it to #4 Horse Shoe Drive, Beverly Hills Subdivision, Bgy. Beverly Hills, Antipolo City, Rizal.

Related Tags

Dr. Jun Ynares
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.