Cypriot Futsal Cup

The Cypriot Futsal Cup (Greek: Κύπελλο Κύπρου Futsal) is the annual cup competition for Cypriot futsal teams. It was founded in 1999 and is organized by the Cyprus Football Association. The competition is played under UEFA and FIFA rules. It is currently open to the teams of Cypriot First Division and Second Division.

Cypriot Futsal Cup
Founded1999 (1999)
Region Cyprus (Cyprus Football Association)
Number of teams16
Current championsOmonia–Ararat
(4th title)
Most successful club(s)AGBU Ararat
(6 titles)
2016–17 Cypriot Futsal Cup

Cup Winners

Season Winner
1999–00AGBU Ararat
2000–01Olympiakos Nicosia
2001–02Competition not held
2002–03AGBU Ararat
2003–04Competition not held
2004–05AGBU Ararat
2005–06Parnassos Strovolou
2006–07G.C. School
2007–08AGBU Ararat
2008–09AGBU Ararat
2009–10AGBU Ararat
2010–11Omonia
2011–12Omonia
2012–13Omonia
2013–14APOEL
2014–15APOEL
2015–16APOEL
2016–17AEL Limassol
2017–18Omonia–Ararat
2018–19Omonia

Performance by club

Team Winners Years Won
AGBU Ararat 6 2000, 2003, 2005, 2008, 2009, 2010
Omonia 5 2011, 2012, 2013, 2018, 2019
APOEL 3 2014, 2015, 2016
Olympiakos Nicosia 1 2001
Parnassos Strovolou 1 2006
G.C. School 1 2007
AEL Limassol 1 2017
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.