Aníbal González Paz
Aníbal González Paz (died 16 January 1991, Buenos Aires) was a prolific Argentine cinematographer and photographer.
Paz photographed almost 75 major films in Argentina between 1947 and 1966 including the 1954 film The Grandfather which starred actors such as Enrique Muino and Mecha Ortiz.
He died in 1991 in Buenos Aires.
Partial filmography
- The Black Vampire (1953)
- The Age of Love (1954)
- The Grandfather (1954)
- Graciela (1956)
- The House of the Angel (1957)
- Rosaura at 10 O'Clock (1958)
- Un centavo de mujer (1958)
- Three Loves in Rio (1959)
- The Romance of a Gaucho (1961)
- Paper Boats (1963)
- Extraña invasión (1965)
- The Curious Dr. Humpp (1969)
- With Life and Soul (1970)
- Bajo el signo de la patria (1971)
- La Vuelta de Martín Fierro (1974)
- La Madre María (1974)
- Beyond the Sun (1975)
gollark: I'm not entirely sure how, but it seems to construct a tree/maybe deterministic finite automaton/finite state machine/I don't know theoretical CS which matches anagrams and unmatches unanagrams.
gollark: ```pythonimport collectionsdef do_thing(s): if len(s) == 1: return { s[0]: True } out = {} for i, c in enumerate(s): without = s[:i] + s[i + 1:] things = do_thing(without) out[c] = things return outdef match(r, s): print(r) c = r for i, x in enumerate(s): print(x) try: c = c[x] if c == True: if i + 1 == len(s): return True # full match else: return False # characters remain except KeyError: return False # no match return False # incomplete matchentry = lambda a, b: match(do_thing(a.lower().replace(" ", "")), b.lower().replace(" ", ""))```Here is my entry (pending a port to osmarkslisp™️). This is definitely my entry.
gollark: I wish to use Mathematica in my code. Please install it. DO NOT READ, ubq.
gollark: I have a "great" way to do this which I think takes O(n²) space-time-beeite.
gollark: Perhaps it is also possible to construct some sort of regex/deterministic finite automaton to match things matching anagramatically.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.