-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathwords.js
More file actions
5356 lines (4287 loc) · 234 KB
/
Copy pathwords.js
File metadata and controls
5356 lines (4287 loc) · 234 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
List of words and their meanings, sorted in alphabetical
order. A word is chosen at random from this list and
displayed on new tab page. If you would like to suggest
fixes, Add more words, fix punctuation etc., feel free
to send me a pull request.
*/
var wordlist =
[
{word:"aberrant",
type:"(adjective)",
meaning:"markedly different from an accepted norm",
usage:"When the financial director started screaming and throwing food at his co-workers, the police had to come in to deal with his aberrant behavior."},
{word:"aberration",
type:"(noun)",
meaning:"a deviation from what is normal or expected",
usage:"Aberrations in climate have become the norm: rarely a week goes by without some meteorological phenomenon making headlines."},
{word:"abstain",
type:"(verb)",
meaning:"choose not to consume or take part in (particularly something enjoyable)",
usage:"Considered a health nut, Jessica abstained from anything containing sugar--even chocolate."},
{word:"abstruse",
type:"(adjective)",
meaning:"difficult to understand; incomprehensible",
usage:"Physics textbooks can seem so abstruse to the uninitiated that readers feel as though they are looking at hieroglyphics."},
{word:"accolade",
type:"(noun)",
meaning:"an award or praise granted as a special honor",
usage:"Jean Paul-Sartre was not a fan of accolades, and as such, he refused to accept the Nobel Prize for Literature in 1964."},
{word:"acerbic",
type:"(adjective)",
meaning:"harsh in tone",
usage:"Most movie critics are acerbic towards summer blockbusters, often referring to them as garbage."},
{word:"acrimony",
type:"(noun)",
meaning:"bitterness and ill will",
usage:"The acrimonious dispute between the president and vice-president sent a clear signal to voters: the health of the current administration was imperiled."},
{word:"adamant",
type:"(adjective)",
meaning:"refusing to change one's mind",
usage:"Civil rights icon Rosa Parks will forever be remembered for adamantly refusing to give up her seat on a public bus--even after the bus driver insisted, she remained rooted in place."},
{word:"admonish",
type:"(verb)",
meaning:"to warn strongly, even to the point of reprimanding",
usage:"Before the concert began, security personnel admonished the crowd not to come up on stage during the performance."},
{word:"admonitory",
type:"(adjective)",
meaning:"serving to warn; expressing reproof or reproach especially as a corrective",
usage:"At the assembly, the high school vice-principal gave the students an admonitory speech, warning them of the many risks and dangers of prom night."},
{word:"aesthete",
type:"(noun)",
meaning:"one who professes great sensitivity to the beauty of art and nature",
usage:"A true aesthete, Marty would spend hours at the Guggenheim Museum, staring at the same Picasso."},
{word:"aesthetic",
type:"(adjective)",
meaning:"concerned with the appreciation of beauty",
usage:"The director, not known for his aesthetic sensibilities, decided not to use costumes at all, and put on the play in everyday clothing."},
{word:"aesthetic",
type:"(noun)",
meaning:"a set of principles underlying and guiding the work of a particular artist or artistic movement.",
usage:"The artist operated according to a peculiar aesthetic, not considering any photograph to be worth publishing unless it contained a marine mammal."},
{word:"amalgam",
type:"(noun)",
meaning:"a mixture of multiple things",
usage:"The band's music was an amalgam of hip-hop, flamenco and jazz, blending the three styles with surprising results."},
{word:"ambiguous",
type:"(adjective)",
meaning:"open to more than one interpretation",
usage:"The coach told his team, Move towards that side of the field; because he did not point, his directions were ambiguous, and the team had no idea to which side he was referring."},
{word:"ambivalent",
type:"(adjective)",
meaning:"mixed or conflicting emotions about something",
usage:"Sam was ambivalent about studying for the exam because doing so ate up a lot of his time, yet he was able to improve his analytical skills."},
{word:"ameliorate",
type:"(verb)",
meaning:"make something bad better",
usage:"Three Cups of Tea tells the story of western man who hopes to ameliorate poverty and the lack of education in Afghanistan."},
{word:"amenable",
type:"(adjective)",
meaning:"easily persuaded",
usage:"Even though she did not like the outdoors, Shirley was generally amenable and so her brother was able to persuade her to go camping."},
{word:"amorphous",
type:"(adjective)",
meaning:"shapeless",
usage:"His study plan for the GRE was at best amorphous; he would do questions from random pages in any one of seven test prep books."},
{word:"anomalous",
type:"(adjective)",
meaning:"not normal",
usage:"According to those who do not believe in climate change, the extreme weather over the last five years is simply anomalous--average temps should return to average, they believe."},
{word:"anomaly",
type:"(noun)",
meaning:"something that is not normal, standard, or expected",
usage:"After finding an anomaly in the data, she knew that she would have to conduct her experiment again."},
{word:"antipathy",
type:"(noun)",
meaning:"an intense feeling of dislike or aversion",
usage:"Maria had an antipathy for tour groups, often bolting to the other side of the museum as soon as she saw a chaperone leading a group of wide-eyed tourists."},
{word:"antithetical",
type:"(adjective)",
meaning:"sharply contrasted in character or purpose",
usage:"His deep emotional involvement with these ideas is, in fact, antithetical to the dis-attachment Buddhism preaches."},
{word:"apathetic",
type:"(adjective)",
meaning:"marked by a lack of interest",
usage:"Mr. Thompson was so talented at teaching math that even normally apathetic students took interest."},
{word:"apathy",
type:"(noun)",
meaning:"an absence of emotion or enthusiasm",
usage:"Widespread apathy among voters led to a very small turnout on election day."},
{word:"apocryphal",
type:"(adjective)",
meaning:"being of questionable authenticity",
usage:"The web is notorious for sandwiching apocryphal stories between actual news."},
{word:"appease",
type:"(verb)",
meaning:"pacify by acceding to the demands of",
usage:"Neville Chamberlain, the British prime minister during WWII, tried to appease Hitler and in doing so sent a clear message: you can walk all over us."},
{word:"arbitrary",
type:"(adjective)",
meaning:"based on a random, groundless decision",
usage:"One of the arbitrary decrees in place during the emperor's rule is that all citizens pay him weekly homage at his palace."},
{word:"arcane",
type:"(adjective)",
meaning:"requiring secret or mysterious knowledge",
usage:"Most college fraternities are known for arcane rituals that those hoping to the join the fraternity must learn."},
{word:"arduous",
type:"(adjective)",
meaning:"demanding considerable mental effort and skill; testing powers of endurance",
usage:"In order to deal with the arduous cross-country journey, truck drivers often survive on a ,string of caffeinated drinks, staying awake for up to 30 hours at a time."},
{word:"artful",
type:"(adjective)",
meaning:"exhibiting artistic skill",
usage:"Picasso is generally considered the most artful member of the Cubist movement."},
{word:"artful",
type:"(adjective)",
meaning:"clever in a cunning way",
usage:"Bernie Madoff's artful Ponzi scheme stole billions of dollars from investors and is considered the largest financial fraud in U.S. history."},
{word:"ascetic",
type:"(adjective)",
meaning:"practicing self-denial",
usage:"His ascetic life is the main reason he inspired so many followers, especially since he gave up wealth and power to live in poverty."},
{word:"ascetic",
type:"(noun)",
meaning:"one who practices great self-denial",
usage:"Historically, ascetics like Gandhi are often considered wise men partially because of their restraint."},
{word:"askance",
type:"(adverb)",
meaning:"with a look of suspicion or disapproval",
usage:"The old couple looked askance on the teenagers seated next to them, whispering to each other, They've got rings through their noses and purple hair!"},
{word:"audacious",
type:"(adjective)",
meaning:"willing to be bold in social situations or to take risks",
usage:"As all of the other campers cowered in their tents, Bill, armed only with a flashlight, audaciously tracked down the bear that had raided their food."},
{word:"audacity",
type:"(noun)",
meaning:"aggressive boldness in social situations",
usage:"She surprised her colleagues by having the audacity to publicly criticize the findings of a distinguished scientist."},
{word:"auspicious",
type:"(adjective)",
meaning:"favorable, the opposite of sinister",
usage:"Despite an auspicious beginning, Mike's road trip became a series of mishaps, and he was soon stranded and penniless, leaning against his wrecked automobile."},
{word:"austere",
type:"(adjective)",
meaning:"practicing self-denial",
usage:"His lifestyle of revelry and luxurious excess could hardly be called austere."},
{word:"austere",
type:"(adjective)",
meaning:"unadorned in style or appearance",
usage:"Late Soviet architecture, although remaining largely austere, moved into experimental territory that employed previously unused shapes and structures."},
{word:"austere",
type:"(adjective)",
meaning:"harsh in manner of temperament",
usage:"The principal of my elementary school was a cold, austere woman; I could never understand why she chose to work with children."},
{word:"avaricious",
type:"(adjective)",
meaning:"excessively greedy",
usage:"Since avaricious desire is similar to gluttony or lust--sins of excess--it was listed as one of the seven deadly sins by the Catholic church."},
{word:"banal",
type:"(adjective)",
meaning:"repeated too often; overfamiliar through overuse",
usage:"The professor used such banal expression that many students in the class either fell asleep from boredom or stayed awake to complete his sentences and humor friends."},
{word:"banality",
type:"(noun)",
meaning:"a trite or obvious remark",
usage:"Herbert regarded the minister's remark as a mere banality until Sharon pointed out profound implications to the seemingly obvious words."},
{word:"belie",
type:"(verb)",
meaning:"to give a false representation to; misrepresent",
usage:"The smile on her face belies the pain she must feel after the death of her husband."},
{word:"belligerent",
type:"(adjective)",
meaning:"characteristic of one eager to fight",
usage:"Tom said that he was arguing the matter purely for philosophical reasons, but his belligerent tone indicated an underlying anger about the issue."},
{word:"betray",
type:"(verb)",
meaning:"to reveal or make known something, usually unintentionally",
usage:"With the gold medal at stake, the gymnast awaited his turn, his quivering lip betraying his intense emotions."},
{word:"blatant",
type:"(adjective)",
meaning:"without any attempt at concealment; completely obvious",
usage:"Allen was often punished in school for blatantly disrespecting teachers."},
{word:"bolster",
type:"(verb)",
meaning:"support and strengthen",
usage:"The case for the suspect's innocence was bolstered considerably by the fact that neither fingerprints nor DNA were found at the scene."},
{word:"brazen",
type:"(adjective)",
meaning:"unrestrained by convention or propriety",
usage:"Their large donations to the local police department gave the drug cartel the brazen confidence to do their business out in the open."},
{word:"bucolic",
type:"(adjective)",
meaning:"relating to the pleasant aspects of the country",
usage:"The noble families of England once owned vast expanses of beautiful, bucolic land."},
{word:"bumbling",
type:"(adjective)",
meaning:"lacking physical movement skills, especially with the hands",
usage:"Within a week of starting, the bumbling new waiter was unceremoniously fired."},
{word:"burgeon",
type:"(verb)",
meaning:"grow and flourish",
usage:"China's housing market is burgeoning, but some predict that the growth is merely a bubble and will burst much like the U.S. real estate bubble of 2008."},
{word:"calumny",
type:"(noun)",
meaning:"making of a false statement meant to injure a persons reputation",
usage:"With the presidential primaries well under way, the air is thick with calumny, and the mud already waist- high."},
{word:"capricious",
type:"(adjective)",
meaning:"determined by chance or impulse or whim rather than by necessity or reason",
usage:"Nearly every month our capricious CEO had a new plan to turn the company around, and none of ,them worked because we never gave them the time they needed to succeed."},
{word:"castigate",
type:"(verb)",
meaning:"to reprimand harshly",
usage:"Drill sergeants are known to castigate new recruits so mercilessly that the latter often break down during their first week in training."},
{word:"censure",
type:"(verb)",
meaning:"to express strong disapproval",
usage:"After being caught in bed with a mistress, the mayor was quickly censured by the city council."},
{word:"chastise",
type:"(verb)",
meaning:"to reprimand harshly",
usage:"Though chastised for his wanton abuse of the pantry, Lawrence shrugged off his mother's harsh words, and continued to plow through jars of cookies and boxes of donuts."},
{word:"chortle",
type:"(verb)",
meaning:"to chuckle, laugh merrily",
usage:"Walking past the bar, I could hear happy, chortling people and the blast of horns from a jazz band."},
{word:"circumscribe",
type:"(verb)",
meaning:"restrict or confine",
usage:"Their tour of South America was circumscribed so that they saw only popular destinations and avoided the dangerous parts of cities."},
{word:"circumvent",
type:"(verb)",
meaning:"cleverly find a way out of one's duties or obligations",
usage:"One way of circumventing the GRE is to apply to a grad school that does not require GRE scores."},
{word:"commensurate",
type:"(adjective)",
meaning:"to be in proportion or corresponding in degree or amount",
usage:"The convicted felon's life sentence was commensurate to the heinousness of his crime."},
{word:"concede",
type:"(verb)",
meaning:"acknowledge defeat",
usage:"I concede. You win!"},
{word:"concede",
type:"(verb)",
meaning:"admit (to a wrongdoing)",
usage:"After a long, stern lecture from her father, Olivia conceded to having broken the window."},
{word:"concede",
type:"(verb)",
meaning:"give over; surrender or relinquish to the physical control of another",
usage:"The Spanish were forced to concede much of the territory they had previously conquered."},
{word:"confound",
type:"(verb)",
meaning:"be confusing or perplexing to",
usage:"Though Harry loved numbers, he found calculus confounding."},
{word:"confound",
type:"(verb)",
meaning:"mistake one thing for another",
usage:"Americans often confound sweet potatoes with yams, and refer to both vegetables by the same name."},
{word:"conspicuous",
type:"(adjective)",
meaning:"without any attempt at concealment; completely obvious",
usage:"American basketball players are always conspicuous when they go abroad--not only are they American, but some are over seven feet tall."},
{word:"constituent",
type:"(noun)",
meaning:"a citizen who is represented in a government by officials for whom he or she votes",
usage:"The mayor's constituents are no longer happy with her performance and plan to vote for ,another candidate in the upcoming election."},
{word:"constituent",
type:"(noun)",
meaning:"an abstract part of something",
usage:"The constituents of the metal alloy are nickel, copper, and tin."},
{word:"construe",
type:"(verb)",
meaning:"interpreted in a particular way",
usage:"The author's inability to take a side on the issue was construed by both his opponents and supporters as a sign of weakness."},
{word:"contingent",
type:"(noun)",
meaning:"a gathering of persons representative of some larger group",
usage:"A small contingent of those loyal to the king have gathered around the castle to defend it."},
{word:"contingent",
type:"(adjective)",
meaning:"possible but not certain to occur",
usage:"Whether the former world champions can win again this year is contingent upon none of its star players getting injured."},
{word:"contrition",
type:"(noun)",
meaning:"the feeling of remorse or guilt that comes from doing something bad",
usage:"Those who show contrition during their prison terms--especially when under review by a parole board-- often get shortened sentences."},
{word:"contrive",
type:"(verb)",
meaning:"to pull off a plan or scheme, usually through skill or trickery",
usage:"Despite a low GPA, he contrived to get into college, going so far as to write his own glowing letters of recommendation."},
{word:"copious",
type:"(adjective)",
meaning:"in abundant supply",
usage:"In midsummer, there are copious Popsicle stands at the beach; in the winter, there are none."},
{word:"craven",
type:"(adjective)",
meaning:"pathetically cowardly",
usage:"Though the man could have at least alerted the police, he crouched cravenly in the corner as the old woman was mugged."},
{word:"cryptic",
type:"(adjective)",
meaning:"mysterious or vague, usually intentionally",
usage:"Since Sarah did not want her husband to guess the Christmas present she had bought him, she only answered cryptically when he would ask her questions about it."},
{word:"culminate",
type:"(verb)",
meaning:"reach the highest or most decisive point",
usage:"Beethoven's musical genius culminated in the 9th Symphony, which many consider his greatest work."},
{word:"culpability",
type:"(noun)",
meaning:"a state of guilt",
usage:"Since John had left his banana peel at the top of the stairwell, he accepted culpability for Martha's broken leg."},
{word:"decorous",
type:"(adjective)",
meaning:"characterized by good taste in manners and conduct",
usage:"Sally's parties are decorous affairs, and instead of the usual beer and music, there is tea and intellectual conversation."},
{word:"decorum",
type:"(noun)",
meaning:"propriety in manners and conduct",
usage:"You will obey the rules of decorum for this courtroom or spend the night in a jail cell, said the judge to the prosecutor."},
{word:"deferential",
type:"(adjective)",
meaning:"showing respect",
usage:"If you ever have the chance to meet the president, stand up straight and be deferential."},
{word:"deleterious",
type:"(adjective)",
meaning:"harmful to living things",
usage:"The BP oil spill in the Gulf of Mexico was deleterious to the fishing industry in the southern states."},
{word:"delineate",
type:"(verb)",
meaning:"describe in detail",
usage:"After a brief summary of proper swimming technique, the coach delineated the specifics of each stroke, spending 30 minutes alone on the backstroke."},
{word:"demur",
type:"(verb)",
meaning:"to object or show reluctance",
usage:"Wallace disliked the cold, so he demurred when his friends suggested they going skiing in the Alps."},
{word:"denigrate",
type:"(verb)",
meaning:"charge falsely or with malicious intent; attack the good name and reputation of someone",
usage:"Count Rumford denigrated the new theory of heat, demonstrating that it was wholly inadequate to explain the observations."},
{word:"denote",
type:"(verb)",
meaning:"be a sign or indication of; have as a meaning",
usage:"Even if the text is not visible, the red octagon denotes stop to all motorists in America."},
{word:"derivative",
type:"(adjective)",
meaning:"(or a creative product, e.g. music, writing, etc.) not original but drawing on the work of another person",
usage:"Because the movies were utterly derivative of other popular movies, they did well at the box office."},
{word:"derive",
type:"(verb)",
meaning:"come from; be connected by a relationship of blood, for example",
usage:"Many words in the English language are derived from Latin, including the word derive."},
{word:"derive",
type:"(verb)",
meaning:"reason by deduction; establish by deduction",
usage:"From the multiple set of footprints in the living room, the investigator derived an important clue: Sheila was not alone in the room at the time of the murder."},
{word:"dictatorial",
type:"(adjective)",
meaning:"expecting unquestioning obedience; characteristic of an absolute ruler",
usage:"The coach was dictatorial in his approach: no players could ever argue or question his approach."},
{word:"didactic",
type:"(adjective)",
meaning:"instructive (especially excessively)",
usage:"Tolstoy's The Death of Ivan Illyich is a didactic novel, instructing the reader on how to live a good life."},
{word:"diffident",
type:"(adjective)",
meaning:"showing modest reserve; lacking self-confidence",
usage:"As a young girl she was diffident and reserved, but now as an adult, she is confident and assertive."},
{word:"dilatory",
type:"(adjective)",
meaning:"wasting time",
usage:"Lawyers use dilatory tactics so that it takes years before the case is actually decided."},
{word:"dilettante",
type:"(noun)",
meaning:"an amateur who engages in an activity without serious intentions and who pretends to have knowledge",
usage:"Fred has no formal medical training; while he likes to claim authority on medical issues, he is little more than a dilettante"},
{word:"disaffected",
type:"(adjective)",
meaning:"discontented as toward authority",
usage:"After watching his superior take rations from the soldiers, he quickly became disaffected and rebelled."},
{word:"discrete",
type:"(adjective)",
meaning:"constituting a separate entity or part",
usage:"What was once known as Czechoslovakia has since split into two discrete, independent nations."},
{word:"disinterested",
type:"(adjective)",
meaning:"unbiased; neutral",
usage:"The potential juror knew the defendant, and therefore could not serve on the jury, which must consist only of disinterested members."},
{word:"dispassionate",
type:"(adjective)",
meaning:"unaffected by strong emotion or prejudice",
usage:"A good scientist should be dispassionate, focusing purely on what the evidence says, without personal attachment."},
{word:"disseminate",
type:"(verb)",
meaning:"cause to become widely known",
usage:"Before the effects of anasthesia were disseminated, patients had to experience the full pain of a surgery."},
{word:"dogmatic",
type:"(adjective)",
meaning:"highly opinionated, not accepting that your belief may not be correct",
usage:"Bryan is dogmatic in his belief that the earth is flat, claiming that all pictures of a spherical earth are computer generated."},
{word:"duress",
type:"(noun)",
meaning:"compulsory force or threat",
usage:"The witness said he signed the contract under duress and argued that the court should cancel the agreement."},
{word:"eclectic",
type:"(adjective)",
meaning:"comprised of a variety of styles",
usage:"Joey was known for his eclectic tastes in music, one moment dancing to disco the next air conducting along to Beethoven's 9th symphony."},
{word:"economical",
type:"(adjective)",
meaning:"avoiding waste, efficient",
usage:"Journalists favor an economical style of writing, in which no unnecessary words are used and every sentence is as short as possible."},
{word:"edifying",
type:"(adjective)",
meaning:"enlightening or uplifting so as to encourage intellectual or moral improvement",
usage:"I recently read an article in the Times about whether good literature is edifying or not; specifically, does reading more make a person more moral."},
{word:"efficacious",
type:"(adjective)",
meaning:"producing the intended result",
usage:"Since Maggie's cough syrup, which had expired five years back, was no longer efficacious, she coughed through the night."},
{word:"egregious",
type:"(adjective)",
meaning:"standing out in negative way; shockingly bad",
usage:"The dictator's abuse of human rights was so egregious that many world leaders asked that he be tried in an international court for genocide."},
{word:"elicit",
type:"(verb)",
meaning:"call forth (emotions, feelings, and responses)",
usage:"Just smiling--even if you are depressed--can elicit feelings of pleasure and happiness."},
{word:"elucidate",
type:"(verb)",
meaning:"make clearer and easier to understand",
usage:"Youtube is great place to learn just about anything--an expert elucidates finer points so that even a complete novice can learn."},
{word:"eminent",
type:"(adjective)",
meaning:"standing above others in quality or position",
usage:"Shakespeare is an eminent author in the English language, but I find his writing uninteresting and melodramatic."},
{word:"enervate",
type:"(verb)",
meaning:"to sap energy from",
usage:"John preferred to avoid equatorial countries; the intense sun would always leave him enervated after he'd spent the day sightseeing."},
{word:"engender",
type:"(verb)",
meaning:"give rise to",
usage:"The restrictions of the Treaty of Versailles were so severe that they engendered deep hatred and resentment in the German people."},
{word:"entrenched",
type:"(adjective)",
meaning:"fixed firmly or securely",
usage:"By the time we reach 60-years old, most of our habits are so entrenched that it is difficult for us to change."},
{word:"ephemeral",
type:"(adjective)",
meaning:"lasting a very short time",
usage:"The lifespan of a mayfly is ephemeral, lasting from a few hours to a couple of days."},
{word:"equivocal",
type:"(adjective)",
meaning:"confusing or ambiguous",
usage:"The findings of the study were equivocal--the two researchers had different opinions on what the results signified."},
{word:"eradicate",
type:"(verb)",
meaning:"to completely destroy",
usage:"I tried eradicating the mosquitos in my apartment with a rolled up newspaper, but there were too many of them."},
{word:"erudite",
type:"(adjective)",
meaning:"having or showing profound knowledge",
usage:"Before the Internet, the library was typically were you would find erudite readers."},
{word:"eschew",
type:"(verb)",
meaning:"avoid and stay away from deliberately; stay clear of",
usage:"Politicians are the masters of eschewing morals; academics are the masters of eschewing clarity."},
{word:"esoteric",
type:"(adjective)",
meaning:"confined to and understandable by only an enlightened inner circle",
usage:"Map collecting is an esoteric hobby to most, but to geography geeks it is a highly enjoyable pasttime."},
{word:"espouse",
type:"(verb)",
meaning:"to adopt or support an idea or cause",
usage:"As a college student, Charlie espoused Marxism, growing his beard out and railing against the evils of the free-market."},
{word:"exacerbate",
type:"(verb)",
meaning:"make worse",
usage:"Her sleeplessness exacerbated her cold--when she woke up the next day, her sinuses were completely blocked."},
{word:"exacting",
type:"(adjective)",
meaning:"requiring and demanding accuracy",
usage:"Though his childhood piano teacher was so exacting, Max is thankful now, as a professional pianist."},
{word:"exalt",
type:"(verb)",
meaning:"praise or glorify",
usage:"The teenagers exalted the rock star, covering their bedrooms with posters of him."},
{word:"exonerate",
type:"(verb)",
meaning:"pronounce not guilty of criminal charges",
usage:"The document clearly indicated that Nick was out of the state at the time of the crime, and so served to exonerate him of any charges."},
{word:"expound",
type:"(verb)",
meaning:"add details or explanation; clarify the meaning; state in depth",
usage:"The CEO refused to expound on the decision to merge our department with another one, and so I quit."},
{word:"extant",
type:"(adjective)",
meaning:"the opposite of extinct",
usage:"Despite many bookstores closing, experts predict that some form of book dealing will still be extant generations from now."},
{word:"fallacious",
type:"(adjective)",
meaning:"of a belief that is based on faulty reasoning",
usage:"The widespread belief that Eskimos have forty different words for snow is fallacious, based on one false report."},
{word:"fastidious",
type:"(adjective)",
meaning:"overly concerned with details; fussy",
usage:"Whitney is fastidious about her shoes, arranging them on a shelf in a specific order, each pair evenly spaced."},
{word:"flux",
type:"(noun)",
meaning:"a state of uncertainty about what should be done (usually following some important event)",
usage:"Ever since Elvira resigned as the head of marketing, everything about our sales ,strategy has been in a state of flux."},
{word:"foment",
type:"(verb)",
meaning:"try to stir up public opinion",
usage:"After having his pay cut, Phil spread vicious rumors about his boss, hoping to foment a general feeling of discontent."},
{word:"forlorn",
type:"(adjective)",
meaning:"marked by or showing hopelessness",
usage:"After her third pet dog died, Marcia was simply forlorn: this time even the possibility of buying a new dog no longer held any joy."},
{word:"forthcoming",
type:"(adjective)",
meaning:"available when required or as promised",
usage:"The President announced that the senators were about to reach a compromise, and that he was eager to read the forthcoming details of the bill."},
{word:"forthcoming",
type:"(adjective)",
meaning:"at ease in talking to others",
usage:"As a husband, Larry was not forthcoming: if Jill didn't demand to know details, Larry would never share them with her."},
{word:"fortuitous",
type:"(adjective)",
meaning:"occurring by happy chance; having no cause or apparent cause",
usage:"While the real objects are vastly different sizes in space, the sun and the moon seem to have the same fortuitous size in the sky."},
{word:"frivolous",
type:"(adjective)",
meaning:"not serious in content or attitude or behavior",
usage:"Compared to Juliet's passionate concern for human rights, Jake's non-stop concern about football seems somewhat frivolous."},
{word:"frugal",
type:"(adjective)",
meaning:"not spending much money (but spending wisely)",
usage:"Monte was no miser, but was simply frugal, wisely spending the little that he earned."},
{word:"frustrate",
type:"(verb)",
meaning:"hinder or prevent (the efforts, plans, or desires) of",
usage:"I thought I would finish writing the paper by lunchtime, but a number of urgent interruptions served to frustrate my plan."},
{word:"furtive",
type:"(adjective)",
meaning:"marked by quiet and caution and secrecy; taking pains to avoid being observed",
usage:"While at work, George and his boss Regina felt the need to be as furtive as possible about their romantic relationship."},
{word:"gainsay",
type:"(verb)",
meaning:"deny or contradict; speak against or oppose",
usage:"I can't gainsay a single piece of evidence James has presented, but I still don't trust his conclusion."},
{word:"gall",
type:"(noun)",
meaning:"the trait of being rude and impertinent",
usage:"Even though Carly was only recently hired, she had the gall to question her boss's judgment in front of the office."},
{word:"gall",
type:"(noun)",
meaning:"feeling of deep and bitter anger and ill-will",
usage:"In an act of gall, Leah sent compromising photos of her ex-boyfriend to all his co-workers and professional contacts."},
{word:"galvanize",
type:"(verb)",
meaning:"to excite or inspire (someone) to action",
usage:"At mile 23 of his first marathon, Kyle had all but given up, until he noticed his friends and family holding a banner that read, Go Kyle; galvanized, he broke into a gallop, finishing the last three miles in less than 20 minutes."},
{word:"garrulous",
type:"(adjective)",
meaning:"full of trivial conversation",
usage:"Lynne was garrulous: once, she had a fifteen minute conversation with a stranger before she realized the woman didn't speak English."},
{word:"gauche",
type:"(adjective)",
meaning:"lacking social polish",
usage:"Sylvester says the most gauche things, such as telling a girl he liked that she was much prettier when she wore makeup."},
{word:"germane",
type:"(adjective)",
meaning:"relevant and appropriate",
usage:"The professor wanted to tell the jury in detail about his new book, but the lawyer said it wasn't germane to the charges in the cases."},
{word:"glut",
type:"(noun)",
meaning:"an excessive supply",
usage:"The Internet offers such a glut of news related stories that many find it difficult to know which story to read first."},
{word:"glut",
type:"(verb)",
meaning:"supply with an excess of",
usage:"In the middle of economic crises, hiring managers find their inboxes glutted with resumes."},
{word:"gossamer",
type:"(adjective)",
meaning:"characterized by unusual lightness and delicacy",
usage:"The gossamer wings of a butterfly, which allow it to fly, are also a curse, so delicate that they are often damaged."},
{word:"gregarious",
type:"(adjective)",
meaning:"to be likely to socialize with others",
usage:"Often we think that great leaders are those who are gregarious, always in the middle of a large group of people; yet, as Mahatma Gandhi and many others have shown us, leaders can also be introverted."},
{word:"guileless",
type:"(adjective)",
meaning:"free of deceit",
usage:"At first I thought my niece was guileless, but I then found myself buying her ice cream every time we passed a shop."},
{word:"hackneyed",
type:"(adjective)",
meaning:"lacking significance through having been overused",
usage:"Cheryl rolled her eyes when she heard the lecturer's hackneyed advice to be true to yourself."},
{word:"haphazard",
type:"(adjective)",
meaning:"marked by great carelessness; dependent upon or characterized by chance",
usage:"Many golf courses are designed with great care, but the greens on the county golf course seem ,entirely haphazard."},
{word:"harangue",
type:"(noun)",
meaning:"a long pompous speech; a tirade",
usage:"Dinner at Billy's was more a punishment than a reward, since anyone who sat at the dinner table would have to listen to Billy's father's interminable harangues against the government."},
{word:"harangue",
type:"(verb)",
meaning:"to deliver a long pompous speech or tirade",
usage:"Tired of his parents haranguing him about his laziness and lack of initiative, Tyler finally moved out of home at the age of thirty-five."},
{word:"harried",
type:"(adjective)",
meaning:"troubled persistently especially with petty annoyances",
usage:"With a team of new hires to train, Martha was constantly harried with little questions and could not focus on her projects."},
{word:"haughty",
type:"(adjective)",
meaning:"having or showing arrogant superiority to and disdain of those one views as unworthy",
usage:"The haughty manager didn't believe that any of his subordinates could ever have an insight as brilliant his own."},
{word:"hegemony",
type:"(adjective)",
meaning:"dominance over a certain area",
usage:"Until the Spanish Armada was defeated in 1587, Spain had hegemony over the seas, controlling waters stretching as far as the Americas."},
{word:"heretic",
type:"(noun)",
meaning:"a person who holds unorthodox opinions in any field (not merely religion)",
usage:"Though everybody at the gym told Mikey to do cardio before weights, Mikey was a heretic and always did the reverse."},
{word:"iconoclast",
type:"(noun)",
meaning:"somebody who attacks cherished beliefs or institutions",
usage:"Lady Gaga, in challenging what it means to be clothed, is an iconoclast for wearing a meat dress to a prominent awards show."},
{word:"iconoclastic",
type:"(adjective)",
meaning:"defying tradition or convention",
usage:"Jackson Pollack was an iconoclastic artist, totally breaking with tradition by splashing paint on a blank canvas."},
{word:"idiosyncrasy",
type:"(noun)",
meaning:"a behavioral attribute that is distinctive and peculiar to an individual",
usage:"Peggy's numerous idiosyncrasies include wearing mismatched shoes, laughing loudly to herself, and owning a pet aardvark."},
{word:"ignoble",
type:"(adjective)",
meaning:"dishonorable",
usage:"In the 1920s, the World Series was rigged--an ignoble act which baseball took decades to recover from."},
{word:"ignominious",
type:"(adjective)",
meaning:"(used of conduct or character) deserving or bringing disgrace or shame",
usage:"Since the politician preached ethics and morality, his texting of revealing photographs was ignominious, bringing shame on both himself and his party."},
{word:"immutable",
type:"(adjective)",
meaning:"not able to be changed",
usage:"Taxes are one of the immutable laws of the land, so there is no use arguing about paying them."},
{word:"impartial",
type:"(adjective)",
meaning:"free from undue bias or preconceived opinions",
usage:"The judge was not impartial since he had been bribed by the witness's family."},
{word:"impertinent",
type:"(adjective)",
meaning:"being disrespectful; improperly forward or bold",
usage:"Dexter, distraught over losing his pet dachshund, Madeline, found the police officer's questions impertinent--after all, he thought, did she have to pry into such details as to what Madeline's favorite snack was?"},
{word:"implacable",
type:"(adjective)",
meaning:"incapable of making less angry or hostile",
usage:"Win or lose, the coach was always implacable, never giving the athletes an easy practice or a break."},
{word:"implausible",
type:"(adjective)",
meaning:"describing a statement that is not believable",
usage:"The teacher found it implausible that the student was late to school because he had been kidnapped by outlaws on horseback."},
{word:"imprudent",
type:"(adjective)",
meaning:"not wise",
usage:"Hitler, like Napoleon, made the imprudent move of invading Russia in winter, suffering even more casualties than Napoleon had."},
{word:"impudent",
type:"(adjective)",
meaning:"improperly forward or bold",
usage:"In an impudent move, the defendant spoke out of order to say terribly insulting things to the judge."},
{word:"incisive",
type:"(adjective)",
meaning:"having or demonstrating ability to recognize or draw fine distinctions",
usage:"The lawyer had an incisive mind, able in a flash to dissect a hopelessly tangled issue and isolate the essential laws at play."},
{word:"incongruous",
type:"(adjective)",
meaning:"lacking in harmony or compatibility or appropriateness",
usage:"The vast economic inequality of modern society is incongruous with America's ideals."},
{word:"incorrigible",
type:"(adjective)",
meaning:"impervious to correction by punishment",
usage:"Tom Sawyer seems like an incorrigible youth until Huck Finn enters the novel; even Sawyer can't match his fierce individual spirit."},
{word:"indecorous",
type:"(adjective)",
meaning:"not in keeping with accepted standards of what is right or proper in polite society",
usage:"Eating with elbows on the table is considered indecorous in refined circles."},
{word:"indifference",
type:"(noun)",
meaning:"the trait of seeming not to care",
usage:"In an effort to fight indifference, the president of the college introduced a new, stricter grading system."},
{word:"inexorable",
type:"(adjective)",
meaning:"impossible to stop or prevent",
usage:"The rise of the computer was an inexorable shift in technology and culture."},
{word:"ingenuous",
type:"(adjective)",
meaning:"to be naïve and innocent",
usage:"Two-years in Manhattan had changed Jenna from an ingenuous girl from the suburbs to a jaded urbanite, unlikely to fall for any ruse, regardless of how elaborate."},
{word:"ingratiate",
type:"(verb)",
meaning:"gain favor with somebody by deliberate efforts",
usage:"Even though Tom didn't like his new boss, he decided to ingratiate himself to her in order to advance his career."},
{word:"inimical",
type:"(adjective)",
meaning:"hostile (usually describes conditions or environments)",
usage:"Venus, with a surface temperature that would turn rubber to liquid, is inimical to any form of life."},
{word:"innocuous",
type:"(adjective)",
meaning:"harmless and doesn't produce any ill effects",
usage:"Everyone found Nancy's banter innocuous--except for Mike, who felt like she was intentionally picking on him."},
{word:"inscrutable",
type:"(adjective)",
meaning:"not easily understood; unfathomable",
usage:"His speech was so dense and confusing that many in the audience found it inscrutable."},
{word:"insidious",
type:"(adjective)",
meaning:"working in a subtle but destructive way",
usage:"Plaque is insidious: we cannot see it, but each day it eats away at our enamel, causing cavities and other dental problems."},
{word:"insolent",
type:"(adjective)",
meaning:"rude and arrogant",
usage:"Lilian could not help herself from being insolent, commenting that the Queen's shoes were showing too much toe."},
{word:"intimate",
type:"(verb)",
meaning:"to suggest something subtly",
usage:"At first Manfred's teachers intimated to his parents that he was not suited to skip a grade; when his parents protested, teachers explicitly told them that, notwithstanding the boy's precocity, he was simply too immature to jump to the 6th grade."},
{word:"intransigent",
type:"(adjective)",
meaning:"unwilling to change one's beliefs or course of action",
usage:"Despite many calls for mercy, the judge remained intransigent, citing strict legal precedence."},
{word:"intrepid",
type:"(adjective)",
meaning:"fearless",
usage:"Captain Ahab was an intrepid captain whose reckless and fearless style ultimate leads to his downfall."},
{word:"inveterate",
type:"(adjective)",
meaning:"habitual",
usage:"He is an inveterate smoker and has told his family and friends that there is no way he will ever quit."},
{word:"involved",
type:"(adjective)",
meaning:"complicated, and difficult to comprehend",
usage:"The physics lecture became so involved that the undergraduate's eyes glazed over."},
{word:"irrevocable",
type:"(adjective)",
meaning:"incapable of being retracted or revoked",
usage:"Once you enter your plea to the court, it is irrevocable so think carefully about what you will say."},
{word:"itinerant",
type:"(adjective)",
meaning:"traveling from place to place to work",
usage:"Doctors used to be itinerant, traveling between patients' homes."},
{word:"jingoism",
type:"(noun)",
meaning:"fanatical patriotism",
usage:"North Korea maintains intense control over its population through a combination of jingoism and cult of personality."},
{word:"jovial",
type:"(adjective)",
meaning:"full of or showing high-spirited merriment",
usage:"The political candidate and his supporters were jovial once it was clear that she had won."},
{word:"jubilant",
type:"(adjective)",
meaning:"full of high-spirited delight because of triumph or success",
usage:"My hard work paid off, and I was jubilant to receive a perfect score on the GRE."},
{word:"juxtapose",
type:"(verb)",
meaning:"place side by side",
usage:"The meaning of her paintings comes from a classical style which juxtaposes modern themes."},
{word:"laconic",
type:"(adjective)",
meaning:"one who says very few words",
usage:"While Martha always swooned over the hunky, laconic types in romantic comedies, her boyfriends inevitably were very talkative--and not very hunky."},
{word:"lambast",
type:"(verb)",
meaning:"criticize severely or angrily",
usage:"Showing no patience, the manager utterly lambasted the sales team that lost the big account."},
{word:"languid",
type:"(adjective)",
meaning:"not inclined towards physical exertion or effort; slow and relaxed",
usage:"As the sun beat down and the temperature climbed higher, we spent a languid week lying around the house."},