Manu Molina

Manuel "Manu" Antonio Molina Valero (born 20 November 1991) is a Spanish footballer who plays for Linense as an attacking midfielder.

Manu Molina
Personal information
Full name Manuel Antonio Molina Valero
Date of birth (1991-11-20) 20 November 1991
Place of birth Huelva, Spain
Height 1.75 m (5 ft 9 in)
Playing position(s) Attacking midfielder
Club information
Current team
Linense
Youth career
Recreativo
2007–2009 Espanyol
Senior career*
Years Team Apps (Gls)
2009–2011 Espanyol B 41 (4)
2010–2012 Espanyol 7 (0)
2011–2012Huesca (loan) 23 (1)
2012–2014 Valencia B 71 (13)
2014–2016 Recreativo 62 (4)
2016–2017 Deportivo B 26 (5)
2017–2018 Lleida Esportiu 30 (2)
2018–2019 Salamanca 32 (2)
2019– Linense 6 (0)
* Senior club appearances and goals counted for the domestic league only and correct as of 22:11, 2 October 2019 (UTC)

Football career

Born in Huelva, Andalusia, Molina was a product of local Recreativo de Huelva youth system. After completing his football grooming with RCD Espanyol, he made his first-team debut at only 18, playing the last minute of the 3–1 home win over Getafe CF on 29 August 2010.[1] One month later he started and played the entire match at Real Madrid, but the Catalans lost it 0–3.[2]

Molina was loaned to SD Huesca in Segunda División for the 2011–12 season.[3] He scored his first goal for the Aragonese on 17 September 2011, in a 3–3 home draw against CD Alcoyano.[4]

gollark: Yes, thanks TIOpy?
gollark: ```python#!/usr/bin/env python3import subprocess, os, os.path, sys, argparse, datetimetimestamp = datetime.datetime.now().strftime("%Y-%m-%d_%H-%M-%S")print(timestamp)parser = argparse.ArgumentParser(description="do backups, probably")parser.add_argument("--encrypt", "-E", help="store backup in encrypted folder (please make sure it's unlocked)", action="store_true")parser.add_argument("--no-incremental", "-n", help="don't do incremental backup", action="store_true")parser.add_argument("--save_as", "-a", help="back up under different name")parser.add_argument("dir", help="directory to backup")args = parser.parse_args()incremental = not args.no_incrementalprint(args)srcdir = os.path.abspath(args.dir)outdir = os.path.join(os.path.dirname(os.path.abspath(sys.argv[0])), "encrypted/backups" if args.encrypt else "backups")safepath = (args.save_as or srcdir).lstrip("/").replace("/", "-").replace("_", "-")outpath = os.path.join(outdir, f"{safepath}_{timestamp}{'_incr' if incremental else ''}.tar.zst")snapshot = os.path.join(outdir, f"{safepath}.snapshot")snapargs = ["-g", snapshot] if incremental else []print(srcdir, outdir, outpath)tarproc = subprocess.Popen(["tar", "-c", "-v", "-C", os.path.dirname(srcdir), os.path.basename(srcdir)] + snapargs, stdout=subprocess.PIPE)zstproc = subprocess.Popen(["zstd", "-10", "-T0", "-o", outpath], stdin=tarproc.stdout)def assert_proc(x): if x.wait() != 0: print(f"warning: {x.args} failed")assert_proc(tarproc)assert_proc(zstproc)```efficiency™
gollark: Wow, I really love having to use `grep` to find an option in `--help`!
gollark: Yes.
gollark: Anyway², I'll switch over my backup stuff and use the existing incremental tar thing for smallish compressible directories and rsync for large-scale apiary data.

References

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