Tucker Stephenson
Tucker Stephenson (born October 23, 1996) is an American soccer player who currently plays for Oklahoma City Energy in the USL Championship.
Personal information | |||
---|---|---|---|
Full name | Tucker Stephenson | ||
Date of birth | October 23, 1996 | ||
Place of birth | Overland Park, Kansas, United States | ||
Height | 5 ft 11 in (1.80 m) | ||
Playing position(s) | Forward | ||
Club information | |||
Current team | Oklahoma City Energy | ||
Number | 18 | ||
Youth career | |||
2013–2015 | Sporting Kansas City | ||
College career | |||
Years | Team | Apps | (Gls) |
2015–2016 | West Virginia Mountaineers | 31 | (4) |
2017–2018 | Loyola Ramblers | 24 | (0) |
Senior career* | |||
Years | Team | Apps | (Gls) |
2017 | Des Moines Menace | 11 | (1) |
2018 | Kaw Valley FC | 11 | (9) |
2019 | Swope Park Rangers | 0 | (0) |
2020– | Oklahoma City Energy | 1 | (0) |
* Senior club appearances and goals counted for the domestic league only |
Career
Youth and college
Stephenson began playing college soccer at the University of West Virginia in 2015,[1] where he played for two seasons before transferring to Loyola University Chicago in 2017.[2]
While at college, Stephenson appeared for USL Premier Development League sides Des Moines Menace[3] and Kaw Valley FC.[4]
Professional
On July 23, 2019, Stephenson joined USL Championship side Swope Park Rangers.[5] He left the club at the end of the season without making a first team appearance.
On January 14, 2020, Stephenson signed with USL Championship side Oklahoma City Energy.[6]
gollark: These are done → muahahaha.
gollark: ... also array literals, bee their bad docs.
gollark: Please also give me write access to the repo.
gollark: Oh, right, array indexing.
gollark: ```python# parsita-based pseudocode syntax parserfrom stmt import *from parsita import *from parsita.util import constantdef compose(f, g): return lambda x: f(g(x))def map_expr(x): start, end = x if end == "": return start return Op([start, end[1]], end[0])def map_unop_expr(x): return Op(x[1], x[0])def aliases(name, aliases): p = lit(name) for alias in aliases: p |= (lit(alias) > (lambda _: name)) return pclass ExprParser(TextParsers): ε = lit("") IntLit = reg("\-?[0-9]+") > compose(IntLit, int) StrLit = "'" >> reg("[^']*") << "'" > StrLit # TODO escapes (not in "spec" but could be needed) FloatLit = reg("\-?[0-9]+\.[0-9]+") > compose(FloatLit, float) Identifier = reg("[a-zA-Z_]+[a-zA-Z_0-9]*") > Var BracketedExpr = "(" >> Expr << ")" UnaryOperator = lit("NOT") Start = FloatLit | StrLit | IntLit | BracketedExpr | (UnaryOperator & Expr > map_unop_expr) | Identifier # avoid left recursion problems by not doing left recursion # AQA pseudocode does not appear to have a notion of "operator precedence", simplifying parsing logic nicely BinaryOperator = aliases("≤", ["<="]) | aliases("≠", ["!="]) | aliases("≥", [">="]) | lit("DIV") | lit("MOD") | lit("AND") | lit("OR") | reg("[+/*\-=<>]") End = (BinaryOperator & Expr) | ε Expr = (Start & End) > map_exprparse = ExprParser.Expr.parsex = parse("1+2+3 != 6 AND NOT 4 AND x + y")if isinstance(x, Failure): print(x.message)else: print(x.value)```
References
- "Tucker Stephenson - Men's Soccer". West Virginia University Athletics.
- "Tucker Stephenson - Men's Soccer". Loyola University Chicago Athletics.
- "Des Moines Menace - 2017 Playoffs - Roster - # - Tucker Stephenson -". www.uslleaguetwo.com.
- "Kaw Valley FC - 2018 Regular Season - Roster - #22 - Tucker Stephenson -". www.uslleaguetwo.com.
- "Swope Park Rangers sign former Sporting KC Academy forward Tucker Stephenson | Sporting Kansas City".
- Communications, Energy FC (January 14, 2020). "Greens Sign Forward Tucker Stephenson". OKC Energy FC.
External links
- Tucker Stephenson - Men's Soccer West Virginia bio
- Tucker Stephenson - Men's Soccer Loyola bio
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.