Bob Turner (footballer, born 1936)

Bob Turner (born 21 June 1936) is a former Australian rules footballer who played with Melbourne in the Victorian Football League (VFL).[1]

Bob Turner
Personal information
Full name Bob Turner
Date of birth (1936-06-21) June 21, 1936
Original team(s) Traralgon
Height 183 cm (6 ft 0 in)
Weight 80 kg (176 lb)
Playing career1
Years Club Games (Goals)
1957–58, 1960–61 Melbourne 22 (7)
1 Playing statistics correct to the end of 1961.
Sources: AFL Tables, AustralianFootball.com

Notes

  1. Holmesby, Russell; Main, Jim (2009). The Encyclopedia of AFL Footballers: every AFL/VFL player since 1897 (8th ed.). Seaford, Victoria: BAS Publishing. p. 842. ISBN 978-1-921496-00-4.
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);```
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.