Sorry Go 'Round

"Sorry Go 'Round" is a limited edition single by the Finnish rock band Poets of the Fall with a special, black lacquered cover.[2] Every copy has a unique number. It features two versions of the track,[1] which have been remastered in comparison to the full album's version. The band also planned to include a remix of the song, but this idea has been abandoned. It is unknown if the remix was completed or if it will ever be released. Additionally, no music video has been made to promote the single. The single's release was originally planned on 26 July 2006 but was delayed to 16 August 2006[2] due to the popularity of the previous single, Carnival of Rust. The single peaked at number seven in the official Finnish singles chart.[3]

"Sorry Go 'Round"
Single by Poets of the Fall
from the album Carnival of Rust [1]
Released16 August 2006 [2]
GenreAlternative Rock
Length3:38
LabelInsomniac
Playground
Songwriter(s)Markus Kaarlonen, Marko Saaresto and Olli Tukiainen.
Poets of the Fall singles chronology
"Carnival of Rust"
(2006)
"Sorry Go 'Round"
(2006)
"Locking Up The Sun"
(2006)

Track listing

No.TitleLength
1."Sorry Go 'Round" (Radio Edit)3:24
2.""Sorry Go 'Round"" (Album Version)3:40

Charts

Chart (2006) Peak
position
Finnish Singles Chart[3] 7
gollark: No evil "class" stuff needed.
gollark: This is an API I run to do some random things.
gollark: ```python#!/usr/bin/env python3from flask import Flask, jsonifyfrom wsgiref.simple_server import make_serverimport subprocessimport randomfrom mpd import MPDClientimport threadingimport timempd_client = MPDClient()mpd_client.connect("localhost", 6600)print("connected, mpd is", mpd_client.mpd_version)app = Flask(__name__)@app.route("/")def index(): return "Hello, World!"@app.route("/fortune/")def fortune(): return subprocess.run(["fortune"], stdout=subprocess.PIPE).stdoutcurrent_song = Nonedef mpd_loop(): print("mpd query loop started") while True: global current_song current_song = mpd_client.currentsong() current_song["status"] = mpd_client.status() time.sleep(0.2)threading.Thread(target=mpd_loop).start()@app.route("/current-song")def get_current_song(): return jsonify(current_song)with make_server('', 1337, app) as httpd: print("Serving HTTP...") httpd.serve_forever()```
gollark: It doesn't require classes. Hold on.
gollark: I saw `getunicode`, which seems python2-ish since python3 has better unicode handling.

References

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