Hillary Wolf
Hillary Wolf Saba (born February 7, 1977) is an American former child actress and judoka. She is most notable for starring as the lead character Laura in the theatrical film Big Girls Don't Cry... They Get Even and for her role as Megan in the Home Alone series. She won the world judo championships for juniors in 1994 and represented the United States in judo at the 1996 Summer Olympics and the 2000 Summer Olympics.[1]
Hillary Wolf | |
---|---|
Born | Chicago, Illinois, U.S. | February 7, 1977
Occupation | Actress, judoka |
Years active | 1984–2000 |
Filmography
Year | Title | Role | Notes |
---|---|---|---|
1984 | A Matter of Principle | Lindy Lou Purdy | Television film (American Playhouse) |
1985 | First Steps | Missy (age 7) | Television film |
1986 | Help Wanted: Kids | Mickey | Television film (The Disney Sunday Movie) |
1986 | Sunday Drive | Christine Franklin | Television film (The Disney Sunday Movie) |
1987 | I'll Take Manhattan | Angelica Cipriani | Television miniseries |
1987 | Murder Ordained | Holly Anderson | Television film |
1990 | Waiting for the Light | Emily | Feature film |
1990 | Home Alone | Megan McCallister | Feature film |
1992 | Big Girls Don't Cry... They Get Even | Laura Chartoff | Feature film |
1992 | Home Alone 2: Lost in New York | Megan McCallister | Feature film |
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
- 1996 U.S. Olympic Judo Team, archived from the original on 2014-06-26, retrieved 2011-07-30
External links
- Hillary Wolf on IMDb
- TWOJ Players Profile: Hillary Wolf
- Evans, Hilary; Gjerde, Arild; Heijmans, Jeroen; Mallon, Bill; et al. "Hillary Wolf". Olympics at Sports-Reference.com. Sports Reference LLC. Archived from the original on 2013-02-06.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.