A true confession is not simply a matter of speaking a truth; rather, it is a matter of speaking the truth that is demanded under the circumstances. In fact, it is entirely possible to lie or to deceive with the truth. To say that it was the Romans who crucified Christ is entirely true, but to advance that particular truth in order to deny the truth that the Jews murdered the Lord Christ would be to lie with a truth. This is a tactic that Satan has employed from the very beginning.
Today, we most often see this playing out with Christians who run to their doctrinal statements or confessions when faced with novel problems. The battles of the Reformation era were important (and remain important), but they are not the things that Satan is attacking today. The man who holds up his confession and denies that he could ever be wrong because he has Abraham (his doctrinal statement) as his father has become a pharisee who follows after Satan’s footsteps in lying with the truth.
Confessions must not become idols, and the battles of centuries ago are not the battles of today. To look upon the bronze serpent because God commanded it is one thing; to worship the bronze serpent because you have distorted what it was is another matter entirely. Satan is rightly called a serpent — do not give him the opening he needs.
None.
Coming soon?
Join the discussion on Telegram, visit the feedback form or comment below.
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);
});
// Inject the "Show Comments" button before the comments div $('#comments').before('
');
// 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"; }); }); });