Collet baronets
The Collet Baronetcy, St Clere in the parish of Ightham in the County of Kent, was a title in the Baronetage of the United Kingdom.[1] It was created on 12 June 1888 for Mark Collet, Governor of the Bank of England. The title became extinct on the death of his son, the second Baronet, in 1944.
Collet baronets, of St Clere (1888)
- Sir Mark Wilks Collet, 1st Baronet (September 1816 – 25 April 1905) was an English merchant and banker. He served as Governor of the Bank of England between 1887 and 1889, and was granted a baronetcy in 1889.[2] His grandsons by his daughter Lina Penelope Collet included Montagu Norman (Governor of the Bank of England between 1920 and 1944) and Frederick Henry Norman.
- Sir Mark Edlmann Collet (12 January 1864 – 24 September 1944)
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.
gollark: And you want to be able to upload pictures to some sort of web thing to send to the ESP?
References
- "No. 25827". The London Gazette. 15 June 1888. p. 3310.
- Chronicles of the Bank of England – Page 245. Google Books search, retrieved 3 October 2007.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.