Guglielmo Brezzi

Guglielmo Brezzi (Italian pronunciation: [ɡuʎˈʎɛlmo ˈbrettsi; ˈbreddzi]; 24 December 1898 – 7 April 1926) was an Italian professional footballer who played as a forward.

Guglielmo Brezzi
Personal information
Date of birth (1898-12-24)24 December 1898
Place of birth Alessandria, Italy
Date of death 7 April 1926(1926-04-07) (aged 27)
Place of death Alessandria, Italy
Playing position(s) Striker
Senior career*
Years Team Apps (Gls)
1915–1916 Genoa 10 (12)
1919–1920 Genoa 19 (16)
1920–1923 Alessandria 59 (30)
National team
1920–1923 Italy 8 (5)
* Senior club appearances and goals counted for the domestic league only

Club career

At club level, Brezzi played for Genoa C.F.C. and U.S. Alessandria Calcio 1912.

International career

Brezzi made his debut for the Italy national football team on 18 January 1920 in a game against France and scored a hat-trick in a 9–4 victory. He represented Italy at the 1920 Summer Olympics.

gollark: ... was? is.
gollark: Well, this was for ND research, and I didn't want to refresh random eggs constantly.
gollark: ```javascript// ==UserScript==// @name DC Egg Time Getter// @namespace http://tampermonkey.net/// @match https://dragcave.net/view/*// @grant none// ==/UserScript==function getCapture(text, regex, def) { const result = text.match(regex); if (result === null || result === undefined) { if (def === undefined) { throw new Error("Text did not match regex."); } else { return def; } } else { return result[1]; }}const text = document.body.textContent;const days = parseInt(getCapture(text, /in: (\d+) day/, 0));const hours = parseInt(getCapture(text, /and (\d+) hour/, 0));const allHours = (days * 24) + hours;const storage = window.localStorage;const lastTime = storage.remainingTime;console.log("Time Remaining:", allHours);// check for low-ER timesif (allHours < 72) { console.log("Egg/Hatchling in low ER!"); if (lastTime !== allHours.toString()) { const d = new Date(); localStorage.changeTime = d.getTime().toString(); console.log("WAS", lastTime, "NOW", allHours) console.log("Hour Change Time FOUND!"); } else { storage.remainingTime = allHours; setTimeout(() => window.location.reload(), 2000); }}```Probably suboptimal, but I was in a hurry.
gollark: It worked quite well, though I did have to manually narrow them down a bit.
gollark: To get around all the work of refreshing for an hour, I made a userscript to refresh every few seconds and check if the time changes.


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