‘A Little Sidebar’ (The exegesis)

We’re lifting the boot and unpacking our process. This week, Amy leads a discussion on the form and purpose of exegetical writing as Sean snores audibly in the corner (not for the first time) and Alex rails against ever discussing his own work. What is an exegesis? Why is it important? Who is it for? The Word Docs pray the Deans of Research are not listening as they quarry this most sacred pillar of university life.

LISTEN BELOW


gif video of different types of people listening
jQuery(document).ready(function($) { var playerContainer = $('#auscast-player-container'); var player = $('#auscast-player'); // Show player and store session $('#play-auscast').click(function() { playerContainer.slideDown(); sessionStorage.setItem('auscastPlaying', 'true'); sessionStorage.setItem('auscastSrc', player.attr('src')); }); // Keep the player open and playing across page reloads if (sessionStorage.getItem('auscastPlaying') === 'true') { playerContainer.show(); player.attr('src', sessionStorage.getItem('auscastSrc')); } // Close player $('#close-auscast-player').click(function() { playerContainer.slideUp(); sessionStorage.removeItem('auscastPlaying'); sessionStorage.removeItem('auscastSrc'); player.attr('src', ''); // Stop playback }); // Stop stream when another audio plays $('audio, video').on('play', function() { player.attr('src', ''); sessionStorage.removeItem('auscastPlaying'); sessionStorage.removeItem('auscastSrc'); }); });