document.querySelectorAll("p.gist").forEach(function(d){var c=d.querySelector("a"),b=c.getAttribute("href").split("/");b="http://static.simonenko.su/gist.php?id="+b[b.length-1];if(c.hasAttribute("title"))b+="&file="+c.getAttribute("title");var a=new XMLHttpRequest;a.open("GET",b,true);a.onreadystatechange=function(){if(a.readyState==4&&a.status==200){var e=JSON.parse(a.responseText);if(typeof e.div!="undefined")d.innerHTML=e.div}};a.send(null)});