Luthersk Ugeskrift

Luthersk Ugeskrift ("Lutheran Weekly") was an ecclesiastical periodical issued from 1877 to 1893.

History and profile

Luthersk Ugeskrift was established in 1877[1] by Wilhelm Bugge and Johan Christian Heuch, who both later served as bishops. The headquarters was in Kristiania (Oslo).[1] It was marked by "high church" views and purported skepticism towards lay preaching and elected congregational councils. In 1881 Michael Johan Færden[2] replaced Bugge as co-editor; Heuch withdrew in 1889. The periodical went defunct in 1893.[3]

gollark: ```rustuse std::process::Command;use anyhow::Result;use std::path::Path;use std::fs;#[derive(serde::Serialize, serde::Deserialize, Debug)]struct RawServiceSpec { command: String, args: Vec<String>, name: Option<String>}#[derive(Debug)]struct ServiceSpec { command: String, args: Vec<String>, name: String}fn load_spec(path: &Path) -> Result<ServiceSpec> { let file = fs::read_to_string(path)?; let raw: RawServiceSpec = toml::from_str(&file)?; Ok(ServiceSpec { command: raw.command, args: raw.args, name: path.file_stem().unwrap().to_string_lossy().to_string() })}fn run_service(serv: ServiceSpec) -> Result<()> { println!("thread {:?}", serv); loop { println!("Starting"); let mut child = Command::new("/bin/env") .arg("python3") .arg("test.py") .spawn()?; child.wait()?; } Ok(())}fn main() -> Result<()> { let services = dashmap::DashMap::new(); for entry in fs::read_dir("./services")? { let s = load_spec(&entry?.path())?; services.insert(s.name.clone(), s); } let mut handles = Vec::new(); for e in services { handles.push(std::thread::spawn(|| run_service(e.1))); } for handle in handles { handle.join().unwrap(); } Ok(())}```
gollark: Well, I guess that's systemd replaced.
gollark: I can define a service in a TOML file and it's automatically restarted on exit and all.
gollark: So it does actually work now.
gollark: I like it and it was really easy to serde it.

References

  1. "Presbyterianisme på norsk?" (Report). Frikirken (in Norwegian). Retrieved 29 June 2016.
  2. Western Esotericism in Scandinavia. BRILL. 31 March 2016. p. 275. ISBN 978-90-04-32596-8. Retrieved 29 June 2016.
  3. "Luthersk Ugeskrift". Store norske leksikon (in Norwegian). Retrieved 1 October 2012.


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