Trevor Rogers (baseball)

Trevor J'Daniel Rogers (born November 13, 1997) is an American professional baseball pitcher in the Miami Marlins organization.

Trevor Rogers
Miami Marlins
Pitcher
Born: (1997-11-13) November 13, 1997
Carlsbad, New Mexico
Bats: Left Throws: Left

Career

Rogers attended Carlsbad High School in Carlsbad, New Mexico. As a junior, he was 9–2 with a 0.70 earned run average (ERA) and 122 strikeouts and helped lead his team to victory in the 6A state championship game.[1]

Rogers committed to Texas Tech University to play college baseball.[2] Considered one of the top prospects for the 2017 Major League Baseball draft,[3][4] the Miami Marlins selected him with the 13th overall selection.[5] Rogers signed with Miami for $3.4 million.[6]

Rogers made his professional debut in 2018 with the Greensboro Grasshoppers and spent the entire season there, pitching to a 2-7 record with a 5.82 ERA over 17 starts.[7] He began 2019 with the Jupiter Hammerheads[8] with whom he was named a Florida State League All-Star.[9] He was promoted to the Jacksonville Jumbo Shrimp in August. Over 23 starts between both clubs, Rogers went 6-10 with a 2.90 ERA, striking out 150 batters over 136 13 innings.[10]

Personal life

His cousin, Cody Ross, played in Major League Baseball.[11][12]

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


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