Tom Hilgendorf

Thomas Eugene Hilgendorf (born March 10, 1942) is an American former professional baseball player. He was a Major League relief pitcher for the St. Louis Cardinals, Cleveland Indians and Philadelphia Phillies in 1969–1970 and 1972–1975.

Tom Hilgendorf
Pitcher
Born: (1942-03-10) March 10, 1942
Clinton, Iowa
Batted: Switch Threw: Left
MLB debut
August 15, 1969, for the St. Louis Cardinals
Last MLB appearance
September 28, 1975, for the Philadelphia Phillies
MLB statistics
Win–loss record19–14
Earned run average3.04
Strikeouts173
Teams

Playing career

Tom Hilgendorf was signed by the Cardinals as a free agent in 1960. It took until 1969 for him to make it to the major leagues when the Cardinals brought him up from the minors as a 27-year-old rookie. The left-hander made his debut against Atlanta.

He was traded to the Kansas City Royals, then on to Cleveland, where the fork-baller managed six saves and a 5–3 record for a team that did not win very many games — in fact, the Indians finished last that year of 1973 in the American League East Division.

The following year, he was involved in the infamous Ten Cent Beer Night on June 4, 1974, and was hit by a steel folding chair thrown by one of the drunk fans who took part in the riot that ended the Indians game in a forfeit. The next night he came on in relief in the Indians' rout of the Texas Rangers.

His best year was also his last year when he won 7 and lost 3 with the Philadelphia Phillies in 1975.

gollark: This is really only useful if you want to actually resolve krist domains for HTTPoidal purposes or something.
gollark: You could stick them in the A record in some simple format (maybe the metadata one).
gollark: And probably AAAA/TXT/etc support.
gollark: <@129553195314839552> You want this with better input validation basically.
gollark: ```javascriptconst dns = require("dns2")const fetch = require("node-fetch")const { Packet } = dns;const server = dns.createServer(async (request, send, rinfo) => { const response = Packet.createResponseFromRequest(request); const [ question ] = request.questions; const { name } = question; if (name.endsWith(".kst")) { const nameWithoutExt = name.replace(/\.kst$/, "") const kstName = await (await fetch(`https://krist.ceriat.net/names/${encodeURIComponent(nameWithoutExt)}`)).json() console.log(kstName) if (kstName.name.a) { response.answers.push({ name, type: Packet.TYPE.A, class: Packet.CLASS.IN, ttl: 300, address: kstName.name.a }); } send(response) } else { // work out how to send NOAUTH here send(response) }});server.on('request', (request, response, rinfo) => { console.log(request.header.id, request.questions[0]);});server.listen(5333);```

References


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