Maxwell Starkman

Maxwell Starkman (November 17, 1921 December 29, 2003) was a Canadian architect based in Los Angeles, California.

Maxwell Starkman
Born(1921-11-17)November 17, 1921
DiedDecember 29, 2003(2003-12-29) (aged 82)
Alma materUniversity of Manitoba
OccupationArchitect
PracticeMaxwell Starkman Associates
BuildingsMuseum of Tolerance

Biography

Early life

Maxwell Starkman was born in 1921 in Toronto, Canada.[1][2] He served in England, France, Belgium and Germany during World War II.[1][2] He graduated from the University of Manitoba.[1][2]

Career

The Dunes hotel and casino in Las Vegas, Nevada.

He moved to Los Angeles, California in 1950.[1] Shortly after, he started working for Richard J. Neutra.[1] In 1953, he started Reichl and Starkman Architects with fellow architect Fritz Reichl.[1] After Reichl died in 1954, he established Maxwell Starkman Associates, an architectural firm.[1] He mostly built tract homes for returning G.I.s.[2][3]

The Fallbrook Center in West Hills, Los Angeles, California.

Later, he built commercial buildings such as shopping malls and drugstores.[2] For example, he designed the Park Place Shopping Center and the Sunrise City Shopping Center along the Maryland Parkway in Las Vegas, Nevada.[2] He also designed the Fallbrook Center in West Hills and some student housing at California State University, Los Angeles. Later in the 1960s, he designed the Melodyland Theater in Anaheim.[1] Additionally, Starkman designed the Dunes hotel and casino, which was later demolished and replaced with the Bellagio.[2]

The Meridian Condominiums in San Diego, California.

In 1972, he designed the Zenith Tower located at 6300 on Wilshire Boulevard, near Carthay Circle.[3] It was built for the Zenith National Insurance as a sixteen-story skyscraper.[3] Later, he designed the Sony Pictures Plaza.[1] He also designed the Meridian Condominiums, a skyscraper in San Diego. His last design was the Museum of Tolerance.[1]

He retired in 1987.[1]

Personal life

He was married to Gloria Starkman.[1] They had three sons and one daughter: sons David, Laurence, Robert, and Nancy.[1] He became a widower when his wife died in 1992.[1]

Death

He died on December 29, 2003.[1]

Legacy

The Maxwell Starkman Scholarship in Architecture at the University of Manitoba is named in his honor.[4]

gollark: Good luck.
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.

References

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