Episode 48- Bonus Podcast! Gavin McClurg and the 2017 X-Alps

Cloudbase Mayhem Podcast - A podcast by Gavin McClurg

The Red Bull live tracking is great, but it misses out on all the behind-the-scenes and in this talk we dive into what the fans don't get to see. We talk training, supplements, our decision on using the nightpass the first night, mistakes made, good moves, dicey launches, crazy weather and how the 2017 race was the most brutal yet. In 12 days I did 16 1/2 marathons, climbed the height of Everest 4 times (34,000 meters of vertical ascent), flew over 1,000 km- and I was still 308 km from goal! Only two athletes made it, Chrigel Maurer won for his 5th straight time, and rookie Benoit Outers made it in just before the time expired. 5 athletes were eliminated and 7 withdrew due to injury or exhaustion. This content is only available to Members of the Cloudbase Mayhem. If you have subscribed to our newsletter or have supported us in the past through PayPal, Patreon or another way you should have an account all set up with us and you can login below (username is typically your email). If you aren't a member, all we've ever asked for is a buck a show so please if you can join now! Can't afford a buck a show? We want all our content to be available to the flying community regardless of your financial position, so just send us an email and we'll sort you out. Username or E-mail Password * function mepr_base64_decode(encodedData) { var decodeUTF8string = function(str) { // Going backwards: from bytestream, to percent-encoding, to original string. return decodeURIComponent(str.split('').map(function(c) { return '%' + ('00' + c.charCodeAt(0).toString(16)).slice(-2) }).join('')) } if (typeof window !== 'undefined') { if (typeof window.atob !== 'undefined') { return decodeUTF8string(window.atob(encodedData)) } } else { return new Buffer(encodedData, 'base64').toString('utf-8') } var b64 = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=' var o1 var o2 var o3 var h1 var h2 var h3 var h4 var bits var i = 0 var ac = 0 var dec = '' var tmpArr = [] if (!encodedData) { return encodedData } encodedData += '' do { // unpack four hexets into three octets using index points in b64 h1 = b64.indexOf(encodedData.charAt(i++)) h2 = b64.indexOf(encodedData.charAt(i++)) h3 = b64.indexOf(encodedData.charAt(i++)) h4 = b64.indexOf(encodedData.charAt(i++)) bits = h1 > 8 & 0xff o3 = bits & 0xff if (h3 === 64) { tmpArr[ac++] = String.fromCharCode(o1) } else if (h4 === 64) { tmpArr[ac++] = String.fromCharCode(o1, o2) } else { tmpArr[ac++] = String.fromCharCode(o1, o2, o3) }