Charles Jordan (magician)

Charles Thorton Jordan (1 October 1888 – 24 April 1944) was an American magician.

Early life

Charles Jordan was born in Berkeley, California to Charles Renalt Jordan, a wholesale supply manager and chicken farmer, and Mary Louise (Thornton) Jordan; he had a younger sister, Margaret Louise (1891-1959). When he was 10 years old, he saw Harry Kellar perform, which inspired him to develop his own card tricks.

Career

He moved to Penngrove, and self-published Thirty Card Mysteries in 1919. In it, he described "The Jordan Count", and "The Gray Code", two methods of false counting. In 1920, he self-published the five-part Ten New Prepared Card Tricks series, with contributions from Thomas Nelson Downs.[1]

According to the United States Census Bureau, Jordan was living with his now-widowed mother in Vallejo by 1930. In 1935, he was contacted by Theodore Annemann, who wanted to publish a collection of his work. However, the series was abandoned. Many of Jordan’s tricks were later collected and published by Karl Fulves.

Jordan never performed in public. He died in Vallejo after a long illness.

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.
gollark: What I might do, though there are probably many ways to: make a program in Node.js or whatever (personal preference) which responds with whatever image is set to any requests for that, and which allows you to upload an image, converts it to the right format, then saves it to be sent when the ESP requests it.

References

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