I got a bee in my bonnet about name generation this morning, so here’s a simple Javascript module for randomly generating names: /* # NameGenerator Usage: const starNameGenerator = new NameGenerator(['Ceti Alpha', 'Scorpio', 'Draconis'...]); starNameGenerator.generate(); // -> random name Works better with a decent sized (hundreds) of thematically similar examples to work from. */ /* …
Continue reading "A Brief Foray into Random Name Generation"