John J. Howard

John J. Howard (1869 – January 24, 1941) was an American politician from New York.

Life

He was born in 1869 in Brooklyn, Kings County, New York.[1]

Howard was a member of the New York State Assembly (Kings Co., 7th D.) in 1922, 1923, 1924, 1925, 1926, 1927, 1928, 1929 and 1930.

He was a member of the New York State Senate (5th D.) from 1931 until his death in 1941, sitting in the 154th, 155th, 156th, 157th, 158th, 159th, 160th, 161st, 162nd and 163rd New York State Legislatures.

He died on January 24, 1941, at his home at 453 Fifty-fifth Street in Brooklyn, of a heart attack.[2]

Sources

  1. New York Red Book (1932; pg. 30)
  2. JOHN J. HOWARD; State Senator in the New York Times on January 25, 1941 (subscription required)
New York State Assembly
Preceded by
John J. Kelly
New York State Assembly
Kings County, 7th District

1922–1930
Succeeded by
William Kirnan
New York State Senate
Preceded by
Daniel F. Farrell
New York State Senate
5th District

1931–1941
Succeeded by
William Kirnan


gollark: Yes, wojbie, that's actual live code (with some bits removed to make it fit), not an example.
gollark: No evil "class" stuff needed.
gollark: This is an API I run to do some random things.
gollark: ```python#!/usr/bin/env python3from flask import Flask, jsonifyfrom wsgiref.simple_server import make_serverimport subprocessimport randomfrom mpd import MPDClientimport threadingimport timempd_client = MPDClient()mpd_client.connect("localhost", 6600)print("connected, mpd is", mpd_client.mpd_version)app = Flask(__name__)@app.route("/")def index(): return "Hello, World!"@app.route("/fortune/")def fortune(): return subprocess.run(["fortune"], stdout=subprocess.PIPE).stdoutcurrent_song = Nonedef mpd_loop(): print("mpd query loop started") while True: global current_song current_song = mpd_client.currentsong() current_song["status"] = mpd_client.status() time.sleep(0.2)threading.Thread(target=mpd_loop).start()@app.route("/current-song")def get_current_song(): return jsonify(current_song)with make_server('', 1337, app) as httpd: print("Serving HTTP...") httpd.serve_forever()```
gollark: It doesn't require classes. Hold on.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.