Search for the Gods
Search for the Gods is a 1975 television film directed by Jud Taylor, and stars Kurt Russell and Stephen McHattie.[1] It was intended to be the pilot episode of a TV series that never made it into production.
Search for the Gods | |
---|---|
Genre | Drama |
Directed by | Jud Taylor |
Starring | Kurt Russell |
Music by | Billy Goldenberg |
Country of origin | United States |
Original language(s) | English |
Production | |
Executive producer(s) | Douglas S. Cramer |
Producer(s) | Wilford Lloyd Baumes |
Production location(s) | Taos, New Mexico |
Cinematography | Matthew F. Leonetti |
Editor(s) | Art Seid |
Running time | 100 mins. |
Production company(s) | Douglas S. Cramer Company Warner Bros. Television |
Distributor | ABC |
Release | |
Original network | ABC |
Original release | March 9, 1975 |
Plot
Two young adventurers, Shan Mullins and Genera Juantez are searching for parts of a mysterious golden tablet, which brings to light evidence that astronauts from another world visited Earth in ancient times and had a profound effect on the technological advancement of the human race.
Cast
- Kurt Russell as Shan Mullins
- Stephen McHattie as Willie Longfellow
- Ralph Bellamy as Dr. Henderson
- Victoria Racimo as Genera Juantez
- Raymond St. Jacques as Raymond Stryker
- Albert Paulsen as Tarkanian
- John War Eagle as Lucio
- Carmen Argenziano as Wheeler
gollark: I believe this is O(n!), actually.
gollark: The performance is great too. It's not O(n²), it's an even more biggerer and thus superior order.
gollark: Of course.
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.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.