Amanda (Craig McLachlan song)

"Amanda"' is a song recorded by Australian actor/musician Craig McLachlan and band 'Check 1–2'. It was their third single from the album, Craig McLachlan & Check 1-2.[1] It was a commercial success peaking at No. 24 in Australia and No. 19 in the UK.

"Amanda"
Single by Craig McLachlan & Check 1–2
from the album Craig McLachlan & Check 1-2
B-side"Need Your Love"
ReleasedJuly 1990 (1990-07)
RecordedThe Village Green
GenrePop, SynthPop
Length3:23
LabelCBS
Songwriter(s)Craig McLachlan
Producer(s)Garth Porter
Craig McLachlan & Check 1–2 singles chronology
"Mona"
(1990)
"Amanda"
(1990)
"I Almost Felt Like Crying"
(1990)

Track listing

No.TitleWriter(s)Length
1."Amanda"Craig McLachlan3:23
2."Need Your Love" 3:21
3."Baby Loves Funky" 4:01

Charts

Chart (1990) Peak
position
Australian ARIA Singles Chart[2] 24
New Zealand Singles Chart[2] 16
UK Singles Chart[3] 16

Credits

  • Backing vocals – John Hinde, Lindsay Field, Lisa Edwards, Nikki Nicholls
  • Bass – Mark Beckhouse
  • Drums – Mark Meyer
  • Keyboards – Garth Porter, Chong Lim
  • Percussion – John Clark
gollark: Well, it's poorly designed, more so than JS in my opinion.
gollark: PHP is maaaaybe easy for simple stuff, but also very evil.
gollark: There are many languages you can use for web*server*y stuff, but you can only really use HTML/CSS/JS for frontends.
gollark: With Express.js the server thing would look *very roughly* like this:```javascriptconst express = require("express")const multer = require("multer")const app = express()const upload = multer({ storage: multer.memoryStorage(), limits: { fileSize: 2**22 // 4MiB maximum filesize }})app.get("/image", (req, res) => { res.send(loadImageFromSomewhere())})// send upload form HTML - you would need to write this tooapp.get("/upload", (req, res) => res.sendFile("upload.html"))app.post("/upload", upload.single("file"), (req, res) => { saveImageSomewhere(req.file.buffer)})app.listen(8700, () => console.log("listening")) // listen on port 8700```
gollark: I mean, you could use PHP too. I don't like it. But you could.

References

  1. "Amanda by Craig McLachlan and Check 1-2". www.discogs.com. Retrieved 23 January 2016.
  2. "CRAIG MCLACHLAN & CHECK 1–2 – Amanda (SONG)". Australian Charts. 23 January 2016. Retrieved 23 January 2016.
  3. "The Official Chart Company – Craig McLachlan". Official Charts. 25 December 2011. Retrieved 23 January 2016.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.