Marie Philibert Constant Sappey

Marie Philibert Constant Sappey (1810 15 March 1896) was a French anatomist born in Cernon, near the city of Bourg-en-Bresse.

Constant Sappey (1810-1896)

He studied medicine at the University of Paris, earning his degree in 1843. Later he became a professor of anatomy in Paris, and in 1862 was elected to the Académie Nationale de Médecine, becoming its president in 1887. In 1868 he succeeded Jean-François Jarjavay (1815–1868) as chair of anatomy, a position he held until 1886.

Sappey was a highly regarded anatomist remembered for his research of the lymphatic system. In 1874 he published an anatomical atlas that included a detailed study of cutaneous lymphatic drainage. He was married to Antoinette Clotilde Dumas who was a scientific illustrator.[1] She illustrated some of his publications.[1] He devised a procedure to define and delineate the lymphatic system by injecting mercury into the skin of a cadaver in order to properly view the individual lymphatic vessels. Anatomist Henri Rouvière (1876-1952) continued Sappey's anatomical work of the human lymphatic system.

Associated Eponyms

Written Works

  • Traité d’anatomie descriptive avec figures intercalées dans le texte. Paris. 3 volumes, 1847-1863. 2nd edition in 4 volumes, 1867-1874. considered to be the first French anatomical work that combined descriptive anatomy with histology.
  • Anatomie, physiologie, pathologie des vaisseaux lymphatiques considerées chez l’homme et les vertébres. Paris, A. Delahaye & E. Lacrosnier, 1874. Known for its illustrations.
  • Atlas d’anatomie descriptive. 1879 (Atlas of descriptive anatomy).
  • Études sur l’appareil mucipare et sur le système lymphatique des poissons. 1880.
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

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