Ekaterini Pavlidou

Ekaterini Pavlidou (Greek: Αικατερίνη Παυλίδου; born 3 April 1993) is a Greek chess player who holds the title of Woman International Master (WIM, 2010). She is a four-time Greek Women Chess Champion (2012, 2013, 2015, 2018).

Ekaterini Pavlidou
Ekaterini Pavlidou in 2013
Country Greece
Born (1993-04-03) 3 April 1993
TitleWoman International Master (2010)

Chess career

Multiple times winner of Greek girl's chess championships in different age groups: U16 (2009)[1], and U20 (2009, 2012)[2][3].

In Greek women's chess championships Ekaterini Pavlidou won 4 gold (2012, 2013, 2015, 2017) medals[4][5].

In 2012 in Beirut she won Mediterranean Women's Chess Championship.

Ekaterini Pavlidou played for Greece in the Women's Chess Olympiads:[6]

Ekaterini Pavlidou played for Greece in the World Team Chess Championship:[7]

  • In 2011, at fourth board in the 3rd Women's World Team Chess Championship 2011 in Mardin (+2, =4, -2).

Ekaterini Pavlidou played for Greece in the European Team Chess Championships:[8]

  • In 2007, at third board in the 7th European Team Chess Championship (women) in Heraklion (+2, =0, -6),
  • In 2011, at reserve board in the 9th European Team Chess Championship (women) in Porto Carras (+3, =1, -3),
  • In 2013, at second board in the 10th European Team Chess Championship (women) in Warsaw (+2, =1, -4),
  • In 2015, at second board in the 11th European Team Chess Championship (women) in Reykjavik (+3, =0, -5),
  • In 2017, at third board in the 12th European Team Chess Championship (women) in Crete (+1, =3, -2).

In 2010, she was awarded the FIDE International Women Master (WIM) title[9].

gollark: https://esolangs.org/wiki/WHY
gollark: All three.
gollark: Unless you turn up the optimization setting to ~30, at which point it makes quite fast code.
gollark: ```python#!/usr/bin/env python3import argparseimport subprocessparser = argparse.ArgumentParser(description='Compile a WHY program')parser.add_argument("input", help="File containing WHY source code")parser.add_argument("-o", "--output", help="Filename of the output executable to make", default="./a.why")parser.add_argument("-O", "--optimize", help="Optimization level", type=int, default="0")args = parser.parse_args()def build_C(args): template = """#define QUITELONG long long intconst QUITELONG max = @max@;int main() { QUITELONG i = 0; while (i < max) { i++; } @code@} """ for k, v in args.items(): template = template.replace(f"@{k}@", str(v)) return templateinput = args.inputoutput = args.outputtemp = "ignore-this-please"with open(input, "r") as f: contents = f.read() looplen = max(1000, (2 ** -args.optimize) * 1000000000) code = build_C({ "code": contents, "max": looplen }) with open(temp, "w") as out: out.write(code)subprocess.run(["gcc", "-x", "c", "-o", output, temp])```The compiler for the new `WHY` language. Made as a joke because someone on the esolangs server insisted that all compiled languages were fast.
gollark: BT being bad, who would ever guess so?

References

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