Gemerská Hôrka

Gemerská Hôrka (Hungarian: Özörény , Gömörhorka) is a village and municipality in the Rožňava District in the Košice Region of middle-eastern Slovakia.

History

In historical records the village was first mentioned in 1413.

Geography

The village lies at an altitude of 227 metres and covers an area of 12.794 km². It has a population of about 1330 people.

Culture

The village has a football pitch.

Genealogical resources

The records for genealogical research are available at the state archive "Statny Archiv in Banska Bystrica, Kosice, Slovakia"

  • Roman Catholic church records (births/marriages/deaths): 1825-1895 (parish B)
  • Lutheran church records (births/marriages/deaths): 1805-1908 (parish B)
  • Reformated church records (births/marriages/deaths): 1792-1916 (parish A)
gollark: And 🦀Safe Rust™🦀.
gollark: See, this is much nicer.
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.

See also



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