Dragoljub Janošević

Dragoljub Janošević (Janosevic) (8 July 1923 20 May 1993) was a Yugoslav chess Grandmaster.

Dragoljub Janošević
Full nameDragoljub Janošević
CountryYugoslavia
Born(1923-07-08)8 July 1923
Belgrade, Yugoslavia
Died20 May 1993(1993-05-20) (aged 69)
TitleGrandmaster
Peak rating2518 (March 1954)

Background

Janošević became an International Master in 1964 and earned the Grandmaster title the following year.

In the 1950s and 1960s he played several times in the final of the Yugoslav Championship. He loved to play blindfold chess games.

Notable results

Notable games

Janošević scored individual victories over the world champions Mikhail Botvinnik, Mikhail Tal, Tigran Petrosian and Fischer and beat as well such strong grandmasters as David Bronstein or Bent Larsen.

He drew a game with Efim Geller in Skopje 1968 where neither player made a move.[8]

gollark: I imagine Gibson is repeatedly facedesking or something right now.
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™

References

  1. "Janošević - Fischer Belgrade 1958". Retrieved 2 November 2009.
  2. "Belgrade 1962". Retrieved 2 November 2009.
  3. "Sarajevo 1966". Retrieved 2 November 2009.
  4. "Janošević - Petrosian Belgrade 1954". Retrieved 2 November 2009.
  5. "Tal - Janošević Sarajevo 1966". Retrieved 2 November 2009.
  6. "Janošević - Fischer Skopje 1967". Retrieved 2 November 2009.
  7. "Janošević - Botvinnik Belgrade 1969". Retrieved 2 November 2009.
  8. "Janošević - Geller Skopje 1968". Retrieved 2 November 2009.


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