1990 World Karate Championships
The 1990 World Karate Championships are the 10th edition of the World Karate Championships, and were held in Mexico City, Mexico from November 8 to November 11, 1990.
Host city | |
---|---|
Dates | 8–11 November |
Medalists
Men
Event | Gold | Silver | Bronze |
---|---|---|---|
Individual kata | Tomoyuki Aihara |
Dario Marchini |
Luis María Sanz |
Team kata | |||
Kumite −60 kg | Stein Rønning |
Hideto Nakano |
Hakan Yağlı |
Veysel Buğur | |||
Kumite −65 kg | Toshikatsu Azumi |
Goran Romić |
Bahattin Kandaz |
José Puertas | |||
Kumite −70 kg | Haldun Alagaş |
Vincenzo Amicone |
Yoshimiro Anzai |
William Thomas | |||
Kumite −75 kg | Hideo Tamaru |
Paul Alderson |
Greg Francis |
Gennaro Talarico | |||
Kumite −80 kg | José Manuel Egea |
Morten Alstadsæther |
Oliver Pokorni |
Roberto Hernández | |||
Kumite +80 kg | Marc Pyrée |
Ian Cole |
Ralf Brachmann |
İbrahim Ercin | |||
Kumite open ippon | Giovanni Tramontini |
Veselin Mićović |
Yorihisa Uchida |
Marc Hamon | |||
Kumite open sanbon | Wayne Otto |
Steve Jez |
Víctor Alvarado |
Anthony Leito | |||
Team kumite | |||
Women
Event | Gold | Silver | Bronze |
---|---|---|---|
Individual kata | Yuki Mimura |
Hisami Yokoyama |
Debbie Tang |
Team kata | |||
Kumite −53 kg | Yuko Hasama |
Adriana Flores |
Yvonne Senff |
Eva María Chamarro | |||
Kumite −60 kg | Monique Amghar |
Chiara Stella Bux |
Carola Dörrie |
Molly Samuel | |||
Kumite +60 kg | Catherine Belrhiti |
Marzia Sartirani |
Bernadette Brogan |
Keiko Kawano |
Medal table
Rank | Nation | Gold | Silver | Bronze | Total |
---|---|---|---|---|---|
1 | 6 | 3 | 3 | 12 | |
2 | 4 | 1 | 2 | 7 | |
3 | 2 | 2 | 3 | 7 | |
4 | 1 | 4 | 1 | 6 | |
5 | 1 | 1 | 0 | 2 | |
6 | 1 | 0 | 5 | 6 | |
7 | 1 | 0 | 4 | 5 | |
8 | 0 | 2 | 0 | 2 | |
9 | 0 | 1 | 1 | 2 | |
0 | 1 | 1 | 2 | ||
0 | 1 | 1 | 2 | ||
12 | 0 | 0 | 3 | 3 | |
13 | 0 | 0 | 2 | 2 | |
14 | 0 | 0 | 1 | 1 | |
0 | 0 | 1 | 1 | ||
Totals (15 nations) | 16 | 16 | 28 | 60 |
gollark: One of these days I really ought to add login and CSRF prevention.
gollark: ```javascriptimport m = require("mithril")import * as RPCTypes from "../common/rpc"export const sendMessage = (msg: RPCTypes.Message): Promise<RPCTypes.MessageResponse> => { return m.request( { method: "POST", url: "./rpc/", body: msg, }).then(res => { const [ type, p1, p2 ] = res if (type === "error") { throw new RPCTypes.RPCError(p2, p1) } else if (type === "ok") { return p1 } else { throw new Error("Invalid RPC response") } })}const handler = { get: (target, prop) => (...args) => sendMessage([prop, ...args])}export const serverProxy = new Proxy({}, handler)```
gollark: The RPC thing and some JS hax on the client mean I can basically just call any function the server provides as if it's a local one (except asynchronously).
gollark: minoteaur is just plain RPC - you do `POST /rpc` with a function and its arguments as JSON.
gollark: You're forced to try and map the data/functions your thing provides onto a structure which may not really fit them well.
External links
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.