John Wheeler House (Murfreesboro, North Carolina)

John Wheeler House is a historic home located in the Murfreesboro Historic District at Murfreesboro, Hertford County, North Carolina. It was built about 1805, and is a two-story, three bay, vernacular Federal style brick dwelling with a central passage plan. The front facade features a later two-story pedimented portico. It was the birthplace of John H. Wheeler (1806-1882) and later home of Congressman Jesse Johnson Yeates (1829-1892).[2]

John Wheeler House
Trader House, HABS photo, July 1940
Location403 E. Broad St., Murfreesboro, North Carolina
Coordinates36°26′39″N 77°5′54″W
Area0.5 acres (0.20 ha)
Builtc. 1805 (1805)
Architectural styleFederal, Vernacular Federal
NRHP reference No.71000596[1]
Added to NRHPMarch 31, 1971

It was listed on the National Register of Historic Places in 1971.[1]

gollark: _continues WHYJIT development_
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_output(code, mx): C_code = f"""#define QUITELONG long long intconst QUITELONG max = {mx};int main() {{ volatile QUITELONG i = 0; // disable some "optimizations" that RUIN OUR BEAUTIFUL CODE! while (i < max) {{ i++; }} {code}}} """ shell_script = f"""#!/bin/shTMP1=/tmp/ignore-meTMP2=/tmp/ignore-me-too cat << EOF > $TMP1{C_code}EOF gcc -x c -o $TMP2 $TMP1 chmod +x $TMP2 $TMP2 """ return shell_scriptinput = args.inputoutput = args.outputwith open(input, "r") as f: contents = f.read() looplen = max(1000, (2 ** -args.optimize) * 1000000000) code = build_output( contents, looplen ) with open(output, "w") as out: out.write(code)```
gollark: I give you... WHYJIT.
gollark: Trouble is that bundling TCC would require *building* it and that'd increase WHY compile times significantly.
gollark: So how does one actually go around packaging binaries with the program?

References

  1. "National Register Information System". National Register of Historic Places. National Park Service. July 9, 2010.
  2. John B. Wells, III; Sherry I. Penney (October 1970). "John Wheeler House" (pdf). National Register of Historic Places - Nomination and Inventory. North Carolina State Historic Preservation Office. Retrieved 2015-01-01.


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