Stone Choir
Stone Choir
Stone Choir
God’s Gifts, Man’s Duties
1 hour 5 minutes Posted Nov 22, 2023 at 8:00 pm.
(ESV)
–34
–13
–13
–12
–11
–4:1
–11
–18
–48
–13
–28
–10
0:00
1:05:15
Download MP3
Show notes
Hosts
Corey J. Mahler
coreyjmahler.com
@CoreyJMahler
Woe
aka Eschatologuy
@treblewoe
Whether our gifts are many or few, great or small, God has most assuredly prepared beforehand opportunities for us to use those gifts to serve our neighbors. We, in fact, have a duty to use what God has given us for the good of our neighbor. All that we have we hold in trust as stewards, for all comes from God and all belongs to God.
It is through our good works that we demonstrate, both to ourselves and to the world, that we have a living faith. There are no hard and fast rules or mathematical formulae to determine precisely what one should do with what one has been given — these are matters of wisdom. But we know the basics: Faithfully pursue your work, come to the aid of family and neighbor, and render good works when and where God provides you the opportunity.
The Christian life is not found in pilgrimages or hair shirts or in putting crosses on every surface in one’s home. The faithful Christian baker makes good bread; the faithful Christian shoemaker makes good shoes; the faithful Christian woman keeps a good home; a faithful Christian man diligently pursues his calling — whatever it may be. These are not matters over which to be anxious or about which to fret or worry; God knows what we need and he knows what our neighbor needs, and He has so ordered things that our neighbor can aid us and we can aid him. The Christian life is lived out in many thousands of small interactions, all undertaken with thanks for the good gifts, all of which flow from God.
»17 Every good gift and every perfect gift is from above, coming down from the Father of lights, with whom there is no variation or shadow due to change.«
— James
Subscribe to the podcast here.
Show Notes
Previous episodes:
Persuasiveness Matters
Conspiracy Theories and Truth
The Fear of the Lord
Some recommended Scripture passages:
Matthew
Matthew
Romans
Romans
1 Corinthians
1 Corinthians
1 Corinthians
Ephesians
Colossians
1 Peter
James
Luke
Luke
Proverbs
Proverbs
Proverbs
Ecclesiastes
See Also
Further Reading
“Family Trump Strangers”
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
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);
});