Platinum Rare

Platinum Rare is a compilation album from British rock band Sweet. The recordings are primarily from the vaults of guitarist Andy Scott.

Platinum Rare
Compilation album by
Released1995 (1995)
Length69:13
LabelRepertoire
Sweet chronology
The Ballroom Blitz & More Sweet Hits
(1992)
Platinum Rare
(1995)
Live in Denmark 1976
(1998)

Track listing

  1. "Yesterdays Hero"
  2. "Log One"
  3. "Cockroach"
  4. "4th July"
  5. "Harold Wonders Why"
  6. "Falling In Love"
  7. "Two Into One"
  8. "New Shoes"
  9. "Fire Engine"
  10. "Mother Earth"
  11. "Play All Night"
  12. "Scratch N Sniff"
  13. "You Don't Care"
  14. "Fountain"
  15. "You're Not Wrong For Loving Me"
  16. "Strong Love"
  17. "Call Me (Give Me Your Love)"
  18. "Where Do We Go From Here"
  19. "Galaxy" (Demo Version)
  20. "Galaxy" (Television Theme)

Personnel

gollark: I actually stole this particular quicksort from a r/haskell post talking about it.
gollark: ```lisp (let (partition_rec xs pred acc) (cond ((= xs '()) acc) (true (partition_rec (tail xs) pred (cond ((pred (head xs)) (list (cons (head xs) (head acc)) (snd acc))) (true (list (head acc) (cons (head xs) (snd acc)))) ))) )) (let (qsort xs cont) (cond ((= xs '()) (cont '())) (true (do (let h (head xs)) (let t (tail xs)) (let part_result (partition_rec t (lambda (x) (< x h)) '(() ()))) (qsort (head part_result) (lambda (ls) (qsort (snd part_result) (lambda (rs) (cont (+ ls (list h) rs)))))) )) ))```These all have to be done tail recursively or it could overflow.
gollark: Continuation passing style quicksort in a hilariously slow interpreter.
gollark: It manages *1* second, which is great.
gollark: When writing osmarkslisp™, I cared about performance to the extent that it would sort a list of 200 integers in under 5 seconds.

References

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