<script type="text/javascript">
(function(){
function addFont() {
var style = do***ent.createElement('style');
style.rel = 'stylesheet';
do***ent.head.appendChild(style);
style.textContent = localStorage.firaSansWeb;
}
try {
if (localStorage.firaSansWeb) {
// The font is in localStorage, we can load it directly
addFont();
} else {
// We have to first load the font file asynchronously
var request = new XMLHttpRequest();
request.open('GET', 'http://hoodiehq.github.io/hoodie-css/src/css/fonts.css', true);
request.onload = function() {
if (request.status >= 200 && request.status < 400) {
// We save the file in localStorage
localStorage.firaSansWeb = request.responseText;
// ... and load the font
addFont();
}
};
request.send();
}
} catch(ex) {
// maybe load the font synchronously for woff-capable browsers
// to avoid blinking on every request when localStorage is not available
}
}());
</script>
<script type="text/javascript" src="http://hoodiehq.github.io/hoodie-css/src/js/prod/hoodie.min.js"></script>
<script type="text/javascript" src="/dist1/prism/prism.js"></script>
<script type="text/javascript">
var _gauges = _gauges || [];
(function() {
var t = do***ent.createElement('script');
t.type = 'text/javascript';
t.async = true;
t.id = 'gauges-tracker';
t.setAttribute('data-site-id', '515d9805108d7b3064000032');
t.src = '//secure.gaug.es/track.js';
var s = do***ent.getElementsByTagName('script')[0];
s.parentNode.insertBefore(t, s);
})();
</script>