Tuduetso Sabure

Tuduetso Sabure (born 16 Juny 1982), is a Botswana Woman Grandmaster (WGM, 2005).

Tuduetso Sabure
CountryBotswana
Born (1982-06-16) 16 June 1982
TitleWoman Grandmaster (WGM) (2005)

Biography

In 2005, in Lusaka won African Women's Chess Championship and won the right to participate in the Women's World Chess Championship[1][2]. In 2006 Tuduetso Sabure participated in Women's World Chess Championship by knock-out system and in the first round lost to Humpy Koneru[3]. In 2007, in Windhoek ranked 7th in African Women's Chess Championship[4]. In 2007, she played for Botswana in All-Africa Games chess tournament, which ranked 4th in the team ranking,[5] and World Women's Team Chess Championship[6]. In 2017, in Cairo ranked 17th in African Women's Chess Championship[7].

Tuduetso Sabure played for Botswana in the Women's Chess Olympiads:[8]

In 2005, she was awarded the FIDE International Women Grandmaster (WGM) title.

gollark: Application code is stuff which should be the same across deployments. Config is stuff which shouldn't.
gollark: Then your application is wrong.
gollark: * specify, not design
gollark: ```rust let with_db = warp::any().map(move || pool.clone()); let static_files = warp::path("assets").and(warp::fs::dir("assets")); let view_page = warp::path!(String).and(warp::get()).and(with_db.clone()) // repeating the next bit for every route is kind of bad, see if it can be changed somehow .and_then(|title, db| async { error_to_http_response(view_page(db, title).await) }); let editor_page = warp::path!(String / "edit").and(warp::get()).and(with_db.clone()) .and_then(|title, db| async { error_to_http_response(editor_page(db, title).await) }); let save_edit = warp::path!(String / "edit").and(warp::post()).and(warp::body::form()).and(with_db) .and_then(|title, form, db| async { error_to_http_response(save_edit(db, title, form).await) }); let not_found = warp::any().map(|| warp::reply::with_status("404 Not Found", http::StatusCode::NOT_FOUND)); let main = editor_page.or(save_edit).or(view_page); let app = static_files.or(main).or(not_found);```See, this is how you SHOULD design routes: incomprehensibly.
gollark: no!

References

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