document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1.     Timer timer = new Timer();
  2.         timer.scheduleAtFixedRate(new TimerTask() {
  3.            
  4.             @Override
  5.             public void run() {
  6.                 //async task here
  7.                 new ThoughtsHandler().execute();
  8.             }
  9.         }, 0, 10000);
');