Paunka Todorova

Paunka Todorova (Bulgarian: Паунка Тодорова; born 26 January 1930) is a Bulgarian chess player. She was a two-time winner of the Bulgarian Women's Chess Championship (1955, 1964).

Paunka Todorova
Country Bulgaria
Born (1930-01-26) January 26, 1930
Valchi Dol, Bulgaria

Biography

From the mid-1950s to the end of the 1960s, Paunka Todorova was one of the leading Bulgarian women's chess players. She won in Bulgarian Women's Chess Championships six medals: two gold (1955, 1964), silver (1970) and three bronze (1951, 1952, 1954). In 1958, Paunka Todorova won 3rd place in International Women's chess tournament in Bela Crkva. In 1959, she participated at Women's World Chess Championship Candidates Tournament in Plovdiv and ranked 14th place[1].

Paunka Todorova played for Bulgaria in the Women's Chess Olympiad:[2]

She stopped her chess player career in 1978.

gollark: ```javascriptimport m = require("mithril")import * as RPCTypes from "../common/rpc"export const sendMessage = (msg: RPCTypes.Message): Promise<RPCTypes.MessageResponse> => { return m.request( { method: "POST", url: "./rpc/", body: msg, }).then(res => { const [ type, p1, p2 ] = res if (type === "error") { throw new RPCTypes.RPCError(p2, p1) } else if (type === "ok") { return p1 } else { throw new Error("Invalid RPC response") } })}const handler = { get: (target, prop) => (...args) => sendMessage([prop, ...args])}export const serverProxy = new Proxy({}, handler)```
gollark: The RPC thing and some JS hax on the client mean I can basically just call any function the server provides as if it's a local one (except asynchronously).
gollark: minoteaur is just plain RPC - you do `POST /rpc` with a function and its arguments as JSON.
gollark: You're forced to try and map the data/functions your thing provides onto a structure which may not really fit them well.
gollark: To be honest I find REST kind of an uncool way to design APIs.

References

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