Files
lk/basics/joyous_ascii.md
2025-12-17 00:11:39 +01:00

554 B

title, tags
title tags
Joyous ASCII
fun
  • asciiquarium
  • cbonsai -lim "$(fortune)"
  • printf 'w\na\n' | ssh -tt nethack@alt.org
cow=$(cowsay -l | sort -R | head  -1)
fortune -s | figlet | cowsay -nf $cow | lolcat

Watch the Collatz Conjecture collapse:

x="$(du -sc ~/.cache | tr -d '[:alpha:]' | tail -1)"
until [ "$x" -eq "1" ]; do
    test "$(( x % 2 ))" -eq 0 && x=$(( x / 2 )) || \
        x=$(( x * 3 + 1 ))
    clear -x
    figlet "$x" | lolcat
    sleep 1
done