Renée Fokker

Renée Fokker (29 June 1961) is a Dutch television and film actress. She is known for her roles in the television series Vrouwenvleugel and De zomer van '45. Fokker also won the Golden Calf for Best Actress award for her role in the 1996 film Blind Date.[1]

Renée Fokker
Born (1961-06-29) 29 June 1961
Nijmegen, Netherlands

Career

In 1996 she wrote the script for the film Blind Date together with Theo van Gogh and Peer Mascini. She also won the Golden Calf for Best Actress award for her role in this film.[1]

Selected filmography

gollark: Well, it's generic, obviously safer, and appears to involve less weird pointer meddling.
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?

References

  1. "Overzicht: Carriere Theo van Gogh" (in Dutch). NU.nl. 31 October 2014. Archived from the original on 17 May 2019. Retrieved 17 May 2019.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.