Robert Gliński

Robert Ignacy Gliński (born 17 April 1952 in Warsaw) is a Polish film director and screenwriter. A graduate of the National Film School in Łódź. He won the Golden Lions at the Gdynia Film Festival in 1992 with his film Wszystko, co najważniejsze[1] and in 2001 with Cześć, Tereska.[2] In 2002 he received an Eagle, the Polish Film Award for his film Cześć, Tereska.[3][4]

Robert Gliński
Born (1952-04-17) 17 April 1952
OccupationFilm director
Years active1985–present

Robert Gliński served as the Rector of the National Film School in Łódź from 2008 to 2012. He is the brother of Piotr Gliński.

Selected filmography

  • 2014: Kamienie na szaniec (Stones For the Rampart)
  • 2009: Świnki (Piggies)
  • 2005: The Call of the Toad
  • 2001: Cześć Tereska (Hi, Tereska)
  • 1997: Kochaj i rób co chcesz (Love Me and Do Whatever You Want)
  • 1996: Matka swojej matki (Mother of Her Own Mother)
  • 1992: Wszystko, co najważniejsze (All That Really Matters)
  • 1983: Niedzielne igraszki (Sunday Pranks)
gollark: Okay, "quite fast" may be an overstatement.
gollark: This is far more readable than foolish "shell scripts", and actually quite fast.
gollark: It's HIGHLY advanced.
gollark: If you want, I can make it compile in parallel, but I haven't done this.
gollark: ```python#!/usr/bin/env python3import os, subprocess, sysDIR = os.path.abspath(os.path.dirname(sys.argv[0]))CC = ["gcc", "-Wall"]CACHE = os.path.join(DIR, "_cache")EXT = ".c"OUT_FILE = os.path.join(DIR, "out")if not os.path.exists(CACHE): os.mkdir(CACHE)changed_any = Falseobject_files = []for thing in os.listdir(DIR): if thing.endswith(EXT): path = os.path.join(DIR, thing) name, _, _ = thing.rpartition(EXT) cache_entry = os.path.join(CACHE, f"{name}.o") try: cache_updated_at = os.stat(cache_entry).st_mtime except FileNotFoundError: cache_updated_at = 0 code_updated_at = os.stat(path).st_mtime if cache_updated_at < code_updated_at: print(thing) subprocess.run(CC + ["-c", "-o", cache_entry, path]) changed_any = True object_files.append(cache_entry)if changed_any or not os.path.exists(OUT_FILE): subprocess.run(CC + ["-o", OUT_FILE] + object_files)else: print("no changes")```

References

  1. Laureates in 1992 - Gdynia Film Festival
  2. Laureates in 2001 - Gdynia Film Festival
  3. Polish Film Awards in 2002 Official Website
  4. Polish Film Awards in 2002 at the IMDb
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.