Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
my %lookup = map {my $temp = $_; $_, [map {lc} grep {$_ ne $temp} split('', $charset)]} split('', $charset);
foreach my $index (keys %indexes) {
my $char = substr($_,$index,1);
my $newchar;
do {
$newchar = substr($charset, rand(4), 1);
} while ($char eq $newchar);
substr($_,$index,1) = lc $newchar;
}
foreach my $index (keys %indexes) {
my $char = substr($_,$index,1);
substr($_,$index,1,$lookup{$char}[int(rand(@{$lookup{$char}}))]);
}