Dumb python tricks:
python -c 'import random;import string;v="aeiou";c=[f for f in string.ascii_lowercase if f not in v];f0=random.sample(v,3);f1=random.sample(c,3);n=[str(random.choice(range(10))) for n in range(2)];g=f0+f1;g[::2]=f0;g[1::2]=f1;print("".join(g+n))'
generates a randomish password with six alternating vowels and consonants, and appends two digits.


