GENERATING QUIRKY USERNAMES

Priyanka
Empower Project
Published in
2 min readJan 4, 2021

--

A program that generates cool usernames by combining nouns and adjectives together. When executed it returns random, interesting usernames. It works by combining nouns and adjectives into quirky usernames.

It uses random class — a part of java.util package. It input lists of nouns and adjectives used for the combinations and the length and then generates username.

Thinking of a cool and original username can sometimes take way too much imagination. That’s what this program is for! It will generate random usernames and you can adjust just how long it should be!

Java Random class

Random class is part of java.util package. An instance of java Random class is used to generate random numbers.This class provides several methods to generate random numbers of type integer, double, long, float etc.

Random number generators have applications in : Communication protocols, OTP Generation, cryptography, statistics, gaming, gambling and in areas where producing an unpredictable result is desirable.

Other cool projects using Random

Multiavatar is a multicultural avatar generator, which is free to use and open source. Names and words are associated with avatars randomly. In total, it is possible to generate 12 billion cryptographic unique avatars.

Go ahead and have fun playing around generating fun avatars and integrating them in your project.

GITHUB REPOSITORY: https://github.com/multiavatar/Multiavatar

MULTIAVATAR WEBSITE: https://multiavatar.com/

SOURCES

--

--