R.

R. is an abbreviation of the Latin word Rex (King) or Regina (Queen).[1]

Jurisprudence

In jurisprudence, it is used as notation in British or other Commonwealth realm criminal prosecutions to mean "the Crown" or "the state", which is represented by the current monarch.[2] It is often seen written as "R. v Defendant" which would be read as "The Crown and the Defendant".

Historiography

In historiography, r. can be used to designate the ruling period of a person in dynastic power, to distinguish from his or her lifespan.

For example, one may write "Charles V (r. 1519–1556)" instead of "Charles V (1500–1558)" if the writer considers the year of enthronement to be more important information for the reader than the year of birth, or occasionally to emphasise when a ruler abdicated before dying. In addition to rex or regina, r. can also be an abbreviation of regnavit ("[he/she] ruled").[3]

gollark: Your config can be a programming language too, since it's useful for specifying some things without having to repeat yourself, but it should be separate from the code.
gollark: Application code is stuff which should be the same across deployments. Config is stuff which shouldn't.
gollark: Then your application is wrong.
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.

See also

References

  1. Dale, Rodney; Puttick, Steve (1997-01-01). The Wordsworth Dictionary of Abbreviations and Acronyms. Wordsworth Editions. pp. 135. ISBN 9781853263859. r. rex regina.
  2. Gray, Debra (2004-01-01). Public Services (uniformed). Heinemann. p. 35. ISBN 9780435456597.
  3. Robbins, John Fonseca (2015-08-31). Fonseca Robbins´Lexicon. Clube de Autores. p. 238.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.