William Meyers
William Meyers (23 July 1943 in Johannesburg – 7 May 2014) was a South African boxer who won a bronze medal at the 1960 Summer Olympics in Rome fighting as a featherweight.[1][2]
Medal record | ||
---|---|---|
Men's Boxing | ||
Representing ![]() | ||
Olympic Games | ||
![]() | 1960 Rome | Featherweight |
1960 Olympic results
Below is the record of William Meyers, a South African featherweight boxer who competed at the 1960 Rome Olympics:
- Round of 32: defeated Than Tun (Myanmar) by decision, 5-0
- Round of 16: defeated Hsu Teng-yun (Chinese Taipei) by a third-round knockout
- Quarterfinal: defeated Constantin Gheorghiu (Romania) by decision, 5-0
- Semifinal: lost to Jerzy Adamski (Poland) by decision, 1-4 (was awarded bronze medal)
gollark: >contacts
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```
References
- Profile: William Meyers sports.reference.com (Retrieved on 13 December 2008)
- "SA's youngest Olympic boxing medalist dies". Fightnews.com. Archived from the original on 2014-05-12. Retrieved 2014-05-13.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.