A Knight in York

A Knight in York is a live album by the group Blackmore's Night, released in 2012. The album recorded in autumn of 2011 at the Opera House in York, England.[1] It entered at #2 on the New Age Billboard Charts.[5][6] It entered at #2 on the German DVD Charts, and entered at 8# on the German album charts.[6] The album also reached #46 in Austria and #85 in Switzerland.[7] It mostly consists of songs from their two albums, Secret Voyage and Autumn Sky.

A Knight in York
Live album by
ReleasedJune 29, 2012 (Germany)[1]
July 2, 2012 (UK)[1]
October 9, 2012 (United States)[2]
RecordedSeptember 30, 2011
GenreCeltic, folk rock, neo-medieval, hard rock
Length79:39[3]
LabelAriola,[4] UDR
ProducerRitchie Blackmore
Blackmore's Night chronology
Autumn Sky
(2010)
A Knight in York
(2012)
Dancer and the Moon
(2013)

Track listing

  1. "Locked Within the Crystal Ball" – 7:21
  2. "Gilded Cage" - 4:18
  3. "The Circle" - 7:17
  4. "Journeyman" - 6:58 (Nordman cover)
  5. "World of Stone" - 6:14
  6. "The Peasant's Promise" - 5:11
  7. "Toast to Tomorrow" - 4:48
  8. "Fires at Midnight" - 9:44
  9. "Barbara Allen" - 5:27
  10. "Darkness" - 3:30
  11. "Dance of the Darkness" - 3:47
  12. "Dandelion Wine" - 6:07
  13. "All the Fun of the Fayre" - 4:07
  14. "First of May" - 3:35 (Bee Gees cover)

Charts

Chart (2012) Peak
position
Billboard Top New Age Charts[5] 2
German Albums (Offizielle Top 100)[8] 8
Russian Albums Chart[9] 24
Austrian Albums (Ö3 Austria)[10] 46
Swiss Albums (Schweizer Hitparade)[11] 85

Notes

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.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.