Advertisement
rg443

desktopia.net -> imgur

Mar 16th, 2013
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function post_imgur(a,callback) {        
  2. var r=new XMLHttpRequest();
  3. r.open("POST","http://176.34.162.148/jabry/imgur1.asp?u=&b=",true);
  4. //r.open("POST","http://notebook1.lan:8000/jabry/imgur1.asp?u=&b=",true);
  5. r.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  6. r.onreadystatechange=function(){if (this.readyState==4 && this.status==200) callback&&callback.call(this.responseText); }
  7. r.send("u=" + a.join(","));
  8. }
  9. function get_url(url,callback) {
  10.         var r=new XMLHttpRequest();
  11.         r.open("GET",url,true);
  12.         //r.setRequestHeader("X-Requested-With", "XMLHttpRequest");
  13.         //r.setRequestHeader("Accept-Encoding", "gzip");
  14.         r.onreadystatechange=function(){
  15.        if (this.readyState==4 && this.status==200 && callback) callback.call(this.responseText);
  16.        }
  17.     r.send();      
  18.  
  19. }
  20. /*
  21. 2560x1600 148
  22. 1920x1200 381
  23. 1920x1080 47
  24. 1600x900  61
  25. 1600x1200 829
  26. */
  27.  
  28. var stack=0;
  29. for (var i=1;i<=829;i++)get_url("http://desktopia.net/resolution/1600x1200/page/"+i+"/", function(){
  30.    var s=this.toString();
  31.    //http://desktopia.net/download/house-near-the-beach-painting-desktop-wallpaper.jpg
  32.    var a=document.body.innerHTML.match(/thumbs\/.*?(?=-\d+x\d+\.jpg)/gim).map(function(v){return v.replace("thumbs/","http://desktopia.net/download/")+"-desktop-wallpaper-1600x900.jpg" });
  33.    stack++;
  34.    post_imgur(a,function(){console.log(this.toString(),--stack)});a;
  35. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement