random-words 1.0.5 → 1.0.6
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.
- checksums.yaml +4 -4
- data/.rspec_status +148 -39
- data/.rubocop.yml +1 -0
- data/CHANGELOG.md +42 -0
- data/Gemfile.lock +4 -1
- data/README.md +153 -4
- data/bin/randw +195 -49
- data/lib/random-words/array.rb +51 -0
- data/lib/random-words/config.rb +248 -0
- data/lib/random-words/generator.rb +239 -93
- data/lib/random-words/hash.rb +16 -0
- data/lib/random-words/html2markdown.rb +205 -0
- data/lib/random-words/lorem-markdown.rb +398 -0
- data/lib/random-words/number-to-word.rb +137 -0
- data/lib/random-words/source.rb +105 -0
- data/lib/random-words/string.rb +221 -47
- data/lib/random-words/table-cleanup.rb +210 -0
- data/lib/random-words/version.rb +1 -1
- data/lib/random-words/words/1984/adjectives.txt +103 -0
- data/lib/random-words/words/1984/adverbs.txt +92 -0
- data/lib/random-words/words/1984/articles-plural.txt +10 -0
- data/lib/random-words/words/1984/articles-singular.txt +10 -0
- data/lib/random-words/words/1984/clauses.txt +79 -0
- data/lib/random-words/words/1984/config.yml +4 -0
- data/lib/random-words/words/1984/conjunctions-coordinating.txt +20 -0
- data/lib/random-words/words/1984/conjunctions-subordinate.txt +29 -0
- data/lib/random-words/words/1984/names.txt +74 -0
- data/lib/random-words/words/1984/nouns-plural.txt +89 -0
- data/lib/random-words/words/1984/nouns-singular.txt +74 -0
- data/lib/random-words/words/1984/numbers.yml +5 -0
- data/lib/random-words/words/1984/prepositions.txt +89 -0
- data/lib/random-words/words/1984/terminators.txt +16 -0
- data/lib/random-words/words/1984/verbs-passive.txt +83 -0
- data/lib/random-words/words/1984/verbs-plural.txt +91 -0
- data/lib/random-words/words/1984/verbs-singular.txt +110 -0
- data/lib/random-words/words/alice/adjectives.txt +80 -0
- data/lib/random-words/words/alice/adverbs.txt +87 -0
- data/lib/random-words/words/alice/articles-plural.txt +10 -0
- data/lib/random-words/words/alice/articles-singular.txt +10 -0
- data/lib/random-words/words/alice/clauses.txt +81 -0
- data/lib/random-words/words/alice/config.yml +4 -0
- data/lib/random-words/words/alice/conjunctions-coordinating.txt +20 -0
- data/lib/random-words/words/alice/conjunctions-subordinate.txt +29 -0
- data/lib/random-words/words/alice/names.txt +74 -0
- data/lib/random-words/words/alice/nouns-plural.txt +95 -0
- data/lib/random-words/words/alice/nouns-singular.txt +82 -0
- data/lib/random-words/words/alice/numbers.yml +5 -0
- data/lib/random-words/words/alice/prepositions.txt +45 -0
- data/lib/random-words/words/alice/terminators.txt +16 -0
- data/lib/random-words/words/alice/verbs-passive.txt +495 -0
- data/lib/random-words/words/alice/verbs-plural.txt +115 -0
- data/lib/random-words/words/alice/verbs-singular.txt +97 -0
- data/lib/random-words/words/bacon/clauses.txt +592 -592
- data/lib/random-words/words/bacon/config.yml +4 -0
- data/lib/random-words/words/bacon/conjunctions-coordinating.txt +20 -0
- data/lib/random-words/words/bacon/names.txt +74 -0
- data/lib/random-words/words/bacon/numbers.yml +5 -0
- data/lib/random-words/words/bacon/prepositions.txt +45 -0
- data/lib/random-words/words/bacon/terminators.txt +16 -0
- data/lib/random-words/words/corporate/config.yml +4 -0
- data/lib/random-words/words/corporate/conjunctions-coordinating.txt +20 -0
- data/lib/random-words/words/corporate/names.txt +74 -0
- data/lib/random-words/words/corporate/numbers.yml +5 -0
- data/lib/random-words/words/corporate/prepositions.txt +45 -0
- data/lib/random-words/words/corporate/terminators.txt +16 -0
- data/lib/random-words/words/doctor/adjectives.txt +92 -0
- data/lib/random-words/words/doctor/adverbs.txt +92 -0
- data/lib/random-words/words/doctor/articles-plural.txt +10 -0
- data/lib/random-words/words/doctor/articles-singular.txt +10 -0
- data/lib/random-words/words/doctor/clauses.txt +83 -0
- data/lib/random-words/words/doctor/config.yml +10 -0
- data/lib/random-words/words/doctor/conjunctions-coordinating.txt +20 -0
- data/lib/random-words/words/doctor/conjunctions-subordinate.txt +29 -0
- data/lib/random-words/words/doctor/names.txt +74 -0
- data/lib/random-words/words/doctor/nouns-plural.txt +84 -0
- data/lib/random-words/words/doctor/nouns-singular.txt +84 -0
- data/lib/random-words/words/doctor/numbers.yml +5 -0
- data/lib/random-words/words/doctor/prepositions.txt +45 -0
- data/lib/random-words/words/doctor/terminators.txt +16 -0
- data/lib/random-words/words/doctor/verbs-passive.txt +83 -0
- data/lib/random-words/words/doctor/verbs-plural.txt +88 -0
- data/lib/random-words/words/doctor/verbs-singular.txt +83 -0
- data/lib/random-words/words/english/clauses.txt +592 -592
- data/lib/random-words/words/english/config.yml +4 -0
- data/lib/random-words/words/english/conjunctions-coordinating.txt +20 -0
- data/lib/random-words/words/english/names.txt +74 -0
- data/lib/random-words/words/english/numbers.yml +5 -0
- data/lib/random-words/words/english/prepositions.txt +45 -0
- data/lib/random-words/words/english/terminators.txt +16 -0
- data/lib/random-words/words/english/verbs-plural.txt +1 -0
- data/lib/random-words/words/english/verbs-singular.txt +1 -0
- data/lib/random-words/words/foulmouth/adjectives.txt +89 -0
- data/lib/random-words/words/foulmouth/adverbs.txt +97 -0
- data/lib/random-words/words/foulmouth/articles-plural.txt +10 -0
- data/lib/random-words/words/foulmouth/articles-singular.txt +10 -0
- data/lib/random-words/words/foulmouth/clauses.txt +74 -0
- data/lib/random-words/words/foulmouth/config.yml +4 -0
- data/lib/random-words/words/foulmouth/conjunctions-coordinating.txt +20 -0
- data/lib/random-words/words/foulmouth/conjunctions-subordinate.txt +29 -0
- data/lib/random-words/words/foulmouth/names.txt +74 -0
- data/lib/random-words/words/foulmouth/nouns-plural.txt +96 -0
- data/lib/random-words/words/foulmouth/nouns-singular.txt +99 -0
- data/lib/random-words/words/foulmouth/numbers.yml +5 -0
- data/lib/random-words/words/foulmouth/prepositions.txt +35 -0
- data/lib/random-words/words/foulmouth/terminators.txt +16 -0
- data/lib/random-words/words/foulmouth/verbs-passive.txt +143 -0
- data/lib/random-words/words/foulmouth/verbs-plural.txt +91 -0
- data/lib/random-words/words/foulmouth/verbs-singular.txt +104 -0
- data/lib/random-words/words/hipster/adjectives.txt +100 -0
- data/lib/random-words/words/hipster/adverbs.txt +89 -0
- data/lib/random-words/words/hipster/articles-plural.txt +10 -0
- data/lib/random-words/words/hipster/articles-singular.txt +10 -0
- data/lib/random-words/words/hipster/clauses.txt +180 -0
- data/lib/random-words/words/hipster/config.yml +4 -0
- data/lib/random-words/words/hipster/conjunctions-coordinating.txt +20 -0
- data/lib/random-words/words/hipster/conjunctions-subordinate.txt +29 -0
- data/lib/random-words/words/hipster/names.txt +74 -0
- data/lib/random-words/words/hipster/nouns-plural.txt +96 -0
- data/lib/random-words/words/hipster/nouns-singular.txt +100 -0
- data/lib/random-words/words/hipster/numbers.yml +5 -0
- data/lib/random-words/words/hipster/prepositions.txt +45 -0
- data/lib/random-words/words/hipster/terminators.txt +16 -0
- data/lib/random-words/words/hipster/verbs-passive.txt +88 -0
- data/lib/random-words/words/hipster/verbs-plural.txt +106 -0
- data/lib/random-words/words/hipster/verbs-singular.txt +114 -0
- data/lib/random-words/words/latin/config.yml +4 -0
- data/lib/random-words/words/latin/conjunctions-coordinating.txt +15 -0
- data/lib/random-words/words/latin/names.txt +74 -0
- data/lib/random-words/words/latin/numbers.yml +5 -0
- data/lib/random-words/words/latin/prepositions.txt +18 -0
- data/lib/random-words/words/latin/terminators.txt +16 -0
- data/lib/random-words/words/spanish/adjectives.txt +81 -0
- data/lib/random-words/words/spanish/adverbs.txt +87 -0
- data/lib/random-words/words/spanish/articles-plural.txt +4 -0
- data/lib/random-words/words/spanish/articles-singular.txt +4 -0
- data/lib/random-words/words/spanish/clauses.txt +74 -0
- data/lib/random-words/words/spanish/config.yml +4 -0
- data/lib/random-words/words/spanish/conjunctions-coordinating.txt +8 -0
- data/lib/random-words/words/spanish/conjunctions-subordinate.txt +16 -0
- data/lib/random-words/words/spanish/names.txt +74 -0
- data/lib/random-words/words/spanish/nouns-plural.txt +92 -0
- data/lib/random-words/words/spanish/nouns-singular.txt +125 -0
- data/lib/random-words/words/spanish/numbers.yml +5 -0
- data/lib/random-words/words/spanish/prepositions.txt +31 -0
- data/lib/random-words/words/spanish/terminators.txt +17 -0
- data/lib/random-words/words/spanish/verbs-passive.txt +495 -0
- data/lib/random-words/words/spanish/verbs-plural.txt +326 -0
- data/lib/random-words/words/spanish/verbs-singular.txt +351 -0
- data/lib/random-words/words/veggie/adjectives.txt +111 -0
- data/lib/random-words/words/veggie/adverbs.txt +81 -0
- data/lib/random-words/words/veggie/articles-plural.txt +10 -0
- data/lib/random-words/words/veggie/articles-singular.txt +10 -0
- data/lib/random-words/words/veggie/clauses.txt +57 -0
- data/lib/random-words/words/veggie/config.yml +4 -0
- data/lib/random-words/words/veggie/conjunctions-coordinating.txt +20 -0
- data/lib/random-words/words/veggie/conjunctions-subordinate.txt +29 -0
- data/lib/random-words/words/veggie/names.txt +74 -0
- data/lib/random-words/words/veggie/nouns-plural.txt +78 -0
- data/lib/random-words/words/veggie/nouns-singular.txt +105 -0
- data/lib/random-words/words/veggie/numbers.yml +5 -0
- data/lib/random-words/words/veggie/prepositions.txt +45 -0
- data/lib/random-words/words/veggie/terminators.txt +16 -0
- data/lib/random-words/words/veggie/verbs-passive.txt +56 -0
- data/lib/random-words/words/veggie/verbs-plural.txt +79 -0
- data/lib/random-words/words/veggie/verbs-singular.txt +79 -0
- data/lib/random-words.rb +28 -0
- data/random-words.gemspec +2 -0
- data/src/_README.md +153 -4
- metadata +168 -7
- data/lib/random-words/words/bacon/numbers.txt +0 -21
- data/lib/random-words/words/corporate/numbers.txt +0 -21
- data/lib/random-words/words/english/numbers.txt +0 -21
- data/lib/random-words/words/latin/numbers.txt +0 -21
@@ -0,0 +1,99 @@
|
|
1
|
+
apple
|
2
|
+
ass
|
3
|
+
assface
|
4
|
+
asshole
|
5
|
+
assmuncher
|
6
|
+
banana
|
7
|
+
bastard
|
8
|
+
beach
|
9
|
+
bitch
|
10
|
+
blood
|
11
|
+
bottle
|
12
|
+
bullshit
|
13
|
+
butt
|
14
|
+
buttface
|
15
|
+
buttmunch
|
16
|
+
cat
|
17
|
+
child
|
18
|
+
cock
|
19
|
+
cockgobbler
|
20
|
+
cunt
|
21
|
+
damn
|
22
|
+
dick
|
23
|
+
dick-for-brains
|
24
|
+
dickface
|
25
|
+
dickhead
|
26
|
+
dickpic
|
27
|
+
dog
|
28
|
+
doll
|
29
|
+
dumbass
|
30
|
+
egg
|
31
|
+
elephant
|
32
|
+
fart
|
33
|
+
fool
|
34
|
+
friend
|
35
|
+
fuck
|
36
|
+
fuckface
|
37
|
+
fucknuts
|
38
|
+
fuckstick
|
39
|
+
fuckwit
|
40
|
+
garbage
|
41
|
+
girl
|
42
|
+
glove
|
43
|
+
guy
|
44
|
+
head
|
45
|
+
hell
|
46
|
+
horse
|
47
|
+
house
|
48
|
+
idiot
|
49
|
+
ink
|
50
|
+
jackass
|
51
|
+
jam
|
52
|
+
job
|
53
|
+
kid
|
54
|
+
knob
|
55
|
+
knobgobbler
|
56
|
+
lady
|
57
|
+
lamp
|
58
|
+
man
|
59
|
+
meat
|
60
|
+
mouth
|
61
|
+
mug
|
62
|
+
nail
|
63
|
+
name
|
64
|
+
nonsense
|
65
|
+
nude
|
66
|
+
nut
|
67
|
+
pencil
|
68
|
+
penis
|
69
|
+
piss
|
70
|
+
potato
|
71
|
+
prick
|
72
|
+
pussy
|
73
|
+
rat
|
74
|
+
reality
|
75
|
+
rug
|
76
|
+
sack
|
77
|
+
sandwich
|
78
|
+
shit
|
79
|
+
shit for brains
|
80
|
+
shitface
|
81
|
+
shithead
|
82
|
+
shitstick
|
83
|
+
sissy
|
84
|
+
snot
|
85
|
+
socks
|
86
|
+
son
|
87
|
+
spit
|
88
|
+
sucker
|
89
|
+
test
|
90
|
+
thing
|
91
|
+
thug
|
92
|
+
turd
|
93
|
+
twat
|
94
|
+
water
|
95
|
+
wench
|
96
|
+
weirdo
|
97
|
+
whore
|
98
|
+
window
|
99
|
+
wrench
|
@@ -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,35 @@
|
|
1
|
+
about
|
2
|
+
against
|
3
|
+
among
|
4
|
+
around
|
5
|
+
at
|
6
|
+
before
|
7
|
+
behind
|
8
|
+
below
|
9
|
+
beneath
|
10
|
+
between
|
11
|
+
by
|
12
|
+
deep inside
|
13
|
+
for
|
14
|
+
from
|
15
|
+
in
|
16
|
+
in and out of
|
17
|
+
inside
|
18
|
+
into
|
19
|
+
like
|
20
|
+
near
|
21
|
+
of
|
22
|
+
off
|
23
|
+
on
|
24
|
+
onto
|
25
|
+
out
|
26
|
+
over
|
27
|
+
through
|
28
|
+
to
|
29
|
+
toward
|
30
|
+
under
|
31
|
+
until
|
32
|
+
up
|
33
|
+
upon
|
34
|
+
with
|
35
|
+
without
|
@@ -0,0 +1,143 @@
|
|
1
|
+
took a shit on
|
2
|
+
was abandoned by
|
3
|
+
was accompanied by
|
4
|
+
was accused of fucking
|
5
|
+
was admired for being a bastard
|
6
|
+
was annoyed by
|
7
|
+
was assaulted by
|
8
|
+
was attacked by
|
9
|
+
was badgered by
|
10
|
+
was bailed out by
|
11
|
+
was banned by
|
12
|
+
was barked at
|
13
|
+
was bashed by
|
14
|
+
was bastardized by
|
15
|
+
was beaten by
|
16
|
+
was betrayed by
|
17
|
+
was bitchslapped by
|
18
|
+
was blackmailed by
|
19
|
+
was blamed for being an idiot
|
20
|
+
was blasted by
|
21
|
+
was bullied by
|
22
|
+
was cheated by
|
23
|
+
was choked by
|
24
|
+
was clobbered by
|
25
|
+
was confused by
|
26
|
+
was cursed by
|
27
|
+
was damaged by
|
28
|
+
was damned for being a fool
|
29
|
+
was defeated by
|
30
|
+
was defiled by
|
31
|
+
was denied by
|
32
|
+
was despised by
|
33
|
+
was destroyed by
|
34
|
+
was dicked around by
|
35
|
+
was discarded by
|
36
|
+
was disrespected by
|
37
|
+
was dissed by
|
38
|
+
was dumped by
|
39
|
+
was embarrassed by
|
40
|
+
was exploited by
|
41
|
+
was exposed by
|
42
|
+
was failed by
|
43
|
+
was faked by
|
44
|
+
was farted on by
|
45
|
+
was fooled by
|
46
|
+
was forgotten by
|
47
|
+
was fought by
|
48
|
+
was freaked out by
|
49
|
+
was fucked by
|
50
|
+
was fucked in the
|
51
|
+
was fucked over by
|
52
|
+
was ganged up on
|
53
|
+
was gawked at
|
54
|
+
was gossiped about
|
55
|
+
was groped by
|
56
|
+
was harassed by
|
57
|
+
was harmed by
|
58
|
+
was hated by
|
59
|
+
was hazed by
|
60
|
+
was hit on by
|
61
|
+
was ignored by
|
62
|
+
was insulted by
|
63
|
+
was intimidated by
|
64
|
+
was invaded by
|
65
|
+
was jeered at
|
66
|
+
was judged by
|
67
|
+
was kicked by
|
68
|
+
was knocked by
|
69
|
+
was laughed at
|
70
|
+
was laughed at by
|
71
|
+
was let down by
|
72
|
+
was lied to by
|
73
|
+
was looted by
|
74
|
+
was mistreated by
|
75
|
+
was mocked by
|
76
|
+
was molested by
|
77
|
+
was murdered by
|
78
|
+
was nagged by
|
79
|
+
was neglected by
|
80
|
+
was offended by
|
81
|
+
was outraged by
|
82
|
+
was overcharged by
|
83
|
+
was overreacted to by
|
84
|
+
was paid off by
|
85
|
+
was picked on by
|
86
|
+
was pissed on by
|
87
|
+
was pressured by
|
88
|
+
was punished by
|
89
|
+
was pushed around by
|
90
|
+
was raged at by
|
91
|
+
was raped by
|
92
|
+
was ridiculed by
|
93
|
+
was ripped off by
|
94
|
+
was robbed by
|
95
|
+
was ruined by
|
96
|
+
was scammed by
|
97
|
+
was screwed over by
|
98
|
+
was shamed by
|
99
|
+
was shat on by
|
100
|
+
was shit on by
|
101
|
+
was shot by
|
102
|
+
was shouted at
|
103
|
+
was silenced by
|
104
|
+
was slapped by
|
105
|
+
was smeared by
|
106
|
+
was smothered by
|
107
|
+
was sneered at by
|
108
|
+
was snubbed by
|
109
|
+
was sold out by
|
110
|
+
was spit on by
|
111
|
+
was stabbed in the back by
|
112
|
+
was stalked by
|
113
|
+
was stomped on by
|
114
|
+
was stripped of by
|
115
|
+
was stupidified by
|
116
|
+
was sucker punched by
|
117
|
+
was suffered by
|
118
|
+
was taken advantage of by
|
119
|
+
was taunted by
|
120
|
+
was teased by
|
121
|
+
was terrorized by
|
122
|
+
was threatened by
|
123
|
+
was trampled by
|
124
|
+
was tricked by
|
125
|
+
was trodden on by
|
126
|
+
was trolled by
|
127
|
+
was tumbled by
|
128
|
+
was turned against by
|
129
|
+
was undermined by
|
130
|
+
was used by
|
131
|
+
was vandalized by
|
132
|
+
was victimized by
|
133
|
+
was violated by
|
134
|
+
was walked all over by
|
135
|
+
was wasted by
|
136
|
+
was watched by
|
137
|
+
was whacked by
|
138
|
+
was whined at
|
139
|
+
was witnessed being a fool
|
140
|
+
was wounded up by
|
141
|
+
was yelled at by
|
142
|
+
was zoned out by
|
143
|
+
was turned gay by
|
@@ -0,0 +1,91 @@
|
|
1
|
+
assault
|
2
|
+
bark
|
3
|
+
bash
|
4
|
+
bitch
|
5
|
+
bleed
|
6
|
+
blow
|
7
|
+
break
|
8
|
+
brag
|
9
|
+
burn
|
10
|
+
butt
|
11
|
+
choke
|
12
|
+
clap
|
13
|
+
clash
|
14
|
+
complain
|
15
|
+
curse
|
16
|
+
dance
|
17
|
+
dare
|
18
|
+
deflower
|
19
|
+
dig
|
20
|
+
dive
|
21
|
+
donate
|
22
|
+
drink
|
23
|
+
drive
|
24
|
+
drop
|
25
|
+
eat
|
26
|
+
fart
|
27
|
+
fight
|
28
|
+
flee
|
29
|
+
freak
|
30
|
+
fuck
|
31
|
+
gloat
|
32
|
+
gossip
|
33
|
+
grab
|
34
|
+
grind
|
35
|
+
growl
|
36
|
+
hack
|
37
|
+
hang
|
38
|
+
hit
|
39
|
+
hiss
|
40
|
+
hurt
|
41
|
+
hype
|
42
|
+
joke
|
43
|
+
jostle
|
44
|
+
laugh
|
45
|
+
lick
|
46
|
+
lie
|
47
|
+
load
|
48
|
+
mock
|
49
|
+
moan
|
50
|
+
mumble
|
51
|
+
murder
|
52
|
+
nag
|
53
|
+
nudge
|
54
|
+
penetrate
|
55
|
+
pounce
|
56
|
+
pout
|
57
|
+
pray
|
58
|
+
protest
|
59
|
+
punch
|
60
|
+
quarrel
|
61
|
+
rage
|
62
|
+
rant
|
63
|
+
rebel
|
64
|
+
roar
|
65
|
+
rock
|
66
|
+
roll
|
67
|
+
rush
|
68
|
+
scream
|
69
|
+
sneeze
|
70
|
+
spank
|
71
|
+
spill
|
72
|
+
spit
|
73
|
+
stab
|
74
|
+
stomp
|
75
|
+
stop
|
76
|
+
suck
|
77
|
+
swear
|
78
|
+
tease
|
79
|
+
threaten
|
80
|
+
tremble
|
81
|
+
troll
|
82
|
+
tug
|
83
|
+
twist
|
84
|
+
vomit
|
85
|
+
walk
|
86
|
+
whine
|
87
|
+
whisper
|
88
|
+
wiggle
|
89
|
+
wink
|
90
|
+
yell
|
91
|
+
zoom
|
@@ -0,0 +1,104 @@
|
|
1
|
+
abuses
|
2
|
+
agrees
|
3
|
+
annoys
|
4
|
+
apologizes
|
5
|
+
asks
|
6
|
+
barks
|
7
|
+
bitches
|
8
|
+
blames
|
9
|
+
blows
|
10
|
+
boasts
|
11
|
+
brags
|
12
|
+
breaks
|
13
|
+
burns
|
14
|
+
calls
|
15
|
+
curses
|
16
|
+
damns
|
17
|
+
dances
|
18
|
+
defies
|
19
|
+
denies
|
20
|
+
desires
|
21
|
+
destroys
|
22
|
+
dislikes
|
23
|
+
disrespects
|
24
|
+
doubts
|
25
|
+
drives
|
26
|
+
dumps
|
27
|
+
eats
|
28
|
+
eats out
|
29
|
+
employs
|
30
|
+
enjoys
|
31
|
+
fights
|
32
|
+
follows
|
33
|
+
fucks
|
34
|
+
gambles
|
35
|
+
gathers
|
36
|
+
gives
|
37
|
+
grabs
|
38
|
+
grows
|
39
|
+
grumbles
|
40
|
+
hangs
|
41
|
+
hates
|
42
|
+
hits
|
43
|
+
hurts
|
44
|
+
ignores
|
45
|
+
impresses
|
46
|
+
insults
|
47
|
+
jokes
|
48
|
+
jumps
|
49
|
+
kicks
|
50
|
+
laughs
|
51
|
+
leaves
|
52
|
+
likes
|
53
|
+
loves
|
54
|
+
makes
|
55
|
+
mocks
|
56
|
+
mourns
|
57
|
+
needs
|
58
|
+
offends
|
59
|
+
opens
|
60
|
+
pauses
|
61
|
+
penetrates
|
62
|
+
plays
|
63
|
+
praises
|
64
|
+
protests
|
65
|
+
punches
|
66
|
+
questions
|
67
|
+
rages
|
68
|
+
reacts
|
69
|
+
refuses
|
70
|
+
regrets
|
71
|
+
repeats
|
72
|
+
reports
|
73
|
+
respects
|
74
|
+
retaliates
|
75
|
+
reveals
|
76
|
+
roars
|
77
|
+
runs
|
78
|
+
screams
|
79
|
+
sells
|
80
|
+
shits
|
81
|
+
shouts
|
82
|
+
slaps
|
83
|
+
sneers
|
84
|
+
speaks
|
85
|
+
spits
|
86
|
+
stands
|
87
|
+
stares
|
88
|
+
stomps
|
89
|
+
stumbles
|
90
|
+
talks
|
91
|
+
teases
|
92
|
+
thinks
|
93
|
+
threatens
|
94
|
+
touches
|
95
|
+
tricks
|
96
|
+
tries
|
97
|
+
trolls
|
98
|
+
tumbles
|
99
|
+
uses
|
100
|
+
vows
|
101
|
+
waits
|
102
|
+
wants
|
103
|
+
wonders
|
104
|
+
yells
|
@@ -0,0 +1,100 @@
|
|
1
|
+
alternative
|
2
|
+
artful
|
3
|
+
artsy
|
4
|
+
avant-garde
|
5
|
+
bohemian
|
6
|
+
boho
|
7
|
+
bold
|
8
|
+
candid
|
9
|
+
casual
|
10
|
+
charming
|
11
|
+
chic
|
12
|
+
clever
|
13
|
+
colorful
|
14
|
+
contemporary
|
15
|
+
cool
|
16
|
+
cool-headed
|
17
|
+
crafty
|
18
|
+
creative
|
19
|
+
culturally-aware
|
20
|
+
cultured
|
21
|
+
curated
|
22
|
+
daring
|
23
|
+
deconstructed
|
24
|
+
deliberate
|
25
|
+
design-oriented
|
26
|
+
deviant
|
27
|
+
discerning
|
28
|
+
distinct
|
29
|
+
distinctive
|
30
|
+
do-it-yourself
|
31
|
+
downtempo
|
32
|
+
dynamic
|
33
|
+
earthy
|
34
|
+
eclectic
|
35
|
+
edgy
|
36
|
+
elegant
|
37
|
+
enlightened
|
38
|
+
experimental
|
39
|
+
fanciful
|
40
|
+
far-out
|
41
|
+
fashionable
|
42
|
+
flexible
|
43
|
+
free-spirited
|
44
|
+
fresh
|
45
|
+
funny
|
46
|
+
geeky
|
47
|
+
genuine
|
48
|
+
gourmet
|
49
|
+
handcrafted
|
50
|
+
hip
|
51
|
+
hipster
|
52
|
+
independent
|
53
|
+
individualistic
|
54
|
+
innovative
|
55
|
+
inspired
|
56
|
+
intellectual
|
57
|
+
ironic
|
58
|
+
kooky
|
59
|
+
laid-back
|
60
|
+
local
|
61
|
+
minimalist
|
62
|
+
modern
|
63
|
+
natural
|
64
|
+
nerdy
|
65
|
+
nonconformist
|
66
|
+
nostalgic
|
67
|
+
offbeat
|
68
|
+
open-minded
|
69
|
+
organic
|
70
|
+
original
|
71
|
+
passionate
|
72
|
+
peaceful
|
73
|
+
personable
|
74
|
+
pioneering
|
75
|
+
playful
|
76
|
+
quirky
|
77
|
+
refined
|
78
|
+
relaxed
|
79
|
+
retro
|
80
|
+
revived
|
81
|
+
romantic
|
82
|
+
rustic
|
83
|
+
self-aware
|
84
|
+
sophisticated
|
85
|
+
spontaneous
|
86
|
+
stylish
|
87
|
+
sustainable
|
88
|
+
thoughtful
|
89
|
+
timeless
|
90
|
+
trendsetting
|
91
|
+
trendy
|
92
|
+
unconventional
|
93
|
+
unique
|
94
|
+
unplugged
|
95
|
+
upcycled
|
96
|
+
vibrant
|
97
|
+
vintage
|
98
|
+
visionary
|
99
|
+
whimsical
|
100
|
+
witty
|
@@ -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
|