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
# рисует горизонтальную линию и очищает экран | |
c() | |
{ | |
SEPARATOR="-" | |
WIDTH=$(tput cols); | |
echo -e "\033[$(($RANDOM % 7 + 31))m" | |
for ((i=0; i<$WIDTH; i++)); do echo -n $SEPARATOR ; done | |
clear | |
} |
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
<?php | |
/* | |
Draws Yin-Yang in ASCII-mode | |
Usage: "php yin.php <size>" | |
Size must be greater then 10 | |
Author Roman Rybalchenko [email protected] | |
http://dumpz.org/84832/ | |
13.09.2011 |
NewerOlder