Skip to content
zarza zarza

Tithing

10/04/2024 1h 39min Temporada 02 Episodio 68
Tithing

Episode Synopsis






Hosts










Corey J. Mahler


coreyjmahler.com
@CoreyJMahler












Woe
aka Eschatologuy

@treblewoe









All that we have comes from God. As we covered in the episode on jealousy, we are, in fact, to be jealous, to be protective, of the things that are ours. However, this must be balanced against the fact that much of what we hold we hold in trust. There are things which are solely ours and there are things which are ours for the sake of serving God and neighbor.
Ultimately, we are stewards of this Creation, and we owe duties to God. One such duty is the duty to render thanks to God in the form of tithes. A tithe, simply, is an offering ‘off the top’ of a portion of what God has given us as thanks for the whole. How much we tithe, how we tithe, to whom we tithe, and other related questions are matters of wisdom. Unlike Old Testament Israel, we do not have explicit rules telling us what to tithe, when, and to whom. However, God does invite us to test Him by bringing in the fullness of the tithe, and where God invites us to test Him, it is not only foolish, but sinful, to refuse.
»“Bring the full tithe into the storehouse, that there may be food in my house. And thereby put me to the test, says the LORD of hosts, if I will not open the windows of heaven for you and pour down for you a blessing until there is no more need. I will rebuke the devourer for you, so that it will not destroy the fruits of your soil, and your vine in the field shall not fail to bear, says the LORD of hosts. Then all nations will call you blessed, for you will be a land of delight, says the LORD of hosts.«
— Malachi 3:6–12 (ESV)


Subscribe to the podcast here.


Show Notes

Malachi 3:6–12
Genesis 4:3–7
Genesis 14:17–20
Genesis 28:18–22
Leviticus 27:30–33
Numbers 18:21–32
Deuteronomy 14:22–29
Deuteronomy 26:12–15
2 Chronicles 31:2–10
Luke 11:42–44
Luke 18:11–12
Hebrews 7:4–10
Philippians 4:14–20
Deuteronomy 16:16–17
Leviticus 5:11–13
2 Corinthians 8:1–15
2 Corinthians 9:6–15
Luke 21:1–4
1 Chronicles 29:3–9



See Also





Further Reading

“Let Us Test the Lord”



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
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);
});