seeker said:
I hope I am not intruding, but how the heck do you run that from either a Mac or Win Xp machine?
Here's something similar, written in Python. Just install Python on an ordinary PC.
To exclude characters from the output, add (or remove) them from the "exclude" variable. This one excludes digits and the letters, 'j,k,q,z'
import string
exclude='j,k,q,z,0,1,2,3,4,5,6,7,8,9'
exclude_list=string.split(exclude,',')
abc='abcdefghijklmnopqrstuvwxyz0123456789'
x= len(abc)
skipit=False
for i in range(len(abc)):
for j in range(len(abc)):
for k in range(len(abc)):
threechars = abc
+ abc[j] + abc[k]
for m in exclude_list:
if string.find(threechars,m) >= 0 and len(exclude) > 0:
skipit=True
if skipit == False:
print abc + abc[j] + abc[k] + '.com'
skipit = False
Edit note: It looks like the forum software may not have preserved indentation, if so, the program won't work.