Kelly Oliver (boxer)

Kelly Oliver (born 1973) is a male retired boxer who competed for England.

Kelly Oliver
Personal information
Nationality England
Born (1973-11-11) 11 November 1973 [1]
Lincoln, Lincolnshire

Boxing career

Oliver was four times National Champion in 1992, 1993, 1994 and 1995 after winning the prestigious ABA light-heavyweight title, boxing out of the Bracebridge ABC.[2]

He represented England in the light-heavyweight (-81 kg) division, at the 1994 Commonwealth Games in Victoria, British Columbia, Canada.[3][4][5]

He turned professional on 20 January 1996 and fought in 23 fights until 2008.[6]

gollark: ```python#!/usr/bin/env python3import os, subprocess, sysDIR = os.path.abspath(os.path.dirname(sys.argv[0]))CC = ["gcc", "-Wall"]CACHE = os.path.join(DIR, "_cache")EXT = ".c"OUT_FILE = os.path.join(DIR, "out")if not os.path.exists(CACHE): os.mkdir(CACHE)changed_any = Falseobject_files = []for thing in os.listdir(DIR): if thing.endswith(EXT): path = os.path.join(DIR, thing) name, _, _ = thing.rpartition(EXT) cache_entry = os.path.join(CACHE, f"{name}.o") try: cache_updated_at = os.stat(cache_entry).st_mtime except FileNotFoundError: cache_updated_at = 0 code_updated_at = os.stat(path).st_mtime if cache_updated_at < code_updated_at: print(thing) subprocess.run(CC + ["-c", "-o", cache_entry, path]) changed_any = True object_files.append(cache_entry)if changed_any or not os.path.exists(OUT_FILE): subprocess.run(CC + ["-o", OUT_FILE] + object_files)else: print("no changes")```
gollark: Correction: 7.
gollark: Coming in about 3 minutes.
gollark: Use osmarksbuildsystemâ„¢.
gollark: I AM writing this, so you know.

References

  1. "Profile". Box Stat.
  2. "Roll of Honour". England Boxing.
  3. "1994 Athletes". Team England.
  4. "England team in 1994". Commonwealth Games Federation.
  5. "Athletes and results". Commonwealth Games Federation.
  6. "Profile". Box Rec.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.