Sigma Faye Coran

Rabbi Sigma Faye Coran (March 23, 1966 May 8, 2020) was Senior Rabbi at Rockdale Temple, Amberley, Ohio.[1] As such, she was the first woman to serve as the senior rabbi of a Cincinnati area congregation.[2]

Rabbi

Sigma Faye Coran
TitleSenior Rabbi
Personal
Born(1966-03-23)March 23, 1966
St. Louis, Missouri
DiedMay 8, 2020(2020-05-08) (aged 54)
ReligionJudaism
NationalityAmerican
SpouseMatthew Kraus
Children4
Alma materTufts University
SynagogueRockdale Temple
ResidenceAkron, Ohio

Early life and education

Coran was born in St. Louis, Missouri and grew up in Akron, Ohio.[1] She studied clinical psychology and biology at Tufts University.[1] She was ordained at Hebrew Union College.[1]

Personal life

She married Rabbi Matthew Kraus with whom she had four children.[1]

Career

Coran served as Assistant Rabbi at Temple Emanuel in Worcester, Massachusetts from 1994 to 1999.[3] Coran was appointed Senior Rabbi of Rockdale Temple, the oldest Jewish congregation in the United States west of the Allegheny Mountains, on July 1, 2004.[1] As such, she was the first woman to serve as the senior rabbi of a Cincinnati area congregation.[2] 

Death

Rabbi Sigma Faye Coran died on May 8, 2020 of metastatic breast cancer.[1]

gollark: Fine.```python# from here: https://github.com/Rapptz/RoboDanny/blob/18b92ae2f53927aedebc25fb5eca02c8f6d7a874/cogs/utils/time.pyshort_timedelta_regex = re.compile("""(?:(?P<years>[0-9]{1,8})(?:years?|y))? # e.g. 2y(?:(?P<months>[0-9]{1,8})(?:months?|mo))? # e.g. 2months(?:(?P<weeks>[0-9]{1,8})(?:weeks?|w))? # e.g. 10w(?:(?P<days>[0-9]{1,8})(?:days?|d))? # e.g. 14d(?:(?P<hours>[0-9]{1,8})(?:hours?|h))? # e.g. 12h(?:(?P<minutes>[0-9]{1,8})(?:minutes?|m))? # e.g. 10m(?:(?P<seconds>[0-9]{1,8})(?:seconds?|s))? # e.g. 15s """, re.VERBOSE)def parse_short_timedelta(text): match = short_timedelta_regex.fullmatch(text) if match is None or not match.group(0): raise ValueError("parse failed") data = { k: int(v) for k, v in match.groupdict(default=0).items() } return datetime.datetime.utcnow() + relativedelta(**data)cal = parsedatetime.Calendar()def parse_humantime(text): time_struct, parse_status = cal.parse(text) if parse_status == 1: return datetime.datetime(*time_struct[:6]) else: raise ValueError("parse failed")def parse_time(text): try: return datetime.datetime.strptime(text, "%d/%m/%Y") except: pass try: return parse_short_timedelta(text) except: pass try: return parse_humantime(text) except: pass raise ValueError("could not parse time")```
gollark: ... no.
gollark: The time parsing logic is kind of inconsistent.
gollark: ++remind 9h32m no you aren't.
gollark: ++magic sql select * from reminders order by id desc limit 1

References

  1. May, Lucy (9 May 2020). "Pioneering Rockdale Temple Rabbi Sigma "Sissy" Faye Coran has died". WCPO-TV. Retrieved 9 May 2020.
  2. "Pioneering Rockdale Temple Rabbi Sigma "Sissy" Faye Coran has died". WCPO. May 8, 2020. Retrieved May 10, 2020.
  3. Francus, Yoseff (May 14, 2020). "Rabbi Sigma "Sissy" Faye Coran: Rabbi, teacher, mother, wife". American Israelite. Retrieved May 15, 2020.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.