random-words 1.0.5 → 1.0.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (186) hide show
  1. checksums.yaml +4 -4
  2. data/.rspec_status +166 -39
  3. data/.rubocop.yml +4 -0
  4. data/.rubocop_todo.yml +313 -0
  5. data/CHANGELOG.md +67 -0
  6. data/Gemfile +15 -12
  7. data/Gemfile.lock +46 -26
  8. data/README.md +208 -15
  9. data/bin/randw +258 -92
  10. data/lib/random-words/array.rb +71 -0
  11. data/lib/random-words/config.rb +254 -0
  12. data/lib/random-words/generator.rb +257 -94
  13. data/lib/random-words/hash.rb +16 -0
  14. data/lib/random-words/html2markdown.rb +205 -0
  15. data/lib/random-words/lorem-markdown.rb +397 -0
  16. data/lib/random-words/number-to-word.rb +139 -0
  17. data/lib/random-words/source.rb +106 -0
  18. data/lib/random-words/string.rb +224 -45
  19. data/lib/random-words/table-cleanup.rb +210 -0
  20. data/lib/random-words/version.rb +1 -1
  21. data/lib/random-words/words/1984/adjectives.txt +103 -0
  22. data/lib/random-words/words/1984/adverbs.txt +92 -0
  23. data/lib/random-words/words/1984/articles-plural.txt +10 -0
  24. data/lib/random-words/words/1984/articles-singular.txt +10 -0
  25. data/lib/random-words/words/1984/clauses.txt +79 -0
  26. data/lib/random-words/words/1984/config.yml +4 -0
  27. data/lib/random-words/words/1984/conjunctions-coordinating.txt +20 -0
  28. data/lib/random-words/words/1984/conjunctions-subordinate.txt +29 -0
  29. data/lib/random-words/words/1984/names.txt +12 -0
  30. data/lib/random-words/words/1984/nouns-plural.txt +89 -0
  31. data/lib/random-words/words/1984/nouns-singular.txt +74 -0
  32. data/lib/random-words/words/1984/numbers.yml +5 -0
  33. data/lib/random-words/words/1984/phrases.txt +16 -0
  34. data/lib/random-words/words/1984/prepositions.txt +89 -0
  35. data/lib/random-words/words/1984/terminators.txt +16 -0
  36. data/lib/random-words/words/1984/verbs-passive.txt +83 -0
  37. data/lib/random-words/words/1984/verbs-plural.txt +91 -0
  38. data/lib/random-words/words/1984/verbs-singular.txt +110 -0
  39. data/lib/random-words/words/alice/adjectives.txt +80 -0
  40. data/lib/random-words/words/alice/adverbs.txt +87 -0
  41. data/lib/random-words/words/alice/articles-plural.txt +10 -0
  42. data/lib/random-words/words/alice/articles-singular.txt +10 -0
  43. data/lib/random-words/words/alice/clauses.txt +81 -0
  44. data/lib/random-words/words/alice/config.yml +4 -0
  45. data/lib/random-words/words/alice/conjunctions-coordinating.txt +20 -0
  46. data/lib/random-words/words/alice/conjunctions-subordinate.txt +29 -0
  47. data/lib/random-words/words/alice/names.txt +10 -0
  48. data/lib/random-words/words/alice/nouns-plural.txt +95 -0
  49. data/lib/random-words/words/alice/nouns-singular.txt +82 -0
  50. data/lib/random-words/words/alice/numbers.yml +5 -0
  51. data/lib/random-words/words/alice/phrases.txt +16 -0
  52. data/lib/random-words/words/alice/prepositions.txt +45 -0
  53. data/lib/random-words/words/alice/terminators.txt +16 -0
  54. data/lib/random-words/words/alice/verbs-passive.txt +495 -0
  55. data/lib/random-words/words/alice/verbs-plural.txt +115 -0
  56. data/lib/random-words/words/alice/verbs-singular.txt +97 -0
  57. data/lib/random-words/words/bacon/clauses.txt +592 -592
  58. data/lib/random-words/words/bacon/config.yml +4 -0
  59. data/lib/random-words/words/bacon/conjunctions-coordinating.txt +20 -0
  60. data/lib/random-words/words/bacon/names.txt +54 -0
  61. data/lib/random-words/words/bacon/numbers.yml +5 -0
  62. data/lib/random-words/words/bacon/phrases.txt +20 -0
  63. data/lib/random-words/words/bacon/prepositions.txt +45 -0
  64. data/lib/random-words/words/bacon/terminators.txt +16 -0
  65. data/lib/random-words/words/corporate/config.yml +4 -0
  66. data/lib/random-words/words/corporate/conjunctions-coordinating.txt +20 -0
  67. data/lib/random-words/words/corporate/names.txt +74 -0
  68. data/lib/random-words/words/corporate/numbers.yml +5 -0
  69. data/lib/random-words/words/corporate/phrases.txt +29 -0
  70. data/lib/random-words/words/corporate/prepositions.txt +45 -0
  71. data/lib/random-words/words/corporate/terminators.txt +16 -0
  72. data/lib/random-words/words/doctor/adjectives.txt +92 -0
  73. data/lib/random-words/words/doctor/adverbs.txt +92 -0
  74. data/lib/random-words/words/doctor/articles-plural.txt +10 -0
  75. data/lib/random-words/words/doctor/articles-singular.txt +10 -0
  76. data/lib/random-words/words/doctor/clauses.txt +83 -0
  77. data/lib/random-words/words/doctor/config.yml +10 -0
  78. data/lib/random-words/words/doctor/conjunctions-coordinating.txt +20 -0
  79. data/lib/random-words/words/doctor/conjunctions-subordinate.txt +29 -0
  80. data/lib/random-words/words/doctor/names.txt +74 -0
  81. data/lib/random-words/words/doctor/nouns-plural.txt +84 -0
  82. data/lib/random-words/words/doctor/nouns-singular.txt +84 -0
  83. data/lib/random-words/words/doctor/numbers.yml +5 -0
  84. data/lib/random-words/words/doctor/phrases.txt +29 -0
  85. data/lib/random-words/words/doctor/prepositions.txt +45 -0
  86. data/lib/random-words/words/doctor/terminators.txt +16 -0
  87. data/lib/random-words/words/doctor/verbs-passive.txt +83 -0
  88. data/lib/random-words/words/doctor/verbs-plural.txt +88 -0
  89. data/lib/random-words/words/doctor/verbs-singular.txt +83 -0
  90. data/lib/random-words/words/english/clauses.txt +592 -592
  91. data/lib/random-words/words/english/config.yml +4 -0
  92. data/lib/random-words/words/english/conjunctions-coordinating.txt +20 -0
  93. data/lib/random-words/words/english/names.txt +74 -0
  94. data/lib/random-words/words/english/numbers.yml +5 -0
  95. data/lib/random-words/words/english/phrases.txt +29 -0
  96. data/lib/random-words/words/english/prepositions.txt +45 -0
  97. data/lib/random-words/words/english/terminators.txt +16 -0
  98. data/lib/random-words/words/english/verbs-plural.txt +1 -0
  99. data/lib/random-words/words/english/verbs-singular.txt +1 -0
  100. data/lib/random-words/words/foulmouth/adjectives.txt +89 -0
  101. data/lib/random-words/words/foulmouth/adverbs.txt +97 -0
  102. data/lib/random-words/words/foulmouth/articles-plural.txt +12 -0
  103. data/lib/random-words/words/foulmouth/articles-singular.txt +11 -0
  104. data/lib/random-words/words/foulmouth/clauses.txt +74 -0
  105. data/lib/random-words/words/foulmouth/config.yml +4 -0
  106. data/lib/random-words/words/foulmouth/conjunctions-coordinating.txt +20 -0
  107. data/lib/random-words/words/foulmouth/conjunctions-subordinate.txt +29 -0
  108. data/lib/random-words/words/foulmouth/names.txt +81 -0
  109. data/lib/random-words/words/foulmouth/nouns-plural.txt +96 -0
  110. data/lib/random-words/words/foulmouth/nouns-singular.txt +99 -0
  111. data/lib/random-words/words/foulmouth/numbers.yml +5 -0
  112. data/lib/random-words/words/foulmouth/phrases.txt +30 -0
  113. data/lib/random-words/words/foulmouth/prepositions.txt +35 -0
  114. data/lib/random-words/words/foulmouth/terminators.txt +16 -0
  115. data/lib/random-words/words/foulmouth/verbs-passive.txt +143 -0
  116. data/lib/random-words/words/foulmouth/verbs-plural.txt +91 -0
  117. data/lib/random-words/words/foulmouth/verbs-singular.txt +104 -0
  118. data/lib/random-words/words/hipster/adjectives.txt +100 -0
  119. data/lib/random-words/words/hipster/adverbs.txt +89 -0
  120. data/lib/random-words/words/hipster/articles-plural.txt +10 -0
  121. data/lib/random-words/words/hipster/articles-singular.txt +10 -0
  122. data/lib/random-words/words/hipster/clauses.txt +180 -0
  123. data/lib/random-words/words/hipster/config.yml +4 -0
  124. data/lib/random-words/words/hipster/conjunctions-coordinating.txt +20 -0
  125. data/lib/random-words/words/hipster/conjunctions-subordinate.txt +29 -0
  126. data/lib/random-words/words/hipster/names.txt +73 -0
  127. data/lib/random-words/words/hipster/nouns-plural.txt +96 -0
  128. data/lib/random-words/words/hipster/nouns-singular.txt +100 -0
  129. data/lib/random-words/words/hipster/numbers.yml +5 -0
  130. data/lib/random-words/words/hipster/phrases.txt +21 -0
  131. data/lib/random-words/words/hipster/prepositions.txt +45 -0
  132. data/lib/random-words/words/hipster/terminators.txt +16 -0
  133. data/lib/random-words/words/hipster/verbs-passive.txt +88 -0
  134. data/lib/random-words/words/hipster/verbs-plural.txt +106 -0
  135. data/lib/random-words/words/hipster/verbs-singular.txt +114 -0
  136. data/lib/random-words/words/latin/config.yml +4 -0
  137. data/lib/random-words/words/latin/conjunctions-coordinating.txt +15 -0
  138. data/lib/random-words/words/latin/names.txt +93 -0
  139. data/lib/random-words/words/latin/numbers.yml +5 -0
  140. data/lib/random-words/words/latin/phrases.txt +16 -0
  141. data/lib/random-words/words/latin/prepositions.txt +18 -0
  142. data/lib/random-words/words/latin/terminators.txt +16 -0
  143. data/lib/random-words/words/spanish/adjectives.txt +81 -0
  144. data/lib/random-words/words/spanish/adverbs.txt +87 -0
  145. data/lib/random-words/words/spanish/articles-plural.txt +4 -0
  146. data/lib/random-words/words/spanish/articles-singular.txt +4 -0
  147. data/lib/random-words/words/spanish/clauses.txt +74 -0
  148. data/lib/random-words/words/spanish/config.yml +4 -0
  149. data/lib/random-words/words/spanish/conjunctions-coordinating.txt +8 -0
  150. data/lib/random-words/words/spanish/conjunctions-subordinate.txt +16 -0
  151. data/lib/random-words/words/spanish/names.txt +61 -0
  152. data/lib/random-words/words/spanish/nouns-plural.txt +92 -0
  153. data/lib/random-words/words/spanish/nouns-singular.txt +125 -0
  154. data/lib/random-words/words/spanish/numbers.yml +5 -0
  155. data/lib/random-words/words/spanish/phrases.txt +31 -0
  156. data/lib/random-words/words/spanish/prepositions.txt +31 -0
  157. data/lib/random-words/words/spanish/terminators.txt +17 -0
  158. data/lib/random-words/words/spanish/verbs-passive.txt +495 -0
  159. data/lib/random-words/words/spanish/verbs-plural.txt +326 -0
  160. data/lib/random-words/words/spanish/verbs-singular.txt +351 -0
  161. data/lib/random-words/words/veggie/adjectives.txt +111 -0
  162. data/lib/random-words/words/veggie/adverbs.txt +81 -0
  163. data/lib/random-words/words/veggie/articles-plural.txt +10 -0
  164. data/lib/random-words/words/veggie/articles-singular.txt +10 -0
  165. data/lib/random-words/words/veggie/clauses.txt +57 -0
  166. data/lib/random-words/words/veggie/config.yml +4 -0
  167. data/lib/random-words/words/veggie/conjunctions-coordinating.txt +20 -0
  168. data/lib/random-words/words/veggie/conjunctions-subordinate.txt +29 -0
  169. data/lib/random-words/words/veggie/names.txt +93 -0
  170. data/lib/random-words/words/veggie/nouns-plural.txt +78 -0
  171. data/lib/random-words/words/veggie/nouns-singular.txt +105 -0
  172. data/lib/random-words/words/veggie/numbers.yml +5 -0
  173. data/lib/random-words/words/veggie/phrases.txt +20 -0
  174. data/lib/random-words/words/veggie/prepositions.txt +45 -0
  175. data/lib/random-words/words/veggie/terminators.txt +16 -0
  176. data/lib/random-words/words/veggie/verbs-passive.txt +56 -0
  177. data/lib/random-words/words/veggie/verbs-plural.txt +79 -0
  178. data/lib/random-words/words/veggie/verbs-singular.txt +79 -0
  179. data/lib/random-words.rb +28 -0
  180. data/random-words.gemspec +3 -1
  181. data/src/_README.md +208 -15
  182. metadata +181 -9
  183. data/lib/random-words/words/bacon/numbers.txt +0 -21
  184. data/lib/random-words/words/corporate/numbers.txt +0 -21
  185. data/lib/random-words/words/english/numbers.txt +0 -21
  186. data/lib/random-words/words/latin/numbers.txt +0 -21
@@ -0,0 +1,89 @@
1
+ affectionately
2
+ artfully
3
+ artisanal
4
+ attentively
5
+ authentically
6
+ bohemianly
7
+ boldly
8
+ candidly
9
+ casually
10
+ charismatically
11
+ cheerfully
12
+ comfortably
13
+ coolly
14
+ creatively
15
+ critically
16
+ culturally
17
+ curiously
18
+ deliberately
19
+ differently
20
+ distinctively
21
+ eclectically
22
+ effortlessly
23
+ elegantly
24
+ enthusiastically
25
+ exclusively
26
+ expressively
27
+ fancifully
28
+ fashionably
29
+ freely
30
+ genuinely
31
+ gracefully
32
+ grittily
33
+ humbly
34
+ ideologically
35
+ independently
36
+ individually
37
+ intellectually
38
+ ironically
39
+ irreplaceably
40
+ joyfully
41
+ locally
42
+ meticulously
43
+ modestly
44
+ naturally
45
+ nonchalantly
46
+ nostalgically
47
+ openly
48
+ organically
49
+ playfully
50
+ poetically
51
+ positively
52
+ progressively
53
+ provocatively
54
+ quaintly
55
+ quirkily
56
+ radically
57
+ readily
58
+ refinedly
59
+ reflectively
60
+ relaxedly
61
+ respectfully
62
+ romantically
63
+ sardonically
64
+ seductively
65
+ selectively
66
+ self-consciously
67
+ sensibly
68
+ sensitively
69
+ seriously
70
+ simply
71
+ sophisticatedly
72
+ spontaneously
73
+ stylishly
74
+ subtly
75
+ thoughtfully
76
+ tirelessly
77
+ trendy
78
+ unconventionally
79
+ understatedly
80
+ uniquely
81
+ unpretentiously
82
+ vibrantly
83
+ visually
84
+ vividly
85
+ whimsically
86
+ wildly
87
+ wisely
88
+ youthfully
89
+ zestfully
@@ -0,0 +1,10 @@
1
+ all
2
+ either
3
+ few
4
+ many
5
+ several
6
+ some
7
+ these
8
+ those
9
+ three
10
+ two
@@ -0,0 +1,10 @@
1
+ a
2
+ an
3
+ the
4
+ each
5
+ every
6
+ neither
7
+ any
8
+ one
9
+ this
10
+ that
@@ -0,0 +1,180 @@
1
+ although it can be a topic of conversation.
2
+ although it can be challenging to grow evenly.
3
+ although it can be difficult to maintain during summer.
4
+ although it can draw attention to the mouth.
5
+ although it can require a lot of patience.
6
+ although it may draw mixed reactions.
7
+ although it may require daily grooming.
8
+ although it may require some experimentation.
9
+ although it might take time to grow.
10
+ although it requires regular maintenance.
11
+ although some people find them unappealing.
12
+ although some people prefer clean-shaven.
13
+ as long as it doesn’t itch.
14
+ because it adds character to his face.
15
+ because it can be a conversation starter.
16
+ because it can be a family heirloom.
17
+ because it can be a symbol of masculinity.
18
+ because it can enhance his jawline.
19
+ because it can enhance his overall style.
20
+ because it can frame the face nicely.
21
+ because it can hide a weak chin.
22
+ because it can make a man look distinguished.
23
+ because it can make a playful statement.
24
+ because she loves the way it looks.
25
+ if he can master the handlebar style.
26
+ if he chooses to go for a full beard instead.
27
+ if he decides to dye it a different color.
28
+ if he decides to grow it for a special event.
29
+ if he decides to grow it for a specific cause.
30
+ if he decides to shave it off.
31
+ if he enjoys experimenting with different shapes.
32
+ if he enjoys participating in themed events.
33
+ if he enjoys the attention it brings.
34
+ if he enjoys the challenge of growing it long.
35
+ if he enjoys the grooming ritual.
36
+ if he enjoys the nostalgia of retro styles.
37
+ if he feels adventurous with his appearance.
38
+ if he finds a community of moustache enthusiasts.
39
+ if he finds joy in the process of growing it.
40
+ if he learns to care for it properly.
41
+ if he participates in 'movember.'
42
+ if he prefers a more classic look.
43
+ if he styles it after a fictional character.
44
+ if he wants to channel a specific era.
45
+ if he wants to stand out in a crowd.
46
+ if she admires him for his unique style.
47
+ if she argues that it represents maturity.
48
+ if she encourages him to embrace his hair.
49
+ if she encourages him to try a new design.
50
+ if she encourages him to try new styles.
51
+ if she helps him choose the right products.
52
+ if she matches her makeup with it.
53
+ if you can style it differently.
54
+ since he enjoys the compliments.
55
+ since he started growing his moustache.
56
+ since it can be a family tradition.
57
+ since it can be a form of self-expression.
58
+ since it can be a playful addition to his look.
59
+ since it can be a way to express individuality.
60
+ since it can be styled in various ways.
61
+ since it can be styled with different accessories.
62
+ since it can become a signature look.
63
+ since it can change his overall appearance.
64
+ since it can signify a cultural identity.
65
+ since it has become a fashion statement.
66
+ since it is a trend among hipsters.
67
+ since it often reflects personality.
68
+ since it often requires specific grooming tools.
69
+ that advocate for environmental causes
70
+ that appreciate street art
71
+ that appreciate the aesthetic of simplicity
72
+ that appreciate the beauty of imperfection
73
+ that appreciate the craft of writing
74
+ that appreciate vintage bicycles
75
+ that celebrate creativity
76
+ that challenge conventional thinking
77
+ that discuss philosophy over brunch
78
+ that embrace counterculture
79
+ that embrace retro aesthetics
80
+ that engage in mindfulness practices
81
+ that engage with community initiatives
82
+ that engage with social media influencers
83
+ that enjoy attending poetry readings
84
+ that enjoy collecting art
85
+ that enjoy cycling around the city
86
+ that enjoy diy projects
87
+ that enjoy eclectic home furnishings
88
+ that enjoy unique dining experiences
89
+ that explore different cuisines
90
+ that favor craft beers
91
+ that frequent local coffee shops
92
+ that love to travel off the beaten path
93
+ that often challenge societal norms
94
+ that often experiment with cooking
95
+ that often read graphic novels
96
+ that often take part in social experiments
97
+ that often visit flea markets
98
+ that often wear statement glasses
99
+ that often wear unique accessories
100
+ that participate in community gardening
101
+ that prefer handmade items
102
+ that promote sustainable living
103
+ that seek unique experiences
104
+ that value authenticity
105
+ when he admires famous moustachioed figures.
106
+ when he admires the artistry of moustache styles.
107
+ when he admires the craftsmanship of moustache combs.
108
+ when he attends a moustache competition.
109
+ when he chooses to match it with his hairstyle.
110
+ when he collects products for moustache care.
111
+ when he considers different moustache competitions.
112
+ when he contemplates shaving it for a fresh start.
113
+ when he feels confident with it.
114
+ when he finds inspiration from moustache influencers.
115
+ when he finds inspiration from vintage photos.
116
+ when he learns about different hair growth patterns.
117
+ when he reflects on memorable moments with it.
118
+ when he shares grooming tips with others.
119
+ when he shares his grooming secrets with friends.
120
+ when he shares his journey of growing it.
121
+ when he shares tips for moustache care.
122
+ when he showcases his moustache on social media.
123
+ when he shows off his grooming skills.
124
+ when he styles it for special occasions.
125
+ when he trims his moustache.
126
+ when she finds the perfect wax.
127
+ when she sees different styles online.
128
+ when she suggests adding some color.
129
+ when they bond over moustache-themed movies.
130
+ when they bond over their love for moustaches.
131
+ when they compare their moustache styles.
132
+ when they discuss famous moustaches in history.
133
+ when they grow their moustaches for charity.
134
+ which appreciate artisanal goods
135
+ which curate their own playlists
136
+ which indulge in gourmet food
137
+ which often criticize mainstream culture
138
+ which often host dinner parties
139
+ which often post on social media
140
+ which support small businesses
141
+ while they are popular in many cultures.
142
+ while they debate the best moustache styles.
143
+ while they discuss the history of moustaches.
144
+ who appreciate alternative lifestyles
145
+ who appreciate the art of brewing
146
+ who appreciate the art of storytelling
147
+ who attend art gallery openings
148
+ who attend immersive theater performances
149
+ who attend music festivals
150
+ who celebrate individuality
151
+ who collect vinyl records
152
+ who embrace a healthy lifestyle
153
+ who embrace diverse cultures
154
+ who embrace the slow fashion movement
155
+ who engage in social activism
156
+ who enjoy craft cocktail bars
157
+ who enjoy exploring new neighborhoods
158
+ who enjoy exploring second-hand shops
159
+ who enjoy independent films
160
+ who enjoy reading classic literature
161
+ who enjoy thrift shopping
162
+ who enjoy unique travel experiences
163
+ who enjoy vintage film photography
164
+ who enjoy vintage home decor
165
+ who explore urban art scenes
166
+ who follow fashion trends ironically
167
+ who frequent farmer's markets
168
+ who have unique hairstyles
169
+ who listen to obscure music
170
+ who often attend food tastings
171
+ who often attend workshops
172
+ who often discuss politics over coffee
173
+ who often participate in cultural festivals
174
+ who often support local charities
175
+ who participate in pop-up events
176
+ who practice minimalism
177
+ who prefer local music scenes
178
+ who support local artisans
179
+ who value meaningful connections
180
+ who wear vintage clothing
@@ -0,0 +1,4 @@
1
+ ---
2
+ name: hipster
3
+ description: Hipster words
4
+ triggers: [hipster]
@@ -0,0 +1,20 @@
1
+ and
2
+ but
3
+ or
4
+ nor
5
+ for
6
+ so
7
+ yet
8
+ although
9
+ because
10
+ since
11
+ unless
12
+ while
13
+ whereas
14
+ if
15
+ even though
16
+ as
17
+ before
18
+ after
19
+ until
20
+ whether
@@ -0,0 +1,29 @@
1
+ although
2
+ as
3
+ as far as
4
+ as if
5
+ as long as
6
+ as much as
7
+ as though
8
+ because
9
+ before
10
+ even if
11
+ even though
12
+ if
13
+ in case
14
+ in order that
15
+ once
16
+ provided that
17
+ rather than
18
+ since
19
+ so that
20
+ than
21
+ that
22
+ though
23
+ until
24
+ when
25
+ whenever
26
+ where
27
+ wherever
28
+ whether
29
+ while
@@ -0,0 +1,73 @@
1
+ Aiden
2
+ Beatrix
3
+ Clementine
4
+ Dexter
5
+ Fiona
6
+ Jasper
7
+ Luna
8
+ Milo
9
+ Nova
10
+ Quinn
11
+ Arlo
12
+ Beau
13
+ Calliope
14
+ Dashiell
15
+ Eleanor
16
+ Finn
17
+ Hazel
18
+ Ivy
19
+ Juno
20
+ Kai
21
+ Levi
22
+ Mabel
23
+ Nico
24
+ Ophelia
25
+ Percival
26
+ Romy
27
+ Sage
28
+ Theo
29
+ Violet
30
+ Zara
31
+ Bodhi
32
+ Cora
33
+ Desmond
34
+ Ember
35
+ Gideon
36
+ Harlow
37
+ Isla
38
+ Juniper
39
+ Lark
40
+ Rowan
41
+ Wren
42
+
43
+ Brewster
44
+ Cabbage
45
+ Clement
46
+ Fitzgerald
47
+ Graham
48
+ Hawthorne
49
+ Jenkins
50
+ Kensington
51
+ Larkin
52
+ Montgomery
53
+ Nightingale
54
+ Oberon
55
+ Peabody
56
+ Quincy
57
+ Rutherford
58
+ Savage
59
+ Thorne
60
+ Vanderbilt
61
+ Wellington
62
+ Xavier
63
+ Yates
64
+ Zinn
65
+ Baxter
66
+ Cypress
67
+ Evergreen
68
+ Hawkes
69
+ Larkspur
70
+ Morrison
71
+ Parker
72
+ Sullivan
73
+ Wilder
@@ -0,0 +1,96 @@
1
+ accessories
2
+ beards
3
+ bikes
4
+ bikers
5
+ bottles
6
+ breeches
7
+ caffeine
8
+ cafés
9
+ clothing
10
+ components
11
+ creatives
12
+ cultures
13
+ designs
14
+ fashion
15
+ flannels
16
+ friends
17
+ furniture
18
+ gadgets
19
+ grooming products
20
+ hats
21
+ hipsters
22
+ indie bands
23
+ influencers
24
+ inspirations
25
+ jewelry
26
+ labels
27
+ lifestyles
28
+ looks
29
+ moustaches
30
+ mustaches
31
+ music
32
+ mustache waxes
33
+ neighborhoods
34
+ novelties
35
+ pants
36
+ patterns
37
+ people
38
+ photographs
39
+ posters
40
+ prints
41
+ projects
42
+ quirks
43
+ records
44
+ rides
45
+ scenes
46
+ shoes
47
+ shorts
48
+ styles
49
+ subscriptions
50
+ sunglasses
51
+ t-shirts
52
+ trends
53
+ treats
54
+ types
55
+ vintage items
56
+ vintage shops
57
+ waxes
58
+ watches
59
+ websites
60
+ workshops
61
+ yarns
62
+ yarns
63
+ zines
64
+ adventures
65
+ attitudes
66
+ bicycles
67
+ bicycle lanes
68
+ brunches
69
+ cameras
70
+ caffeine fixes
71
+ circulars
72
+ communities
73
+ conversations
74
+ creations
75
+ events
76
+ fests
77
+ galleries
78
+ glasses
79
+ hobbies
80
+ inventions
81
+ meetups
82
+ narratives
83
+ neatness
84
+ neons
85
+ pints
86
+ pursuits
87
+ riders
88
+ scooters
89
+ signatures
90
+ sit-ins
91
+ snacks
92
+ styles
93
+ tables
94
+ techniques
95
+ themes
96
+ tricks
@@ -0,0 +1,100 @@
1
+ artisan
2
+ beard
3
+ bell
4
+ bike
5
+ bicycle
6
+ brunch
7
+ café
8
+ clothing
9
+ coffee
10
+ community
11
+ culture
12
+ design
13
+ diner
14
+ drink
15
+ environment
16
+ event
17
+ fashion
18
+ festival
19
+ garage
20
+ grooming
21
+ hipster
22
+ handlebar
23
+ heritage
24
+ independence
25
+ inspiration
26
+ irony
27
+ jacket
28
+ jazz
29
+ lifestyle
30
+ local
31
+ moustache
32
+ movement
33
+ music
34
+ neighborhood
35
+ nostalgia
36
+ pasta
37
+ patio
38
+ pedal
39
+ performance
40
+ photography
41
+ pint
42
+ pizza
43
+ plaid
44
+ pop-up
45
+ project
46
+ quilt
47
+ record
48
+ revolution
49
+ ride
50
+ salon
51
+ scarf
52
+ skill
53
+ style
54
+ subculture
55
+ sunglasses
56
+ sustainability
57
+ tattoo
58
+ tea
59
+ texture
60
+ thrift
61
+ trend
62
+ t-shirt
63
+ urban
64
+ vegan
65
+ vintage
66
+ vintner
67
+ whiskers
68
+ workspace
69
+ yard
70
+ yarn
71
+ zine
72
+ accessory
73
+ art
74
+ baker
75
+ barber
76
+ beverage
77
+ bookstore
78
+ cider
79
+ craft
80
+ drinkware
81
+ dude
82
+ experience
83
+ flannel
84
+ furniture
85
+ guitar
86
+ market
87
+ mug
88
+ neatness
89
+ pint
90
+ potluck
91
+ recording
92
+ shop
93
+ sneaker
94
+ spirit
95
+ stand
96
+ story
97
+ sustainable
98
+ tote
99
+ vibe
100
+ workspace
@@ -0,0 +1,5 @@
1
+ ---
2
+ digits: zero one two three four five six seven eight nine
3
+ teens: ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen
4
+ tens: twenty thirty forty fifty sixty seventy eighty ninety
5
+ places: one ten hundred thousand million billion trillion
@@ -0,0 +1,21 @@
1
+ I love this artisanal coffee
2
+ Have you tried that new vegan place?
3
+ That's so retro
4
+ I'm really into obscure indie bands
5
+ Let's hit up that thrift shop
6
+ This vinyl is a must-have
7
+ I prefer hand-crafted over mass-produced
8
+ It's all about the experience, man
9
+ Do you even vintage?
10
+ I can't deal with mainstream trends
11
+ It's not just a trend; it's a lifestyle
12
+ Let's go to the farmer's market
13
+ This book is a hidden gem
14
+ I'm all about sustainable fashion
15
+ Have you heard of this underground artist?
16
+ It's so authentic
17
+ I'm not into corporate brands
18
+ This place has such a unique vibe
19
+ I love supporting local businesses
20
+ It's about finding your own path
21
+ Let's take a road trip to that music festival
@@ -0,0 +1,45 @@
1
+ about
2
+ above
3
+ across
4
+ after
5
+ against
6
+ along
7
+ among
8
+ around
9
+ at
10
+ before
11
+ behind
12
+ below
13
+ beneath
14
+ beside
15
+ between
16
+ beyond
17
+ by
18
+ despite
19
+ down
20
+ during
21
+ except
22
+ for
23
+ from
24
+ in
25
+ inside
26
+ into
27
+ like
28
+ near
29
+ of
30
+ off
31
+ on
32
+ onto
33
+ out
34
+ outside
35
+ over
36
+ through
37
+ to
38
+ toward
39
+ under
40
+ until
41
+ up
42
+ upon
43
+ with
44
+ within
45
+ without
@@ -0,0 +1,16 @@
1
+ ,.
2
+ ,.
3
+ ,.
4
+ ,.
5
+ ,.
6
+ ,.
7
+ ,?
8
+ ,?
9
+ ,?
10
+ ,!
11
+ ,!
12
+ ,!
13
+
14
+ ",."
15
+ ',.'
16
+ (,.)