Bartholomew Reade

Sir Bartholomew Reade (or Rede; d. 1505) was an English goldsmith and politician who served as Lord Mayor of London.

Family

Reade was born in Cromer, Norfolk. His parents were Roger Reade (d. 1470) and his wife Catherine, and he had at least two siblings, John and Simon. He was already well-established in London by 1486, when he is mentioned in his mother's will as a "citizen and goldsmith of London".[1]

Offices

A gold sovereign of Elizabeth I. The first gold sovereigns were minted by Bartholomew Reade for her grandfather Henry VII

Reade, a goldsmith, was for several years the Master of the Mint. Along with Lord Daubeney, he was commissioned to mint the first gold sovereigns in 1489.[2][3] He was one of the Sheriffs of London in 1497. Two years later, he was alderman of the ward of Aldersgate.[4] He was elected Lord Mayor of London in 1502, succeeding fellow goldsmith John Shaa. During his mayoralty, he used Crosby Place, which he had acquired in 1501, as his hall. He is recorded as throwing extravagant feasts for ambassadors sent by Emperor Maximilian.[5]

Death

Reade died in 1505.[6] He and his wife were interred at the church of St John Zachary, the burial place of many of the city's prominent goldsmiths.[7] In his will, he established a free school in his home town of Cromer, under the management of the Goldsmiths' Company.[1]

gollark: Hold on, I can probably make a much nicer one.
gollark: It's kind of bad.
gollark: ```python#!/bin/env python3chars = [chr(n) for n in range(126)]firstchar = chars[0]lastchar = chars[len(chars) - 1]def increment_char(character): return chr(ord(character) + 1)def old_increment_string(string_to_increment): reversed_string = list(reversed(string_to_increment)) # Reverse the string for easier work. for rindex, char in enumerate(reversed_string): if char == lastchar: # If we can't increment this char further, try the next ones. reversed_string[rindex] = firstchar # Set the current char back to the first one. reversed_string[rindex + 1] = increment_char(reversed_string[rindex + 1]) # Increment the next one along. else: # We only want to increment ONE char, unless we need to "carry". reversed_string[rindex] = increment_char(reversed_string[rindex]) break return ''.join(list(reversed(reversed_string)))def increment_string(to_increment): reversed_string = list(to_increment) # Reverse the string for easier work. for rindex, char in enumerate(reversed_string): if char == lastchar: # If we can't increment this char further, try the next ones. reversed_string[rindex] = firstchar # Set the current char back to the first one. reversed_string[rindex + 1] = increment_char(reversed_string[rindex + 1]) # Increment the next one along. else: # We only want to increment ONE char, unless we need to "carry". reversed_string[rindex] = increment_char(reversed_string[rindex]) break return ''.join(list(reversed_string))def string_generator(): length = 0 while 1: length += 1 string = chars[0] * length while True: try: string = increment_string(string) except IndexError: # Incrementing has gone out of the char array, move onto next length break yield string```
gollark: Except it enumerates all possible ASCII strings instead.
gollark: I made that!

References

This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.