Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2015
261
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function _newID() {
  2.    var _adverbs = ["Accidentally", "Always", "Angrily", "Anxiously", "Awkwardly", "Badly", "Blindly", "Boastfully", "Boldly", "Bravely", "Brightly", "Cheerfully", "Coyly", "Crazily", "Defiantly", "Deftly", "Deliberately", "Devotedly", "Doubtfully", "Dramatically", "Dutifully", "Eagerly", "Elegantly", "Enormously", "Evenly", "Eventually", "Exactly", "Faithfully", "Finally", "Foolishly", "Fortunately", "Frantically", "Frequently", "Gleefully", "Gracefully", "Happily", "Hastily", "Honestly", "Hopelessly", "Hourly", "Hungrily", "Innocently", "Inquisitively", "Irritably", "Jealously", "Justly", "Kindly", "Lazily", "Loosely", "Madly", "Merrily", "Mortally", "Mysteriously", "Nervously", "Never", "Obediently", "Obnoxiously", "Occasionally", "Often", "Only", "Perfectly", "Politely", "Poorly", "Powerfully", "Promptly", "Quickly", "Rapidly", "Rarely", "Really", "Regularly", "Rudely", "Safely", "Seldom", "Selfishly", "Seriously", "Shakily", "Sharply", "Silently", "Slowly", "Solemnly", "Sometimes", "Speedily", "Steadily", "Sternly", "Technically", "Tediously", "Tenderly", "Terrifically", "Tightly", "Totally", "Tremendously", "Unexpectedly", "Usually", "Victoriously", "Vivaciously", "Warmly", "Wearily", "Weekly", "Wildly", "Yearly"];
  3.  
  4.    var _adjectives = ["Adventurous", "Affectionate", "Amiable", "Angry", "Annoying", "Anticipative", "Arrogant", "Assertive", "Audacious", "Aware", "Bitter", "Boisterous", "Bold", "Bubbly", "Careless", "Caring", "Cheerful", "Complicated", "Confounding", "Confusing", "Considerate", "Corny", "Creative", "Daring", "Daydreamer", "Deep", "Defensive", "Different", "Dramatic", "Dreamy", "Eager", "Emotional", "Energetic", "Enthusiastic", "Exasperating", "Expressive", "Faithful", "Fanatic", "Fantastical", "Fervent", "Foolish", "Forgetful", "Friendly", "Frightened", "Frightening", "Frustrating", "Harsh", "Haughty", "Helpless", "Hopeful", "Hot-headed", "Hyper", "Imaginative", "Insecure", "Insubordinate", "Interdependent", "Introspective", "Jealous", "Kind", "Linguistic", "Lively", "Loving", "Malleable", "Moody", "Musing", "Nonconformist", "Opinionated", "Outspoken", "Passionate", "Pensive", "Perky", "Personal", "Pompous", "Preoccupied", "Proud", "Reckless", "Resentful", "Romantic", "Scared", "Secretive", "Sentimental", "Skeptical", "Sparkling", "Speculative", "Spirited", "Stubborn", "Sympathetic", "Tactless", "Talkative", "Tentative", "Thoughtful", "Thoughtless", "Unforgettable", "Unique", "Verbose", "Vivacious", "Vocal", "Whimsical", "Wild"];
  5.  
  6.    var _nouns = ["Time", "Issue", "Year", "Side", "People", "Kind", "Way", "Head", "Day", "House", "Man", "Service", "Thing", "Friend", "Woman", "Father", "Life", "Power", "Child", "Hour", "World", "Game", "School", "Line", "State", "End", "Family", "Member", "Student", "Law", "Group", "Car", "Country", "City", "Problem", "Community", "Hand", "Name", "Part", "President", "Place", "Team", "Case", "Minute", "Week", "Idea", "Company", "Kid", "System", "Body", "Program", "Information", "Question", "Back", "Work", "Parent", "Government", "Face", "Number", "Others", "Night", "Level", "Mr", "Office", "Point", "Door", "Home", "Health", "Water", "Person", "Room", "Art", "Mother", "War", "Area", "History", "Money", "Party", "Storey", "Result", "Fact", "Change", "Month", "Morning", "Lot", "Reason", "Right", "Research", "Study", "Girl", "Book", "Guy", "Eye", "Food", "Job", "Moment", "Word", "Air", "Business", "Teacher"];
  7.  
  8.    var rand = function() { return Math.floor(Math.random()*100) };
  9.  
  10.    return _adverbs[rand()] + _adjectives[rand()] + _nouns[rand()];
  11. }
  12.  
  13. /**
  14. _newID()
  15. "InquisitivelySpeculativeGirl"
  16. _newID()
  17. "FaithfullyLovingService"
  18. _newID()
  19. "VivaciouslyHelplessYear"
  20. _newID()
  21. "ObedientlyFantasticalWork"
  22. _newID()
  23. "CrazilyAdventurousPart"
  24. _newID()
  25. "DeliberatelyCaringJob"
  26. */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement