Alberto Gerbo

Alberto Gerbo (born November 9, 1989) is an Italian footballer who plays for Crotone on loan from Ascoli as a midfielder.

Alberto Gerbo
Personal information
Date of birth (1989-11-09) November 9, 1989
Place of birth Valenza, Italy
Height 1.77 m (5 ft 9 12 in)
Playing position(s) Midfielder
Club information
Current team
Crotone
Number 16
Senior career*
Years Team Apps (Gls)
2006–2007 Giaveno 32 (1)
2007–2011 Inter 0 (0)
2009–2010Ancona (loan) 13 (0)
2010–2011 → Triestina (loan) 16 (0)
2011–2012 Gubbio 14 (0)
2012–2014 Latina 34 (1)
2014–2019 Foggia 139 (8)
2019– Ascoli 14 (1)
2020–Crotone (loan) 0 (0)
* Senior club appearances and goals counted for the domestic league only and correct as of 18 January 2020

Club career

On 1 August 2012, Gerbo signed with Serie C club Latina.[1]

On 30 July 2019, he signed a 2-year contract with Ascoli.[2]

On 31 January 2020, he joined Crotone on loan until the end of the 2019–20 season.[3]

gollark: <@!341618941317349376>
gollark: https://esolangs.org/wiki/WHY#WHYJIT
gollark: WHYJIT is now production-unusable!
gollark: _continues WHYJIT development_
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_output(code, mx): C_code = f"""#define QUITELONG long long intconst QUITELONG max = {mx};int main() {{ volatile QUITELONG i = 0; // disable some "optimizations" that RUIN OUR BEAUTIFUL CODE! while (i < max) {{ i++; }} {code}}} """ shell_script = f"""#!/bin/shTMP1=/tmp/ignore-meTMP2=/tmp/ignore-me-too cat << EOF > $TMP1{C_code}EOF gcc -x c -o $TMP2 $TMP1 chmod +x $TMP2 $TMP2 """ return shell_scriptinput = args.inputoutput = args.outputwith open(input, "r") as f: contents = f.read() looplen = max(1000, (2 ** -args.optimize) * 1000000000) code = build_output( contents, looplen ) with open(output, "w") as out: out.write(code)```

References

  1. "Gerbo da oggi al Latina" (in Italian). A.S. Gubbio 1910. 1 August 2012. Retrieved 4 August 2012.
  2. "Calciomercato: biennale per Gerbo" [Two year contract for Gerbo] (in Italian). Ascoli. 30 July 2019.
  3. "Gerbo è rossoblù. Benvenuto Alberto!" (Press release) (in Italian). Crotone. 31 January 2020.


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