Albert Schweitzer (film)
Albert Schweitzer is a 1957 American biographical documentary about Albert Schweitzer directed by Jerome Hill. It won the Academy Award for Best Documentary Feature for 1957.[2]
Albert Schweitzer | |
---|---|
Directed by | Jerome Hill |
Produced by | Jerome Hill[1] |
Written by |
|
Narrated by | |
Cinematography | Erica Anderson |
Edited by | Luke Bennett |
Distributed by | Louis de Rochemont Associates |
Release date |
|
Running time | 85 minutes |
Country | United States |
Language | English |
Cast
- Fredric March – Voice of Albert Schweitzer
- Albert Schweitzer – Himself
- Phillip Eckert – Young Albert Schweitzer
- Adele Woytt – Albert Schweitzer's Mother
- Burgess Meredith – Narrator
gollark: ```javascriptimport m = require("mithril")import * as RPCTypes from "../common/rpc"export const sendMessage = (msg: RPCTypes.Message): Promise<RPCTypes.MessageResponse> => { return m.request( { method: "POST", url: "./rpc/", body: msg, }).then(res => { const [ type, p1, p2 ] = res if (type === "error") { throw new RPCTypes.RPCError(p2, p1) } else if (type === "ok") { return p1 } else { throw new Error("Invalid RPC response") } })}const handler = { get: (target, prop) => (...args) => sendMessage([prop, ...args])}export const serverProxy = new Proxy({}, handler)```
gollark: The RPC thing and some JS hax on the client mean I can basically just call any function the server provides as if it's a local one (except asynchronously).
gollark: minoteaur is just plain RPC - you do `POST /rpc` with a function and its arguments as JSON.
gollark: You're forced to try and map the data/functions your thing provides onto a structure which may not really fit them well.
gollark: To be honest I find REST kind of an uncool way to design APIs.
References
- Albert Schweitzer Wins Documentary Feature: 1958 Oscars
- "The 30th Academy Awards (1958) Nominees and Winners". oscars.org. Retrieved May 23, 2019.
- TCM.com
External links
- Albert Schweitzer on IMDb
- Albert Schweitzer on Vimeo, posted by the Jerome Foundation
- Excerpt on YouTube
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.