Late Nights on Air

Late Nights on Air is a novel by Canadian writer Elizabeth Hay, published by McClelland & Stewart in 2007. In the book, the author chronicles her experiences as a CBC Radio journalist. The novel is set at a radio station in Yellowknife, Northwest Territories. Hay calls it a book "about the romance of the disembodied voice."[1]

Late Nights on Air
First edition cover of Canadian release
AuthorElizabeth Hay
CountryCanada
SubjectBroadcasting
GenreNon-fiction, novel
PublisherMcClelland & Stewart
Publication date
September 16, 2007
Media typePrint (Hardcover & Paperback)
Pages364 pp.
ISBN9780771038112

Awards

Late Nights on Air was the winner of the 2007 Scotiabank Giller Prize.[2]

gollark: Hmm, so what extra features are needed?
gollark: Anyway, good news systemd-dislikers, I made an EXCELLENT and AMAZING replacement using the RUST programming language.
gollark: I have DashMap in here because of some vague dream of concurrently doing... stuff.
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.

References

  1. Interview with author Elizabeth Hay Canadian Living - Life - Community, by Kat Tancock, (retrieved 11/20/2012)
  2. Northern Composure The New York Times, June 1, 2008, by Meg Wolitzer, (retrieved 11/20/2012)


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