Ed Deacy

Ed Deacy (born April 28, 1946 in Brooklyn) is a retired New York City police detective[1] who has had notable singing and acting gigs.[2][3]

Ed Deacy
Born (1946-04-28) April 28, 1946
OccupationPolice detective, actor

Perhaps best known as the one-time "official national anthem singer" for the New York City Police Department, Deacy has sung at Madison Square Garden, Yankee Stadium, and for Presidents including Ronald Reagan. He has released an album called My Celtic Heart.

Deacy has served as one of the assistant Deans of Discipline at Cardinal Hayes High School in the Bronx.[4] He was the school's attendance officer. His wife, Jane Deacy, has been the Republican District Leader for South Queens since 2007.

While on the Police Dept, and afterward, Ed Deacy went on to continue his singing career, and also to appear in films, notably Goodfellas, Sea of Love, Brighton Beach Memoirs, and TV sseries, Law & Order, The Sopranos and Sex and the City.

Filmography

Year Title Role Notes
1986Off BeatDancing Cop
1986Brighton Beach MemoirsPoliceman #2
1990GoodfellasDetective Deacy
1991Out for JusticeUniform Cop
1991One Good CopCaptain with Megaphone
1999Alice UndergroundNarrator and FatherShort
2005The Signs of the CrossDetective Deacy(final film role)
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. FBI National Academy. Turner Publishing Co. 2000. p. 91. ISBN 1-56311-487-9. Retrieved 2009-09-20.
  2. Fischler, Marcelle (November 6, 2005). "LONG ISLAND JOURNAL; Oldies but Goodies, and Not Just the Songs". The New York Times. Retrieved 2009-09-20.
  3. "Untitled picture". Milwaukee Sentinel. June 6, 1984. Retrieved 2009-09-20.
  4. "Entertainment Set For Rockaway Museum Fundraiser". The Wave. May 28, 2004. Archived from the original on March 2, 2005. Retrieved 2009-09-20.



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