Maarten Boddaert

Maarten Boddaert (born 12 September 1989 in Roosendaal) is a Dutch professional footballer who plays for the Adelaide Comets in the National Premier Leagues South Australia.

Maarten Boddaert
Personal information
Full name Maarten Boddaert
Date of birth (1989-09-12) 12 September 1989
Place of birth Roosendaal, Netherlands
Height 1.80 m (5 ft 11 in)
Playing position(s) Midfielder
Club information
Current team
Achilles Veen
Youth career
RKVV Roosendaal
RBC
Senior career*
Years Team Apps (Gls)
2008–2011 RBC 72 (1)
2011–2016 FC Den Bosch 105 (6)
2017 Adelaide Comets 10 (0)
2017– Achilles Veen 0 (0)
* Senior club appearances and goals counted for the domestic league only and correct as of 1 August 2017

Club career

Boddaert played 5 seasons as a midfielder for FC Den Bosch in the Dutch Eerste Divisie. He formerly played for RBC Roosendaal.[1] Den Bosch released their former skipper in summer 2016 and he then had a trial at Telstar[2] and a month-long trial with VVV-Venlo but a move did not materialize.[3]

Boddaert signed for Adelaide Comets in the PS4 NPL SA in Australia's second tier of football in January, 2017 for the 2017 FFSA season.

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!
gollark: Your *routes* shouldn't be config. They're code. They're part of the application.
gollark: What? Why is that a config file?! You should be defining routes in your code.

References

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