Teacher Wellness
December 12, 2022

Overcoming Your Teacher Fears

Without a doubt, teaching can be an anxiety-inducing profession. Not to mention how frustrating it can be at times, especially when we find ourselves feeling stuck because of said anxiety.

Whether it be confronting that difficult parent, having that conversation with your challenging colleague, or bringing up that issue to your administration, fear can oftentimes get in the way of our progress as educators. This lack of progress can lead to a sensation of stagnation that, when left unchecked, can lead to dissatisfaction in our careers. In turn, this dissatisfaction can result in a loss of passion, sense of purpose, and overall well-being in our roles as physical educators.

"What's on the other side of fear?" - Jamie Foxx

It doesn't have to be this way. Despite the feelings of fear that leave us feeling frozen in our tracks, we can take action and rise to meet those things that scare us. In other words, we can keep moving forward despite feeling scared sh*tless at times (which is how I like to define "bravery").

All it takes is a system.

In his 2017 TED Talk, Tim Ferriss shared the system he uses when he finds himself spiraling down into anxiety due to undefined fears.

He calls this system "fear-setting".

Fear-setting is an exercise that allows you to engage in "premeditatio malorum" (i.e. "the pre-meditation of evils") to overcome your fears and prevent paralysis by analysis. It involves three activities:

  • The "What If" Sheet on which you dive deep into all of the worst possible scenarios that could occur by facing the thing that is scaring you, reflect on what you could do to prevent those things from happening, and identify steps you could take to repair the situation should any of them actually happen.
  • The Benefits of Trying Sheet on which you reflect on what benefits could come from making an attempt or experiencing even partial success.
  • The Cost of Inaction Sheet on which you identify the negative outcomes that could occur over time should you not act and just embrace the status quo.

There's a good chance that there will come a time during this school year in which you (or someone you know) will find yourself hesitating to do something that you know you need/want to do but feel too afraid to take action.

To help you put Ferriss' "Fear-Setting" practice into action, I created the following booklet to help you structure your thinking and reflection so that you can get out of your own head and start making progress toward overcoming what is scaring you.

If you'd like to try the Fear-Setting system out for yourself, here are some action items for you:

✅ Watch Tim Ferriss' TED Talk that I embedded above.

✅ Download my free Fear-Setting Booklet by hitting the button below.

Download The Free Fear-Setting Booklet

I hope this resource helps you overcome your fears and close the gap between you and your goals!

Happy Teaching!

⚡️ Take Action

Personal Reflection: Take a minute to reflect on the path that lies between where you are now and where you want to be as a physical educator. Are there any steps along that path that are scarier than others?

Practice Fear-Setting: Download the free Fear-Setting Booklet and apply the activities that make up the fear-setting process to those scary steps that you identified.

Find The Social Support You Need: #PhysEdU is a professional growth community that was designed to help teachers build their capacity as Full-Stack Physical Educators. Within the community, not only will you find hundreds of resources designed to help you empower your teaching, you will also find a group of like-minded teachers who understand the unique challenges that physical educators face. The #PhysEdU community is here to help you overcome your fears and reach the goals that you have set for your professional growth! Consider joining us on campus!

Joey Feith
Joey Feith is a physical education teacher based out of Nova Scotia and the founder of ThePhysicalEducator.com.
View all posts

Similar posts

Newsletter

Sign up and never miss another blog post!

Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.
// Blog CTA Click Tracking for GA4 // Add this script to your Webflow site's custom code section // Function to track CTA clicks function trackBlogCTA(ctaLocation, ctaText, destinationUrl) { // Send event to GA4 if (typeof gtag !== 'undefined') { gtag('event', 'blog_cta_click', { 'event_category': 'Blog CTA', 'event_label': ctaText, 'cta_location': ctaLocation, // 'top', 'middle', 'bottom', 'inline' 'blog_post': window.location.pathname, 'destination_url': destinationUrl }); console.log('Blog CTA tracked:', { location: ctaLocation, text: ctaText, post: window.location.pathname }); } } // Automatically track all CTA clicks on blog posts document.addEventListener('DOMContentLoaded', function() { // Only run on blog post pages if (!window.location.pathname.includes('/blog/')) return; // Find all CTA links (adjust selectors based on your site structure) const ctaSelectors = [ 'a[href*="/membership"]', 'a[href*="/join"]', 'a[href*="physedu"]', 'a.cta-button', // If you have a specific class 'a.button-primary' // Adjust to match your button classes ]; // Combine all selectors const allCTALinks = document.querySelectorAll(ctaSelectors.join(', ')); allCTALinks.forEach(function(link) { link.addEventListener('click', function(e) { // Determine CTA location based on position on page const rect = link.getBoundingClientRect(); const scrollPos = window.scrollY + rect.top; const pageHeight = document.body.scrollHeight; const relativePos = scrollPos / pageHeight; let ctaLocation = 'middle'; if (relativePos < 0.25) ctaLocation = 'top'; else if (relativePos > 0.75) ctaLocation = 'bottom'; // Get CTA text const ctaText = link.textContent.trim() || link.getAttribute('aria-label') || 'Unknown'; // Get destination URL const destinationUrl = link.getAttribute('href'); // Track the click trackBlogCTA(ctaLocation, ctaText, destinationUrl); }); }); console.log('Blog CTA tracking initialized. Found ' + allCTALinks.length + ' CTA links.'); }); // Alternative: Manual tracking function you can call from specific CTAs // Usage: window.trackBlogCTA = trackBlogCTA; // #PhysEdU Membership Conversion Tracking // Add this to Webflow Project Settings > Custom Code > Footer Code // Track when someone clicks to join #PhysEdU (starts checkout) document.addEventListener('DOMContentLoaded', function() { // Find all links to Circle checkout pages const checkoutLinks = document.querySelectorAll('a[href*="physedu.circle.so/checkout"]'); checkoutLinks.forEach(function(link) { link.addEventListener('click', function(e) { // Determine which tier based on URL let tier = 'unknown'; let value = 0; if (link.href.includes('/checkout/community')) { tier = 'community'; value = 10; } else if (link.href.includes('/checkout/plus')) { tier = 'plus'; value = 49; } else if (link.href.includes('/checkout/pro')) { tier = 'pro'; value = 99; } // Track the checkout initiation if (typeof gtag !== 'undefined') { gtag('event', 'begin_checkout', { 'event_category': 'PhysEdU Membership', 'event_label': tier, 'value': value, 'currency': 'USD', 'items': [{ 'item_id': 'physedu_' + tier, 'item_name': '#PhysEdU ' + tier.charAt(0).toUpperCase() + tier.slice(1), 'price': value, 'quantity': 1 }] }); console.log('Tracked: Begin checkout for #PhysEdU ' + tier); } }); }); console.log('PhysEdU checkout tracking initialized. Found ' + checkoutLinks.length + ' checkout links.'); }); // Track successful membership signup (when they return from Circle) // This checks if they're landing on a page after successful Circle checkout window.addEventListener('load', function() { // Check if URL contains success parameters // Circle typically adds parameters like ?success=true or redirects to a specific page const urlParams = new URLSearchParams(window.location.search); // Check for common success indicators const hasSuccess = urlParams.get('success') === 'true' || urlParams.get('checkout') === 'success' || urlParams.get('member') === 'new' || document.referrer.includes('circle.so/checkout'); // Also check if landing on a "welcome" or "success" page const isWelcomePage = window.location.pathname.includes('/welcome') || window.location.pathname.includes('/success') || window.location.pathname.includes('/getting-started'); if (hasSuccess || (isWelcomePage && document.referrer.includes('circle.so'))) { // Try to determine tier from URL or page content let tier = 'community'; // default assumption let value = 10; // Check URL for tier indicators if (urlParams.get('tier') === 'plus' || window.location.href.includes('plus')) { tier = 'plus'; value = 49; } else if (urlParams.get('tier') === 'pro' || window.location.href.includes('pro')) { tier = 'pro'; value = 99; } // Fire the conversion event if (typeof gtag !== 'undefined') { gtag('event', 'physedu_signup', { 'event_category': 'PhysEdU Membership', 'event_label': tier, 'value': value, 'currency': 'USD', 'transaction_id': 'physedu_' + Date.now(), // Simple unique ID 'items': [{ 'item_id': 'physedu_' + tier, 'item_name': '#PhysEdU ' + tier.charAt(0).toUpperCase() + tier.slice(1), 'price': value, 'quantity': 1 }] }); // Also fire a generic conversion event gtag('event', 'conversion', { 'send_to': 'AW-CONVERSION-ID/physedu_signup', // Update with your conversion ID if using Google Ads 'value': value, 'currency': 'USD', 'transaction_id': 'physedu_' + Date.now() }); console.log('Tracked: PhysEdU signup conversion - ' + tier + ' tier ($' + value + ')'); // Set a flag so we don't track this twice if they refresh sessionStorage.setItem('physedu_signup_tracked', 'true'); } } });