mayukh18 / BlindChat

a facebook messenger bot that allows users to chat with other people on facebook anonymously
https://m.me/blindchat.go/
MIT License
110 stars 127 forks source link

Modify alias generation method #8

Closed gkeller2 closed 6 years ago

gkeller2 commented 6 years ago

Now, aliases consist of a prefix + noun pair, or a noun + suffix pair.

Issue #1

gkeller2 commented 6 years ago

Sample output of the new alias generator:

>>> import alias                  
>>> alias.generate_alias("male")  
'StickyMonkey'
>>> alias.generate_alias("male")
'CheetahTheSecond'
>>> alias.generate_alias("female")
'DaringAmazon'
>>> alias.generate_alias("female")
'WonderWomanOfTheWastelands'
mayukh18 commented 6 years ago

Nice one. @gkeller2 can you just remove or modify the suffixes to keep the suffixes limited to 10-12 letters max. Otherwise, the aliases will be longer than preferable on a small mobile screen. If the number of suffixes comes down due to the limitation, just keep the random chance (probability) of prefix/suffix as 1:2 rather than 1:1 for now till we get more suffixes.

gkeller2 commented 6 years ago

@mayukh18 : suffixes are now all at or below 12-char in length. And added several more to make the list larger.

mayukh18 commented 6 years ago

Looks cool @gkeller2 . Great work!