get a value based on the unique md5sum of a string.
kind of ranĀ­dom and kind of not so random.

#!/bin/bash
VALUE=`echo anotherword |\
       md5sum |\
       sed 's/[a-z]//g' |\
       sed 's/0/1/g' |\
       cut -d " " -f 1 |\
       cut -c 5-6`
exit 0;

inspired by Karsten Schmidt