Takayuki Omi
Takayuki Omi (近江 孝行, Ōmi Takayuki, born October 6, 1982 in Ōtsu, Shiga) is a Japanese footballer who last played for Air India FC.
Personal information | |||
---|---|---|---|
Full name | Takayuki Omi | ||
Date of birth | October 6, 1982 | ||
Place of birth | Ōtsu, Shiga, Japan | ||
Height | 1.65 m (5 ft 5 in) | ||
Playing position(s) | Midfielder | ||
Club information | |||
Current team | Unattached | ||
Senior career* | |||
Years | Team | Apps | (Gls) |
2005–2006 | Shiga F.C. | ||
2006–2008 | Sportfreunde Eisbachtal | ||
2008–2009 | Onehunga Sports | ||
2009–2010 | YoungHeart Manawatu | ||
2010–2011 | Auckland City | ||
2011 | Sydney Olympic | ||
2011–2012 | Air India | 17 | (2) |
* Senior club appearances and goals counted for the domestic league only and correct as of 12:57, 7 May 2009 (UTC) |
Person
Started playing soccer in elementary school, at the National High School Football Championship 79th of high school age Kusatsu higashi highschool. Chosen as an excellent tournament player, also elected a member of the expedition Europe. After graduating from high school, go on to Kinki University, when he was a captain of the 4th year.
After graduating from university, across Germany, joined SSV Eintracht Überherrn e. To V..
Currently involved in football do the job for the Japanese in Germany. (From the blog of the person)
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.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.