Paris Gee

Paris Donald Gee (born July 5, 1994) is a Canadian soccer player who currently plays for Saint Louis FC in the USL Championship.

Paris Gee
Personal information
Full name Paris Donald Gee
Date of birth (1994-07-05) July 5, 1994
Place of birth Burnaby, British Columbia, Canada
Height 1.78 m (5 ft 10 in)
Playing position(s) Defender
Club information
Current team
Saint Louis FC
Number 2
Youth career
Vancouver Whitecaps FC
2012 Simon Fraser Clan
Senior career*
Years Team Apps (Gls)
2014–2016 NK Rudeš 35 (0)
2017–2018 Tulsa Roughnecks 52 (3)
2019– Saint Louis FC 27 (0)
* Senior club appearances and goals counted for the domestic league only and correct as of August 15, 2020

Career

College and Amateur

Gee spent one year playing college soccer at Simon Fraser University in 2012.[1]

Professional

Tulsa Roughnecks

After two years in Croatia with NK Rudeš,[2] Gee signed with United Soccer League club Tulsa Roughnecks in March 2017, and made his debut on March 25, 2017 as a 74th-minute substitute in a 4-1 win over Colorado Springs Switchbacks.[3] After appearing in 19 games for the club in 2017, Gee would re-sign with the club for the 2018 season.[4]

Saint Louis FC

Gee joined Saint Louis FC on December 29, 2018, ahead of their 2019 season.[5] Gee would return to the club for a second season in 2020.[6]

gollark: ```pythonimport requestsimport randomimport fileinputdef weighted_choice(choices): total = sum(weight for choice, weight in choices) r = random.uniform(0, total) upto = 0 for choice, weight in choices: if upto + weight >= r: return choice upto += weight assert False, "Shouldn't get here"def get_rhymes(word, extra_params={}): default_params = { "rel_rhy": word, "max": 20, "md": "pf" } return requests.get("https://api.datamuse.com/words/", params={**default_params, **extra_params}).json()def get_frequency(word_object): for tag in word_object["tags"]: if tag.startswith("f:"): return float(tag[2:]) return 0def get_rhyme(word, params): options = get_rhymes(word, params) options = list(map(lambda word_object: (word_object["word"], get_frequency(word_object)), options)) if len(options) == 0: return word return weighted_choice(options)last = Nonefor line in fileinput.input(): line = line.replace("\n", "") if last != None: print(line + " " + get_rhyme(last, {})) last = None else: last = line.replace(".", "").split(" ")[-1] print(line)```
gollark: My automated rap generatorIs far superior to puny human rappers laterIt is backed by the entire resourcesOf this random online dictionary and word relation query API resource isTechnically it still relies on human interventionTo produce the input text to turn into rap intentionAnd due to the limitations of current natural language processingIt is unable to significantly transform the input text reprocessingThis is because spoken human languagesAre mostly not designed with machine-parseability language isor ease of understandingas major goals expandingand were we using better-designed languages, automated rapwould surely be much easier. app
gollark: Does that even rhyme?Um... BLIME!
gollark: This is totally a rapA rap is what it is chap
gollark: I made an automatic rap generation programIt works by appending an unrelated word which rhymes with the end of the previous line amTo every second lineThis totally counts as rap mineVery valid rap indeedI win esolangs now speed

References

  1. "Paris Gee - 2012 Men's Soccer - SFU Athletics". athletics.sfu.ca.
  2. "Archived copy". Archived from the original on 2017-05-06. Retrieved 2017-03-28.CS1 maint: archived copy as title (link)
  3. "Tulsa Roughnecks FC vs Colorado Springs Switchbacks FC". uslsoccer.com. United Soccer League. March 25, 2017. Archived from the original on May 6, 2017. Retrieved March 28, 2020.
  4. "Roughnecks re-sign Paris Gee". Tulsa Roughnecks. December 1, 2017.
  5. Staff, USLChampionship com (December 29, 2018). "Saint Louis Adds Gee to Back Line". uslchampionship.com. USL Championship.
  6. "STLFC Announces Returning Players for 2020 Season". saintlouisfc.com. Saint Louis FC. November 30, 2019. Retrieved March 28, 2020.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.