Peisander of Laranda

Peisander or Pisander of Laranda (/pˈsændər, ˈpˌsændər/; Ancient Greek: Πείσανδρος ὁ Λαρανδινός, Peísandros ho Larandinós) was a Greek poet who flourished during the reign of Alexander Severus (222–235 AD).[1] He wrote a sixty-book epic called the Heroikai Theogamiai (Ἡρωικαὶ θεογαμίαι, "Heroic Marriages of the Gods") which, like the poetry of his father Nestor of Laranda, appears to have influenced Nonnus' Dionysiaca.[2] Peisander's poem, of which only small fragments survive as quotations in other authors, amounted to "a comprehensive epic on world history".[3] Among the extant fragments there is mention of Io, Cadmus and the Argonauts, but the most significant fragment is the testimony of Macrobius that states that Peisander's history of the world began from the marriage of Zeus and Hera.[4]

Notes

  1. Fornaro (2007).
  2. Keydell (1935, pp. 307–8).
  3. Hunter (1996).
  4. Hunter (1996) who notes that Macrobius says that Vergil followed Peisander in this formulation, but that Macrobius identification is incorrect (referring to the archaic Peisander) and that the text of Saturnalia 5.2.4 should be taken as evidence that Peisander followed Vergil's lead.

Bibliography

  • Denniston, J.D. (1996), "Septimius Nestor, Lucius", in S. Hornblower; A. Spawforth (eds.), Oxford Classical Dictionary (3rd rev. ed.), Oxford, ISBN 9780198661726.
  • Fornaro, S. (2007), "Peisandros (10)", in H. Cancik; H. Schneider (eds.), Brill's New Pauly: Antiquity, 10 (Obl-Phe), ISBN 9789004142152.
  • Hunter, R.L. (1996), "Pisander (3)", in S. Hornblower; A. Spawforth (eds.), Oxford Classical Dictionary (3rd rev. ed.), Oxford, ISBN 9780198661726.
  • Keydell, R. (1935), "R. Keydell, Die Dichter mit Namen Peisandros", Hermes, 70: 301–11, JSTOR 4474419.
  • Latacz, J. (2006), "Nestor (3)", in H. Cancik; H. Schneider (eds.), Brill's New Pauly: Antiquity, 9 (Mini-Obe), ISBN 9789004122727.
  • Miguélez Cavero, L. (2008), Poems in context Greek poetry in the Egyptian Thebaid 200–600 AD, Berlin, ISBN 9783110202731.


gollark: _continues futile attempts to optimize stuff_
gollark: getItemMeta returns a thing with stackSize, right?
gollark: Also, in that version there, patterns got fed in as a table with numeric indices from 1-9 representing each slot of the crafting table plus an optional qty key for how much the recipe produces.
gollark: Ridiculous. We *need* to be able to break maths in a snippet of code.
gollark: Here is a copy of the code I don't understand from the old version:```lualocal function descend(intermediateFn, terminalFn, i) local pattern = patterns[i] if pattern then intermediateFn(pattern) local pqty = pattern.qty -- Qty keys must be removed from the pattern for collation -- Otherwise, it shows up as a number stuck in the items needed table, which is bad. pattern.qty = nil local needs = util.collate(pattern) pattern.qty = pqty local has = {} for slot, item in pairs(pattern) do if util.satisfied(needs, has) then break end if patterns[item] then descend(intermediateFn, terminalFn, item) has[item] = (has[item] or 0) + (patterns[item].count or 1) end end else terminalFn(i) endendlocal function cost(i) local items = {} descend(function() end, function(i) table.insert(items, i) end, i) return util.collate(items)endlocal function tasks(i) local t = {} descend(function(pat) table.insert(t, pat) end, function() end, i) return tend```
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.