Bob Brown (footballer, born 1869)

Robert Brown (1869-after 1901) was an English professional footballer who played as an outside-forward for various clubs at the end of the 19th century, including three years in the Football League with Burton Wanderers and a year at Southampton in 1897–98, where he helped win the Southern League championship.

Bob Brown
Personal information
Full name Robert Brown
Date of birth 1869
Place of birth Liverpool, England
Playing position(s) Outside-forward
Senior career*
Years Team Apps (Gls)
1894–1897 Burton Wanderers 84 (19)
1897–1898 Southampton 12 (2)
1898–1899 Bristol Rovers 24 (3)
1899–1900 Queens Park Rangers
1900–1901 Swindon Town 22 (1)
* Senior club appearances and goals counted for the domestic league only

Football career

Brown was born in Liverpool and his professional football career started when he joined Burton Wanderers in July 1894[1] for their first season in the Football League Second Division. Over the next three season, Brown rarely missed a match, making a total of 87 league and FA Cup appearances. At the end of the 1896–97 season, after finishing second last in the League, they were voted out.

In May 1897, Brown was given a trial by Southern League champions Southampton and travelled to Hampshire with Arthur Chadwick of Burton Swifts. Despite being described in the local press as "an average type player",[1] Brown was signed on a professional contract and made his debut at inside-right in a 2–0 defeat at Tottenham on the opening day of the season, 18 September 1897. Brown retained his place for the next match before giving way to Willie Naughton.[2]

Brown returned in January 1898, now playing at outside-right, ousting Jimmy Yates from the side and went on to make a total of twelve league appearances, scoring twice (in consecutive matches in April). Brown also made one FA Cup appearance, when he replaced the injured Joe Farrell in the semi-final replay against Nottingham Forest, when the "Saints" were rather controversially eliminated when goalkeeper George Clawley had his eyes "choked with snow" in a blizzard and conceded two goals in the final minutes of the game.[3]

In the 1898 close-season, Southampton signed Tom Smith and Brown was released. He then had seasons at Bristol Rovers, where he was known by the nickname 'Daddy' Brown, and Queens Park Rangers, before winding up his career at Swindon Town.

Honours

Southampton
gollark: Here is a similar thing for JSON. Note that it delegates out to an external JSON library for string escaping.```luafunction safe_json_serialize(x, prev) local t = type(x) if t == "number" then if x ~= x or x <= -math.huge or x >= math.huge then return tostring(x) end return string.format("%.14g", x) elseif t == "string" then return json.encode(x) elseif t == "table" then prev = prev or {} local as_array = true local max = 0 for k in pairs(x) do if type(k) ~= "number" then as_array = false break end if k > max then max = k end end if as_array then for i = 1, max do if x[i] == nil then as_array = false break end end end if as_array then local res = {} for i, v in ipairs(x) do table.insert(res, safe_json_serialize(v)) end return "["..table.concat(res, ",").."]" else local res = {} for k, v in pairs(x) do table.insert(res, json.encode(tostring(k)) .. ":" .. safe_json_serialize(v)) end return "{"..table.concat(res, ",").."}" end elseif t == "boolean" then return tostring(x) elseif x == nil then return "null" else return json.encode(tostring(x)) endend```
gollark: My tape shuffler thing from a while ago got changed round a bit. Apparently there's some demand for it, so I've improved the metadata format and written some documentation for it, and made the encoder work better by using file metadata instead of filenames and running tasks in parallel so it's much faster. The slightly updated code and docs are here: https://pastebin.com/SPyr8jrh. There are also people working on alternative playback/encoding software for the format for some reason.
gollark: Are you less utilitarian with your names than <@125217743170568192> but don't really want to name your cool shiny robot with the sort of names used by *foolish organic lifeforms*? Care somewhat about storage space and have HTTP enabled to download name lists? Try OC Robot Name Thing! It uses the OpenComputers robot name list for your... CC computer? https://pastebin.com/PgqwZkn5
gollark: I wanted something to play varying music in my base, so I made this.https://pastebin.com/SPyr8jrh is the CC bit, which automatically loads random tapes from a connected chest into the connected tape drive and plays a random track. The "random track" bit works by using an 8KiB block of metadata at the start of the tape.Because I did not want to muck around with handling files bigger than CC could handle within CC, "tape images" are generated with this: https://pastebin.com/kX8k7xYZ. It requires `ffmpeg` to be available and `LionRay.jar` in the working directory, and takes one command line argument, the directory to load to tape. It expects a directory of tracks in any ffmpeg-compatible audio format with the filename `[artist] - [track].[filetype extension]` (this is editable if you particularly care), and outputs one file in the working directory, `tape.bin`. Please make sure this actually fits on your tape.I also wrote this really simple program to write a file from the internet™️ to tape: https://pastebin.com/LW9RFpmY. You can use this to write a tape image to tape.EDIT with today's updates: the internet→tape writer now actually checks if the tape is big enough, and the shuffling algorithm now actually takes into account tapes with different numbers of tracks properly, as well as reducing the frequency of a track after it's already been played recently.
gollark: https://pastebin.com/pDNfjk30Tired of communicating fast? Want to talk over a pair of redstone lines at 10 baud? Then this is definitely not perfect, but does work for that!Use `set rx_side [whatever]` and `set tx_side [whatever]` on each computer to set which side of the computer they should receive/transmit on.

References

  1. Holley, Duncan; Chalk, Gary (1992). The Alphabet of the Saints. ACL & Polar Publishing. p. 51. ISBN 0-9514862-3-3.
  2. Chalk, Gary; Holley, Duncan (1987). Saints – A complete record. Breedon Books. pp. 22–23. ISBN 0-907969-22-4.
  3. David Bull & Bob Brunskell (2000). Match of the Millennium. Hagiology Publishing. pp. 18–19. ISBN 0-9534474-1-3.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.