Lusiana Conco

Lusiana Conco is a comune in the province of Vicenza, Veneto region of Italy. It was formed on 20 February 2019 with the merger of the comunes of Lusiana and Conca.[2]

Lusiana Conco
Comune di Lusiana Conco
Location of Lusiana Conco
Lusiana Conco
Location of Lusiana Conco in Veneto
Lusiana Conco
Lusiana Conco (Veneto)
Coordinates: 45°48′3″N 11°36′29″E
CountryItaly
RegionVeneto
ProvinceVicenza (TV)
Area
  Total61.19 km2 (23.63 sq mi)
Elevation
830 m (2,720 ft)
Population
 (31 December 2017)[1]
  Total4,709
  Density77/km2 (200/sq mi)
Time zoneUTC+1 (CET)
  Summer (DST)UTC+2 (CEST)
Postal code
36046
Dialing code0424
ISTAT code024127

Sources

  1. All demographics and other statistics from the Italian statistical institute (Istat)
  2. "Comune di Lusiana Conco - Statuto Comunale". Retrieved 5 March 2019.



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?
gollark: That... sounds possible though I don't know exactly what you mean.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.