Horst Steffen
Horst Steffen (born 3 March 1969) is a German football coach and a former player. He currently manages SV Elversberg.
Personal information | |||
---|---|---|---|
Date of birth | 3 March 1969 | ||
Place of birth | Meerbusch, Germany | ||
Height | 1.82 m (6 ft 0 in) | ||
Playing position(s) | Midfielder / Defender | ||
Senior career* | |||
Years | Team | Apps | (Gls) |
1988–1991 | Bayer Uerdingen | 90 | (7) |
1991–1993 | Borussia Mönchengladbach | 20 | (0) |
1993–1996 | Bayer Uerdingen | 96 | (14) |
1996–2003 | MSV Duisburg | 76 | (2) |
Total | 282 | (23) | |
National team | |||
1988–1990 | West Germany U-21 | 10 | (0) |
Teams managed | |||
2003–2006 | SC Kapellen-Erft | ||
2006–2008 | MSV Duisburg II | ||
2013–2015 | Stuttgarter Kickers | ||
2016 | Preußen Münster | ||
2017–2018 | Chemnitzer FC | ||
2018– | SV Elversberg | ||
* Senior club appearances and goals counted for the domestic league only |
Honours
- DFB-Pokal finalist: 1992, 1998.
gollark: Use of `lea` or something.
gollark: Apparently Zig can get some optimizations out of making all integer overflow UB.
gollark: (mod 2^128 or so)
gollark: Fibonaccae WILL be computed.
gollark: ```ruststruct Fib1 { cache: Vec<u128>}impl Iterator for Fib1 { type Item = u128; fn next(&mut self) -> Option<Self::Item> { let n = self.cache.len(); let next = self.cache[n - 1].wrapping_add(self.cache[n - 2]); self.cache.push(next); Some(next) }}fn fib1() -> Fib1 { Fib1 { cache: vec![0, 1] } }fn main() { for n in fib1() { print!("{} ", n); }}```
External links
- Horst Steffen at fussballdaten.de (in German)
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.