File indexing completed on 2024-04-28 05:51:05

0001 #!/usr/bin/env python3
0002 
0003 '''
0004 Generates an endless amount of combining characters
0005 '''
0006 
0007 import random
0008 import string
0009 
0010 combs = list("\u0300\u0301\u0302\u0303\u0304\u0305\u0306\u0307\u0308\u0309\u030A\u030B\u030C\u030D\u030E\u030F")
0011 
0012 while True:
0013     random.shuffle(combs)
0014     print(random.choice(string.ascii_letters)+"".join(combs), end="", flush=True)
0015