Martin Nyrop

Martin Nyrop (11 November 1849 18 May 1921) was a Danish architect. [1]

Martin Nyrop.

Biography

Nyrop was born at Holmsland on Jutland, Denmark. He attended Sorø Academy and completed his course of study at the Royal Danish Academy of Fine Arts in 1876. From 1881-83, he studied abroad under a scholarship. From 1883-93, he was an assistant to professor Hans Jørgen Holm. Nyrop was awarded the Grand Prix for design at the Exposition Universelle at Paris in 1900. In 1906, he became a professor at the Academy of Fine Arts School of Architecture and served as director of the Academy of Fine Arts for periods between 1908-18.[2]

Nyrop designed the Copenhagen City Hall (1905) in National Romantic style and the majority of the buildings for the Nordic Industrial, Agricultural and Art Exhibition in Copenhagen (1888). [3] [4] [5]

Selected buildings

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

  1. "Nyrop, Martin, f. 1849, Arkitekt". Dansk biografisk Lexikon. Retrieved January 1, 2019.
  2. "Martin Nyrop". Kunstindeks Danmark & Weilbach Kunstnerleksikon. Retrieved January 1, 2019.
  3. Funder, Lise. Arkitekten Martin Nyrop. København: Foreningen til gamle Bygningers Bevaring, 1979.
  4. "Københavns Rådhus". visitcopenhagen.dk. Retrieved January 1, 2019.
  5. "Den nordiske Industri-, Landbrugs- og Kunstudstilling i 1888". Danmarks Historie. Retrieved January 1, 2019.

Other sources

  • Funder, Lisa (1979) Arkitekten Martin Nyrop (Copenhagen: Gyldendal) ISBN 978-8787546058
  • Linvald, Steffen (1988) Den nordiske Industri-, Landbrugs- og Kunstudstilling i København 1888 : et hundredårsminde (Lynge: Bogans forlag) ISBN 8774661094
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.