Lajos Homonnai

Lajos Homonnai[1] (born May 2, 1904, date of death unknown)[2] was a Hungarian water polo player who competed at the 1924 Summer Olympics.

Born in Budapest, he was part of the Hungarian team in the 1924 tournament, in which he played three matches, but he wasn't won any Olimpycs.

Footnotes

  1. He is also known as Lajos Hlavacsek.
  2. "Homonnai Lajos (Hlavacsek Lajos)". Magyar Olimpiai Bizottság. 2007. Archived from the original on 2007-10-08. Retrieved 2007-12-10.


gollark: I may actually be overestimating it, because averaged out I only have 4 hours of lessons a day (free periods + sports + etc).
gollark: I counted that, yes.
gollark: It filters out one guild on which I discuss somewhat real-world things, filters out DMs, removes pings, and reads the messages.csv files, as well as producing a CSV output for aitextgen.
gollark: ```python#!/usr/bin/env python3import os, os.path, json, csv, reOUT = "/tmp/messages.csv"with open(OUT, "w") as g: outwriter = csv.writer(g) DATA_ROOT = "/tmp/messages" for x in os.listdir(DATA_ROOT): dir = os.path.join(DATA_ROOT, x) if os.path.isdir(dir): with open(os.path.join(dir, "channel.json")) as f: meta = json.load(f) if meta["type"] == 0 and ("guild" not in meta or meta["guild"]["id"] != "771081279403065344"): print(x, meta.get("name", "???"), meta.get("guild", "???")) with open(os.path.join(dir, "messages.csv")) as f: r = csv.reader(f) for row in r: channel, timestamp, message, _ = row message = re.sub("<@[0-9]+>", "", message) outwriter.writerow((message, ))```
gollark: And the messages folder → CSV dumper is something like 20 lines of python.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.