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.
- checksums.yaml +4 -4
- data/.rspec_status +166 -39
- data/.rubocop.yml +4 -0
- data/.rubocop_todo.yml +313 -0
- data/CHANGELOG.md +67 -0
- data/Gemfile +15 -12
- data/Gemfile.lock +46 -26
- data/README.md +208 -15
- data/bin/randw +258 -92
- data/lib/random-words/array.rb +71 -0
- data/lib/random-words/config.rb +254 -0
- data/lib/random-words/generator.rb +257 -94
- data/lib/random-words/hash.rb +16 -0
- data/lib/random-words/html2markdown.rb +205 -0
- data/lib/random-words/lorem-markdown.rb +397 -0
- data/lib/random-words/number-to-word.rb +139 -0
- data/lib/random-words/source.rb +106 -0
- data/lib/random-words/string.rb +224 -45
- 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 +12 -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/phrases.txt +16 -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 +10 -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/phrases.txt +16 -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 +54 -0
- data/lib/random-words/words/bacon/numbers.yml +5 -0
- data/lib/random-words/words/bacon/phrases.txt +20 -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/phrases.txt +29 -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/phrases.txt +29 -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/phrases.txt +29 -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 +12 -0
- data/lib/random-words/words/foulmouth/articles-singular.txt +11 -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 +81 -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/phrases.txt +30 -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 +73 -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/phrases.txt +21 -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 +93 -0
- data/lib/random-words/words/latin/numbers.yml +5 -0
- data/lib/random-words/words/latin/phrases.txt +16 -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 +61 -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/phrases.txt +31 -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 +93 -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/phrases.txt +20 -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 +208 -15
- metadata +181 -9
- 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,111 @@
|
|
1
|
+
fresh
|
2
|
+
organic
|
3
|
+
local
|
4
|
+
seasonal
|
5
|
+
crisp
|
6
|
+
tender
|
7
|
+
ripe
|
8
|
+
colorful
|
9
|
+
nutritious
|
10
|
+
healthy
|
11
|
+
sustainable
|
12
|
+
vibrant
|
13
|
+
raw
|
14
|
+
cooked
|
15
|
+
steamed
|
16
|
+
boiled
|
17
|
+
grilled
|
18
|
+
roasted
|
19
|
+
sautéed
|
20
|
+
pickled
|
21
|
+
frozen
|
22
|
+
dried
|
23
|
+
chopped
|
24
|
+
sliced
|
25
|
+
diced
|
26
|
+
shredded
|
27
|
+
pureed
|
28
|
+
seasoned
|
29
|
+
flavored
|
30
|
+
savory
|
31
|
+
sweet
|
32
|
+
bitter
|
33
|
+
spicy
|
34
|
+
earthy
|
35
|
+
herbaceous
|
36
|
+
juicy
|
37
|
+
crunchy
|
38
|
+
wholesome
|
39
|
+
delicious
|
40
|
+
tasty
|
41
|
+
flavorful
|
42
|
+
aromatic
|
43
|
+
fragrant
|
44
|
+
zesty
|
45
|
+
light
|
46
|
+
filling
|
47
|
+
hearty
|
48
|
+
simple
|
49
|
+
quick
|
50
|
+
easy
|
51
|
+
exotic
|
52
|
+
traditional
|
53
|
+
gourmet
|
54
|
+
elegant
|
55
|
+
modern
|
56
|
+
creative
|
57
|
+
colorful
|
58
|
+
appealing
|
59
|
+
palatable
|
60
|
+
balanced
|
61
|
+
filling
|
62
|
+
satisfying
|
63
|
+
versatile
|
64
|
+
adaptable
|
65
|
+
affordable
|
66
|
+
budget-friendly
|
67
|
+
convenient
|
68
|
+
accessible
|
69
|
+
reliable
|
70
|
+
trustworthy
|
71
|
+
premium
|
72
|
+
high-quality
|
73
|
+
artisanal
|
74
|
+
hand-picked
|
75
|
+
well-seasoned
|
76
|
+
well-cooked
|
77
|
+
lightly-cooked
|
78
|
+
crispy
|
79
|
+
tender-crisp
|
80
|
+
al dente
|
81
|
+
beautiful
|
82
|
+
appealing
|
83
|
+
inviting
|
84
|
+
traditional
|
85
|
+
homemade
|
86
|
+
labor-intensive
|
87
|
+
low-calorie
|
88
|
+
high-fiber
|
89
|
+
antioxidant-rich
|
90
|
+
vitamin-packed
|
91
|
+
minimally-processed
|
92
|
+
plant-based
|
93
|
+
whole
|
94
|
+
natural
|
95
|
+
unprocessed
|
96
|
+
farm-fresh
|
97
|
+
garden-fresh
|
98
|
+
sourced
|
99
|
+
harvested
|
100
|
+
prepared
|
101
|
+
ready-to-eat
|
102
|
+
easy-to-cook
|
103
|
+
ethnic
|
104
|
+
regional
|
105
|
+
diverse
|
106
|
+
varied
|
107
|
+
colorful
|
108
|
+
bountiful
|
109
|
+
lush
|
110
|
+
succulent
|
111
|
+
tasty
|
@@ -0,0 +1,81 @@
|
|
1
|
+
freshly
|
2
|
+
locally
|
3
|
+
seasonally
|
4
|
+
organically
|
5
|
+
carefully
|
6
|
+
quickly
|
7
|
+
easily
|
8
|
+
efficiently
|
9
|
+
thoughtfully
|
10
|
+
skillfully
|
11
|
+
deliciously
|
12
|
+
nutritiously
|
13
|
+
healthily
|
14
|
+
vigorously
|
15
|
+
lightly
|
16
|
+
gently
|
17
|
+
crispily
|
18
|
+
tenderly
|
19
|
+
beautifully
|
20
|
+
generously
|
21
|
+
frequently
|
22
|
+
regularly
|
23
|
+
occasionally
|
24
|
+
happily
|
25
|
+
creatively
|
26
|
+
simply
|
27
|
+
eagerly
|
28
|
+
enthusiastically
|
29
|
+
strategically
|
30
|
+
affordably
|
31
|
+
conveniently
|
32
|
+
readily
|
33
|
+
reliably
|
34
|
+
effectively
|
35
|
+
naturally
|
36
|
+
rawly
|
37
|
+
lightly
|
38
|
+
quickly
|
39
|
+
promptly
|
40
|
+
safely
|
41
|
+
hygienically
|
42
|
+
thoroughly
|
43
|
+
adequately
|
44
|
+
beautifully
|
45
|
+
visually
|
46
|
+
invitingly
|
47
|
+
appetizingly
|
48
|
+
satisfactorily
|
49
|
+
sustainably
|
50
|
+
responsibly
|
51
|
+
ethically
|
52
|
+
proudly
|
53
|
+
expertly
|
54
|
+
lovingly
|
55
|
+
thoughtfully
|
56
|
+
scrupulously
|
57
|
+
meticulously
|
58
|
+
innovatively
|
59
|
+
carefully
|
60
|
+
intentionally
|
61
|
+
freely
|
62
|
+
bountifully
|
63
|
+
lavishly
|
64
|
+
richly
|
65
|
+
vibrantly
|
66
|
+
colorfully
|
67
|
+
aromatically
|
68
|
+
gently
|
69
|
+
enthusiastically
|
70
|
+
warmly
|
71
|
+
comfortably
|
72
|
+
energetically
|
73
|
+
smoothly
|
74
|
+
pleasantly
|
75
|
+
savorily
|
76
|
+
succulently
|
77
|
+
tenderly
|
78
|
+
richly
|
79
|
+
robustly
|
80
|
+
satisfyingly
|
81
|
+
gusto
|
@@ -0,0 +1,57 @@
|
|
1
|
+
when I buy fresh vegetables
|
2
|
+
after I wash the greens
|
3
|
+
before I chop the carrots
|
4
|
+
while cooking the stir-fry
|
5
|
+
as I prepare the salad
|
6
|
+
if the vegetables are in season
|
7
|
+
because I prefer organic produce
|
8
|
+
that I picked from the farmers' market
|
9
|
+
so that I can eat healthier
|
10
|
+
once I have everything ready
|
11
|
+
although they are a bit pricey
|
12
|
+
since they taste better raw
|
13
|
+
whether I sauté or steam them
|
14
|
+
while they are still crisp
|
15
|
+
as soon as I get home
|
16
|
+
once I finish my grocery shopping
|
17
|
+
although they require some prep time
|
18
|
+
if I can find them locally
|
19
|
+
when I want to try a new recipe
|
20
|
+
because they are packed with nutrients
|
21
|
+
after I season them properly
|
22
|
+
as I blend the vegetable soup
|
23
|
+
while I wait for the water to boil
|
24
|
+
when I add spices to the mix
|
25
|
+
if they are stored properly
|
26
|
+
before serving them to guests
|
27
|
+
since they can enhance the flavor
|
28
|
+
as I experiment with different cooking methods
|
29
|
+
when I finish chopping the herbs
|
30
|
+
if I need to feed a large group
|
31
|
+
because I like to eat a variety of veggies
|
32
|
+
as soon as I find the freshest ingredients
|
33
|
+
after I check for quality and freshness
|
34
|
+
when I plan my weekly meals
|
35
|
+
while I enjoy the cooking process
|
36
|
+
if I can find a good recipe
|
37
|
+
that I can share with friends
|
38
|
+
when I want to incorporate more greens
|
39
|
+
because they add color to the plate
|
40
|
+
as I prepare a hearty vegetable dish
|
41
|
+
when I want to create a balanced meal
|
42
|
+
after I gather all the necessary ingredients
|
43
|
+
if the recipe calls for seasonal vegetables
|
44
|
+
before I serve the dish
|
45
|
+
while I'm experimenting with flavors
|
46
|
+
when I pick up my favorite vegetables
|
47
|
+
because they are versatile and easy to cook
|
48
|
+
if I want to make a healthy snack
|
49
|
+
after I finish cooking
|
50
|
+
as I explore new cuisines
|
51
|
+
when I want to eat more plant-based meals
|
52
|
+
before I go grocery shopping
|
53
|
+
while I'm trying to eat more healthily
|
54
|
+
if I have time to cook from scratch
|
55
|
+
although I sometimes prefer frozen options
|
56
|
+
once I gather my ingredients
|
57
|
+
that I can enjoy with my family
|
@@ -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,93 @@
|
|
1
|
+
Asparagus
|
2
|
+
Beet
|
3
|
+
Carrot
|
4
|
+
Celery
|
5
|
+
Cucumber
|
6
|
+
Dill
|
7
|
+
Eggplant
|
8
|
+
Garlic
|
9
|
+
Kale
|
10
|
+
Leek
|
11
|
+
Lettuce
|
12
|
+
Mushroom
|
13
|
+
Onion
|
14
|
+
Parsnip
|
15
|
+
Pepper
|
16
|
+
Radish
|
17
|
+
Rutabaga
|
18
|
+
Spinach
|
19
|
+
Squash
|
20
|
+
Tomato
|
21
|
+
Turnip
|
22
|
+
Zucchini
|
23
|
+
Broccoli
|
24
|
+
Cauliflower
|
25
|
+
Chard
|
26
|
+
Pumpkin
|
27
|
+
Artichoke
|
28
|
+
Sweet Pea
|
29
|
+
Cornelia
|
30
|
+
Bean
|
31
|
+
|
32
|
+
Asparagusbottom
|
33
|
+
Beetrooty
|
34
|
+
Broccolihump
|
35
|
+
Carrotmunch
|
36
|
+
Celerystick
|
37
|
+
Cucumberpants
|
38
|
+
Eggplantwhisper
|
39
|
+
Garlicbreath
|
40
|
+
Kaleidoscope
|
41
|
+
Lettucehead
|
42
|
+
Mushroomfizz
|
43
|
+
Onionring
|
44
|
+
Peppersprout
|
45
|
+
Potatoface
|
46
|
+
Radishwiggle
|
47
|
+
Spinachsnicker
|
48
|
+
Squashbuckler
|
49
|
+
Tomatoface
|
50
|
+
Turniptwist
|
51
|
+
Zucchinibounce
|
52
|
+
Artichoked
|
53
|
+
Brusselsbouncer
|
54
|
+
Chickpeaquirk
|
55
|
+
Parsnipshenanigans
|
56
|
+
Peapodjester
|
57
|
+
Pumpkinpuff
|
58
|
+
RutabagaRascal
|
59
|
+
Saladspinner
|
60
|
+
Sweetpotatofizz
|
61
|
+
Taterwhirl
|
62
|
+
Yammyjoke
|
63
|
+
|
64
|
+
Artie Choke
|
65
|
+
Becky Beetroot
|
66
|
+
Carly Carrot
|
67
|
+
Danny Daikon
|
68
|
+
Eddie Eggplant
|
69
|
+
Fiona Fennel
|
70
|
+
Gus Garlic
|
71
|
+
Holly Hummus
|
72
|
+
Ivy Iceberg
|
73
|
+
Jasper Jalapeño
|
74
|
+
Kathy Kale
|
75
|
+
Lettuce McLeafy
|
76
|
+
Marty McMushroom
|
77
|
+
Nina Noodle
|
78
|
+
Olive McOnion
|
79
|
+
Peppy Pepper
|
80
|
+
Quinn Quinoa
|
81
|
+
Randy Radish
|
82
|
+
Sally Spinach
|
83
|
+
Tommy Tomato
|
84
|
+
Ursula Ube
|
85
|
+
Vera Veggie
|
86
|
+
Wendy Watercress
|
87
|
+
Xena Zucchini
|
88
|
+
Yasmine Yam
|
89
|
+
Zachary Zest
|
90
|
+
Benny Broccoli
|
91
|
+
Cindy Cabbage
|
92
|
+
Lenny Leek
|
93
|
+
Maddie Mushroom
|
@@ -0,0 +1,78 @@
|
|
1
|
+
artichokes
|
2
|
+
asparaguses
|
3
|
+
assortments
|
4
|
+
baskets
|
5
|
+
beans
|
6
|
+
bites
|
7
|
+
broccolis
|
8
|
+
bunches
|
9
|
+
bundles
|
10
|
+
cabbages
|
11
|
+
carrots
|
12
|
+
cartons
|
13
|
+
cauliflowers
|
14
|
+
celeries
|
15
|
+
chilis
|
16
|
+
choices
|
17
|
+
chunks
|
18
|
+
combinations
|
19
|
+
containers
|
20
|
+
corns
|
21
|
+
courses
|
22
|
+
crops
|
23
|
+
cucumbers
|
24
|
+
cuisines
|
25
|
+
diets
|
26
|
+
dishes
|
27
|
+
eggplants
|
28
|
+
elements
|
29
|
+
flavors
|
30
|
+
fruits
|
31
|
+
garlics
|
32
|
+
garnishes
|
33
|
+
greens
|
34
|
+
helpings
|
35
|
+
herbicides
|
36
|
+
herbs
|
37
|
+
ingredients
|
38
|
+
kales
|
39
|
+
leeks
|
40
|
+
legumes
|
41
|
+
meals
|
42
|
+
microgreens
|
43
|
+
minerals
|
44
|
+
mushrooms
|
45
|
+
nutrients
|
46
|
+
offerings
|
47
|
+
onions
|
48
|
+
packages
|
49
|
+
parsnips
|
50
|
+
peas
|
51
|
+
peppers
|
52
|
+
pesticides
|
53
|
+
pieces
|
54
|
+
preparations
|
55
|
+
produce
|
56
|
+
radishes
|
57
|
+
recipes
|
58
|
+
roots
|
59
|
+
salads
|
60
|
+
sauces
|
61
|
+
scoops
|
62
|
+
selections
|
63
|
+
servings
|
64
|
+
shallots
|
65
|
+
slices
|
66
|
+
snacks
|
67
|
+
spinaches
|
68
|
+
sprouts
|
69
|
+
squashes
|
70
|
+
sweet potatoes
|
71
|
+
tastes
|
72
|
+
tomatoes
|
73
|
+
tubers
|
74
|
+
turnips
|
75
|
+
varieties
|
76
|
+
vegetables
|
77
|
+
vitamins
|
78
|
+
zucchinis
|
@@ -0,0 +1,105 @@
|
|
1
|
+
artichoke
|
2
|
+
arugula
|
3
|
+
asparagus
|
4
|
+
basket
|
5
|
+
bean
|
6
|
+
beet
|
7
|
+
bell pepper
|
8
|
+
bite
|
9
|
+
bitter melon
|
10
|
+
bok choy
|
11
|
+
broccoli
|
12
|
+
brussels sprout
|
13
|
+
bunch
|
14
|
+
bundle
|
15
|
+
cabbage
|
16
|
+
cabbage turnip
|
17
|
+
carrot
|
18
|
+
carton
|
19
|
+
cauliflower
|
20
|
+
celery
|
21
|
+
chard
|
22
|
+
chayote
|
23
|
+
chile
|
24
|
+
chili
|
25
|
+
choice
|
26
|
+
chunk
|
27
|
+
collard green
|
28
|
+
combination
|
29
|
+
container
|
30
|
+
corn
|
31
|
+
course
|
32
|
+
crop
|
33
|
+
cucumber
|
34
|
+
cuisine
|
35
|
+
daikon
|
36
|
+
dandelion green
|
37
|
+
diet
|
38
|
+
dish
|
39
|
+
eggplant
|
40
|
+
element
|
41
|
+
endive
|
42
|
+
fennel
|
43
|
+
flavor
|
44
|
+
fruit
|
45
|
+
garlic
|
46
|
+
garnish
|
47
|
+
ginger
|
48
|
+
green
|
49
|
+
green bean
|
50
|
+
helping
|
51
|
+
herb
|
52
|
+
herbicide
|
53
|
+
ingredient
|
54
|
+
jicama
|
55
|
+
kale
|
56
|
+
kohlrabi
|
57
|
+
leek
|
58
|
+
legume
|
59
|
+
meal
|
60
|
+
microgreen
|
61
|
+
mineral
|
62
|
+
mushroom
|
63
|
+
mustard green
|
64
|
+
nutrient
|
65
|
+
offering
|
66
|
+
onion
|
67
|
+
package
|
68
|
+
parsnip
|
69
|
+
pea
|
70
|
+
pea shoot
|
71
|
+
pepper
|
72
|
+
pesticide
|
73
|
+
piece
|
74
|
+
potato
|
75
|
+
preparation
|
76
|
+
pumpkin
|
77
|
+
radish
|
78
|
+
recipe
|
79
|
+
root
|
80
|
+
rutabaga
|
81
|
+
salad
|
82
|
+
sauce
|
83
|
+
savoy cabbage
|
84
|
+
scoop
|
85
|
+
seaweed
|
86
|
+
selection
|
87
|
+
serving
|
88
|
+
shallot
|
89
|
+
slice
|
90
|
+
snack
|
91
|
+
snow pea
|
92
|
+
spinach
|
93
|
+
sprout
|
94
|
+
squash
|
95
|
+
sugar snap pea
|
96
|
+
sweet potato
|
97
|
+
taste
|
98
|
+
tomato
|
99
|
+
tuber
|
100
|
+
turnip
|
101
|
+
variety
|
102
|
+
vegetable
|
103
|
+
vitamin
|
104
|
+
watercress
|
105
|
+
zucchini
|
@@ -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,20 @@
|
|
1
|
+
I love trying new plant-based recipes
|
2
|
+
have you tried that vegan burger?
|
3
|
+
it's all about the fresh vegetables
|
4
|
+
I can't believe how good this tofu tastes
|
5
|
+
let's go to that vegetarian restaurant
|
6
|
+
I prefer my meals without meat
|
7
|
+
eating more greens is so important
|
8
|
+
this salad is packed with nutrients
|
9
|
+
I'm all about sustainable eating
|
10
|
+
have you heard about the benefits of a meatless diet?
|
11
|
+
I feel so much better since going vegetarian
|
12
|
+
it's great to support local farmers
|
13
|
+
this smoothie is delicious and healthy
|
14
|
+
I love experimenting with spices and herbs
|
15
|
+
it's amazing how versatile vegetables can be
|
16
|
+
I'm always looking for new veggie snacks
|
17
|
+
I enjoy cooking with seasonal ingredients
|
18
|
+
this dish is so flavorful without any meat
|
19
|
+
I think everyone should try a meat-free day
|
20
|
+
it's not just a diet; it's a lifestyle choice
|
@@ -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
|