Numb (Holly McNarland song)

"Numb" is a song by Canadian musician Holly McNarland, released as the first single from her debut studio album, Stuff. The song was very successful in Canada, peaking at number nine on the RPM Top Singles chart and number five on the RPM Alternative 30. The song is featured on MuchMusic's Diamond certified compilation album, Big Shiny Tunes 2.[1]

"Numb"
Single by Holly McNarland
from the album Stuff
ReleasedJune 12, 1997
GenreAlternative rock
Length3:57
LabelUniversal Music
Songwriter(s)Holly McNarland
Producer(s)Dale Penner
Holly McNarland singles chronology
"Mr. 5 Minutes"
(1995)
"Numb"
(1997)
"Elmo"
(1997)

Charts

Weekly charts

Chart (1997) Peak
position
Canada Top Singles (RPM)[2] 9
Canada Rock/Alternative (RPM)[3] 5

Year-end charts

Chart (1997) Position
Canada Top Singles (RPM)[4] 76
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


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