Gymnastics at the 2014 Commonwealth Games – Men's floor

The men's individual floor exercise competition of the 2014 Commonwealth Games took place on July 31 at the SSE Hydro arena in Glasgow, Scotland.[1]

Men's floor
at the 2014 Commonwealth Games
VenueSSE Hydro
Dates31 July 2014
Competitors8 from 7 nations
Winning score15.533
Medalists
    England
    Canada
    New Zealand

Results

Qualification

Qualification took place on July 28 as part of the team and individual qualification event.

Final

PositionGymnastD ScoreE ScorePenaltyTotal
 Max Whitlock (ENG)6.7008.83315.533
 Scott Morgan (CAN)6.4008.73315.133
 David Bishop (NZL)5.7008.85014.550
4  Daniel Keatings (SCO)6.0008.6330.114.533
5  Clinton Purnell (WAL)5.8008.56614.366
6  Ashish Kumar (IND)6.6007.3000.113.800
7  Wah Toon Hoe (SIN)5.9007.9330.113.733
8  Kristian Thomas (ENG)5.8007.86613.366
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.

References

This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.