Richard Curwen

Richard Curwen, D.D. was an English Anglican priest in the 16th century.[1]

Curwen was a Fellow of Corpus Christi College, Oxford.[2] He held the living at St Michael, Crooked Lane in the City of London and was a Canon of Lincoln Cathedral. He was appointed Archdeacon of Oxford in 1535.[3] and Archdeacon of Colchester in 1537,[4] holding both positions until his death in 1543.

Notes

  1. "Memoirs of the Archbishops of Dublin" D'Alton, J. p235: Dublin; Hodges and Smith; 1838
  2. Alumni Oxonienses 1500-1714, Covert-Cutts
  3. King, H.P.F. (1962), Fasti Ecclesiae Anglicanae 1300–1541, 1, p. 14
  4. Horn, Joyce M. (1963), Fasti Ecclesiae Anglicanae 1300–1541, 5, p. 13
gollark: getItemMeta returns a thing with stackSize, right?
gollark: Also, in that version there, patterns got fed in as a table with numeric indices from 1-9 representing each slot of the crafting table plus an optional qty key for how much the recipe produces.
gollark: Ridiculous. We *need* to be able to break maths in a snippet of code.
gollark: Here is a copy of the code I don't understand from the old version:```lualocal function descend(intermediateFn, terminalFn, i) local pattern = patterns[i] if pattern then intermediateFn(pattern) local pqty = pattern.qty -- Qty keys must be removed from the pattern for collation -- Otherwise, it shows up as a number stuck in the items needed table, which is bad. pattern.qty = nil local needs = util.collate(pattern) pattern.qty = pqty local has = {} for slot, item in pairs(pattern) do if util.satisfied(needs, has) then break end if patterns[item] then descend(intermediateFn, terminalFn, item) has[item] = (has[item] or 0) + (patterns[item].count or 1) end end else terminalFn(i) endendlocal function cost(i) local items = {} descend(function() end, function(i) table.insert(items, i) end, i) return util.collate(items)endlocal function tasks(i) local t = {} descend(function(pat) table.insert(t, pat) end, function() end, i) return tend```
gollark: Also, implementing whatever is done internally for finding free space to transfer to is hard!
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.