Helgi Björnsson

Helgi Björnsson (born 10 July 1958), often referred to as Helgi Björns, is an Icelandic actor and pop/rock musician. He has released several albums with his own band Helgi Björns Og Reiðmenn Vindanna. He was also a lead vocalist for the Icelandic bands Grafík and for Síðan skein sól (also known as SSSól).

Helgi Björns
Birth nameHelgi Björnsson
Born (1958-07-10) 10 July 1958
Ísafjörður, Iceland
GenresPop/rock
Occupation(s)Singer, songwriter, actor
InstrumentsVocals,
Years active1984–present
Associated actsGrafík, Síðan skein sól

Helgi was born in Ísafjörður. As an actor, he has appeared in films such as Hitler's Grave by Daryush Shokof in 2011.[1]

Discography

Albums

Solo
  • 1997: Helgi Björns
  • 2005: Yfir Esjuna
  • 2011: ...syngur íslenskar dægurperlur ásamt gestum
  • 2014: Eru ekki allir sexý? (compilation)
  • 2015: Veröldin er ný
  • 2018: Ég stoppa hnöttinn með puttanum
as Helgi Björns og Reiðmenn Vindanna
  • 2008: Ríðum sem fjandinn
  • 2010: Þú komst í hlaðið
  • 2011: Ég vil fara upp í sveit
in Grafík
  • 1984: Get ég tekið cjens
  • 1985: Stansað Dansað Öskrað
with Síðan skein sól / SSSól
  • 1989: Síðan Skein Sól
  • 1989: Ég stend á skýi
  • 1990: Halló ég elska þig
  • 1991: Klikkað
  • 1992: Toppurinn
  • 1993: SSSól
  • 1994: Blóð
  • 1999: 88-99

Singles

  • 2014: "Viltu dansa?"
  • 2014: "Ég fer á Land Rover frá Mývatni á Kópasker"

Filmography

Film

Television

  • 2008: Svartir englar
  • 2011: Makalaus
  • 2016: Ligeglad
  • 2016: Der Island-Krimi

Personal life

Helgi is the son of María Gísladóttir and Björn Helgason, a former member of the Icelandic men's national football team.[1][2]

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.
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.

References

  1. Helga Kristín Einarsdóttir (30 October 2005). "Erkitöffarinn er liðin tíð". Morgunblaðið (in Icelandic). pp. 12–18. Retrieved 3 January 2018.
  2. "Félagsmaður - Björn Helgason". ksi.is (in Icelandic). Football Association of Iceland. Retrieved 3 January 2018.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.