After doing some copypastes, I decided to write a 10 line script to translate normal text to flipped text.
I had to deal with unicode chars (I never had to do this before), and I came with this little script, that isn't awesome nor cool, but it can make some friends happy (Txor), and adds -Ofun to programming.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/perl | |
binmode STDOUT, ":utf8"; | |
use Encode; | |
my @rev = split '' ,decode_utf8(q|zʎxʍʌnʇsɹbdouɯןʞɾıɥƃɟǝpɔqɐ()'{}|); | |
my @norm = split '', 'zyxwvutsrqponmlkjihgfedcba)(,}{'; | |
my %h = map {$norm[$_] => $rev[$_]} 0..$#rev; | |
local $/=undef; #slurp the whole stdin. you have to quit with ctrl-d or ctrl-c | |
$_ = <STDIN>; | |
s/(.)/$h{$1} ? $h{$1} : $1/gex; | |
print scalar reverse "\n", decode_utf8($_) ,"\n"; |
2 comentarios:
Yaba Daba Doooo!!!!!
WTF?!?!?
Publicar un comentario