Juvenile Jungle (film)
Juvenile Jungle is a 1958 American crime film directed by William Witney and written by Arthur T. Horman. The film stars Corey Allen, Rebecca Welles, Richard Bakalyan, Anne Whitfield, Joe Di Reda and Joe Conley. The film was released on April 24, 1958, by Republic Pictures.[1][2][3]
Juvenile Jungle | |
---|---|
Theatrical release poster | |
Directed by | William Witney |
Produced by | Sidney Picker |
Screenplay by | Arthur T. Horman |
Starring | Corey Allen Rebecca Welles Richard Bakalyan Anne Whitfield Joe Di Reda Joe Conley |
Cinematography | Jack A. Marta |
Edited by | Joseph Harrison |
Production company | Coronado Pictures Inc. |
Distributed by | Republic Pictures |
Release date |
|
Running time | 69 minutes |
Country | United States |
Language | English |
Plot
Cast
- Corey Allen as Hal McQueen
- Rebecca Welles as Glory
- Richard Bakalyan as Tic-Tac
- Anne Whitfield as Carolyn Elliot
- Joe Di Reda as Monte
- Joe Conley as Duke
- Walter Coy as John Elliot
- Taggart Casey as Lt. Milford
- Hugh Lawrence as Officer Ed Ellis
- Leon Tyler as Ballpark usher
- Harvey Grant as Pete
- Louise Arthur as Mrs. Elliot
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
- "Juvenile Jungle (1958) - Overview". TCM.com. Retrieved 2015-12-05.
- "Juvenile-Jungle - Trailer - Cast - Showtimes". NYTimes.com. Retrieved 2015-12-05.
- "Juvenile Jungle". Afi.com. Retrieved 2015-12-05.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.