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 | |
Released | April 10, 2007 |
Genre | Alternative rock, indie rock |
Label | Doghouse Records |
Producer | Michael "Elvis" Baskette |
Review scores | |
---|---|
Source | Rating |
AbsolutePunk.net | (83%) link |
AllMusic | |
Patrol Magazine | (6.7/10) link |
Track listing
All tracks written by Army of Me.
- "Perfect" – 4:35
- "Going Through Changes" – 4:06
- "Rise" – 3:55
- "Meet You at the Mouth" – 4:11
- "Still Believe in You" – 4:16
- "Thinking It Over" – 3:47
- "Better Run" – 4:20
- "How Long" – 3:36
- "Walking On" – 4:32
- "2 into 1" – 4:06
- "Saved Your Life" – 3:43
- "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.