Aleksandr Borisovich Nikitin
Aleksandr Borisovich Nikitin (Russian: Алекса́ндр Бори́сович Ники́тин; born 4 February 1961) is a Russian professional football coach and a former player.
| |||
Personal information | |||
---|---|---|---|
Full name | Aleksandr Borisovich Nikitin | ||
Date of birth | 4 February 1961 | ||
Place of birth | Stalingrad, Russian SFSR | ||
Height | 1.83 m (6 ft 0 in) | ||
Playing position(s) | Striker/Midfielder | ||
Youth career | |||
Barrikady Volgograd | |||
DYuSSh-4 Volzhsky | |||
Senior career* | |||
Years | Team | Apps | (Gls) |
1978–1980 | FC Torpedo Volzhsky | 74 | (10) |
1981–1982 | FC Rotor Volgograd | 68 | (31) |
1983–1984 | FC SKA Rostov-on-Don | 65 | (21) |
1985–1990 | FC Rotor Volgograd | 219 | (82) |
1991–1992 | Malax IF (Finland) | (68) | |
1993 | FC Rotor Volgograd | 11 | (0) |
Teams managed | |||
1997 | FC Rotor Volgograd (assistant) | ||
1998 | FC Rotor-2 Volgograd | ||
1999 | FC Rotor-2 Volgograd (assistant) | ||
2001–2002 | FC Olimpia Volgograd (assistant) | ||
2004 | FC Rotor Volgograd (reserves assistant) | ||
2004 | FC Rotor Volgograd (assistant) | ||
2005 | FC Rotor Volgograd | ||
2005–2006 | FC Rotor Volgograd (assistant) | ||
2007–2008 | FC Rotor Volgograd (general director) | ||
2009 | FC Rotor Volgograd (director of sports) | ||
2009 | FC Rotor Volgograd | ||
* Senior club appearances and goals counted for the domestic league only |
Club career
He made his professional debut in the Soviet Second League in 1978 for FC Rotor Volgograd.[1]
Honours
- Russian Premier League runner-up: 1993.
Personal life
His son Oleg Nikitin played football professionally.
gollark: >>backups
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`!
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.