Robert Hodson

Robert Leighton Hodson (30 March 1885 – 8 January 1960) was the second Bishop of Shrewsbury in the modern era.[1]

Son of John Humphries Hodson and his wife Annie, he was educated at Berkhamsted School and St Edmund Hall, Oxford,[2] graduating as Bachelor of Arts (B.A.) in 1907 and Master of Arts (M.A.) in 1911. He trained for the Church of England ministry at Lichfield Theological College, which he entered in 1907. He was ordained Deacon in 1908 and Priest in 1910 by the Bishop of Lichfield.[3]

He was successively Curate at St Peter's Collegiate Church, Wolverhampton,[4] 1908 to 1912, and of Stavanton with Boddington, Gloucestershire, 1912 to 1917, Vicar of St Stephen's, Cheltenham, 1917 to 1925, Vicar of St Giles, Willenhall, Staffordshire, 1925 to 1928, Rector of St Peter's and Rural Dean of Wolverhampton from 1929 to 1935 and finally (before his elevation to the Episcopate in 1944) Archdeacon of Stafford from 1935.[3] Later in World War I he was a Temporary Chaplain of the Forces over 1918–19.[3] He held several positions at Lichfield Cathedral as Proctor in Convocation (1932–35), Treasurer (1935–36), Canon (1935–44) and Precentor (1936-44).[3]

He was consecrated Bishop Suffragan of Shrewsbury at St Paul's Cathedral, London, on 29 September 1944. During his episcopate he concurrently served as Provost of Denstone College from 1949.[3]

Hodson married in 1913 Margery Gertrude Corker. The couple had one son and two daughters.[2]

He retired in October 1959 [2][5] and moved to Llanfairfechan in north Wales, but died less than three months later, aged 74.[2]

Notes

  1. Bishop Of Shrewsbury To Retire The Times Wednesday, May 13, 1959; pg. 10; Issue 54459; col C
  2. “Who was Who” 1897-1990 London, A & C Black, 1991 ISBN 0-7136-3457-X
  3. Crockford's Clerical Directory, 1959-1960. Oxford University Press. p. 1060.
  4. Genuki details
  5. Obituary, Rt. Rev. R. L. Hodson The Times Saturday, Jan 09, 1960; pg. 10; Issue 54664; col B
Church of England titles
Preceded by
Eric Knightley Chetwode Hamilton
Bishop of Shrewsbury
1944 1959
Succeeded by
William Alonzo Parker



gollark: Idea: Make an esolang based around ideas for esolangs.
gollark: https://aphyr.com/posts/342-typing-the-technical-interview
gollark: If this worked as expected, in theory you could do```pythonraise quibble("abcd")```but alas, no.
gollark: But which runs much faster.
gollark: ```pythonfrom requests_futures.sessions import FuturesSessionimport concurrent.futures as futuresimport randomtry: import cPickle as pickleexcept ImportError: import pickletry: words_to_synonyms = pickle.load(open(".wtscache")) synonyms_to_words = pickle.load(open(".stwcache"))except: words_to_synonyms = {} synonyms_to_words = {}def add_to_key(d, k, v): d[k] = d.get(k, set()).union(set(v))def add_synonyms(syns, word): for syn in syns: add_to_key(synonyms_to_words, syn, [word]) add_to_key(words_to_synonyms, word, syns)def concat(list_of_lists): return sum(list_of_lists, [])def add_words(words): s = FuturesSession(max_workers=100) future_to_word = {s.get("https://api.datamuse.com/words", params={"ml": word}): word for word in words} future_to_word.update({s.get("https://api.datamuse.com/words", params={"ml": word, "v": "enwiki"}): word for word in words}) for future in futures.as_completed(future_to_word): word = future_to_word[future] try: data = future.result().json() except Exception as exc: print(f"{exc} fetching {word}") else: add_synonyms([w["word"] for w in data], word)def getattr_hook(obj, key): results = list(synonyms_to_words.get(key, set()).union(words_to_synonyms.get(key, set()))) if len(results) > 0: return obj.__getattribute__(random.choice(results)) else: raise AttributeError(f"Attribute {key} not found.")def wrap(obj): add_words(dir(obj)) obj.__getattr__ = lambda key: getattr_hook(obj, key)wrap(__builtins__)print(words_to_synonyms["Exception"])```New version which tends to reduce weirder output.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.