Artwork

Content provided by Patrick Eichhold. All podcast content including episodes, graphics, and podcast descriptions are uploaded and provided directly by Patrick Eichhold or their podcast platform partner. If you believe someone is using your copyrighted work without your permission, you can follow the process outlined here https://player.fm/legal.
Player FM - Podcast App
Go offline with the Player FM app!

Episode 12: If You Let the Fear Steer You’ll Wreck Every Time

18:52
 
Share
 

Archived series ("Inactive feed" status)

When? This feed was archived on January 15, 2021 11:08 (3+ y ago). Last successful fetch was on August 12, 2019 01:12 (5y ago)

Why? Inactive feed status. Our servers were unable to retrieve a valid podcast feed for a sustained period.

What now? You might be able to find a more up-to-date version using the search function. This series will no longer be checked for updates. If you believe this to be in error, please check if the publisher's feed link below is valid and contact support to request the feed be restored or if you have any other concerns about this.

Manage episode 209601079 series 2281196
Content provided by Patrick Eichhold. All podcast content including episodes, graphics, and podcast descriptions are uploaded and provided directly by Patrick Eichhold or their podcast platform partner. If you believe someone is using your copyrighted work without your permission, you can follow the process outlined here https://player.fm/legal.

As I type out these show notes the subject matter I discuss in this episode is exactly what I need to hear. Maybe this is becoming like my own Kenny Powers autobiography after all. So if this is helping to encourage me I know this can help encourage you. Thanks for listening!

Listen to Stitcher Listen on Google Play Music

Episode 12: If You Let the Fear Steer You’ll Wreck Every Time

00:00 / 00:18:52
1X
// @todo _paq variable declaration String.prototype.toFormattedDuration = function () { var sec_num = parseInt(this, 10); // don't forget the second param var hours = Math.floor(sec_num / 3600); var minutes = Math.floor((sec_num - (hours * 3600)) / 60); var seconds = sec_num - (hours * 3600) - (minutes * 60); if (hours < 10) {hours = "0"+hours;} if (minutes < 10) {minutes = "0"+minutes;} if (seconds < 10) {seconds = "0"+seconds;} return hours > 0 ? ( hours+':'+ minutes+':'+seconds) : (minutes+':'+seconds); } jQuery( document ).ready( function($){ (function($){ var sspUpdateDuration4; // Create Player window.ssp_player4 = WaveSurfer.create({ container: '#waveform4', waveColor: '#444', progressColor: '#f7941e', barWidth: 3, barHeight: 15, height: 8, hideScrollbar: true, skipLength: 30, backend: 'MediaElement' }); //Set player track window.ssp_player4.track = 'http://patsponderances.com/podcast-player/849/episode-00012-if-you-let-the-fear-steer-youll-wreck-every-time.mp3'; /** * Setting and drawing the peaks seems to be required for the 'load on play' functionality to work */ //Set peaks window.ssp_player4.backend.peaks = [0.0218, 0.0183, 0.0165, 0.0198, 0.2137, 0.2888, 0.2313, 0.15, 0.2542, 0.2538, 0.2358, 0.1195, 0.1591, 0.2599, 0.2742, 0.1447, 0.2328, 0.1878, 0.1988, 0.1645, 0.1218, 0.2005, 0.2828, 0.2051, 0.1664, 0.1181, 0.1621, 0.2966, 0.189, 0.246, 0.2445, 0.1621, 0.1618, 0.189, 0.2354, 0.1561, 0.1638, 0.2799, 0.0923, 0.1659, 0.1675, 0.1268, 0.0984, 0.0997, 0.1248, 0.1495, 0.1431, 0.1236, 0.1755, 0.1183, 0.1349, 0.1018, 0.1109, 0.1833, 0.1813, 0.1422, 0.0961, 0.1191, 0.0791, 0.0631, 0.0315, 0.0157, 0.0166, 0.0108]; //Draw peaks window.ssp_player4.drawBuffer(); //Variable to check if the track is loaded window.ssp_player4.loaded = false; // @todo Track Player errors // On Media Ready window.ssp_player4.on( 'ready', function(e){ if(!window.ssp_player4.loaded) { window.ssp_player4.loaded = true; window.ssp_player4.play(); } $( '#ssp_player_id_4 #sspTotalDuration' ).text( window.ssp_player4.getDuration().toString().toFormattedDuration() ); $( '#ssp_player_id_4 #sspPlayedDuration' ).text( window.ssp_player4.getCurrentTime().toString().toFormattedDuration() ); } ); // On Media Played window.ssp_player4.on( 'play', function(e){ if(!window.ssp_player4.loaded) { window.ssp_player4.load(window.ssp_player4.track, window.ssp_player4.backend.peaks); } // @todo Track Podcast Specific Play $( '#ssp_player_id_4 #ssp-play-pause .ssp-icon' ).removeClass().addClass( 'ssp-icon ssp-icon-pause_icon' ); $( '#ssp_player_id_4 #sspPlayedDuration' ).text( window.ssp_player4.getCurrentTime().toString().toFormattedDuration() ) sspUpdateDuration4 = setInterval( function(){ $( '#ssp_player_id_4 #sspPlayedDuration' ).text( window.ssp_player4.getCurrentTime().toString().toFormattedDuration() ); }, 100 ); } ); // On Media Paused window.ssp_player4.on( 'pause', function(e){ // @todo Track Podcast Specific Pause $( '#ssp_player_id_4 #ssp-play-pause .ssp-icon' ).removeClass().addClass( 'ssp-icon ssp-icon-play_icon' ); clearInterval( sspUpdateDuration4 ); } ); // On Media Finished window.ssp_player4.on( 'finish', function(e){ $( '#ssp_player_id_4 #ssp-play-pause .ssp-icon' ).removeClass().addClass( 'ssp-icon ssp-icon-play_icon' ); // @todo Track Podcast Specific Finish } ); $('#ssp_player_id_4 #ssp-play-pause').on( 'click', function(e){ window.ssp_player4.playPause(); } ); $('#ssp_player_id_4 #ssp-back-thirty').on( 'click', function(e){ // @todo Track Podcast Specific Back 30 window.ssp_player4.skipBackward(); } ); $('#ssp_player_id_4 #ssp_playback_speed4').on( 'click', function(e){ switch( $( e.currentTarget ).parent().find( '[data-ssp-playback-rate]' ).attr( 'data-ssp-playback-rate' ) ){ case "1": $( e.currentTarget ).parent().find( '[data-ssp-playback-rate]' ).attr( 'data-ssp-playback-rate', '1.5' ); $( e.currentTarget ).parent().find( '[data-ssp-playback-rate]' ).text('1.5X' ); window.ssp_player4.setPlaybackRate(1.5); break; case "1.5": $( e.currentTarget ).parent().find( '[data-ssp-playback-rate]' ).attr( 'data-ssp-playback-rate', '2' ); $( e.currentTarget ).parent().find( '[data-ssp-playback-rate]' ).text('2X' ); window.ssp_player4.setPlaybackRate(2); break; case "2": $( e.currentTarget ).parent().find( '[data-ssp-playback-rate]' ).attr( 'data-ssp-playback-rate', '1' ); $( e.currentTarget ).parent().find( '[data-ssp-playback-rate]' ).text('1X' ); window.ssp_player4.setPlaybackRate(1); default: break; } } ); }(jQuery)) } );

“Drive” by Incubus
Sometimes, I feel the fear of uncertainty stinging clear
And I can’t help but ask myself how much I’ll let the fear
Take the wheel and steer
It’s driven me before
And it seems to have a vague, haunting mass appeal
But lately I am beginning to find
That I should be the one behind the wheel
Whatever tomorrow brings
I’ll be there with open arms and open eyes
Whatever tomorrow brings
I’ll be there, I’ll be there
So if I decide to waiver my chance
To be one of the hive
Will I choose water over wine
And hold my own and drive?
It’s driven me before
And it seems to be the way that everyone else gets around
But lately I am beginning to find
That when I drive myself my light is found
So whatever tomorrow brings
I’ll be there with open arms and open eyes
Whatever tomorrow brings
I’ll be there, I’ll be there
Would you choose water over wine
Hold the wheel and drive?
Whatever tomorrow brings
I’ll be there with open arms and open eyes
Whatever tomorrow brings
I’ll be there, I’ll be there

Resources from this episode:

  continue reading

16 episodes

Artwork
iconShare
 

Archived series ("Inactive feed" status)

When? This feed was archived on January 15, 2021 11:08 (3+ y ago). Last successful fetch was on August 12, 2019 01:12 (5y ago)

Why? Inactive feed status. Our servers were unable to retrieve a valid podcast feed for a sustained period.

What now? You might be able to find a more up-to-date version using the search function. This series will no longer be checked for updates. If you believe this to be in error, please check if the publisher's feed link below is valid and contact support to request the feed be restored or if you have any other concerns about this.

Manage episode 209601079 series 2281196
Content provided by Patrick Eichhold. All podcast content including episodes, graphics, and podcast descriptions are uploaded and provided directly by Patrick Eichhold or their podcast platform partner. If you believe someone is using your copyrighted work without your permission, you can follow the process outlined here https://player.fm/legal.

As I type out these show notes the subject matter I discuss in this episode is exactly what I need to hear. Maybe this is becoming like my own Kenny Powers autobiography after all. So if this is helping to encourage me I know this can help encourage you. Thanks for listening!

Listen to Stitcher Listen on Google Play Music

Episode 12: If You Let the Fear Steer You’ll Wreck Every Time

00:00 / 00:18:52
1X
// @todo _paq variable declaration String.prototype.toFormattedDuration = function () { var sec_num = parseInt(this, 10); // don't forget the second param var hours = Math.floor(sec_num / 3600); var minutes = Math.floor((sec_num - (hours * 3600)) / 60); var seconds = sec_num - (hours * 3600) - (minutes * 60); if (hours < 10) {hours = "0"+hours;} if (minutes < 10) {minutes = "0"+minutes;} if (seconds < 10) {seconds = "0"+seconds;} return hours > 0 ? ( hours+':'+ minutes+':'+seconds) : (minutes+':'+seconds); } jQuery( document ).ready( function($){ (function($){ var sspUpdateDuration4; // Create Player window.ssp_player4 = WaveSurfer.create({ container: '#waveform4', waveColor: '#444', progressColor: '#f7941e', barWidth: 3, barHeight: 15, height: 8, hideScrollbar: true, skipLength: 30, backend: 'MediaElement' }); //Set player track window.ssp_player4.track = 'http://patsponderances.com/podcast-player/849/episode-00012-if-you-let-the-fear-steer-youll-wreck-every-time.mp3'; /** * Setting and drawing the peaks seems to be required for the 'load on play' functionality to work */ //Set peaks window.ssp_player4.backend.peaks = [0.0218, 0.0183, 0.0165, 0.0198, 0.2137, 0.2888, 0.2313, 0.15, 0.2542, 0.2538, 0.2358, 0.1195, 0.1591, 0.2599, 0.2742, 0.1447, 0.2328, 0.1878, 0.1988, 0.1645, 0.1218, 0.2005, 0.2828, 0.2051, 0.1664, 0.1181, 0.1621, 0.2966, 0.189, 0.246, 0.2445, 0.1621, 0.1618, 0.189, 0.2354, 0.1561, 0.1638, 0.2799, 0.0923, 0.1659, 0.1675, 0.1268, 0.0984, 0.0997, 0.1248, 0.1495, 0.1431, 0.1236, 0.1755, 0.1183, 0.1349, 0.1018, 0.1109, 0.1833, 0.1813, 0.1422, 0.0961, 0.1191, 0.0791, 0.0631, 0.0315, 0.0157, 0.0166, 0.0108]; //Draw peaks window.ssp_player4.drawBuffer(); //Variable to check if the track is loaded window.ssp_player4.loaded = false; // @todo Track Player errors // On Media Ready window.ssp_player4.on( 'ready', function(e){ if(!window.ssp_player4.loaded) { window.ssp_player4.loaded = true; window.ssp_player4.play(); } $( '#ssp_player_id_4 #sspTotalDuration' ).text( window.ssp_player4.getDuration().toString().toFormattedDuration() ); $( '#ssp_player_id_4 #sspPlayedDuration' ).text( window.ssp_player4.getCurrentTime().toString().toFormattedDuration() ); } ); // On Media Played window.ssp_player4.on( 'play', function(e){ if(!window.ssp_player4.loaded) { window.ssp_player4.load(window.ssp_player4.track, window.ssp_player4.backend.peaks); } // @todo Track Podcast Specific Play $( '#ssp_player_id_4 #ssp-play-pause .ssp-icon' ).removeClass().addClass( 'ssp-icon ssp-icon-pause_icon' ); $( '#ssp_player_id_4 #sspPlayedDuration' ).text( window.ssp_player4.getCurrentTime().toString().toFormattedDuration() ) sspUpdateDuration4 = setInterval( function(){ $( '#ssp_player_id_4 #sspPlayedDuration' ).text( window.ssp_player4.getCurrentTime().toString().toFormattedDuration() ); }, 100 ); } ); // On Media Paused window.ssp_player4.on( 'pause', function(e){ // @todo Track Podcast Specific Pause $( '#ssp_player_id_4 #ssp-play-pause .ssp-icon' ).removeClass().addClass( 'ssp-icon ssp-icon-play_icon' ); clearInterval( sspUpdateDuration4 ); } ); // On Media Finished window.ssp_player4.on( 'finish', function(e){ $( '#ssp_player_id_4 #ssp-play-pause .ssp-icon' ).removeClass().addClass( 'ssp-icon ssp-icon-play_icon' ); // @todo Track Podcast Specific Finish } ); $('#ssp_player_id_4 #ssp-play-pause').on( 'click', function(e){ window.ssp_player4.playPause(); } ); $('#ssp_player_id_4 #ssp-back-thirty').on( 'click', function(e){ // @todo Track Podcast Specific Back 30 window.ssp_player4.skipBackward(); } ); $('#ssp_player_id_4 #ssp_playback_speed4').on( 'click', function(e){ switch( $( e.currentTarget ).parent().find( '[data-ssp-playback-rate]' ).attr( 'data-ssp-playback-rate' ) ){ case "1": $( e.currentTarget ).parent().find( '[data-ssp-playback-rate]' ).attr( 'data-ssp-playback-rate', '1.5' ); $( e.currentTarget ).parent().find( '[data-ssp-playback-rate]' ).text('1.5X' ); window.ssp_player4.setPlaybackRate(1.5); break; case "1.5": $( e.currentTarget ).parent().find( '[data-ssp-playback-rate]' ).attr( 'data-ssp-playback-rate', '2' ); $( e.currentTarget ).parent().find( '[data-ssp-playback-rate]' ).text('2X' ); window.ssp_player4.setPlaybackRate(2); break; case "2": $( e.currentTarget ).parent().find( '[data-ssp-playback-rate]' ).attr( 'data-ssp-playback-rate', '1' ); $( e.currentTarget ).parent().find( '[data-ssp-playback-rate]' ).text('1X' ); window.ssp_player4.setPlaybackRate(1); default: break; } } ); }(jQuery)) } );

“Drive” by Incubus
Sometimes, I feel the fear of uncertainty stinging clear
And I can’t help but ask myself how much I’ll let the fear
Take the wheel and steer
It’s driven me before
And it seems to have a vague, haunting mass appeal
But lately I am beginning to find
That I should be the one behind the wheel
Whatever tomorrow brings
I’ll be there with open arms and open eyes
Whatever tomorrow brings
I’ll be there, I’ll be there
So if I decide to waiver my chance
To be one of the hive
Will I choose water over wine
And hold my own and drive?
It’s driven me before
And it seems to be the way that everyone else gets around
But lately I am beginning to find
That when I drive myself my light is found
So whatever tomorrow brings
I’ll be there with open arms and open eyes
Whatever tomorrow brings
I’ll be there, I’ll be there
Would you choose water over wine
Hold the wheel and drive?
Whatever tomorrow brings
I’ll be there with open arms and open eyes
Whatever tomorrow brings
I’ll be there, I’ll be there

Resources from this episode:

  continue reading

16 episodes

All episodes

×
 
Loading …

Welcome to Player FM!

Player FM is scanning the web for high-quality podcasts for you to enjoy right now. It's the best podcast app and works on Android, iPhone, and the web. Signup to sync subscriptions across devices.

 

Quick Reference Guide