When you link to a video, show it in the title. I am on a slow connection and am getting tired of waiting for a page to load, only to find out it is just a video and totally useless to me.
This is great background for newbies.<p>My kid is learning programming on a VM where he's admin. I went through the first example and discovered that I don't have banner on my machine. I apt-got it and realized this will be a nice learning opportunity for the kid, a tiny real-world hiccup and here's how you solve it and get on with the task.
First test errored: line 4: test: too many arguments<p>This was on OSX + bash... wondering if I need to update something to allow more args through?<p>#!/bin/sh
X=9
tput clear
while test $X -gt 0
do
tput cup 5 0
tput ed
banner " $X"
X='expr $X - 1'
sleep 1
done