Belgium at the European Games
Belgium participated at the inaugural edition of the European Games in 2015.[1][2]
Belgium at the European Games | |
---|---|
![]() | |
IOC code | BEL |
NOC | Belgian Olympic Committee |
Website | teambelgium |
Medals |
|
European Games appearances (overview) | |
Summer appearances | |
2015 • 2019 |
Medal Tables
Medals by Games
Games | Athletes | Gold | Silver | Bronze | Total | Rank |
---|---|---|---|---|---|---|
![]() | 117 | 4 | 4 | 3 | 11 | 15 |
![]() | 56 | 4 | 1 | 1 | 6 | 14 |
Total | 8 | 5 | 4 | 17 | 16 |
Medals by sports
Sport | Gold | Silver | Bronze | Total |
---|---|---|---|---|
![]() | 6 | 4 | 0 | 10 |
![]() | 2 | 0 | 3 | 5 |
![]() | 0 | 1 | 0 | 1 |
![]() | 0 | 0 | 1 | 1 |
Totals (4 sports) | 8 | 5 | 4 | 17 |
List of medallists
Medal | Name(s) | Games | Sport | Event |
---|---|---|---|---|
![]() | Kaat Dumarey Julie Van Gelder Ineke Van Schoor | ![]() | ![]() | Women's acrobatics groups all-around |
![]() | Kaat Dumarey Julie Van Gelder Ineke Van Schoor | ![]() | ![]() | Women's acrobatics groups balance |
![]() | Kaat Dumarey Julie Van Gelder Ineke Van Schoor | ![]() | ![]() | Women's acrobatics groups dynamic |
![]() | Charline Van Snick | ![]() | ![]() | Women's 48 kg |
![]() | Solano Cassamajor Yana Vastavel | ![]() | ![]() | Mixed acrobatics pairs all-around |
![]() | Solano Cassamajor Yana Vastavel | ![]() | ![]() | Mixed acrobatics pairs balance |
![]() | Solano Cassamajor Yana Vastavel | ![]() | ![]() | Mixed acrobatics pairs dynamic |
![]() | Lianne Tan | ![]() | ![]() | Women's singles |
![]() | Si Mohamed Ketbi | ![]() | ![]() | Men's 58 kg |
![]() | Dirk Van Tichelt | ![]() | ![]() | Men's 73 kg |
![]() | Toma Nikiforov | ![]() | ![]() | Men's 100 kg |
gollark: Yes.
gollark: More great "WHY WOULD YOU DO THIS":```go// A Context carries a deadline, cancelation signal, and request-scoped values// across API boundaries. Its methods are safe for simultaneous use by multiple// goroutines.type Context interface { // Done returns a channel that is closed when this Context is canceled // or times out. Done() <-chan struct{} // Err indicates why this context was canceled, after the Done channel // is closed. Err() error // Deadline returns the time when this Context will be canceled, if any. Deadline() (deadline time.Time, ok bool) // Value returns the value associated with key or nil if none. Value(key interface{}) interface{}}```
gollark: Basically, modems/rednet but more flexible, cross-server, and without actual modems.
gollark: It's a websocket-based inter-computer cross-server message relay.
gollark: ```rust#[derive(Serialize, Deserialize, Debug, PartialEq, Eq, Hash, Clone)]#[serde(untagged)]pub enum Channel { Numeric(i64), Named(String)}#[derive(Serialize, Deserialize, Debug, Clone, Message)]pub struct RawMsg { pub channel: Channel, #[serde(flatten)] pub meta: HashMap<String, Value>, pub message: Value}#[derive(Serialize, Deserialize, Debug, Clone, Message)]pub struct Msg { pub channel: Channel, #[serde(flatten)] pub meta: HashMap<String, Value>, pub message: Value, pub timestamp: chrono::DateTime<chrono::Utc>}#[derive(Serialize, Deserialize, Debug)]#[serde(tag = "type")]enum MessageFromClient { #[serde(rename = "open")] Open { channel: skynet::Channel }, #[serde(rename = "close")] Close { channel: skynet::Channel }, #[serde(rename = "message")] Message(skynet::RawMsg)}#[derive(Serialize)]#[serde(tag = "type")]enum MessageToClient<'a> { #[serde(rename = "message")] Message(skynet::Msg), #[serde(rename = "channels")] OpenChannels { channels: &'a HashSet<skynet::Channel> }}```WIP Rust notreallyconversion of the Skynet protocol.
See also
References
- "Europese Spelen Bakoe 2015 (Baku 2015 European Games)". Belgian Olympic Committee (in Dutch). Retrieved 2019-02-16.
- "Belgium - Medal Winners". Baku 2015. Retrieved 2019-02-16.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.