kaneo (minimalist kanban) fork to experiment adding a tangled integration
github.com/usekaneo/kaneo
1const adjectives = [
2 "fractious",
3 "whimsical",
4 "zealous",
5 "dazzling",
6 "ethereal",
7 "tenacious",
8 "luminous",
9 "mystical",
10 "radiant",
11 "vivacious",
12 "jubilant",
13 "serene",
14 "cosmic",
15 "dynamic",
16 "enigmatic",
17 "mystical",
18 "radiant",
19 "vivacious",
20 "jubilant",
21 "serene",
22 "cosmic",
23 "dynamic",
24];
25
26const animals = [
27 "monkfish",
28 "phoenix",
29 "griffin",
30 "dragon",
31 "unicorn",
32 "kraken",
33 "sphinx",
34 "chimera",
35 "pegasus",
36 "hydra",
37 "lynx",
38 "falcon",
39 "octopus",
40 "panther",
41 "dolphin",
42 "tiger",
43 "elephant",
44 "giraffe",
45 "hippopotamus",
46 "kangaroo",
47 "leopard",
48 "lion",
49];
50
51export function generateDemoName(): string {
52 const adjective = adjectives[Math.floor(Math.random() * adjectives.length)];
53 const animal = animals[Math.floor(Math.random() * animals.length)];
54 return `${adjective}-${animal}`;
55}