Listen "Through the Window: On Frame"
Episode Synopsis
Hosts
Corey J. Mahler
coreyjmahler.com
@CoreyJMahler
Woe
aka Eschatologuy
@treblewoe
What is the difference between an immigrant and an invader? Well, it depends. The difference may be one of legality (i.e., the positive law) or it may be one of frame. If one man tells you that he is “for immigration” and another tells you that he is “against immigration”, then the latter has likely ceded ground without even realizing it. Words, of course, matter, but so does the way in which we (and others) employ them. Correct framing may win a conflict before it has even begun, but incorrect framing can just as easily make victory impossible.
For the Christian, it is vitally important to be able to identify and to assess framing. Wicked men can — and do — employ framing to ensnare the Christian, to elicit from the Christian support for wicked positions he would not wittingly support. In fact, you may hold positions contrary to Scripture because of how they were framed — and because you failed to examine what you believe.
Subscribe to the podcast here.
Show Notes
Framing Effect
Overton Window
See Also
The Psychology Behind Making Sales and Setting Price Points
Loving v. Virginia
Obergefell v. Hodges
Ezra (Read the entire book.)
Psalm 127
Creeping normality
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);
});