Robert Boyce (footballer)

Robert Alexander Boyce (born 7 January 1974) is an English former footballer who played as a midfielder in the Football League for Colchester United.

Robert Boyce
Personal information
Full name Robert Alexander Boyce[1]
Date of birth (1974-01-07) 7 January 1974[1]
Place of birth Islington, London, England[1]
Height 1.80 m (5 ft 11 in)[2]
Playing position(s) Midfielder
Youth career
Sheffield Wednesday
Senior career*
Years Team Apps (Gls)
Sheffield Wednesday 0 (0)
Stevenage Borough
1994–1995 Enfield
1995–1996 Colchester United 2 (0)
1996 Chelmsford City
1996 Aylesbury United 2 (0)
Wealdstone
Total 4 (0)
* Senior club appearances and goals counted for the domestic league only

Career

Born in Islington, London, Boyce began his career with Sheffield Wednesday, although he made no first-team appearances for the club. He then joined Enfield and appeared for Stevenage Borough on trial prior to joining Colchester United in 1995.[1][2][3]

Boyce made his debut for Colchester in a 2–1 victory over Cardiff City at Ninian Park on 28 October 1995, coming on as a substitute for Steve Mardenborough.[4] His final appearance came during a 3–2 away defeat at Doncaster Rovers on 18 November 1995, again as a substitute.[5]

Upon leaving Colchester, Boyce joined Essex neighbours Chelmsford City.[1] In 1996, he made two substitute league appearances and played one cup game for Aylesbury United and also played for Wealdstone during the 2000–01 season.[6]

gollark: tio!debug
gollark: Yes, thanks TIOpy?
gollark: ```python#!/usr/bin/env python3import subprocess, os, os.path, sys, argparse, datetimetimestamp = datetime.datetime.now().strftime("%Y-%m-%d_%H-%M-%S")print(timestamp)parser = argparse.ArgumentParser(description="do backups, probably")parser.add_argument("--encrypt", "-E", help="store backup in encrypted folder (please make sure it's unlocked)", action="store_true")parser.add_argument("--no-incremental", "-n", help="don't do incremental backup", action="store_true")parser.add_argument("--save_as", "-a", help="back up under different name")parser.add_argument("dir", help="directory to backup")args = parser.parse_args()incremental = not args.no_incrementalprint(args)srcdir = os.path.abspath(args.dir)outdir = os.path.join(os.path.dirname(os.path.abspath(sys.argv[0])), "encrypted/backups" if args.encrypt else "backups")safepath = (args.save_as or srcdir).lstrip("/").replace("/", "-").replace("_", "-")outpath = os.path.join(outdir, f"{safepath}_{timestamp}{'_incr' if incremental else ''}.tar.zst")snapshot = os.path.join(outdir, f"{safepath}.snapshot")snapargs = ["-g", snapshot] if incremental else []print(srcdir, outdir, outpath)tarproc = subprocess.Popen(["tar", "-c", "-v", "-C", os.path.dirname(srcdir), os.path.basename(srcdir)] + snapargs, stdout=subprocess.PIPE)zstproc = subprocess.Popen(["zstd", "-10", "-T0", "-o", outpath], stdin=tarproc.stdout)def assert_proc(x): if x.wait() != 0: print(f"warning: {x.args} failed")assert_proc(tarproc)assert_proc(zstproc)```efficiency™
gollark: Wow, I really love having to use `grep` to find an option in `--help`!
gollark: Yes.

References

  1. "Colchester United - Player profile". Coludata.co.uk. Archived from the original on 26 May 2012. Retrieved 4 April 2013.
  2. "Robert Boyce - Football Stats - Soccer Base". Soccerbase. Retrieved 4 April 2013.
  3. "COLCHESTER UNITED:1950/51-1989/90 & 1992/93-2011/12". Post War English & Scottish Football League A - Z Player's Transfer Database. Retrieved 4 April 2013.
  4. "Colchester United - Match details - Cardiff City 1–2 Colchester Utd". Coludata.co.uk. Archived from the original on 11 August 2012. Retrieved 4 April 2013.
  5. "Colchester United - Match details - Doncaster Rovers 3–2 Colchester Utd". Coludata.co.uk. Archived from the original on 11 August 2012. Retrieved 4 April 2013.
  6. "Robert Boyce Profile - Aylesbury United FC". Aylesbury United FC. Retrieved 4 April 2013.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.