Skip to content

Instantly share code, notes, and snippets.

@stefanocudini
Created March 24, 2012 23:50
Show Gist options
  • Save stefanocudini/2189285 to your computer and use it in GitHub Desktop.
Save stefanocudini/2189285 to your computer and use it in GitHub Desktop.
random text flow
#!/usr/bin/env php
<?
$alphNums = '<>/:-_0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz';
$l = strlen($alphNums);
#$maxl = 100;
while(true)
{
echo $alphNums{rand(0,$l)};
usleep(1000);
}
?>
#!/usr/bin/env php
<?
$alphNums = '<>/:-_0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz';
$l = strlen($alphNums);
#$maxl = 100;
while(true)
{
echo $alphNums{rand(0,$l)};
usleep(1000);
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment