├── README.md ├── alternatives.js └── index.html /README.md: -------------------------------------------------------------------------------- 1 | # hey-guys 2 | 3 | :information_desk_person: A generator to help you stop saying “Hey guys!” 4 | 5 | Have an alternative to *guys*? Add it to `alternatives.js`. 6 | -------------------------------------------------------------------------------- /alternatives.js: -------------------------------------------------------------------------------- 1 | var alternatives = [ 2 | '', 3 | 'acquaintances', 4 | 'all', 5 | 'allies', 6 | 'associates', 7 | 'bosom buddies', 8 | 'buddies', 9 | 'bunch', 10 | 'characters', 11 | 'chums', 12 | 'citizens', 13 | 'classmates', 14 | 'club', 15 | 'cohorts', 16 | 'collaborators', 17 | 'colleagues', 18 | 'community', 19 | 'companions', 20 | 'company', 21 | 'compatriots', 22 | 'comrades', 23 | 'confidants', 24 | 'consorts', 25 | 'cool cats', 26 | 'co-workers', 27 | 'crew', 28 | 'cronies', 29 | 'crowd', 30 | 'earthlings', 31 | 'earth dwellers', 32 | 'equals', 33 | 'everybody', 34 | 'everyone', 35 | 'family', 36 | 'folks', 37 | 'friends', 38 | 'group', 39 | 'horde', 40 | 'humans', 41 | 'human beings', 42 | 'kin', 43 | 'masses', 44 | 'mates', 45 | 'mortals', 46 | 'muggles', 47 | 'neighbors', 48 | 'pals', 49 | 'partners', 50 | 'party people', 51 | 'peeps', 52 | 'peers', 53 | 'people', 54 | 'playmates', 55 | 'roomies', 56 | 'roommates', 57 | 'schoolmates', 58 | 'sidekicks', 59 | 'society', 60 | 'soulmates', 61 | 'squad', 62 | 'supporters', 63 | 'team', 64 | 'teammate', 65 | 'team players', 66 | 'troop', 67 | 'well-wishers', 68 | 'you all', 69 | 'y’all', 70 | 'young and old' 71 | ]; 72 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Hey guys? 7 | 8 | 9 | 10 | 47 | 48 | 49 |
50 | 51 | 59 | 60 | 61 | --------------------------------------------------------------------------------