random-words 1.0.4 → 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 +3 -1
- 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,74 @@
|
|
1
|
+
John
|
2
|
+
Jane
|
3
|
+
Mary
|
4
|
+
Michael
|
5
|
+
Sarah
|
6
|
+
David
|
7
|
+
Emily
|
8
|
+
James
|
9
|
+
Jessica
|
10
|
+
Robert
|
11
|
+
Linda
|
12
|
+
William
|
13
|
+
Patricia
|
14
|
+
Brett
|
15
|
+
Ashley
|
16
|
+
Matthew
|
17
|
+
Jennifer
|
18
|
+
Yasmin
|
19
|
+
|
20
|
+
Smith
|
21
|
+
Johnson
|
22
|
+
Williams
|
23
|
+
Brown
|
24
|
+
Jones
|
25
|
+
Garcia
|
26
|
+
Miller
|
27
|
+
Davis
|
28
|
+
Rodriguez
|
29
|
+
Martinez
|
30
|
+
Hernandez
|
31
|
+
Lopez
|
32
|
+
Gonzalez
|
33
|
+
Wilson
|
34
|
+
Anderson
|
35
|
+
Taylor
|
36
|
+
Thomas
|
37
|
+
Moore
|
38
|
+
Jackson
|
39
|
+
Martin
|
40
|
+
Lee
|
41
|
+
Perez
|
42
|
+
Thompson
|
43
|
+
White
|
44
|
+
Harris
|
45
|
+
Sanchez
|
46
|
+
Clark
|
47
|
+
Ramirez
|
48
|
+
Lewis
|
49
|
+
Robinson
|
50
|
+
Walker
|
51
|
+
Young
|
52
|
+
Allen
|
53
|
+
King
|
54
|
+
Wright
|
55
|
+
Scott
|
56
|
+
Torres
|
57
|
+
Nguyen
|
58
|
+
Hill
|
59
|
+
Flores
|
60
|
+
Green
|
61
|
+
Adams
|
62
|
+
Nelson
|
63
|
+
Baker
|
64
|
+
Hall
|
65
|
+
Rivera
|
66
|
+
Campbell
|
67
|
+
Mitchell
|
68
|
+
Carter
|
69
|
+
Roberts
|
70
|
+
Gomez
|
71
|
+
Phillips
|
72
|
+
Evans
|
73
|
+
Turner
|
74
|
+
Diaz
|
@@ -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,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,89 @@
|
|
1
|
+
abusive
|
2
|
+
amazing
|
3
|
+
arrogant
|
4
|
+
ass-faced
|
5
|
+
asshole
|
6
|
+
bitchy
|
7
|
+
bitter
|
8
|
+
blowhard
|
9
|
+
brash
|
10
|
+
butt ugly
|
11
|
+
butt-faced
|
12
|
+
cheap
|
13
|
+
clumsy
|
14
|
+
cocky
|
15
|
+
corrupt
|
16
|
+
crude
|
17
|
+
cynical
|
18
|
+
deceitful
|
19
|
+
dirty
|
20
|
+
disdainful
|
21
|
+
disgusting
|
22
|
+
douchey
|
23
|
+
dumb
|
24
|
+
dumb as fuck
|
25
|
+
egotistical
|
26
|
+
foul
|
27
|
+
frivolous
|
28
|
+
fucked
|
29
|
+
fucked up
|
30
|
+
fucking
|
31
|
+
glorious
|
32
|
+
greasy
|
33
|
+
greedy
|
34
|
+
gross
|
35
|
+
hardcore
|
36
|
+
hurtful
|
37
|
+
impolite
|
38
|
+
inconsiderate
|
39
|
+
indecent
|
40
|
+
inglorious
|
41
|
+
insensitive
|
42
|
+
irritating
|
43
|
+
jaded
|
44
|
+
lame
|
45
|
+
lazy
|
46
|
+
lewd
|
47
|
+
lousy
|
48
|
+
massive
|
49
|
+
mean
|
50
|
+
messy
|
51
|
+
naked
|
52
|
+
nasty
|
53
|
+
needy
|
54
|
+
nude
|
55
|
+
obnoxious
|
56
|
+
offensive
|
57
|
+
overbearing
|
58
|
+
overblown
|
59
|
+
perverted
|
60
|
+
petty
|
61
|
+
pompous
|
62
|
+
rude
|
63
|
+
salty
|
64
|
+
sassy
|
65
|
+
scummy
|
66
|
+
selfish
|
67
|
+
shitty
|
68
|
+
sleazy
|
69
|
+
sloppy
|
70
|
+
slutty
|
71
|
+
sneaky
|
72
|
+
sordid
|
73
|
+
stupid
|
74
|
+
tacky
|
75
|
+
tainted
|
76
|
+
tasteless
|
77
|
+
teasing
|
78
|
+
toxic
|
79
|
+
trashy
|
80
|
+
ugly
|
81
|
+
unbelievable
|
82
|
+
unfucking-believably
|
83
|
+
unpleasant
|
84
|
+
vulgar
|
85
|
+
wasteful
|
86
|
+
weird
|
87
|
+
wild
|
88
|
+
worthless
|
89
|
+
wretched
|
@@ -0,0 +1,97 @@
|
|
1
|
+
absolutely
|
2
|
+
angrily
|
3
|
+
badly
|
4
|
+
barely
|
5
|
+
beautifully
|
6
|
+
bitterly
|
7
|
+
boldly
|
8
|
+
brutally
|
9
|
+
carelessly
|
10
|
+
cheaply
|
11
|
+
clearly
|
12
|
+
clumsily
|
13
|
+
coldly
|
14
|
+
completely
|
15
|
+
confidently
|
16
|
+
crazily
|
17
|
+
cruelly
|
18
|
+
desperately
|
19
|
+
easily
|
20
|
+
endlessly
|
21
|
+
excessively
|
22
|
+
extremely
|
23
|
+
foolishly
|
24
|
+
freely
|
25
|
+
fucking
|
26
|
+
generously
|
27
|
+
gently
|
28
|
+
gloriously
|
29
|
+
gracefully
|
30
|
+
graciously
|
31
|
+
harshly
|
32
|
+
hastily
|
33
|
+
heavily
|
34
|
+
horribly
|
35
|
+
hostilely
|
36
|
+
humbly
|
37
|
+
improperly
|
38
|
+
incredibly
|
39
|
+
insultingly
|
40
|
+
intensely
|
41
|
+
irritably
|
42
|
+
judgmentally
|
43
|
+
justifiably
|
44
|
+
lazily
|
45
|
+
loudly
|
46
|
+
madly
|
47
|
+
magnanimously
|
48
|
+
meanly
|
49
|
+
mercifully
|
50
|
+
unmercifully
|
51
|
+
messily
|
52
|
+
miserably
|
53
|
+
morally
|
54
|
+
nakedly
|
55
|
+
naughtily
|
56
|
+
nearly
|
57
|
+
obviously
|
58
|
+
offensively
|
59
|
+
openly
|
60
|
+
painfully
|
61
|
+
passionately
|
62
|
+
perfectly
|
63
|
+
poorly
|
64
|
+
positively
|
65
|
+
powerfully
|
66
|
+
proudly
|
67
|
+
quietly
|
68
|
+
randomly
|
69
|
+
recklessly
|
70
|
+
reluctantly
|
71
|
+
ruthlessly
|
72
|
+
sadly
|
73
|
+
selfishly
|
74
|
+
shamelessly
|
75
|
+
sharply
|
76
|
+
shittily
|
77
|
+
silently
|
78
|
+
sincerely
|
79
|
+
stupidly
|
80
|
+
suddenly
|
81
|
+
superficially
|
82
|
+
surprisingly
|
83
|
+
tactlessly
|
84
|
+
tediously
|
85
|
+
terribly
|
86
|
+
thoughtlessly
|
87
|
+
tirelessly
|
88
|
+
unapologetically
|
89
|
+
unbelievably
|
90
|
+
unexpectedly
|
91
|
+
unfortunately
|
92
|
+
unpleasantly
|
93
|
+
unreasonably
|
94
|
+
violently
|
95
|
+
weirdly
|
96
|
+
wildly
|
97
|
+
worse
|
@@ -0,0 +1,74 @@
|
|
1
|
+
i can't believe you did that you crazy bastard
|
2
|
+
don't be such a lazy ass and get moving
|
3
|
+
who the hell do you think you are
|
4
|
+
this is the funniest shit i've ever seen
|
5
|
+
you're as useless as a screen door on a submarine
|
6
|
+
what the hell is wrong with you
|
7
|
+
i swear to god this is ridiculous
|
8
|
+
you're driving me up the wall you idiot
|
9
|
+
that idea is as dumb as a bag of rocks
|
10
|
+
get your shit together before i lose it
|
11
|
+
i wouldn't trust you to babysit a goldfish
|
12
|
+
you're about as sharp as a marble
|
13
|
+
i can't even with you right now
|
14
|
+
that's the worst excuse i've ever heard
|
15
|
+
you're like a broken pencil pointless
|
16
|
+
you have the charm of a wet mop
|
17
|
+
stop being a drama queen for once
|
18
|
+
you're full of shit but i love it
|
19
|
+
this is a complete clusterfuck of a situation
|
20
|
+
you dance like nobody's watching and i wish they weren't
|
21
|
+
you're not the brightest crayon in the box
|
22
|
+
I'd explain it to you but I'm out of puppets
|
23
|
+
you're one sandwich short of a picnic
|
24
|
+
that's the dumbest thing i've ever heard you genius
|
25
|
+
I'm not arguing I'm just explaining why you're wrong
|
26
|
+
you're about as useful as a chocolate teapot
|
27
|
+
it's like talking to a brick wall with you
|
28
|
+
you're a few fries short of a happy meal
|
29
|
+
if brains were dynamite you wouldn't have enough to blow your nose
|
30
|
+
I'd call you a tool but that implies you're actually useful
|
31
|
+
you're the reason god created the middle finger
|
32
|
+
this is just a shit show waiting to happen
|
33
|
+
you're a legend in your own mind my friend
|
34
|
+
you couldn't pour water out of a boot if the instructions were on the heel
|
35
|
+
stop acting like a spoiled brat and grow up
|
36
|
+
this is a total trainwreck of a plan
|
37
|
+
you're as welcome as a skunk at a lawn party
|
38
|
+
I'm not saying you're stupid but you have bad luck with brains
|
39
|
+
you're about as bright as a black hole
|
40
|
+
that's a real slap in the face you know
|
41
|
+
you're like a cloud when you disappear it's a beautiful day
|
42
|
+
you're a real piece of work aren't you
|
43
|
+
if you were any more dense you'd be a black hole
|
44
|
+
this is a disaster wrapped in a catastrophe
|
45
|
+
you're like a software update nobody wants to deal with
|
46
|
+
your face would make a train take a dirt road
|
47
|
+
I'd agree with you but then we'd both be wrong
|
48
|
+
you're the king of bad decisions my dude
|
49
|
+
you've got the personality of a damp rag
|
50
|
+
you're a few cards short of a full deck
|
51
|
+
this is a perfect example of how not to do it
|
52
|
+
you're about as exciting as watching paint dry
|
53
|
+
I'd call you a clown but that's an insult to clowns
|
54
|
+
you're as popular as a skunk at a barbecue
|
55
|
+
you're the reason we can't have nice things
|
56
|
+
I'd say you're full of surprises but I'd be lying
|
57
|
+
you're a real gem just not the shiny kind
|
58
|
+
your sense of humor is like a black hole
|
59
|
+
you have the social skills of a rock
|
60
|
+
you're the poster child for why some animals eat their young
|
61
|
+
this is a complete shitshow and you know it
|
62
|
+
you're like a software bug that never gets fixed
|
63
|
+
if only common sense were a superpower
|
64
|
+
you're like a tornado full of bad ideas
|
65
|
+
you're a shining example of how not to live life
|
66
|
+
you have the charm of a brick
|
67
|
+
I'd love to see you try to dig your way out of this one
|
68
|
+
you're not the worst but you definitely make the list
|
69
|
+
you're a real piece of work aren't you
|
70
|
+
this is a circus and you're the main attraction
|
71
|
+
you've got the grace of a bull in a china shop
|
72
|
+
if ignorance is bliss you must be the happiest person alive
|
73
|
+
you're like a human version of a participation trophy
|
74
|
+
you're the reason the gene pool needs a lifeguard
|
@@ -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,74 @@
|
|
1
|
+
John
|
2
|
+
Jane
|
3
|
+
Mary
|
4
|
+
Michael
|
5
|
+
Sarah
|
6
|
+
David
|
7
|
+
Emily
|
8
|
+
James
|
9
|
+
Jessica
|
10
|
+
Robert
|
11
|
+
Linda
|
12
|
+
William
|
13
|
+
Patricia
|
14
|
+
Brett
|
15
|
+
Ashley
|
16
|
+
Matthew
|
17
|
+
Jennifer
|
18
|
+
Yasmin
|
19
|
+
|
20
|
+
Smith
|
21
|
+
Johnson
|
22
|
+
Williams
|
23
|
+
Brown
|
24
|
+
Jones
|
25
|
+
Garcia
|
26
|
+
Miller
|
27
|
+
Davis
|
28
|
+
Rodriguez
|
29
|
+
Martinez
|
30
|
+
Hernandez
|
31
|
+
Lopez
|
32
|
+
Gonzalez
|
33
|
+
Wilson
|
34
|
+
Anderson
|
35
|
+
Taylor
|
36
|
+
Thomas
|
37
|
+
Moore
|
38
|
+
Jackson
|
39
|
+
Martin
|
40
|
+
Lee
|
41
|
+
Perez
|
42
|
+
Thompson
|
43
|
+
White
|
44
|
+
Harris
|
45
|
+
Sanchez
|
46
|
+
Clark
|
47
|
+
Ramirez
|
48
|
+
Lewis
|
49
|
+
Robinson
|
50
|
+
Walker
|
51
|
+
Young
|
52
|
+
Allen
|
53
|
+
King
|
54
|
+
Wright
|
55
|
+
Scott
|
56
|
+
Torres
|
57
|
+
Nguyen
|
58
|
+
Hill
|
59
|
+
Flores
|
60
|
+
Green
|
61
|
+
Adams
|
62
|
+
Nelson
|
63
|
+
Baker
|
64
|
+
Hall
|
65
|
+
Rivera
|
66
|
+
Campbell
|
67
|
+
Mitchell
|
68
|
+
Carter
|
69
|
+
Roberts
|
70
|
+
Gomez
|
71
|
+
Phillips
|
72
|
+
Evans
|
73
|
+
Turner
|
74
|
+
Diaz
|
@@ -0,0 +1,96 @@
|
|
1
|
+
apples
|
2
|
+
asses
|
3
|
+
assfaces
|
4
|
+
assholes
|
5
|
+
assmunchers
|
6
|
+
bananas
|
7
|
+
bastards
|
8
|
+
beaches
|
9
|
+
bitches
|
10
|
+
bloods
|
11
|
+
bottles
|
12
|
+
bullshits
|
13
|
+
butts
|
14
|
+
buttfaces
|
15
|
+
buttmunchers
|
16
|
+
cats
|
17
|
+
children
|
18
|
+
cunts
|
19
|
+
damns
|
20
|
+
dicks
|
21
|
+
dick-for-brains
|
22
|
+
dickfaces
|
23
|
+
dickheads
|
24
|
+
dickpics
|
25
|
+
dogs
|
26
|
+
dolls
|
27
|
+
dumbasses
|
28
|
+
eggs
|
29
|
+
elephants
|
30
|
+
farts
|
31
|
+
fools
|
32
|
+
friends
|
33
|
+
fucks
|
34
|
+
fuckfaces
|
35
|
+
fucknuts
|
36
|
+
fucksticks
|
37
|
+
fuckwits
|
38
|
+
garbages
|
39
|
+
girls
|
40
|
+
gloves
|
41
|
+
guys
|
42
|
+
heads
|
43
|
+
hells
|
44
|
+
horses
|
45
|
+
houses
|
46
|
+
idiots
|
47
|
+
inks
|
48
|
+
jackasses
|
49
|
+
jams
|
50
|
+
jobs
|
51
|
+
kids
|
52
|
+
knobs
|
53
|
+
ladies
|
54
|
+
lamps
|
55
|
+
men
|
56
|
+
meats
|
57
|
+
mouths
|
58
|
+
mugs
|
59
|
+
nails
|
60
|
+
names
|
61
|
+
nonsenses
|
62
|
+
nudes
|
63
|
+
nuts
|
64
|
+
pencils
|
65
|
+
penises
|
66
|
+
pisses
|
67
|
+
potatoes
|
68
|
+
pricks
|
69
|
+
pussies
|
70
|
+
rats
|
71
|
+
realities
|
72
|
+
rugs
|
73
|
+
sacks
|
74
|
+
sandwiches
|
75
|
+
shits
|
76
|
+
shit for brains
|
77
|
+
shitfaces
|
78
|
+
shitheads
|
79
|
+
shitsticks
|
80
|
+
sissies
|
81
|
+
snot
|
82
|
+
socks
|
83
|
+
sons
|
84
|
+
spits
|
85
|
+
suckers
|
86
|
+
tests
|
87
|
+
things
|
88
|
+
thugs
|
89
|
+
turds
|
90
|
+
twats
|
91
|
+
waters
|
92
|
+
wenches
|
93
|
+
weirdos
|
94
|
+
whores
|
95
|
+
windows
|
96
|
+
wrenches
|