Portage Lakes Hockey Club

The Portage Lakes Hockey Club was one of the first professional ice hockey clubs. Based in Houghton, Michigan, the club played at the Amphidrome from 1904 until 1906. While members of the International Professional Hockey League, the team won the league championship twice. A second coming of the team is playing in the Great Lakes Hockey League.

Portage Lakes Hockey Club
CityHoughton, Michigan
LeagueInternational Professional Hockey League
Founded1904
Operated1904–1907
Home arenaAmphidrome on Portage Lake
ColorsGreen, White[1]
         
Championships
Regular season titles2 (1905-06, 1906-07)
Team picture, 1905-06. Clockwise from top left: Bruce Stuart (captain), Barney Holden, John T. McNamara (manager), Grindy Forrester, W.M. Riley Hern (goaltender), Joe H. Hall, Harry Bright, James W. Duggan (trainer), Walter A. Forrest, Fred W. "Cyclone" Taylor, Fred E. Lake.

Players

Among the players on the team were:

gollark: See, this is much nicer.
gollark: ```rustpub struct List<T> { head: Link<T>,}type Link<T> = Option<Box<Node<T>>>;struct Node<T> { elem: T, next: Link<T>,}impl<T> List<T> { pub fn new() -> Self { List { head: None } } pub fn push(&mut self, elem: T) { let new_node = Box::new(Node { elem: elem, next: self.head.take(), }); self.head = Some(new_node); } pub fn pop(&mut self) -> Option<T> { self.head.take().map(|node| { self.head = node.next; node.elem }) }}impl<T> Drop for List<T> { fn drop(&mut self) { let mut cur_link = self.head.take(); while let Some(mut boxed_node) = cur_link { cur_link = boxed_node.next.take(); } }}```
gollark: ... or at all?
gollark: You don't have a thing to efficiently deallocate the list.
gollark: Collections which work on a big chunk of memory or something *do* kind of have to use unsafe, linked lists or (some?) trees mostly don't.

See also

References

  1. "1904-1907 The Pro Years". Copper County Hockey History. Retrieved April 19, 2012.


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