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,54 @@
|
|
1
|
+
Bacon
|
2
|
+
Hammy
|
3
|
+
Sizzles
|
4
|
+
Porky
|
5
|
+
Banger
|
6
|
+
Chops
|
7
|
+
Salami
|
8
|
+
Meatball
|
9
|
+
|
10
|
+
Baconbottom
|
11
|
+
Porkbelly
|
12
|
+
Hamfist
|
13
|
+
Sizzlesticks
|
14
|
+
Meatwhacker
|
15
|
+
Chopson
|
16
|
+
Wurstler
|
17
|
+
Grillmaster
|
18
|
+
Steakhouse
|
19
|
+
Sausageface
|
20
|
+
McSizzlefest
|
21
|
+
McBaconFace
|
22
|
+
|
23
|
+
Sir Loin
|
24
|
+
Winnie the Ham
|
25
|
+
Bacon McSizzle
|
26
|
+
Charlie Chorizo
|
27
|
+
Daisy McPorkbelly
|
28
|
+
Elijah Eggplant
|
29
|
+
Fiona Fryingpan
|
30
|
+
Gus McGrill
|
31
|
+
Hannah Hamhock
|
32
|
+
Iggy McBaconbits
|
33
|
+
Jasper Jerky
|
34
|
+
Kylie McMeatball
|
35
|
+
Lola Loin
|
36
|
+
Marty McRib
|
37
|
+
Nina Nacho
|
38
|
+
Olive McSausage
|
39
|
+
Penny Porkchop
|
40
|
+
Quincy Quiche
|
41
|
+
Randy Ribeye
|
42
|
+
Sally Sausage
|
43
|
+
Tina T-Bone
|
44
|
+
Ursula Umami
|
45
|
+
Vicky Veggiebacon
|
46
|
+
Wally Wurst
|
47
|
+
Xander X-tra Bacon
|
48
|
+
Yvonne Yummy
|
49
|
+
Zachary Zesty
|
50
|
+
Benny Brisket
|
51
|
+
Chad Cheeseburger
|
52
|
+
Lenny Lard
|
53
|
+
Maddie Meatloaf
|
54
|
+
Ricky Rumpsteak
|
@@ -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 can't resist a good steak
|
2
|
+
have you tried that smoky barbecue place?
|
3
|
+
nothing beats a juicy burger
|
4
|
+
I love a hearty meatloaf
|
5
|
+
let's grill some chicken this weekend
|
6
|
+
I prefer my meals with protein
|
7
|
+
this bacon is incredible
|
8
|
+
I'm all about that meat lovers pizza
|
9
|
+
I enjoy cooking with different cuts of meat
|
10
|
+
that roast is cooked to perfection
|
11
|
+
I think barbecue is the best cuisine
|
12
|
+
I need my daily dose of meat
|
13
|
+
this sausage adds so much flavor
|
14
|
+
I'm always looking for the best ribs in town
|
15
|
+
I love a classic cheeseburger
|
16
|
+
how about a meat-filled casserole?
|
17
|
+
I can't imagine a meal without meat
|
18
|
+
this dish is so satisfying with some meat
|
19
|
+
I think meat is a staple in any diet
|
20
|
+
I enjoy trying different types of meat
|
@@ -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,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,29 @@
|
|
1
|
+
a blessing in disguise
|
2
|
+
bite the bullet
|
3
|
+
break the ice
|
4
|
+
burning the midnight oil
|
5
|
+
caught between a rock and a hard place
|
6
|
+
cutting corners
|
7
|
+
every cloud has a silver lining
|
8
|
+
hit the nail on the head
|
9
|
+
in the heat of the moment
|
10
|
+
jumping on the bandwagon
|
11
|
+
keep your chin up
|
12
|
+
let the cat out of the bag
|
13
|
+
on cloud nine
|
14
|
+
out of the blue
|
15
|
+
piece of cake
|
16
|
+
pulling someone's leg
|
17
|
+
see eye to eye
|
18
|
+
sitting on the fence
|
19
|
+
spill the beans
|
20
|
+
the ball is in your court
|
21
|
+
the best of both worlds
|
22
|
+
the early bird catches the worm
|
23
|
+
through thick and thin
|
24
|
+
turn a blind eye
|
25
|
+
under the weather
|
26
|
+
walking on eggshells
|
27
|
+
when pigs fly
|
28
|
+
you can't judge a book by its cover
|
29
|
+
your guess is as good as mine
|
@@ -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,92 @@
|
|
1
|
+
accessible
|
2
|
+
acute
|
3
|
+
adaptable
|
4
|
+
advanced
|
5
|
+
affordable
|
6
|
+
caring
|
7
|
+
chronic
|
8
|
+
clinical
|
9
|
+
collaborative
|
10
|
+
comfortable
|
11
|
+
communicative
|
12
|
+
compassionate
|
13
|
+
competent
|
14
|
+
comprehensive
|
15
|
+
confidential
|
16
|
+
cooperative
|
17
|
+
coordinated
|
18
|
+
cost-effective
|
19
|
+
critical
|
20
|
+
culturally-sensitive
|
21
|
+
dedicated
|
22
|
+
dependable
|
23
|
+
diagnostic
|
24
|
+
diligent
|
25
|
+
educational
|
26
|
+
effective
|
27
|
+
efficient
|
28
|
+
emergency
|
29
|
+
empathetic
|
30
|
+
empowering
|
31
|
+
encouraging
|
32
|
+
ethical
|
33
|
+
evidence-based
|
34
|
+
experienced
|
35
|
+
flexible
|
36
|
+
friendly
|
37
|
+
geriatric
|
38
|
+
holistic
|
39
|
+
hygienic
|
40
|
+
inclusive
|
41
|
+
informative
|
42
|
+
innovative
|
43
|
+
integrated
|
44
|
+
interactive
|
45
|
+
knowledgeable
|
46
|
+
laboratory-based
|
47
|
+
medical
|
48
|
+
meticulous
|
49
|
+
minimally-invasive
|
50
|
+
multidisciplinary
|
51
|
+
non-invasive
|
52
|
+
nurturing
|
53
|
+
observant
|
54
|
+
obstetric
|
55
|
+
open
|
56
|
+
pain-free
|
57
|
+
palliative
|
58
|
+
patient-centered
|
59
|
+
pediatric
|
60
|
+
person-centered
|
61
|
+
pharmaceutical
|
62
|
+
prescriptive
|
63
|
+
preventative
|
64
|
+
preventive
|
65
|
+
proactive
|
66
|
+
professional
|
67
|
+
qualified
|
68
|
+
rehabilitative
|
69
|
+
reliable
|
70
|
+
research-oriented
|
71
|
+
respectful
|
72
|
+
responsive
|
73
|
+
safe
|
74
|
+
sanitary
|
75
|
+
secure
|
76
|
+
sociable
|
77
|
+
specialized
|
78
|
+
state-of-the-art
|
79
|
+
streamlined
|
80
|
+
supportive
|
81
|
+
surgical
|
82
|
+
systematic
|
83
|
+
technological
|
84
|
+
therapeutic
|
85
|
+
thorough
|
86
|
+
timely
|
87
|
+
transparent
|
88
|
+
treatment-oriented
|
89
|
+
trustworthy
|
90
|
+
urgent
|
91
|
+
welcoming
|
92
|
+
wellness-focused
|
@@ -0,0 +1,92 @@
|
|
1
|
+
accurately
|
2
|
+
adaptively
|
3
|
+
administratively
|
4
|
+
appropriately
|
5
|
+
boldly
|
6
|
+
briefly
|
7
|
+
carefree
|
8
|
+
carefully
|
9
|
+
cheerfully
|
10
|
+
clearly
|
11
|
+
clinically
|
12
|
+
collaboratively
|
13
|
+
comfortably
|
14
|
+
compassionately
|
15
|
+
concisely
|
16
|
+
confidentially
|
17
|
+
consistently
|
18
|
+
constantly
|
19
|
+
continuously
|
20
|
+
critically
|
21
|
+
decisively
|
22
|
+
diagnostically
|
23
|
+
diligently
|
24
|
+
easily
|
25
|
+
effectively
|
26
|
+
efficiently
|
27
|
+
emotionally
|
28
|
+
empathetically
|
29
|
+
enthusiastically
|
30
|
+
ethically
|
31
|
+
flexibly
|
32
|
+
frequently
|
33
|
+
generally
|
34
|
+
gently
|
35
|
+
gradually
|
36
|
+
habitually
|
37
|
+
holistically
|
38
|
+
honestly
|
39
|
+
innovatively
|
40
|
+
intensively
|
41
|
+
intently
|
42
|
+
interventionally
|
43
|
+
logistically
|
44
|
+
medically
|
45
|
+
mentally
|
46
|
+
meticulously
|
47
|
+
modestly
|
48
|
+
negatively
|
49
|
+
occasionally
|
50
|
+
painlessly
|
51
|
+
patiently
|
52
|
+
personally
|
53
|
+
pharmacologically
|
54
|
+
physically
|
55
|
+
positively
|
56
|
+
proactively
|
57
|
+
professionally
|
58
|
+
profoundly
|
59
|
+
promptly
|
60
|
+
publicly
|
61
|
+
quickly
|
62
|
+
quietly
|
63
|
+
radiologically
|
64
|
+
regularly
|
65
|
+
reliably
|
66
|
+
respectfully
|
67
|
+
responsibly
|
68
|
+
responsively
|
69
|
+
routinely
|
70
|
+
safely
|
71
|
+
scientifically
|
72
|
+
securely
|
73
|
+
seriously
|
74
|
+
significantly
|
75
|
+
smoothly
|
76
|
+
solemnly
|
77
|
+
specifically
|
78
|
+
steadily
|
79
|
+
strategically
|
80
|
+
supportively
|
81
|
+
surgically
|
82
|
+
systematically
|
83
|
+
tactfully
|
84
|
+
technologically
|
85
|
+
therapeutically
|
86
|
+
thoroughly
|
87
|
+
timely
|
88
|
+
transparently
|
89
|
+
uninterruptedly
|
90
|
+
urgently
|
91
|
+
visibly
|
92
|
+
warmly
|
@@ -0,0 +1,83 @@
|
|
1
|
+
when a patient arrives at the emergency room
|
2
|
+
if a doctor prescribes medication
|
3
|
+
although the symptoms are mild
|
4
|
+
because the treatment was effective
|
5
|
+
after the surgery is completed
|
6
|
+
before the nurse administers the vaccine
|
7
|
+
since the diagnosis was confirmed
|
8
|
+
while monitoring vital signs
|
9
|
+
unless the patient refuses treatment
|
10
|
+
as the condition improves
|
11
|
+
until the results are available
|
12
|
+
when the patient is discharged
|
13
|
+
if there are complications during surgery
|
14
|
+
although the hospital is busy
|
15
|
+
because the procedure requires anesthesia
|
16
|
+
after the follow-up appointment
|
17
|
+
before administering the IV fluids
|
18
|
+
since the medical history is crucial
|
19
|
+
while conducting the physical examination
|
20
|
+
unless the patient shows improvement
|
21
|
+
as the healthcare team discusses the case
|
22
|
+
when the lab results come back
|
23
|
+
if the patient experiences side effects
|
24
|
+
although the treatment plan is comprehensive
|
25
|
+
because the symptoms are persistent
|
26
|
+
after assessing the patient's condition
|
27
|
+
before taking the medication
|
28
|
+
since the nurse is on duty
|
29
|
+
while providing patient education
|
30
|
+
unless the patient is allergic
|
31
|
+
as the doctor explains the risks
|
32
|
+
when the patient consents to the procedure
|
33
|
+
if the insurance covers the costs
|
34
|
+
although the referral is necessary
|
35
|
+
because the patient needs urgent care
|
36
|
+
after reviewing the test results
|
37
|
+
before scheduling the surgery
|
38
|
+
since the clinic operates on weekends
|
39
|
+
while the patient is under observation
|
40
|
+
unless there is a medical emergency
|
41
|
+
as the physician evaluates the symptoms
|
42
|
+
when the patient follows the instructions
|
43
|
+
if the therapy is recommended
|
44
|
+
although the side effects are manageable
|
45
|
+
because the health outcomes are improving
|
46
|
+
after the consultation with the specialist
|
47
|
+
before the patient leaves the hospital
|
48
|
+
since the guidelines recommend it
|
49
|
+
while ensuring patient confidentiality
|
50
|
+
unless the procedure is postponed
|
51
|
+
as the research findings are published
|
52
|
+
when the healthcare provider communicates clearly
|
53
|
+
if the patient has questions
|
54
|
+
although the diagnosis is challenging
|
55
|
+
because the treatment requires monitoring
|
56
|
+
after the initial assessment
|
57
|
+
before conducting the follow-up
|
58
|
+
since the medical staff is trained
|
59
|
+
while collaborating with other departments
|
60
|
+
unless the protocol is followed
|
61
|
+
as the case is reviewed by the team
|
62
|
+
when the patient requires special care
|
63
|
+
if the health condition worsens
|
64
|
+
although the clinic has extended hours
|
65
|
+
because the patient needs rehabilitation
|
66
|
+
after the screening process
|
67
|
+
before making a referral
|
68
|
+
since the documentation is complete
|
69
|
+
while handling medical records
|
70
|
+
unless further tests are needed
|
71
|
+
as the treatment progresses
|
72
|
+
when the physician discusses options
|
73
|
+
if the patient agrees to participate
|
74
|
+
although complications may arise
|
75
|
+
because the recovery time varies
|
76
|
+
after the discharge instructions are given
|
77
|
+
before the patient returns for a check-up
|
78
|
+
since the nurse monitors the patient closely
|
79
|
+
while treating chronic conditions
|
80
|
+
unless the patient is stable
|
81
|
+
as the hospital prepares for a surge
|
82
|
+
when the medical team collaborates effectively
|
83
|
+
if the results indicate a serious issue
|