Listen "Slander"
Episode Synopsis
Hosts
Corey J. Mahler
coreyjmahler.com
@CoreyJMahler
Woe
aka Eschatologuy
@treblewoe
Once taken, a man’s reputation is nearly impossible to restore to him. In the 8th Commandment (and many other places in Scripture), God enshrines and makes abundantly clear that He hates slander and the man who spreads it. And yet Scripture goes further: Not only must we not slander our neighbor, but we must rebuke the one who does so. Scripture calls the one who hears slander but does not rebuke the slanderer evil.
Next to his life, wife, and possessions, the most dear thing a neighbor has is his good name and reputation. As Christians, we know that we must aid our neighbor in maintaining all that is his, and this certainly includes his reputation. Slander destroys families, friendships, organizations, churches, and entire societies. A godly prince would wield the sword against the slanderer, but every individual Christian has a moral duty to rebuke the slanderer and not to repeat what he has heard.
In this episode, we will examine the contours of what “slander” encompasses, and what we, as Christians, must do in this life.
Subscribe to the podcast here.
Show Notes
See Also
The Large Catechism: The 8th Commandment
Further Reading
“The Question of Procedure in Theological Controversies” by Kurt Marquart
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);
});