Colly Ezeh

Colly Barnes Ezeh, commonly known as Colly, also known as Steve (Chinese: 史提夫, born 10 December 1979) is a Nigerian-born Hong Kong football player.

Steve
Personal information
Full name Colly Barnes Ezeh
Date of birth (1979-12-10) 10 December 1979
Place of birth Nigeria
Height 1.87 m (6 ft 1 12 in)
Playing position(s) Centre-back, Striker
Club information
Current team
Shatin
Senior career*
Years Team Apps (Gls)
1998–1999 Sai Kung
1999–2000 Rangers (HKG)
2000-2001 Mohun Bagan 20 (0)
2001 Double Flower
2002 Happy Valley
2002 Abahani 13 (12)
2003–2006 Happy Valley
2006–2007 Sun Hei (0)
2007–2008 Shatin (0)
2008–2009 Mutual (0)
2009 Fukien 1 (0)
2010 Tuen Mun 7 (2)
2010– Shatin 2 (0)
National team
2006 Hong Kong 1 (0)
* Senior club appearances and goals counted for the domestic league only and correct as of 08:51, 28 September 2010 (UTC)
‡ National team caps and goals correct as of 04:13, 15 July 2010 (UTC)

Career

Club career

When he was in Mohun Bagan AC, he only played in cup matches.[1]

International career

As of 15 July 2010.
# Date Venue Opponent Result Scored Competition
1 15 November 2006 Mong Kok Stadium, Hong Kong  Bangladesh 2–0 0 2007 AFC Asian Cup qualification

Honours

Happy Valley

Individual

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.