Panagiota Petratos
Panagiota Petratos (born 28 June 1999) is an Australian soccer player who currently plays for the Newcastle Jets in the W-league.[1] She has two brothers, Dimitri and Kosta who both play for the Newcastle men's team.
Personal information | |||
---|---|---|---|
Full name | Panagiota Petratos | ||
Date of birth | 28 June 1999 | ||
Place of birth | Sydney, New South Wales, Australia | ||
Playing position(s) | Midfielder | ||
Club information | |||
Current team | Newcastle Jets | ||
Number | 11 | ||
Youth career | |||
-2016 | Sydney FC | ||
Senior career* | |||
Years | Team | Apps | (Gls) |
2016–2017 | Sydney FC | 0 | (0) |
2017– | Newcastle Jets | 25 | (1) |
National team‡ | |||
2015 | Australia U-20 | 1 | (0) |
* Senior club appearances and goals counted for the domestic league only and correct as of 31 January 2020 ‡ National team caps and goals correct as of 31 January 2020 |
Club career
Petratos was first recruited by Sydney FC in the 2016-17 season but did not play at all. She was transferred to Newcastle the next season as one of the last signings for the year,[2] where she played in 7 matches as a substitute.[3] She continues to play predominantly as a substitute, and she scored her first goal which was a stoppage time winner against Adelaide United.[4]
International career
Petratos has played for the Australia women's national under-20 soccer team.[5]
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.
gollark: Wow, my server just got an "out of disk space" warning for /tmp.
References
- McCann, Craig J.J. (5 April 2019), "Newcastle", The Prevent Strategy and Right-wing Extremism, Routledge, pp. 88–109, doi:10.4324/9780429424656-5, ISBN 9780429424656
- "W-League: Trio of signatures completes Deans' roster". Newcastle Jets. Retrieved 18 November 2019.
- "Australia - P. Petratos - Profile with news, career statistics and history - Soccerway". au.soccerway.com. Retrieved 18 November 2019.
- "Panagiota Petratos wins it at the death for the Jets | Westfield W-League". www.w-league.com.au. Retrieved 18 November 2019.
- "Preview: Australia v Laos - 2015 AFF Championships". The Women's Game. Retrieved 18 November 2019.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.