Advertisement
RyanDolan123

Untitled

Apr 23rd, 2014
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function hot(){
  2.     $.ajax(
  3.     {
  4.         type: 'POST',
  5.         url: '/bot/ml-core.php',
  6.         dataType: 'json',
  7.         data: {
  8.             submit: "submitted",
  9.             temp: 12,
  10.             text: "@ryandolan123 make a bot to make twitter's api unhappy <3 " + Math.floor(Math.random() * 99)
  11.         }
  12.     }).done(function(data) {
  13.         console.log(data.status+" "+data.url);
  14.     });
  15. }
  16.  
  17. function a() {
  18.     hot();
  19.     setTimeout(a,100);
  20. }
  21.  
  22. a();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement