Remember the times of your life and nurturing your spark

Join the Wormholes boys Justin and Ryan for a fierce pedal; a discussion about Bloodsucker, Gungrave and the best music of the week; Beethoven on YouTube; and who will be the first to get 17 points! Justin’s brother uses his 15 seconds wisely, and the boys discuss what album art would make great tattoos. Ryan talks about why he is looking forward to working for himself, and Justin outlines his vision for building a network of talented people to help us nurture our spark. We all need to belong to groups that help us be well and grow.

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