Rex Taylor
Rex Taylor (November 1, 1889 – December 27, 1968) was an American screenwriter. He wrote for 84 films between 1916 and 1966. He was born in Iowa and died in San Pedro, California. He married the actress Irma Taylor (née Whepley) in about 1910; the 1920 and 1930 United States Census Records show the couple as living in Los Angeles in 1920 and 1930.[1][2]
Rex Taylor | |
---|---|
Rex and Irma Taylor | |
Born | Iowa, United States | November 1, 1889
Died | December 27, 1968 79) San Pedro, California, United States | (aged
Occupation | Screenwriter |
Years active | 1916-1966 |
Partial filmography
- The Stranger (1918)
- Set Free (1918)
- Twin Beds (1920)
- The Way of a Maid (1921)
- Seeing's Believing (1922)
- Blow Your Own Horn (1923)
- A Noise in Newboro (1923)
- The Social Code (1923)
- The Reckless Age (1924)
- Jack O'Clubs (1924)
- The Ridin' Kid from Powder River (1924)
- High and Handsome (1925)
- Irene (1926)
- Rolling Home (1926)
- The Clinging Vine (1926)
- Mulhall's Greatest Catch (1926)
- More Pay, Less Work (1926)
- Don't Tell the Wife (1927)
- Cocktails (1928)
- Adam's Apple (1928)
- Weekend Wives (1928)
- Under the Greenwood Tree (1929)
- Sit Tight (1931)
- The Oil Raider (1934)
- Sitting on the Moon (1936)
- Hawk of the Wilderness (1938)
- Daredevils of the Red Circle (1939)
- Junior G-Men (1940) serial
gollark: Well, it's poorly designed, more so than JS in my opinion.
gollark: PHP is maaaaybe easy for simple stuff, but also very evil.
gollark: There are many languages you can use for web*server*y stuff, but you can only really use HTML/CSS/JS for frontends.
gollark: With Express.js the server thing would look *very roughly* like this:```javascriptconst express = require("express")const multer = require("multer")const app = express()const upload = multer({ storage: multer.memoryStorage(), limits: { fileSize: 2**22 // 4MiB maximum filesize }})app.get("/image", (req, res) => { res.send(loadImageFromSomewhere())})// send upload form HTML - you would need to write this tooapp.get("/upload", (req, res) => res.sendFile("upload.html"))app.post("/upload", upload.single("file"), (req, res) => { saveImageSomewhere(req.file.buffer)})app.listen(8700, () => console.log("listening")) // listen on port 8700```
gollark: I mean, you could use PHP too. I don't like it. But you could.
References
- 1920 United States Federal Census for Rex Taylor (husband) and Irma Whepley Taylor (wife)
- 1930 United States Federal Census for Rex Taylor (husband) and Irma Whepley Taylor (wife)
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.