ADVERTISEMENT

Six tips for self-trust this new year

'One can lose this trust after a mistake, or when faced with harsh or constant judgment from other people.'

Published Jan 11, 2024 12:14 pm

Trust is the foundation of any relationship, especially with yourself. Start the new year right by rebuilding it. Boost your self-confidence, improve decision-making skills, reduce stress levels, and have more control of your circumstances to achieve resolutions.

“There is no one more important to trust than yourself,” says Erica Cirino, science writer, author, artist, and researcher, whose stories explore the intersections and connection of humans and nature. “It is one of the most helpful things you can do for you in your life.”

Cirino, who is also the communications manager of the Plastic Pollution Coalition, explains that one can lose this trust after a mistake, or when faced with harsh or constant judgment from other people.

“It can feel more difficult to make decisions when you cannot trust yourself because you fear you will make the wrong choice. Or you might be more prone to criticizing your own decisions after you make them,” she says.

The author of Thicker than Water: The Quest for Solutions to the Plastic Crisis, however, stressed that with some effort, one can still build it up over time.

“This can make life feel a little easier and much more enjoyable,” she says.

Echoing Cirino, the Benilde Well-Being Center (BWC) of De La Salle-College of Saint Benilde (DLS-CSB) shares her reminders posted on the digital wellness platform Healthline, which were medically reviewed by Dr. Timothy Legg, a licensed psychologist and board-certified geriatric and psychiatric mental health nurse practitioner.

Here are the tips.

1.jpg

1. Be yourself.
When you start to feel insecure around others, remind yourself that it is okay to be yourself. Practice around the people you feel most comfortable with. These may be your friends and family.

2.jpg

2. Be kind to yourself.
Love yourself unconditionally. Get rid of negative thoughts and self-criticism. Keep a close eye on your inner voice. Track how it reacts to your actions.

3.jpg

3. Spend time with yourself.
Allow time for one-on-one with yourself. Look inward. Meditate in a quiet place for five to 15 minutes each day. Pay close attention to your breathing and listen to your body. As any thoughts or self-criticisms arise, acknowledge them. Then let go.

4.jpg

4. Set reasonable goals.
Plot several small and more realistic goals. These will put you in the right direction toward your big aspiration. It will help you gain confidence as you complete accomplishments along the way.

5.jpg

5. Focus on your strengths.
Accept both your strengths and weaknesses. Spend more time doing the things that you are good at. If you are not sure, ask those closest to you. Build your trust knowing you will excel.

6.jpg

6. Be decisive.
Stop questioning your decisions and actions. Stick with your choices. If it turns out not to be the best, do not beat yourself up over it. You can learn from your mistakes. Believe that you will do better next time. Move on. Have faith in yourself and your decision-making skills.

Related Tags

Manila Bulletin Lifestyle De La Salle College of Saint Benilde
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.