Skip to content

Instantly share code, notes, and snippets.

@visor
Created December 27, 2018 10:20
Show Gist options
  • Save visor/12cd3c59928cce571d604520251c8a57 to your computer and use it in GitHub Desktop.
Save visor/12cd3c59928cce571d604520251c8a57 to your computer and use it in GitHub Desktop.
сибурде
<?php
mt_srand(microtime(true));
$index = 0;
while (true) {
if (0 === $index % 60) {
echo PHP_EOL;
}
echo '.';
usleep(rand(rand(10000, 20000), rand(100000, 500000)));
++$index;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment