Raise High

Raise High is Radio America's second full-length album. The title of the record is said to have been taken from the J.D. Salinger novel Raise High the Roof Beam, Carpenters and Seymour: An Introduction.

Raise High
Studio album by
ReleasedSeptember 2006
RecordedWorcester, MA and
New York, NY
GenreRock
LabelMother West
ProducerTintern
Radio America chronology
This Is Radio America
(2003)
Raise High
(2006)

Track listing

  1. "Letter From a Libertine"
  2. "Mahabharata"
  3. "Courtesy of the Red, White & Blue"
  4. "Boston Garden"
  5. "Aim High in Steering"
  6. "I Want to Go Home With You"
  7. "It's Time You Paid For Your Crimes Against Humanity"
  8. "(Raise) Higher"
  9. "Credit Card Song"

Personnel

  • Thomas Stuart - lead vocals, guitar
  • Jesse Reno - lead vocals, bass guitar, acoustic guitar on "Credit Card Song"
  • Jason Aubin - drums

with

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.
gollark: The boundary conditions could be wrong on this query.
gollark: Hmm. I think I might know what this is maybe?
gollark: I think that might just have been a bug I introduced by accident.


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