Sæmingr

Sæmingr was a king of Norway according to Snorri Sturluson's euhemerized accounts or Hålogaland. He was said to be the son of Odin or Yngvi-Freyr.

According to the prologue of the Prose Edda, Sæmingr was one of the sons of Odin and the ancestor of the kings of Norway and of the jarls of Hlaðir. Snorri relates that Odin settled in Sweden and:

After that he went into the north, until he was stopped by the sea, which men thought lay around all the lands of the earth; and there he set his son over this kingdom, which is now called Norway. This king was Sæmingr; the kings of Norway trace their lineage from him, and so do also the jarls and the other mighty men, as is said in the Háleygjatal.
—Prologue of the Prose Edda (11) Brodeur's translation

In the Ynglinga saga, Snorri adds that Sæmingr's mother was Skaði:

Njord took a wife called Skade; but she would not live with him and married afterwards Odin, and had many sons by him, of whom one was called Saeming; and about him Eyvind Skaldaspiller sings thus:[1] --
"To Asa's son Queen Skade bore
Saeming, who dyed his shield in gore, --
The giant-queen of rock and snow,
Who loves to dwell on earth below,
The iron pine-tree's daughter, she
Sprung from the rocks that rib the sea,
To Odin bore full many a son,
Heroes of many a battle won."
To Saeming Earl Hakon the Great reckoned back his pedigree.
The Ynglinga Saga (9), Laing's translation

Sæmingr is also listed among the sons of Odin in the þulur.

But in the prologue of the Heimskringla Snorri mentions that according to a lost stanza of Eyvindr skáldaspillir's Háleygjatal, Sæmingr was the son of Yngvi-Freyr.

The late Saga of Hálfdan Eysteinsson also reports that Sæmingr was Odin's son. The saga adds that he reigned over Hålogaland. He married Nauma and had a son called Þrándr.

A Swedish king by the name Semingr (likely the very same name as the Norwegian king of Folklore in an alternate rendering) becomes victim to a draugr who wields a legendary sword in The Saga of Hromund Gripsson. A similar name, "Sámr", appears related to characters in both Hrafnkels saga & Njáls saga.

Notes

  1. Háleygjatal, stanza 3.
gollark: Keep cc.znepb.me.
gollark: If you configured it wrong during setup of whatever this is somehow, then it won't match. PotatOS has the law enforcement access mechanism (PS#7D7499AB) which also currently doubles as "forgot password" handling, but not every OS does that.
gollark: How do you know your password is the right one?
gollark: I should assign unique IDs to the other sandbox escape bugs.
gollark: My "fix" is this:```lua--[["Fix" for bug PS#E9DCC81BSummary: `pcall(getfenv, -1)` seemingly returned the environment outside the sandbox.Based on some testing, this seems like some bizarre optimization-type feature gone wrong.It seems that something is simplifying `pcall(getfenv)` to just directly calling `getfenv` and ignoring the environment... as well as, *somehow*, `function() return getfenv() end` and such.The initial attempt at making this work did `return (fn(...))` instead of `return fn(...)` in an attempt to make it not do this, but of course that somehow broke horribly. I don't know what's going on at this point.This is probably a bit of a performance hit, and more problematically liable to go away if this is actually some bizarre interpreter feature and the fix gets optimized away.Unfortunately I don't have any better ideas. Also, I haven't tried this with xpcall, but it's probably possible, so I'm attempting to fix that too.]]local real_pcall = pcallfunction _G.pcall(fn, ...) return real_pcall(function(...) local ret = {fn(...)} return unpack(ret) end, ...)end local real_xpcall = xpcallfunction _G.xpcall(fn, handler) return real_xpcall(function() local ret = {fn()} return unpack(ret) end, handler)end```which appears to work at least?

References

This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.