Hacker News new | ask | show | jobs
by sbdchd 3810 days ago
If anyone is interested, this is the javascript pulled from the webpage.

  var total = "";
  for (var i = 0; i < 100000; i++) {
      total = total + i.toString();
      history.pushState(0, 0, total);
  }
edit: formatting
1 comments