--------------------------------------------
These files probably  won't make much sense,
they were generated using mundane input data
and far too many pipes & hacks :)
--------------------------------------------
    Lines   Words    Bytes              File
--------------------------------------------
    1751     3502    69202     triangles.txt
    5120    30720   691200       columns.txt
    3614   208115  3781423  graph_plain.html
    3629   208148  3781790 graph_scroll.html
   37825   129858  3751191     patterns.html

    3261    22827   519465        colors.txt

This last file has ansi color codes in it,
the 'animation' is meant to be viewewd in a
shell.  Simply run either of the following
commands: 

 curl http://sente.cc/shell-fu/colors.txt
 wget -O- http://sente.cc/shell-fu/colors.txt
    
If the text is wrapping you can pipe it to: 
  
 ... | cut -c1-${COLUMNS} 
  

  

  cat store_9  | sed 's/^/|/g' | xargs -n9 -d'\n' echo  | columnate.awk -F '|' | ansi2html.sh | tmpfile  -e html
single_file.html
iteratedgraph ()
{
    count=0;
    rows=$((LINES - (LINES%27)));
    curl -s http://sente.cc/misc/graphics/special/store_9 | while read line; do
        ((count++));
        count=$((count % rows));
        #if ((count == 0)); then
        #    for ((i=rows; i /dev/null;
        #    done;
        #fi;
        echo $line;
    done
}

iterategraph | less