Citizen (album)

Citizen is the debut full-length album by Army of Me. Its first single is "Going Through Changes", which appears on Burnout Dominator, Burnout Paradise, and MLB 06: The Show. The song "Better Run" is featured in ABC Family's Kyle XY in the episode "Primary Colors" originally aired on February 25, 2008.

Citizen
Studio album by
ReleasedApril 10, 2007
GenreAlternative rock, indie rock
LabelDoghouse Records
ProducerMichael "Elvis" Baskette
Professional ratings
Review scores
SourceRating
AbsolutePunk.net(83%) link
AllMusic link
Patrol Magazine(6.7/10) link

Track listing

All tracks written by Army of Me.

  1. "Perfect" – 4:35
  2. "Going Through Changes" – 4:06
  3. "Rise" – 3:55
  4. "Meet You at the Mouth" – 4:11
  5. "Still Believe in You" – 4:16
  6. "Thinking It Over" – 3:47
  7. "Better Run" – 4:20
  8. "How Long" – 3:36
  9. "Walking On" – 4:32
  10. "2 into 1" – 4:06
  11. "Saved Your Life" – 3:43
  12. "Back to Business" – 4:04

Personnel

  • John Hutchins - bass
  • Tripper Ryder - bass
  • Dennis Manuel - drums
  • Brad Tursi - guitar, vocals
  • Vince Scheuerman - guitar, piano, vocals
gollark: You could also make it do `while #primes < tuning do`.
gollark: The `ipairs` iterator gives us `key, value` for each item of the table (in order). The key is unnecessary here, so it's just bound to `_`, the convention I've seen a lot for variables you're discarding.
gollark: As you can see, you don't actually need to explicitly compute the length anywhere.
gollark: Here's how I would do it:```lualocal function divisible_by_any(n, factors) for _, factor in ipairs(factors) do if n % factor == 0 then return true end end return falseendlocal primes = { 2, 3 }for i = 2, 100 do if not divisible_by_any(i, primes) then table.insert(primes, i) endendfor _, prime in ipairs(primes) do print(prime) end```
gollark: I can't actually read that because ææææ my eyes but it looks like the same thing with less whitespace.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.