Violin sonata in G minor (HWV 368)

The Violin sonata in G minor (HWV 368) is a work for violin and keyboard (harpsichord) that was originally thought to have been composed by George Frideric Handel. Modern scholars however believe it doubtful that the work was composed by Handel, and have labelled it as "spurious". The work is also referred to as Opus 1 No. 10, and was first published in 1732 by Walsh. Other catalogues of Handel's music have referred to the work as HG xxvii,37; and HHA iv/4,28.[1]

Both the Walsh edition and the Chrysander edition indicate that the work is for violin, and published it as Sonata X. In both editions, the tempo of movement four is unmarked (but appears to be an allegro, or similar).

Movements

The work consists of four movements:

Movement Type Key signature Time signature Bars Notes
1 Andante G minor 4
4
21
2 Allegro G minor 4
4
37 Two sections (18 and 19 bars)—each with repeat markings.
3 Adagio G minor 3
4
16 Two sections (8 and 8 bars)—each with repeat markings.
4 Allegretto G minor 12
8
32 Two sections (9 and 23 bars)—each with repeat markings.

(Movements do not contain repeat markings unless indicated. The number of bars is taken from the Chrysander edition, and is the raw number in the manuscript—not including repeat markings.)

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.
gollark: What I might do, though there are probably many ways to: make a program in Node.js or whatever (personal preference) which responds with whatever image is set to any requests for that, and which allows you to upload an image, converts it to the right format, then saves it to be sent when the ESP requests it.
gollark: And you want to be able to upload pictures to some sort of web thing to send to the ESP?

See also

References

  1. Hicks, Anthony (2001). "Handel, George Frideric". In Sadie, Stanley; Tyrrell, John (eds.). The New Grove Dictionary of Music and Musicians. x (2nd ed.). London: Macmillan. p. 802.


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