published on

while [ true ]; do echo -n ‘LOOK AROUND YOU ‘; done;

so i recently was introduced to a series of bbc vids that are worth checking out. it’s called ‘Look Around You’. It’s hilarious. This is what it’s about. here’s a funny one. Enjoy!!

Also, for the interested reader, the title of the post is how one does program during the introduction using bash :)

oh, and here’s a freebie:

import sys
while True:
    sys.stdout.write(’LOOK AROUND YOU’) 

yup, same thing in python

why not; here’s some perl:

    perl -e “while (1) { print ‘LOOK AROUND YOU ‘;};”