All men have limitations — be they physical, intellectual, or something else. One such limitation is a thing we call, in the technology fields, a “context window”. In essence, a context window is the amount of relevant information that a man can hold in his mind at a given moment. In a conversation, it is the history of the conversation (along with any previous history from prior conversations, et cetera); in a relationship, it is the entire history of that relationship. In all cases, only to the extent such information can be held in the mind.
Some questions call for a small context window (e.g., a bar fight may require only ten or twenty minutes of context to understand) and some questions call for a significantly larger context window (e.g., the current state of the Western Church is a matter of millennia). Not all men are equally suited to handle all matters — a man can be competent or incompetent with regard to a particular question or a particular discussion. In this preliminary episode leading into our upcoming series on the Septuagint (LXX), we discuss the concept of a context window and how it plays into the LXX specifically and many issues in our daily lives generally.
None.
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"; }); }); });