Stone Choir
Stone Choir
Stone Choir
Galatians 3:28
2 hour Posted Feb 7, 2024 at 8:00 pm.
is, perhaps, the most abused verse in modern churches (a term that should, arguably, be in quotes), and this is not without reason. Satan attacks where he knows there is purchase to be found or headway to be made. In entirely unambiguous terms, Galatians 3:28 affirms the very real existence of race, hierarchy, and sex (i.e., that we are created either male or female) — the very things that the modern world constantly attacks and denies.
0:00
2:00:08
Download MP3
Show notes
Hosts
Corey J. Mahler
coreyjmahler.com
@CoreyJMahler
Woe
aka Eschatologuy
@treblewoe
Galatians
We must be careful readers when it comes to Scripture. God does not choose His words idly and we should not skim over them. We do not usually focus on a single verse to this extent, but it is incumbent on faithful Christians to defend where the battle is joined. In today’s episode, we will arm you to detect abuses of this verse, to defend yourself against those abuses, and to understand the wealth of what God has transmitted to us in a mere twenty-three words).
Subscribe to the podcast here.
Show Notes
Galatians (The entire letter will take you no more than fifteen minutes to read.)
“What We Believe” from the ‘Black Lives Matter’ website [via Archive.org]
See Also
Further Reading
“Singleness in the Church”
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
Mahler’s Amazon.com Wish List
Woe’s Amazon.com Wish List
The Stone Choir 2024 Challenge Coin
[Use coupon code SHIP4FREE for — you guessed it — free shipping (in the US only).]
Update: The sample coin has been received (click the shop link to view the images).
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);
});