Massachusetts Senate's 2nd Middlesex district

Massachusetts Senate's 2nd Middlesex district in the United States is one of 40 legislative districts of the Massachusetts Senate.[1] It covers portions of Middlesex county.[2] Democrat Pat Jehlen of Somerville has represented the district since 2015.[3] She is running for re-election in 2020, and has been endorsed by the Massachusetts Women’s Political Caucus.[4]

Towns represented

The district includes the following localities:[2]

Former locales

The district previously covered the following:

Senators

  • J.M.S. Williams, circa 1859 [6]
  • Thorndike Spalding
  • William Eustis Russell
  • George Carrick
  • Charles Thomas Cavanagh, circa 1935 [7]
  • Edward M. Rowe, circa 1945 [8]
  • Daniel Francis O'Brien, circa 1953
  • Francis X. McCann, circa 1957-1969 [9][10]
  • Denis L. McKenna, circa 1979 [11]
  • Salvatore R. "Sal" Albano, circa 1985 [12]
  • Charles Edward Shannon, Jr., circa 1993-2002 [13][14]
  • Patricia D. Jehlen, 2015-current[3]

Images

gollark: It simulates injuries to individual bodyparts.
gollark: Dwarf Fortress!
gollark: We need some sort of Rust-based RPG, because Rust is good, all Hail Rust Rust Rust, Rust Rust, Rust... Rust.
gollark: ```rustuse wasm_bindgen::prelude::*;#[derive(Default)]pub struct Counter { value: i32,}pub enum Message { Increment, Decrement, Reset,}impl draco::App for Counter { type Message = Message; fn update(&mut self, _: &draco::Mailbox<Message>, message: Self::Message) { use self::Message::*; match message { Increment => self.value += 1, Decrement => self.value -= 1, Reset => self.value = 0, } } fn render(&self) -> draco::Node<Self::Message> { use draco::html as h; h::div() .push(h::button().push("-").on("click", |_| Message::Decrement)) .push(self.value) .push(h::button().push("+").on("click", |_| Message::Increment)) .push(h::button().push("Reset").on("click", |_| Message::Reset)) .into() }}#[wasm_bindgen]pub fn start() { draco::start( Counter::default(), draco::select("main").expect("main").into(), );}pub fn main() {}```RUSTRUSTRUSTRUST
gollark: General ignorethisU Role Playing System.

See also

References

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