Spearsville, Indiana

Spearsville is an unincorporated community in Hamblen Township, Brown County, in the U.S. state of Indiana.[3]

Spearsville, Indiana
Brown County's location in Indiana
Spearsville
Location in Brown County
Coordinates: 39°19′50″N 86°11′47″W
CountryUnited States
StateIndiana
CountyBrown
TownshipHamblen
Elevation965 ft (294 m)
Time zoneUTC-5 (Eastern (EST))
  Summer (DST)UTC-4 (EDT)
ZIP code
46160
Area code(s)812 & 930
FIPS code18-71792[2]
GNIS feature ID443925

History

Spearsville was founded in about 1835.[4] It was named for its founder, William Spears.[5] A post office was established at Spearsville in 1855, and remained in operation until it was discontinued in 1907.[6]

Geography

Spearsville is located at 39°19′50″N 86°11′47″W.

gollark: It's a good compiler!
gollark: <@!341618941317349376> Observe, a compiler which produces slow code.
gollark: Now with optimization settings!
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])```
gollark: ^

References

  1. "US Board on Geographic Names". United States Geological Survey. 2007-10-25. Retrieved 2008-01-31.
  2. "U.S. Census website". United States Census Bureau. Retrieved 2008-01-31.
  3. "Spearsville, Indiana". Geographic Names Information System. United States Geological Survey. Retrieved March 7, 2020.
  4. Blanchard, Charles (1884). Counties of Morgan, Monroe and Brown, Indiana: Historical and Biographical. F.A. Battey & Company. pp. 744.
  5. Baker, Ronald L. (October 1995). From Needmore to Prosperity: Hoosier Place Names in Folklore and History. Indiana University Press. p. 308. ISBN 978-0-253-32866-3. ...by William Spears, and named for him.
  6. "Brown County". Jim Forte Postal History. Retrieved 28 August 2014.



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