Generate a random 11-digit passcode
python -c 'from random import SystemRandom as r; print(r().randint(0,10**11-1))'