The Crime of Dr. Forbes

The Crime of Dr. Forbes is a 1936 American crime film directed by George Marshall and starring Gloria Stuart, Robert Kent and Henry Armetta.[1]

The Crime of Dr. Forbes
Directed byGeorge Marshall
Produced bySol M. Wurtzel
Written byFrances Hyland
Saul Elkins
StarringGloria Stuart
Robert Kent
Henry Armetta
Music bySamuel Kaylin
CinematographyErnest Palmer
Edited byAlex Troffey
Production
company
Twentieth Century Fox
Distributed byTwentieth Century Fox
Release date
July 5, 1936
Running time
75 minutes
CountryUnited States
LanguageEnglish

The film's art direction was by Duncan Cramer.

This film was shot at 20th Century Fox Studios, Los Angeles, CA and Tombstone, Arizona.

Partial cast

gollark: It compiles in reasonable time *and* makes a 600KB binary in debug mode which is much nicer than equivalent Rust.
gollark: I only need something like two routes so a full web framework is overkill.
gollark: ```nimimport optionsimport asyncdispatchimport httpximport tiny_sqliteimport macrosimport karax/[karaxdsl, vdom]import ./dbmacro includeFile(x: string): string = newStrLitNode(readFile(x.strVal))const css = includeFile("./src/style.css")let database = openDatabase("./monitoring.sqlite3")migrate(database)var threadDB {.threadvar.}: Option[DbConn]proc openDB(): DbConn = if isNone threadDB: threadDB = some openDatabase("./monitoring.sqlite3") get threadDBproc mainPage(): string = let vnode = buildHtml(html()): head: style: text css text "Bee deployed" $vnodeproc onRequest(req: Request) {.async.} = if req.httpMethod == some(HttpGet): case req.path.get() of "/": req.send(body=mainPage(), code=Http200, headers="Content-Type: text/html") else: req.send(Http404) else: req.send(Http404)echo "Starting up"run(onRequest, initSettings(Port(7800), "", 0))```This is what I have so far.
gollark: One per thread is likely sort of better ish slightly anyway.
gollark: Nope, this is probably fine.

References

  1. Monaco p.357

Bibliography

  • James Monaco. The Encyclopedia of Film. Perigee Books, 1991.


This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.