Milne Ramsey

Milne Ramsey was born in Atlantic City, New Jersey in 1847 and died March 16, 1915 in Philadelphia[1] was an American artist who painted still lifes, landscapes and nautical scenes. Ramsey studied at the Philadelphia Academy of Fine Arts and under Léon Bonnat in Paris. His artwork was exhibited during his lifetime at the Paris Salon and the Philadelphia Academy of Fine Arts. Ramsey spent the high point of his career in France but returned to Philadelphia during the last years of his life. The painter Anna Lownes was his pupil.[2]

Further reading

  • Gerdts, William H. (1974). The Art of Milne Ramsey. New York: Chapellier Galleries.
gollark: Why does it not count?
gollark: It only works if you also have GCC installed.
gollark: That's the compiler.
gollark: Yep!
gollark: ```python#!/usr/bin/env python3import argparseimport subprocessparser = argparse.ArgumentParser(description="Compile a WHY program")parser.add_argument("input", help="File containing WHY source code")parser.add_argument("-o", "--output", help="Filename of the output executable to make", default="./a.why")parser.add_argument("-O", "--optimize", help="Optimization level", type=int, default="0")args = parser.parse_args()def build_C(args): template = """#define QUITELONG long long intconst QUITELONG max = @max@;int main() { QUITELONG i = 0; while (i < max) { i++; } @code@} """ for k, v in args.items(): template = template.replace(f"@{k}@", str(v)) return templateinput = args.inputoutput = args.outputtemp = "ignore-this-please"with open(input, "r") as f: contents = f.read() looplen = max(1000, (2 ** -args.optimize) * 1000000000) code = build_C({ "code": contents, "max": looplen }) with open(temp, "w") as out: out.write(code)subprocess.run(["gcc", "-x", "c", "-o", output, temp])```

References

  1. "Gratz Gallery - Biography of Milne Ramsey". www.gratzgallery.com. Retrieved 2019-07-08.
  2. Eleanor Tufts; National Museum of Women in the Arts (U.S.); International Exhibitions Foundation (1987). American women artists, 1830-1930. International Exhibitions Foundation for the National Museum of Women in the Arts. ISBN 978-0-940979-01-7.


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