Alexander Webster (New York)

Alexander Webster (1734 – September 21, 1810) was an American politician from New York.

Life

He was born in 1734 in Argyleshire, Scotland. He married Eleanor Burney (c.1730–1826), and they had several children. They went to the Province of New York in 1772, and settled in New Perth, Charlotte County (now Salem, Washington County). He fought in the American Revolutionary War and became a colonel of the State Militia.

Webster was a member of the 3rd and 4th New York Provincial Congresses (Charlotte Co.) in 1776 and 1777; and a member of the New York State Senate (Eastern D.) from 1777 to 1779, sitting in the 1st, 2nd, 3rd, 4th, 5th, 6th, 7th and 8th New York State Legislatures. He was a member of the Council of Appointment in 1777–78, 1779–80, 1781–82 and 1784.[1] He was Commissioner of Forfeitures for the Eastern District from 1783 to 1800, in charge of the confiscation and sale of Loyalists' properties.[2]

When the first political parties appeared, Webster sided with the Anti-Federalists, and later became a Democratic-Republican. He was a member of the New York State Assembly (Washington Co.) in 1788 and 1788–89; and again a member of the State Senate from 1789 to 1793, sitting in the 13th, 14th, 15th and 16th New York State Legislatures. He was again a member of the Council of Appointment in 1791.

In December 1794, he ran as an Independent Democratic-Republican for Congress in the Saratoga–Washington district, but was defeated by the regular Democratic-Republican John Williams.[3]

He died on September 21, 1810, at his home in Hebron, New York;[4] and was buried at the Old Hebron Cemetery there.

Sources

  1. The New York Civil List compiled by Franklin Benjamin Hough (pg. 54, 110–115, 147, 164f and 315; Weed, Parsons and Co., 1858)
  2. No Turning Point: The Saratoga Campaign in Perspective by Theodore Corbett (University of Oklahoma Press, 2012; pg. 284f; ISBN 978-0-8061-4276-0)
  3. Election result NY Saratoga-Washington at "A New Nation Votes", compiled by Phil Lampi, hosted at Tufts University Digital Collections and Archives
  4. History of Washington County, N.Y. by James Gibson (1932; pg. 131–134)
gollark: I doubt the second part is true.
gollark: People that have iPhones: buy sensible phones.
gollark: Yes; it's *very hard* to go around editing the FS API such that other stuff isn't affected.
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__)raise __builtins__.quibble()```
gollark: table.deepcopy, table.shallowcopy, table.slice, table.filter, table.map
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.