Quoted By:
Pic related is the program I wrote to help me rank them.
I read the buffer into a python process and then on the command line I did something like
print('\n'.join(map(lambda x : str(x[0]+1) + '. ' + str(x[1]),enumerate(reversed(mysort(list('ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz')))))))
The reversed is in there because the program sorts from worst to best.