Frank Palmer (Australian footballer)

Frank Palmer (18 June 1925 – 15 May 1970) was an Australian rules footballer who played with South Melbourne in the Victorian Football League (VFL).[1]

Frank Palmer
Personal information
Full name Frank Palmer
Date of birth (1925-06-18)18 June 1925
Date of death 15 May 1970(1970-05-15) (aged 44)
Height 175 cm (5 ft 9 in)
Weight 72 kg (159 lb)
Playing career1
Years Club Games (Goals)
1950 South Melbourne 2 (1)
1 Playing statistics correct to the end of 1950.
Sources: AFL Tables, AustralianFootball.com

Notes

  1. Holmesby, Russell; Main, Jim (2014). The Encyclopedia of AFL Footballers: every AFL/VFL player since 1897 (10th ed.). Seaford, Victoria: BAS Publishing. p. 684. ISBN 978-1-921496-32-5.
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.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.