Marek Niit
Marek Niit (born 9 August 1987, in Kuressaare) is a sprinter from Estonia who won gold medal at the 200 metres at the 2006 World Junior Championships in Athletics in Beijing, China. He is also the current national record holder in 100 metres, 200 meters and 400 meters.
Niit in 2012 | ||
Medal record | ||
---|---|---|
Representing | ||
Men’s athletics | ||
World Junior Championships | ||
2006 Beijing | 200 m |
International competitions
Year | Competition | Venue | Position | Event | Notes |
---|---|---|---|---|---|
Representing | |||||
2005 | European Junior Championships | Kaunas, Lithuania | 15th (sf) | 100 m | 10.85 |
6th | 200 m | 21.47 | |||
2006 | World Junior Championships | Beijing, China | 1st | 200 m | 20.96 (-1.1 m/s) |
2007 | European Indoor Championships | Birmingham, United Kingdom | 24th (h) | 60 m | 6.87 |
European U23 Championships | Debrecen, Hungary | 15th (sf) | 200 m | 27.46 | |
2009 | European U23 Championships | Kaunas, Lithuania | 5th | 200 m | 20.88 |
8th | 4 × 400 m relay | 3:12.30 | |||
World Championships | Berlin, Germany | 39th (h) | 200 m | 21.21 | |
2011 | World Championships | Daegu, South Korea | 32nd (h) | 100 m | 10.53 |
29th (h) | 200 m | 20.90 | |||
2012 | European Championships | Helsinki, Finland | 21st (sf) | 200 m | 21.44 |
Olympic Games | London, United Kingdom | 38th (h) | 200 m | 20.82 | |
2014 | World Indoor Championships | Sopot, Poland | 11th (sf) | 400 m | 47.67 |
European Championships | Zürich, Switzerland | 23rd (h) | 200 m | 21.04 | |
9th (sf) | 400 m | 45.80 | |||
12th (h) | 4 × 100 m relay | 39.52 | |||
2015 | European Indoor Championships | Prague, Czech Republic | 23rd (h) | 400 m | 47.79 |
2016 | World Indoor Championships | Portland, United States | 18th (h) | 400 m | 47.39 |
European Championships | Amsterdam, Netherlands | 17th (h) | 100 m | 10.48 | |
23rd (h) | 200 m | 21.93 | |||
15th (h) | 4x400 m relay | 3:10.63 |
Personal Best
Personal bests – Outdoor
- 100 meters – 10.19 s (2012) Arkansas Spring Invitational NR
- 200 meters – 20.43 s (2011) NCAA Division I Championships NR
- 300 meters – 32.24 s (2014) Rieti Meeting 2014 NR
- 400 meters – 45.74 s (2014) European Championships NR
Personal bests – Indoor
- 50 meters – 5.92 s (2008)
- 60 meters – 6.73 s (2007)
- 200 meters – 20.63 s (2014) NR
- 400 meters – 45.99 s (2011) NR
- 600 meters – 1.22,92 (2011)
gollark: Sure? I would move it to beside <#733816666089062511> but mobile.
gollark: Heavpoot is to be declared SCP-3125-A with immediate effect.
gollark: My tape download program now supports downloading big files without splitting them, via range requests, assuming they're served from a server which supports it: https://pastebin.com/LW9RFpmY (do `web2tape https://url.whatever range`)
gollark: Here is a similar thing for JSON. Note that it delegates out to an external JSON library for string escaping.```luafunction safe_json_serialize(x, prev) local t = type(x) if t == "number" then if x ~= x or x <= -math.huge or x >= math.huge then return tostring(x) end return string.format("%.14g", x) elseif t == "string" then return json.encode(x) elseif t == "table" then prev = prev or {} local as_array = true local max = 0 for k in pairs(x) do if type(k) ~= "number" then as_array = false break end if k > max then max = k end end if as_array then for i = 1, max do if x[i] == nil then as_array = false break end end end if as_array then local res = {} for i, v in ipairs(x) do table.insert(res, safe_json_serialize(v)) end return "["..table.concat(res, ",").."]" else local res = {} for k, v in pairs(x) do table.insert(res, json.encode(tostring(k)) .. ":" .. safe_json_serialize(v)) end return "{"..table.concat(res, ",").."}" end elseif t == "boolean" then return tostring(x) elseif x == nil then return "null" else return json.encode(tostring(x)) endend```
gollark: My tape shuffler thing from a while ago got changed round a bit. Apparently there's some demand for it, so I've improved the metadata format and written some documentation for it, and made the encoder work better by using file metadata instead of filenames and running tasks in parallel so it's much faster. The slightly updated code and docs are here: https://pastebin.com/SPyr8jrh. There are also people working on alternative playback/encoding software for the format for some reason.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.