Just Can't Throw Us Away
"Just Can't Throw Us Away" is a song written by Peter Gorderno and Andy Jackson and recorded by Australian pop singer Hugh Sheridan. The song was released on 3 September 2009 as his debut single. The song peaked at number 73 on the ARIA Charts.[1] Sheridan performed the song live on the finale of Dancing with the Stars on 6 September.[2]
"Just Can't Throw Us Away" | ||||
---|---|---|---|---|
Single by Hugh Sheridan | ||||
Released | 3 September 2009 | |||
Recorded | 2009 | |||
Studio | Blindfaith Studios, Sydney | |||
Genre | ||||
Length | 3:31 | |||
Label | Sony | |||
Songwriter(s) |
| |||
Producer(s) |
| |||
Hugh Sheridan singles chronology | ||||
|
Track listing
Digital/CD
- "Just Can't Throw Us Away" – 3:31
Release history
Region | Release Date | Format | Label | Catalogue |
---|---|---|---|---|
Australia | 3 September 2009[3] | Digital download, CD single | Sony Music Australia | 88697595882 |
gollark: My "fix" is this:```lua--[["Fix" for bug PS#E9DCC81BSummary: `pcall(getfenv, -1)` seemingly returned the environment outside the sandbox.Based on some testing, this seems like some bizarre optimization-type feature gone wrong.It seems that something is simplifying `pcall(getfenv)` to just directly calling `getfenv` and ignoring the environment... as well as, *somehow*, `function() return getfenv() end` and such.The initial attempt at making this work did `return (fn(...))` instead of `return fn(...)` in an attempt to make it not do this, but of course that somehow broke horribly. I don't know what's going on at this point.This is probably a bit of a performance hit, and more problematically liable to go away if this is actually some bizarre interpreter feature and the fix gets optimized away.Unfortunately I don't have any better ideas. Also, I haven't tried this with xpcall, but it's probably possible, so I'm attempting to fix that too.]]local real_pcall = pcallfunction _G.pcall(fn, ...) return real_pcall(function(...) local ret = {fn(...)} return unpack(ret) end, ...)end local real_xpcall = xpcallfunction _G.xpcall(fn, handler) return real_xpcall(function() local ret = {fn()} return unpack(ret) end, handler)end```which appears to work at least?
gollark: Fixed, but I don't really know how or why.
gollark: ... should I create a bug report?
gollark: It returns two, actually. The second one. I don't know *what* the first one is doing.
gollark: Is this some weird implementation thing or is Lua actually defined/specified to work like this?!
References
- "ARIA Report Issue 1033" (PDF). 14 December 2009. Retrieved 19 August 2019.
- "Hugh Sheridan in Sony record deal". TV Tonight. 30 August 2009. Retrieved 19 August 2019.
- "Just Can't Throw That Away – single". iTunes Australia. 3 September 2009. Retrieved 19 August 2019.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.