Iran at the 2019 World Athletics Championships

Iran will compete at the 2019 World Athletics Championships in Doha, Qatar, from 27 September to 6 October 2019. Iran will be represented by 3 athletes.

Iran at the
2019 World Championships in Athletics
IAAF codeIRI
in Doha, Qatar
Competitors3 in 3 events
Medals
Gold
0
Silver
0
Bronze
0
Total
0
World Championships in Athletics appearances

Results

(q – qualified, NM – no mark, SB – season best)

Men

Track and road events
Athlete Event Heat Semifinal Final
Result Rank Result Rank Result Rank
Hassan Taftian 100 metres 10.24 5 Did not advance
Mahdi Pirjahan 400 Metres Hurdles 50.46 7 Did not advance
Field events
Athlete Event Qualification Final
Distance Position Distance Position
Ehsan Haddadi Discus throw 64.84 3 Q 65.16 7
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.