Skip to content
zarza zarza

Excellence

26/02/2025 1h 37min Temporada 02 Episodio 96
Excellence

Listen "Excellence"

Episode Synopsis






Hosts










Corey J. Mahler


coreyjmahler.com
@CoreyJMahler












Woe
aka Eschatologuy

@treblewoe









In every endeavor, there is an excellence. A man can be excellent in his field, regardless or what it may be, or excellent at his undertaking, also regardless of what it may be. There are excellent paintings, excellent poems, excellent plays, excellent athletic performances, excellent shoes, and a whole host of other things that one could only begin to list. A part of the Christian life is recognizing the existence of excellence and then aiming for it.
Not all men can achieve the same level of excellence, not even all men engaged in the same field, but every man can recognize excellence and strive toward it. Further, we must recognize, respect, and honor excellence when and where we find it, instead of giving in to the tendency of the modern world to minimize and dismiss it. The man who is excellent in his field has achieved that excellence due both to natural talent (i.e., gifts from God) and hard work (i.e., the acquisition or skill or knowledge); every man, even and often in the mundane, is participating in the same sort of striving toward excellence.
We all see the man who wins some top athletic honor with his excellent performance, but what we do not see is the tens of thousands of hours of practice that went into that performance. Excellence does not fall from the sky (even if the gifts of God essentially do so), but is pursued with motivation and determination — it is a purpose toward which one strives. As Christians, we should recognize that all excellence is a gift from God, and we should honor and respect it when and where we find it, and then we should use it to motivate our own efforts, instead of joining the world in sarcasm or indifference.



Subscribe to the podcast here.



Show Notes

kalos
areté



See Also





Further Reading





Parental Warnings
None.


Transcript

The transcript for this episode can be found here
Other transcripts can be found here



Support the Podcast

Recurring Donation
One-Time Donation
Cryptocurrency Donation
Mahler’s: Throne.com Wish List | Amazon.com Wish List
Woe’s Amazon.com Wish List
The Stone Choir 2024 Challenge Coin



Comments?
Join the discussion on Telegram, visit the feedback form or comment below.


function waitForElement(selector, callback) {
const interval = setInterval(function() {
const element = document.querySelector(selector);
if (element) {
clearInterval(interval);
callback(element);
}
}, 100); // check every 100 milliseconds
}
function updateTranscriptLink(audioSrc) {
const episodeNumber = extractNumber(audioSrc);
if (episodeNumber) {
const transcriptLink = document.querySelector('a.transcript-link');
if (transcriptLink) {
transcriptLink.setAttribute('href', `/transcripts/transcript-episode-${episodeNumber}/`);
} else {
console.error('Transcript link not found.');
}
} else {
console.error('Episode number could not be extracted. The audio source was: ' + audioSrc);
}
}
// Function to extract the number from the audio file name
function extractNumber(src) {
const match = src.match(/e(\d+)\.m4a/);
return match ? match[1] : null;
}
// Start waiting for the audio element to appear in the DOM
waitForElement('audio[src*="s.stone-choir.com"]', function(audioElement) {
const audioSrc = audioElement.getAttribute('src');
updateTranscriptLink(audioSrc);
});