Puriya
Puriya is a major hexatonic raga of Hindustani classical music.
Thaat | Marva |
---|---|
Time of day | Just after sunset |
Arohana | N r G M D N r S |
Avarohana |
|
Vadi | G |
Samavadi | N |
Note emphasis: Ni, Ga, (Ma is an important pivot note.)
Pakad or Chalan
Ni Ni Ni Ma, Ni Dha Ni
re Sa
Ma, (Ni) D (Sa) Ni (re) Sa () = grace note
Ni re Ga
Ni re Ga, Ga re Sa
Ni re Ma Ma Ga
Ma Dha Ni, Ma Dha, Ga Ma Ga
Ma Ni Dha Ni
Details
Property | Value |
---|---|
Thaat | Marwa |
Ascending | N r G M D N r S |
Descending | S N D M G r S N or
r N D M Gg, M G r S |
Samar (time of day) | Sunset or just after |
Rasa | Shanti (equanimity/peace)
Gambhir (seriousness) |
Related ragas | Kanada, Hindol, Kalyan (Iman) |
Sources
Bor, Joep (c. 1997), The Raga Guide, Charlottesville,Virginia: Nimbus Records, archived from the original on 15 July 2009
gollark: * specify, not design
gollark: ```rust let with_db = warp::any().map(move || pool.clone()); let static_files = warp::path("assets").and(warp::fs::dir("assets")); let view_page = warp::path!(String).and(warp::get()).and(with_db.clone()) // repeating the next bit for every route is kind of bad, see if it can be changed somehow .and_then(|title, db| async { error_to_http_response(view_page(db, title).await) }); let editor_page = warp::path!(String / "edit").and(warp::get()).and(with_db.clone()) .and_then(|title, db| async { error_to_http_response(editor_page(db, title).await) }); let save_edit = warp::path!(String / "edit").and(warp::post()).and(warp::body::form()).and(with_db) .and_then(|title, form, db| async { error_to_http_response(save_edit(db, title, form).await) }); let not_found = warp::any().map(|| warp::reply::with_status("404 Not Found", http::StatusCode::NOT_FOUND)); let main = editor_page.or(save_edit).or(view_page); let app = static_files.or(main).or(not_found);```See, this is how you SHOULD design routes: incomprehensibly.
gollark: no!
gollark: Your *routes* shouldn't be config. They're code. They're part of the application.
gollark: What? Why is that a config file?! You should be defining routes in your code.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.