Alvah Augustus Eaton

Alvah Augustus Eaton (November 20, 1865 – September 29, 1908) was an American botanist who described many species of pteridophytes, orchids and grass.[1]

Early life

Eaton was born in Seabrook, New Hampshire, and moved to a family farm in Salisbury, Massachusetts when he was twelve. He finished a four-year high school education within two years at Putnam School in Newburyport.

Career

He worked as a teacher for a year in Seabrook, and for three more in California, along with farming. After returning to New England, he decided to become a florist due to pressure from poor health. He went on three field trips to Florida and one to Europe for the Ames Botanical Laboratory in Easton, Massachusetts.

He was a member of the Linnean Fern Chapter, precursor to the American Fern Society. He frequently contributed to the Fern Bulletin and developed an Herbarium for the Society. Until his death in 1908, he was curator of the herbarium.

Works

Much of his work is documented at the Gray Herbarium of Harvard University. The documents consist of sixteen notebooks written between approximately 1895 and 1906, four letters from 1899 to 1905, and a few undated manuscripts.[2]

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

  1. Leavitt, R. G. (1908). "In memoriam: Alvah Augustus Eaton". Rhodora. 10 (120): 209–211. JSTOR 23296554.
  2. "The Eaton papers (1895-1906)". Archived from the original on 2012-05-15. Retrieved 2011-12-02.
  3. IPNI.  A.A.Eaton.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.