House at 32 Bayview Avenue

The House at 32 Bayview Avenue in Quincy, Massachusetts, is a modest Queen Anne style house built on the shore during Quincy's development of that area as a summer resort area. It was built in the 1880s, sited to take advantage of the views of the Town River to the north. It features relatively modest stylistic details, including varying gable sizes with bargeboard, and a wraparound porch with square posts and some Stick style woodwork.[2]

House at 32 Bayview Avenue
Location32 Bayview Ave., Quincy, Massachusetts
Coordinates42°16′17″N 70°57′18.5″W
Area0.4 acres (0.16 ha)
Built1880
Architectural styleQueen Anne
MPSQuincy MRA
NRHP reference No.89001314[1]
Added to NRHPSeptember 20, 1989

The house was listed on the National Register of Historic Places in 1989.[1]

gollark: This is not ideal. How can we use more without boring things like cryptominers?
gollark: Okay, this might fix it, pushed.
gollark: If the issue is what I think it could be, then it's accidentally dropping? data on the threshold of the rolling counter region incorrectly.
gollark: ```nimproc pollTargets(ctx: Ctx) {.async.} = for row in ctx.db.all("SELECT * FROM sites"): var (id, url, rollingTotalPings, rollingSuccessfulPings, rollingLatency, rollingDataSince) = row.unpack((int64, string, int64, int64, int64, Option[Time])) let res = await ctx.pollTarget(url) let threshold = getTime() # drop old data from rolling counters if rollingDataSince.isSome: for row in ctx.db.iterate("SELECT status, latency FROM reqs WHERE timestamp >= ? AND timestamp <= ? AND site = ?", rollingDataSince.get, threshold, id): let (statusRaw, latency) = row.unpack((int, int)) rollingTotalPings -= 1 rollingLatency -= latency if statusRaw <= 0: rollingSuccessfulPings -= 1 # add new data rollingTotalPings += 1 rollingLatency += res.latency if int(res.rtype) <= 0: rollingSuccessfulPings += 1 ctx.db.transaction: ctx.db.exec("UPDATE sites SET rc_total = ?, rc_success = ?, rc_latency = ?, rc_data_since = ? WHERE sid = ?", rollingTotalPings, rollingSuccessfulPings, rollingLatency, threshold, id) ctx.db.exec("INSERT INTO reqs (site, timestamp, status, latency) VALUES (?, ?, ?, ?)", id, getTime(), int(res.rtype), res.latency)```This is the core algorithm.
gollark: Actually, æææææ who even knows.

See also

References


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