Skip to content
zarza zarza

Repentance

28/02/2024 1h 54min Temporada 02 Episodio 63
Repentance

Listen "Repentance"

Episode Synopsis






Hosts










Corey J. Mahler


coreyjmahler.com
@CoreyJMahler












Woe
aka Eschatologuy

@treblewoe









Repentance consists of contrition and faith. Contrition is sorrow for sin, the terrors of conscience that are attendant the realization of the nature of sin and God’s wrath toward it; faith, in this case, is the entirety of the Christian life — the ‘and then what’, which follows regeneration. But more than this, to be truly repentant is to turn from one’s sins and move toward God. In the Greek (μετανοια), repentance is a ‘change of one’s mind’, or, in the verbal form, ‘to change one’s mind’ — literally, ‘to think differently [about]’.
When we are regenerated, we think differently about the sins of our past (and about the sins we still desire to commit) — we recognize that they are sins and that they are contrary to the will of God. And not only do we think differently about these matters (i.e., have that μετανοια, that change of mind), but we also seek to undo the harms that we have done — there are works that follow true repentance.
In a very real sense, repentance is the core of the Christian life. We are saved, of course, by the work of Christ and the free gift of faith, but a living faith will always produce good works, and chief among those works are repentance and what flows from it. We read the Word of God, which convicts us of our sins, we feel sorrow for these sins (i.e., contrition) and we turn from them (i.e., repentance). This is the Christian life in this world.


Subscribe to the podcast here.


Show Notes






See Also






Further Reading

Homily (coming soon)




Parental Warnings
There is some discussion of sexual sins (not in explicit terms) shortly after the one-hour mark.


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);
});