Skip to content

Instantly share code, notes, and snippets.

@nerevar
nerevar / clear screen
Created July 15, 2012 20:00
Draws a colored horizontal line and clear screen of terminal
# рисует горизонтальную линию и очищает экран
c()
{
SEPARATOR="-"
WIDTH=$(tput cols);
echo -e "\033[$(($RANDOM % 7 + 31))m"
for ((i=0; i<$WIDTH; i++)); do echo -n $SEPARATOR ; done
clear
}
@nerevar
nerevar / Yin-Yang.php
Created March 7, 2012 11:11
Draws Yin-Yang in ASCII-mode
<?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