-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpoetry.html
More file actions
2638 lines (2379 loc) · 90.7 KB
/
poetry.html
File metadata and controls
2638 lines (2379 loc) · 90.7 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
---
layout: subpage
title: Poetry
javascript: reading.js
---
<a href="{{ site.baseurl }}/reading" style="float: right; position: relative; top: -50px;"><button type="button">See Reading</button></a>
<div class="quote">carmina erunt formae tot monumenta tuae.<br/>Each of these poems will be a monument to your beauty.
<div class="author">Propertius</div>
</div>
<p>Poems I know.</p>
<div class="toc">
<ul>
</ul>
</div>
<div class="poem english">
<div class="title">She walks in beauty, like the night</div>
<div class="author">George Gordon, Lord Byron</div>
<div class="date">April 2004</div>
<pre class="text" data-lines="18">
She walks in beauty, like the night
Of cloudless climes and starry skies;
And all that’s best of dark and bright
Meet in her aspect and her eyes;
Thus mellowed to that tender light
Which heaven to gaudy day denies.
One shade the more, one ray the less,
Had half impaired the nameless grace
Which waves in every raven tress,
Or softly lightens o’er her face;
Where thoughts serenely sweet express,
How pure, how dear their dwelling-place.
And on that cheek, and o’er that brow,
So soft, so calm, yet eloquent,
The smiles that win, the tints that glow,
But tell of days in goodness spent,
A mind at peace with all below,
A heart whose love is innocent!</pre>
</div>
<div class="poem english">
<div class="title">When you are old</div>
<div class="author">William Butler Yeats</div>
<div class="date">October 2005</div>
<pre class="text" data-lines="12">
When you are old and gray and full of sleep
And nodding by the fire, take down this book,
And slowly read, and dream of the soft look
Your eyes had once, and of their shadows deep;
How many loved your moments of glad grace,
And loved your beauty with love false or true;
But one man loved the pilgrim soul in you,
And loved the sorrows of your changing face.
And bending down beside the glowing bars,
Murmur, a little sadly, how love fled
And paced upon the mountains overhead,
And hid his face amid a crowd of stars.</pre>
</div>
<div class="poem english">
<div class="title">The world is too much with us</div>
<div class="author">William Wordsworth</div>
<div class="date">October 2005</div>
<pre class="text" data-lines="14">
The world is too much with us; late and soon,
Getting and spending, we lay waste our powers;—
Little we see in Nature that is ours;
We have given our hearts away, a sordid boon!
This Sea that bares her bosom to the moon;
The winds that will be howling at all hours,
And are up-gathered now like sleeping flowers;
For this, for everything, we are out of tune;
It moves us not. Great God! I’d rather be
A Pagan suckled in a creed outworn;
So might I, standing on this pleasant lea,
Have glimpses that would make me less forlorn;
Have sight of Proteus rising from the sea;
Or hear old Triton blow his wreathèd horn.</pre>
</div>
<div class="poem english">
<div class="title">The Parable of the Old Man and the Young</div>
<div class="author">Wilfred Owen</div>
<div class="date">November 2005</div>
<pre class="text" data-lines="16">
So Abram rose, and clave the wood, and went,
And took the fire with him, and a knife.
And as they sojourned both of them together,
Isaac the first-born spake and said, My Father,
Behold the preparations, fire and iron,
But where the lamb for this burnt-offering?
Then Abram bound the youth with belts and straps,
and builded parapets and trenches there,
And stretchèd forth the knife to slay his son.
When lo! an angel called him out of heaven,
Saying, Lay not thy hand upon the lad,
Neither do anything to him, thy son.
Behold, caught in a thicket by its horns,
A Ram. Offer the Ram of Pride instead.
But the old man would not so, but slew his son,
And half the seed of Europe, one by one.</pre>
</div>
<div class="poem english">
<div class="title">The End</div>
<div class="author">Wilfred Owen</div>
<div class="date">November 2005</div>
<pre class="text" data-lines="14">
After the blast of lightning from the east,
The flourish of loud clouds, the Chariot throne,
After the drums of time have rolled and ceased
And from the bronze west long retreat is blown,
Shall Life renew these bodies? Of a truth
All death will he annul, all tears assuage?
Or fill these void veins full again with youth
And wash, with an immortal water, age?
When I do ask <span class="link" data-link="white-age">white Age</span>, he saith not so, —
"My head hangs weighed with snow."
And when I hearken to the Earth she saith
"My fiery heart sinks aching. It is death.
Mine ancient scars shall not be glorified
Nor my titanic tears, the seas, be dried."</pre>
</div>
<div class="poem latin">
<div class="title">Carmen 1</div>
<div class="author">Catullus</div>
<div class="date">December 2005</div>
<pre class="text" data-lines="10">
Cui dono lepidum novum libellum
arida modo pumice expolitum?
Corneli, tibi: namque tu solebas
meas esse aliquid putare nugas,
iam tum, cum ausus es unus Italorum
omne aevum tribus explicare cartis,
doctis, Iuppiter, et laboriosis!
Quare habe tibi quidquid hoc libelli—
qualecumque, quod, o patrona virgo,
plus uno maneat perenne saeclo.</pre>
</div>
<div class="poem english">
<div class="title">Strange Meeting</div>
<div class="author">Wilfred Owen</div>
<div class="date">March 2007</div>
<pre class="text" data-lines="44">
<span class="link" data-link="lethe">It seemed that out of battle I escaped</span>
Down some profound dull tunnel, long since scooped
Through granites which titanic wars had groined.
Yet also there encumbered sleepers groaned,
Too fast in thought or death to be bestirred.
Then, as I probed them, one sprang up, and stared
With piteous recognition in fixed eyes,
Lifting distressful hands, as if to bless.
And by his smile, I knew that sullen hall,—
By his dead smile I knew we stood in Hell.
With a thousand fears that vision's face was grained;
Yet no blood reached there from the upper ground,
And no guns thumped, or down the flues made moan.
“Strange friend,” I said, “here is no cause to mourn.”
“None,” said that other, “save the undone years,
The hopelessness. Whatever hope is yours,
Was my life also; I went hunting wild
After the wildest beauty in the world,
Which lies not calm in eyes, or braided hair,
But mocks the steady running of the hour,
And if it grieves, grieves richlier than here.
For by my glee might many men have laughed,
And of my weeping something had been left,
Which must die now. I mean the truth untold,
The pity of war, the pity war distilled.
Now men will go content with what we spoiled.
Or, discontent, boil bloody, and be spilled.
They will be swift with swiftness of the tigress.
None will break ranks, though nations trek from progress.
Courage was mine, and I had mystery;
Wisdom was mine, and I had mastery:
To miss the march of this retreating world
Into vain citadels that are not walled.
Then, when much blood had clogged their chariot-wheels,
I would go up and wash them from sweet wells,
Even with truths that lie too deep for taint.
I would have poured my spirit without stint
But not through wounds; not on the cess of war.
Foreheads of men have bled where no wounds were.
“I am the enemy you killed, my friend.
I knew you in this dark: for so you frowned
Yesterday through me as you jabbed and killed.
I parried; but my hands were loath and cold.
<span class="link" data-link="sleep">Let us sleep now. . . .</span>”</pre>
</div>
<div class="poem english">
<div class="title">Ozymandias</div>
<div class="author">Percy Bysshe Shelley</div>
<div class="date">July 2008</div>
<pre class="text" data-lines="14">
I met a traveller from an antique land
Who said: "Two vast and trunkless legs of stone
Stand in the desert. Near them, on the sand,
Half sunk, a shattered visage lies, whose frown,
And wrinkled lip, and sneer of cold command,
Tell that its sculptor well those passions read
Which yet survive, stamped on these lifeless things,
The hand that mocked them and the heart that fed.
And on the pedestal these words appear:
"My name is Ozymandias, king of kings:
Look on my works, ye Mighty, and despair!"
Nothing beside remains. Round the decay
Of that colossal wreck, boundless and bare
The lone and level sands stretch far away."</pre>
</div>
<div class="poem english">
<div class="title">This living hand</div>
<div class="author">John Keats</div>
<div class="date">July 2008</div>
<pre class="text" data-lines="8">
This living hand, now warm and capable
Of earnest grasping, would, if it were cold
And in the icy silence of the tomb,
So haunt thy days and chill thy dreaming nights
That thou would wish thine own heart dry of blood
So in my veins red life might stream again,
And thou be conscience-calm’d–see here it is–
I hold it towards you.</pre>
</div>
<div class="poem english">
<div class="title">Song of Songs</div>
<div class="author">Wilfred Owen</div>
<div class="date">November 4, 2008</div>
<pre class="text" data-lines="12">
Sing me at dawn but only with your laugh:
Like sprightly Spring that laugheth into leaf;
Like Love, that cannot flute for smiling at Life.
Sing to me only with your speech all day,
As voluble leaflets do. Let viols die.
The least word of your lips is melody.
Sing me at dusk, but only with your sigh;
Like lifting seas it solaceth: breathe so,
All voicelessly, the sense that no songs say.
Sing me at midnight with your murmurous heart;
And let its moaning like a chord be heard
Surging through you and sobbing unsubdued.</pre>
</div>
<div class="poem english">
<div class="title">since feeling is first</div>
<div class="author">E.E. Cummings</div>
<div class="date">November 15, 2008</div>
<pre class="text" data-lines="16">
since feeling is first
who pays any attention
to the syntax of things
will never wholly kiss you;
wholly to be a fool
while Spring is in the world
my blood approves,
and kisses are better fate
than wisdom
lady i swear by all flowers. Don't cry
—the best gesture of my brain is less than
your eyelids' flutter which says
we are for each other: then
laugh, leaning back in my arms
for life's not a paragraph
And death i think is no parenthesis</pre>
</div>
<div class="poem english">
<div class="title">I saw his round mouth’s crimson</div>
<div class="author">Wilfred Owen</div>
<div class="date">November 2008</div>
<pre class="text" data-lines="8">
I saw his round mouth’s crimson deepen as it fell,
Like a sun, in his last deep hour;
Watched the magnificent recession of farewell,
Clouding, half gleam, half glower,
And a last splendour burn the heavens of his cheek.
And in his eyes
The cold stars lighting, very old and bleak,
In different skies.</pre>
</div>
<div class="poem latin">
<div class="title">Carmen 9</div>
<div class="author">Horace</div>
<div class="date">December 4, 2008</div>
<pre class="text" data-lines="24">
Vides ut alta stet nive candidum
Soracte nec iam sustineant onus
silvae laborantes geluque
flumina constiterint acuto?
Dissolve frigus ligna super foco
large reponens atque benignius
<span class="link" data-link="vinum">deprome quadrimum Sabina</span>,
o Thaliarche, merum diota.
Permitte divis cetera, qui simul
strauere ventos aequore fervido
deproeliantis, nec cupressi
nec veteres agitantur orni.
Quid sit futurum cras, <span class="link" data-link="quaesieri">fuge quaerere</span>, et
quem fors dierum cumque dabit, lucro
adpone nec dulcis amores
sperne, puer, neque tu choreas,
donec virenti canities abest
morosa. Nunc et Campus et areae
lenesque sub noctem susurri
composita repetantur hora,
nunc et latentis proditor intumo
gratus puellae risus ab angulo
pignusque dereptum lacertis
aut digito male pertinaci.</pre>
</div>
<div class="poem latin">
<div class="title">Carmen 5</div>
<div class="author">Horace</div>
<div class="date">December 9, 2008</div>
<pre class="text" data-lines="16">
Quis multa gracilis te puer in rosa
perfusus liquidis urget odoribus
grato, Pyrrha, sub antro?
cui flavam religas comam,
simplex munditiis? Heu quotiens fidem
mutatosque deos flebit et aspera
nigris aequora ventis
emirabitur insolens,
qui nunc te fruitur credulus aurea,
qui semper vacuam, semper amabilem
sperat, nescius aurae
fallacis. Miseri, quibus
intemptata nites. Me tabula sacer
votiva paries indicat uvida
suspendisse potenti
vestimenta maris deo.</pre>
</div>
<div class="poem latin">
<div class="title">Carmen 51</div>
<div class="author">Catullus</div>
<div class="date">December 9, 2008</div>
<pre class="text" data-lines="16">
Ille mi par esse deo videtur,
ille, si fas est, superare divos,
qui sedens adversus identidem te
spectat et audit
<span class="link" data-link="dulce">dulce ridentem</span>, misero quod omnis
eripit sensus mihi: nam simul te,
Lesbia, aspexi, nihil est super mi
[vocis in ore,]
lingua sed torpet, tenuis sub artus
flamma demanat, sonitu suopte
tintinant aures gemina, teguntur
lumina nocte.
otium, Catulle, tibi molestum est:
otio exsultas nimiumque gestis:
otium et reges prius et beatas
perdidit urbes.</pre>
</div>
<div class="poem latin">
<div class="title">Carmen 85</div>
<div class="author">Catullus</div>
<div class="date">December 2008</div>
<pre class="text" data-lines="2">
Odi et amo. quare id faciam, fortasse requiris.
nescio, sed fieri sentio et excrucior.</pre>
</div>
<div class="poem english">
<div class="title">i carry your heart with me(i carry it in</div>
<div class="author">E.E. Cummings</div>
<div class="date">December 9, 2008</div>
<pre class="text" data-lines="14">
i carry your heart with me(i carry it in
my heart)i am never without it(anywhere
i go you go,my dear;and whatever is done
by only me is your doing,my darling)
i fear
no fate(for you are my fate,my sweet)i want
no world(for beautiful you are my world,my true)
and it’s you are whatever a moon has always meant
and whatever a sun will always sing is you
here is the deepest secret nobody knows
(here is the root of the root and the bud of the bud
and the sky of the sky of a tree called life;which grows
higher than soul can hope or mind can hide)
and this is the wonder that's keeping the stars apart
i carry your heart(i carry it in my heart)</pre>
</div>
<div class="poem latin">
<div class="title">Elegia 21</div>
<div class="author">Propertius</div>
<div class="date">December 2008</div>
<pre class="text" data-lines="10">
Tu, qui consortem properas evadere casum,
miles ab Etruscis saucius aggeribus,
quid nostro gemitu turgentia lumina torques?
pars ego sum vestrae proxima militiae.
sic te servato possint gaudere parentes,
haec soror acta tuis sentiat e lacrimis:
Gallum per medios ereptum Caesaris enses
effugere ignotas non potuisse manus;
et quaecumque super dispersa invenerit ossa
montibus Etruscis, haec sciat esse mea.</pre>
</div>
<div class="poem spanish">
<div class="title">Si alguien llama a tu puerta</div>
<div class="author">Gabriel García Márquez</div>
<div class="date">April 2009</div>
<pre class="text" data-lines="14">
Si alguien llama a tu puerta, amiga mía,
y algo en tu sangre late y no reposa
y en su tallo de agua, temblorosa,
la fuente es una líquida armonía.
Si alguien llama a tu puerta y todavía
te sobra tiempo para ser hermosa
y cabe todo abril en una rosa
y por la rosa se desangra el día.
Si alguien llama a tu puerta una mañana
sonora de palomas y campanas
y aún crees en el dolor y en la poesía.
Si aún la vida es verdad y el verso existe.
Si alguien llama a tu puerta y estás triste,
abre, que es el amor, amiga mía.<super><a href="#amiga-mia">*</a></super></pre>
</div>
<div class="poem english">
<div class="title">La Figlia che Piange</div>
<div class="author">T.S. Eliot</div>
<div class="date">July 1, 2009</div>
<pre class="text" data-lines="24">
<i>O quam te memorem virgo ...</i>
Stand on the highest pavement of the stair—
Lean on a garden urn—
Weave, weave the sunlight in your hair—
Clasp your flowers to you with a pained surprise—
Fling them to the ground and turn
With a fugitive resentment in your eyes:
But weave, weave the sunlight in your hair.
So I would have had him leave,
So I would have had her stand and grieve,
So he would have left
As the soul leaves the body torn and bruised,
As the mind deserts the body it has used.
I should find
Some way incomparably light and deft,
Some way we both should understand,
Simple and faithless as a smile and shake of the hand.
She turned away, but with the autumn weather
Compelled my imagination many days,
Many days and many hours:
Her hair over her arms and her arms full of flowers.
And I wonder how they should have been together!
I should have lost a gesture and a pose.
Sometimes these cogitations still amaze
The troubled midnight and the noon’s repose.</pre>
</div>
<div class="poem latin">
<div class="title">Carmen 11</div>
<div class="author">Horace</div>
<div class="date">July 8, 2009</div>
<pre class="text" data-lines="8">
<span class="link" data-link="quaesieri">Tu ne quaesieris</span> (scire nefas) quem mihi, quem tibi
finem di dederint, Leuconoe, nec Babylonios
temptaris numeros. Ut melius, quicquid erit pati,
seu pluris hiemes seu tribuit Iuppiter ultimam,
quae nunc oppositis debilitat pumicibus mare
Tyrrhenum. Sapias, <span class="link" data-link="vinum">vina liques</span>, et spatio brevi
spem longam reseces. Dum loquimur, fugerit invida
aetas: carpe diem, quam minimum credula postero.</pre>
</div>
<div class="poem english">
<div class="title">The Love Song of J. Alfred Prufrock</div>
<div class="author">T.S. Eliot</div>
<div class="date">July 30, 2009</div>
<pre class="text" data-lines="137">
<i>S’io credesse che mia risposta fosse
A persona che mai tornasse al mondo,
Questa fiamma staria senza piu scosse.
Ma percioche giammai di questo fondo
Non torno vivo alcun, s’i’odo il vero,
Senza tema d’infamia ti rispondo.</i>
Let us go then, you and I,
When the evening is spread out against the sky
Like a patient etherized upon a table;
Let us go, through certain half-deserted streets,
The muttering retreats
Of restless nights in one-night cheap hotels
And sawdust restaurants with oyster-shells:
Streets that follow like a tedious argument
Of insidious intent
To lead you to an overwhelming question ...
Oh, do not ask, “What is it?”
Let us go and make our visit.
In the room the women come and go
Talking of Michelangelo.
The yellow fog that rubs its back upon the window-panes,
The yellow smoke that rubs its muzzle on the window-panes,
Licked its tongue into the corners of the evening,
Lingered upon the pools that stand in drains,
Let fall upon its back the soot that falls from chimneys,
Slipped by the terrace, made a sudden leap,
And seeing that it was a soft October night,
Curled once about the house, and fell asleep.
And indeed there will be time
For the yellow smoke that slides along the street,
Rubbing its back upon the window-panes;
There will be time, there will be time
To prepare a face to meet the faces that you meet;
There will be time to murder and create,
And time for all the works and days of hands
That lift and drop a question on your plate;
Time for you and time for me,
And time yet for a hundred indecisions,
And for a hundred visions and revisions,
Before the taking of a toast and tea.
In the room the women come and go
Talking of Michelangelo.
And indeed there will be time
To wonder, “Do I dare?” and, “Do I dare?”
Time to turn back and descend the stair,
With a bald spot in the middle of my hair —
(They will say: “How his hair is growing thin!”)
My morning coat, my collar mounting firmly to the chin,
My necktie rich and modest, but asserted by a simple pin —
(They will say: “But how his arms and legs are thin!”)
Do I dare
Disturb the universe?
In a minute there is time
For decisions and revisions which a minute will reverse.
For I have known them all already, known them all:
Have known the evenings, mornings, afternoons,
I have measured out my life with coffee spoons;
I know the voices dying with a dying fall
Beneath the music from a farther room.
So how should I presume?
And I have known the eyes already, known them all—
The eyes that fix you in a formulated phrase,
And when I am formulated, sprawling on a pin,
When I am pinned and wriggling on the wall,
Then how should I begin
To spit out all the butt-ends of my days and ways?
And how should I presume?
And I have known the arms already, known them all—
Arms that are braceleted and white and bare
(But in the lamplight, downed with light brown hair!)
Is it perfume from a dress
That makes me so digress?
Arms that lie along a table, or wrap about a shawl.
And should I then presume?
And how should I begin?
Shall I say, I have gone at dusk through narrow streets
And watched the smoke that rises from the pipes
Of lonely men in shirt-sleeves, leaning out of windows? ...
I should have been a pair of ragged claws
Scuttling across the floors of silent seas.
And the afternoon, the evening, sleeps so peacefully!
<span class="link" data-link="fingers">Smoothed by long fingers,</span>
Asleep ... tired ... or it malingers,
Stretched on the floor, here beside you and me.
Should I, after tea and cakes and ices,
Have the strength to force the moment to its crisis?
But though I have wept and fasted, wept and prayed,
Though I have seen my head (grown slightly bald) brought in upon a platter,
I am no prophet — and here’s no great matter;
I have seen the moment of my greatness flicker,
And I have seen the eternal Footman hold my coat, and snicker,
And in short, I was afraid.
And would it have been worth it, after all,
After the cups, the marmalade, the tea,
Among the porcelain, among some talk of you and me,
Would it have been worth while,
To have bitten off the matter with a smile,
To have squeezed the universe into <span class="link" data-link="ball">a ball
To roll it</span> towards some overwhelming question,
To say: “I am Lazarus, come from the dead,
Come back to tell you all, I shall tell you all”—
If one, settling a pillow by her head
Should say: “That is not what I meant at all;
That is not it, at all.”
And would it have been worth it, after all,
Would it have been worth while,
After the sunsets and the dooryards and the sprinkled streets,
After the novels, after the teacups, after the skirts that trail along the floor—
And this, and so much more?—
It is impossible to say just what I mean!
But as if a magic lantern threw the nerves in patterns on a screen:
Would it have been worth while
If one, settling a pillow or throwing off a shawl,
And turning toward the window, should say:
“That is not it at all,
That is not what I meant, at all.”
No! I am not Prince Hamlet, nor was meant to be;
Am an attendant lord, one that will do
To swell a progress, start a scene or two,
Advise the prince; no doubt, an easy tool,
Deferential, glad to be of use,
Politic, cautious, and meticulous;
Full of high sentence, but a bit obtuse;
At times, indeed, almost ridiculous—
Almost, at times, the Fool.
I grow old ... I grow old ...
I shall wear the bottoms of my trousers rolled.
Shall I part my hair behind? Do I dare to eat a peach?
I shall wear white flannel trousers, and walk upon the beach.
I have <span class="link" data-link="mermaids">heard the mermaids singing</span>, each to each.
I do not think that they will sing to me.
I have seen them riding seaward on the waves
Combing the white hair of the waves blown back
When the wind blows the water white and black.
We have lingered in the chambers of the sea
By sea-girls wreathed with seaweed red and brown
Till human voices wake us, and we drown.</pre>
</div>
<div class="poem english">
<div class="title">Annabel Lee</div>
<div class="author">Edgar Allan Poe</div>
<div class="date">February 15, 2010</div>
<pre class="text" data-lines="41">
It was many and many a year ago,
In a kingdom by the sea,
That a maiden there lived whom you may know
By the name of Annabel Lee;
And this maiden she lived with no other thought
Than to love and be loved by me.
I was a child and she was a child,
In this kingdom by the sea,
But we loved with a love that was more than love—
I and my Annabel Lee—
With a love that the wingèd seraphs of Heaven
Coveted her and me.
And this was the reason that, long ago,
In this kingdom by the sea,
A wind blew out of a cloud, chilling
My beautiful Annabel Lee;
So that her highborn kinsmen came
And bore her away from me,
To shut her up in a sepulchre
In this kingdom by the sea.
The angels, not half so happy in Heaven,
Went envying her and me—
Yes!—that was the reason (as all men know,
In this kingdom by the sea)
That the wind came out of the cloud by night,
Chilling and killing my Annabel Lee.
But our love it was stronger by far than the love
Of those who were older than we—
Of many far wiser than we—
And neither the angels in Heaven above
Nor the demons down under the sea
Can ever dissever my soul from the soul
Of the beautiful Annabel Lee;
For the moon never beams, without bringing me dreams
Of the beautiful Annabel Lee;
And the stars never rise, but I feel the bright eyes
Of the beautiful Annabel Lee;
And so, all the night-tide, I lie down by the side
Of my darling—my darling—my life and my bride,
In her sepulchre there by the sea—
In her tomb by the sounding sea.</pre>
</div>
<div class="poem english">
<div class="title">This lunar beauty</div>
<div class="author">W.H. Auden</div>
<div class="date">February 16, 2010</div>
<pre class="text" data-lines="24">
This lunar beauty
Has no history
Is complete and early,
If beauty later
Bear any feature
It had a lover
And is another.
This like a dream
Keeps other time
And daytime is
The loss of this,
For time is inches
And the heart's changes
Where ghost has haunted
Lost and wanted.
But this was never
A ghost's endeavor
Nor finished this,
Was ghost at ease,
And till it pass
Love shall not near
The sweetness here
Nor sorrow take
His endless look.</pre>
</div>
<div class="poem english">
<div class="title">On First Looking Into Chapman's "Homer"</div>
<div class="author">John Keats</div>
<div class="date">February 28, 2010</div>
<pre class="text" data-lines="14">
Much have I travell'd in the realms of gold,
And many goodly states and kingdoms seen;
Round many western islands have I been
Which bards in fealty to Apollo hold.
Oft of one wide expanse had I been told
That deep-brow'd Homer ruled as his demesne,
Yet did I never breathe its pure serene
Till I heard Chapman speak out loud and bold.
—Then felt I like some watcher of the skies
When a new planet swims into his ken;
Or like stout Cortez, when with eagle eyes
He stared at the Pacific—and all his men
Look'd at each other with a wild surmise—
Silent, upon a peak in Darien.</pre>
</div>
<div class="poem english">
<div class="title">Art thou pale for weariness</div>
<div class="author">Percy Bysshe Shelley</div>
<div class="date">March 2010</div>
<pre class="text" data-lines="6">
Art thou pale for weariness
Of climbing heaven and gazing on the earth,
Wandering companionless
Among the stars that have a different birth,
And ever changing, like a joyless eye
That finds no object worth its constancy?</pre>
</div>
<div class="poem spanish">
<div class="title">Tengo miedo a perder la maravilla</div>
<div class="author">Federico García Lorca</div>
<div class="date">July 1, 2010</div>
<pre class="text" data-lines="14">
Tengo miedo a perder la maravilla
de tus ojos de estatua, y el acento
que de noche me pone en la mejilla
la solitaria rosa de tu aliento.
Tengo pena de ser en esta orilla
tronco sin ramas; y lo que más siento
es no tener la flor, pulpa o arcilla,
para el gusano de mi sufrimiento.
Si tú eres el tesoro oculto mío,
si eres mi cruz y mi dolor mojado,
si soy el perro de tu señorío,
no me dejes perder lo que he ganado
y decora las aguas de tu río
con hojas de mi otoño enajenado.</pre>
</div>
<div class="poem english">
<div class="title">Ode to a Nightingale</div>
<div class="author">John Keats</div>
<div class="date">July 12, 2010</div>
<pre class="text" data-lines="80">
My heart aches, and a drowsy numbness pains
My sense, as though of hemlock I had drunk,
Or emptied some dull opiate to the drains
One minute past, and <span class="link" data-link="lethe">Lethe-wards had sunk</span>:
'Tis not through envy of thy happy lot,
But being too happy in thine happiness,
That thou, light-wingèd Dryad of the trees,
In some melodious plot
Of beechen green, and shadows numberless,
Singest of summer in full-throated ease.
O for a draught of vintage! that hath been
Cool'd a long age in the deep-delvèd earth,
Tasting of Flora and the country-green,
Dance, and Provençal song, and sunburnt mirth!
O for a beaker full of the warm South!
Full of the true, the blushful Hippocrene,
With beaded bubbles winking at the brim,
And purple-stainèd mouth;
That I might drink, and leave the world unseen,
And with thee fade away into the forest dim:
Fade far away, dissolve, and quite forget
What thou among the leaves hast never known,
The weariness, the fever, and the fret
Here, where men sit and hear each other groan;
Where palsy shakes a few, sad, last grey hairs,
Where youth grows pale, and spectre-thin, and dies;
Where but to think is to be full of sorrow
And leaden-eyed despairs;
Where beauty cannot keep her lustrous eyes,
Or new Love pine at them beyond to-morrow.
Away! away! for I will fly to thee,
Not charioted by Bacchus and his pards,
But on the viewless wings of Poesy,
Though the dull brain perplexes and retards:
Already with thee! tender is the night,
And haply the Queen-Moon is on her throne,
Cluster'd around by all her starry Fays
But here there is no light,
Save what from heaven is with the breezes blown
Through verdurous glooms and winding mossy ways.
I cannot see what flowers are at my feet,
Nor what soft incense hangs upon the boughs,
But, in embalmèd darkness, guess each sweet
Wherewith the seasonable month endows
The grass, the thicket, and the fruit-tree wild;
White hawthorn, and the pastoral eglantine;
Fast-fading violets cover'd up in leaves;
And mid-May's eldest child,
<span class="link" data-link="musk-rose">The coming musk-rose, full of dewy wine,</span>
The murmurous haunt of flies on summer eves.
Darkling I listen; and, for many a time
I have been half in love with easeful Death,
Call'd him soft names in many a musèd rhyme,
To take into the air my quiet breath;
Now more than ever seems it rich to die,
To cease upon the midnight with no pain,
While thou art pouring forth thy soul abroad
In such an ecstasy!
Still wouldst thou sing, and I have ears in vain—
To thy high requiem become a sod.
Thou wast not born for death, immortal Bird!
No hungry generations tread thee down;
The voice I hear this passing night was heard
In ancient days by emperor and clown:
Perhaps the self-same song that found a path
Through the sad heart of Ruth, when, sick for home,
She stood in tears amid the alien corn;
The same that ofttimes hath
<span class="link" data-link="kipling" title="kipling">Charm'd magic casements, opening on the foam
Of perilous seas, in faery lands forlorn.</span>
Forlorn! the very word is like a bell
To toll me back from thee to my sole self!
Adieu! the fancy cannot cheat so well
As she is famed to do, deceiving elf.
Adieu! adieu! thy plaintive anthem fades
Past the near meadows, over the still stream,
Up the hill-side; and now 'tis buried deep
In the next valley-glades:
Was it a vision, or a waking dream?
Fled is that music:—do I wake or <span class="link" data-link="sleep">sleep</span>?
</pre>
</div>
<div class="poem spanish">
<div class="title">Soneto 17</div>
<div class="author">Pablo Neruda</div>
<div class="date">August 15, 2010</div>
<pre class="text" data-lines="14">
No te amo como si fueras rosa de sal, topacio
o flecha de claveles que propagan el fuego:
te amo como se aman ciertas cosas oscuras,
secretamente, entre la sombra y el alma.
Te amo como la planta que no florece y lleva
dentro de sí, escondida, la luz de aquellas flores,
y gracias a tu amor vive oscuro en mi cuerpo
el apretado aroma que ascendió de la tierra.
Te amo sin saber cómo, ni cuándo, ni de dónde,
te amo directamente sin problemas ni orgullo:
así te amo porque no sé amar de otra manera,
sino así de este modo en que no soy ni eres,
tan cerca que tu mano sobre mi pecho es mía,
tan cerca que se cierran tus ojos con mi sueño.</pre>
</div>
<div class="poem latin">
<div class="title">Carmen 22</div>
<div class="author">Horace</div>
<div class="date">January 4, 2011</div>
<pre class="text" data-lines="24">
Integer vitae scelerisque purus
non eget Mauris iaculis neque arcu
nec venenatis gravida sagittis,
Fusce, pharetra,
sive per Syrtis iter aestuosas
sive facturus per inhospitalem
Caucasum vel quae loca fabulosus
lambit Hydaspes.
Namque me silva lupus in Sabina,
dum meam canto Lalagem et ultra
terminum curis vagor expeditis,
fugit inermem,
quale portentum neque militaris
Daunias latis alit aesculetis
nec Iubae tellus generat, leonum
arida nutrix.
Pone me pigris ubi nulla campis
arbor aestiva recreatur aura,
quod latus mundi nebulae malusque
Iuppiter urget;
pone sub curru nimium propinqui
solis in terra domibus negata:
<span class="link" data-link="dulce">dulce ridentem</span> Lalagen amabo,
dulce loquentem.</pre>
</div>
<div class="poem english">
<div class="title">Sonnet 17</div>
<div class="author">William Shakespeare</div>
<div class="date">January 5, 2011</div>
<pre class="text" data-lines="14">
Who will believe my verse in time to come,
If it were fill'd with your most high deserts?
Though yet heaven knows it is but as a tomb
Which hides your life, and shows not half your parts.
If I could write the beauty of your eyes,
And in fresh numbers number all your graces,
The age to come would say "This poet lies;
Such heavenly touches ne'er touch'd earthly faces."
So should my papers, yellow'd with their age,
Be scorn'd, like old men of less truth than tongue,
And your true rights be term'd a poet's rage
And stretched metre of an antique song:
But were some child of yours alive that time,
You should live twice, in it, and in my rhyme.</pre>
</div>
<div class="poem english">
<div class="title">To His Coy Mistress</div>