Stone Choir
Stone Choir
Stone Choir
Honor and Loyalty
1 hour 1 minutes Posted Nov 13, 2024 at 8:00 pm.
(ESV):
0:00
1:01:01
Download MP3
Show notes
Hosts
Corey J. Mahler
coreyjmahler.com
@CoreyJMahler
Woe
aka Eschatologuy
@treblewoe
Honor and loyalty are closely related concepts — even nearly, but not quite, identical. In this third (and final) part of our series on honor, we address the matter of loyalty — what it is, what it is not, when it is due, and, perhaps most importantly, when it is not due. To God and nation, a man owes absolute and unconditional loyalty; to family and country, man owes a high degree of loyalty; to all else, man owes only a conditional loyalty (if any at all).
Further, a teacher, particularly a teacher of the Word, is not personally owed loyalty because he teachers the word; rather, it is the Word to which one’s loyalty is owed. A teacher who was once true, but has become false, must be deserted and abandoned, as the higher duty to God always trumps. A corporate entity — whether a baker, a school, or a church — is generally not, in and of itself, owed any duty of loyalty at all.
Many attempt to exploit man’s sense of loyalty, but it is incumbent on the Christian man to know to whom loyalty is owed and to whom it is not owed.
Romans
»Pay to all what is owed to them: taxes to whom taxes are owed, revenue to whom revenue is owed, respect to whom respect is owed, honor to whom honor is owed.«
Subscribe to the podcast here.
Show Notes
See Also
Further Reading
Parental Warnings
None.
Transcript
The transcript for this episode can be found here
Other transcripts can be found here
Current Sponsor(s)
Coming soon?
Support the Podcast
Recurring Donation
One-Time Donation
Mahler’s 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);
});
jQuery(document).ready(function($) {
// Hide the comments initially
$('#comments').hide();
// Inject the "Show Comments" button before the comments div
$('#comments').before('
Show Comments');
// Handle the button click event
$('#show-comments').on('click', function() {
$('#comments').toggle();
$(this).text(function(i, text){
return text === "Show Comments" ? "Hide Comments" : "Show Comments";
});
});
});