Skip to content

Instantly share code, notes, and snippets.

@B2Crypt
B2Crypt / keybase.md
Created March 23, 2018 20:27
keybase.md

Keybase proof

I hereby claim:

  • I am b2crypt on github.
  • I am b2crypt (https://keybase.io/b2crypt) on keybase.
  • I have a public key ASActrTjtv6Y6LXdSmoxUmTubvWy3AhHS3jNE-nwxN3oTQo

To claim this, I am signing this object:

@B2Crypt
B2Crypt / usernamecreator.py
Created May 12, 2016 19:32
An easy and simple creator of usernames based on the letters in your name.
#An easy and simple creator of usernames based on the letters in your name.
#Feel free to modify it like you want it.
firstLetters = input('How many letters from firstname?: ') #Enter how many letters we should use from the firstname of the user.
lastLetters = input('How many letters from lastname?: ') #Enter how many letters we should use from the lastname of the user.
firstName = raw_input('Firstname: ')
lastName = raw_input('Lastname: ')
username = str(lastName[:lastLetters]) + str(firstName[:firstLetters])
print username.lower()