-
Notifications
You must be signed in to change notification settings - Fork 1
/
hp-lovecraft.xml
3245 lines (3245 loc) · 149 KB
/
hp-lovecraft.xml
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
<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet href="http://www.amk.ca/qel/qel.css"?>
<quotations
xmlns="http://www.amk.ca/qel/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#">
<title>Quotations from H.P. Lovecraft</title>
<editor>A.M. Kuchling</editor>
<description>Quotations from H.P. Lovecraft's works and letters.</description>
<quotation id="q1" date="1919">
<p>
My opinion of my whole experience varies from time to time. In
broad daylight, and at most seasons I am apt to think the greater part
of it a mere dream; but sometimes in the autumn, about two in the
morning when winds and animals howl dismally, there comes from
inconceivable depths below a damnable suggestions of rhythmical
throbbing ... and I feel that the transition of Juan Romero was a
terrible one indeed.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"The Transition of Juan Romero"</source>
</quotation>
<quotation id="q2">
<p>
There be those who say that things and places have souls, and
there be those who say they have not; I dare not say, myself, but I
will tell of The Street.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"The Street"</source>
</quotation>
<quotation id="q3">
<p>
But are not the dreams of poets and the tales of travellers
notoriously false?
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"The Street"</source>
</quotation>
<quotation id="q4">
<p>
In London there is a man who screams when the church bells ring.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"The Descendant"</source>
</quotation>
<quotation id="q5" date="1917">
<p>
Men of broader intellect know that there is no sharp distinction
betwixt the real and the unreal...
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"The Tomb"</source>
</quotation>
<quotation id="q6" date="1917">
<p>
I have dwelt ever in realms apart from the visible world;
spending my youth and adolescence in ancient and little-known books,
and in roaming the fields and groves of the region near my ancestral
home. I do not think that what I read in these books or saw in these
fields and groves was exactly what other boys read and saw there; but
of this I must say little, since detailed speech would but confirm
those cruel slanders upon my intellect which I sometimes overhear from
the whispers of the stealthy attendants around me.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"The Tomb"</source>
</quotation>
<quotation id="q7" date="1918">
<p>
Just before dawn Arcturus winks ruddily from above the cemetery
on the low hillock, and Coma Berenices shimmers weirdly afar off in
the mysterious east; but still the Pole Star leers down from the same
place in the black vault, winking hideously like an insane watching
eye which strives to convey some strange message, yet recalls nothing
save that it once had a message to convey. Sometimes, when it is
cloudy, I can sleep.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"Polaris"</source>
</quotation>
<quotation id="q8" date="1919">
<p>
Sometimes I believe that this less material life is our truer
life, and that our vain presence on the terraqueous globe is itself
the secondary or merely virtual phenomenon.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"Beyond The Wall of Sleep"</source>
</quotation>
<quotation id="q9" date="1919">
<p>
But more wonderful than the lore of old men and the lore of
books is the secret lore of ocean.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"The White Ship"</source>
</quotation>
<quotation id="q10" date="1919">
<p>
Blue, green, grey, white, or black; smooth, ruffled, or
mountainous; that ocean is not silent.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"The White Ship"</source>
</quotation>
<quotation id="q11" date="1919">
<p>
Ocean is more ancient than the mountains, and freighted with the
memories and the dreams of Time.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"The White Ship"</source>
</quotation>
<quotation id="q12" date="1919">
<p>
In the land of Sona-Nyl there is neither time nor space, neither
suffering nor death.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"The White Ship"</source>
</quotation>
<quotation id="q13" date="1919">
<p>
I yearned mightily to enter this fascinating yet repellent city,
and besought the bearded man to land me at the stone pier by the huge
carven gate Akariel; but he gently denied my wish, saying: "Into
Thalarion, the City of a Thousand Wonders, many have passed but none
returned. Therein walk only daemons and mad things that are no longer
men, and the streets are white with the unburied bones of those who
have looked upon the eidolon Lathi, that reigns over the city."
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"The White Ship"</source>
</quotation>
<quotation id="q14" date="1920">
<p>
For the cat is cryptic, and close to Aegyptus, and bearer of
tales from forgotten cities in Meroë and Ophir. He is the kin of the
jungle's lords, and heir to the secrets of hoary and sinister Africa.
The Sphinx is his cousin, and he speaks her language; but he is more
ancient than the Sphinx, and remembers that which she hath forgotten.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"The Cats of Ulthar"</source>
</quotation>
<quotation id="q15" date="1920">
<p>
Very sleek and fat did the cats appear, and sonorous with
purring content.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"The Cats of Ulthar"</source>
</quotation>
<quotation id="q16" date="1920">
<p>
But he was unmoved, and cried: "If I am mad, it is mercy! May
the gods pity the man who in his callousness can remain sane to the
hideous end!"
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"The Temple"</source>
</quotation>
<quotation id="q17" date="1920">
<p>
Life is a hideous thing, and from the background behind what we
know of it peer daemoniacal hints of truth which make it sometimes a
thousandfold more hideous. Science, already oppressive with its
shocking revelations, will perhaps be the ultimate exterminator of our
human species -- if separate species we be -- for its reserve of
unguessed horrors could never be borne by mortal brains if loosed upon
the world.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"Facts Concerning the Late Arthur Jermyn and His Family"</source>
</quotation>
<quotation id="q18" date="1920">
<p>
If we knew what we are, we should do as Sir Arthur Jermyn did;
and Arthur Jermyn soaked himself in oil and set fire to his clothing
one night.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"Facts Concerning the Late Arthur Jermyn and His Family"</source>
</quotation>
<quotation id="q19" date="1920">
<p>
Kuranes was not modern, and did not think like others who wrote.
Whilst they strove to strip from life its embroidered robes of myth,
and to shew in naked ugliness the foul thing that is reality, Kuranes
sought for beauty alone.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"Celephaïs"</source>
</quotation>
<quotation id="q20" date="1920">
<p>
There are not many persons who know what wonders are opened to
them in the stories and visions of their youth; for when as children
we learn and dream, we think but half-formed thoughts, and when as men
we try to remember, we are dulled and prosaic with the poison of life.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"Celephaïs"</source>
</quotation>
<quotation id="q21" date="1920">
<p>
But some of us awake in the night with strange phantasms of
enchanted hills and gardens, of fountains that sing in the sun, of
golden cliffs overhanging murmuring seas, of plains that stretch down
to sleeping cities of bronze and stone, and of shadowy companies of
heroes that ride caparisoned white horses along the edges of thick
forests; and then we know that we have looked back through the ivory
gates into that world of wonder which was ours before we were wise and
unhappy.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"Celephaïs"</source>
</quotation>
<quotation id="q22" date="1920">
<p>
That Crawford Tillinghast should ever have studied science and
philosophy was a mistake. These things should be left to the frigid
and impersonal investigator, for they offer two equally tragic
alternatives to the man of feeling and action; despair if he fail in
his quest, and terrors unutterable and unimaginable if he succeed.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"From Beyond"</source>
</quotation>
<quotation id="q23" date="1920">
<p>
We shall see that at which dogs howl in the dark, and that at
which cats prick up their ears after midnight.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"From Beyond"</source>
</quotation>
<quotation id="q24" date="1920">
<p>
I have harnessed the shadows that stride from world to world to
sow death and madness...
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"From Beyond"</source>
</quotation>
<quotation id="q25" date="1920">
<p>
Searchers after horror haunt strange, far places.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"The Picture in the House"</source>
</quotation>
<quotation id="q26" date="1920">
<p>
For them are the catacombs of Ptolemais, and the carven mausolea
of the nightmare countries. They climb to the moonlit towers of ruined
Rhine castles, and falter down black cobwebbed steps beneath the
scattered stones of forgotten cities in Asia. The haunted wood and the
desolate mountain are their shrines, and they linger around the
sinister monoliths on uninhabited islands. But the true epicure in the
terrible, to whom a new thrill of unutterable ghastliness is the chief
end and justification of existence, esteems most of all the ancient,
lonely farmhouses of backwoods New England; for there the dark
elements of strength, solitude, grotesqueness and ignorance combine to
form the perfection of the hideous.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"The Picture in the House"</source>
</quotation>
<quotation id="q27" date="1920">
<p>
By necessity practical and by philosophy stern, these folk were
not beautiful in their sins. Erring as all mortals must, they were
forced by their rigid code to seek concealment above all else; so that
they came to use less and less taste in what they concealed.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"The Picture in the House"</source>
</quotation>
<quotation id="q28" date="1920">
<p>
Only the silent, sleepy, staring houses in the backwoods can
tell all that has lain hidden since the early days; and they are not
communicative, being loath to shake off the drowsiness which helps
them forget. Sometimes one feels that it would be merciful to tear
down these houses, for they must often dream.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"The Picture in the House"</source>
</quotation>
<quotation id="q29" date="1920">
<p>
Queer haow a <em>cravin'</em> gits a holt on ye -- As ye love
the Almighty, young man, don't tell nobody, but I swar ter Gawd thet
picter begun ta make me <em>hungry fer victuals I couldn't raise nor
buy</em> -- here, set still, what's ailin' ye? ...
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"The Picture in the House"</source>
</quotation>
<quotation id="q30" date="1920">
<p>
These folk say that on a table in a bare room on the ground
floor are many peculiar bottles, in each a small piece of lead
suspended pendulum-wise from a string. And they say that the Terrible
Old Man talks to these bottles, addressing them by such names as Jack,
Scar-Face, Long Tom, Spanish Joe, Peters, and Mate Ellis, and that
whenever he speaks to a bottle the little lead pendulum within makes
certain definite vibrations as if in answer. Those who have watched
the tall, lean, Terrible Old Man in these peculiar conversations, do
not watch him again.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"The Terrible Old Man"</source>
</quotation>
<quotation id="q31" date="1920">
<p>
I recall that the people went about with pale and worried faces,
and whispered warnings and prophecies which no one dared consciously
repeat or acknowledge to himself that he had heard. A sense of
monstrous guilt was upon the land, and out of the abysses between the
stars swept chill currents that made men shiver in dark and lonely
places.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"Nyarlathotep"</source>
</quotation>
<quotation id="q32" date="1920">
<p>
I remember when Nyarlathotep came to my city the great, the old,
the terrible city of unnumbered crimes.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"Nyarlathotep"</source>
</quotation>
<quotation id="q33" date="1921">
<p>
"That is not dead which can eternal lie / And with strange aeons
even death may die."
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>Quoting the <cite>Necronomicon</cite>, in "The Nameless City"</source>
</quotation>
<quotation id="q34" date="1921">
<p>
Wherefore do ye toil; is it not that ye may live and be happy?
And if ye toil only that ye may toil more, when shall happiness find
you? Ye toil to live, but is not life made of beauty and song? ...
Toil without song is like a weary journey without an end. Were not
death more pleasing?
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"The Quest of Iranon"</source>
</quotation>
<quotation id="q35" date="1921">
<p>
Unhappy is he to whom the memories of childhood bring only fear
and sadness.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"The Outsider"</source>
</quotation>
<quotation id="q36" date="1921">
<p>
Despite my most careful searches and investigations, I have
never since been able to find the Rue d'Auseil. But I am not wholly
sorry; either for this or for the loss in undreamable abysses of the
closely written sheets which alone could have explained the music of
Erich Zann.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"The Music of Erich Zann"</source>
</quotation>
<quotation id="q37" date="1921">
<p>
Memories and possibilities are ever more hideous than realities.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"Herbert West -- Re-Animator"</source>
</quotation>
<quotation id="q38" date="1921">
<p>
I could not but feel that some noxious marine mind had declared
a war of extermination upon all the solid ground, perhaps abetted by
the angry sky.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft and Winifred Virginia Jackson</author>
<source>"The Crawling Chaos"</source>
</quotation>
<quotation id="q39" date="1921">
<p>
And when the smoke cleared away, and I sought to look upon the
earth, I beheld against the background of cold, humorous stars only
the dying sun and the pale mournful planets searching for their
sister.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft and Winifred Virginia Jackson</author>
<source>"The Crawling Chaos"</source>
</quotation>
<quotation id="q40" date="1921">
<p>
When the last days were upon me, and the ugly trifles of
existence began to drive me to madness like the small drops of water
that torturers let fall ceaselessly upon one spot of their victim's
body, I loved the irradiate refuge of sleep.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"Ex Oblivione"</source>
</quotation>
<quotation id="q41" date="1921">
<p>
... for doubt and secrecy are the lure of lures, and no new
horror can be more terrible than the daily torture of the commonplace.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"Ex Oblivione"</source>
</quotation>
<quotation id="q42" date="1922">
<p>
It is uncommon to fire all six shots of a revolver with great
suddenness when one would probably be sufficient, but many things in
the life of Herbert West were uncommon.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"Herbert West--Reanimator"</source>
</quotation>
<quotation id="q43" date="1922">
<p>
It is natural that such a thing as a dead man's scream should
give horror, for it is obviously not a pleasing or ordinary
occurrence; but I was used to similar experiences, hence suffered on
this occasion only because of a particular circumstance.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"Herbert West--Reanimator"</source>
</quotation>
<quotation id="q44" date="1922">
<p>
... West had emerged with a soul calloused and seared, and a
hardened eye which sometimes glanced with a kind of hideous and
calculating appraisal at men of especially sensitive brain and
especially vigorous physique. Toward the last I became acutely afraid
of West, for he began to look at me that way.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"Herbert West--Reanimator"</source>
</quotation>
<quotation id="q45" date="1922">
<p>
Their outlines were human, semi-human, fractionally human, and
not human at all -- the horde was grotesquely heterogeneous.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"Herbert West--Reanimator"</source>
</quotation>
<quotation id="q46" date="1922">
<p>
They imply that I am either a madman or a murderer -- probably I
am mad. But I might not be mad if those accursed tomb-legions had not
been so silent.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"Herbert West--Reanimator"</source>
</quotation>
<quotation id="q47" date="1922">
<p>
Men of learning suspect it little, and ignore it mostly.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"Hypnos"</source>
</quotation>
<quotation id="q48" date="1922">
<p>
Among the agonies of these after days is that chief of torments
-- inarticulateness.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"Hypnos"</source>
</quotation>
<quotation id="q49" date="1922">
<p>
There were nauseous musical instruments, stringed, brass, and
wood-wind, on which St. John and I sometimes produced dissonances of
exquisite morbidity and cacodaemoniacal ghastliness ...
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"The Hound"</source>
</quotation>
<quotation id="q50" date="1922">
<p>
We were no vulgar ghouls, but worked only under certain
conditions of mood, landscape, environment, weather, season, and
moonlight. These pastimes were to us the most exquisite form of
aesthetic expression, and we gave their details a fastidious technical
care.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"The Hound"</source>
</quotation>
<quotation id="q51" date="1922">
<p>
Alien it indeed was to all art and literature which sane and
balanced readers know, but we recognized it as the thing hinted of in
the forbidden Necronomicon of the mad Arab Abdul Alhazred...
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>The first mention of the Necronomicon, in "The Hound"</source>
</quotation>
<quotation id="q52" date="1922">
<p>
As we hastened from that abhorrent spot, the stolen amulet in
St. John's pocket, we thought we saw the bats descend in a body to the
earth we had so lately rifled, as if seeking for some cursed and
unholy nourishment. But the autumn moon shone weak and pale, and we
could not be sure. So, too, as we sailed the next day away from
Holland to our home, we thought we heard the faint distant baying of
some gigantic hound in the background. But the autumn wind moaned sad
and wan, and we could not be sure.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"The Hound"</source>
</quotation>
<quotation id="q53" date="1922">
<p>
History had led me to this archaic grave. History, indeed, was
all I had after everything else ended in mocking Satanism.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"The Lurking Fear"</source>
</quotation>
<quotation id="q54" date="1923">
<p>
Besides, he added, my constant talk about "unnamable" and
"unmentionable" things was a very puerile device, quite in keeping
with my lowly standing as an author.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"The Unnamable"</source>
</quotation>
<quotation id="q55" date="1923">
<p>
We know things, he said, only through our five senses or our
religious intuitions; wherefore it is quite impossible to refer to any
object or spectacle which cannot be clearly depicted by the solid
definitions of fact or the correct doctrines of theology -- preferably
those of the Congregationalists, with whatever modifications tradition
and Sir Arthur Conan Doyle may supply.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"The Unnamable"</source>
</quotation>
<quotation id="q56" date="1923">
<p>
The witchcraft terror is a horrible ray of light on what was
stewing in men's crushed brains, but even that is a trifle. There was
no beauty; no freedom -- we can see that from the architectural and
household remains, and the poisonous sermons of the cramped divines.
And inside that rusted iron strait-jacket lurked gibbering
hideousness, perversion, and diabolism. Here, truly, was the
apotheosis of the unnamable.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"The Unnamable"</source>
</quotation>
<quotation id="q57" date="1923">
<p>
I was far from home, and the spell of the eastern sea was upon
me.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"The Festival"</source>
</quotation>
<quotation id="q58" date="1923">
<p>
It was the Yuletide, that men call Christmas though they know in
their hearts it is older than Bethlehem and Babylon, older than
Memphis and mankind.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"The Festival"</source>
</quotation>
<quotation id="q59" date="1923">
<p>
I was the only one who came back that night to the old fishing
town as legend bade, for only the poor and the lonely remember.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"The Festival"</source>
</quotation>
<quotation id="q60" date="1923">
<p>
Out of the unimaginable blackness beyond the gangrenous glare of
that cold flame, out of the Tartarean leagues through which that oily
river rolled uncanny, unheard, and unsuspected, there flopped
rhythmically a horde of tame, trained, hybrid winged things that no
sound eye could ever wholly grasp, or sound brain ever wholly
remember. They were not altogether crows, nor moles, nor buzzards, nor
ants, nor vampire bats, nor decomposed human beings, but something I
cannot and must not recall.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"The Festival"</source>
</quotation>
<quotation id="q61" date="1923">
<p>
"The nethermost caverns," wrote the mad Arab, "are not for the
fathoming of eyes that see; for their marvels are strange and
terrific. Cursed the ground where dead thoughts live new and oddly
bodied, and evil the mind that is held by no head."
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"The Festival", quoting the <cite>Necronomicon</cite></source>
</quotation>
<quotation id="q62" date="1923">
<p>
For it is of old rumour that the soul of the devil-bought hastes
not from his charnel clay, but fats and instructs <em>the very worm
that gnaws</em>; till out of corruption horrid life springs, and the
dull scavengers of earth wax crafty to vex it and swell monstrous to
plague it. Great holes secretly are digged where earth's pores ought
to suffice, and things have learnt to walk that ought to crawl.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"The Festival", quoting the <cite>Necronomicon</cite></source>
</quotation>
<quotation id="q63" date="1923">
<p>
Through all this horror my cat stalked unperturbed. Once I saw
him monstrously perched atop a mountain of bones, and wondered at the
secrets that might lie behind his yellow eyes.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"The Rats in the Walls"</source>
</quotation>
<quotation id="q64" date="1923">
<p>
Ultimate horror often paralyses memory in a merciful way.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"The Rats in the Walls"</source>
</quotation>
<quotation id="q65" date="1923">
<p>
Prying curiosity means death.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"The Rats in the Walls"</source>
</quotation>
<quotation id="q66" date="1923">
<p>
They must know it was the rats; the slithering, scurrying rats
whose scampering will never let me sleep; the daemon rats that race
behind the padding in this room and beckon me down to greater horrors
than I have ever known; the rats they can never hear; the rats, the
rats in the walls.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"The Rats in the Walls"</source>
</quotation>
<quotation id="q67" date="1924">
<p>
I dreamed that I was in the grasp of a great and horrible paw; a
yellow, hairy, five-clawed paw which had reached out of the earth to
crush and engulf me. And when I stopped to reflect what the paw was,
it seemed to me that it was Egypt.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"Under the Pyramids"</source>
</quotation>
<quotation id="q68" date="1924">
<p>
But I survived, and I know it was only a dream.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"Under the Pyramids"</source>
</quotation>
<quotation id="q69" date="1924">
<p>
From even the greatest of horrors irony is seldom absent.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"The Shunned House"</source>
</quotation>
<quotation id="q70" date="1924">
<p>
We were not, as I have said, in any sense childishly
superstitious, but scientific study and reflection had taught us that
the known universe of three dimensions embraces the merest fraction of
the whole cosmos of substance and energy. In this case an overwhelming
preponderance of evidence from numerous authentic sources pointed to
the tenacious existence of certain forces of great power and, so far
as the human point of view is concerned, exceptional malignancy.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"The Shunned House"</source>
</quotation>
<quotation id="q71" date="1924">
<p>
There are horrors beyond horrors, and this was one of those
nuclei of all dreamable hideousness which the cosmos saves to blast an
accursed and unhappy few.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"The Shunned House"</source>
</quotation>
<quotation id="q72" date="1924">
<p>
The next spring no more pale grass and strange weeds came up in
the shunned house's terraced garden, and shortly afterward Carrington
Harris rented the place. It it still spectral, but its strangeness
fascinates me, and I shall find mixed with my relief a queer regret
when it is torn down to make way for a tawdry shop or vulgar apartment
building. The barren old trees in the yard have begun to bear small,
sweet apples, and last year the birds nested in their gnarled boughs.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"The Shunned House"</source>
</quotation>
<quotation id="q73" date="1925">
<p>
This was a simple explanation which everyone could understand,
and because Malone was not a simple person he perceived that he had
better let it suffice.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"The Horror at Red Hook"</source>
</quotation>
<quotation id="q74" date="1925">
<p>
More people enter Red Hook than leave it -- or at least, than
leave it by the landward side -- and those who are not loquacious are
the likeliest to leave.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"The Horror at Red Hook"</source>
</quotation>
<quotation id="q75" date="1925">
<p>
I saw him on a sleepless night when I was walking desperately to
save my soul and my vision.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"He"</source>
</quotation>
<quotation id="q76" date="1925">
<p>
My coming to New York had been a mistake; for whereas I had
looked for poignant wonder and inspiration in the teeming labyrinths
of ancient streets that twist endlessly from forgotten courts and
squares and waterfronts to courts and squares and waterfronts equally
forgotten, and in the Cyclopean modern towers and pinnacles that rise
blackly Babylonian under waning moons, I had found instead only a
sense of horror and oppression which threatened to master, paralyse,
and annihilate me.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"He"</source>
</quotation>
<quotation id="q77" date="1925">
<p>
So instead of the poems I had hoped for, there came only a
shuddering blankness and ineffable loneliness; and I saw at last a
fearful truth which no one had ever dared to breathe before -- the
unwhisperable secret of secrets -- that fact that this city of stone
and stridor is not a sentient perpetuation of Old New York as London
is of Old London and Paris of Old Paris, but that it is in fact quite
dead, its sprawling body imperfectly embalmed and infested with queer
animate things which have nothing to do with it as it was in life.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"He"</source>
</quotation>
<quotation id="q78" date="1926">
<p>
Then one summer there came a philosopher into Kingsport. His
name was Thomas Olney, and he taught ponderous things in a college by
Narragansett Bay. With stout wife and romping children he came, and
his eyes were weary with seeing the same things for many years, and
thinking the same well-disciplined thoughts.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"The Strange High House in the Mist"</source>
</quotation>
<quotation id="q79" date="1926">
<p>
Then Olney saw lingering against the translucent squares of each
of the little dim windows in succession a queer black outline as the
caller moved inquisitively about before leaving; and he was glad his
host had not answered the knocking. For there are strange objects in
the great abyss, and the seeker of dreams must take care not to stir
up or meet the wrong ones.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"The Strange High House in the Mist"</source>
</quotation>
<quotation id="q80" date="1926">
<p>
Then the shadows began to gather; first little furtive ones
under the table, and then bolder ones in the dark panelled corners.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"The Strange High House in the Mist"</source>
</quotation>
<quotation id="q81" date="1926">
<p>
And ever since that hour, through dull dragging years of
greyness and weariness, the philosopher has laboured and eaten and
slept and done uncomplaining the suitable deeds of a citizen. Not any
more does he long for the magic of farther hills, or sigh for secrets
that peer like green reefs from a bottomless sea. The sameness of his
days no longer gives him sorrow, and well-disciplined thoughts have
grown enough for his imagination.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"The Strange High House in the Mist"</source>
</quotation>
<quotation id="q82" date="1926">
<p>
And they do not wish quaint Kingsport with its climbing lanes
and archaic gables to drag listless down the years while voice by
voice the laughing chorus grows stronger and wilder in that unknown
and terrible eyrie where mists and the dreams of mists stop to rest on
their way from the sea to the skies.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"The Strange High House in the Mist"</source>
</quotation>
<quotation id="q83" date="1926">
<p>
All these things, however, the Elder Ones only may decide; and
meanwhile the morning mist still comes up by that lonely vertiginous
peak with the steep ancient house, that grey low-eaved house where
none is seen but where evening brings furtive lights while the north
wind tells of strange revels.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"The Strange High House in the Mist"</source>
</quotation>
<quotation id="q84" date="1926">
<p>
And when tales fly thick in the grottoes of tritons, and conches
in seaweed cities blow wild tunes learned from the Elder Ones, then
great eager vapours flock to heaven laden with lore; and Kingsport,
nestling uneasy on its lesser cliffs below that awesome hanging
sentinel of rock, sees oceanward only a mystic whiteness, as if the
cliff's rim were the rim of all earth, and the solemn bells of the
buoys tolled free in the aether of faery.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"The Strange High House in the Mist"</source>
</quotation>
<quotation id="q85" date="1926">
<p>
The only saving grace of the present is that it's too damned
stupid to question the past very closely.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"Pickman's Model"</source>
</quotation>
<quotation id="q86" date="1926">
<p>
... another conception somehow shocked me more than all the rest
-- a scene in an unknown vault, where scores of the beasts crowded
about one who held a well-known Boston guide-book and was evidently
reading aloud. All were pointing to a certain passage, and every face
seemed so distorted with epileptic and reverberant laughter that I
almost thought I heard the fiendish echoes. The title of the picture
was, "Holmes, Lowell, and Longfellow Lie Buried in Mount Auburn".
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"Pickman's Model"</source>
</quotation>
<quotation id="q87" date="1926">
<p>
The most merciful thing in the world, I think, is the inability
of the human mind to correlate all its contents.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"The Call of Cthulhu"</source>
</quotation>
<quotation id="q88" date="1926">
<p>
We live on a placid island of ignorance in the midst of black
seas of infinity, and it was not meant that we should voyage far.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"The Call of Cthulhu"</source>
</quotation>
<quotation id="q89" date="1926">
<p>
The sciences, each straining in its own direction, have hitherto
harmed us little; but some day the piecing together of dissociated
knowledge will open up such terrifying vistas of reality, and of our
frightful position therein, that we shall either go mad from the
revelation or flee from the deadly light into the peace and safety of
a new dark age.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"The Call of Cthulhu"</source>
</quotation>
<quotation id="q90" date="1926">
<p>
That glimpse, like all dread glimpses of truth, flashed out from
an accidental piecing together of separated things -- in this case an
old newspaper item and the notes of a dead professor.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"The Call of Cthulhu"</source>
</quotation>
<quotation id="q91" date="1926">
<p>
Above these apparent hieroglyphics was a figure of evidently
pictorial intent, though its impressionistic execution forbade a very
clear idea of its nature. It seemed to be a sort of monster, or symbol
representing a monster, of a form which only a diseased fancy could
conceive. If I say that my somewhat extravagant imagination yielded
simultaneous pictures of an octopus, a dragon, and a human caricature,
I shall not be unfaithful to the spirit of the thing. A pulpy,
tentacled head surmounted a grotesque and scaly body with rudimentary
wings, but it was the <em>general outline</em> of the whole which made
it most shockingly frightful.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"The Call of Cthulhu"</source>
</quotation>
<quotation id="q92" date="1926">
<p>
What seemed to be the main document was headed "CTHULHU CULT" in
characters painstakingly printed to avoid the erroneous reading of a
word so unheard-of.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"The Call of Cthulhu"</source>
</quotation>
<quotation id="q93" date="1926">
<p>
Ph'nglui mglw'nafh Cthulhu R'lyeh wgah'nagl fhtagn. ("In his
house at R'lyeh dead Cthulhu waits dreaming.")
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"The Call of Cthulhu"</source>
</quotation>
<quotation id="q94" date="1926">
<p>
When the stars were right, They could plunge from world to world
through the sky; but when the stars were wrong, They could not live.
But although They no longer lived, They would never really die.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"The Call of Cthulhu"</source>
</quotation>
<quotation id="q95" date="1926">
<p>
That cult would never die till the stars came right again, and
the secret priests would take great Cthulhu from His tomb to revive
His subjects and resume His rule of earth. The time would be easy to
know, for then mankind would have become as the Great Old Ones; free
and wild and beyond good and evil, with laws and morals thrown aside
and all men shouting and killing and revelling in joy.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"The Call of Cthulhu"</source>
</quotation>
<quotation id="q96" date="1926">
<p>
I now felt gnawing at my vitals that dark terror which will
never leave me till I, too, am at rest; "accidentally" or otherwise.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"The Call of Cthulhu"</source>
</quotation>
<quotation id="q97" date="1926">
<p>
It is a mistake to fancy that horror is associated inextricably
with darkness, silence, and solitude. I found it in the glare of
mid-afternoon, in the clangour of a metropolis, and in the teeming
midst of a shabby and commonplace rooming-house with a prosaic
landlady and two stalwart men by my side.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"Cool Air"</source>
</quotation>
<quotation id="q98" date="1926">
<p>
Calm, lasting beauty comes only in dream, and this solace the
world had thrown away when in its worship of the real it threw away
the secrets of childhood and innocence.
</p>
<author rdf:resource="http://dbpedia.org/resource/H._P._Lovecraft">H.P. Lovecraft</author>
<source>"The Silver Key"</source>
</quotation>
<quotation id="q99" date="1926">
<p>
It was after this that he cultivated deliberate illusion, and
dabbled in the notions of the bizarre and the eccentric as an antidote
for the commonplace. Most of these, however, soon shewed their poverty
and barrenness; and he saw that the popular doctrines of occultism are
as dry and inflexible as those of science, yet without even the
slender palliative of truth to redeem them.