Man is an animal, created on the sixth day with all the other land creatures. And yet man is more than an animal, for man has not only body, but also mind and soul. To ignore the soul is to fall into Materialism; to ignore the body is to fall into Gnosticism. We must endeavor to fall off of neither side of the horse. This tripartite nature of man plays out in many things and in many ways; one of those things is addiction.
When a man (or a woman) becomes addicted to something — whether it is a substance (e.g., marijuana) or an activity (e.g., gambling) —, it is a matter of all three parts of man. The atheistic world would have us ignore the spiritual aspects of addiction (e.g., that it is sin); far too many Christians would have us ignore the biological and psychological aspects. God commands us to be wise, and so we must not ignore the good tools that science has put at our disposal — biology has given us insights into the physical bases for addiction and psychology has given us insights into the psychological aspects of addiction.
We do our brothers and sisters no good when we ignore the fullness of reality, and that holds no less true when dealing with addiction.
We discuss both pornography and sex in this episode. The discussion is not explicit, but you may wish to review it before listening with your children.
Coming soon?
Join the discussion on Telegram, visit the feedback form or comment below.
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);
});
// Inject the "Show Comments" button before the comments div $('#comments').before('
');
// 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"; }); }); });