Stone Choir
Stone Choir
Stone Choir
Love: Family, Friends, Tribe, and Nation
1 hour 49 minutes Posted May 22, 2024 at 7:00 pm.
mark, but the matter is not discussed in detail or explicitly.
0:00
1:49:25
Download MP3
Show notes
Hosts
Corey J. Mahler
coreyjmahler.com
@CoreyJMahler
Woe
aka Eschatologuy
@treblewoe
Love and duty are matters of concentric circles — to the closer is the greater duty and the greater love owed. In the previous episode in this series, we covered the facets of self-sacrifice love (agape) and charity (caritas); in this episode, we cover familial and brotherly or fraternal love, emotional (amor) and intellectual (dilectio) love, and piety (the historical, proper sense) and paternal love — three pairs, as it were. We call these facets, because it is not that love can be dissected and broken down into constituent parts; rather, it is that love is expressed in different ways between different people at different times. The love a husband has for his wife is not the same as the love a man has for his nation.
If we are commanded to love, then we must certainly understand what it means to love. We must know whom (and what) we must love and what is the nature and scope of that love. The world would deceive us by calling that which is not — and often even that which cannot be — love ‘love’. As Christians, we are commanded to be wise, and love — to whom it is owed and how it must or must not be expressed — is assuredly a matter of wisdom.
Subscribe to the podcast here.
Show Notes
Deus Ex Machina – Apple and the Ghost of Steve Jobs (Myth20c – Ep270)
See Also
Further Reading
Parental Warnings
“Homosexual fornication” and “sodomy” are used as descriptors for an example around the
Transcript
The transcript for this episode can be found here
Other transcripts can be found here
Current Sponsor(s)
Coming soon?
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
Update: Shipping has begun.
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);
});
jQuery(document).ready(function($) {
// Hide the comments initially
$('#comments').hide();
// Inject the "Show Comments" button before the comments div
$('#comments').before('
Show Comments');
// 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";
});
});
});