Advertisement
rg443

wall.alphacoders.com -> imgur

Mar 31st, 2013
337
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.  
  22. /*
  23. 276785 wallpapers
  24. http://wall.alphacoders.com/highest_rated.php?page=1 .. 9227
  25. http://wall.alphacoders.com/newest_wallpapers.php?page=1
  26. http://wall.alphacoders.com/popular.php?page=84
  27. http://wall.alphacoders.com/by_resolution.php?w=1920&h=1200&page=2056
  28. http://wall.alphacoders.com/?s=Food&page=151
  29. http://wall.alphacoders.com/by_sub_category.php?id=168646&page=46 # Landscape
  30. */
  31.  
  32. var stack=0;
  33. for (var i=1;i<=789;i++)setTimeout(get_url,i*20,"http://wall.alphacoders.com/?s=Earth&page=151"+i, callback1);
  34.  
  35. function callback1(){
  36.    var a=this.toString().match(/http:\/\/images\d+.alphacoders.com\/\S+.jpg/gim).map(function(v){return v.replace(/\/(thumbbig|thumb)-/,"/")});
  37.    stack++;
  38.    post_imgur(a,function(){console.log(this.toString().split("\n").length-1,--stack)});
  39.    // console.log(a.join("\n"));
  40.    }
  41.  
  42.  
  43.  
  44. /*
  45. Animal  660
  46. Earth   790
  47. Food    152
  48. Holiday 87
  49. Man%20Made  412
  50. Men 10
  51. Military    216
  52. Misc    68
  53. Multi%20Monitor 51
  54. Photography 364
  55. Products    18
  56. Religious   26
  57. Sports  64
  58. Technology  72
  59. Vehicles    971
  60. Women   318
  61.  
  62. http://wall.alphacoders.com/wallpaper_categories.php?s=Animal
  63. http://wall.alphacoders.com/wallpaper_categories.php?category_id=2&page=11
  64.  
  65. http://wall.alphacoders.com/wallpaper_categories.php?s=Man%20Made
  66. http://wall.alphacoders.com/wallpaper_categories.php?category_id=16&page=11
  67. */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement