Gero (archbishop of Magdeburg)
Gero (died 21 October 1023) was the Archbishop of Magdeburg from 1012 until his death. He was a son of Dedo Wodenswege and Eilika (Eilica) and possibly a relative of the family of Gero the Great.
Gero was the candidate of King Henry II following the death of the Archbishop Walthard on 12 August 1012. He was appointed over the candidate, Otto, of the cathedral canons.[1] Between 1016 and 1017, the ambitious Gero and Bernard, Margrave of the Nordmark, feuded over territory.[2] Bernard's men attacked Magdeburg, but in 1017 he agreed to compensate Gero with 500 pounds of silver.[3]
Sources
- Reuter, Timothy. Germany in the Early Middle Ages 800–1056. New York: Longman, 1991.
Notes
- Reuter, 195.
- Reuter, 200.
- Reuter, 204.
Gero Born: unknown Died: 22 October 1023 in Vadderode (today's Mansfeld-Vatterode) | ||
Catholic Church titles | ||
---|---|---|
Preceded by Walthard |
Archbishop of Magdeburg 1012–1023 |
Succeeded by Humphrey |
gollark: ```rustpub struct List<T> { head: Link<T>,}type Link<T> = Option<Box<Node<T>>>;struct Node<T> { elem: T, next: Link<T>,}impl<T> List<T> { pub fn new() -> Self { List { head: None } } pub fn push(&mut self, elem: T) { let new_node = Box::new(Node { elem: elem, next: self.head.take(), }); self.head = Some(new_node); } pub fn pop(&mut self) -> Option<T> { self.head.take().map(|node| { self.head = node.next; node.elem }) }}impl<T> Drop for List<T> { fn drop(&mut self) { let mut cur_link = self.head.take(); while let Some(mut boxed_node) = cur_link { cur_link = boxed_node.next.take(); } }}```
gollark: ... or at all?
gollark: You don't have a thing to efficiently deallocate the list.
gollark: Collections which work on a big chunk of memory or something *do* kind of have to use unsafe, linked lists or (some?) trees mostly don't.
gollark: And the unsafe stuff is better checked than in ©.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.