Ross Davidson (footballer, born 1973)

Ross Davidson (born 11 November 1973 in Chertsey, England) is an English former professional footballer who played as a defender for Sheffield United, Chester City and Shrewsbury Town in the Football League.

Ross Davidson
Personal information
Full name Ross James Davidson
Date of birth (1973-11-13) 13 November 1973
Place of birth Chertsey, England
Playing position(s) Defender
Senior career*
Years Team Apps (Gls)
1993–1996 Sheffield United 2 (0)
1994–1996Chester City (loan) 10 (1)
1996–1999 Chester City 125 (4)
1999–2000 Barnet 9 (0)
2000–2001 Shrewsbury Town 43 (0)
* Senior club appearances and goals counted for the domestic league only

Career

Davidson was signed for Sheffield United by manager Dave Bassett in June 1993 from non-league Walton and Hersham.[1] He was never able to make the break into the first team and was eventually given a free transfer to Chester City in 1996. He made over 100 appearances for The Blues before spells with Barnet and Shrewsbury Town where he finished his career.[1] At Shrewsbury he scored once, his goal coming in the League Cup against Preston North End.[2]

gollark: Pretty much all of the algorithms reduced size by ~50% or so and the difference is maybe 5% or so between them all, so this is definitely premature optimization, but bees?
gollark: I tested four different compression algorithms and brotli did fairly well; I would have used zstandard but the node bindings for it are awful, and brotli actually did do better on small inputs.
gollark: For example, it stores created/updated timestamps in a way which allows them to be looked up more quickly, makes it faster to look up the latest revision of stuff, allows me to do compression (I implemented brotli compression to reduce storage requirements a lot), and allows revisions to have data and represent stuff other than "the page content changed".
gollark: The new version *is* better, even if it involves something like 70 lines more code.
gollark: I've reworked minoteaur's design a bit again because productivity is BEES and happens to other people.```sqlCREATE TABLE pages ( id INTEGER PRIMARY KEY, name TEXT NOT NULL, updated INTEGER NOT NULL, content TEXT NOT NULL);``` I went from that small and thus uncool database thingy to this:```sqlCREATE TABLE versions ( vuuid TEXT PRIMARY KEY COLLATE BINARY, rawSize INTEGER NOT NULL, encoding TEXT, data BLOB NOT NULL);CREATE TABLE pages ( title TEXT PRIMARY KEY, created INTEGER NOT NULL, updated INTEGER NOT NULL, latestVersion TEXT NOT NULL REFERENCES versions(vuuid));CREATE TABLE revisions ( ruuid TEXT PRIMARY KEY COLLATE BINARY, page TEXT NOT NULL REFERENCES pages(title), timestamp INTEGER NOT NULL, type TEXT NOT NULL, data TEXT NOT NULL, -- JSON version TEXT NOT NULL REFERENCES versions(vuuid));CREATE INDEX revisions_page_ix ON revisions(page);```

References

  1. Denis Clarebrough & Andrew Kirkham (2008). Sheffield United Football Club Who's Who. Hallamshire Press. p. 98. ISBN 978-1-874718-69-7.
  2. "Worthington Cup: Fulham's pay-off". The Telegraph. 6 September 2000. Retrieved 5 September 2012.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.