Pseudonym Generator

This program will generate a pseudonym comprising only the letters of the name entered.


List Source for Name Generation






The program takes the name entered and reduces it to a list of the unique set of letters that comprise that name. Using this unique set, it then builds combinations of first name and last name. Each letter from the unique set of letters must be used at least once. This differs from an Anagram generator, where each letter of the original must be present in the output. Removing this restriction allows for many more matches, while the output still has a "feel" of being similar to your own name.

The diagram below illustrates an example of the process