Nijmegen Tigers
Nijmegen Tigers was a Dutch ice hockey club based in Nijmegen until 2003, when it was forced into bankruptcy. It has been succeeded by the Nijmegen Devils.
Nijmegen Tigers | |
Country | Netherlands |
Founded | c. 1967 |
History | Nijmegen Tigers (1967–2003) |
Arena | local icerink in Heyendaal (1967–1996) Triavium (1997–2003) |
City | Nijmegen |
Team Colours | Black, yellow, blue, white & red |
Head Coaches | Alex Andjelic (early 1970s–1985) Danny Cuomo (1987–90, 1992–97) Andy Tenbult (1990–91) Fred Homburg (1991–92) Jaro Mucha (1997–98) Henri Stoer (1998–99) Harrie van Heumen (1999–2001) Paul Strople (2001) Ben Tijnagel (2001–02) Dana Knowlton (2002–03) Jason Clark (2003) |
League Championships | 1983–84, 1987–88, 1992–93, 1996–97, 1997–98, 1998–99, 1999–2000 |
Sources
gollark: Yes, I got that much.
gollark: I don't know exactly what it does.
gollark: This code here is for label handling, I think.
gollark: Is this based on chars or bytes?
gollark: ```java public static String normaliseLabel( String label ) { if( label == null ) return null; int length = Math.min( 32, label.length() ); StringBuilder builder = new StringBuilder( length ); for( int i = 0; i < length; i++ ) { char c = label.charAt( i ); if( (c >= ' ' && c <= '~') || (c >= 161 && c <= 172) || (c >= 174 && c <= 255) ) { builder.append( c ); } else { builder.append( '?' ); } } return builder.toString();}```
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.